/* ================================== GLOBAL =============================== */
/* ================================== GLOBAL =============================== */
.html, body {
  font-family: "Montserrat",sans-serif ;
  color: #000000;
  font-weight: 400;
  background: #F8F8F7;
}
a {
  transition: all .4s;
}
h1, h2 {
  font-size: 40px;
  font-weight: 600;
}
h3 {
  font-size: 30px;
  font-weight: 500;
}
.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}
.container {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
}
.burger{
  display: none;
}
.button {
  display: inline-block;
  line-height: 100%;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 40px;
  color: #FFFFFF; 
  border-radius: 28px;
  background: #1C3C29;
  white-space: nowrap;
  transition: all .4s;
}
.button:hover {
  background-color: #4a9265;
}
.nowrap {
  white-space: nowrap;
}

/* ================================== HEADING =============================== */
/* ================================== HEADING =============================== */

.header__inner-top {
  display: flex;
  align-items: center;
  padding: 33px 0;
  font-size: 18px;
}
.header__nav-list {
  display: flex;
}
.header__inner-top .header__nav-list {
  font-weight: 500;
  gap: 60px;
}
.header__inner-top .header__nav-list,
.header__mail {
  transition: all .4s;
}
.header__inner-top .header__nav-list a:hover,
.header__mail:hover {
  color: #38523E;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  gap: 4px;
  font-weight: 600;
}
.header__phone {
  color: #38523E;
}
.header__mail {
  font-size: 15px;
  color: #9E9E9E;
}
.header__contacts-btn {
  margin-left: 35px;
  font-size: 17px;
  cursor: pointer;
}
.header__nav-item {
  text-align: center;
}
.header__inner-bottom {
  background: #1C3C29;
  padding: 25px 50%;
  margin-left: -50%;
  margin-right: -50%;
}
.header__inner-bottom .header__nav-list {
  font-weight: 600;
  font-size: 16px;
  gap: 25px;
  align-items: center;
  color: #FFFFFF;
  justify-content: center;
  justify-content: space-between;
}
.header__inner-bottom hr {
  background: #336547;
  padding: 1px;
  margin: 30px 0 20px 0;
}
.header__inner-bottom .header__nav-list a,
.header__phone {
  transition: all .4s;
}
.header__inner-bottom .header__nav-list a:hover,
.header__phone:hover {
  color: #0E1A13;
}
.burger {
  display: none;
}
.mobile-menu {
  display: none;
}
.overlay {
  display: none;
}
@media (min-width: 769px) {
  .header__inner-bottom .header__nav-item.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__inner-bottom .header__dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: 300px;
    margin: 0;
    padding: 8px 10px;
    list-style: none;
    background: linear-gradient(
      135deg,
      #1D3B28 0%,
      #2E6140 100%
    );
    border: 1px solid #3B734F;
    border-radius: 8px;
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform:
      translateX(-50%)
      translateY(-10px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
    pointer-events: none;
    z-index: 1000;
  }
  .header__inner-bottom .header__dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .header__inner-bottom
  .header__nav-item.has-dropdown:hover
  .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform:
      translateX(-50%)
      translateY(0);
    pointer-events: auto;
  }
  .header__inner-bottom .header__dropdown li {
    margin: 0;
    padding: 0;
  }
  .header__inner-bottom
  .header__dropdown li + li {
    border-top: 1px solid rgba(59, 115, 79, 0.7);
  }
  .header__inner-bottom .header__dropdown a {
    display: block;
    padding: 12px 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition:
      color 0.25s ease,
      padding-left 0.25s ease,
      background-color 0.25s ease;
  }
  .header__inner-bottom .header__dropdown a:hover {
    padding-left: 5px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
  }
  .header__inner-bottom
  .header__nav-list
  .header__nav-item:first-child
  .header__dropdown {
    left: 0;
    transform:
      translateX(0)
      translateY(-10px);
  }
  .header__inner-bottom
  .header__nav-list
  .header__nav-item:first-child:hover
  .header__dropdown {
    transform:
      translateX(0)
      translateY(0);
  }
  .header__inner-bottom
  .header__nav-list
  .header__nav-item:last-child
  .header__dropdown {
    right: 0;
    left: auto;
    transform:
      translateX(0)
      translateY(-10px);
  }
  .header__inner-bottom
  .header__nav-list
  .header__nav-item:last-child:hover
  .header__dropdown {
    transform:
      translateX(0)
      translateY(0);
  }
}
@media (max-width: 768px) {
  .header {
    position: relative;
    z-index: 1000;
  }
  .header__inner-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    background: #F8F8F7;
  }
  .burger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1100;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1D3B28;
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }
  body.menu-open .burger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  body.menu-open .burger span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .burger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .header__request {
    margin-left: auto;
  }
  .header__contacts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: 0;
    padding: 9px 16px;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .header__inner-top > .header__nav,
  .header__inner-bottom,
  .header__contacts {
    display: none;
  }
  .overlay {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 9998;
  }
  body.menu-open .overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: min(86vw, 340px);
    height: 100dvh;
    background: #F8F8F7;
    box-shadow:
      4px 0 20px rgba(0, 0, 0, 0.12);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 9999;
    overflow: hidden;
  }
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 12px 14px;
    border-bottom: 1px solid #8CA193;
  }
  .mobile-menu__title {
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: #1D3B28;
  }
  .mobile-menu__close {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1.5px;
    background: #1D3B28;
    transform-origin: center;
  }
  .mobile-menu__close span:first-child {
    transform:
      translate(-50%, -50%)
      rotate(45deg);
  }
  .mobile-menu__close span:last-child {
    transform:
      translate(-50%, -50%)
      rotate(-45deg);
  }
  .mobile-menu__content {
    overflow-y: auto;
    padding: 10px 10px 15px;
    scrollbar-width: thin;
  }
  .mobile-menu__nav--top {
    padding-bottom: 10px;
    border-bottom: 1px solid #8CA193;
  }
  .mobile-menu__nav--top .header__nav-list {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu__nav--top .header__nav-item {
    width: auto;
    margin-right: 24px;
    margin-bottom: 8px;
    text-align: left;
  }
  .mobile-menu__nav--top .header__nav-item a {
    display: block;
    color: #1e1e1e;
    font-size: 17px;
    line-height: 100%;
    font-weight: 500;
    text-decoration: none;
  }
  .mobile-menu__nav--bottom {
    padding-top: 8px;
  }
  .mobile-menu__nav--bottom .header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-menu__nav--bottom .header__nav-item {
    position: relative;
    margin: 0;
    text-align: left;
  }
  .mobile-menu__nav--bottom .header__nav-item > a {
    display: block;
    width: 100%;
    padding: 5px 32px 5px 0;
    color: #1E1E1E;
    font-size: 15px;
    line-height: 100%;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-menu__toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu__arrow {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #1D3B28;
    border-bottom: 1.5px solid #1D3B28;
    transform:
      translateY(-2px)
      rotate(45deg);
    transition: transform 0.3s ease;
  }
  .header__nav-item.is-open
  .mobile-menu__arrow {
    transform:
      translateY(2px)
      rotate(225deg);
  }
  .mobile-menu__submenu {
    display: grid;
    grid-template-rows: 0fr;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    transition:
      grid-template-rows 0.3s ease,
      opacity 0.25s ease;
  }
  .mobile-menu__submenu > * {
    overflow: hidden;
  }
  .header__nav-item.is-open
  .mobile-menu__submenu {
    grid-template-rows: 1fr;
    opacity: 1;
  }
  .mobile-menu__submenu {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.4s ease,
      opacity 0.25s ease;
  }
  .header__nav-item.is-open
  .mobile-menu__submenu {
    max-height: 1000px;
    opacity: 1;
  }
  .mobile-menu__submenu li {
    margin: 0;
    padding: 0;
  }
  .mobile-menu__submenu a {
    display: block;
    padding:
      7px
      15px
      7px
      15px;
    color: #496454;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
    text-decoration: none;
  }
  .mobile-menu__submenu .active a,
  .mobile-menu__submenu a.active {
    font-weight: 700;
    color: #1D3B28;
  }
  .mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 4px;
    padding: 12px 18px 14px;
    text-align: center;
  }
  .mobile-menu__contacts .header__phone {
    font-size: 14px;
    font-weight: 600;
    color: #38523E;
  }
  .mobile-menu__contacts .header__mail {
    font-size: 12px;
    color: #9E9E9E;
  }
  body.menu-open {
    overflow: hidden;
  }
}

