:root {
  --container-desktop: 1410px;
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Onest', sans-serif;
  line-height: 1.4;
  background: #fff;
}

a {
  
  text-decoration: none;
  color: #2F2F2F;
}
a:active,a:hover   {
  color: #156EB2;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-desktop);
  margin-inline: auto;
  /* padding-left:15px;
  padding-right: 15px; */
}


.header {
  width: 100%;
  background: #fff;
  border-radius: 0px 0px 40px 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 105px;
  display: flex;
}
/* Класс, который делает шапку фиксированной */
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.header .logo {
  padding-top: 20px;
}

.logo img{
  max-height: 46px;
}

.nav {
  transition: all 0.3s ease;
}

.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav__list a {
  font-weight: 500;
  color: #000;
}
.nav__list a:hover {
  color: #156EB2;
}
.nav__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav__list li {
  position: relative;
}

.nav__more-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 120px;
  z-index: 10;
}

.nav__more:hover .nav__more-list {
  display: block;
}

.nav__more-list li {
  padding: 5px 20px;
}

.nav__more-list li a {
  color: #000;
  text-decoration: none;
  display: block;
}

/* Скрываем dropdown по умолчанию */
.nav__more {
  display: none;
}

.header .contacts {
  display: flex;
  flex-direction: column;
  padding-top:29px;
  min-width: 170px;
}

.contacts__socials {
  display: flex;
  flex-direction: row;
  padding-top:6px;
  gap: 8px;
}

.contacts__phone {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 120%; 
  color: #2F2F2F;
}

.contacts__socials a {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 1vw, 13px);
  line-height: 120%;
  color: #2F2F2F;
  width: 50%;
  display: flex;
  align-items: center;
}
.contacts__socials img {
  display: inline-block;
  margin-right: 6px;
}
.header .nav{
  padding-top: 43px;
}
.header .callback-btn{
  padding-top: 22px;
  min-width: 190px;
}
.btn--contact {
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 22px 35px;
  gap: 10px;
  
  background: #156EB2;
  border-radius: 50px;
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  
}
.btn {
  
  background-color: #007bff;
  color: white;
  
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.burger span {
  display: block;
  width: 15px;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger span:nth-child(2) {
  width: 12px;
}

.burger span:nth-child(3) {
  width: 9px;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile fixed button */
.btn--contact-mobile {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.btn {
  background: #156EB2;
  border-radius: 50px;
  font-family: 'Onest', sans-serif;
}
.top-section-wrapper {
  background-color: #f5f5f5;
}
.top-section {
  position: relative;
  width: 100%;
  height: 920px;
  background: url('/template/images/top.webp') center top no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.top-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  z-index: 0;
}

.wave-stripe, .wave-stripe-white {
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  transform-origin: bottom;
}

.wave-stripe {
  bottom: 10px;
  height: 90px;
  background: #D5E3EE;
  z-index: 1;
}

.wave-stripe-white {
  bottom: 0;
  height: 90px;
  background: #fff;
  z-index: 1;
}
.header__container {
  flex-wrap: nowrap;
}

.nav {
  flex-shrink: 0;
  min-width: 0;
  
}

.callback-btn {
  flex-shrink: 0;
}

.logo {
  flex-shrink: 0;
}
.top-section__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  width: 100%;
  position: relative;
  padding-top: 105px;
}

.top-section-intro-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  text-align: left;
}

.top-section-fisherman {
  display: flex;
  align-items: flex-end;
  min-width: 55%;
}

.top-section__title {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(47px, 8vw, 100px);
  line-height: 100%;
  color: #FFFFFF;
  font-size: clamp(47px, 8vw, 100px);
  padding-bottom: clamp(15px, 3vw, 30px);
}

.top-section__text {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 140%;
  color: #FFFFFF;
  padding-bottom: clamp(20px, 2.5vw, 40px);
}

.btn.btn--intro:hover {
  color:#fff;
}
.btn.btn--intro {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 22px 35px;
  gap: clamp(5px, 1vw, 10px);
  font-size: 15px;
  max-width: 225px;
  background: #156EB2;
  border-radius: 50px;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.card {
  background: #eee;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  background: #f1f1f1;
}
.open-mobile-menu {
  /* overflow: hidden; */
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 999;
}

body.open-mobile-menu .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 999;
}

body.open-modal-box .modal-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  padding: 10px 20px;
}
.mobile-menu-container {
  display: flex;
  z-index: 9;
  flex-direction: column;
  width: calc(100% - 68px);
}
.mobile-nav__list {
  list-style: none;
  padding: 28px 0 0  0;
  margin: 0;
  
}
.mobile-nav__list li {
  margin-bottom: 25px;
}

.mobile-nav__list a {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  
  
  color: #FFFFFF;
  
}
.mobile-nav__list a:hover {
  color: #156EB2;
}
.close-burger {
  display: flex;
  justify-content: flex-end;
  width: 68px;
  text-align: right;
}
.burger-close {
  height: 48px;
  width: 48px;
  border: 1px solid #fff;
  border-radius: 10px;
  position: relative
}
.burger-close span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 50%;
  left: 25%;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: 0.3s;
}

