@charset "UTF-8";
@import "../node_modules/intl-tel-input/build/css/intlTelInput.css";
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Manrope", sans-serif !important;
  font-weight: 400;
  color: var(--color-text);
  background-color: #ffffff !important;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, p, ul, li, a {
  padding: 0;
  margin: 0;
}

a, a:hover, a:focus, a:active {
  color: var(--color-text);
  text-decoration: none !important;
  outline: none;
}

button {
  outline: none !important;
  text-decoration: none !important;
}

input {
  text-decoration: none;
  outline: none;
}

ul li {
  list-style-type: none;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-main);
}

.container {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 1280px;
  width: 100%;
}

.section {
  padding: 64px 0;
}
.section__bg {
  background-color: rgb(249, 250, 251);
}
.section__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
}
.section__subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #999999;
}
.section__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  border: 1px solid transparent;
  transition: 0.3s all ease;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.button__transparent {
  background-color: transparent !important;
  color: black !important;
}
.button__transparent[stroke] *,
.button__transparent [stroke-width],
.button__transparent [stroke] {
  stroke: currentColor !important;
}
.button__bordered {
  border-color: black;
}
.button__rounded {
  border-radius: 999px;
}
.button.w-full {
  width: 100%;
}
.button__main {
  color: white;
  background-color: var(--color-main);
  border-radius: 20px;
  width: 320px;
  text-transform: uppercase;
}

.hamburger-menu {
  display: none;
  border: none;
  background-color: transparent;
  outline: none !important;
  margin-left: 30px;
}
.hamburger-menu .fa {
  color: var(--color-main);
  font-size: 28px;
}

.navigation__drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  left: -100%;
  max-width: 350px;
  width: 100%;
  min-height: 100%;
  background-color: black;
  transition: 0.3s all ease;
  overflow-y: auto;
  padding: 30px;
}
.navigation__drawer.active {
  left: 0;
}
.navigation__drawer .mobile__menu-item {
  margin-bottom: 10px;
}
.navigation__drawer .mobile__menu-item:last-child {
  margin-bottom: 0;
}
.navigation__drawer .mobile__menu-link {
  display: inline-flex;
  padding: 10px;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.accordion {
  box-shadow: none;
  width: 100%;
}
.accordion__list {
  border: transparent;
  margin-bottom: 15px;
}
.accordion__list .link__title {
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  color: white;
}
.accordion .submenu {
  display: none;
  padding: 5px 15px;
  margin: 10px 0;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
.accordion .submenu a {
  font-size: 16px;
  color: white;
  padding: 5px 0;
  display: inline-flex;
}
.accordion .submenu a:hover {
  color: var(--color-main);
}
.accordion li i.fa-chevron-down {
  color: white;
  font-size: 14px;
  margin-left: 10px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s all ease;
  z-index: 99;
  visibility: hidden;
}
.backdrop.active {
  visibility: visible;
  transition: 0.3s all ease;
  left: 0;
}

.mobile-menu__item {
  margin-bottom: 10px;
}
.mobile-menu__link {
  display: inline-flex;
  padding: 5px 10px;
  color: white !important;
}

.input__block {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}
.input__block.has-prepend.label-ml-0 .input__block-label {
  left: 16px !important;
}
.input__block.has-prepend .input__block-input {
  padding-left: 0;
}
.input__block.has-phone-number .input__block-prepend {
  background-color: #ECF1F4 !important;
  color: #78858F !important;
}
.input__block.has-phone-number .input__block-input {
  padding-left: 12px;
}
.input__block.has-phone-number .input__block-label {
  left: 16px !important;
}
.input__block.has-label .input__block-input {
  padding-bottom: 0;
}
.input__block.min-w {
  width: 120px;
  display: inline-flex;
}
.input__block-wrap {
  position: relative;
  border: 1px solid #E2E8EC;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 48px;
  overflow: hidden;
  transition: 0.2s all ease;
  background: white;
}
.input__block-wrap:focus-within {
  border-color: #E2E8EC;
}
.input__block-wrap .input__block-label {
  position: absolute;
  color: #b2bdc9;
}
.input__block-label {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  transition: 0.2s all ease;
  cursor: text;
  transform: translateY(0);
  left: 16px;
  margin-bottom: 0;
  color: var(--noauth-color-text-light);
}
.input__block-label .obrigatorio {
  color: var(--color-main);
}
.input__block-prepend {
  font-size: 16px;
  color: var(--noauth-color-text-light);
  order: 1;
  display: flex;
  height: 48px;
  background-color: white;
  align-items: center;
  justify-content: center;
  padding: 15px;
  min-width: 60px;
}
.input__block-append {
  position: relative;
  z-index: 2;
  background: white;
  font-size: 16px;
  color: #b2bdc9;
  order: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  padding: 15px;
}
.input__block-input {
  height: 48px;
  border: none;
  background: transparent;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  order: 2;
  position: relative;
  z-index: 3;
  display: block;
  outline: none !important;
  transition: all 0.2s ease-in-out;
}
.input__block textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  height: 100% !important;
}
.input__block input:-webkit-autofill,
.input__block input:-webkit-autofill:hover,
.input__block input:-webkit-autofill:focus,
.input__block input:-webkit-autofill:active {
  transition: background-color 600000s 0s, color 600000s 0s;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 30px 0;
  transition: 0.3s all ease;
}
.header.fixed {
  z-index: 5;
}
.header.fixed .header__wrap {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: rgba(41, 44, 47, 0.3764705882);
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
  border-radius: 30px;
  gap: 20px;
}
.header__wrap .logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.header__wrap .logo span {
  font-size: 24px;
  font-weight: bold;
  font-family: "Arial Black", sans-serif;
  color: white;
}
.header__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 0;
}
.header__menu-item a {
  position: relative;
  color: white !important;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}