/* ================================== CONSULT =============================== */
/* ================================== CONSULT =============================== */

.consult {
  padding: 60px 0;
}
.consult__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 636px;
  padding: 70px 30px 60px 60px;
  overflow: hidden;
  border-radius: 8px;
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 75, 42, 0.91) 0%,
      rgba(15, 82, 46, 0.89) 45%,
      rgba(15, 82, 46, 0.86) 100%
    ),
    url('/templates/cassiopeia/images/banner-back.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(20, 95, 55, 0.35);
}
.consult__inner > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  max-width: 60%;
  padding-top: 7px;
}
.consult__inner h2 {
  max-width: 443px;
  margin: 0 0 16px;
  font-size: 45px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}
.consult__inner-subtitle {
  max-width: 443px;
  margin: 0;
  font-size: 32px;
  line-height: 100%;
  font-weight: 500;
  color: #ffffff;
}
.consult__inner-btn {
  margin-top: auto;
  padding: 15px 28px;
  border-radius: 171px;
  font-size: 22px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.18);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  max-width: 443px;
  text-align: center;
  cursor: pointer;
}
.consult__inner-btn:hover {
  background: #347952;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 7px 16px rgba(0, 0, 0, 0.25);
}
.consult__inner-cont {
  margin: 30px 0 0;
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.consult__inner-cont a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.consult__inner-cont a:hover {
  color: #ffffff;
}
.consult__inner > img {
  position: relative;
  z-index: 3;
  display: block;
  width: 57%;
  max-width: 590px;
  height: auto;
  border-radius: 5px;
}
.consult__image {
  position: relative;
  z-index: 2;
  width: 57%;
  max-width: 590px;
  padding: 7px;
  border: 2px solid #479262C4;
  border-radius: 6px;
}
.consult__image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #4792623B;
  border-radius: 8px;
  pointer-events: none;
}
.consult__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}
.consult__inner > img {
  transition: transform 0.4s ease;
}
.consult__inner:hover > img {
  transform: scale(1.01);
}
@media (max-width: 1000px) {
  .consult__inner {
    min-height: 420px;
    padding: 40px 25px 35px 35px;
  }
  .consult__inner > div {
    width: 43%;
  }
  .consult__inner > img {
    width: 54%;
  }
  .consult__inner h2 {
    font-size: 29px;
  }
  .consult__inner-subtitle {
    font-size: 21px;
  }
  .consult__inner-btn {
    min-width: 260px;
    padding: 14px 20px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .consult {
    padding: 35px 0;
  }
  .consult__inner {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
    padding: 30px 22px 25px;
    background-position: center;
  }
  .consult__inner > div {
    width: 100%;
    padding: 0;
    align-self: auto;
    max-width: 90%;
  }
  .consult__inner h2 {
    max-width: none;
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.1;
    text-align: center;
  }
  .consult__inner-subtitle {
    max-width: none;
    font-size: 19px;
    line-height: 1.2;
    text-align: center;
  }
  .consult__inner-btn {
    align-self: center;
    min-width: 0;
    width: 100%;
    max-width: 330px;
    margin-top: 30px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .consult__inner-cont {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
  }
  .consult__image {
    margin-bottom: 24px;
  }
  .consult__inner > img {
    width: 100%;
    max-width: none;
    margin-top: 30px;
    box-shadow:
      0 0 0 5px rgba(20, 91, 52, 0.55),
      0 0 0 8px rgba(31, 109, 64, 0.45),
      0 0 20px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 480px) {
  .consult__inner {
    padding: 25px 17px 20px;
  }
  .consult__inner h2 {
    font-size: 24px;
  }
  .consult__inner-subtitle {
    font-size: 17px;
  }
  .consult__inner-btn {
    font-size: 14px;
  }
}

/* ================================== PERSONAL =============================== */
/* ================================== PERSONAL =============================== */

.personal__inner h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 23px;
}
.personal__inner-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #8f8f8f;
  width: 50%;
}
.personal__peoples {
  display: flex;
  margin-top: 60px;
  gap: 40px;
}
.personal__advokat {
  display: flex;
  flex-direction: column;
  padding: 20px 27px;
  background: #FFFFFF;
  box-shadow: 0px 0px 6.2px 0px #00000040; 
  gap: 22px;
  border-radius: 8px;
  max-width: 800px;
}
.personal__advokat img {
  max-width: 392px;
  max-height: 380px;
  height: 100%;
}
.advokat__info {
  display: flex;
  flex-direction: column;
}
.advokat__info h3{
  font-weight: 600;
  line-height: 100%;
  font-size: 24px;
  margin-bottom: 16px;
}
.advokat__info p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  color: #7D7D7D;
  width: 90%;
}
.advokat__info a {
  margin-top: auto;
  line-height: 150%;
  font-weight: 500;
  font-size: 19px;
  color: #1D3B28;
}
.advokat__info a:hover {
  color: #0E1A13;
}
.advokat__info img {
  margin-right: 16px;
  max-width: 25px;
  max-height: 25px;
}
.advokat__info img:hover {
  transform: scale(1.05);
}
.advokat__info-phone {
  display: flex;
  align-items: center;
  margin: 14px 0;
}
.advokat__info-phone div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.advokat__info-address {
  display: flex;
  align-items: center;
}
.advokat__info-address p {
  font-size: 19px;
  font-weight: 500;
  color: #1D3B28;
}
.advokat__info-sign {
  margin: 32px 0 10px;
  font-size: 19px !important;
  color: #000000 !important;
  font-weight: 500 !important;
}
@media(max-width:768px) {
  .personal {
    padding: 0 0 30px 0;
  }
  .personal__inner h1 {
    font-size: 24px;
  }
  .personal__inner-subtitle {
    font-size: 16px;
    width: 100%;
  }
  .personal__content {
    flex-direction: column;
  }
  .personal__peoples {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }
  .personal__advokat {
    flex-direction: column;
    gap: 32px;
  }
  .advokat__info p {
    width: 100%;
  }
}