.burger-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.burger-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-contacts .contacts__phone {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 120%;
  /* identical to box height, or 30px */
  
  color: #FFFFFF;
  max-width: 220px;
  align-self: flex-end;
  
  
}
.mobile-contacts .contacts__socials a{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  
  color: #FFFFFF;
  
}
.mobile-call-back-button {
  width: 100%;
  align-self: flex-end;
  margin-bottom: 20px;
}
.mobile-call-back-button .btn--contact {
  margin: 0 auto
}
.modal-wrapper {
  display: flex;
  flex-direction: row;
  padding: 20px 15px;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.callback-modal {
  max-width: 450px;
  width: 100%;
  padding: 25px 30px 30px 30px;
  border-radius: 20px;
  background: #fff;
  font-family: sans-serif;
}

.callback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.callback-header .h2 {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 120%;
  padding-bottom: 5px;
  color: #156EB2;
  
}

.callback-close {
  border: none;
  background: none;
  font-size: 36px;
  cursor: pointer;
  color: #006CBA;
}

.callback-desc {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  padding-bottom: 15px;
  
  color: #000000;
  
}

.input-group {
  display: flex;
  align-items: center;
  padding: 21px 34px 21px 24px;
  background: #E6F4FF;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid transparent;
}
.input-group:focus-within, .input-group:active
{
  border-color: #156EB2;
}
.input-icon {
  font-size: 18px;
  margin-right: 10px;
  opacity: 0.7;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
}

.callback-submit {
  margin-top: 10px;
  width: 100%;
  height: 48px;
  background: #006CBA;
  color: #fff;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.agree {
  margin-top: 10px;
  color: #666;
  font-size: 12px;
  display: flex;
  gap: 6px;
  align-items: start;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 140%;
  /* or 15px */
  
  color: #000000;
  
}
.footer {
  background: #1e1e1e;
  color: #A7A7A7;
  padding: 50px 0;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.footer__col {
  max-width: 250px;
}

.footer__about {
  max-width: 360px;
  text-align: left;
}
.footer__about .fa-text {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  
  color: #A7A7A7;
  
  
}
.policy-links{
  padding-top:30px;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  /* identical to box height, or 24px */
  
  
  
}
.policy-links a {
  display: block;
  text-decoration-line: underline !important;
  color: #A7A7A7 !important;
}
.policy-links a:hover {
  color:#fff !important;
}
.footer__logo {
  display: block;
  margin-bottom: 25px;
  max-width: 330px;
  width: 100%;
}

.footer__col .h3 {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  
  
  color: #FFFFFF;
  margin-bottom: 12px;
  
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 8px;
}

.footer__col a {
  color: #A7A7A7;
  text-decoration: none;
}

.footer__col a:hover {
  text-decoration: underline;
  color:#fff;
}

.footer__link {
  display: block;
  margin-top: 15px;
  opacity: 0.8;
  font-size: 13px;
}

.footer__contacts p {
  margin: 8px 0;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.footer__btn {
  /* Кнопка */
  
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 22px 35px;
  gap: 10px;
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  
  color: #FFFFFF;
  
  /* Основной синий */
  background: #156EB2;
  border-radius: 50px;
  
}

.btn:hover {
  opacity: 0.9;
}
.footer__contacts .btn--contact {
  padding:20px;
}
.mobile-policy-links {
  display: none !important;
}
.footer__contacts div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.inner-top-section {
  position: relative;
  width: 100%;
    height: 424px;
  background: url('/template/images/inner-section.webp') center top no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.inner-section-intro-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  max-width: 700px;
}

.inner-top-section__title{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 100%;
  /* or 64px */
  
  color: #FFFFFF;
  padding-bottom: 25px;
  
  
}

.inner-top-section__text {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  padding-bottom: 30px;
  
  color: #FFFFFF;
  
  
}
.front-service-cards {
  background: #f5f5f5;
  position: relative;
padding-bottom: clamp(5px, 4vw, 90px);
}
.front-service-cards .container{
  
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  padding-top:25px;
  
}
.service-wave-stripe{
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  transform-origin: bottom;
  background: #f5f5f5;
  top: -90px;
  height: 90px;
  
  z-index: 1;
}
.front-service__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.front-service__card-inner{
  background: #FFFFFF;
  border-radius: 100%;
  width: 210px;
  height: 210px;
  border:10px solid #dde9f3;
}
.front-service__card-inner-text{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  /* identical to box height */
  text-align: center;
  color: #263E5E;
  padding-top: 10px;
  
}
.front-service__card-inner.service-1{
  position: relative;
  background: url('/template/images/service-1.png') center center no-repeat;
  
}
.front-service__card-inner.service-1::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -122px;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(/template/images/service-1-after.png) center center no-repeat;
}
.front-service__card-inner.service-2{
  position: relative;
  background: url('/template/images/service-2.png') center center no-repeat;
  
}
.front-service__card-inner.service-2::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -140px;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(/template/images/service-2-after.png) center center no-repeat;
  /* background-size: contain; */
}
.front-service__card-inner.service-3{
  position: relative;
  background: url('/template/images/service-3.png') center center no-repeat;
  
}
.front-service__card-inner.service-3::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -140px;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(/template/images/service-3-after.png) center center no-repeat;
  
}
.front-service__card-inner.service-4{
  position: relative;
  background: url('/template/images/service-4.png') center center no-repeat;
  
}
.front-service__card-inner.service-4::after {
  content: "";
  position: absolute;
  top: -21px;
  right: -153px;
  transform: translateX(-50%);
  width: 252px;
  height: 100%;
  background: url(/template/images/service-4-after.png) center center no-repeat;
}
/* Кнопка Наверх */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background-color: #0056b3;
}
.front-about-wrapper {
  background: #D5E3EE;
  margin-top:10px;
  position: relative;
}
.about-container {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 45px;
}