.header__menu-item a::before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  height: 2px;
  width: 0;
  transition: 0.3s all ease;
  background-color: white;
}
.header__menu-item a:hover::before {
  width: 100%;
}
.header__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.header__phone {
  color: white !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.header__language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header__language i {
  color: white;
  font-size: 16px;
}
.header__language button {
  color: white !important;
  background-color: transparent;
  padding: 5px;
  border: none;
  font-weight: 600;
}
.header__language .dropdown-menu {
  min-width: unset !important;
  left: 0 !important;
}

.main__banner {
  width: 100%;
  min-height: 100dvh;
  background-image: url("../img/main-banner.jpg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main__banner-content {
  padding: 110px 0;
  max-width: 830px;
}
.main__banner-content p {
  font-weight: 400;
  font-size: 54px;
  line-height: 32px;
  color: white;
  margin-top: 20px;
  margin-bottom: 30px;
}
.main__banner-title {
  color: white;
  font-size: 64px;
  max-width: 100% !important;
  margin-bottom: 0;
}
.main__banner-details {
  max-width: 230px;
}
.main__banner-details-item {
  margin-bottom: 20px;
}
.main__banner-details-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.main__banner-details h5 {
  font-size: 22px;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}
.main__banner-details p {
  font-size: 16px;
  color: #8F8F8F;
  line-height: 1.6;
}

.base__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.base__grid.has-divider {
  gap: 100px !important;
}
.base__grid.has-divider .base__grid-column {
  position: relative;
  width: 100%;
  flex: 1;
}
.base__grid.has-divider .base__grid-column:first-child::before {
  content: "";
  position: absolute;
  right: -50px;
  width: 1px;
  height: 100%;
  background-color: #666666;
}
.base__grid-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.base__grid-column.align-items-center {
  justify-content: flex-start !important;
}
.base__grid-column img {
  width: 100%;
  object-fit: contain;
  margin: auto;
}
.base__grid-column p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 50px;
}
.base-divider {
  height: 1px;
  width: 100%;
  background-color: lightgrey;
  margin: 5px 0;
}
.base-page-info {
  position: relative;
  z-index: 1;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.6);
}
.base-page-info .container {
  text-align: center;
}
.base-page-info-title {
  max-width: 800px;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  -webkit-line-clamp: 2;
}
.base-page-info .breadcrumbs {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.base-page-info .breadcrumbs a {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.about__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}
.about__title.md {
  font-size: 32px;
}
.about p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 50px;
}
.about ul {
  padding-left: 20px;
  margin-bottom: 30px;
}
.about ul li {
  list-style-type: disc !important;
  margin-bottom: 10px !important;
}
.about ul li:last-child {
  margin-bottom: 0 !important;
}
.about__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about__details-item-numb {
  font-weight: 300;
  font-size: 46px;
  color: #0f1011;
  margin-bottom: 20px;
}
.about__details-item-title {
  font-weight: 400;
  font-size: 20px;
  color: #0f1011;
  margin-bottom: 5px;
}
.about__details-item p {
  font-weight: 400;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.3px;
}
.about__details-item p:last-child {
  margin-bottom: 0;
}
.about__slider-wrap {
  background-color: #f6f6f6;
  background-image: url(../img/about-footer-bg-left.webp), url(../img/about-footer-bg-right.webp);
  background-repeat: no-repeat;
  background-position: left -30px top, right -30px top;
  background-size: 366px 366px, 382px 382px;
  padding-top: 90px;
  padding-bottom: 90px;
}
.about__slider .splide__arrow--next {
  right: -50px;
}
.about__slider .splide__arrow--prev {
  left: -50px;
}
.about__slider-item {
  padding: 15px;
  /* From Uiverse.io by TheDuskPD */
}
.about__slider-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about__slider-item h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.about__slider-item p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 5px;
  color: #666;
}
.about__slider-item-inner {
  height: 250px;
  border-radius: 7px;
  padding: 35px 15px;
  background: #f6f6f6;
  box-shadow: 2px 4px 12px rgba(52, 52, 52, 0.4);
}
.about__slider-item .rating {
  display: inline-block;
  margin-bottom: 0;
}
.about__slider-item .rating input {
  display: none;
}
.about__slider-item .rating label {
  float: right;
  cursor: pointer;
  transition: color 0.3s;
}
.about__slider-item .rating label:before {
  content: "★";
  font-size: 30px;
}
.about__slider-item .rating input:checked ~ label,
.about__slider-item .rating label:hover,
.about__slider-item .rating label:hover ~ label {
  color: gold;
  transition: color 0.3s;
}
.about-contact-us .footer__contacts {
  margin-top: 50px;
}
.about-contact-us .footer__contacts-item-icon {
  width: 26px;
  height: 26px;
}
.about-contact-us .footer__contacts-item a, .about-contact-us .footer__contacts-item i {
  color: #000;
  font-size: 18px;
}