/* ================================== CONSULT__FORM =============================== */
/* ================================== CONSULT__FORM =============================== */

.consult__form {
  padding-top: 68px;
}
.consult__form-inner {
  display: flex;
  justify-content: space-between;
  background-color: #1D3B28;
  box-shadow: 0px 0px 4px 0px #00000040;
  padding: 25px 45px;
  border-radius: 16px;
}
.personal__consultation {
  padding: 10px 0;
}
.personal__consultation h3 {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
}
.personal__consultation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 33px;
}
.personal__list-item {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
}
.personal__list-item img {
  margin-right: 24px;
}
.personal__form-row {
  display: flex;
  flex-direction: column;
}
.personal__form-row input,
.personal__form-row textarea {
  padding: 16px 25px;
  font-weight: 600;
  color: #000000;
  font-size: 18px;
  background: #ffffff;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 8px;
}
.personal__form-row input::placeholder,
.personal__form-row textarea::placeholder {
  color:#B2B2B2;
}
.personal__form-labelcheck {
  display: flex;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
  max-width: 443px;
}
.consultation-modal .personal__form-labelcheck {
  max-width: unset;
}
.personal__form-labelcheck span a:hover {
  color: #0E1A13;
}
.personal__checkbox-label{
  margin-right: 50px;
  display: flex;
}
.personal__form-checkbox{
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 5px;
  margin: 5px 12px 0px 0px;
}
.personal__form-default {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0,0,0,0);
}
.personal__form-default:checked + .personal__form-custom {
  background: url("../images/icons/check.svg") 50% 50% no-repeat, #ffffff;
  border: 1px solid #0E1A13;
}
.personal__form-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #0E1A13;
  border-radius: 3px;
  cursor: pointer;
}
.personal__form-button {
  font-size: 20px;
  font-weight: 600;
  padding: 15px;
  background-color: #2C5537;
  border-radius: 8px;
  margin-bottom: 25px;
}
.personal__form-conf {
  text-align: center;
  line-height: 150%;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.personal__form-conf img {
  margin-right: 15px;
}
.personal__form-conf a {
  margin-right: 4px;
}
.personal__form-conf a:hover {
  color: #0E1A13;
}
@media(max-width:767px) {
  .consult__form-inner {
    padding: 15px;
    justify-content: center;
  }
  .personal__consultation {
    width: 100%;
  }
  .personal__consultation h3 {
    font-size: 16px;
  }
  .personal__consultation hr {
    background:#386649;
    padding: 1px;
    margin-top: 14px;
  }
  .personal__list-item {
    font-size: 14px;
    line-height: 130%;
  }
  .personal__list-item img {
    margin-right: 15px;
    max-width: 15px;
  }
  .personal__form-row input, .personal__form-row textarea {
    font-size: 12px;
  }
  .personal__form-button {
    font-size: 12px;
  }
  .personal__form-conf {
    font-size: 12px;
  }
  .consult__form-img {
    display: none;
  }
}

/* ================================== EXPERIENCE =============================== */
/* ================================== EXPERIENCE =============================== */

.experience {
  padding:132px 0;
}
.experience__inner {
  display: flex;
  gap: 22px;
  background: linear-gradient(270.05deg,#2E6140 0.05%,#1D3B28 99.96%);
  padding: 42px 0 0 80px;
  border-radius: 8px;
  color: #ffffff;
  min-height: 846px;
  overflow: hidden;
}
.experience__inner-text h2 {
  font-size: 46px;
}
.experience__inner-subtitle {
  font-size: 24px !important;
  font-weight: 600 !important;
  margin: 25px 0 !important;
}
.experience__inner > img {
  align-self: flex-end;
  display: block;
  max-width: 41%;
  height: auto;
  object-fit: contain;
}
.experience__inner.spec > img {
  max-width: 61%;
}
.experience__suvorina-img {
  margin: 0 61px 0 0;
  align-self: center !important;
  width: 30%;
}
.experience__inner-text {
  flex: 1;
  min-width: 0;
  padding-bottom: 42px;
}
.experience__inner-text p {
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
  width: 97%;
  margin-bottom: 3px;
}
.experience__inner-text.spec p {
  width: 137%;
}
.experience__inner-text li {
  width: 90%;
  list-style: inside;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
.experience__inner-block {
  border-left: 2px solid #3B734F ;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  margin-left: -18px;
}
.experience__inner-block p {
  font-size: 20px !important;
}
.experience__inner-block h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.experience__inner-small {
  margin-top: 18px;
  font-size: 18px !important;
  font-weight: 500 !important;
}
.experience__arrow{
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 61px;
  height: 109px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: #254D34;
}
.experience__arrow:hover {
  background: #4a9265;
}
.experience__slider-wrapper {
  position: relative;
}
.experience__prev{
  left: -100px;  
}
.experience__prev::before{
  transform: translate(-50%,-50%) scale(0);
  left: 25%;
}
.experience__next{
  right: -100px;
}
.experience__next::before{
  transform: translate(-50%,-50%) scale(0);
  left: 75%;
}
.experience__arrow:hover path{
  fill: #fff
}
.experience__prev:hover::before{
  transform:translate(-50%,-50%) scale(1);
}
.experience__next:hover::before{
  transform: translate(-50%,-50%) scale(1);
}
@media(max-width:767px) {
  .experience {
    padding: 50px 0 132px 0;
  }
  .experience__inner {
    flex-direction: column;
    gap: 0;
    background: linear-gradient(212.7deg, #234A32 9.82%, #38724F 105.58%);
    padding: 23px 0 0 26px;
    min-height: 1100px;
  }
  .experience__inner h2 {
    font-size: 26px;
  }
  .experience__inner-subtitle {
    font-size: 18px !important;
    margin: 15px 0 !important;
  }
  .experience__inner-text {
    padding-bottom: 0;
  }
  .experience__inner-text p {
    width: 83%;
    font-size: 13px;
  }
  .experience__block {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
  }
  .experience__inner-block {
    border-left: 2px solid #234A32;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    margin-left: -10px;
  }
  .experience__inner-block h4 {
    font-size: 20px;
  }
  .experience__inner-block p {
    font-size: 13px !important;
  }
  .experience__inner-small {
    display: none;
  }
  .experience__inner-text li {
    font-size: 12px;
    width: 95%;
  }
  .experience__inner > img {
    max-width: 100%;
  }
  .experience__inner-text.spec p {
    width: 90%;
    font-size: 20px;
  }
  .experience__inner.spec > img {
    max-width: 100%;
  }
  .experience__suvorina-img {
    width: 75%;
    margin: 0px auto 30px 30px;
  }
  .experience__arrow {    
    top: 102%;
    width: 64px;
    height: 50px;
    border-radius: 8px;
  }
  .experience__prev {
    left: 24%;
  }
  .experience__next {
    right: 28%;
  }
  .experience__arrow svg {
    width: 15px;
    height: 23px;
  }
}

/* ================================== ADVANTAGES =============================== */
/* ================================== ADVANTAGES =============================== */

.advantages {
  padding-bottom: 140px;
}
.advantages__inner h2 { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
} 
.advantages__inner h2::after { 
  content: ""; 
  display: block; 
  width: 122px; 
  height: 2px; 
  background-color: #1D3B28; 
  margin-top: 16px; 
}
.advantages__list {
  display: flex;
  gap: 67px;
  margin-top: 80px;
}
.advantages__list-item:first-child {
  min-width: 325px;
}
.advantages__list-item:first-child p {
    width: 75%;
}
.advantages__list-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.advantages__list-item img {
  max-width: 70px;
  max-height: 70px;
  margin-bottom: 30px;
}
.advantages__list-item h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 19px;
}
.advantages__list-item p {
  color: #a2a2a2;
  font-size: 19px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .advantages {
    padding: 40px 0 35px;
  }
  .advantages__inner h2 {
    font-size: 18px;
  }
  .advantages__inner h2::after {
    width: 45px;
    margin-top: 10px;
  }
  .advantages__slider-wrapper {
    width: 100%;
    margin-top: 30px;
  }
  .advantages__list {
    display: block;
    margin-top: 0;
  }
  .advantages__list-item {
    min-width: 0 !important;
    padding: 0 20px;
    text-align: center;
  }
  .advantages__list-item:first-child p {
    width: 100%;
  }
  .advantages__list-item img {
    width: 55px;
    height: 55px;
    display: flex;
    margin: 0 auto 18px;
  }
  .advantages__list-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .advantages__list-item p {
    width: 80%;
    font-size: 16px;
    display: flex;
    margin: 0 auto;
  }
  .advantages__slider .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
  }
  .advantages__slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
  }
  .advantages__slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d6dcda;
    font-size: 0;
    cursor: pointer;
  }
  .advantages__slider .slick-dots li button::before {
    display: none;
  }
  .advantages__slider .slick-dots li.slick-active button {
    background-color: #2F6142;
  }
}

