@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
body .carousel-container {
  width: 100%;
  aspect-ratio: 16/5;
  position: relative;
}
body .carousel-container .banner-desktop {
  position: absolute;
  z-index: 5;
}
body .carousel-container .banner-desktop .banner-text {
  font-family: "Sunflower";
  color: white;
  font-weight: normal;
}
body .carousel-container .banner-desktop .banner-btns-container {
  display: flex;
  gap: 18px;
}
body .carousel-container .banner-desktop .banner-btns-container .banner-link {
  text-decoration: none;
}
body .carousel-container .banner-desktop .banner-btns-container .banner-btn {
  display: flex;
  padding: 10px 26px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: #004b93;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
body .carousel-container .banner-desktop .banner-btns-container .banner-btn:hover {
  transform: scale(1.05);
  background-color: #e2e2e2;
}
body .banner-mobile {
  width: 100%;
  height: fit-content;
  flex-direction: column;
  background-color: #004b93;
  justify-content: center;
  align-items: center;
}
body .banner-mobile .banner-text {
  font-family: "Sunflower";
  color: white;
  font-weight: normal;
  text-align: center;
}
body .banner-mobile .banner-btns-container {
  display: flex;
  gap: 12px;
}
body .banner-mobile .banner-btns-container .banner-link {
  text-decoration: none;
}
body .banner-mobile .banner-btns-container .banner-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: #004b93;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
body .banner-mobile .banner-btns-container .banner-btn:hover {
  transform: scale(1.05);
  background-color: #e2e2e2;
}
body .banner-mobile .banner-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: #004b93;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
body .banner-mobile .banner-btn:hover {
  transform: scale(1.05);
  background-color: #e2e2e2;
}
body .abc-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1440px) {
  .page-content {
    padding: 100px 0 0 0;
  }
  .carousel-container .banner-desktop {
    display: block;
    bottom: 49px;
    left: 150px;
    z-index: 5;
  }
  .carousel-container .banner-desktop .banner-text {
    font-size: 50px;
  }
  .carousel-container .banner-desktop .banner-btns-container .banner-btn {
    margin: 20px 0 0 0;
    padding: 10px 26px;
    font-size: 20px;
  }
  .carousel-container .carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/5;
    overflow: hidden;
  }
  .carousel-container .carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  .carousel-container .carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-container .carousel .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }
  .carousel-container .carousel-mobile {
    display: none;
  }
  .banner-mobile {
    display: none;
  }
  .abc-desc {
    padding: 80px 170px 60px 170px;
    gap: 80px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .page-content {
    padding: 130px 0 0 0;
  }
  .carousel-container .banner-desktop {
    display: block;
    bottom: 49px;
    left: 80px;
  }
  .carousel-container .banner-desktop .banner-text {
    font-size: 30px;
  }
  .carousel-container .banner-desktop .banner-btn {
    margin: 10px 0 0 0;
    padding: 10px 26px;
    font-size: 16px;
  }
  .carousel-container .carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/5;
    overflow: hidden;
  }
  .carousel-container .carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  .carousel-container .carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-container .carousel .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }
  .carousel-container .carousel-mobile {
    display: none;
  }
  .banner-mobile {
    display: none;
  }
  .abc-desc {
    padding: 80px 120px 60px 120px;
    gap: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .page-content {
    padding: 80px 0 0 0;
  }
  .carousel-container .banner-desktop {
    display: none;
  }
  .carousel-container .carousel {
    display: none;
  }
  .carousel-container .carousel-mobile {
    position: relative;
    width: 100%;
    aspect-ratio: 16/5;
    overflow: hidden;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile.active {
    opacity: 1;
    z-index: 1;
  }
  .banner-mobile {
    padding: 20px 15px 30px 15px;
    display: flex;
  }
  .banner-mobile .banner-text {
    font-size: 24px;
  }
  .banner-mobile .banner-btn {
    margin: 20px 0 0 0;
    padding: 10px 26px;
    border-radius: 10px;
    font-size: 20px;
  }
  .abc-desc {
    padding: 80px 80px 40px 80px;
    gap: 50px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .page-content {
    padding: 80px 0 0 0;
  }
  .carousel-container .banner-desktop {
    display: none;
  }
  .carousel-container .carousel {
    display: none;
  }
  .carousel-container .carousel-mobile {
    position: relative;
    width: 100%;
    aspect-ratio: 16/5;
    overflow: hidden;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile.active {
    opacity: 1;
    z-index: 1;
  }
  .banner-mobile {
    padding: 20px 15px 30px 15px;
    display: flex;
  }
  .banner-mobile .banner-text {
    font-size: 24px;
  }
  .banner-mobile .banner-btn {
    margin: 20px 0 0 0;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
  }
  .abc-desc {
    padding: 110px 80px 40px 80px;
    gap: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .page-content {
    padding: 50px 0 0 0;
  }
  .carousel-container .banner-desktop {
    display: none;
  }
  .carousel-container .carousel {
    display: none;
  }
  .carousel-container .carousel-mobile {
    position: relative;
    width: 100%;
    aspect-ratio: 16/5;
    overflow: hidden;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-container .carousel-mobile .carousel-slide-mobile.active {
    opacity: 1;
    z-index: 1;
  }
  .banner-mobile {
    padding: 10px 15px 10px 15px;
    display: flex;
  }
  .banner-mobile .banner-text {
    font-size: 12px;
  }
  .banner-mobile .banner-btn {
    margin: 8px 0 0 0;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 10px;
  }
  .abc-desc {
    padding: 70px 40px 40px 40px;
    gap: 30px;
  }
}/*# sourceMappingURL=home.css.map */