@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap");
:root {
  --font: "Poppins", sans-serif !important;
  --font2: "Plus Jakarta Sans", sans-serif !important;
  --button-radius: 7px !important;
}

* {
  font-family: var(--font);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

img, picture, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  background-color: var(--background-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--link-color);
}

a:hover {
  text-decoration: underline;
  color: var(--link-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-family: var(--font2);
}

p, ul, ol {
  color: var(--paragraph-color);
}

input, textarea {
  outline: none;
  box-shadow: none;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

:root {
  --highlight-color: #69bc48;
  --primary-color: #69bc48;
  --secondary-color: #fff;
  --paragraph-color: #555555;
  --border-radius: 10px;
  --numbers-number-color: #69bc48;
  --border-color: #eaeaea;
  --background-color: white;
  --section-preTitle-background-color: #f4f4f4;
  --services-boxes-color: #f9f7f2;
  --input-radius: 5px;
  --news-border-color: #eaeaea;
}

@keyframes shake {
  0% {
    transform: rotateZ(0);
  }
  10% {
    transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.2857142857deg);
  }
  80% {
    transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.3333333333deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
Style * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body {
  background-color: #fff;
  min-height: 100vh;
  font-family: "Poppins";
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

ul {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Sansita-Regular";
  src: url("../fonts/Sansita-Regular.ttf");
}
@font-face {
  font-family: "Sansita-Bold";
  src: url("../fonts/Sansita-Bold.ttf");
}
@font-face {
  font-family: "MyriadPro-Regular";
  src: url("../fonts/MyriadPro-Regular.ttf");
}
@media (min-width: 1601px) {
  .container {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-lg {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-xl {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-xxl {
    max-width: 1400px !important;
  }
}
.header {
  position: relative;
  background-color: var(--background-color);
}
.header-message {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 5rem 1rem 2rem;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 991px) {
  .header-message {
    padding: 1rem 2rem 1rem 2rem;
  }
}
.header-message-content {
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
  background-image: url("../img/icon-info-grey.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 2.25rem;
}
.header-message-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--paragraph-color);
  margin: 0;
}
@media (max-width: 991px) {
  .header-message-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .header-message-content {
    background-position: center top;
    padding-left: 0;
    padding-top: 2rem;
    text-align: center;
  }
}
.header-message-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  border: 1px solid var(--border-color);
  padding: 0.25rem;
  border-radius: 50%;
  transition-duration: 0.15s;
  filter: brightness(0.75);
}
.header-message-close svg, .header-message-close path {
  transition-duration: 0.15s;
  fill: var(--border-color);
}
.header-message-close:hover {
  filter: none;
  border-color: var(--highlight-color);
}
.header-message-close:hover svg, .header-message-close:hover path {
  fill: var(--highlight-color);
}
@media (max-width: 991px) {
  .header-message-close {
    position: unset;
    width: fit-content;
    width: -moz-fit-content;
    transform: none;
    margin-top: 0.4rem;
  }
}
@media (max-width: 991px) {
  .header-logo {
    max-width: 50%;
  }
  .header-logo img {
    margin-right: 1rem;
  }
}
.header #nav .navbar-nav {
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1199px) {
  .header #nav .navbar-nav {
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .header #nav .navbar-nav {
    justify-content: flex-start;
  }
  .header #nav .navbar-nav .dropdown-hover > a {
    display: flex;
  }
  .header #nav .navbar-nav .dropdown-hover > a::after {
    margin-left: auto;
  }
}
.header #nav .nav-item.dropdown-hover > a::after {
  background-image: url("../img/arrow-dropdown-black.png");
  background-repeat: no-repeat;
  background-position: right center;
  content: "";
  padding-left: 1.25rem;
}
.header #nav .nav-item .dropdown-hover {
  position: relative;
}
.header #nav .nav-item .dropdown-hover-menu {
  position: absolute;
  display: none;
  z-index: 1000;
  margin-left: -0.75rem;
  padding-top: 0.5rem;
}
@media (max-width: 991px) {
  .header #nav .nav-item .dropdown-hover-menu {
    margin-left: 0;
    margin-bottom: 0.65rem;
    padding-top: 0.65rem;
  }
}
.header #nav .nav-item .dropdown-hover-menu > div {
  padding: 1rem 1.75rem 1rem;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1215686275);
}
@media (max-width: 991px) {
  .header #nav .nav-item .dropdown-hover-menu > div {
    box-shadow: none;
    padding: 0 1rem;
    border: 0;
  }
  .header #nav .nav-item .dropdown-hover-menu > div svg {
    display: none;
  }
}
@media (max-width: 991px) {
  .header #nav .nav-item .dropdown-hover-menu {
    position: unset;
    text-align: center;
  }
}
.header #nav .nav-item .dropdown-hover-item {
  color: var(--primary-color);
  transition-duration: 0.15s;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.025rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  min-width: 275px;
}
.header #nav .nav-item .dropdown-hover-item svg {
  fill: var(--highlight-color);
  margin-right: 0.75rem;
}
.header #nav .nav-item .dropdown-hover-item svg path {
  fill: var(--highlight-color);
}
.header #nav .nav-item .dropdown-hover-item:hover {
  color: var(--highlight-color);
  text-decoration: none;
}
@media (max-width: 991px) {
  .header #nav .nav-item .dropdown-hover-item {
    line-height: 30px;
    font-weight: 400;
    min-width: unset;
  }
}
.header #nav .nav-item .nav-link {
  color: var(--menu-color);
  font-size: 16px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-decoration: none;
  position: relative;
}
@media (max-width: 991px) {
  .header #nav .nav-item .nav-link {
    margin-right: 0;
    padding: 0.65rem 1rem;
    font-size: 15px;
  }
  .header #nav .nav-item .nav-link:hover {
    color: var(--highlight-color);
  }
}
.header #nav .nav-item .nav-link::before {
  content: "";
  width: calc(100% - 2rem);
  height: 3px;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  background: var(--highlight-color);
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}
@media (min-width: 992px) {
  .header #nav .nav-item:hover .nav-link::before, .header #nav .nav-item.active .nav-link::before {
    transform: scale3d(1, 1, 1);
  }
}
@media (max-width: 767px) {
  .header #nav .nav-item {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .header #nav {
    padding-left: 0rem;
    padding: 1rem 0;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .header #nav {
    padding: 1.25rem 0 0;
  }
}
.header-logo, .header-contact {
  flex: 0 0 250px;
}
@media (max-width: 1200px) {
  .header-logo, .header-contact {
    flex: unset;
  }
}
.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 991px) {
  .header-contact {
    padding-top: 1.5rem;
    justify-content: center;
  }
}
.header-contact-icon {
  background-color: var(--highlight-color);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  aspect-ratio: 1/1;
}
.header-contact-icon svg {
  fill: var(--secondary-color);
}
.header-contact-content {
  display: flex;
  flex-direction: column;
}
.header-contact a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  transition: 0.15s;
}
.header-contact a:hover {
  text-decoration: none;
  color: var(--highlight-color);
}
.header-main {
  filter: drop-shadow(0 0 14.5px rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .header-main {
    left: 0.5rem;
    right: 0.5rem;
  }
}
.header-main-nav {
  background-color: var(--secondary-color);
  padding: 1.5rem 3rem;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 1199px) {
  .header-main-nav {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .header-main-nav {
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }
}
.header-breadcrumb {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.header-breadcrumb-text {
  padding: 80px 0 160px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .header-breadcrumb-text {
    padding: 4rem 0;
  }
}
.header-breadcrumb-text h1 {
  color: #375955 !important;
  margin: 0 !important;
}
.header-breadcrumb-box {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background-color: #fff;
  margin-top: 40px;
  border-radius: 25px;
}
.header-breadcrumb-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
.header-breadcrumb-ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-breadcrumb-ul li a {
  color: #000;
  text-transform: initial;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
}
.header-breadcrumb-ul li svg {
  fill: var(--highlight-color);
  margin: 0 1rem;
}
.header-banner {
  position: relative;
  padding: 0 1.25rem 1.25rem;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 768px) {
  .header-banner {
    padding: 0 0.5rem;
  }
}
.header-banner-item {
  position: relative;
}
.header-banner-item img {
  height: calc(100svh - 1.25rem);
  border-radius: 0 0 20px 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .header-banner-item img {
    height: calc(100svh - 0.5rem);
    filter: brightness(0.85);
  }
}
.header-banner-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header-banner-text > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .header-banner-text {
    bottom: 5svh;
    left: 0.5rem;
    right: 0.5rem;
    width: calc(100% - 1rem);
  }
}
.header-banner-text-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
  height: 500px;
}
@media (max-width: 991px) {
  .header-banner-text-inner {
    height: 100%;
  }
}
.header .navbar-toggler {
  padding-right: 0;
  padding-top: 0;
  margin-top: -0.25rem;
}
.header .animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.header .animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: var(--highlight-color);
}
.header .animated-icon span:nth-child(1) {
  top: 0px;
}
.header .animated-icon span:nth-child(2) {
  top: 10px;
}
.header .animated-icon span:nth-child(3) {
  top: 20px;
}
.header .animated-icon.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.header .animated-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .animated-icon.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button-white {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--button-radius);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
  font-size: 16px;
  line-height: 33px;
  font-weight: 500;
  transition: 0.25s;
  padding: 0.7rem 1.5rem;
  gap: 0.5rem;
  width: fit-content;
  width: -moz-fit-content;
}
.button-white svg {
  margin-left: 1rem;
}
.button-white svg path {
  fill: var(--secondary-color);
}
.button-white:hover {
  background-color: var(--secondary-color);
  color: var(--button-color);
  text-decoration: none;
  box-shadow: inset 10em 0 0 0 var(--secondary-color);
}
.button-white:hover svg, .button-white:hover path {
  fill: var(--button-color) !important;
}