/* ================================== GUARANTEES =============================== */
/* ================================== GUARANTEES =============================== */

.guarantees {
    background-color: #264833;
    padding: 36px 0 54px;
}
.guarantees__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.guarantees__inner h2 {
  position: relative;
  padding-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.guarantees__inner h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 122px;
  height: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
  border-radius: 24px;
}
.guarantees__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 40px;
  margin-top: 46px;
  list-style: none;
}
.guarantees__list-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  max-height: 220px;
  padding: 23px 28px;
  background-color: #1D3B28;
  border-radius: 4px;
}
.guarantees__list-item img {
  display: block;
  width: 57px;
  height: 57px;
  margin-bottom: 20px;
  object-fit: contain;
  margin-left: auto;
}
.guarantees__list-item h4 {
  width: 100%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-top: auto;
  margin-right: auto;
}
.guarantees__list-item:nth-child(1) h4,
.guarantees__list-item:nth-child(3) h4,
.guarantees__list-item:nth-child(7) h4 {
  width: 75%;
}
@media (max-width: 767px) {
  .guarantees {
    margin: 0 16px;
    border-radius: 8px;
  }
  .guarantees__inner h2 {
    margin-bottom: 40px;
  }
  .guarantees__slider-wrapper {
    width: 100%;
  }
  .guarantees__list {
    margin-top: 0;
  }
  .guarantees__slide {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 0 5px;
    box-sizing: border-box;
  }
  .guarantees__list-item {
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: 108px;
    margin: 0;
    padding: 18px 14px;
    box-sizing: border-box;
  }
  .guarantees__slider .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 18px;
    padding: 0;
    list-style: none;
  }
  .guarantees__slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
  }
  .guarantees__slider .slick-dots li button {
    width: 15px;
    height: 15px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #5D9E74;
    font-size: 0;
  }
  .guarantees__slider .slick-dots li button::before {
    display: none;
  }
  .guarantees__slider .slick-dots li.slick-active button {
    background-color: #1B3123;
  }
}