.about-title,
.about-title h2
{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 120%;
  
  color: #156EB2;
  padding-bottom: 20px;
}
.row-center h2,
.content-inner h2 {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
 font-size: clamp(24px, 4vw, 40px);
  line-height: 120%;
  padding-bottom: 25px;
  color: #156EB2;
}

.about-desc{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  
  color: #000000;
  
  
}
.about-desc p{
  padding-bottom: 15px;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  
  color: #000000;
}

.about-wave-stripe {
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  transform-origin: bottom;
  background: #D5E3EE;
  top: -90px;
  height: 90px;
  
  z-index: 1;
}
.front-service-after-wave-stripe {
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  transform-origin: bottom;
  background: #f5f5f5;
  bottom: -49px;
  height: 90px;
  
  z-index: 1;
}

.swiper {
  width: 100%;
}
.swiper-slide {
  
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.front-news-wrapper {
  background: #D5E3EE;
  position: relative;
      padding-bottom: 45px;
}
.news-container{
  position: relative;
  z-index: 9;
}
.front-news-title,
.front-news-title h2
 {
  text-align: center;
  padding-top:clamp(25px,4vh,90px);
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 120%;
  text-align: center;
  color: #156EB2;
  padding-bottom: 20px;
  
}
.news-card {
  display: flex;
  flex-direction: column;
  gap:10px;
}
.news-date {
  
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  /* identical to box height, or 21px */
  
  color: #808080;
  
}
.news-title,
.news-title h2
 {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  /* identical to box height, or 29px */
  
  color: #242424;
  
}
.news-descr {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  /* or 22px */
  
  color: #000000;
  
}
.news-more a,
.news-more a:hover
{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  /* or 25px */
  text-decoration-line: underline;
  
  /* Основной синий */
  color: #156EB2;
  
  
}

.news-btn-container {
  display: block;
  text-align: center;
}

.more-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 22px 35px;
  gap: 10px;
  max-width: 255px;
  background: #156EB2;
  border-radius: 50px;
  margin: 0 auto;
  color: #fff;
}
a.more-btn:hover {
  background: #105a8a;
  color: #fff;
}