.services {
  padding: 120px 0;
}
.services__title {
  color: var(--color-main);
  font-size: 42px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.services__slider-item {
  position: relative;
  overflow: hidden;
  max-height: 325px;
  border-radius: 6px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.services__slider-item-content {
  position: relative;
  z-index: 11;
  border: 1px solid grey;
  border-radius: 6px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 3px solid grey;
  padding: 30px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  transition: 0.3s all ease;
  width: 100%;
  overflow: hidden;
}
.services__slider-item-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.3s all ease;
  z-index: 1;
  overflow: hidden;
}
.services__slider-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__slider-item-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.41);
}
.services__slider-item:hover {
  border-color: var(--color-main);
}
.services__slider-item:hover .services__slider-item-content {
  padding-bottom: 82px;
}
.services__slider-item:hover .services__slider-item-photo {
  opacity: 1;
}
.services__slider-item:hover h3,
.services__slider-item:hover p,
.services__slider-item:hover i,
.services__slider-item:hover h4,
.services__slider-item:hover span {
  color: white;
}
.services__slider-item:hover button {
  bottom: 0;
}
.services__slider-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services__slider-item p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.services__slider-item i {
  font-size: 18px;
}
.services__slider-item h4 {
  font-weight: 700;
}
.services__slider-item button {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -52px;
  background-color: var(--color-main);
  color: white;
  outline: none;
  border: none;
  text-decoration: none;
  margin-top: 30px;
  transition: 0.3s all ease;
  padding: 14px 24px;
}
.services__slider .splide__arrow--next {
  right: -50px;
}
.services__slider .splide__arrow--prev {
  left: -50px;
}

