@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

body {
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  background-color: white;
  color: #343434;
}
body.home .header {
  border-bottom: none;
}

a {
  color: #19537b;
}
a:hover {
  color: #104569;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.button {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: white;
  width: max-content;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.button i {
  font-size: 22px;
}
.button--hero {
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
.button--all {
  border: 1px solid #eee;
  background-color: transparent;
  color: #523A2D;
}
.button--detail {
  padding: 8px 15px;
  background: #FFF1CB;
  font-size: 14px;
}
.button--detail i {
  font-size: 18px;
}

.main-title {
  font-size: 36px;
  font-weight: 400;
  color: #104569;
}
@media (max-width: 600px) {
  .main-title {
    font-size: 24px;
  }
}
.main-title strong {
  font-weight: 700;
}

.header {
  position: relative;
  z-index: 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 600px) {
  .header {
    padding: 15px 20px;
  }
}
.header__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .header__container {
    width: 100%;
  }
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 150px;
}
@media (max-width: 600px) {
  .header__logo img {
    height: 50px;
  }
}
.header__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .header__nav {
    display: none;
    position: absolute;
    background-color: white;
    padding: 20px;
    left: 0px;
    top: 81px;
    width: 100%;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1215686275);
  }
}
.header__nav-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media (max-width: 600px) {
  .header__nav-top {
    justify-content: flex-start;
    padding-bottom: 20px;
  }
}
.header__nav-contact {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .header__nav-contact {
    display: none;
  }
}
.header__nav-contact li {
  display: flex;
}
.header__nav-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__nav-contact a i {
  color: #104569;
}
.header__nav-lang {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .header__nav-lang {
    margin: auto;
  }
}
.header__nav-lang li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__nav-lang li:first-child::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #F7941D;
  display: block;
}
.header__nav-lang a {
  display: flex;
}
.header__nav-lang a.active {
  font-weight: 600;
}
.header__nav-menu {
  display: flex;
  align-items: center;
  gap: 60px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .header__nav-menu {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
  }
}
.header__nav-menu li {
  display: flex;
}
@media (max-width: 600px) {
  .header__nav-menu li {
    width: 100%;
  }
}
.header__nav-menu a {
  display: flex;
}
@media (max-width: 600px) {
  .header__nav-menu a {
    width: 100%;
    padding: 10px 0px;
    border-top: 1px solid #eee;
  }
}
.header__mobile-menu {
  display: none;
  width: 50px;
  height: 50px;
  background-color: #F7941D;
  color: white;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
}
@media (max-width: 600px) {
  .header__mobile-menu {
    display: flex;
  }
}

