.slider-arrow-cont {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1020px;
  margin: auto;
  left: 0;
  right: 0;
}
.slider-arrow-cont:hover .swiper-button-prev[tabindex],
.slider-arrow-cont:hover .swiper-button-next[tabindex] {
  display: flex;
}

.swiper:hover .swiper-button-prev[tabindex],
.swiper:hover .swiper-button-next[tabindex] {
  display: flex;
}

.swiper-button-prev.custom-slider-arrow,
.swiper-button-next.custom-slider-arrow {
  display: none;
  justify-content: center;
  align-items: center;
  top: unset;
  right: unset;
  left: unset;
  position: relative;
  margin: 2px 8px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.2s;
  background-color: #fff;
  box-shadow: 0px 2px 6px 0px rgba(174, 174, 192, 0.35), 0px 4px 12px 2px rgba(174, 174, 192, 0.35);
}
.swiper-button-prev.custom-slider-arrow.swiper-button-disabled,
.swiper-button-next.custom-slider-arrow.swiper-button-disabled {
  background-color: #c3c3c3;
}
.swiper-button-prev.custom-slider-arrow::after,
.swiper-button-next.custom-slider-arrow::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(images/n-arrow-ng.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  width: 30px;
  height: 30px;
  background-position: center;
}
.swiper-button-prev.custom-slider-arrow:hover,
.swiper-button-next.custom-slider-arrow:hover {
  background-color: #fff;
  box-shadow: 0px 2px 6px 0px rgba(174, 174, 192, 0.35), 0px 4px 12px 2px rgba(174, 174, 192, 0.35);
}

.swiper-button-prev.custom-slider-arrow:after {
  transform: rotate(90deg);
  left: 30px;
}

.swiper-button-next.custom-slider-arrow:after {
  transform: rotate(-90deg);
  right: 30px;
}

@media (max-width: 800px) {
  .swiper-button-prev.custom-slider-arrow,
.swiper-button-next.custom-slider-arrow {
    display: none;
  }

  .swiper-container:hover .swiper-button-prev.custom-slider-arrow,
.swiper-container:hover .swiper-button-next.custom-slider-arrow {
    display: none;
  }
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border: 1px solid #e2e6ec !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  background: #2362a9 !important;
}