/* ================================== USLUGI =============================== */
/* ================================== USLUGI =============================== */

.uslugi {
  padding: 83px 0 0 0;
  color: #264832;
}
.uslugi__inner {
  display: flex;
  gap: 40px;
}
.uslugi__paid {
  display: flex;
  flex-direction: column;
  width: 50%;
  text-align: center;
}
.uslugi__paid h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}
.uslugi__paid p {
  margin-bottom: 18px;
  font-size: 23px;
  font-weight: 500;
  padding: 20px 15px;
  background: #ffffff;
  box-shadow: 0px 2px 4px 0px #00000040;
  border-radius: 8px;
}
.uslugi__free {
  text-align: center;
  width: 50%;
}
.uslugi__free h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #7E7E7E;
}
.uslugi__free div {
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px #00000040;
}
.uslugi__free div h4 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 14px;
}
.uslugi__free div p{
  font-size: 23px;
  font-weight: 500;
  color: #AFAFAF;
  width: 80%;
  display: flex;
  margin: 0 auto;
}
@media(max-width:767px) {
  .uslugi__inner {
    flex-direction: column;
  }
  .uslugi__paid {
    width: 100%;
  }
  .uslugi__paid h3 {
    font-size: 30px;
  }
  .uslugi__paid p {
    font-size: 22px;
  }
  .uslugi__free {
    width: 100%;
  }
  .uslugi__free h3 {
    font-size: 30px;
  }
  .uslugi__free div h4 {
    font-size: 24px;
  }
  .uslugi__free div p {
    font-size: 22px;
    width: 100%;
  }
}

