@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

a {
  text-decoration: none;
}

/* sm: ≥640px */
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
/* md: ≥768px */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
/* lg: ≥1024px */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
/* xl: ≥1280px */
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
/* 2xl: ≥1536px */
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.page-header {
  margin-top: 60px;
  position: relative;
  text-align: center;
  padding: 3.5rem 0;
  border-bottom: 4px solid #feda00;
}
@media (max-width: 1536px) {
  .page-header {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1280px) {
  .page-header {
    padding: 3rem 0;
  }
}
.page-header img {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  margin-bottom: .25rem;
  color: #fff;
}
@media (max-width: 1536px) {
  .page-header h1 {
    font-size: 3.25rem;
  }
}
@media (max-width: 1280px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}
.page-header p {
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: #fff;
}

.main-header {
  padding: .5rem;
  background-color: #f36d38;
  border-top: 4px solid #e3563a;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
@media (max-width: 1536px) {
  .main-header {
    padding: 0.3rem 0;
  }
}
.main-header .container {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 2rem;
}
@media (max-width: 1536px) {
  .main-header .container {
    grid-template-columns: 160px 1fr 160px;
  }
}
@media (max-width: 1280px) {
  .main-header .container {
    grid-template-columns: 100px 1fr 100px;
  }
}
@media (max-width: 1024px) {
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.main-header .container #toggle-menu {
  display: none;
}
@media (max-width: 1024px) {
  .main-header .container #toggle-menu {
    display: flex;
    background-color: rgba(255, 213, 204, 0.2117647059);
    border: none;
    color: #fff;
    width: 40px;
    justify-content: center;
    align-items: center;
    height: 40px;
  }
  .main-header .container #toggle-menu svg {
    stroke: #fff;
    stroke-width: 1.5px;
  }
}
.main-header .container .logo img {
  width: 5.5rem;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1536px) {
  .main-header .container .logo img {
    width: 4.75rem;
  }
}
.main-header .container nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .main-header .container nav {
    display: none;
  }
}
.main-header .container nav a {
  color: #fff;
  font-weight: 500;
  padding: .75rem 1rem;
  font-size: 1rem;
  position: relative;
  display: block;
  height: 100%;
  transition: all ease-in .2s;
}
@media (max-width: 1536px) {
  .main-header .container nav a {
    padding: 0.75rem .75rem;
  }
}
@media (max-width: 1280px) {
  .main-header .container nav a {
    font-size: 14px;
  }
}
.main-header .container nav a:hover {
  color: #feda00;
}
.main-header .container nav a.active::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #feda00;
}
@media (max-width: 1536px) {
  .main-header .container nav a.active::after {
    top: -9px;
  }
}
.main-header .container .social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
}
@media (max-width: 1536px) {
  .main-header .container .social {
    gap: .5rem;
  }
}
@media (max-width: 1024px) {
  .main-header .container .social {
    display: none;
  }
}
.main-header .container .social svg {
  stroke: #fff;
  stroke-width: 1.5px;
}
@media (max-width: 1536px) {
  .main-header .container .social svg {
    width: 28px;
    height: 28px;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000008a;
  z-index: 99999999;
  display: none;
}
.menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  height: 100%;
  z-index: 999999999999999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 0;
  overflow: auto;
  gap: 2rem;
  transition: all 0.3s ease;
  transform: translateX(100%);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  width: 300px;
  max-width: 90%;
  border-bottom: 1px solid #f4f4f4;
  color: #000;
  padding: 1rem 2rem;
}
.mobile-menu nav a.active {
  color: #f36d38;
}
.mobile-menu .social {
  display: flex;
  justify-content: center;
}