.faq-accordion {
  border-radius: 20px;
  overflow: hidden;
}
.faq-accordion .card {
  background-color: #fafafa;
  transition: 0.3s all ease;
  border: none;
}
.faq-accordion .card:hover {
  background-color: #ececec;
}
.faq-accordion .card button {
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-accordion .card button i {
  font-size: 20px;
  font-weight: 600;
  transform: rotate(90deg) !important;
  transition: 0.3s all ease;
}
.faq-accordion .card .collapsed .fa {
  transform: rotate(0deg) !important;
}
.faq-accordion .card-body {
  background-color: transparent !important;
  padding-left: 30px !important;
  line-height: 1.8;
}

.cta__form {
  max-width: 768px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.breadcrumbs li a {
  display: inline-flex;
  position: relative;
  padding-right: 15px;
  color: #333333;
  font-weight: 600;
}
.breadcrumbs li a::before {
  font-family: "FontAwesome", sans-serif;
  position: absolute;
  content: "\f105";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.breadcrumbs li:last-child a {
  pointer-events: none;
}
.breadcrumbs li:last-child a::before {
  content: "";
}

.has-prepend .input-group-prepend {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  background-color: transparent !important;
  border: 1px solid #ced4da !important;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.has-prepend .input-group-prepend select {
  border: none !important;
  background-color: transparent !important;
  outline: none !important;
  text-decoration: none !important;
}

.input-group {
  position: relative;
  z-index: 10;
}

.form-control, select {
  box-shadow: none !important;
  outline: none !important;
  transition: none !important;
  overflow: hidden;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0) !important;
  background-color: rgb(255, 255, 255) !important;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 400;
  height: 60px !important;
}
.form-control:focus, select:focus {
  border-color: #ced4da !important;
}
.form-control:hover, .form-control:focus, .form-control:active, .form-control:focus-within, select:hover, select:focus, select:active, select:focus-within {
  box-shadow: none !important;
  outline: none !important;
  border: 1px solid rgb(0, 0, 0) !important;
}

.products__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.products__item {
  padding: 30px;
  transition: 0.3s all ease;
}
.products__item:hover .products__item-photo img {
  transform: scale(1.1);
}
.products__item-photo {
  width: 100%;
  height: 350px;
  margin-bottom: 24px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 20px;
}
.products__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  transform: scale(1);
}
.products__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.products__item-content h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 10px;
  color: #333333;
}
.products__item-content span {
  font-size: 17px;
  line-height: 20px;
  color: #333333;
}
.products__details {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 50px 100px;
  width: 100%;
}
.products__details-photo {
  display: flex;
  gap: 30px;
  width: 100%;
}
.products__details-content {
  width: 100%;
}
.products__details-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 67px;
  margin-bottom: 24px;
}
.products__details-content strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
}
.products__details-content p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 31px;
  margin-bottom: 40px;
  font-weight: 400 !important;
}
.products__details-content .form-group {
  width: 100px;
  margin-bottom: 40px;
}
.products__slider {
  width: 100%;
}
.products__slider .splide__slide img {
  width: 100%;
}
.products__page-header {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.6);
}
.products__page-header-content {
  width: 100%;
}
.products__page-header-content h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.products__page-header-content p {
  max-width: 600px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.thumbnail__slider {
  padding: 70px 0;
  height: min-content !important;
}
.thumbnail__slider .splide__slide {
  opacity: 0.3;
}
.thumbnail__slider .splide__slide.is-active {
  opacity: 1;
  border: none !important;
}
.thumbnail__slider .splide__arrow {
  background-color: transparent;
}

.footer {
  background-color: #00030c;
  color: white;
  padding: 20px 0 40px 0;
}
.footer a {
  color: white;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.3803921569);
  margin: 0;
  font-size: 14px;
}
.footer .footer-links {
  display: flex;
}
.footer .footer-links-item {
  color: rgba(255, 255, 255, 0.3803921569);
  margin: 0 15px;
  text-decoration: none;
  white-space: nowrap;
}
.footer .footer-links-item:first-child {
  margin-left: 0;
}
.footer .footer-links-item:last-child {
  margin-right: 0;
}
.footer .footer-links-item:hover {
  color: #fff;
}
.footer__left {
  flex: 33%;
}
.footer__left p {
  color: rgba(255, 255, 255, 0.3803921569);
  font-size: 14px;
}
.footer__center {
  display: flex;
  justify-content: center;
  flex: 33%;
}
.footer__right {
  display: flex;
  justify-content: center;
  flex: 33%;
}
.footer__contacts-item {
  display: flex;
  gap: 5px;
  width: 100%;
  margin-bottom: 10px;
  color: white;
  font-size: 16px;
  font-weight: 500;
}
.footer__contacts-item:last-child {
  margin-bottom: 0;
}
.footer__contacts-item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__contacts-item-icon .fa {
  font-size: 16px;
}
.footer__logo img {
  max-width: 90px;
}
.footer__logo span {
  color: white;
  font-size: 24px;
  font-weight: 700;
}
.footer__socials-item {
  margin-bottom: 10px;
}
.footer__socials-item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__socials-item-icon .fa {
  font-size: 16px;
}
.footer__socials-item:last-child {
  margin-bottom: 0;
}
.footer__socials-link {
  display: flex;
  gap: 5px;
  width: 100%;
  color: white;
  font-size: 16px;
}