/* ================================== HISTORY =============================== */
/* ================================== HISTORY =============================== */

.history {
  padding-top: 83px;
}
.history__inner {
  font-weight: 500;
}
.history__inner h2 {
  text-align: center;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 26px;
}
.history__paragraph {
  display: flex;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  color: #9E9E9E;
  margin-bottom: 39px;
  max-width: 820px;
}
.history__inner h4 {
  color: #151515;
  font-size: 23px;
  margin-bottom: 26px;
  text-align: center;
}
.history__text {
  padding: 26px 42px;
  background: #ffffff;
  color: #121212;
  font-size: 20px;
  line-height: 150%;
}
.history__inner h3 {
  display: flex;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  color: #1E1E1E;
  font-weight: 600;
  margin: 39px auto 30px;
  max-width: 564px;
}
.steps__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 55px 0 70px;
}
.steps__inner::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 9%;
  right: 9%;
  height: 1px;
  background-image: repeating-linear-gradient( to right,#8a8a8a 0,#8a8a8a 7px, transparent 7px, transparent 14px);
  z-index: 1;
}
.steps__item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14.666%;
}
.steps__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #e6e6e6;
  background-color: #1d3b2d;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
.steps__text {
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 900px) {
  .steps__inner {
    padding: 45px 20px;
  }
  .steps__inner::before {
    top: 66px;
  }
  .steps__text {
    font-size: 16px;
  }
  .steps__number {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}
@media(max-width:767px) {
  .history__inner h2 {
    font-size: 25px;
  }
  .history__paragraph {
    font-size: 18px;
  }
  .history__text {
    font-size: 15px;
  }
  .history__inner h3 {
    font-size: 17px;
    margin: 39px 30px 30px;
  }
  .steps__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0;
    row-gap: 22px;
    padding: 20px 0 30px;
  }
  .steps__inner::before {
    display: none;
  }
  .steps__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  .steps__number {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 600;
    color: #e6e6e6;
    background-color: #1d3b2d;
    border-radius: 50%;
  }
  .steps__text {
    padding: 0 8px;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
  }
  .steps__item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 14px;
    left: calc(50% + 15px);
    width: calc(100% - 30px);
    height: 1px;
    background-image: repeating-linear-gradient(
      to right,
      #8a8a8a 0,
      #8a8a8a 7px,
      transparent 7px,
      transparent 14px
    );
    z-index: 1;
  }
  .steps__item:nth-child(2)::after,
  .steps__item:nth-child(4)::after,
  .steps__item:nth-child(6)::after {
    display: none;
  }
}

