body {
  background-color: rgb(255, 255, 255);
}

/* first-container */


.first-container .text-container {
  padding-top: 80px;
  text-align: center;
}

.text-container h1 {
  font-size: 60px;
  font-weight: 600;
}

.text-container > p {
  font-size: 35px;
}

.text-container p:nth-child(odd) {
  font-size: 20px;
}

.image-container {
  height: 70vh;
  width: auto;
  display: flex;
  justify-content: center;
}

.image-container img {
  height: 100%;
}

@media (max-width: 1180px) {
  .text-container h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .text-container > p {
    font-size: 25px;
  }

  .text-container p:nth-child(odd) {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .image-container {
    height: 70vh;
    overflow: hidden;
  }

  .image-container img {
    height: auto;
    width: 98vw;
  }
}

@media (max-width: 811px) {
  .text-container > p {
    font-size: 25px;
    text-wrap: balance;
  }

  .text-container p:nth-child(odd) {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .image-container {
    height: 45vh;
    overflow: hidden;
  }

  .image-container img {
    height: auto;
    width: 98vw;
  }
}

@media (max-width:450px) {
  .text-container > p {
    font-size: 20px;
    text-wrap: balance;
  }

  .text-container p:nth-child(odd) {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    text-wrap: balance;
  }

  .image-container {
    height: 30vh;
    overflow: hidden;
  }

  .image-container img {
    height: auto;
    width: 98vw;
  }
}

/* second-container */

.second-container{
  overflow: hidden;
}

.second-container .text-container {
  padding-top: 50px;
}

.second-container .text-container p {
  text-align: center;
}

/* third-container */

.third-main {
  height: fit-content;
  margin-top: 100px;
  overflow: hidden;
}

.third-sub-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100vw; */
}

.sub-container-item img {
  width: 100%;
  height: 50vh;
  display: block;
  width: 40vw;
  background-position: center;
  filter: brightness(80%);
}

.sub-container-item img:hover {
  filter: brightness(50%);
}

.sub-container-item {
  display: inline-block;
  position: relative;
  margin: 2px;
}

.sub-container-item h2 {
  position: absolute;
  z-index: 99;
  top: 45%;
  font-size: 45px;
  color: white;
}

.btn-container {
  display: flex;
  justify-content: center;
  padding: 50px 0px 100px;
}

.btn-container .home-page-button {
  background-color: rgb(0, 174, 255);
}

.btn-container .home-page-button a {
  color: white;
}

.btn-container .home-page-button:hover {
  background-color: rgb(0, 110, 255);
}

.item-1 h2 {
  left: 40%;
}

.item-2 h2 {
  left: 37%;
}

.item-3 h2 {
  left: 37%;
}

.item-4 h2 {
  left: 37%;
}

@media (max-width: 1181px) {
  .item-1 h2 {
    left: 40%;
  }

  .item-2 h2 {
    left: 30%;
  }

  .item-3 h2 {
    left: 27%;
  }

  .item-4 h2 {
    left: 30%;
  }

  .sub-container-item img {
    height: 40vh;
  }

  .sub-container-item h2 {
    top: 45%;
  }
}

@media (max-width: 811px) {
  .sub-container-item h2 {
    font-size: 30px;
  }

  .sub-container-item img {
    height: 23vh;
  }

  .item-1 h2 {
    left: 35%;
  }

  .item-2 h2 {
    left: 28%;
  }

  .item-3 h2 {
    left: 28%;
  }

  .item-4 h2 {
    left: 30%;
  }
}

@media (max-width: 450px) {
  .third-sub-container {
    display: block;
  }

  .sub-container-item img {
    height: 33vh;
    width: 93vw;
  }

  .third-sub-container h2 {
    font-size: 25px;
  }

  .item-1 h2 {
    left: 40%;
  }

  .item-2 h2 {
    left: 35%;
  }

  .item-3 h2 {
    left: 35%;
  }

  .item-4 h2 {
    left: 35%;
  }
}