.swiper_rounded {
  border-radius: 24px;
}
.swiper_rounded .hero-wr {
  margin: 0 30px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-wr {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  height: 420px;
  margin: auto;
  position: relative;
}
.hero .hero__title {
  width: 100%;
  margin-bottom: 12px;
  font-family: "GTE-bold";
}
.hero .hero__subtitle {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 36px;
  font-family: "GTE-light";
}
.hero .hero__subtitle.hero__subtitle_fat {
  width: fit-content;
  font-size: 18px;
  line-height: 26px;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #288f85;
  color: #fff;
}
.hero .button {
  min-width: 140px;
  margin-right: 20px;
}
.hero .hero__scroll-hint {
  background: url("../images/common/scroll-hint-ng.svg") no-repeat center center;
  background-size: 24px;
  width: 42px;
  height: 42px;
  box-shadow: 0 0px 2px 0px #00000075;
  background-color: #fff;
  border-radius: 100px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 3;
}
.hero .hero__scroll-hint.animate__slideInDown {
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 1.4s;
  animation-direction: alternate;
}
.hero .hero__text-wr {
  position: absolute;
  display: inline-flex;
  flex-wrap: wrap;
  overflow: hidden;
  min-width: 450px;
  width: 45%;
  height: 100%;
  padding: 20px 20px 20px 40px;
  z-index: 1;
}
.hero .hero__text-wr.hero__text-wr_white .hero__title {
  color: #fff;
}
.hero .hero__text-wr.hero__text-wr_white .hero__subtitle {
  color: #ececec;
}
.hero .hero__text-wr .hero__text {
  margin: auto 0;
}
.hero .hero__image {
  display: flex;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  margin-left: 45%;
}
.hero .hero__image.hero__image_contain {
  background-size: contain;
}

@media (max-width: 800px) {
  .hero .hero__image.mob-bg-pos-right {
    background-position: right !important;
  }

  .hero .hero__image.mob-bg-pos-left {
    background-position: left !important;
  }

  .hero .hero__image.mob-bg-pos-center {
    background-position: center !important;
  }

  .hero .hero__image.mob-hero__image_contain {
    background-size: contain !important;
  }

  .hero .hero__image.mob-hero__image_cover {
    background-size: cover !important;
  }

  .hero .hero__image.mob-low-opacity {
    opacity: 0.8 !important;
  }
}
@media (max-width: 600px) {
  .hero {
    flex-wrap: wrap;
    height: 300px;
  }

  .hero .hero__text-wr {
    order: 2;
    width: 54%;
    padding: 10px 10px 10px 20px;
    min-width: unset;
    max-width: 360px;
    filter: drop-shadow(0px 4px 12px rgba(54, 54, 54, 0.082));
  }
  .hero .hero__text-wr .hero__text {
    width: 100%;
  }
  .hero .hero__text-wr .hero__title {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  .hero .hero__text-wr .hero__subtitle {
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 20px;
  }
  .hero .hero__text-wr .hero__subtitle.hero__subtitle_fat {
    padding: 4px 6px;
  }
  .hero .hero__text-wr .button {
    min-width: 90px;
    margin-right: 10px;
    height: 40px;
  }

  .hero .hero__image {
    order: 1;
    width: 100%;
    margin-left: 30%;
  }

  .hero .hero__image.image-preset2 {
    margin-left: 20%;
  }

  .hero .hero__image.image-preset3 {
    margin-left: 20%;
  }

  .hero .hero__image.image-preset4 {
    margin-left: 20%;
  }
}
.management-slider {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 24px;
  padding: 6px !important;
}
.management-slider .swiper-wrapper {
  margin-bottom: 24px;
}
.management-slider__slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  padding: 6px;
  margin: 12px 0;
  border-radius: 12px;
  min-height: 260px;
  cursor: pointer;
  box-shadow: none;
  transition: 0.2s box-shadow ease-in !important;
}
.management-slider__slide_dummy {
  cursor: default;
}
.management-slider__slide_dummy:hover {
  box-shadow: none !important;
  background-color: unset !important;
  border: none !important;
}
.management-slider__slide:hover {
  background: #f9f9f9;
}
.management-slider__image {
  width: 180px;
  height: 180px;
  border-radius: 180px;
  margin-top: 12px;
  margin-bottom: 12px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .management-slider__image {
    width: 160px;
    height: 160px;
  }
}
.management-slider__text {
  width: 100%;
  text-align: center;
  padding: 0 12px;
}
.management-slider__title {
  font-family: "GTE-regular";
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 18px;
}
.management-slider__subtitle {
  font-family: "GTE-light";
  color: #7a7a7a;
  font-size: 12px;
  line-height: 14px;
}

.slider-controls {
  display: flex;
}
.slider-controls__title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}
.slider-controls__arrow-cont {
  display: inline-flex;
}
.slider-controls__arrow {
  border: 2px solid #f0f0f0;
  width: 42px;
  height: 42px;
  margin: 6px;
  border-radius: 6px;
  cursor: pointer;
}
.slider-controls__arrow::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(images/n-arrow-ng.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  width: 32px;
  height: 32px;
  background-position: center;
  width: 100%;
  height: 100%;
}
.slider-controls__arrow:hover {
  background-color: #fafafa;
}
.slider-controls__arrow_prev::before {
  transform: rotate(90deg);
}
.slider-controls__arrow_next::before {
  transform: rotate(-90deg);
}
.slider-controls__arrow_disabled {
  background-color: #f0f0f0;
  cursor: default !important;
}
.slider-controls__arrow_disabled:hover {
  background-color: #f0f0f0;
}