/* ================================== CONTACTS =============================== */
/* ================================== CONTACTS =============================== */

.contacts {
  padding: 50px 0 100px;
}
.contacts a:hover {
  color: #38523E;
}
.contacts__inner h2 {
  margin-bottom: 47px;
}
.contacts__inner-content {
  display: flex;
  gap:90px
}
.contacts__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 19px;
  font-weight: 500;
  padding: 20px 0;
}
.contacts__block img {
  margin-right: 30px;
  max-width: 30px;
  max-height: 40px;
}
.contacts__map {
  border: 8px solid #264832;
  border-radius: 8px;
  max-width: 960px;
  width: 100%;
}
.contacts__block-cont {
  display: flex;
  align-items: center;
}
.contacts__block-cont div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contacts__block-small {
  font-size: 17px !important;
  color: #9a9a9a;
}

@media(max-width:767px) {
  .contacts {
    padding: 50px 0;
  }
  .contacts__inner h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 25px;
  }
  .contacts__inner-content {
    gap: 30px;
    flex-direction: column;
  }
  .contacts__inner-content .contacts__block {
    gap: 30px;
    font-size: 16px;
    padding: 20px; 
  }
}

/* ================================== FOOTER =============================== */
/* ================================== FOOTER =============================== */

.footer {
  background: #252525;
  color: #E2E2E2;
  font-size: 18px;
  font-weight: 600;
  padding: 26px 0;
}
.footer a:hover {
  color: #386649;
}
.footer a img {
  transition: all .4s;
}
.footer a img:hover {
  transform: scale(1.1);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 63%;
  line-height: 130%;
}
.footer__nav-item {
  min-height: 50px;
}
.footer__col img {
  max-width: 109px;
  display: flex;
  margin: 0 auto;
}
.footer__col .contacts__block {
  font-size: 12px;
  gap: 20px;
}
.footer__col .contacts__block-cont svg {
  margin-right: 15px;
}
.footer__col .contacts__block .contacts__block-small {
  font-size: 12px !important;
}
.footer hr {
  background: #4E4E4E;
  padding: 1px;
  margin: 17px 0;
}
.footer-conf {
  text-align: center;
}
.footer-conf a {
  text-decoration: underline;
}
@media(max-width:767px){
  .footer {
    font-weight: 500;
    font-size: 12px;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: repeat(2, 180px);
    text-align: unset;
    align-items: center;
    gap: unset;
  }
  .footer__nav-list {
    width: 100%;
    gap: unset;
  }
  .footer__nav-item {
    min-height: 30px;
    margin-bottom: 6px;
  }
  .footer__col:last-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
  }
  .contacts__block {
    padding: 0;
  }
  .footer__col img {
    margin: 0 25px;
  }
}