.learn-more-button {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  border: none;
  outline: none;
  text-decoration: none;
  background-color: transparent;
  gap: 10px;
}
.learn-more-button .fa {
  font-weight: 700;
  font-size: 16px;
}
.learn-more-button .fa {
  transition: 0.3s all ease;
}
.learn-more-button:hover .fa {
  padding-left: 5px;
}

.contact-us-modal .modal-body {
  padding: 30px;
}
.contact-us-modal .modal-content {
  border-radius: 32px;
  overflow: hidden;
}
.contact-us-modal-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-main);
}
.contact-us-modal-subtitle {
  font-size: 16px;
  text-align: center;
  color: #565b65;
}
.contact-us-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.main-color {
  color: var(--color-main);
}

/* Container styling */
.input-group.has-prepend {
  position: relative;
  display: block;
  /* Changed from flex to block */
  border-radius: 3px;
  overflow: visible;
  margin-bottom: 1rem;
}

/* The plugin will inject this container */
.iti {
  width: 100%;
  display: block;
}

/* Make sure the input takes full width */
.iti input {
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding-left: 80px;
  /* Adjust based on flag container width */
  font-size: 16px;
}

/* Style the flag container */
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  z-index: 2222;
}

.iti__selected-flag {
  height: 58px;
  /* Slightly less than input height to account for borders */
  padding: 0 8px 0 12px;
  border-right: 1px solid rgb(0, 0, 0);
  display: flex;
  align-items: center;
  margin-left: 2px;
  width: min-content !important;
}

/* Adjust dropdown positioning */
.iti__country-list {
  max-height: 200px;
  overflow-y: auto;
  margin-top: 0;
  position: relative;
  z-index: 50 !important;
  background: white;
  border: 1px solid rgb(0, 0, 0) !important;
}

#country-dropdown-container {
  position: absolute;
  z-index: 999999 !important;
  /* Extremely high z-index */
  top: 0;
  left: 0;
}

#country-dropdown-container .iti__country-list {
  position: static !important;
  /* Override absolute positioning */
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: white !important;
}

#phone {
  padding-left: 100px !important;
}

.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback-custom {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.form-control.is-invalid ~ .invalid-feedback-custom {
  display: block;
}

#statusMessage.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
}

#statusMessage.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

#modalStatusMessage.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
}

#modalStatusMessage.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

/* Container for the search input + icon */
.store-search.has-prepend {
  position: relative;
  margin-bottom: 1rem; /* replicate your “mb-3” */
}

/* Make room on the right for the icon */
.store-search.has-prepend .form-control {
  width: 100%;
  padding-right: 3rem;
  box-sizing: border-box;
}

/* Absolutely position the icon inside that padding */
.store-search.has-prepend .store-search-prepend {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  pointer-events: none; /* let clicks through to the input */
}

