@keyframes loading {
  0% {
    width: 0;
  }
  10% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeInFadeOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.preloader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s;
}
.preloader .loading_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.preloader .loading_wrapper .loading_bar {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.2);
  height: 5px;
  width: 300px;
  max-width: 100%;
  box-shadow: 0 0 15px 1px rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.preloader .loading_wrapper .loading_bar span {
  background: #A56EAC;
  height: 100%;
  width: 0;
  display: block;
  transition: all 0.3s linear;
  border-radius: 10px;
}

.preloader.loading .loading_wrapper .loading_bar span {
  animation: loading 4s linear forwards;
}

.preloader.loaded {
  opacity: 0;
}

body.loaded {
  overflow-x: hidden !important;
  overflow-y: unset !important;
}

body {
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 1;
}
body .container {
  padding: 0 16px;
}
@keyframes minus_z_index {
  0% {
    z-index: 1;
  }
  100% {
    z-index: -9;
  }
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  color: #000;
  font-weight: 700;
}
body p {
  color: #393939;
}
body .lead {
  font-weight: 400;
}
body .btn {
  position: relative;
  font-family: "Helvetica", sans-serif;
  font-size: 28px;
  padding: 16px 30px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  box-shadow: none !important;
}
body .btn:after {
  content: "";
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}
body .btn:hover:after {
  transform: translateX(100%);
}
body .btn-primary {
  background-color: #A56EAC;
  border: none;
}
body .btn-primary:hover, body .btn-primary:focus {
  background-color: #955C9C;
}
body .btn-call {
  background-color: transparent;
  color: #A56EAC;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #A56EAC;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 29px 14px 14px;
  transition: 0.3s ease-in-out;
  text-transform: unset;
}
body .btn-call img {
  height: 52px;
  width: 52px;
}
body .btn-call span {
  display: block;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 3px;
}
body .btn-call:hover {
  transform: scale(1.05);
  color: #A56EAC;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
body .btn-large {
  padding-left: 100px;
  padding-right: 100px;
}
body .heading_1 {
  font-size: 48px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
body .heading_1 span {
  color: #A56EAC;
  display: inline-block;
}
body .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.09);
  padding: 14px;
}
body .card .card-body {
  padding: 16px 0 12px;
}
body .card .card-body .card-title {
  line-height: 44px;
}
body .card .card-body .card-text {
  font-size: 24px;
}
body header {
  background-color: rgba(201, 221, 229, 0.2);
  position: relative;
  z-index: 1;
}
body header .navbar {
  padding: 24px 0 8px;
}
body header .navbar-brand {
  padding: 0 0 5px;
}
body header .navbar-brand img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
body header .obj_1,
body header .obj_2 {
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
}
body header .obj_1 {
  left: 0;
  max-width: 474px;
}
body header .obj_2 {
  right: 0;
  max-width: 550px;
}
body main section {
  position: relative;
}
body main .hero {
  background-color: rgba(201, 221, 229, 0.2);
  padding: 20px 0 80px;
  overflow: hidden;
}
body main .hero .text_wrapper {
  display: flex;
  column-gap: 40px;
}
body main .hero .text_wrapper .main-title {
  font-size: 44px;
  line-height: 54px;
}
body main .hero .text_wrapper .lead {
  font-size: 24px;
  line-height: 1.55;
}
body main .hero .text_wrapper .img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  min-width: 400px;
}
body main .hero .text_wrapper .img-wrapper img {
  width: 100%;
}
body main .hero .content .heading_1 {
  font-size: 32px;
}
body main .vertical_slider {
  background-color: rgba(165, 110, 172, 0.3);
  padding: 80px 0;
}
body main .vertical_slider .vertical_slider_for .item .title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
body main .vertical_slider .vertical_slider_for .item .title:after {
  content: "";
  background-color: #4FC6D8;
  height: 3px;
  width: 260px;
  border-radius: 10px;
  position: absolute;
  top: 100%;
  left: 0;
}
body main .vertical_slider .vertical_slider_for .item .lead {
  font-size: 24px;
  color: #393939;
}
body main .vertical_slider .vertical_slider_nav {
  padding-right: 70px;
  margin: 0;
}
body main .vertical_slider .vertical_slider_nav .item img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
body main .vertical_slider .vertical_slider_nav .slick-dots {
  display: flex;
  gap: 10px;
  flex-direction: column;
  max-width: fit-content;
  height: 100%;
  top: 0;
  right: 0;
  justify-content: center;
}
body main .vertical_slider .vertical_slider_nav .slick-dots li {
  margin: 0;
  height: 18px;
  width: 18px;
}
body main .vertical_slider .vertical_slider_nav .slick-dots li button {
  height: 18px;
  width: 18px;
}
body main .vertical_slider .vertical_slider_nav .slick-dots li button::before {
  content: "";
  background-color: rgba(165, 110, 172, 0.2);
  border: 1px solid #A56EAC;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  opacity: 1;
}
body main .vertical_slider .vertical_slider_nav .slick-dots li.slick-active button::before {
  background-color: #A56EAC;
}
body main .testimonials {
  padding: 120px 0 160px;
  background: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
body main .testimonials .testimonials_slider {
  position: relative;
  padding-top: 100px;
  margin-bottom: 18px;
}
body main .testimonials .testimonials_slider .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
body main .testimonials .testimonials_slider .item .lead {
  font-size: 24px;
  text-align: center;
}
body main .testimonials .testimonials_slider .item .author_profile {
  height: 68px;
  width: 68px;
  margin: 0 auto;
  margin-bottom: 16px;
}
body main .testimonials .testimonials_slider .item .author_name {
  color: #008CC1;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}
body main .testimonials .testimonials_slider .slick-dots {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: center;
  top: 100%;
  left: 0;
}
body main .testimonials .testimonials_slider .slick-dots li {
  margin: 0;
  height: 18px;
  width: 18px;
}
body main .testimonials .testimonials_slider .slick-dots li button {
  height: 18px;
  width: 18px;
}
body main .testimonials .testimonials_slider .slick-dots li button::before {
  content: "";
  background-color: rgba(0, 140, 193, 0.2);
  border: 1px solid #008CC1;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  opacity: 1;
}
body main .testimonials .testimonials_slider .slick-dots li.slick-active button::before {
  background-color: #008CC1;
}
body main .testimonials .testimonials_slider:before {
  content: "";
  background: url("../img/webp/icon_2.webp") no-repeat center center/100%;
  height: 70px;
  width: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
body main .testimonials img.bg {
  background: top center/cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
body main .benefits {
  background-color: rgba(165, 110, 172, 0.3);
  padding: 80px 0;
}
body main .benefits .card {
  background-color: #fff;
  box-shadow: none;
  padding: 24px;
  margin: 0;
  height: 100%;
  border: solid 1px #A56EAC;
}
body main .benefits .card .card-body {
  padding: 0;
}
body main .benefits .card .card-body img {
  width: 72px;
  margin: 0 0 20px;
}
body main .benefits .card .card-body .card-title {
  font-family: "Halvetica", sans-serif;
  margin: 0;
}
body main .benefits .card .card-body .card-text {
  font-size: 20px;
}
body main .gallery-slider {
  position: relative;
  padding: 80px 0;
  background-color: rgba(201, 221, 229, 0.2);
}
body main .gallery-slider .gallery {
  display: flex;
  margin: 0 0 58px;
}
body main .gallery-slider .gallery .item img {
  height: auto;
  width: 100%;
}
body main .gallery-slider .gallery .slick-dots {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  bottom: 0;
  transform: translateY(calc(100% + 40px));
}
body main .gallery-slider .gallery .slick-dots li {
  height: 18px;
  width: 18px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}
body main .gallery-slider .gallery .slick-dots li button {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  padding: 0;
}
body main .gallery-slider .gallery .slick-dots li button::before {
  display: none;
}
body main .gallery-slider .gallery .slick-dots li.slick-active button {
  background-color: #000;
}
body main .gallery-slider .gallery button.slick-arrow {
  background-color: #000;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  transform: translateX(calc(-100% - 40px));
}
body main .gallery-slider .gallery button.slick-arrow:before {
  display: block;
  content: "";
  background: url("../img/webp/icon_8.webp") no-repeat center center/100%;
  height: 50px;
  width: 30px;
  margin: 0 4px 0 -4px;
}
body main .gallery-slider .gallery button.slick-arrow.slick-next {
  left: unset;
  right: 0;
  transform: translateX(calc(100% + 40px));
}
body main .gallery-slider .gallery button.slick-arrow.slick-next:before {
  transform: rotate(180deg);
  margin: 0 -4px 0 4px;
}
body main .gallery-slider .gallery.slick-slider {
  flex-direction: column;
}
body main .gallery-slider .object {
  position: absolute;
  height: auto;
  left: 20px;
  top: 60px;
  opacity: 0.5;
}
body main .gallery-slider .object.top,
body main .gallery-slider .object.bottom {
  width: 80px;
}
body main .gallery-slider .object.bottom {
  top: auto;
  right: 20px;
  left: auto;
  bottom: 100px;
}
body main .faq {
  padding: 80px 0 120px;
  background-color: #fff;
}
body main .faq .accordion {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
body main .faq .accordion .accordion-item {
  border: solid 2px #A56EAC;
  border-radius: 10px;
  overflow: hidden;
}
body main .faq .accordion .accordion-item .accordion-header .accordion-button {
  color: #000;
  font-size: 20px;
  line-height: 40px;
  box-shadow: none !important;
  transition: 0.4s ease-in-out;
}
body main .faq .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
  background-color: rgba(165, 110, 172, 0.5);
}
body main .faq .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true]:after {
  filter: brightness(0);
}
body main .faq .accordion .accordion-item .accordion-collapse {
  background-color: rgba(165, 110, 172, 0.5);
  transition: 0.4s ease-in-out;
}
body main .faq .accordion .accordion-item .accordion-collapse .accordion-body {
  font-size: 18px;
  padding: 0 20px 20px;
}
body main .faq .accordion .accordion-item:has(.accordion-button[aria-expanded=true]) .accordion-collapse {
  background-color: rgba(165, 110, 172, 0.5);
}
body main .media {
  background-color: rgba(165, 110, 172, 0.3);
  padding: 60px 0;
  z-index: 2;
}
body main .media .video-wrapper {
  position: relative;
  z-index: 1;
}
body main .media .video-wrapper img.thumb {
  position: absolute;
  z-index: -10;
  opacity: 0;
}
body main .media .video-wrapper iframe {
  height: 300px;
  width: 100%;
  object-fit: cover;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
}
body main .media .container {
  position: relative;
}
body main .media .container:before, body main .media .container:after {
  content: "";
  background: url("../img/webp/obj_4.webp") no-repeat center center/100%;
  height: 444px;
  width: 444px;
  position: absolute;
  z-index: -1;
}
body main .media .container:before {
  top: 0;
  left: 0;
  transform: translate(0, -130px);
}
body main .media .container:after {
  right: 0;
  bottom: 0;
  transform: translate(0, 130px);
}
body main .media:before, body main .media:after {
  content: "";
  background: url("../img/webp/obj_6.webp") no-repeat center center/100%;
  height: 310px;
  width: 310px;
  position: absolute;
  z-index: 0;
  opacity: 0.2;
}
body main .media:before {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}
body main .media:after {
  left: 0;
  bottom: 0;
}
body main .experts {
  background-color: #fff;
  padding: 120px 0 80px;
}
body main .experts .card {
  height: 100%;
}
body main .experts .card img {
  height: auto;
}
body footer {
  background-color: #DBF3FF;
  position: relative;
  font-size: 20px;
  padding: 60px 0;
  z-index: 1;
}
body footer .content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
}
body footer .content-wrapper .logo {
  max-width: 340px;
  height: auto;
}
body footer .content-wrapper .content {
  width: 100%;
  text-align: center;
}
body footer .content-wrapper .content .link {
  color: #A56EAC;
  text-decoration: none;
  font-size: 32px;
}
body footer .content-wrapper .content .link img {
  width: 30px;
  height: auto;
}
body footer .content-wrapper .content p {
  color: #fff;
}
body footer .obj_1,
body footer .obj_2 {
  position: absolute;
  width: 100%;
  max-width: 560px;
  z-index: -1;
}
body footer .obj_1 {
  top: 0;
  left: 0;
}
body footer .obj_2 {
  right: 0;
  bottom: 0;
  transform: scale(-1);
}
body .modal_v1 {
  backdrop-filter: blur(4px);
}
body .modal_v1 .modal-dialog {
  max-width: 1208px;
  padding: 10px 20px;
}
body .modal_v1 .modal-dialog .modal-content {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
body .modal_v1 .modal-dialog .modal-content .modal-header {
  padding: 12px 12px;
  border: none;
  z-index: 1;
}
body .modal_v1 .modal-dialog .modal-content .modal-header .btn-close {
  position: relative;
  background: #fff;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  opacity: 1;
  z-index: 9;
  box-shadow: none;
}
body .modal_v1 .modal-dialog .modal-content .modal-header .btn-close:after {
  content: "";
  background: url("../img/webp/icon_10.webp") no-repeat center center/100%;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
body .modal_v1 .modal-dialog .modal-content .modal-body {
  padding: 0 40px 40px;
  z-index: 1;
}
body .modal_v1 .modal-dialog .modal-content .modal-body img {
  height: auto;
}
body .modal_v1 .modal-dialog .modal-content .modal-body .main-title {
  font-size: 48px;
  letter-spacing: 2px;
}
body .modal_v1 .modal-dialog .modal-content .modal-body .lead {
  font-family: "Helvetica", sans-serif;
  font-size: 24px;
}
body .modal_v1 .modal-dialog .modal-content .modal-body .wrapper {
  z-index: 1;
  position: relative;
}
body .modal_v1 .modal-dialog .modal-content .modal-body .wrapper img {
  width: 100%;
}
body .modal_v1 .modal-dialog .modal-content .modal-body:before {
  content: "";
  background: url("../img/webp/obj_1.webp") no-repeat top center/100%;
  height: 200px;
  width: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: scale(-1);
}
body .modal_v1 .modal-dialog .modal-content:before, body .modal_v1 .modal-dialog .modal-content:after {
  content: "";
  position: absolute;
  top: 0;
}
body .modal_v1 .modal-dialog .modal-content:after {
  left: 0;
  background: url("../img/webp/obj_1.webp") no-repeat top center/100%;
  height: 200px;
  width: 300px;
}
body .modal_v1 .modal-dialog .modal-content:before {
  right: 0;
  background: url("../img/webp/obj_2.webp") no-repeat top center/100%;
  height: 200px;
  width: 388px;
}
@media (min-width: 1400px) {
  body .container {
    max-width: 1324px;
  }
}
@media (min-width: 1600px) {
  body .container {
    max-width: 1624px;
  }
}
@media (max-width: 1650px) {
  body .modal_v1 .modal-dialog {
    max-width: 1000px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body .main-title {
    font-size: 44px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body .lead {
    font-size: 20px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body:before {
    width: 250px;
  }
  body .modal_v1 .modal-dialog .modal-content:after {
    width: 250px;
  }
  body .modal_v1 .modal-dialog .modal-content:before {
    height: 98px;
    width: 288px;
  }
}
@media (max-width: 1600px) {
  body .btn-primary {
    font-size: 24px;
    padding: 16px 50px;
  }
  body .card .card-body .card-title {
    font-size: 26px;
    line-height: 36px;
  }
  body .card .card-body .card-text {
    font-size: 24px;
  }
  body header .navbar-brand img {
    max-width: 250px;
  }
  body header .obj_1 {
    max-width: 423px;
  }
  body header .obj_2 {
    max-width: 480px;
  }
  body main section {
    position: relative;
  }
  body main section .main-title {
    font-size: 54px;
    line-height: 76px;
  }
  body main .hero .text_wrapper .main-title {
    font-size: 34px;
    line-height: 44px;
  }
  body main .hero .text_wrapper .lead {
    font-size: 20px;
  }
  body main .hero .text_wrapper .img-wrapper {
    max-width: 340px;
    min-width: 340px;
  }
  body main .hero .content .heading_1 {
    font-size: 28px;
  }
  body main .media .container:before, body main .media .container:after {
    height: 350px;
    width: 350px;
  }
  body main .media:before, body main .media:after {
    height: 250px;
    width: 250px;
  }
  body main .experts .card {
    height: 100%;
  }
}
@media (max-width: 1400px) {
  body .card .card-body .card-title {
    font-size: 24px;
    line-height: 34px;
  }
  body .card .card-body .card-text {
    font-size: 20px;
  }
  body .btn-call {
    font-size: 16px;
    padding: 10px 20px 10px 10px;
  }
  body .btn-call img {
    width: 48px;
    height: 48px;
  }
  body .btn-call span {
    font-size: 20px;
    letter-spacing: 2px;
  }
  body .btn-primary {
    font-size: 20px;
  }
  body .heading_1 {
    font-size: 38px;
    margin-bottom: 20px;
  }
  body header .navbar-brand img {
    max-width: 250px;
  }
  body header .obj_1 {
    max-width: 319px;
  }
  body header .obj_2 {
    max-width: 382px;
  }
  body main section {
    position: relative;
  }
  body main section .main-title {
    font-size: 48px;
    line-height: 70px;
  }
  body main .hero {
    padding: 10px 0 60px;
  }
  body main .hero .text_wrapper .main-title {
    font-size: 28px;
    line-height: 38px;
  }
  body main .hero .text_wrapper .lead {
    font-size: 16px;
  }
  body main .hero .text_wrapper .img-wrapper {
    max-width: 300px;
    min-width: 300px;
  }
  body main .hero .content .heading_1 {
    font-size: 24px;
  }
  body main .vertical_slider {
    padding: 60px 0;
  }
  body main .vertical_slider .vertical_slider_for {
    margin-top: 30px;
  }
  body main .vertical_slider .vertical_slider_for .item .title {
    font-size: 44px;
  }
  body main .vertical_slider .vertical_slider_for .item .lead {
    font-size: 20px;
  }
  body main .testimonials {
    padding: 100px 0 140px;
  }
  body main .testimonials .testimonials_slider {
    padding-top: 80px;
  }
  body main .testimonials .testimonials_slider .item .lead {
    font-size: 20px;
  }
  body main .testimonials .testimonials_slider:before {
    height: 50px;
    width: 72px;
  }
  body main .media .video-wrapper iframe {
    height: 200px;
  }
  body main .media:before, body main .media:after {
    height: 200px;
    width: 200px;
  }
  body main .experts .card {
    height: 100%;
  }
  body main .gallery-slider .object {
    width: 50px;
  }
  body footer {
    font-size: 20px;
  }
  body footer .content-wrapper .logo {
    max-width: 280px;
  }
  body footer .content-wrapper .content .title {
    font-size: 36px;
  }
  body footer .content-wrapper .content .link {
    font-size: 26px;
  }
  body footer .content-wrapper .content .link img {
    width: 20px;
  }
  body footer .obj_1,
  body footer .obj_2 {
    max-width: 384px;
  }
}
@media (max-width: 1200px) {
  body .btn-primary {
    font-size: 18px;
  }
  body main section {
    position: relative;
  }
  body main section .main-title {
    font-size: 42px;
    line-height: 70px;
  }
  body main .hero .text_wrapper {
    column-gap: 20px;
  }
  body main .hero .text_wrapper .main-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px !important;
  }
  body main .hero .text_wrapper .lead {
    font-size: 14px;
  }
  body main .hero .text_wrapper .img-wrapper {
    max-width: 240px;
    min-width: 240px;
  }
  body main .hero .content .heading_1 {
    font-size: 20px;
  }
  body main .experts .card {
    height: 100%;
  }
  body footer {
    font-size: 18px;
  }
  body footer .content-wrapper .logo {
    max-width: 200px;
  }
  body footer .content-wrapper .content {
    padding: 0 25px;
  }
  body footer .content-wrapper .content .title {
    font-size: 28px;
  }
  body footer .content-wrapper .content .link {
    font-size: 20px;
  }
  body footer .content-wrapper .content .link img {
    width: 16px;
  }
  body footer .obj_1,
  body footer .obj_2 {
    max-width: 320px;
  }
}
@media (max-width: 992px) {
  body .btn-call {
    font-size: 12px;
    padding: 8px 14px 8px 8px;
  }
  body .btn-call img {
    width: 40px;
    height: 40px;
  }
  body .btn-call span {
    font-size: 16px;
    line-height: 20px;
  }
  body .heading_1 {
    font-size: 30px;
  }
  body header .navbar-brand img {
    max-width: 200px;
  }
  body header .obj_1 {
    max-width: 212px;
  }
  body header .obj_2 {
    max-width: 292px;
  }
  body main section {
    position: relative;
  }
  body main section .main-title {
    font-size: 32px;
    line-height: 44px;
  }
  body main .hero {
    padding: 40px 0 60px;
  }
  body main .hero .text_wrapper {
    margin-bottom: 10px;
  }
  body main .hero .text_wrapper .main-title {
    font-size: 28px;
    line-height: 38px;
  }
  body main .hero .text_wrapper .lead {
    font-size: 16px;
  }
  body main .hero .text_wrapper .img-wrapper {
    display: none;
  }
  body main .hero .content .heading_1 {
    font-size: 28px;
  }
  body main .vertical_slider .vertical_slider_for {
    margin-top: 30px;
  }
  body main .vertical_slider .vertical_slider_for .item .title {
    font-size: 32px;
  }
  body main .vertical_slider .vertical_slider_for .item .title:after {
    width: 180px;
  }
  body main .vertical_slider .vertical_slider_for .item .lead {
    font-size: 16px;
  }
  body main .vertical_slider .vertical_slider_nav {
    padding: 0 0 30px 0;
    margin-bottom: 20px;
  }
  body main .vertical_slider .vertical_slider_nav .item img {
    width: 100%;
    object-fit: cover;
  }
  body main .vertical_slider .vertical_slider_nav .slick-dots {
    display: flex;
    gap: 10px;
    flex-direction: row;
    height: auto;
    max-height: fit-content;
    max-width: 100%;
    top: 100%;
    right: 0;
    justify-content: center;
  }
  body main .vertical_slider .vertical_slider_nav .slick-dots li {
    margin: 0;
    height: 18px;
    width: 18px;
  }
  body main .vertical_slider .vertical_slider_nav .slick-dots li button {
    height: 18px;
    width: 18px;
  }
  body main .vertical_slider .vertical_slider_nav .slick-dots li button::before {
    content: "";
    background-color: rgba(185, 157, 83, 0.2);
    border: 1px solid #B99D53;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    opacity: 1;
  }
  body main .vertical_slider .vertical_slider_nav .slick-dots li.slick-active button::before {
    background-color: #B99D53;
  }
  body main .testimonials {
    padding: 60px 0;
  }
  body main .testimonials .testimonials_slider {
    padding-top: 80px;
  }
  body main .testimonials .testimonials_slider .item .lead {
    font-size: 16px;
  }
  body main .testimonials .testimonials_slider .item .author_profile {
    height: 50px;
    width: 50px;
  }
  body main .testimonials .testimonials_slider .item .author_name {
    font-size: 16px;
  }
  body main .testimonials .testimonials_slider .item .author_post {
    font-size: 14px;
  }
  body main .testimonials .testimonials_slider .slick-dots {
    gap: 6px;
  }
  body main .testimonials .testimonials_slider .slick-dots li {
    height: 14px;
    width: 14px;
  }
  body main .testimonials .testimonials_slider .slick-dots li button {
    height: 14px;
    width: 14px;
  }
  body main .testimonials .testimonials_slider .slick-dots li button::before {
    height: 14px;
    width: 14px;
  }
  body main .testimonials .testimonials_slider:before {
    height: 50px;
    width: 72px;
  }
  body main .benefits {
    padding: 60px 0;
  }
  body main .gallery-slider {
    padding: 60px 0;
  }
  body main .gallery-slider .gallery button.slick-arrow {
    height: 60px;
    width: 60px;
  }
  body main .gallery-slider .gallery button.slick-arrow:before {
    height: 30px;
    width: 18px;
  }
  body main .gallery-slider .object {
    display: none;
  }
  body main .media .container:before, body main .media .container:after {
    height: 250px;
    width: 250px;
  }
  body main .media .container:before {
    transform: translate(0, -100px);
  }
  body main .media .container:after {
    transform: translate(0, 100px);
  }
  body main .media:before, body main .media:after {
    height: 150px;
    width: 150px;
  }
  body main .experts {
    padding: 80px 0 60px;
  }
  body main .experts .card {
    height: 100%;
  }
  body main .faq {
    padding: 60px 0;
  }
  body footer {
    font-size: 18px;
  }
  body footer .content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  body footer .content-wrapper .logo {
    margin: 0 auto 30px auto;
    align-self: start;
  }
  body footer .obj_1,
  body footer .obj_2 {
    max-width: 300px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body .main-title {
    font-size: 38px;
  }
  body .modal_v2 .modal-dialog {
    max-width: 768px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body {
    padding: 80px 20px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v1 {
    font-size: 18px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v2 {
    font-size: 24px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v3 {
    font-size: 44px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v3 span {
    font-size: 24px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .btn {
    font-size: 18px;
    padding: 12px 40px;
  }
}
@media (max-width: 768px) {
  body .card .card-body .card-title {
    letter-spacing: 0;
  }
  body .card .card-body .card-text {
    font-size: 16px;
  }
  body .btn-call {
    font-size: 10px;
    padding: 4px 14px 6px 6px;
    align-items: center;
    line-height: 15px;
  }
  body .btn-call img {
    width: 27px;
    height: 27px;
  }
  body .btn-call span {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1px;
  }
  body .btn-primary {
    font-size: 16px;
  }
  body header .navbar {
    padding: 16px 0 8px;
  }
  body header .navbar-brand img {
    max-width: 150px;
  }
  body header .obj_1 {
    max-width: 190px;
  }
  body header .obj_2 {
    max-width: 160px;
  }
  body main .hero {
    padding: 30px 0 40px;
  }
  body main .hero .text_wrapper {
    margin-bottom: 10px;
  }
  body main .hero .text_wrapper .main-title {
    font-size: 24px;
    line-height: 34px;
  }
  body main .hero .text_wrapper .lead {
    font-size: 14px;
  }
  body main .hero .content .heading_1 {
    font-size: 24px;
  }
  body main .hero .content .heading_1 br {
    display: none;
  }
  body main .vertical_slider {
    padding: 40px 0;
  }
  body main .testimonials {
    padding: 40px 0;
  }
  body main .benefits {
    padding: 40px 0;
  }
  body main .gallery-slider {
    padding: 40px 0;
  }
  body main .gallery-slider .gallery .slick-list {
    width: calc(100% - 100px);
    margin: 0 auto;
  }
  body main .gallery-slider .gallery .slick-dots {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    bottom: 0;
    transform: translateY(calc(100% + 44px));
  }
  body main .gallery-slider .gallery .slick-dots li {
    height: 14px;
    width: 14px;
  }
  body main .gallery-slider .gallery button.slick-arrow {
    height: 40px;
    width: 40px;
    transform: none;
  }
  body main .gallery-slider .gallery button.slick-arrow:before {
    height: 20px;
    width: 12px;
    margin: 0 2px 0 -2px;
  }
  body main .gallery-slider .gallery button.slick-arrow.slick-next {
    transform: none;
  }
  body main .gallery-slider .gallery button.slick-arrow.slick-next:before {
    margin: 0 -2px 0 2px;
  }
  body main .media {
    padding: 40px 0;
  }
  body main .media .video-wrapper iframe {
    height: 300px;
  }
  body main .media .container:before, body main .media .container:after {
    height: 120px;
    width: 120px;
  }
  body main .media .container:before {
    transform: translate(0, -80px);
  }
  body main .media .container:after {
    transform: translate(0, 80px);
  }
  body main .media:before, body main .media:after {
    height: 150px;
    width: 150px;
  }
  body main .experts {
    padding: 60px 0 40px;
  }
  body main .faq {
    padding: 40px 0 60px;
  }
  body main .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    line-height: 24px;
  }
  body main .faq .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
  }
  body footer {
    padding: 40px 0 60px;
    font-size: 14px;
  }
  body footer .content-wrapper .logo {
    max-width: 180px;
  }
  body footer .content-wrapper .content {
    padding: 0;
  }
  body footer .content-wrapper .content p {
    margin-bottom: 10px !important;
  }
  body footer .content-wrapper .content .title {
    font-size: 24px;
  }
  body footer .content-wrapper .content .link {
    font-size: 16px;
  }
  body footer .content-wrapper .content .link img {
    width: 16px;
  }
  body footer .obj_1,
  body footer .obj_2 {
    max-width: 200px;
  }
  body footer .obj_2 {
    display: none;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body {
    padding: 20px 40px 40px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body .main-title {
    font-size: 32px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body .lead {
    font-size: 18px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body:before {
    width: 200px;
  }
  body .modal_v1 .modal-dialog .modal-content:before {
    height: 69px;
    width: 208px;
  }
  body .modal_v1 .modal-dialog .modal-content:after {
    width: 200px;
  }
  body .modal_v2 .modal-dialog {
    max-width: 700px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body {
    max-width: 55%;
    padding: 60px 10px;
  }
}
@media (max-width: 576px) {
  body .btn-call {
    letter-spacing: -0.3px;
  }
  body header .navbar-brand {
    margin: 0;
  }
  body header .navbar-brand img {
    max-width: 100px;
  }
  body header .obj_1 {
    max-width: 140px;
  }
  body header .obj_2 {
    max-width: 127px;
  }
  body main .hero .text_wrapper {
    margin-bottom: 0;
  }
  body main .hero .text_wrapper .main-title {
    font-size: 20px;
    line-height: 30px;
  }
  body main .hero .text_wrapper .lead {
    font-size: 14px;
  }
  body main .hero .content .heading_1 {
    font-size: 20px;
  }
  body main .hero .content .heading_1 br {
    display: none;
  }
  body main .media .video-wrapper iframe {
    margin-bottom: 20px;
  }
  body main .media .container:before {
    transform: translate(12px, -80px);
  }
  body main .media .container:after {
    transform: translate(-12px, 80px);
  }
  body main .media:before, body main .media:after {
    height: 150px;
    width: 150px;
  }
  body footer {
    padding: 40px 0 70px;
  }
  body .modal_v1 .modal-dialog .modal-content .modal-body .main-title {
    font-size: 24px;
  }
  body .modal_v1 .modal-dialog .modal-content:before {
    display: none;
  }
  body .modal_v2 .modal-dialog {
    max-width: 100%;
  }
  body .modal_v2 .modal-dialog .modal-content img.bg {
    position: relative;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-header {
    position: absolute;
    top: 0;
    right: 0;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body {
    max-width: 100%;
    padding: 30px 10px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v1 {
    font-size: 16px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v2 {
    font-size: 20px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v3 {
    font-size: 38px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .title_v3 span {
    font-size: 20px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .lead {
    font-size: 14px;
  }
  body .modal_v2 .modal-dialog .modal-content .modal-body .btn {
    font-size: 16px;
    padding: 10px 30px;
  }
}

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