.hero {
  height: 800px;
  display: flex;
  background: linear-gradient(134deg, #FFFDF6 0%, #FFF0C6 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 200px;
  margin-top: -200px;
  position: relative;
}
@media (max-width: 600px) {
  .hero {
    padding: 80px 0px;
    margin-top: -80px;
    height: auto;
  }
}
.hero__container {
  width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .hero__container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}
.hero__img {
  width: 525px;
  height: 505px;
}
@media (max-width: 600px) {
  .hero__img {
    width: 100%;
    height: auto;
  }
}
.hero__text {
  display: flex;
  flex-direction: column;
  width: 500px;
}
@media (max-width: 600px) {
  .hero__text {
    width: 100%;
    padding: 20px;
  }
}
.hero__text h4 {
  font-size: 18px;
  font-weight: 400;
  color: #19537b;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .hero__text h4 {
    font-size: 14px;
  }
}
.hero__text h3 {
  font-size: 36px;
  font-weight: 700;
  color: #104569;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .hero__text h3 {
    font-size: 22px;
  }
}
.hero__text span {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
.hero__text span::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #72BF44;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 0px;
}
.hero__shape {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 57px;
  background: url("../images/slider-bottom-bg.svg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.products {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0px;
}
@media (max-width: 600px) {
  .products {
    padding: 40px 20px;
  }
}
.products__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media (max-width: 600px) {
  .products__container {
    width: 100%;
  }
}
.products__container > i.uil {
  font-size: 40px;
  color: #523A2D;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .products__container > i.uil {
    display: none;
  }
}
.products__container > i.uil:hover {
  opacity: 1;
}
.products__container > i.uil.uil-angle-left-b {
  left: -50px;
}
.products__container > i.uil.uil-angle-right-b {
  right: -50px;
}
.products__slider {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.products__slider-container {
  width: 100%;
  display: flex;
}

.product {
  height: 300px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}
@media (max-width: 600px) {
  .product {
    height: auto;
    padding: 20px;
    flex-direction: column;
  }
}
.product::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../images/product-bg.png") center center no-repeat;
  z-index: 2;
  transition: all 0.6s ease;
}
@media (max-width: 600px) {
  .product::before {
    display: none;
  }
}
.product::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(134deg, #FFFDF6 0%, #FFF0C6 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.product:hover::after {
  opacity: 1;
}
.product:hover::before {
  filter: blur(5px);
}
.product:hover .button--detail {
  background: white;
}
.product__text {
  width: 260px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .product__text {
    width: 100%;
    order: 2;
  }
}
.product__text h2 {
  font-size: 16px;
  font-weight: 300;
}
.product__text h2 a {
  color: #F7941D;
}
.product__text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product__text h3 a {
  color: #104569;
}
.product__text span {
  font-weight: 300;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.product__text span::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #72BF44;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 0px;
}
.product__img {
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .product__img {
    order: 1;
  }
}
.product__img img {
  width: 245px;
  height: 220px;
}

.why-us {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #FFFBF0;
}
@media (max-width: 600px) {
  .why-us {
    padding: 40px 20px;
  }
}
.why-us__container {
  width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .why-us__container {
    width: 100%;
    padding: 0px;
  }
}
.why-us__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 600px) {
  .why-us__wrapper {
    flex-direction: column;
  }
}
.why-us__wrapper-left {
  width: 300px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .why-us__wrapper-left {
    width: 100%;
  }
}
.why-us__wrapper-left .slogan {
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 600px) {
  .why-us__wrapper-left .slogan {
    align-items: flex-start;
    text-align: left;
  }
}
.why-us__wrapper-left .slogan span {
  padding-left: 0px;
  padding-right: 15px;
}
@media (max-width: 600px) {
  .why-us__wrapper-left .slogan span {
    padding-left: 15px;
    padding-right: 0px;
  }
}
.why-us__wrapper-left .slogan span::after {
  left: auto;
  right: 0px;
}
@media (max-width: 600px) {
  .why-us__wrapper-left .slogan span::after {
    left: 0px;
    right: auto;
  }
}
.why-us__wrapper-right {
  width: 300px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .why-us__wrapper-right {
    width: 100%;
  }
}
.why-us__img {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .why-us__img {
    display: none;
  }
}

.slogan {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  background-color: transparent;
  border-radius: 10px;
}
.slogan:hover {
  background-color: white;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
.slogan i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 10px;
  width: 45px;
  height: 45px;
  background-color: #FFF0C6;
  margin-bottom: 10px;
}
.slogan h5 {
  font-size: 18px;
  color: #523A2D;
  font-weight: 700;
  margin-bottom: 5px;
}
.slogan span {
  font-weight: 300;
  position: relative;
  padding-left: 15px;
}
.slogan span::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #72BF44;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 0px;
}

.numbers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
}
@media (max-width: 600px) {
  .numbers {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.numbers__container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .numbers__container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}

.number {
  display: flex;
  gap: 10px;
  align-items: center;
}
.number i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 100%;
  background-color: #FFF0C6;
  color: #523A2D;
}
.number__text {
  display: flex;
  flex-direction: column;
}
.number__text h6 {
  font-weight: 300;
  font-size: 26px;
  color: #523A2D;
}
.number__text h6 strong {
  font-weight: 900;
}
.number__text span {
  font-weight: 300;
}

