@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&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, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

body {
  background-color: var(--background-color);
}

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;
}

.owl-carousel .owl-nav button {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

@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);
  }
}
.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: 768px) {
  .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: 70%;
  }
  .header-logo img {
    margin-right: 1rem;
  }
}
.header #nav .navbar-nav {
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1200px) {
  .header #nav .navbar-nav {
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .header #nav .navbar-nav {
    justify-content: flex-start;
  }
  .header #nav .navbar-nav > .nav-item {
    border-top: 1px solid var(--border-color);
  }
  .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;
    border-top: 1px solid var(--border-color);
  }
}
.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: 991px) {
  .header #nav .nav-item:hover .nav-link::before, .header #nav .nav-item.active .nav-link::before {
    transform: scale3d(1, 1, 1);
  }
}
@media (max-width: 768px) {
  .header #nav .nav-item {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .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: 1400px) {
  .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.25rem 1.5rem;
  }
}
.header-breadcrumb {
  padding-top: 6rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid var(--border-color);
}
.header-breadcrumb-text {
  padding: 6rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .header-breadcrumb-text {
    padding: 4rem 0;
  }
}
.header-breadcrumb-text h1 {
  margin: 0 !important;
}
.header-breadcrumb-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 1rem 0 0;
}
@media (max-width: 768px) {
  .header-breadcrumb-ul {
    display: none;
  }
}
.header-breadcrumb-ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-breadcrumb-ul li a {
  color: var(--primary-color);
  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;
  transition: 0.25s;
  padding: 0.7rem 1.5rem;
  gap: 0.5rem;
  width: fit-content;
  width: -moz-fit-content;
}
.button-highlighted svg {
  margin-left: 1rem;
}
.button-highlighted svg path {
  transition: 0.25s;
  fill: var(--secondary-color);
}
.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: 1600px) {
  .banner {
    height: 550px;
    margin-bottom: 6rem;
  }
}
@media (max-width: 1200px) {
  .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: 1600px) {
  .banner-text {
    padding-top: 6.5rem;
  }
}
@media (max-width: 991px) {
  .banner-text {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 768px) {
  .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: 1600px) {
  .banner-text h1 {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 576px) {
  .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: 1600px) {
  .banner-text p {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .banner-text p {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .banner-text p {
    margin-bottom: 1.5rem;
  }
}
.banner-images {
  margin-top: 4rem;
}
@media (max-width: 1200px) {
  .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: 1600px) {
  .banner-images-item {
    height: 575px;
  }
}
@media (max-width: 1200px) {
  .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: 1600px) {
  .banner-homepage .owl-dots {
    bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .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: 1600px) {
  .banner-homepage .owl-nav {
    bottom: 140px;
  }
}
@media (max-width: 1200px) {
  .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: 576px) {
  .banner-subpage h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .banner-subpage {
    padding: 5rem 0;
  }
}
@media (max-width: 576px) {
  .banner-subpage {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .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);
  background-color: var(--background-secondary-color);
  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-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 100px;
}
.services2-item-icon-inner {
  background-color: var(--background-color);
  border-radius: 50%;
  width: 184px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services2-item-icon-inner img {
  max-height: 70px;
  max-width: 70px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transition: 0.3s all;
}
.services2-item-image 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: 51%;
}
@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-content.darken h3 {
  color: var(--primary-color);
}
.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 .services2-item-image img {
  transform: scale(1.1);
}
.services2-item:hover .services2-item-icon img {
  transform: scale(1.25);
}

.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;
  font-weight: 600;
  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: 768px) {
  .section-preTitle {
    margin: 0 auto 0.75rem;
  }
}
@media (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .section-footer {
    margin-top: 2rem;
  }
}
.section-block {
  padding: 5rem 0 5rem;
}
@media (max-width: 768px) {
  .section-block {
    padding: 3.5rem 0 3.5rem;
  }
}
.section-block .section-preTitle {
  margin-bottom: 1.75rem !important;
}
@media (max-width: 768px) {
  .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: 576px) {
  .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: 768px) {
  .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);
  aspect-ratio: 1/1;
  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: 1200px) {
  .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: 768px) {
  .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: 768px) {
  .section-block-gallery2 .row > div div > a img {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .section-block-gallery2 .row > div div > a img {
    height: 175px;
  }
}
@media (max-width: 768px) {
  .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;
  }
}
.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: 768px) {
  .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: 768px) {
  .section-block-download-item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 768px) {
  .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: var(--primary-color);
  font-size: 18px;
  line-height: 33px;
  margin-bottom: 0;
}
.section-block-download-name:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .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: 768px) {
  .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;
}
.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: 768px) {
  .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: 1200px) {
  .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: 576px) {
  .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: 768px) {
  .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: 1200px) {
  .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: 768px) {
  .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-phone {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.125rem;
}
.section-block-team-phone:hover {
  text-decoration: none;
}
.section-block-team-email {
  color: var(--highlight-color);
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .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: 1200px) {
  .section-block-team-carousel .owl-nav {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .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: 1200px) {
  .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: 768px) {
  .section-block-map iframe {
    height: 325px;
  }
}
.section-block-newsDetail-image {
  border-radius: var(--border-radius);
  display: block;
}
@media (max-width: 768px) {
  .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: 1200px) {
  .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: 576px) {
  .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: var(--primary-color);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .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: 1600px) {
  .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, .footer-top-form-line textarea, .footer-top-form-line input:focus::placeholder, .footer-top-form-line textarea:focus::placeholder {
  /*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;
  }
}
@media (min-width: 768px) {
  .footer-icons-right .footer-icons-box {
    flex-direction: row-reverse;
  }
  .footer-icons-right .footer-icons-content {
    text-align: right;
  }
  .footer-icons-right .footer-icons-image {
    margin-right: 0;
    margin-left: 1rem;
  }
}
.footer-icons-box {
  display: flex;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .footer-icons-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
.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);
}
.footer-icons-image {
  flex-shrink: 0;
  margin-right: 1rem;
  border: 1px solid var(--highlight-color);
  background-color: var(--highlight-color);
  border-radius: 50%;
  width: 65px;
  height: 65px;
  transition: all 0.15s cubic-bezier(0, 0, 0, 0.68);
  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: 768px) {
  .footer-icons-image.noborder svg {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer-icons-image {
    margin-right: 0;
  }
}
.footer-icons-image svg path {
  fill: var(--background-color);
}
.footer-icons-title {
  color: var(--paragraph-color);
  font-size: 13px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.033rem;
}
.footer-icons-content {
  margin-top: 0.25rem;
}
.footer-icons-content p {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.footer-icons-content a {
  color: var(--highlight-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.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: 768px) {
  .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: 700;
  color: var(--primary-color);
  text-transform: initial;
}
@media (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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);
}
@media (max-width: 768px) {
  .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: 768px) {
  .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: var(--primary-color);
}
.section-form-input::placeholder {
  color: var(--primary-color);
}
.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: 576px) {
  .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: 768px) {
  .slider-item .slider-item-box .slider-item-text p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .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: 576px) {
  .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: 1600px) {
  .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: 576px) {
  .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: 576px) {
  .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: 576px) {
  .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;
}

@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 */