/* Make the <i> clickable (if desired) and style it */
.store-search.has-prepend .store-search-prepend i {
  pointer-events: auto;
  cursor: pointer;
  color: #999;
  font-size: 1rem;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* This will make the content area expand to push footer down */
/* Wrap all your content between header and footer in this wrapper */
.content-wrapper {
  flex: 1 0 auto;
}

/* The footer will naturally appear at the bottom */
.footer {
  flex-shrink: 0; /* Prevents the footer from shrinking */
}

:root {
  --color-main: #007bff;
  --color-bg: #FAFAFA;
  --color-border: #D0D0D0;
  --color-title: #1E1E1E;
  --color-text: #232D3D;
}

@media (min-width: 1450px) {
  .container {
    max-width: 1320px !important;
  }
}
@media (max-width: 1350px) {
  .header__menu {
    gap: 20px 25px;
  }
  .header__right {
    gap: 20px;
  }
  .services__wrap {
    padding: 0 30px;
  }
  .services {
    padding: 40px 0 50px;
  }
}
@media (max-width: 1200px) {
  .header__wrap .logo span {
    font-size: 16px;
  }
  .about__title {
    font-size: 32px;
  }
  .about p {
    font-size: 16px;
  }
  .products__details {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .header__wrap .logo span {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .header .hamburger-menu {
    display: inline-flex;
    margin-left: 0;
  }
  .container {
    max-width: 100% !important;
    padding: 0 20px !important;
  }
  .main__banner {
    min-height: unset !important;
  }
  .main__banner-content {
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main__banner-content button {
    padding: 5px 15px !important;
  }
  .main__banner-title {
    font-size: 48px;
  }
  .base__grid {
    gap: 50px;
  }
  .button {
    padding: 10px 15px;
  }
  .about__title {
    margin-bottom: 20px;
  }
  .about p {
    margin-bottom: 30px;
  }
  .services__slider .splide__arrow {
    background-color: transparent !important;
  }
  .services__slider .splide__arrow svg {
    filter: invert(1);
  }
  .products__page-header {
    min-height: 400px;
  }
  .products__page-header-content h2 {
    font-size: 38px;
  }
  .products__page-header-content p {
    font-size: 18px;
  }
  .products__details {
    grid-template-columns: 1fr;
  }
  .products__details-content {
    order: 1;
  }
  .products__details-content h2 {
    font-size: 32px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .products__details-photo {
    order: 2;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .header__wrap .logo img {
    width: 60px;
    height: 60px;
  }
  .base__grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 40px 0;
  }
  .about__title {
    text-align: center;
  }
  .about p {
    text-align: center;
  }
  .base__grid .d-flex {
    justify-content: center;
  }
  .base__grid-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .base__grid-column img {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .services__title {
    font-size: 32px;
  }
  .section__title {
    font-size: 32px;
  }
  .faq-accordion .card button {
    font-size: 16px;
  }
  .faq-accordion .card-body p {
    font-size: 14px;
    line-height: 1.6;
  }
  .products__wrap {
    grid-template-columns: 1fr 1fr;
  }
  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer__left, .footer__center, .footer__right {
    flex: none;
    width: 100%;
    justify-content: center !important;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  .footer__logo {
    margin: 0 auto 15px;
  }
  .footer__logo img {
    margin-bottom: 8px;
  }
  .footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .footer__contacts-item {
    justify-content: center;
  }
  .footer__socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer .footer__socials-item {
    margin: 0;
  }
  .footer__bottom {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }
  .footer .footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
  }
  .footer .footer-links-item {
    margin: 0;
    padding: 0 8px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.3803921569);
    text-decoration: none;
  }
  .footer .footer-links-item:hover {
    color: #fff;
  }
  .about-contact-us .base__grid-column form {
    width: 100%;
  }
  .about-contact-us .button__main {
    margin-left: auto !important;
  }
  .about-contact-us .about__title {
    font-size: 28px;
  }
  .base__grid.has-divider {
    gap: 50px !important;
  }
  .about__slider-wrap {
    background-image: unset;
  }
}
@media (max-width: 650px) {
  .section__title {
    font-size: 28px;
  }
  .about p {
    margin-bottom: 20px;
  }
  .about__title {
    font-size: 28px;
  }
  .section__subtitle {
    font-size: 18px;
  }
  .products__details {
    gap: 30px;
  }
  .products__details-photo {
    max-width: 100%;
  }
  .about__details {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .header {
    padding: 0;
    border-radius: 0;
  }
  .header .container {
    padding: 0 !important;
  }
  .header__wrap {
    border-radius: 0;
  }
  .header__right .header__phone {
    display: none;
  }
  .main__banner-title {
    font-size: 32px;
  }
  .main__banner-content p {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .container {
    padding: 0 20px !important;
  }
  .navigation__drawer {
    max-width: 75%;
  }
}
@media (max-width: 380px) {
  .products__wrap {
    grid-template-columns: 1fr;
  }
}
@keyframes topToBottom {
  0% {
    margin-top: -50px;
  }
  50% {
    margin-top: 50px;
  }
  100% {
    margin-top: -50px;
  }
}
@keyframes bottomToTop {
  0% {
    margin-top: 50px;
  }
  50% {
    margin-top: -50px;
  }
  100% {
    margin-top: 50px;
  }
}
@-webkit-keyframes wobble-hor-bottom {
  0%, 100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%, 100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

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