/* Убираем стандартные стрелки Swiper */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* Кастомные стрелки */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

/* Правая стрелка */
.swiper-button-next {
  background-image: url('/template/images/arrow-right.png');
  
}

/* Левая стрелка */
.swiper-button-prev {
  background-image: url('/template/images/arrow-left.png');
  
}
.front-licenses-wrapper {
  position: relative;
  background:#f5f5f5;
}
.licenses-container{
  padding-top:clamp(25px,4vh,90px);
}
.licences-wave-stripe {
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  transform-origin: bottom;
  background: #f5f5f5;
  top: -89px;
  height: 90px;
  
  z-index: 1;
}
.news-image {
  max-height: 292px;
  overflow: hidden;
  border-radius: 30px;
}
.licenses-title, 
.licenses-title h2 {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 120%;
  text-align: center;
  color: #156EB2;
  padding-bottom: 20px;
}
.licenses-descr{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #000000;
  padding-bottom: 30px;
}

.licenses-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  
}
.license-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 25px;
  
  background: #D5E3EE;
  border-radius: 20px;
  
}
.lc-icon {
  max-width: 48px;
}
.lc-title,
.lc-title h2 {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  
  color: #242424;
  
  
}
.lc-price {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 120%;
  padding-top: 5px;
  color: #156EB2;
  
}

.gallery-title,
.gallery-title h2
 {
    padding-top:clamp(25px,4vh,90px);
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  
  line-height: 120%;
  text-align: center;
  color: #156EB2;
  padding-bottom: clamp(15px, 3vw, 20px);
}
.front-gallery-wrapper{
  background-color: #f5f5f5;
}
.front-gallery-wrapper .news-btn-container {
  padding-top:25px;
}
.front-reviews-wrapper .news-btn-container  {
  padding-top:25px;
}