.company {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .company {
    padding: 40px 20px;
  }
}
.company__container {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .company__container {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.comp {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}
.comp img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.comp__text {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 9;
  padding: 30px 20px 20px 20px;
  margin-top: -30px;
  background: linear-gradient(0deg, #FFF 80%, rgba(255, 255, 255, 0) 100%);
}
.comp__text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #523A2D;
}
.comp__text span {
  font-weight: 300;
  position: relative;
  padding-left: 15px;
  color: #343434;
}
.comp__text span::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #72BF44;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 0px;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
  background-color: #FFFBF0;
}
@media (max-width: 600px) {
  .gallery {
    padding: 40px 20px;
  }
}
.gallery__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
@media (max-width: 600px) {
  .gallery__container {
    width: 100%;
  }
}
.gallery__container > i.uil {
  font-size: 40px;
  color: #523A2D;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .gallery__container > i.uil {
    display: none;
  }
}
.gallery__container > i.uil:hover {
  opacity: 1;
}
.gallery__container > i.uil.uil-angle-left-b {
  left: -50px;
}
.gallery__container > i.uil.uil-angle-right-b {
  right: -50px;
}
.gallery__slider {
  width: 100%;
  display: flex;
}
.gallery__slider-container {
  width: 100%;
  display: flex;
}
.gallery__slider-container a {
  display: flex;
  width: 280px;
  border-radius: 10px;
}
.gallery__slider-container a img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .gallery__slider-container a img {
    aspect-ratio: 4/3;
  }
}

.blogs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .blogs {
    padding: 40px 20px;
  }
}
.blogs__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .blogs__container {
    width: 100%;
  }
}
.blogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .blogs__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.blog__img {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
}
.blog__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
  object-fit: cover;
}
.blog h3 {
  display: flex;
  margin-bottom: 5px;
}
.blog span {
  font-weight: 300;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.blog span::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #72BF44;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 0px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  float: left;
}
.footer__top {
  width: 100%;
  padding: 80px 0;
  background-color: #FFFBF0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .footer__top {
    padding: 40px 20px;
  }
}
.footer__top-container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__top-container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.footer__cop {
  width: 360px;
  display: flex;
  flex-direction: column;
  font-weight: 300;
}
@media (max-width: 600px) {
  .footer__cop {
    width: 100%;
  }
}
.footer__logo {
  display: flex;
  margin-bottom: 10px;
}
.footer__logo img {
  height: 80px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__menu h6 {
  font-size: 18px;
  font-weight: 700;
  color: #523A2D;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu ul li {
  display: flex;
}
.footer__menu ul a {
  font-weight: 300;
}
.footer__contact {
  width: 285px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__social {
  width: 100%;
  padding: 40px 0;
  background-color: #72BF44;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .footer__social {
    padding: 30px 20px;
  }
}
.footer__social-container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__social-container {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}
.footer__social-container span {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .footer__social-container span {
    font-size: 22px;
  }
}
.footer__social-container ul {
  display: flex;
  gap: 20px;
}
.footer__social-container ul li {
  display: flex;
}
.footer__social-container ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
}
.footer__bottom {
  width: 850px;
  text-align: center;
  font-weight: 300;
  padding: 40px 0;
  font-size: 14px;
}
@media (max-width: 600px) {
  .footer__bottom {
    width: 100%;
    padding: 30px 20px;
  }
}

.contact {
  display: flex;
  gap: 10px;
}
.contact i {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: #FFF0C6;
  color: #523A2D;
  flex-shrink: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__text {
  display: flex;
  flex-direction: column;
}
.contact__text span:first-child {
  font-weight: 300;
  font-size: 14px;
}

/*# sourceMappingURL=main.css.map */
