blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
  font-size: 18px;
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--black);
  background-color: #F5F5F5;
  font-size: 24px;
  font-weight: bold;

  border-radius: 233px;
  overflow: hidden;
  box-sizing: border-box;
}

.navigation-search {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--black);
  background-color: #F5F5F5;
  font-size: 24px;
  font-weight: bold;

  border-radius: 233px;
  overflow: hidden;
  box-sizing: border-box;
}

.navigation-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;

  color: var(--black);
  background-color: #F5F5F5;
  font-size: 24px;
  font-weight: bold;

  border-radius: 233px;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  
}

.navigation-padding {
  padding-left: 24px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
}

.section1 {
  position: relative;
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  margin-top: 120px; 
  column-gap: 24px; 
  
  box-sizing: border-box;
}

.section1-img-container {
  display: grid;
  align-content: start;
  
  box-sizing: border-box;
}

.section1-img-container div {
  max-height: 480px; 
  
  border-radius: 24px; 
  overflow: hidden;
}

.section1-img-container div img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.section1 .box1 {
  position: absolute; 
  bottom: 0px;

  display: flex; 
  column-gap: 62px;
}

.section1 .box2 {
  position: absolute;
  top: 0px;
  left: 28%;

  display: flex;
  column-gap: 36px;
}

.section1 .box3 {
  position: absolute;
  bottom: 0px;
  left: 62%;

  display: flex;
  column-gap: 36px;
}


.section1 h2 {
  color: #A3A3A3; 
  font-weight: 400;
  font-size: 32px;
}

.section1 .box1 p {
  font-size: 32px; 
  max-width: 320px;
}

.section1 .box2 p {
  font-size: 32px; 
  max-width: 330px;
}

.section1 .box3 p {
  font-size: 32px; 
  max-width: 380px;
}

/* For screens between 1441px and 1920px */
@media only screen and (min-width: 1920px) {
  .section1 .box1 {
    position: absolute; 
    bottom: 0px;
  
    display: flex; 
    column-gap: 64px;
  }
  
  .section1 .box2 {
    position: absolute;
    top: 0px;
    left: 29%;
  
    display: flex;
    column-gap: 36px;
  }
  
  .section1 .box3 {
    position: absolute;
    bottom: 0px;
    left: 63%;
  
    display: flex;
    column-gap: 36px;
  }

  
  .section1 h2 {
    color: #A3A3A3; 
    font-weight: 400;
    font-size: 36px;
  }

  .section1 .box1 p {
    font-size: 36px; 
    max-width: 420px;
  }

  .section1 .box2 p {
    font-size: 36px; 
    max-width: 410px;
  }

  .section1 .box3 p {
    font-size: 36px; 
    max-width: 460px;
  }
}

.section2 {
  display: flex;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
  margin-top: 170px;
  column-gap: 24px;
  
  box-sizing: border-box;
}