.gallery-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}
.front-reviews-wrapper {
  background: #f5f5f5;
}
.reviews-title h2 {
  text-align: center;
  padding:90px 0 30px 0;
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 120%;
  text-align: center;
  color: #156EB2;
  
  
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.inner .reviews-title h2{
   padding-top: clamp(25px, 3vw, 90px);
}
.soc-m {
  display: none;
}
.soc-m img,.soc-d img {
  width: 30px;
  height: 30px;
  
}
.soc-m a {
  padding-right: 10px;
}
.fc-text {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 24px;
  
  color: #000000;
  
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.front-contacts-wrapper {
padding-top: clamp(5px, 4vw, 90px);
  background: #f5f5f5;
  position: relative;
}
.front-contacts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  
  gap: 15px;
}
.front-contact{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 20px 28px;
  background-color: #fff;
  border-radius: 15px;
}
.front-map-wrapper {
  padding:20px 0 90px 0;
  background: #f5f5f5;
}

.front-gallery-wrapper .swiper {
  display: none;
}

.content-inner {
  padding:35px 0px;
}
.content-inner .front-contacts-wrapper {
  padding:0 !important;
}

.map-container iframe{
  border-radius: 30px;
}
.inner-gallery {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  justify-content: center;
}
.gal-item img {
  width: 100px;
  max-width: 300px;
  height: 100px;
}

.inner-video {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  justify-content: center;
}
.inner-fishing {
  display: flex;
  gap: 30px;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.ul-p ~ ul {
  padding-left: 30px;
}
.content-inner .front-map-wrapper,
.content-inner .front-contacts-wrapper {
  background: #fff;
}
.house-intro-wrapper {
  background: #f5f5f5;
  position: relative;

    padding-bottom: clamp(55px, 3vw, 90px);
}
.house-intro-container {
  display: flex;
  flex-direction: row;
  gap:30px;
padding-top: clamp(25px, 3vw, 90px);
}

.house-intro-text {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.guarantee-wrapper {
  background: #f5f5f5;
  position: relative;
 padding-bottom: clamp(25px, 3vw, 90px);
}
.guarantee-container {
  display: flex;
  flex-direction: row;
  gap:30px;
padding-top: clamp(25px, 3vw, 90px);
}

.guarantee-text-c {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.house-intro-title h2{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(15px, 3vw, 20px);
  line-height: 120%;
  
  color: #156EB2;
  
  
}
.guarantee-title h2 {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(15px, 3vw, 20px);
  line-height: 120%;
  
  color: #156EB2;
  
  
}
.house-img {
  width: 100%;
  max-width: 570px;
}
.house-intro-descr {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  color: #000000;
  
}
.house-intro-descr p {
  padding-bottom: 20px;
}

.guarantee-text {
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  color: #000000;
  
}
.guarantee-text p {
  padding-bottom: 20px;
}


.accomodation-wrapper {
  background-color: #D5E3EE;
  position: relative;
  
}
.accomodation-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-bottom: clamp(60px, 3vw, 90px);
  padding-top: 45px;
}
.accomodation-img img {
  width: 450px;
}
.accomodation-img {
  max-width: 450px;
  width: 100%;
}

.accomodation-title h2{
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  
  line-height: 120%;
  
  color: #156EB2;
  
  font-size: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(15px, 3vw, 20px)
  
}
.accomodation-photo-title h2{
  font-family: 'Onest';
  font-style: normal;
  font-weight: 900;
  
  line-height: 120%;
  
  color: #156EB2;
  
  font-size: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(15px, 3vw, 20px)
  
}

.accomodation-text{
  
  /* Описательный */
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  
  color: #000000;
  
}

.accomodation-text p {
  padding-bottom: 20px;
}

.ul-accomodation {
  list-style-image: url(/template/images/bullet.png);
  padding: 0 0px 20px 30px;
}
.accomodation-wave-stripe{
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  transform-origin: bottom;
  background: #D5E3EE;
  top: -89px;
  height: 91px;
  
  z-index: 1;
}
.accomodation-text__toggle{
  order:3;
  display: none;
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  color: #156EB2;
  
}

.house-text__toggle{
  
  display: none;
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  color: #156EB2;
  
}

.guarantee-text__toggle{
  
  display: none;
  
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  
  color: #156EB2;
  
}

.o-3 {
  order: 2;
}
.accomodation-photo-wrapper {
  position: relative;
  padding-top: clamp(25px, 3vw, 90px);
  text-align: center;
  background: #f5f5f5;
}
.accomodation-photo-wave-stripe {
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(
  0% 40px,5% 45px,10% 50px,15% 55px,20% 60px,25% 65px,30% 70px,35% 75px,40% 78px,
  45% 79px,50% 80px,55% 79px,60% 78px,65% 75px,70% 70px,75% 65px,80% 60px,
  85% 55px,90% 50px,95% 45px,100% 40px,100% 100%,0% 100%
  );
  transform-origin: bottom;
  background: #f5f5f5;
  top: -90px;
  height: 90px;
  
  z-index: 1;
}
.btn-accomodation-photo-container{
  text-align: center;
  padding-top:40px;
}
.btn-accomodation-photo-container a {
  margin: 0 auto;
}
.custom-photo-block-container{
  display: flex;
  flex-direction: row;
  gap:30px;
}

.custom-photo-block-container div {
  width: 50%;
}
.custom-photo-block-wrapper {
  position: relative;
 padding-top: clamp(25px, 3vw, 90px);
  background:#f5f5f5;
}

.guarantee-image {
  width: 100%;
  max-width: 570px;
}

.spruce1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.spruce2 {
    position: absolute;
    bottom: 0;
    left: 40%;
    z-index: 1;
}

.spruce3 {
    position: absolute;
    bottom: 0;
    left: 60%;
    z-index: 1;
}

.spruce4 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.spruce4 img{
  max-width: 80%;
}
.accomodation-wrapper .container {
  position: relative;
  z-index: 9;
}
.inner-news,.content-inner a {
  color:#0056b3 !important;
}

.inner-news ul {
  list-style: none;
}
.inner-news {
  text-align: center;
}

.inner-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:20px;
}

.inner-gallery .gallery-item {
  width: 450px;
  height: 350px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-gallery .gallery-item img {
    width: 450px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    /* width: 100%; */
}
.row-center {
  text-align: center;
}
.content-inner p {
    padding-bottom: 15px;
} 

.content-inner ol, .content-inner ul {
    padding-left: 30px;
    padding-bottom: 15px;
}