/* ================================== MODAL-FORM =============================== */
/* ================================== MODAL-FORM =============================== */

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.consultation-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.consultation-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.consultation-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.3s ease;
}
.consultation-modal.is-open .consultation-modal__dialog {
  transform: translateY(0) scale(1);
}
.consultation-modal .personal__consultation {
  position: relative;
  width: 100%;
  background: #1D3B28;
  border-radius: 12px;
  padding: 40px 25px;
}
.consultation-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.consultation-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.consultation-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform-origin: center;
}
.consultation-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.consultation-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 767px) {

  .consultation-modal {
    align-items: flex-start;
    padding: 10px;
  }
  .consultation-modal__dialog {
    max-height: calc(100vh - 20px);
  }
  .consultation-modal .personal__consultation {
    padding: 20px 15px;
  }
  .consultation-modal .personal__consultation h3 {
    padding-right: 35px;
    font-size: 20px;
  }
  .consultation-modal .personal__list-item {
    font-size: 16px;
  }
  .consultation-modal .personal__list-item img {
    margin-right: 10px;
  }
  .consultation-modal .personal__form-row input,
  .consultation-modal .personal__form-row textarea {
    padding: 13px 15px;
    font-size: 16px;
  }
  .consultation-modal .personal__form-button {
    font-size: 18px;
  }
  .consultation-modal.is-open .consultation-modal__dialog {
    transform: translateY(20%) scale(1);
  }
}

/* ================================== ARTICLE-PAGE =============================== */
/* ================================== ARTICLE-PAGE =============================== */

.com-content-article__body .container {
  line-height: 130%;
  padding: 30px 15px;
}
.com-content-article__body h1 {
  margin-bottom: 20px;
  line-height: 100%;
  text-align: center;
}
.site.com_content.view-article h2 {
  display: none;
}
.site.com_content.view-article .history {
  padding-top: 10px;
}
.com-content-article__body h3 {
  line-height: 100%;
  margin: 20px 0;
}
.com-content-article__body p{
  font-size: 20px;
  margin-bottom: 10px;
}
.com-content-article__body ul {
  margin-bottom: 20px;
  margin-left: 25px;
}
.com-content-article__body li {
  list-style-type: disc;
  font-size: 20px;
}
.com-content-article__body img {
  max-width: 480px;
  width: 100%;
}
.image-right {
  float: right;
  margin-left: 50px;
}
.image-left {
  float: left;
  margin-right: 50px;
}
@media(max-width:768px) {
  .com-content-article__body img {
    margin-bottom: 20px;
  }
}
/* ================================== PAGE-ERROR =============================== */
/* ================================== PAGE-ERROR =============================== */

.error-page .container {
  height:auto;
}
.error {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	text-align: center;
  padding-top: 100px;
}
.error__title {
	font-size: 36px;
	font-weight: 700;
}
.error__subtitle {
  margin: 15px 0;
}
.error__paragraph{
	display: flex;
	text-align: left;
	flex-direction: column;
	line-height: 160%;
}
.error__button {
	display: block;
  width: 100%;
  max-width: 250px;
  padding: 8px;
  border: none;
  text-decoration: none;
  background-color: #1C3C29 !important;
  border: 1px solid #1C3C29 !important;
  color: #FFF;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 10px 20px rgb(48 131 192 / 20%);
	margin: 40px auto;
}
.error__button:hover{
	color: #FFF !important;
	background-color: #1C3C29 !important;
}