.button-highlighted {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--button-radius);
  border: 1px solid var(--highlight-color);
  color: var(--secondary-color);
  background-color: var(--highlight-color);
  font-size: 16px;
  line-height: 33px;
  font-weight: 500;
  height: 58px;
  border-radius: 29px;
  transition: 0.25s;
  padding: 0.7rem 2rem;
  gap: 0.5rem;
  width: fit-content;
  width: -moz-fit-content;
}
.button-highlighted::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.button-highlighted:hover {
  background-color: var(--secondary-color);
  color: var(--highlight-color);
  text-decoration: none;
  box-shadow: inset 10em 0 0 0 var(--secondary-color);
}
.button-highlighted:hover svg, .button-highlighted:hover path {
  fill: var(--highlight-color) !important;
}
.button-highlighted.no-border {
  border-color: transparent;
}
.button-highlighted.no-border:hover {
  color: var(--primary-color);
}
.button-highlighted.no-border:hover svg, .button-highlighted.no-border:hover path {
  fill: var(--primary-color) !important;
}

.banner {
  background-image: var(--banner-background);
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  margin-bottom: 7rem;
}
@media (max-width: 1399px) {
  .banner {
    height: 550px;
    margin-bottom: 6rem;
  }
}
@media (max-width: 1199px) {
  .banner {
    height: auto;
    margin-bottom: 0;
  }
}
.banner-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
}
@media (max-width: 1399px) {
  .banner-text {
    padding-top: 6.5rem;
  }
}
@media (max-width: 991px) {
  .banner-text {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 767px) {
  .banner-text {
    text-align: center;
  }
}
.banner-text h1 {
  color: var(--secondary-color);
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025rem;
  max-width: 80%;
}
@media (max-width: 1399px) {
  .banner-text h1 {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .banner-text h1 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 575px) {
  .banner-text h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
.banner-text p {
  font-size: 21px;
  line-height: 30px;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
  max-width: 70%;
}
@media (max-width: 1399px) {
  .banner-text p {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .banner-text p {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .banner-text p {
    margin-bottom: 1.5rem;
  }
}
.banner-images {
  margin-top: 4rem;
}
@media (max-width: 1199px) {
  .banner-images {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .banner-images {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.banner-images-item {
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -1px;
  border-radius: 15px 0 0 15px;
}
@media (max-width: 1399px) {
  .banner-images-item {
    height: 575px;
  }
}
@media (max-width: 1199px) {
  .banner-images-item {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .banner-images-item {
    height: 350px;
    border-radius: 0 0 15px 15px;
  }
}
.banner-homepage {
  position: relative;
}
.banner-homepage .owl-dots {
  margin: 0;
  position: absolute;
  bottom: 60px;
  z-index: 999;
  left: -12%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .banner-homepage .owl-dots {
    bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .banner-homepage .owl-dots {
    display: none;
  }
}
.banner-homepage .owl-dots button span {
  background-color: var(--section-preTitle-background-color) !important;
  margin: 5px 5px !important;
}
.banner-homepage .owl-dots button.active span {
  background-color: var(--highlight-color) !important;
}
.banner-homepage .owl-nav {
  margin: 0;
  position: absolute;
  bottom: 180px;
  z-index: 999;
  left: -12%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .banner-homepage .owl-nav {
    bottom: 140px;
  }
}
@media (max-width: 1199px) {
  .banner-homepage .owl-nav {
    bottom: 20px;
    left: -14%;
  }
}
@media (max-width: 991px) {
  .banner-homepage .owl-nav {
    bottom: 25px;
    left: 50%;
  }
}
.banner-homepage .owl-nav button {
  margin: 0 !important;
}
.banner-homepage .owl-nav .owl-prev {
  margin-right: 0.5rem !important;
}
.banner-homepage .owl-nav .owl-prev img {
  transform: rotate(180deg);
}

.banner-subpage {
  background-image: var(--header-background);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 0 4rem;
}
.banner-subpage h1 {
  color: var(--secondary-color);
  font-size: 60px;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .banner-subpage h1 {
    margin-bottom: 0rem;
  }
}
@media (max-width: 575px) {
  .banner-subpage h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .banner-subpage {
    padding: 5rem 0;
  }
}
@media (max-width: 575px) {
  .banner-subpage {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .banner-subpage {
    text-align: center;
  }
}

.services2-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem 0;
}
@media (max-width: 1475px) {
  .services2-row {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1800px) {
  .services2-text {
    min-width: 400px;
  }
}
.services2-boxes {
  padding: 0 1.25rem 0 5rem;
}
@media (max-width: 1475px) {
  .services2-boxes {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .services2-boxes {
    padding: 0 4rem;
  }
}
@media (max-width: 576px) {
  .services2-boxes {
    padding: 0;
  }
}
.services2-boxes-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.25rem;
}
@media (min-width: 1800px) {
  .services2-boxes-row {
    max-width: 1169px;
  }
}
@media (max-width: 991px) {
  .services2-boxes-row {
    justify-content: center;
  }
}
.services2-item {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  max-height: 480px;
  aspect-ratio: 1/1.5;
}
@media (max-width: 991px) {
  .services2-item {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}
@media (max-width: 768px) {
  .services2-item {
    flex: 0 0 100%;
  }
}
.services2-item img {
  width: 100%;
  aspect-ratio: 1/1.5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
  transition: 0.3s all;
}
.services2-item-content {
  position: absolute;
  bottom: 3.25rem;
  left: 2rem;
  max-width: 50%;
}
@media (max-width: 1800px) {
  .services2-item-content {
    max-width: 57.5%;
  }
}
@media (max-width: 1475px) {
  .services2-item-content {
    max-width: 60%;
  }
}
.services2-item-content h3 {
  color: var(--secondary-color);
  font-family: var(--font2);
  font-size: 26px;
  line-height: 32px;
  font-weight: bold;
}
.services2-item-arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 52px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--highlight-color);
  border-radius: 50%;
  transition: 0.3s all;
}
.services2-item-arrow svg {
  fill: var(--secondary-color);
}
.services2-item:hover .services2-item-arrow {
  transform: scale(2.5);
}
.services2-item:hover img {
  transform: scale(1.1);
}

.section-secondary {
  background-color: var(--background-secondary-color);
}
.section-header-center > div {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-preTitle {
  color: var(--section-preTitle-color);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  width: -moz-fit-content;
  margin-bottom: 1rem;
}
.section-preTitle::before {
  content: "";
  height: 2px;
  width: 24px;
  background-color: var(--highlight-color);
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0;
}
@media (max-width: 767px) {
  .section-preTitle {
    margin: 0 auto 0.75rem;
  }
}
.section-preTitle span {
  font-size: 18px;
  font-family: "Sansita-Bold";
  letter-spacing: 1.5px;
}
@media (max-width: 767px) {
  .section-title {
    width: 100%;
  }
}
.section-title-center {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section-title h3, .section-title h2 {
  font-size: 48px;
  letter-spacing: -1px;
  margin-top: 2.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media (max-width: 767px) {
  .section-title h3, .section-title h2 {
    text-align: center;
    margin-bottom: 1.75rem !important;
  }
}
.section-footer {
  margin-top: 2.75rem;
}
@media (max-width: 991px) {
  .section-footer {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .section-footer {
    margin-top: 2rem;
  }
}
.section-block {
  padding: 5rem 0 5rem;
}
@media (max-width: 767px) {
  .section-block {
    padding: 3.5rem 0 3.5rem;
  }
}
.section-block .section-preTitle {
  margin-bottom: 1.75rem !important;
}
@media (max-width: 767px) {
  .section-block .section-preTitle {
    margin-bottom: 1.25rem !important;
  }
}
.section-block-textimage:not(.onephoto) {
  margin-bottom: 3.5rem;
}
.section-block-textimage .owl-stage-outer {
  border-radius: var(--border-radius);
}
.section-block-textimage .owl-stage {
  display: flex;
}
.section-block-textimage .owl-item {
  background-color: var(--section-preTitle-background-color);
  border-radius: var(--border-radius);
  flex: 1 0 auto;
}
.section-block-textimage .owl-item > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.section-block-textimage .owl-item img {
  height: 480px;
  max-width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}
@media (max-width: 575px) {
  .section-block-textimage .owl-item img {
    height: 300px;
  }
}
.section-block-textimage .owl-dots {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.section-block-textimage .owl-dots button span {
  background-color: var(--section-preTitle-background-color) !important;
  margin: 5px 5px !important;
}
.section-block-textimage .owl-dots button.active span {
  background-color: var(--highlight-color) !important;
}
.section-block-textimage .owl-nav {
  position: absolute;
  bottom: -4.25rem;
  right: 0;
  display: flex;
  margin-top: 0 !important;
}
.section-block-textimage .owl-nav button {
  border: 1px solid var(--border-color) !important;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition-duration: 0.15s;
}
.section-block-textimage .owl-nav button:hover {
  background-color: var(--border-color) !important;
}
.section-block-textimage .owl-nav .owl-prev img {
  transform: rotate(90deg);
}
.section-block-textimage .owl-nav .owl-next img {
  transform: rotate(-90deg);
}
.section-block-textimage-left .owl-nav {
  right: unset;
  left: 0;
}
.section-block-textimage-nosliderimages {
  margin-bottom: -1.4rem;
}
.section-block-textimage-nosliderimages .row > div {
  margin-bottom: 1.4rem;
}
.section-block-textimage-nosliderimages .col-12 img {
  height: 480px;
}
.section-block-textimage-nosliderimages .col-6 img {
  height: 230px;
}
@media (max-width: 767px) {
  .section-block-textimage-nosliderimages {
    margin-bottom: -0.88rem;
  }
  .section-block-textimage-nosliderimages .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-textimage-nosliderimages .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-textimage-nosliderimages .row > div {
    margin-bottom: 0.88rem;
  }
}
.section-block-gallery {
  margin-bottom: -1.4rem;
  /*
  .row > div {
      margin-bottom: 1.4rem;
      div {
          display: block;
          height: 100%;
          & > a {
              @include flexCenter();
              height: 100%;
              img {
                  border-radius: var(--border-radius);
                  object-fit: cover;
              }
          }
      }
  }
  */
}
.section-block-gallery .owl-stage-outer {
  border-radius: var(--border-radius);
}
.section-block-gallery-image {
  border-radius: var(--border-radius);
}
.section-block-gallery-item {
  border-radius: var(--border-radius);
  background-color: var(--background-secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-block-gallery .owl-nav {
  margin-top: 0;
}
.section-block-gallery .owl-nav button {
  border: 2px solid var(--highlight-color) !important;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition-duration: 0.15s;
  margin: 0 !important;
  background-color: var(--highlight-color) !important;
}
.section-block-gallery .owl-nav button svg {
  transition-duration: 0.15s;
  fill: var(--background-color);
}
.section-block-gallery .owl-nav button:hover {
  background-color: var(--background-color) !important;
}
.section-block-gallery .owl-nav button:hover svg {
  fill: var(--highlight-color);
}
.section-block-gallery .owl-nav button.owl-prev {
  left: -60px;
}
.section-block-gallery .owl-nav button.owl-prev svg {
  transform: rotate(-180deg);
}
.section-block-gallery .owl-nav button.owl-next {
  right: -60px;
}
@media (max-width: 1199px) {
  .section-block-gallery .owl-nav button {
    position: unset;
    display: inline-flex !important;
    transform: none;
    margin: 1rem 0.125rem 0 !important;
  }
}
@media (min-width: 1200px) {
  .section-block-gallery .col-xl-4 img {
    height: 335px;
  }
  .section-block-gallery .col-xl-3 img {
    height: 245px;
  }
  .section-block-gallery .col-xl-2 img {
    height: 190px;
  }
}
@media (min-width: 1200px) {
  .section-block-gallery .owl-item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-block-gallery .col-xl-2 {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .section-block-gallery {
    margin-bottom: -0.88rem;
  }
  .section-block-gallery .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-gallery .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-gallery .row > div {
    margin-bottom: 0.88rem;
  }
}
.section-block-gallery2-image {
  border-radius: var(--border-radius);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-block-gallery2 .row > div {
  margin-bottom: 1.4rem;
}
@media (max-width: 991px) {
  .section-block-gallery2 .row > div {
    max-width: 100% !important;
  }
}
.section-block-gallery2 .row > div div {
  display: block;
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--section-preTitle-background-color);
}
.section-block-gallery2 .row > div div > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.section-block-gallery2 .row > div div > a img {
  border-radius: var(--border-radius);
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .section-block-gallery2 .row > div div > a img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .section-block-gallery2 .row > div div > a img {
    height: 200px;
  }
}
@media (max-width: 575px) {
  .section-block-gallery2 .row > div div > a img {
    height: 175px;
  }
}
@media (max-width: 767px) {
  .section-block-gallery2 {
    margin-bottom: -0.88rem;
  }
  .section-block-gallery2 .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-gallery2 .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-gallery2 .row > div {
    margin-bottom: 0.88rem;
  }
}
@media (max-width: 767px) {
  .section-block-download {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.section-block-download-iconFile {
  background-color: var(--highlight-color);
  border: 1px solid var(--highlight-color);
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.75rem;
  transition-duration: 0.15s;
}
@media (max-width: 767px) {
  .section-block-download-iconFile {
    margin-right: 0;
    margin-bottom: 0.125rem;
  }
}
.section-block-download-iconFile svg, .section-block-download-iconFile path {
  fill: var(--secondary-color);
}
.section-block-download-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section-block-download-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .section-block-download-item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 767px) {
  .section-block-download-item {
    flex-direction: column;
    justify-content: center;
  }
}
.section-block-download-item:hover .section-block-download-iconFile {
  background-color: var(--secondary-color);
}
.section-block-download-item:hover .section-block-download-iconFile svg, .section-block-download-item:hover .section-block-download-iconFile path {
  fill: var(--highlight-color);
}
.section-block-download-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.section-block-download-name p {
  color: #000;
  font-size: 18px;
  line-height: 33px;
  margin-bottom: 0;
}
.section-block-download-name:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .section-block-download-name {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.section-block-download-iconDownload {
  margin-left: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .section-block-download-iconDownload {
    margin-left: 0;
  }
}
.section-block-download-iconDownload span {
  padding-left: 0.5rem;
  color: var(--highlight-color);
  font-size: 18px;
  line-height: 33px;
  font-weight: 500;
  transition-duration: 0.15s;
}
.section-block-download-iconDownload span:hover {
  text-decoration: underline;
}
.section-block-partners {
  margin-bottom: -1.4rem;
}
.section-block-partners-item {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.4rem;
  width: 100%;
  height: calc(100% - 1.4rem);
}
.section-block-partners-item a {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
  padding: 1.5rem;
  cursor: pointer;
}
.section-block-partners-item a img {
  max-height: 100px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transition-duration: 0.3s;
  filter: grayscale(1);
}
.section-block-partners-item a:hover {
  box-shadow: inset 250px 0 0 0 var(--border-color);
}
.section-block-partners-item a:hover img {
  filter: grayscale(0);
}
@media (max-width: 767px) {
  .section-block-partners {
    margin-bottom: -0.88rem;
  }
  .section-block-partners .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-partners .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-partners-item {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
@media (max-width: 1199px) {
  .section-block-contact .footer-icons-box {
    margin-bottom: 1.5rem;
  }
}
.section-block-contact-image {
  max-height: 480px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--border-radius);
}
@media (max-width: 575px) {
  .section-block-contact-image {
    max-height: 300px;
  }
}
.section-block-dropdowns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem 1.2rem 2rem;
}
@media (max-width: 767px) {
  .section-block-dropdowns-header {
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  }
}
.section-block-dropdowns-header:hover {
  text-decoration: none;
}
.section-block-dropdowns-header:hover h4 {
  color: var(--highlight-color);
}
.section-block-dropdowns-header h4 {
  color: var(--primary-color);
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 0;
  transition-duration: 0.15s;
  font-family: var(--font);
}
.section-block-dropdowns-header-icon {
  background-color: var(--highlight-color);
  height: 43px;
  width: 43px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-block-dropdowns-header-icon svg {
  fill: var(--secondary-color);
  transition-duration: 0.1s;
  transform: rotate(90deg);
}
.section-block-dropdowns-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 100ms linear, max-height 100ms linear;
  will-change: opacity, max-height;
}
.section-block-dropdowns-body-content {
  padding: 0 2rem 2.25rem;
}
.section-block-dropdowns-body-content > div > *:last-child {
  margin-bottom: 0;
}
.section-block-dropdowns-item {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
  margin-top: 0.44rem;
  margin-bottom: 0.44rem;
}
.section-block-dropdowns-item.active .section-block-dropdowns-body {
  opacity: 1;
  max-height: 100%;
}
.section-block-dropdowns-item.active .section-block-dropdowns-header-icon svg {
  transform: rotate(270deg);
}
.section-block-services {
  margin-bottom: -24px;
}
.section-block-services .owl-nav {
  margin-top: 0;
}
.section-block-services .owl-nav button {
  border: 2px solid var(--highlight-color) !important;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition-duration: 0.15s;
  margin: 0 !important;
  background-color: var(--highlight-color) !important;
}
.section-block-services .owl-nav button svg {
  transition-duration: 0.15s;
  fill: var(--background-color);
}
.section-block-services .owl-nav button:hover {
  background-color: var(--background-color) !important;
}
.section-block-services .owl-nav button:hover svg {
  fill: var(--highlight-color);
}
.section-block-services .owl-nav button.owl-prev {
  left: -60px;
}
.section-block-services .owl-nav button.owl-prev svg {
  transform: rotate(-180deg);
}
.section-block-services .owl-nav button.owl-next {
  right: -60px;
}
@media (max-width: 1199px) {
  .section-block-services .owl-nav {
    display: none !important;
  }
}
.section-block-team {
  margin-bottom: -1.4rem;
}
.section-block-team-image {
  width: 155px;
  height: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.section-block-team-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.section-block-team-item {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  height: calc(100% - 1.4rem);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3rem 2rem 3rem;
}
.section-block-team-item-column {
  flex-direction: row;
}
.section-block-team-item-column .section-block-team-image {
  margin-bottom: 0;
}
.section-block-team-item-column .section-block-team-body {
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .section-block-team-item-column {
    flex-direction: column;
  }
  .section-block-team-item-column .section-block-team-image {
    margin-bottom: 1.5rem;
  }
  .section-block-team-item-column .section-block-team-body {
    margin-left: 0;
  }
}
.section-block-team-body {
  text-align: center;
}
.section-block-team-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.section-block-team-body p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 0;
}
.section-block-team-name {
  margin-bottom: 0.5rem;
}
.section-block-team-name h4 {
  color: #000;
}
.section-block-team-phone {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.125rem;
}
.section-block-team-phone:hover {
  text-decoration: underline;
}
.section-block-team-email {
  color: var(--highlight-color);
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .section-block-team {
    margin-bottom: -0.88rem;
  }
  .section-block-team .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-team .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-team-item {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
.section-block-team-carousel .owl-stage {
  margin: 0 auto;
  display: flex;
}
.section-block-team-carousel .owl-stage .owl-item {
  flex: 1 0 auto;
}
.section-block-team-carousel .owl-nav {
  margin-top: 0;
}
.section-block-team-carousel .owl-nav button {
  border: 2px solid var(--highlight-color) !important;
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition-duration: 0.15s;
  margin: 0 !important;
  background-color: var(--highlight-color) !important;
}
.section-block-team-carousel .owl-nav button svg {
  transition-duration: 0.15s;
  fill: var(--background-color);
}
.section-block-team-carousel .owl-nav button:hover {
  background-color: var(--background-color) !important;
}
.section-block-team-carousel .owl-nav button:hover svg {
  fill: var(--highlight-color);
}
.section-block-team-carousel .owl-nav button.owl-prev {
  left: -60px;
}
.section-block-team-carousel .owl-nav button.owl-prev svg {
  transform: rotate(-180deg);
}
.section-block-team-carousel .owl-nav button.owl-next {
  right: -60px;
}
@media (max-width: 1199px) {
  .section-block-team-carousel .owl-nav {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .section-block-numbers {
    margin-bottom: -0.88rem;
  }
  .section-block-numbers .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-block-numbers .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section-block-numbers-col {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
@media (max-width: 1199px) {
  .section-block-form .footer-icons-box {
    margin-bottom: 1.5rem;
  }
}
.section-block-map {
  border-radius: var(--border-radius);
  background-color: var(--background-color);
}
.section-block-map iframe {
  display: block;
  border-radius: var(--border-radius);
  width: 100%;
  height: 550px;
}
@media (max-width: 991px) {
  .section-block-map iframe {
    height: 375px;
  }
}
@media (max-width: 767px) {
  .section-block-map iframe {
    height: 325px;
  }
}
.section-block-newsDetail-image {
  border-radius: var(--border-radius);
  display: block;
}
@media (max-width: 767px) {
  .section-block-newsDetail-image {
    margin: 0 auto 2rem;
  }
}
.section-block-subpages {
  padding: 1rem;
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--news-border-color);
  border-radius: var(--border-radius);
  width: fit-content;
  width: -moz-fit-content;
  min-width: 33%;
}
@media (max-width: 991px) {
  .section-block-subpages {
    min-width: unset;
    width: 100%;
  }
}
.section-block-subpages a {
  display: block;
}
.section-block-subpages a:not(:last-child) {
  margin-bottom: 0.5rem;
}

.about2-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 0;
}
@media (max-width: 1200px) {
  .about2-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about2-row {
    gap: 3rem 0;
  }
}
.about2-image img {
  border-radius: var(--border-radius);
  margin-right: 6.5rem;
  border-radius: 20px;
  max-height: 600px;
}
@media (max-width: 1475px) {
  .about2-image img {
    padding-right: 5rem;
  }
}
@media (max-width: 1200px) {
  .about2-image img {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .about2-image img {
    margin: 0 auto;
  }
}
.about2-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
  gap: 2rem 0;
}
.about2-counters.counter-4 {
  grid-template-columns: repeat(4, 1fr);
}
.about2-counters.counter-2 {
  grid-template-columns: repeat(2, 1fr);
}
.about2-counters.counter-1 {
  grid-template-columns: 1fr;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1200px) {
  .about2-counters {
    max-width: 80%;
  }
  .about2-counters.counter-4 {
    max-width: 100%;
  }
  .about2-counters.counter-2 {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .about2-counters {
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .about2-counters {
    grid-template-columns: 1fr !important;
  }
  .about2-counters.counter-1 {
    margin: 2.5rem auto 0;
  }
}
.about2-counters-item {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.about2-counters-item:not(:first-child) {
  padding-left: 1.25rem;
}
.about2-counters-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
  padding-right: 1.25rem;
}
@media (max-width: 768px) {
  .about2-counters-item:not(:last-child) {
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .about2-counters-item {
    padding: 0 !important;
  }
}
.about2-counters-item-number {
  font-family: var(--font2), sans-serif;
  font-size: 36px;
  line-height: 33px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about2-counters-item-text {
  font-size: 16px;
  line-height: 22px;
  color: var(--primary-color);
  font-weight: 600;
}

.reviews2 {
  overflow: hidden;
  padding: 0 2rem;
}
.reviews2 .section-header {
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .reviews2 {
    padding: 0;
  }
}
.reviews2-inner {
  background-color: var(--services-boxes-color);
  padding: 4rem 0 7rem;
  margin: 0 -4rem;
  border-radius: 20px;
}
@media (max-width: 1800px) {
  .reviews2-inner {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .reviews2-inner {
    padding: 3rem 0 5.5rem;
  }
}
.reviews2-item {
  filter: drop-shadow(7.314px 6.82px 5px rgba(219, 240, 231, 0.47));
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  padding: 2.5rem;
}
.reviews2-item-author p, .reviews2-item-author span {
  font-size: 16px;
  line-height: 24px;
}
.reviews2-item-author p {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 0.1rem;
}
.reviews2-item-author span {
  color: var(--paragraph-color);
  font-weight: 400;
  opacity: 0.75;
}
.reviews2-slider {
  padding: 0 4rem;
}
@media (max-width: 1200px) {
  .reviews2-slider {
    padding: 0 2.75rem;
  }
}
@media (max-width: 768px) {
  .reviews2-slider {
    padding: 0 1rem;
  }
}
.reviews2-slider .owl-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  bottom: -2.5rem;
  left: 0;
  width: 100%;
}
.reviews2-slider .owl-dots .owl-dot {
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.reviews2-slider .owl-dots .owl-dot span {
  margin: 0 !important;
  background-color: var(--highlight-color) !important;
  opacity: 0.33;
}
.reviews2-slider .owl-dots .owl-dot.active span, .reviews2-slider .owl-dots .owl-dot:hover span {
  background-color: var(--highlight-color) !important;
  opacity: 1;
}
@media (max-width: 576px) {
  .reviews2-slider .owl-nav {
    display: none;
  }
}
.reviews2-slider .owl-nav .owl-prev, .reviews2-slider .owl-nav .owl-next {
  background-color: var(--highlight-color) !important;
  margin: 0 !important;
  border-radius: 50%;
  width: 52px;
  border: 1px solid var(--highlight-color);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
}
.reviews2-slider .owl-nav .owl-prev svg, .reviews2-slider .owl-nav .owl-next svg {
  fill: var(--secondary-color);
}
.reviews2-slider .owl-nav .owl-prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.reviews2-slider .owl-nav .owl-prev svg {
  transform: rotate(180deg);
}
.reviews2-slider .owl-nav .owl-next {
  right: 0;
  transform: translate(50%, -50%);
}

.numbers {
  margin-bottom: -1.4rem;
}
.numbers-row {
  max-width: 85%;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .numbers-row {
    max-width: 100%;
  }
}
.numbers-col {
  background-color: var(--numbers-number-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1.4rem;
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  height: calc(100% - 1.4rem);
}
.numbers-col.bordered {
  border: 1px solid var(--border-color);
}
@media (max-width: 575px) {
  .numbers-col {
    margin-left: auto;
    margin-right: auto;
    max-height: 270px;
    aspect-ratio: unset;
  }
}
.numbers-col-number {
  color: var(--numbers-number-color);
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
}
.numbers-col-text {
  color: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 767px) {
  .numbers {
    margin-bottom: -0.88rem;
  }
  .numbers .row {
    margin-left: -7px;
    margin-right: -7px;
  }
  .numbers .row > div {
    padding-left: 7px;
    padding-right: 7px;
  }
  .numbers-col {
    height: calc(100% - 0.88rem);
    margin-bottom: 0.88rem;
  }
}
@media (min-width: 1400px) {
  .numbers .row {
    margin: 0 -25px;
  }
  .numbers .row > div {
    padding: 0 25px;
  }
}

.news2-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 1.25rem;
}
@media (max-width: 768px) {
  .news2-row {
    align-items: center;
  }
}
.news2-item {
  flex: 0 0 calc((100% - 2.5rem) / 3);
}
@media (max-width: 1200px) {
  .news2-item {
    flex: 0 0 calc(50% - 0.625rem);
  }
}
@media (max-width: 768px) {
  .news2-item {
    flex: 0 0 100%;
    text-align: center;
  }
}
.news2-item-header {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.news2-item-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: var(--border-radius);
  background-color: var(--highlight-color);
  opacity: 0;
  transition: 0.3s all;
}
.news2-item-header:hover::after {
  opacity: 0.15;
}
.news2-item-body {
  padding: 1.5rem 1.5rem 0;
}
.news2-item-title {
  font-size: 23px;
  line-height: 30px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--font2);
  display: block;
  margin-bottom: 1rem;
  transition: 0.15s all;
}
.news2-item-title:hover {
  text-decoration: none;
  color: var(--highlight-color);
}
.news2-item-description {
  font-size: 16px;
  line-height: 28px;
  color: var(--paragraph-color);
  font-weight: 400;
}
.news2-item-more {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.15s all;
}
.news2-item-more svg {
  fill: var(--highlight-color);
}
@media (max-width: 768px) {
  .news2-item-more {
    justify-content: center;
  }
}
.news2-item-more:hover {
  text-decoration: none;
  color: var(--highlight-color);
}
.news2-item-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
  aspect-ratio: 1.35/1;
}
.news2-item-date {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: var(--highlight-color);
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 400;
}
@media (max-width: 768px) {
  .news2-item-date {
    left: 50%;
    transform: translateX(-50%);
  }
}
.news2-item-date.default {
  position: unset;
  margin-left: 1.25rem;
}
@media (max-width: 768px) {
  .news2-item-date.default {
    margin-left: 0;
  }
}
.news2-footer, .news2-content {
  padding: 0 7.5rem;
}
@media (max-width: 1475px) {
  .news2-footer, .news2-content {
    padding: 0 3.5rem;
  }
}
@media (max-width: 1200px) {
  .news2-footer, .news2-content {
    padding: 0;
  }
}

.footer {
  background-color: var(--footer-color);
}
.footer-top {
  padding: 5rem 0;
  border-bottom: 1px solid var(--footer-secondary-color);
}
@media (max-width: 768px) {
  .footer-top {
    padding: 4rem 0 3.5rem;
  }
}
.footer-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 1.5rem;
}
@media (max-width: 1200px) {
  .footer-top-row {
    grid-template-columns: 1fr;
  }
}
.footer-top .section-subpage h2, .footer-top .section-subpage h3, .footer-top .section-subpage h4, .footer-top .section-subpage h5, .footer-top .section-subpage p {
  color: var(--secondary-color);
}
.footer-top .section-subpage h5 {
  font-size: 21px;
}
.footer-top .section-subpage p {
  opacity: 0.6;
  margin-bottom: 0;
}
.footer-top .section-subpage b, .footer-top .section-subpage strong {
  font-weight: 600;
}
.footer-top-email {
  display: block;
  color: var(--highlight-color) !important;
}
.footer-top-email:hover {
  text-decoration: underline;
}
.footer-top-phone {
  display: block;
  color: var(--secondary-color) !important;
  font-size: 26px;
  font-weight: 600;
}
.footer-top-phone:hover {
  text-decoration: underline;
}
.footer-top-form-header {
  margin-bottom: 2rem;
}
.footer-top-form-row {
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-top-form-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-top-form-line label {
  display: block;
  width: 100%;
}
.footer-top-form-line label.half {
  width: 46%;
}
@media (max-width: 1200px) {
  .footer-top-form-line label.half {
    width: 37.5%;
  }
}
@media (max-width: 768px) {
  .footer-top-form-line label.half {
    width: 100%;
  }
}
.footer-top-form-line input, .footer-top-form-line textarea {
  border: 0;
  background-color: var(--footer-secondary-color);
  border-radius: 7px;
  color: var(--paragraph-color);
  transition: 0.3s all;
  width: 100%;
}
.footer-top-form-line input:focus, .footer-top-form-line textarea:focus {
  background-color: var(--paragraph-color);
  color: var(--secondary-color);
}
.footer-top-form-line input {
  height: 55px;
  padding: 0.75rem 1rem;
}
.footer-top-form-line textarea {
  padding: 1rem;
  width: 100%;
  resize: none;
  min-height: 150px;
}
.footer-socials {
  margin-top: 2rem;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .footer-socials {
    justify-content: center;
  }
}
.footer-socials a {
  border: 1px solid var(--footer-secondary-color);
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  border-radius: 7px;
  aspect-ratio: 1/1;
  transition: 0.15s all;
}
.footer-socials a:hover {
  background-color: var(--footer-secondary-color);
}
.footer-bottom {
  padding: 3.5rem 0;
}
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 5rem;
}
@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
  }
}
.footer-bottom-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.25rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .footer-bottom-menu ul {
    flex-direction: column;
  }
}
.footer-bottom-menu ul a {
  font-size: 16px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 700;
  transition: 0.15s all;
}
.footer-bottom-menu ul a:hover {
  text-decoration: none;
  color: var(--highlight-color);
}
.footer-bottom-copyright {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .footer-bottom-copyright {
    margin-left: 0;
  }
}
.footer-bottom-copyright p {
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--paragraph-color);
  font-weight: 500;
  text-align: right;
  margin-bottom: 0;
}
.footer-bottom-copyright p a {
  color: var(--paragraph-color);
}
.footer-bottom-copyright p span {
  display: block;
}
@media (max-width: 1200px) {
  .footer-bottom-copyright p {
    text-align: left;
  }
  .footer-bottom-copyright p span {
    display: inline-block;
  }
  .footer-bottom-copyright p span:not(:last-child) {
    padding-right: 1rem;
  }
}
@media (max-width: 768px) {
  .footer-bottom-copyright p {
    text-align: center;
  }
  .footer-bottom-copyright p span {
    display: block;
  }
}
.footer-icons-box {
  display: flex;
  margin-bottom: 2.5rem;
  padding-left: 85px;
  position: relative;
}
@media (max-width: 767px) {
  .footer-icons-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-left: 0;
  }
}
.footer-icons-box:hover .footer-icons-image:not(.noborder) {
  background-color: var(--background-color);
}
.footer-icons-box:hover .footer-icons-image:not(.noborder) svg path {
  fill: var(--highlight-color);
}
@media (min-width: 768px) {
  .footer-icons-right .footer-icons-box {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 85px;
  }
  .footer-icons-right .footer-icons-content {
    text-align: right;
  }
  .footer-icons-right .footer-icons-image {
    margin-right: 0;
    margin-left: 1rem;
    left: unset;
    right: 0;
  }
}
.footer-icons-image {
  flex-shrink: 0;
  margin-right: 1rem;
  border: 1px solid var(--highlight-color);
  background-color: var(--highlight-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.68);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-icons-image.noborder {
  width: auto;
  height: auto;
  border: 0 !important;
  align-items: flex-start;
}
.footer-icons-image.noborder svg {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .footer-icons-image.noborder svg {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .footer-icons-image {
    margin-right: 0;
    position: relative;
  }
}
.footer-icons-image svg path {
  fill: var(--background-color);
}
.footer-icons-title {
  color: #000;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Sansita-Bold";
}
.footer-icons-text {
  margin-top: 7px;
}
.footer-icons-content p {
  color: var(--paragraph-color);
  font-size: 18px;
  margin-bottom: 0;
}
.footer-icons-content a {
  color: var(--highlight-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.footer-icons-phone {
  color: #000 !important;
}

.bold {
  font-weight: 700;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb ul li a {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}
.breadcrumb ul li:not(:last-child) {
  margin-right: 0.6rem;
}
.breadcrumb ul li:not(:last-child)::after {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--background-color);
  margin-left: 0.6rem;
}
@media (max-width: 991px) {
  .breadcrumb {
    display: none;
  }
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .pagination ul {
    margin: 1.75rem auto 0;
  }
}
.pagination ul li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--paragraph-color);
  transition-duration: 0.15s;
}
.pagination ul li a:hover {
  color: var(--highlight-color);
  text-decoration: none;
}
.pagination ul li:not(:last-child):not(:first-child) a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 0.125rem;
}
.pagination ul li:not(:last-child):not(:first-child) a.active, .pagination ul li:not(:last-child):not(:first-child) a:hover {
  background-color: var(--highlight-color);
  color: var(--secondary-color);
}
.pagination ul li:first-child {
  margin-right: 1rem;
}
.pagination ul li:first-child svg {
  margin-right: 0.5rem;
}
.pagination ul li:last-child {
  margin-left: 1rem;
}
.pagination ul li:last-child svg {
  margin-left: 0.5rem;
}

.section-subpage:not(.section-subpage-margin) > *:first-child {
  margin-top: 0 !important;
}
.section-subpage > p:last-child, .section-subpage > ul:last-child, .section-subpage:not(.section-subpage-heading) > h2:last-child, .section-subpage:not(.section-subpage-heading) > h3:last-child, .section-subpage:not(.section-subpage-heading) > h4:last-child, .section-subpage:not(.section-subpage-heading) > h5:last-child {
  margin-bottom: 0 !important;
}
.section-subpage h1 {
  font-size: 56px;
  letter-spacing: -1px;
  margin-top: 3rem;
  margin-bottom: 1.75rem;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section-subpage h1 {
    font-size: 44px;
  }
}
.section-subpage h2 {
  font-size: 48px;
  letter-spacing: -1px;
  margin-top: 2.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 767px) {
  .section-subpage h2 {
    font-size: 39px;
  }
}
.section-subpage h3 {
  font-size: 38px;
  letter-spacing: -1px;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 767px) {
  .section-subpage h3 {
    font-size: 34px;
  }
}
.section-subpage h4 {
  font-size: 31px;
  letter-spacing: -1px;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 767px) {
  .section-subpage h4 {
    font-size: 28px;
  }
}
.section-subpage h5 {
  font-size: 26px;
  letter-spacing: -1px;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 767px) {
  .section-subpage h5 {
    font-size: 23px;
  }
}
.section-subpage p, .section-subpage li, .section-subpage td {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.section-subpage-heading h3:last-child, .section-subpage-heading h2:last-child {
  margin-bottom: 2.25rem !important;
  padding-bottom: 0 !important;
}
@media (max-width: 767px) {
  .section-subpage-heading h3:last-child, .section-subpage-heading h2:last-child {
    margin-bottom: 1.75rem !important;
  }
}
.section-subpage-heading p:last-child {
  margin-bottom: 2.25rem !important;
}
@media (max-width: 767px) {
  .section-subpage-heading p:last-child {
    margin-bottom: 1.75rem !important;
  }
}
.section-subpage ul {
  padding: 0.5rem 0 0 0;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}
.section-subpage ul li {
  list-style: none;
  text-align: left;
  position: relative;
  padding-left: 10px;
}
.section-subpage ul li::before {
  content: "";
  flex-shrink: 0;
  background-color: var(--highlight-color);
  width: 13px;
  height: 3px;
  display: block;
  margin-top: 14px;
  margin-right: 0.5rem;
  position: absolute;
  left: -15px;
  top: 0;
}
.section-subpage ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem 1rem;
}
.section-subpage ol li::marker {
  font-weight: 500;
}
.section-subpage table {
  width: 100%;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .section-subpage table {
    text-align: center;
  }
}
.section-subpage table tbody tr:first-child {
  background-color: var(--table-header-color) !important;
}
.section-subpage table tbody tr:first-child th {
  padding: 1.25rem 1.5rem;
  font-size: 17px;
  color: var(--secondary-color);
  font-weight: 500;
}
.section-subpage table tr td {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
}
.section-subpage table tr:nth-child(even) {
  background-color: var(--table-color);
}
.section-subpage table tr:not(:last-child) td {
  border-bottom: 0 !important;
}
@media (max-width: 767px) {
  .section-subpage {
    text-align: center;
  }
}

.section-form form {
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--news-border-color);
  padding: 3rem 3.75rem;
  border-radius: var(--border-radius);
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .section-form form {
    padding: 1.75rem 1.75rem;
  }
  .section-form form a, .section-form form button {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 390px) {
  .section-form form {
    padding: 1.5rem 1.5rem;
  }
}
.section-form form .button-highlighted svg, .section-form form .button-highlighted path {
  fill: var(--background-color);
}
.section-form-inner {
  background-color: var(--news-border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
}
@media (max-width: 767px) {
  .section-form-inner {
    padding: 1.5rem;
  }
}
@media (max-width: 390px) {
  .section-form-inner {
    padding: 1rem;
  }
}
.section-form-checkbox {
  display: block;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  line-height: 22px;
  color: var(--paragraph-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section-form-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.section-form-checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--input-radius);
}
.section-form-checkbox-checkmark::before {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.section-form-checkbox input:checked ~ .section-form-checkbox-checkmark:after {
  display: block;
}
.section-form-checkbox:hover input ~ .section-form-checkbox-checkmark {
  background-color: var(--border-color);
}
.section-form-checkbox input:checked ~ .section-form-checkbox-checkmark {
  border-color: var(--highlight-color);
  background-color: var(--highlight-color);
}
.section-form-checkbox-radio .section-form-checkbox-checkmark {
  border-radius: 50%;
  height: 21px;
  width: 21px;
}
.section-form-checkbox-radio .section-form-checkbox-checkmark::after {
  top: 5px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
}
.section-form-box {
  margin-bottom: 0.75rem;
}
.section-form-box.large {
  margin: 1.25rem 0;
}
.section-form-box > label {
  margin-bottom: 0.25rem;
}
.section-form .groupRow > label {
  margin-bottom: 0.25rem;
}
.section-form-input {
  width: 100%;
  background-color: var(--background-color);
  border: 1px solid var(--news-border-color);
  border-radius: var(--input-radius);
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  padding: 0.75rem 1.5rem;
  transition-duration: 0.15s;
}
.section-form-input:is(textarea) {
  resize: none;
  min-height: 120px;
}
.section-form-input:is(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background-image: url("../img/arrow-dropdown-black.png");
  background-repeat: no-repeat;
  background-position: right 2rem center;
}
.section-form-input:focus, .section-form-input:active {
  border-color: var(--highlight-color);
  outline: none;
  box-shadow: none;
}
.section-form-input::-moz-placeholder {
  color: #707070;
}
.section-form-input::placeholder {
  color: #707070;
}
.section-form input::-webkit-outer-spin-button,
.section-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.section-form input[type=number] {
  -moz-appearance: textfield;
}
.section-form-checkbox2 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  line-height: 21px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section-form-checkbox2 input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: var(--border-color);
  margin: 0;
  font: inherit;
  height: 22px;
  width: 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--input-radius);
  background-color: var(--background-color);
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  cursor: pointer;
}
.section-form-checkbox2 input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--highlight-color);
  background-color: CanvasText;
}
.section-form-checkbox2 input[type=checkbox]:checked::before {
  transform: scale(1);
}
.section-form-checkbox2 input[type=checkbox]:disabled {
  color: var(--border-color);
  cursor: not-allowed;
}

.slider-item {
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .slider-item {
    justify-content: center;
  }
}
.slider-item .slider-item-box {
  display: flex;
}
.slider-item .slider-item-box .slider-item-text {
  width: 430px;
}
@media (max-width: 768px) {
  .slider-item .slider-item-box .slider-item-text-p {
    width: 80% !important;
  }
}
.slider-item .slider-item-box .slider-item-text h1 {
  padding-bottom: 10px;
  font-weight: 400;
  display: inline-block;
  padding: 10px;
}
@media (max-width: 991px) {
  .slider-item .slider-item-box .slider-item-text h1 {
    font-size: 35px;
    line-height: 35px;
  }
}
@media (max-width: 575px) {
  .slider-item .slider-item-box .slider-item-text h1 {
    font-size: 24px;
    line-height: 24px;
  }
}
.slider-item .slider-item-box .slider-item-text p {
  font-size: 19px;
  margin-bottom: 0;
  font-weight: 500;
  padding: 0 10px;
  display: inline-block;
}
@media (max-width: 991px) {
  .slider-item .slider-item-box .slider-item-text p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .slider-item .slider-item-box .slider-item-text p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .slider-item .slider-item-box .slider-item-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
.slider-item .slider-item-box .slider-item-text h1, .slider-item .slider-item-box .slider-item-text h2, .slider-item .slider-item-box .slider-item-text p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
  word-break: break-word;
}
.slider-item .slider-item-box .slider-item-text .subtitle {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .slider-item .slider-item-box .slider-item-text .subtitle {
    margin-bottom: 5px;
  }
}
.slider-item .slider-item-box .slider-item-text .subtitle p {
  font-size: 146px;
  line-height: 146px;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 10px;
}
@media (max-width: 1399px) {
  .slider-item .slider-item-box .slider-item-text .subtitle p {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 991px) {
  .slider-item .slider-item-box .slider-item-text .subtitle p {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .slider-item .slider-item-box .slider-item-text .subtitle p {
    font-size: 30px;
    line-height: 30px;
  }
}
.slider-item .slider-item-box .text-center-width {
  width: 70%;
}
@media (max-width: 991px) {
  .slider-item .slider-item-box .text-center-width {
    width: 100%;
  }
}
.slider-item .carousel-btn {
  margin-top: 30px;
  display: flex;
  padding: 0 10px;
}
.slider-item .carousel-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--button-radius);
  border: 1px solid var(--highlight-color);
  color: var(--secondary-color);
  background-color: var(--highlight-color);
  font-size: 16px;
  line-height: 33px;
  font-weight: 500;
  transition: 0.25s;
  padding: 0.7rem 1.5rem;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.slider-item .carousel-btn a:hover {
  border-color: var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  text-decoration: none;
  box-shadow: inset 10em 0 0 0 var(--secondary-color) !important;
}
@media (max-width: 575px) {
  .slider-item .carousel-btn a {
    padding: 0.4rem 1rem;
    font-size: 14px;
  }
}
.slider-item .carousel-btn a svg {
  margin-left: 1rem;
  transition: 0.25s;
  fill: var(--secondary-color);
}
@media (max-width: 575px) {
  .slider-item .carousel-btn a svg {
    margin-left: 0.6rem;
  }
}
.slider-item .carousel-btn a:hover svg {
  fill: var(--primary-color) !important;
}
.slider-item .btn-color-green a {
  background-color: #93bb07;
  border: 2px solid #93bb07;
}
.slider-item .btn-color-red a {
  background-color: #ec383e;
  border: 2px solid #ec383e;
}

.header {
  border-bottom: 1px solid #dcebd6;
  background-color: #fffefa;
}
@media (min-width: 992px) {
  .header.home {
    border-bottom: 0;
    background-color: transparent;
    background-image: linear-gradient(0deg, rgba(39, 28, 28, 0) 0%, rgba(43, 32, 32, 0.9967764643) 99%, rgb(43, 32, 32) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .header.home .nav-link {
    color: #fff !important;
  }
  .header.home .header-rightbox-lang {
    border: 2px solid rgba(230, 229, 222, 0.28) !important;
    background-color: transparent !important;
    color: #fff !important;
  }
}
.header .header-nav {
  padding: 28px 25px;
}
@media (max-width: 1399px) {
  .header .header-nav {
    padding: 28px 0;
  }
}
@media (min-width: 992px) {
  .header .header-nav {
    justify-content: end;
  }
}
@media (max-width: 991px) {
  .header .header-nav {
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 18px 0;
  }
}
@media (max-width: 575px) {
  .header .header-nav {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (max-width: 991px) {
  .header .header-nav .header-logo img {
    max-height: 58px;
  }
}
.header .header-nav #nav {
  width: 100%;
  justify-content: center;
}
.header .header-nav .navbar-nav {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1rem;
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav {
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav .nav-item {
    border-bottom: 1px solid #69bc48;
  }
}
.header .header-nav .navbar-nav .nav-item .nav-link {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
@media (max-width: 1399px) {
  .header .header-nav .navbar-nav .nav-item .nav-link {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav .nav-item .nav-link {
    padding-left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.header .header-nav .navbar-nav .nav-item .nav-link::before {
  content: "";
  width: calc(100% - 1.5rem);
  height: 3px;
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  background: #69bc48;
  transition: 0.3s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}
@media (min-width: 992px) {
  .header .header-nav .navbar-nav .nav-item .nav-link:hover::before {
    transform: scale3d(1, 1, 1);
  }
}
.header .header-nav .navbar-nav .nav-item.active .nav-link, .header .header-nav .navbar-nav .nav-item .nav-link:hover {
  color: #69bc48;
}
@media (max-width: 767px) {
  .header .header-nav .navbar-nav .nav-item {
    width: 100%;
    margin: 0 auto;
  }
}
.header .header-nav .header-rightbox {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 15px;
}
@media (max-width: 1399px) {
  .header .header-nav .header-rightbox {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media (max-width: 991px) {
  .header .header-nav .header-rightbox {
    display: none;
  }
}
.header .header-nav .header-rightbox .languages .header-rightbox-lang {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.35rem;
  text-align: center;
  border: 2px solid #e6e5de;
  background-color: #fff;
  border-radius: 30px;
  text-decoration: none;
  width: 90px;
}
@media (max-width: 1399px) {
  .header .header-nav .header-rightbox .languages .header-rightbox-lang {
    padding: 0.8rem 1rem;
  }
}
@media (max-width: 575px) {
  .header .header-nav .header-rightbox .languages .header-rightbox-lang {
    padding: 0.4rem 1.25rem;
    min-height: unset;
  }
}
.header .header-nav .header-rightbox .languages .header-rightbox-lang::after {
  color: #69bc48;
}
.header .header-nav .header-rightbox .languages .dropdown-menu {
  border: 2px solid #e6e5de;
  border-radius: 30px;
  min-width: 100%;
}
.header .header-nav .header-rightbox .languages .dropdown-menu .dropdown-item {
  text-align: center;
}
.header .header-nav .header-rightbox .languages .dropdown-menu .dropdown-item:active {
  background-color: transparent;
  border-radius: 30px;
}
.header .header-nav .header-rightbox .languages .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #69bc48;
  text-decoration: none;
}
.header .header-nav .header-rightbox .header-rightbox-phone {
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0.8rem 2.25rem;
  text-align: center;
  border: 2px solid #69bc48;
  border-radius: 30px;
  background-color: #69bc48;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.35s;
}
@media (max-width: 1399px) {
  .header .header-nav .header-rightbox .header-rightbox-phone {
    padding: 0.8rem 1rem;
  }
}
@media (max-width: 575px) {
  .header .header-nav .header-rightbox .header-rightbox-phone {
    padding: 0.4rem 1.25rem;
    min-height: unset;
  }
}
.header .header-nav .header-rightbox .header-rightbox-phone:hover {
  background-color: #fff;
  border-color: var(--section-light-color);
  color: #69bc48;
  box-shadow: inset 15rem 0 0 0 #fff;
}
.header .header-nav .header-rightbox .header-rightbox-phone:hover .header-rightbox-phone-icon svg {
  fill: #69bc48;
}
.header .header-nav .header-rightbox .header-rightbox-phone .header-rightbox-phone-icon svg {
  width: 14px;
  fill: #fff;
  transition: 0.35s;
}
.header .header-nav .header-rightbox-mobile {
  display: none;
}
@media (max-width: 991px) {
  .header .header-nav .header-rightbox-mobile {
    display: flex;
    flex-wrap: wrap;
    padding-top: 28px;
    justify-content: start;
  }
}
.header .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  position: absolute;
  right: 25px;
  top: 41px;
}
@media (max-width: 575px) {
  .header .navbar-toggler {
    right: 10px;
  }
}
.header .navbar-toggler .animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.header .navbar-toggler .animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: #69bc48;
}
.header .navbar-toggler .animated-icon span:nth-child(1) {
  top: 0px;
}
.header .navbar-toggler .animated-icon span:nth-child(2) {
  top: 10px;
}
.header .navbar-toggler .animated-icon span:nth-child(3) {
  top: 20px;
}
.header .navbar-toggler .animated-icon.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.header .navbar-toggler .animated-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .navbar-toggler .animated-icon.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.section-pad {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 1399px) {
  .section-pad {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .section-pad {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.main-button {
  font-size: 17px;
  font-weight: 500;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: 0.35s;
}
.main-button:hover::after {
  color: #69bc48;
}
.main-button::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.main-color-button {
  color: #fff;
  border: 2px solid #69bc48;
  background-color: #69bc48;
}
.main-color-button::after {
  color: #fff;
}
.main-color-button:hover {
  background-color: #fff;
  color: #69bc48;
  box-shadow: inset 15rem 0 0 0 #fff;
}
.main-color-button:hover::after {
  color: #69bc48;
}

.white-color-button {
  color: #555a5e;
  border: 2px solid #fff;
  background-color: #fff;
}
.white-color-button::after {
  color: #555a5e;
}
.white-color-button:hover {
  background-color: #555a5e;
  border-color: #555a5e;
  color: #fff;
  box-shadow: inset 15rem 0 0 0 #555a5e;
}
.white-color-button:hover::after {
  color: #fff;
}

.footer {
  padding-top: 250px;
  position: relative;
}
@media (max-width: 1199px) {
  .footer {
    padding-top: 150px;
    background-color: #375955;
  }
}
@media (max-width: 991px) {
  .footer {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .footer {
    padding-top: 40px;
    margin-top: 40px;
  }
}
.footer::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  min-height: 586px;
  width: 100%;
  background-image: url(../content/footer-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
}
@media (max-width: 991px) {
  .footer::after {
    display: none;
  }
}
.footer .row {
  row-gap: 30px;
}
.footer .footer-newsletter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid #496864;
}
@media (max-width: 991px) {
  .footer .footer-newsletter {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }
}
.footer .footer-newsletter .footer-newsletter-text {
  font-family: "Sansita-Regular";
  color: #69bc48;
  margin-right: 40px;
  margin-bottom: 0;
}
.footer .footer-newsletter .footer-newsletter-group {
  width: 100%;
  max-width: 600px;
  position: relative;
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-input {
  width: 100%;
  font-size: 15px;
  padding: 11px 140px 11px 16px;
  border: 1px solid #496864;
  border-radius: 5px;
  background-color: transparent;
  color: #f3f3f4;
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-input:focus-visible {
  outline: none;
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-input::-moz-placeholder {
  color: #f3f3f4;
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-input::placeholder {
  color: #f3f3f4;
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-submit {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  padding: 9.5px 34px;
  background-color: #69bc48;
  border: 2px solid #69bc48;
  color: #fff;
  border-radius: 5px;
  transition: 0.35s;
}
@media (max-width: 991px) {
  .footer .footer-newsletter .footer-newsletter-group .footer-newsletter-submit {
    padding: 9.5px 16px;
  }
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-submit::after {
  color: #fff;
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-submit:hover {
  background-color: #fff;
  color: #69bc48;
  box-shadow: inset 15rem 0 0 0 #fff;
}
.footer .footer-newsletter .footer-newsletter-group .footer-newsletter-submit:hover::after {
  color: #69bc48;
}
.footer .footer-contact {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 65px;
       column-gap: 65px;
}
@media (max-width: 575px) {
  .footer .footer-contact {
    flex-direction: column;
    row-gap: 20px;
  }
}
.footer .footer-contact .footer-contact-box {
  display: flex;
  flex-direction: column;
  padding-left: 35px;
}
.footer .footer-contact .footer-contact-box .footer-contact-item {
  color: #fff;
  font-size: 17px;
}
.footer .footer-contact .footer-contact-box .footer-contact-item a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
}
.footer .footer-contact .footer-contact-box .footer-contact-item a:hover {
  text-decoration: underline;
}
.footer .footer-contact .footer-contact-box-email {
  background-image: url(../img/email-ico.png);
  background-repeat: no-repeat;
  background-position: top 5px left;
  padding-left: 35px;
}
.footer .footer-contact .footer-contact-box-address {
  background-image: url(../img/place-ico.png);
  background-repeat: no-repeat;
  background-position: top 5px left;
  padding-left: 35px;
}
.footer .footer-socials {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 575px) {
  .footer .footer-socials {
    justify-content: center;
  }
}
.footer .footer-socials svg {
  width: auto;
  height: 38px;
  fill: #a3a7ab;
  transition: 0.35s;
}
.footer .footer-socials svg:hover {
  fill: #fff;
}
.footer .footer-copyright {
  padding: 90px 0;
  font-size: 16px;
  color: #a3a7ab;
}
@media (max-width: 991px) {
  .footer .footer-copyright {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .footer .footer-copyright {
    text-align: center;
  }
}
.footer .footer-copyright a {
  font-size: 16px;
  color: #a3a7ab;
  text-decoration: none;
  transition: 0.35s;
}
.footer .footer-copyright a:hover {
  color: #fff;
}
.footer .footer-copyright p {
  margin-bottom: 0;
  color: #a3a7ab !important;
}

.footer-icons-content .footer-icons-phone {
  color: var(--highlight-color) !important;
}
.footer-icons-content .bold {
  font-weight: 600 !important;
}

@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hp-banner {
  padding-bottom: 80px;
  animation: opacity;
  animation-timing-function: ease-in-out;
  animation-duration: 1.5s;
}
@media (max-width: 1399px) {
  .hp-banner {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .hp-banner {
    padding: 0;
  }
}
.hp-banner .hp-banner-item {
  width: 100%;
  height: auto;
  aspect-ratio: 1.92/1;
  position: relative;
}
@media (max-width: 991px) {
  .hp-banner .hp-banner-item {
    height: 550px;
  }
}
.hp-banner .hp-banner-item .hp-banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 37.5%;
  padding-top: 50px;
  display: inline-block;
  max-width: 800px;
}
@media (max-width: 1399px) {
  .hp-banner .hp-banner-item .hp-banner-content {
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .hp-banner .hp-banner-item .hp-banner-content {
    margin: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .hp-banner .hp-banner-item .hp-banner-content {
    left: 0;
    text-align: center;
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .hp-banner .hp-banner-item .hp-banner-content {
    padding: 50px 12px;
  }
}
.hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-title {
  font-size: 55px;
  line-height: 70px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-title {
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-title {
    font-size: 35px;
    line-height: 45px;
  }
}
.hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem 1rem;
  max-width: 575px;
}
@media (max-width: 991px) {
  .hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes {
    grid-template-columns: 1fr;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes li {
  list-style: none;
  display: inline-block;
}
.hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes .hp-banner-content-box {
  min-height: 70px;
  font-size: 24px;
  line-height: 30px;
  font-family: "Sansita-Bold";
  color: #fff;
  padding: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  border-radius: 35px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 991px) {
  .hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes .hp-banner-content-box {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}
@media (max-width: 575px) {
  .hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes .hp-banner-content-box {
    font-size: 18px;
  }
}
.hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes .hp-banner-content-box img {
  height: 75px;
  width: 75px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  border-radius: 50%;
  border: 2px solid rgba(230, 229, 222, 0.28);
}
@media (max-width: 991px) {
  .hp-banner .hp-banner-item .hp-banner-content .hp-banner-content-boxes .hp-banner-content-box img {
    height: 60px;
    width: 60px;
  }
}
.hp-banner .hp-banner-item .hp-banner-item-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.hp-company {
  padding-top: 90px;
  padding-bottom: 140px;
}
@media (max-width: 1199px) {
  .hp-company {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
.hp-company .row {
  row-gap: 35px;
}
.hp-company .hp-company-box {
  padding-top: 25px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .hp-company .hp-company-box {
    padding: 0;
  }
}
.hp-company .hp-company-box .hp-company-title {
  color: #375955;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .hp-company .hp-company-box .hp-company-title {
    margin-bottom: 30px;
  }
}
.hp-company .hp-company-box .hp-company-subtitle {
  font-family: "MyriadPro-Regular";
  color: #2d3135;
  font-weight: 700;
  font-family: "Sansita", sans-serif;
  line-height: 35px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .hp-company .hp-company-box .hp-company-subtitle {
    margin-bottom: 30px;
  }
}
.hp-company .hp-company-box .hp-company-text {
  color: #707070;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}
.hp-company .hp-company-img {
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
}
@media (max-width: 1399px) {
  .hp-company .hp-company-img {
    padding: 0;
  }
}
.hp-company .hp-company-button {
  margin-top: 50px;
}

.hp-benefits {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 30px;
  padding-top: 2rem;
}
@media (max-width: 991px) {
  .hp-benefits {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.hp-benefits .hp-benefits-item {
  width: 33%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .hp-benefits .hp-benefits-item {
    width: unset;
    justify-content: flex-start;
  }
}
.hp-benefits .hp-benefits-item::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #69bc48;
  right: 0;
  top: 0;
}
@media (max-width: 991px) {
  .hp-benefits .hp-benefits-item::after {
    display: none;
  }
}
.hp-benefits .hp-benefits-item:last-of-type::after {
  display: none;
}
.hp-benefits .hp-benefits-item .hp-benefits-img {
  height: 75px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .hp-benefits .hp-benefits-item .hp-benefits-img {
    width: 100px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
}
.hp-benefits .hp-benefits-item .hp-benefits-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .hp-benefits .hp-benefits-item .hp-benefits-box {
    width: 100%;
  }
}
.hp-benefits .hp-benefits-item .hp-benefits-box .hp-benefits-number {
  font-size: 55px;
  line-height: 55px;
  font-weight: 600;
  color: #69bc48;
}
@media (max-width: 991px) {
  .hp-benefits .hp-benefits-item .hp-benefits-box .hp-benefits-number {
    font-size: 40px;
    line-height: 40px;
  }
}
.hp-benefits .hp-benefits-item .hp-benefits-box .hp-benefits-text {
  font-size: 26px;
  font-weight: 600;
  font-family: "MyriadPro-Regular";
}
@media (max-width: 991px) {
  .hp-benefits .hp-benefits-item .hp-benefits-box .hp-benefits-text {
    font-size: 22px;
  }
}

.hp-products {
  background-image: url(../content/hp-background-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 8rem 0 10rem;
  margin-bottom: -10rem;
  z-index: -1;
  position: relative;
}
@media (max-width: 1199px) {
  .hp-products {
    padding-top: 70px;
    min-height: 100%;
  }
}
@media (max-width: 991px) {
  .hp-products {
    padding-top: 60px;
    margin-top: 0;
  }
}
.hp-products .hp-products-box {
  padding-top: 100px;
  padding-right: 50px;
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .hp-products .hp-products-box {
    padding-right: 0;
    padding-left: 0;
  }
}
.hp-products .hp-products-box .hp-products-title {
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .hp-products .hp-products-box .hp-products-title {
    margin-bottom: 30px;
  }
}
.hp-products .hp-products-box .hp-cproducts-text {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
}
.hp-products .hp-products-box .hp-products-button {
  margin-top: 50px;
}
.hp-products .hp-products-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 65px;
}
@media (max-width: 991px) {
  .hp-products .hp-products-images {
    padding-top: 50px;
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.hp-products .hp-products-images-item img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hp-products .hp-products-images-item img {
    max-height: 200px;
    grid-template-columns: 1fr;
  }
}

.hp-news .hp-news-title {
  text-align: center;
  color: #69bc48;
}
.hp-news .hp-news-banner {
  margin-top: 50px;
  padding: 0 30px;
}
@media (max-width: 575px) {
  .hp-news .hp-news-banner {
    padding: 0 50px;
  }
}
.hp-news .hp-news-banner .hp-news-banner-item {
  height: 100%;
  padding: 40px 40px 20px 40px;
}
@media (max-width: 991px) {
  .hp-news .hp-news-banner .hp-news-banner-item {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .hp-news .hp-news-banner .hp-news-banner-item {
    padding: 20px 0;
  }
}
.hp-news .hp-news-banner .hp-news-banner-item .hp-news-banner-item-img {
  display: block;
  height: 340px;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hp-news .hp-news-banner .hp-news-banner-item .hp-news-banner-item-img {
    height: 250px;
  }
}
.hp-news .hp-news-banner .hp-news-banner-item .hp-news-banner-item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.35s;
}
.hp-news .hp-news-banner .hp-news-banner-item .hp-news-banner-item-date {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}
.hp-news .hp-news-banner .hp-news-banner-item .hp-news-banner-item-title {
  text-decoration: none;
  color: #000;
}
.hp-news .hp-news-banner .hp-news-banner-item .hp-news-banner-item-title h3 {
  font-weight: 600;
  font-family: "MyriadPro-Regular";
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hp-news .hp-news-banner .hp-news-banner-item .hp-news-banner-item-text {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
.hp-news .hp-news-banner .hp-news-banner-item:hover .hp-news-banner-item-title {
  text-decoration: underline;
}
.hp-news .hp-news-banner .hp-news-banner-item:hover .hp-news-banner-item-img img {
  transform: scale(1.1);
}
.hp-news .hp-news-banner .owl-nav {
  position: absolute !important;
  top: 200px;
  left: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .hp-news .hp-news-banner .owl-nav {
    top: 125px;
  }
}
.hp-news .hp-news-banner .owl-nav .owl-prev {
  width: 41px;
  height: 41px;
  background-color: #69bc48;
  border: 2px solid #69bc48;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(90deg);
  transition: 0.35s;
}
@media (max-width: 991px) {
  .hp-news .hp-news-banner .owl-nav .owl-prev {
    left: -25px;
  }
}
@media (max-width: 575px) {
  .hp-news .hp-news-banner .owl-nav .owl-prev {
    left: 0;
  }
}
.hp-news .hp-news-banner .owl-nav .owl-prev:hover {
  background-color: #fff;
}
.hp-news .hp-news-banner .owl-nav .owl-prev:hover svg {
  fill: #69bc48;
}
.hp-news .hp-news-banner .owl-nav .owl-prev svg {
  fill: #fff;
}
.hp-news .hp-news-banner .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  background-color: #69bc48;
  border: 2px solid #69bc48;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(270deg);
  transition: 0.35s;
}
@media (max-width: 991px) {
  .hp-news .hp-news-banner .owl-nav .owl-next {
    right: -25px;
  }
}
@media (max-width: 575px) {
  .hp-news .hp-news-banner .owl-nav .owl-next {
    right: 0;
  }
}
.hp-news .hp-news-banner .owl-nav .owl-next:hover {
  background-color: #fff;
}
.hp-news .hp-news-banner .owl-nav .owl-next:hover svg {
  fill: #69bc48;
}
.hp-news .hp-news-banner .owl-nav .owl-next svg {
  fill: #fff;
}
.hp-news .hp-news-button {
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 1475px) {
  .container {
    max-width: 1450px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .container-extended {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .container-left {
    padding-left: 15px;
  }
  .container-split-right {
    padding-right: 15px;
  }
}
.dropdown-hover:hover .dropdown-hover-menu {
  display: block !important;
}/*# sourceMappingURL=main.css.map */