.hero {
  max-width: 100vw;
  margin-top: 60px;
}
.hero .swiper {
  width: 100%;
}
.hero .swiper .swiper-slide {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 10rem 0;
}
@media (max-width: 1536px) {
  .hero .swiper .swiper-slide {
    padding: 9rem 0;
  }
}
@media (max-width: 1280px) {
  .hero .swiper .swiper-slide {
    padding: 8rem 0;
  }
}
@media (max-width: 1024px) {
  .hero .swiper .swiper-slide {
    padding: 6rem 0;
  }
}
@media (max-width: 768px) {
  .hero .swiper .swiper-slide {
    padding: 5rem 0;
  }
}
@media (max-width: 640px) {
  .hero .swiper .swiper-slide {
    padding: 4rem 0;
  }
}
.hero .swiper .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
}
.hero .swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000068;
  backdrop-filter: blur(3px);
  z-index: 2;
}
.hero .swiper .swiper-slide .container {
  position: relative;
  z-index: 3;
}
.hero .swiper .swiper-slide .container h1 {
  font-size: 4rem;
  line-height: 130%;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (max-width: 1536px) {
  .hero .swiper .swiper-slide .container h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1280px) {
  .hero .swiper .swiper-slide .container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 1024px) {
  .hero .swiper .swiper-slide .container h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .hero .swiper .swiper-slide .container h1 {
    font-size: 2.25rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 640px) {
  .hero .swiper .swiper-slide .container h1 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
  }
}
.hero .swiper .swiper-slide .container h1 span:first-of-type {
  color: #feda00;
}
.hero .swiper .swiper-slide .container h1 span:last-of-type {
  color: #3ca7ed;
}
.hero .swiper .swiper-slide .container p {
  font-size: 1.25rem;
  color: #ffffffcd;
  max-width: 60%;
  line-height: 140%;
  margin-bottom: 1rem;
}
@media (max-width: 1536px) {
  .hero .swiper .swiper-slide .container p {
    font-size: 1.15rem;
  }
}
@media (max-width: 1280px) {
  .hero .swiper .swiper-slide .container p {
    font-size: 1rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 1024px) {
  .hero .swiper .swiper-slide .container p {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .hero .swiper .swiper-slide .container p {
    line-height: 120%;
    font-size: 14px;
    margin-bottom: .5rem;
  }
}
@media (max-width: 640px) {
  .hero .swiper .swiper-slide .container p {
    margin-bottom: .5rem;
    line-height: 140%;
  }
}
.hero .swiper .swiper-slide .container a {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  color: #fff;
  text-decoration: underline;
  transition: all .2s ease-in-out;
}
@media (max-width: 768px) {
  .hero .swiper .swiper-slide .container a {
    font-size: 14px;
  }
}
.hero .swiper .swiper-slide .container a svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5px;
  stroke: #fff;
  transition: all .2s ease-in-out;
}
@media (max-width: 768px) {
  .hero .swiper .swiper-slide .container a svg {
    width: 20px;
    height: 20px;
  }
}
.hero .swiper .swiper-slide .container a:hover {
  color: #feda00;
}
.hero .swiper .swiper-slide .container a:hover svg {
  stroke: #feda00;
}
.hero .swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #f36d38;
  border: 2px solid #f36d38;
  opacity: 1;
}
@media (max-width: 768px) {
  .hero .swiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
.hero .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #feda00;
  border-color: #fff;
}

.our-story {
  padding: 3rem 0;
  background-image: url("./../imgs/our-story-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.our-story .container .subtitle {
  color: #f36d38;
  font-size: 1.5rem;
  letter-spacing: .5px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 1536px) {
  .our-story .container .subtitle {
    font-size: 1.25rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 1280px) {
  .our-story .container .subtitle {
    font-size: 1.15rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 1024px) {
  .our-story .container .subtitle {
    font-size: 1rem;
    margin-bottom: .5rem;
  }
}
@media (max-width: 640px) {
  .our-story .container .subtitle {
    font-size: 1rem;
    text-align: left;
    margin-bottom: .5rem;
  }
}
.our-story .container .title {
  color: #3ca7ed;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 140%;
}
@media (max-width: 1536px) {
  .our-story .container .title {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 1280px) {
  .our-story .container .title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 130%;
  }
}
@media (max-width: 1024px) {
  .our-story .container .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 130%;
  }
}
@media (max-width: 640px) {
  .our-story .container .title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 120%;
    border-bottom: 1px solid #eae8e8;
    padding-bottom: 1rem;
  }
}
.our-story .container .content-wrapper {
  display: grid;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr auto 1fr;
}
@media (max-width: 1536px) {
  .our-story .container .content-wrapper {
    gap: 2.5rem;
  }
}
@media (max-width: 1280px) {
  .our-story .container .content-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .our-story .container .content-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 640px) {
  .our-story .container .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1536px) {
  .our-story .container .content-wrapper img {
    width: 280px;
  }
}
@media (max-width: 1280px) {
  .our-story .container .content-wrapper img {
    width: 250px;
  }
}
@media (max-width: 640px) {
  .our-story .container .content-wrapper img {
    width: 200px;
    object-fit: contain;
    margin: auto;
  }
}
@media (max-width: 1024px) {
  .our-story .container .content-wrapper .text:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .our-story .container .content-wrapper .text:last-child {
    grid-column: span 1;
  }
}
.our-story .container .content-wrapper .text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #732183;
  margin-bottom: 1rem;
}
@media (max-width: 1536px) {
  .our-story .container .content-wrapper .text h3 {
    font-size: 1.35rem;
  }
}
@media (max-width: 1536px) {
  .our-story .container .content-wrapper .text h3 {
    font-size: 1rem;
  }
}
.our-story .container .content-wrapper .text p {
  font-size: 1rem;
  color: #151515;
  line-height: 130%;
}
@media (max-width: 1280px) {
  .our-story .container .content-wrapper .text p {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .our-story .container .content-wrapper .text p {
    font-size: 12px;
  }
}

.products-section {
  padding: 2.5rem 0;
  background-color: #732183;
}
.products-section .container {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.products-section .container .text {
  text-align: center;
}
.products-section .container .text h2 {
  font-size: 1.75rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 1536px) {
  .products-section .container .text h2 {
    margin-bottom: .5rem;
  }
}
@media (max-width: 1280px) {
  .products-section .container .text h2 {
    font-size: 1.5rem;
  }
}
.products-section .container .text p {
  font-size: 1.15rem;
  color: #ffffffd2;
  line-height: 130%;
}
@media (max-width: 1536px) {
  .products-section .container .text p {
    font-size: 1rem;
  }
}
@media (max-width: 1280px) {
  .products-section .container .text p {
    font-size: 13px;
  }
}
.products-section .container .text .pagination {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 1280px) {
  .products-section .container .text .pagination {
    margin-top: .75rem;
    gap: 1rem;
  }
}
.products-section .container .text .pagination button {
  border: none;
  background-color: #fff;
  border-radius: 0;
  padding: .5rem;
}
@media (max-width: 1280px) {
  .products-section .container .text .pagination button {
    padding: .4rem;
  }
}
.products-section .container .text .pagination button svg {
  stroke: #732183;
}
@media (max-width: 1280px) {
  .products-section .container .text .pagination button svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
  }
}
.products-section .container .product-slider {
  width: 100%;
}
@media (max-width: 1024px) {
  .products-section .container .product-slider {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .products-section .container .product-slider {
    width: 100%;
  }
}
.products-section .container .product-slider .swiper-slide {
  width: 250px;
  background-color: #f36d38;
  padding: 1rem;
}
@media (max-width: 1536px) {
  .products-section .container .product-slider .swiper-slide {
    width: 230px;
  }
}
@media (max-width: 1280px) {
  .products-section .container .product-slider .swiper-slide {
    width: 200px;
  }
}
.products-section .container .product-slider .swiper-slide img {
  width: 100%;
  height: 250px;
  border: 5px solid #fff;
  padding: 10px;
  background-color: #f7f7f7;
  object-fit: contain;
}
@media (max-width: 1536px) {
  .products-section .container .product-slider .swiper-slide img {
    height: 230px;
  }
}
@media (max-width: 1280px) {
  .products-section .container .product-slider .swiper-slide img {
    height: 190px;
  }
}
.products-section .container .product-slider .swiper-slide h2 {
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  margin-top: 12px;
  min-height: 45px;
}
@media (max-width: 1536px) {
  .products-section .container .product-slider .swiper-slide h2 {
    font-size: 17px;
  }
}
@media (max-width: 1280px) {
  .products-section .container .product-slider .swiper-slide h2 {
    font-size: 16px;
  }
}

.contact-us {
  padding: 3rem 0;
  background-color: #f36d38;
  position: relative;
}
.contact-us .container .subtitle {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .5px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 1536px) {
  .contact-us .container .subtitle {
    font-size: 1.25rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 1280px) {
  .contact-us .container .subtitle {
    font-size: 1.15rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 1024px) {
  .contact-us .container .subtitle {
    font-size: 1rem;
    margin-bottom: .5rem;
  }
}
@media (max-width: 640px) {
  .contact-us .container .subtitle {
    font-size: 1rem;
    text-align: left;
    margin-bottom: .5rem;
  }
}
.contact-us .container .title {
  color: #feda00;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 140%;
}
@media (max-width: 1536px) {
  .contact-us .container .title {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 1280px) {
  .contact-us .container .title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 130%;
  }
}
@media (max-width: 1024px) {
  .contact-us .container .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 130%;
  }
}
@media (max-width: 640px) {
  .contact-us .container .title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 120%;
    border-bottom: 1px solid #eae8e8;
    padding-bottom: 1rem;
  }
}
.contact-us .container .contact-wrapper {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 2rem;
  padding-top: 1.25rem;
}
@media (max-width: 1536px) {
  .contact-us .container .contact-wrapper {
    padding-top: .5rem;
  }
}
@media (max-width: 1024px) {
  .contact-us .container .contact-wrapper {
    gap: 1rem;
    padding-top: .5rem;
  }
}
@media (max-width: 768px) {
  .contact-us .container .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-us .container .contact-wrapper > * {
  padding: 2rem;
  background-color: #fff;
  border: none;
}
@media (max-width: 1024px) {
  .contact-us .container .contact-wrapper > * {
    padding: 1.25rem;
  }
}
.contact-us .container .contact-wrapper > * h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 1536px) {
  .contact-us .container .contact-wrapper > * h2 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
  }
}
.contact-us .container .contact-wrapper .info .info-group {
  margin-bottom: 2rem;
}
@media (max-width: 1536px) {
  .contact-us .container .contact-wrapper .info .info-group {
    margin-bottom: 1.5rem;
  }
}
.contact-us .container .contact-wrapper .info .info-group p {
  font-size: 1rem;
  color: #585858;
}
@media (max-width: 1536px) {
  .contact-us .container .contact-wrapper .info .info-group p {
    font-size: 14px;
  }
}
.contact-us .container .contact-wrapper .info .info-group .social {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.contact-us .container .contact-wrapper .info .info-group .social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #cdcdcd;
}
.contact-us .container .contact-wrapper .info .info-group .social a svg {
  stroke-width: 1.5px;
  width: 24px;
  height: 24px;
  stroke: #858585;
}
.contact-us .container .contact-wrapper form .input-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-us .container .contact-wrapper form input, .contact-us .container .contact-wrapper form textarea, .contact-us .container .contact-wrapper form select {
  width: 100%;
  flex: 1;
  resize: none;
  padding: 1rem;
  font-size: 1rem;
  color: #222;
  border: 1px solid #e4e4e4;
}
@media (max-width: 1536px) {
  .contact-us .container .contact-wrapper form input, .contact-us .container .contact-wrapper form textarea, .contact-us .container .contact-wrapper form select {
    font-size: 14px;
    padding: .75rem;
  }
}
.contact-us .container .contact-wrapper form button {
  padding: 1rem 4rem;
  font-size: 1rem;
  color: #fff;
  background-color: #e3a087;
  transition: .3s ease-in all;
  border: none;
}
@media (max-width: 1536px) {
  .contact-us .container .contact-wrapper form button {
    font-size: 14px;
    padding: .75rem;
  }
}
.contact-us .container .contact-wrapper form button:hover {
  background-color: #f36d38;
}
.contact-us .container .contact-wrapper form textarea {
  height: 130px;
}

footer {
  background-color: #f36d38;
  position: relative;
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

.home-footer {
  background-color: #732183;
}
.home-footer:after {
  top: -23px;
  left: 0;
  transform: rotate(180deg);
}

.about {
  padding: 3.5rem 0;
}
.about .container {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 5rem;
  max-width: 1200px;
}
@media (max-width: 1536px) {
  .about .container {
    max-width: 1100px;
  }
}
@media (max-width: 1024px) {
  .about .container {
    grid-template-columns: 5fr 5fr;
    gap: 2rem;
    max-width: 1000px;
  }
}
@media (max-width: 768px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .about .container {
    gap: 1.25rem;
  }
}
.about .container .text h2 {
  color: #f36d38;
  font-size: 1.5rem;
  letter-spacing: .5px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 1536px) {
  .about .container .text h2 {
    font-size: 1.25rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 1280px) {
  .about .container .text h2 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
  }
}
@media (max-width: 1024px) {
  .about .container .text h2 {
    font-size: 1rem;
    margin-bottom: .5rem;
  }
}
@media (max-width: 640px) {
  .about .container .text h2 {
    font-size: 1rem;
    text-align: left;
    margin-bottom: .5rem;
  }
}
.about .container .text h1 {
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 120%;
}
@media (max-width: 1536px) {
  .about .container .text h1 {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 1280px) {
  .about .container .text h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 130%;
  }
}
@media (max-width: 1024px) {
  .about .container .text h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 130%;
  }
}
@media (max-width: 640px) {
  .about .container .text h1 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 120%;
    border-bottom: 1px solid #eae8e8;
    padding-bottom: 1rem;
  }
}
.about .container .text p {
  font-size: 1.25rem;
  color: #2f2f2f;
  max-width: 800px;
}
@media (max-width: 1536px) {
  .about .container .text p {
    max-width: 600px;
    font-size: 1rem;
  }
}
@media (max-width: 1280px) {
  .about .container .text p {
    font-size: 15px;
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .about .container .text p {
    font-size: 14px;
  }
}
.about .container .img {
  position: relative;
  max-width: 400px;
  margin-left: auto;
}
@media (min-width: 1536px) {
  .about .container .img {
    height: 400px;
  }
}
.about .container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .container .img a {
  background-color: #feda00;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
}
@media (max-width: 1280px) {
  .about .container .img a {
    font-size: 14px;
    padding: .75rem;
  }
  .about .container .img a svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
  }
}
@media (max-width: 1280px) {
  .about .container .img a {
    left: 1rem;
    top: 1rem;
    transform: none;
  }
}

.statistics {
  padding: 3rem 0;
  border-top: 1px solid #f1f1f1;
}
.statistics .container .title {
  font-size: 2rem;
  color: #000;
  position: relative;
  width: max-content;
  margin: auto;
  padding: 0 .5rem;
}
@media (max-width: 1536px) {
  .statistics .container .title {
    font-size: 1.85rem;
  }
}
@media (max-width: 1280px) {
  .statistics .container .title {
    font-size: 1.75rem;
  }
}
@media (max-width: 1024px) {
  .statistics .container .title {
    font-size: 1.5rem;
  }
}
.statistics .container .title::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  background-color: #732183;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .statistics .container .title::after {
    width: 8px;
    height: 4px;
  }
}
.statistics .container .title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  background-color: #732183;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .statistics .container .title::before {
    width: 8px;
    height: 4px;
  }
}
.statistics .container .title span {
  color: #f36d38;
}
.statistics .container .statistics-wrapper {
  display: flex;
  justify-content: center;
  gap: 7rem;
  margin-top: 4rem;
}
@media (max-width: 1536px) {
  .statistics .container .statistics-wrapper {
    margin-top: 3.5rem;
    gap: 6rem;
  }
}
@media (max-width: 1536px) {
  .statistics .container .statistics-wrapper {
    margin-top: 3rem;
    gap: 5rem;
  }
}
@media (max-width: 1024px) {
  .statistics .container .statistics-wrapper {
    gap: 3rem;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .statistics .container .statistics-wrapper {
    gap: 2rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 640px) {
  .statistics .container .statistics-wrapper {
    gap: 1rem;
  }
}
.statistics .container .statistics-wrapper h1 {
  font-size: 4rem;
  color: #f36d38;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: .5rem;
}
@media (max-width: 1536px) {
  .statistics .container .statistics-wrapper h1 {
    font-size: 3.75rem;
  }
}
@media (max-width: 1280px) {
  .statistics .container .statistics-wrapper h1 {
    font-size: 3.25rem;
  }
}
@media (max-width: 1024px) {
  .statistics .container .statistics-wrapper h1 {
    font-size: 2.75rem;
  }
}
@media (max-width: 768px) {
  .statistics .container .statistics-wrapper h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 640px) {
  .statistics .container .statistics-wrapper h1 {
    font-size: 1.25rem;
    gap: .25rem;
  }
}
.statistics .container .statistics-wrapper h1 span {
  font-size: 1.5rem;
  color: #732183;
  margin-top: 1.25rem;
  display: block;
}
@media (max-width: 1536px) {
  .statistics .container .statistics-wrapper h1 span {
    font-size: 1.35rem;
    margin-top: 1.15rem;
  }
}
@media (max-width: 1536px) {
  .statistics .container .statistics-wrapper h1 span {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
@media (max-width: 1024px) {
  .statistics .container .statistics-wrapper h1 span {
    font-size: 1rem;
    margin-top: .75rem;
  }
}
@media (max-width: 768px) {
  .statistics .container .statistics-wrapper h1 span {
    margin-top: 0;
    font-size: 12px;
  }
}
.statistics .container .statistics-wrapper p {
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .statistics .container .statistics-wrapper p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .statistics .container .statistics-wrapper p {
    font-size: 12px;
    line-height: 120%;
  }
}

.products {
  padding: 3rem 0;
}
.products .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 1024px) {
  .products .container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (max-width: 768px) {
  .products .container {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.products .container .product-card .img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75rem;
  border: 10px solid #f36d38;
  height: 280px;
}
@media (max-width: 768px) {
  .products .container .product-card .img {
    padding: 1.25rem;
    border-width: 6px;
  }
}
.products .container .product-card .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products .container .product-card h2 {
  font-size: 1.25rem;
  text-align: center;
  color: #222;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .products .container .product-card h2 {
    margin-top: .75rem;
    font-size: 1.15rem;
  }
}

.locations {
  padding: 3rem 0;
}
.locations .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .locations .container {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .locations .container {
    grid-template-columns: 1fr;
  }
}
.locations .container .location-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f36d38;
  transition: all .3s ease-in;
}
@media (max-width: 1024px) {
  .locations .container .location-card {
    padding: .75rem;
    gap: .75rem;
  }
}
.locations .container .location-card:hover {
  box-shadow: rgba(67, 67, 77, 0.2) 0px 7px 29px 0px;
}
.locations .container .location-card .text h2 {
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  margin-bottom: .75rem;
}
@media (max-width: 1024px) {
  .locations .container .location-card .text h2 {
    font-size: 1.15rem;
    gap: .25rem;
    margin-bottom: .5rem;
  }
}
.locations .container .location-card .text h2 svg {
  stroke-width: 1.5px;
  stroke: #fff;
}
@media (max-width: 1024px) {
  .locations .container .location-card .text h2 svg {
    width: 24px;
    height: 24px;
  }
}
.locations .container .location-card .text p {
  color: #fff;
  font-size: 1rem;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .locations .container .location-card .text p {
    font-size: 14px;
  }
}
.locations .container .location-card svg {
  stroke-width: 1.5px;
  stroke: #fff;
}

.contact-page {
  background-color: #fff;
  background-image: none;
}
.contact-page::after {
  display: none;
}
.contact-page .contact-wrapper > * {
  border: 1px solid #e0e0e0 !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c040e8c;
  z-index: 1;
}

@media (max-width: 686px) {
  .page-header {
    height: 200px;
  }
}

/*# sourceMappingURL=main.css.map */
