/* Кастомные стили, которые вносились другим разработчиком, уже на готовой теме */

/* ===== START banner-section ===== */
.banner-section {
  position: relative;
  min-height: 700px;
  margin: 50px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  overflow: hidden;
}
.banner-section__banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
}
.banner-section__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-section__container {
  position: relative;
  z-index: 2;
}
.banner-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 750px;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 2.5px rgba(0 0 0 / 0.35);
}
.banner-section__title {
  max-width: 240px;
  margin: 0;
}
.banner-section__text {
  font-size: 24px;
  line-height: 120%;
}
.banner-section__text p {
  margin: 0;
}
.banner-section__content {
  gap: 30px;
}

@media (max-width: 1415px) {
  .banner-section__text {
    font-size: calc(15px + 9 * (100vw - 375px) / 1040);
  }
}

@media (max-width: 1300px) {
  .banner-section {
    min-height: 650px;
    margin: 40px 0 75px;
  }
}

@media (max-width: 1100px) {
  .banner-section {
    min-height: 600px;
  }
}

@media (max-width: 991px) {
  .banner-section {
    min-height: 550px;
    margin: 25px 0 65px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    min-height: 480px;
    margin: 20px 0 60px;
  }
  .banner-section__content {
    max-width: 650px;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .banner-section {
    min-height: 430px;
    margin: 20px 0 50px;
  }
  .banner-section__content {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .banner-section {
    min-height: 410px;
    margin: 15px 0 45px;
  }
}

@media (max-width: 375px) {
  .banner-section {
    min-height: 380px;
    margin: 10px 0 40px;
  }
  .banner-section__title {
    max-width: 180px;
  }
}
/* ===== END banner-section ===== */


textarea.input {
  border-radius: 30px;
}

.link--fill {
  background: #fff;
}
.link--fill .link__arrow {
  background: var(--accent-color);
}
.link--fill .link__arrow::after {
  border-color: #fff;
}


.expertise-section__expertise {
  padding-bottom: 130px;
  background: linear-gradient(0deg,rgba(184, 203, 229, .5) 0%, rgba(255, 255, 255, 1) 57%);
}
.expertise-section__container {
  position: relative;
}
.expertise-section__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.expertise-section__spollers .spoller {
  border-bottom-color: var(--border-color);
}
.expertise-section__spollers .spoller__header {
  padding: 10px 0;
}
.expertise-section__spollers .spoller__title,
.expertise-section__spollers .spoller__content--p-horizontal {
  transition: 0.2s all;
}
.expertise-section__spollers .spoller.open .spoller__title,
.expertise-section__spollers .spoller.open .spoller__content--p-horizontal {
  color: var(--accent-color);
}
.expertise-section__spollers .spoller__title {
  font-size: 28px;
}
.expertise-section__spollers .spoller__content--p-horizontal {
  padding: 0;
  font-size: 16px;
}
.expertise-section__spollers .spoller__content--p-horizontal ul {
  gap: 0.5rem;
}
.expertise-section__spollers .spoller__content--p-horizontal .more {
  width: fit-content;
  margin-bottom: 20px;
}
.expertise-section__spollers .spoller__content--p-horizontal .more span {
  font-size: 0.9em;
}
.expertise-section__spollers .spoller__icon,
.expertise-section__spollers .spoller__icon::after {
  border-color: var(--border-color);
  transition: 0.2s all;
}
.expertise-section__spollers .spoller.open .spoller__icon,
.expertise-section__spollers .spoller.open .spoller__icon::after {
  border-color: var(--accent-color);
}
.expertise-section__media {
  position: absolute;
  top: 0;
  left: 25%;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
}
.expertise-section__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1415px) {
  .expertise-section__expertise {
    padding-bottom: 100px;
    background: linear-gradient(0deg,rgba(184, 203, 229, .35) 0%, rgba(255, 255, 255, 1) 57%);
  }
  .expertise-section__media {
    left: 23%;
    transform: scale(1);
  }
  .expertise-section__spollers .spoller__title {
    font-size: calc(22px + 6 * (100vw - 375px) / 1040);
  }
  .expertise-section__spollers .spoller__content--p-horizontal {
    font-size: calc(14px + 2 * (100vw - 375px) / 1040);
  }
}

@media (max-width: 991px) {
  .expertise-section__expertise {
    padding-bottom: 0;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(184, 203, 229, .5) 20%, rgba(255, 255, 255, 1) 100%);
  }
  .expertise-section__content {
    max-width: 100%;
  }
  .expertise-section__media {
    position: relative;
    top: 0;
    left: 0;
    height: 0;
    padding-bottom: 39%;
    transform: scale(1.7) translate(20%, 60px);
  }
  .expertise-section__media video {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (max-width: 768px) {
  .expertise-section__expertise {
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(184, 203, 229, .5) 15%, rgba(255, 255, 255, 1) 100%);
  }
  .expertise-section__media {
    padding-bottom: 45%;
    transform: scale(1.8) translate(25%, 50px);
  }
  .expertise-section__spollers .spoller__header {
    padding: 13px 0;
  }
}

@media (max-width: 576px) {
  .expertise-section__spollers .spoller__content--p-horizontal .more {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .expertise-section__expertise {
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(184, 203, 229, .5) 10%, rgba(255, 255, 255, 1) 100%);
  }
  .expertise-section__media {
    padding-bottom: 55%;
    transform: scale(1.4) translate(15%, 15px);
  }
}


.section--single-expertise-v2 {
  position: relative;
  z-index: 2;
  min-height: auto;
  padding-top: 257px;
  padding-bottom: 257px;
  background: linear-gradient(0deg,rgba(184, 203, 229, .5) 0%, rgba(255, 255, 255, 1) 57%);
}
.section--single-expertise-v2 + .section--conditions {
  background: linear-gradient(0deg,rgba(184, 203, 229, 0.5) -10%, rgba(255, 255, 255, 1) 50%, rgba(184, 203, 229, 0.5) 100%);
}
.section--single-expertise-v2 + .section--conditions::after {
  height: 100%;
  background-size: contain;
}
.section--single-expertise-v2 + .section--conditions + .section {
  position: relative;
  background: #fff;
}
.section--single-expertise-v2 + .experience-section {
  position: relative;
  z-index: 2;
  background: #fff;
}
.section--single-expertise-v2 .section__bg-video {
  position: absolute;
  width: 1920px;
  height: 1080px;
  pointer-events: none;
}
.section--single-expertise-v2 .section__bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--single-expertise-v2 .section__bg-video--right-top {
  top: -400px;
  left: 43%;
}
.section--single-expertise-v2 .section__bg-video--left-bottom {
  bottom: -400px;
  right: 50%;
}
.section--single-expertise-v2 .single-expertise {
  position: relative;
  z-index: 2;
}
.section--single-expertise-v2 .single-expertise__wrap {
  margin: 0 auto;
  max-width: 756px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.section--single-expertise-v2 .single-expertise__title {
  margin-bottom: 0;
  font-size: 72px;
}
.section--single-expertise-v2 .single-expertise__text {
  font-size: 28px;
}

@media (max-width: 1440px) {
  .section--single-expertise-v2 {
    padding-top: 218px;
    padding-bottom: 218px;
  }
  .section--single-expertise-v2 .single-expertise__wrap {
    max-width: 593px;
  }
  .section--single-expertise-v2 .single-expertise__title {
    font-size: 55px;
  }
  .section--single-expertise-v2 .single-expertise__text {
    font-size: 22px;
  }
}

@media (max-width: 1415px) {
  .section--single-expertise-v2 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .section--single-expertise-v2 .section__bg-video {
    width: 1415px;
  }
  .section--single-expertise-v2 .section__bg-video--right-top {
    top: -350px;
    left: 55%;
  }
  .section--single-expertise-v2 .section__bg-video--left-bottom {
    bottom: -450px;
    right: 65%;
  }
  .section--single-expertise-v2 .single-expertise__wrap {
    max-width: 593px;
  }
  .section--single-expertise-v2 .single-expertise__title {
    font-size: calc(45px + 10 * (100vw - 375px) / 1040);
  }
  .section--single-expertise-v2 .single-expertise__text {
    font-size: calc(18px + 4 * (100vw - 375px) / 1040);
  }
}

@media (max-width: 991px) {
  .section--single-expertise-v2 {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .section--single-expertise-v2 .section__bg-video {
    width: 991px;
    height: 768px;
  }
  .section--single-expertise-v2 .section__bg-video--right-top {
    top: -350px;
    left: 60%;
  }
  .section--single-expertise-v2 .section__bg-video--left-bottom {
    bottom: -410px;
    right: 69%;
  }
}

@media (max-width: 768px) {
  .section--single-expertise-v2 {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .section--single-expertise-v2 .section__bg-video {
    width: 768px;
    height: 432px;
  }
  .section--single-expertise-v2 .section__bg-video--right-top {
    top: -240px;
    left: 30%;
  }
  .section--single-expertise-v2 .section__bg-video--left-bottom {
    bottom: -140px;
    right: 60%;
  }
}

@media (max-width: 576px) {
  .section--single-expertise-v2 .single-expertise__wrap .link {
    padding: 10px 15px;
    width: fit-content;
  }
  .section--single-expertise-v2 .section__bg-video--right-top {
    top: -240px;
    left: 10%;
  }
  .section--single-expertise-v2 .section__bg-video--left-bottom {
    bottom: -140px;
    right: 57%;
  }
}

@media (max-width: 480px) {
  .section--single-expertise-v2 {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .section--single-expertise-v2 .section__bg-video {
    width: 991px;
    height: 557px;
  }
  .section--single-expertise-v2 .section__bg-video--right-top {
    top: -370px;
    left: -60%;
  }
  .section--single-expertise-v2 .section__bg-video--left-bottom {
    bottom: -40px;
    right: -47%;
    width: 480px;
    height: 270px;
  }
}

@media (max-width: 360px) {
  .section--single-expertise-v2 .section__bg-video--right-top {
    left: -80%;
  }
  .section--single-expertise-v2 .section__bg-video--left-bottom {
    right: -67%;
  }
}


.experience-section .title {
  text-align: center;
  font-family: var(--font-manege);
}
.experience-section__slider {
  position: relative;
}
.experience-section__slider::before,
.experience-section__slider::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.experience-section__slider::after {
  right: 0;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.experience-section__slider .swiper-slide {
  height: auto !important;
  display: flex !important
}
.experience-section__slider .service-card {
  /* width: 440px !important; */
  padding: 32px 24px;
  background: linear-gradient(0deg,rgba(184, 203, 229, 1) 0%, rgba(255, 255, 255, 1) 57%);
}
.experience-section__slider .service-card__title {
  margin-bottom: 24px;
}
.experience-section__slider .service-card__title::after {
  content: none;
}
.experience-section__slider .service-card__text ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.experience-section__slider  .carousel-slider__inner {
  position: relative;
  z-index: 2;
}
.experience-section__slider  .carousel-slider__arrows {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1555px) {
  .experience-section__slider {
    width: calc(100% + 350px);
    transform: translateX(-175px);
  }
  .experience-section__slider::before {
    left: 175px;
  }
  .experience-section__slider::after {
    right: 175px;
  }
}
@media (max-width: 1415px) {
  .experience-section .title {
    font-size: calc(40px + 8 * (100vw - 375px) / 1040);
  }
}
@media (max-width: 991px) {
  .experience-section__slider {
    width: 100%;
    transform: none;
  }
  .experience-section__slider::before {
    left: 0;
  }
  .experience-section__slider::after {
    right: 0;
  }
  .experience-section__slider .carousel-slider__arrows {
    margin-top: 62px;
  }
}
@media (max-width: 768px) {
  .experience-section__slider {
    width: calc(100% + 200px);
    transform: translateX(-100px);
  }
  .experience-section__slider::before,
  .experience-section__slider::after {
    width: 130px;
  }
  .experience-section__slider::before {
    left: 100px;
  }
  .experience-section__slider::after {
    right: 100px;
  }
  .experience-section__slider .carousel-slider__arrows {
    margin-top: 52px;
  }
}
@media (max-width: 550px) {
  .experience-section__slider::before,
  .experience-section__slider::after {
    width: 50px;
  }
  .experience-section__slider .carousel-slider__arrows {
    margin-top: 52px;
  }
}
@media (max-width: 480px) {
  .experience-section__slider {
    width: calc(100% - 100px);
    transform: none;
    overflow: visible;
  }
  .experience-section__slider::before,
  .experience-section__slider::after {
    width: 40px;
  }
  .experience-section__slider::before {
    left: -50px;
  }
  .experience-section__slider::after {
    right: -50px;
  }
  .experience-section__slider .service-card__text ul {
    padding-left: 20px;
  }
  .experience-section__slider .carousel-slider__arrows {
    margin-top: 42px;
  }
}
@media (max-width: 375px) {
  .experience-section__slider {
    width: 90%;
  }
  .experience-section__slider::before,
  .experience-section__slider::after {
    content: none;
  }
  .experience-section__slider .service-card__text ul {
    padding-left: 20px;
  }
}


/* .trp-floating-switcher {
  padding: 5px 0 !important;
}
.trp-language-switcher .trp-flag-image {
  display: none !important;
}
.trp-language-switcher .trp-language-item-name {
  font-size: 22px !important;
  text-transform: uppercase;
}
.trp-language-item {
  position: relative;
}
.trp-language-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #BE9D64;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M10 7L15 12L10 17' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center / 100%;
  transform: translateY(-50%);
} */

.trp-floating-switcher {
  bottom: 20px !important;
  right: 20px !important;
}
.trp-language-item {
  padding: 10px 14px !important;
}
.trp-language-item[title="RU_RU"],
.trp-language-item[title="EN"] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trp-language-item[title="RU_RU"] .trp-language-item-name,
.trp-language-item[title="EN"] .trp-language-item-name {
  display: none;
}
.trp-language-item[title="RU_RU"]::before,
.trp-language-item[title="EN"]::before {
  font-size: 22px;
  color: #000;
  line-height: 110%;
}
.trp-language-item[title="RU_RU"]::before {
  content: "RUS";
}
.trp-language-item[title="EN"]::before {
  content: "ENG";
}
.trp-language-item[title="RU_RU"]::after,
.trp-language-item[title="EN"]::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9.5' stroke='%23BE9D64'/%3E%3Cpath d='M13.9863 9.70581L8.91895 14.7732L8.21191 14.0662L12.5723 9.70581L8.21191 5.34546L8.91895 4.63843L13.9863 9.70581Z' fill='%23BE9D64'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: 0.2s all;
}
.trp-language-item[title="RU_RU"]:hover::after,
.trp-language-item[title="EN"]:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23BE9D64'/%3E%3Cpath d='M8.56531 4.992L13.2794 9.70605L8.56531 14.4201' stroke='white' stroke-width='0.909091'/%3E%3C/svg%3E");
}


.expirience {
  justify-content: flex-start;
  column-gap: 40px;
}