:root {
    --color-bg: rgba(203, 217, 204, 0.7);
    --color-dark-green: #0F4942;
}

@font-face {
    font-style: normal;
    font-weight: 400;
    font-family: "Proxima Nova";

    font-display: swap;
    src: url("/assets/theme/fonts/ProximaNova-Regular.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 600;
    font-family: "Proxima Nova";

    font-display: swap;
    src: url("/assets/theme/fonts/ProximaNova-Semibold.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Proxima Nova";

    font-display: swap;
    src: url("/assets/theme/fonts/ProximaNova-Bold.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 900;
    font-family: "Proxima Nova";

    font-display: swap;
    src: url("/assets/theme/fonts/ProximaNova-Black.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 500;
    font-family: "Lifehack";

    font-display: swap;
    src: url("/assets/theme/fonts/Lifehack-Medium.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Lifehack";

    font-display: swap;
    src: url("/assets/theme/fonts/Lifehack-Bold.woff2") format("woff2");
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Proxima Nova', 'Arial', sans-serif;
    color: var(--color-dark-green);
    font-size: 18px;
    background: var(--color-bg);
    max-width: 100%;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: calc(100 * var(--vh, 1vh));
    overflow-x: hidden;
}

.wrapper .header,
.wrapper .footer {
    flex-shrink: 0;
}

.wrapper main {
    flex-grow: 1;
    position: relative;
}

a {
  color: var(--color-dark-green);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--color-dark-green);
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

textarea {
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;

    appearance: none;
}

input[type="number"] {
    appearance: textfield;
}

select,
textarea,
input:matches([type="email"],
    [type="number"],
    [type="password"],
    [type="search"],
    [type="tel"],
    [type="text"],
    [type="url"]) {
    appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: none;
}

.custom-input,
.custom-textarea {
    position: relative;
    flex: 1;

    display: flex;
    width: 100%;

    font-size: 16px;
    line-height: 18px;
    color: var(--color-dark-green);
}

.custom-input label,
.custom-textarea label {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-input input,
.custom-textarea textarea {
    width: 100%;
    min-height: 52px;
    margin-left: auto;
    padding: 10px 20px;
    font: inherit;
    color: inherit;
    outline: none;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    border: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.custom-input input::-webkit-input-placeholder,
.custom-textarea textarea ::-webkit-input-placeholder {
    opacity: 0.7;
}

.custom-input input:hover,
.custom-textarea textarea:hover,
.custom-input input:focus,
.custom-textarea textarea:focus {
    box-shadow: 0 0 0 1px var(--color-dark-green) inset, 0 0 5px var(--color-dark-green);
}

.custom-toggle {
    position: relative;
    display: flex;
    width: 100%;
    color: var(--color-dark-green);
}

.custom-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
 }

 .custom-toggle label {
     display: flex;
    position: relative;
    cursor: pointer;
 }

.custom-toggle__label {
    font-size: 12px;
    line-height: 130%;
}

.custom-toggle a {
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.custom-toggle a:hover {
    opacity: 0.6;
}

.custom-toggle__icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #fff;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #dcdcdc inset;
}

.custom-toggle__icon svg {
    width: 16px;
    height: 16px;
}

.custom-toggle input:checked + .custom-toggle__icon .checkmark {
    animation: draw 0.5s forwards;
}


@keyframes draw {
    to { stroke-dashoffset: 0; }
}

.text-center {
    text-align: center;
}

.text-content {
    font-size: 18px;
    line-height: 140%;
}

.text-content h2 {
    font-size: 24px;
}

.text-content h3 {
    font-size: 20px;
}

.font-weight-black {
  font-weight: 900;
}

.container {
    position: relative;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1140px;
}

.block-paw {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-paw img {
  margin-right: 20px;
  margin-left: 20px;
}

.block-paw::after {
  display: block;
  content: '';
  background: var(--color-dark-green);
  width: 200px;
  height: 2px;
}

.block-paw::before {
  display: block;
  content: '';
  background: var(--color-dark-green);
  width: 200px;
  height: 2px;
}

.block-heading {
  font-family: 'Lifehack', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 120%;
  margin: 0;
  text-align: center;
}

.block-title {
  text-align: center;
  margin: 0 auto 30px;
  max-width: 60%;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(270.05deg, #0F4942 8.2%, #1B8073 129.36%);
    box-shadow: 0px 7px 14px rgba(20, 100, 90, 0.97);
    border-radius: 5px;
    padding: 0 23px;
    height: 52px;
    outline: none;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    border: none;
    position: relative;
    transition: 0.5s;
    top: 0;
    min-width: 225px;
    width: 100%;
    line-height: normal;
    cursor: pointer;
}

.btn:hover {
  box-shadow: none;
  color: #fff;
  top: 3px;
}

.btn:focus {
  box-shadow: none;
}

.btn-yellow {
  background: linear-gradient(270.05deg, #FEF15E 8.2%, #FEF15E 129.36%);
  box-shadow: 0px 7px 14px rgba(188, 178, 60, 0.84);
  color: var(--color-dark-green);
}

.logo {
    flex-shrink: 0;
}

.btn-yellow:hover {
  color: var(--color-dark-green);
}

.wrapper {
  padding-top: 100px
}

.nav {
    flex: 1;
}
.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display:flex;
    justify-content: space-around;
    gap: 20px;
}

.nav__item a {
    font-weight: 700;
}

.nav__item--with-sub {
    display: flex;
    align-items: center;
}

.nav__sublist {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px #c4c4c4;
    width: 250px;
    z-index: 15;
    padding: 20px;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    list-style: none;
    text-transform: lowercase;
    font-size: 16px;
    text-align: center;
    display: none;
}

.nav__sublist li {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 0 10px;
}

.nav__sublist li::after {
  display: block;
  content: '';
  width: 50px;
  height: 2px;
  background: #0A2C27;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.nav__item--with-sub svg {
    position: relative;
    z-index: 5;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav__item--with-sub.active svg {
    transform: rotate(0.5turn);
}

.nav__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media(min-width: 992px) {
    .nav__item--with-sub:hover .nav__sublist, 
    .nav__item--with-sub:focus .nav__sublist, 
    .nav__item--with-sub:focus-within .nav__sublist {
        display: block;
    }
    
    .nav__item--with-sub:hover svg, 
    .nav__item--with-sub:focus svg, 
    .nav__item--with-sub:focus-within svg {
        transform: rotate(0.5turn);
    }  
}

@media(max-width: 992px) {
   .nav {
       display: none;
        flex: auto;
        position: absolute;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 4px 10px #c4c4c4;
        width: 250px;
        z-index: 15;
        padding: 20px;
        bottom: -15px;
        left: 0;
        transform: translateY(100%);
    }
    .nav__list {
        display: flex;
        flex-direction: column;
    } 
    .nav__sublist {
        position: relative;
        border-radius: 0;
        box-shadow: none;
        width: auto;
        padding: 0;
        transform: translateY(0);
        display: none;
        align-self: center;
    }

    .nav__item--with-sub  {
        position: relative;
        flex-direction: column;
        align-items: start;
    }
    
    .nav__arrow {
        position: absolute;
        top: 0;
        right: 0;
    }

}

@media(max-width: 540px) {
   .nav {
        left: -50px;
    }
}

.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(203, 217, 204, 1);
}

.header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-wrap a:hover {
    opacity: 0.7;
}
.header-menu-block {
  position: relative;
}

.header-menu {
    position: relative;
    flex: 1;
}

.header-burger {
    display: none;
}

.header-burger {
  cursor: pointer;
}

.header-burger:hover .header-menu {
  opacity: 0;
  max-height: auto;
}

.header-burger span {
  background: var(--color-dark-green);
  width: 21px;
  height: 5px;
  display: block;
  margin-bottom: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  top: 0;
}

.header-burger__active span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
}

.header-burger__active span:nth-child(2) {
  opacity: 0;
}

.header-burger__active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -6px;
}

.header-nav {
  display: flex;
  justify-content: space-around;
  font-weight: 700;
  flex: 1;
}

.header-icon {
    flex-shrink: 0;
}

.header-contacts {
  text-align: right;
}

.header-contacts p {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.header-phone {
  font-weight: 900;
  border-bottom: 1px solid #0A2C27;
  margin-bottom: 5px;
  padding-bottom: 5px;
  display: block;
    white-space: preserve nowrap;
}

@media(max-width: 992px) {
    .header-wrap {
        justify-content: space-between;
    }

    .header-burger {
        display: block;
    }
}

@media(max-width: 540px) {
    .header-icon {
        display: none;
    }
    
    .header-contacts p {
        font-size: 12px;
    }
}


.breadcrumbs {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    color: inherit;
}

.breadcrumbs li {
    display: inline-block;
    font-size: 15px;
    line-height: 120%;
    font-weight: 600;
}

.breadcrumbs a {
    text-decoration: underline;
    color: inherit;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumbs li::after {
    content: "/";
    padding: 0 5px;
}

.breadcrumbs li:last-child {
    pointer-events: none;
    font-weight: 400;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.hero {
    position: relative;
    color: #fff;
    margin-bottom: 70px;
}

.hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__wrap {
    min-height: 550px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 60px 0;
}

.hero .breadcrumbs {
    margin-bottom: auto;
}

.hero__title {
    position: relative;
    font-size: 40px;
    line-height: 130%;
    margin: 0 0 30px;
}

.hero__btns {
    display: flex;
    gap: 20px;
}

.hero__btns .btn {
   width: fit-content;
}

@media(max-width: 767px) {
    .hero__btns {
        flex-direction: column;
    }
    
    .hero__btns .btn {
       width: 100%;
    }
}

.contacts__wrap {
  display: flex;
  gap: 30px;
}

.contacts__item {
    flex: 1;
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #ddd;
}

.contacts__icon {
  flex-shrink: 0;
  background: #EBEEEE;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts__icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.contacts__title {
  font-weight: 600;
  font-size: 18px;
}

@media screen and (max-width: 992px) {
  .contacts__wrap {
    flex-direction: column;
  }
}

.map {
  position: relative;
  height: 700px;
}

.map:hover .map__info {
  animation: opacity-0 0.6s;
  opacity: 0;
  z-index: -1;
}

.map__info {
  position: absolute;
  background: rgba(10, 44, 39, 0.62);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.5s;
}

.map__header {
  font-weight: 800;
  font-size: 36px;
  line-height: normal;
  margin-bottom: 30px;
}

.map__pins {
    display: flex;
    gap: 20px;
}

.map ul {
  list-style: url("../img/pin.svg");
  font-weight: 700;
  font-size: 24px;
}

@keyframes opacity-0 {
  0% {
    opacity: 1;
    z-index: 1;
  }
  99% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

@media screen and (max-width: 992px) {
  .map iframe {
    max-height: 90vh;
  }
  .map__info {
    background: rgba(10, 44, 39, 0.8);
  }
  .map__header {
    font-size: 28px;
  }
  .map ul {
    font-size: 16px;
  }
}


.page-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: start;
    gap: 20px;
    padding-bottom: 50px;
}

.wrapper:has(.page-wrapper) {
    overflow-x: visible;
}

@media(max-width: 992px) {
    .page-wrapper {
        grid-template-columns: 1fr;
    }
}

.aside {
    display: grid;
    gap: 30px;
    width: 100%;
}

.aside .btn-yellow {
    margin-top: 120px;
}

.aside .btn-yellow img {
    position: absolute;
    bottom: 24px;
}

.aside__block {
    border-radius: 5px;
    border: 1px solid #e4e4e4;
    background: #eee;
}

.aside__title {
    padding: 20px;
    margin: 0;
    background: #eee;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #424242;
    border-bottom: 2px solid var(--color-dark-green);
}

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

.aside__menu-item {
    border-bottom: 1px solid #f5f5f5;
}

.aside__menu-item a {
    padding: 15px 20px;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #484747;
    border-left: 2px solid transparent;
    transition: all .3s ease;
    line-height: 1.4;
}

.aside__menu-item a span {
    display: block;
    transition: transform 0.3s ease;
}

.aside__menu-item a:hover {
    background: #f5f5f5;
    color: #19ada6;
    border-color: #19ada6;
}

.aside__menu-item a:hover span {
    transform: translateX(10px);
}

.aside-title {
    margin: 0 0 20px;
    font-size: 24px;
    text-align: center;
}

.aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 15px;
}

.aside-category > a {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 10px;
}

.aside-category > a::before {
    display: inline-block;
    content: '';
    background: var(--color-dark-green);
    box-shadow: 0px 4px 15px rgba(15, 73, 66, 0.26);
    border-radius: 2px;
    width: 8px;
    height: 8px;
    margin-right: 10px;
}

.aside-sublist {
    list-style: none;
    margin: 0;
    padding: 0 0 0 30px;
    display: grid;
    gap: 8px;
}

.aside a {
    cursor: pointer;
}

.aside a:hover {
   opacity: 0.7; 
}

.features {
    display: grid;
    gap: 15px;
    padding: 20px;
}

.features__phone {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    align-items: center;
    font-size: 26px;
    line-height: 110%;
    text-transform: uppercase;
}

.features__phone a {
    text-decoration: underline;
    text-underline-offset:4px;
}

.features__list {
    display: flex;
    flex-direction: column;
}

.features__item {
    display: grid;
    grid-template-columns: 10px 1fr 85px;
    gap: 10px;
    padding: 15px 0;
    font-size: 15px;
    line-height: 18px;
}

.features__item:not(:last-child) {
    border-bottom: 1px solid #676767;
}

.features__item::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--color-dark-green);
    border-radius: 5px;
    align-self: center;
}

.title-block {
    font-size: 28px;
    line-height: 130%;
    font-weight: 400;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.prices {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 40px;
}

.prices dt {
    padding: 10px;
}

.prices dd {
    padding: 10px;
    text-align: right;
    margin: 0;
}

.prices dt:first-of-type,
.prices dd:first-of-type {
    background-color: var(--color-dark-green);
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
}

.prices dd:nth-of-type(even),
.prices dt:nth-of-type(even) {
    background-color: #e8e8e8; 
}

.content h3 {
    font-size: 28px;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
}

.content img {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    border-radius: 10px;
    max-width: 100%;
}

.form {
    position: relative;
}

.form form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    z-index: 2;
}

.form__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.form__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.form__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form .custom-toggle {
    order: 1;
    grid-column: span 3;
}

.form__info {
    position: relative;
    z-index: 2;
}

.form__title {
    position: relative;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    z-index: 2;
}

.form__text {
    font-size: 14px;
    line-height: 130%;
    margin: 0 0 20px;
}

.form__phone {
    display: flex;
    align-items: center;
}

.form__phone:hover {
    opacity: 0.8;
}

@media(max-width: 1199px) {
    .form  form {
        grid-template-columns: 1fr;
    }
    
    .form .custom-toggle {
        grid-column: auto;
        order: 0;
    }
}

.service-form {
    position: relative;
    min-height: 300px;
    margin: 60px 0;
    padding: 20px 120px;
    border-radius: 5px;
    border: 1px solid #e4e4e4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media(max-width: 767px) {
    .service-form {
        padding: 20px 20px 20px 120px;
    }
}

@media(max-width: 459px) {
    .service-form {
        margin-top: 120px;
        padding: 20px;
    }
    
    .service-form .form__img {
        top: 20%;
    }
}

.callback-form {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 10px 140px;
    margin: 40px 0;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    min-height: 250px;
}

.callback-form form {
    grid-template-columns: 1fr;
}

.callback-form .form__title {
    text-align: left;
}

.callback-form .custom-toggle {
    grid-column: auto;
}

@media(max-width: 767px) {
    .callback-form {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 459px) {
    .callback-form {
        padding: 20px;
    }
}

.aside__block  form {
    grid-template-columns: 1fr;
}

.aside__block .custom-toggle {
    grid-column: auto;
    order: 0;
}

.aside__block.form {
    border: 1px solid #e4e4e4;
    padding: 20px;
}

.faq {
    border: 1px solid #e4e4e4;
    padding: 20px;
}
.faq__title {
    width: fit-content;
    margin: auto;
    padding-bottom: 8px;
    position: relative;
    font-size: 26px;
    margin-bottom: 40px;
}

.faq__title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-dark-green);
}


[data-accordion=element].is-active>[data-accordion=content] {
    max-height: 100%;
}

[data-accordion=parent].no-transition [data-accordion=content] {
    transition: none;
}

[data-accordion=content] {
    max-height: 0;
    transition: max-height 0.3s;
    overflow: hidden;
}

.accordion {
    display: grid;
    gap: 26px;
}

.accordion__element {
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-dark-green);
    border-radius: 25px;
    padding: 16px 28px 7px 28px;
}

.accordion__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 0 0 12px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    transition: color 0.3s ease;
    min-height: 80px;
    transition: color 0.3s ease;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    border-bottom: 1px solid var(--color-dark-green);
    color: #ffffff;
    user-select: none;

}

.accordion__button-text {
    text-align: start;
}

.accordion__icon {
    width: 42px;
    height: 42px;
    transform: rotate(0.5turn);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion__icon svg {
    width: 100%;
    height: 100%;
}

.accordion__element.is-active {
    background: #F6F7F8;
}

.accordion__element.is-active>.accordion__button {
    color: var(--color-dark-green);
}

.accordion__element.is-active>.accordion__button .accordion__icon {
    transform: rotate(0);
}

.accordion__wrapper {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    padding-top: 12px;
    padding-bottom: 17px;
}

.accordion__wrapper p {
    margin: 0;
}

@media (max-width: 959px) {
    .accordion__button {
        font-size: 16px;
    }

    .accordion__wrapper {
        font-size: 14px;
    }
}


.accent-block {
    margin-bottom: 30px;
    padding: 20px;
    border: 2px solid var(--color-dark-green);
    border-radius: 10px;
}

.accent-block h3 {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 140%;
    text-transform: uppercase;
    font-weight: 400;
}

.accent-block ul {
    list-style: none;
    font-size: 18px;
    padding: 0;
}

.accent-block li {
    position: relative;
    padding: 10px 0 10px 30px;
}

.accent-block li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 25px;
    height: 25px;
    background: url("../img/icon-paw.png") no-repeat center/contain;
}


































.promo {
  background: url(/assets/theme/img/bg.jpg) center no-repeat;
  background-size: cover;
  position: relative;
}

.promo::before {
  display: block;
  content: '';
  background: var(--color-bg);
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.promo::after {
  position: absolute;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.52%, rgba(211, 221, 212, 0)), to(#D3DDD4));
  background: linear-gradient(180deg, rgba(211, 221, 212, 0) 0.52%, #D3DDD4 100%);
  width: 100%;
  display: block;
  content: '';
  left: 0;
  height: 30%;
}

.promo-title {
  position: relative;
  font-size: 55px;
  font-family: Lifehack;
  font-size: 55px;
  margin-bottom: 30px;
}

.promo-title::after {
  content: attr(data-text);
  opacity: 0.2;
  width: 100%;
  bottom: -17px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.promo-wrap {
  text-align: center;
  padding: 80px 0 300px;
  position: relative;
  z-index: 5;
}

.promo-img {
    display: flex;
    justify-content: center;
}

.promo-subtitle {
  font-weight: 700;
}

.promo-text {
  font-weight: 700;
  max-width: 270px;
  margin: 0 auto 70px;
}

.promo-text b {
  font-weight: 900;
}

.promo-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 20px;
}

.promo-buttons .btn {
  width: 225px;
}

.symptoms {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.symptoms-wrap {
  background: var(--color-dark-green);
  box-shadow: inset 10px 3px 7px rgba(20, 100, 90, 0.62);
  border-radius: 50px;
  text-align: center;
  position: relative;
  padding: 40px 0 0;
  color: #fff;
  max-width: 920px;
  margin: 0 auto;
}

.symptoms-img {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}

.symptoms-title {
  margin-bottom: 40px;
}

.symptoms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.symptoms-icon {
  margin-right: 25px;
}

.symptoms-block {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
}

.symptoms-block p {
  font-size: 14px;
  width: 70%;
  position: relative;
}

.symptoms-block p::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -10px;
  background: #FFFFFF;
  width: 16px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}

.price {
  padding: 60px 0;
}

.price-block {
  margin: 30px 0;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.price-block .btn {
  width: 225px;
}
.price-block__top {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(196, 196, 196, 0.8);
  text-align: center;
  padding: 20px 40px;
  width: 210px;
  flex-shrink: 0;
}

.price-block__top p {
  line-height: normal;
}

.price-block__line {
  background: var(--color-dark-green);
  height: 1px;
  width: 16px;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
}

.price-block__common {
  flex: 1;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px #C4C4C4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  padding: 10px;
}

.price-block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 140%;
}

.price-block__title::before {
  display: block;
  content: '';
  background: var(--color-dark-green);
  box-shadow: 0px 4px 15px rgba(15, 73, 66, 0.26);
  border-radius: 2px;
  width: 11px;
  height: 11px;
  margin-right: 15px;
}

.price-block__title-1 {
  font-size: 36px;
  text-align: center;
  justify-content: center;
}

.price-block__title-1::before {
  width: 15px;
  height: 15px;
}

.price-block__yellow {
  color: #FEF15E;
  font-weight: 500;
}

.price-block__bottom {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px #C4C4C4;
  border-radius: 30px;
  padding: 20px 60px 60px;
  margin: 30px auto 0;
  max-width: 920px;
}

.price-list {
  font-size: 30px;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.schem {
  padding: 60px 0;
}

.schem .btn {
  margin: 20px auto;
  width: fit-content;
}

.schem-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.schem-block {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.schem-block:nth-child(even) {
  flex-direction: row-reverse;
}

.schem-info {
  display: flex;
  align-items: center;
  max-width: 470px;
}

.schem-block:nth-child(even) .schem-info {
  flex-direction: row-reverse;
  text-align: right;
}


.schem-block-2 {
  text-align: right;
}

.schem-number {
  font-family: Lifehack;
  font-weight: 500;
  font-size: 144px;
  color: #14645A;
  margin-right: 15px;
  margin-left: 15px;
}

.schem-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.schem-nurse {
  position: relative;
}

.schem-img {
  position: relative;
}

.schem-img::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-dark-green);
  border-radius: 50%;
}

.schem-img-1::before {
  top: -25px;
  right: -25px;
}

.schem-img-2::before {
  top: 0;
  left: -50px;
}

.schem-img-3::before {
  bottom: -30px;
  left: -30px;
}

.schem-line {
  position: absolute;
}

.schem-line-1 {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-125%, 100%);
          transform: translate(-125%, 100%);
}

.schem-line-2 {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(100%, 100%);
          transform: translate(100%, 100%);
}

.we {
  padding: 60px 0;
  text-align: center;
}

.we .block-title {
  margin-bottom: 60px;
}

.we-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.we-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  margin-bottom: 60px;
  width: calc(100% / 4);
}

.we-block img {
  margin-bottom: 30px;
}

.we-block p {
  width: 80%;
  margin: 0 auto;
  font-weight: 500;
}

.we .btn {
  width: fit-content;
  margin: 0 auto;
}

@media(max-width: 992px) {
  .we-block {
    width: calc(100% / 2);
  }
}

.team {
  padding: 60px 0;
}

.team-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 150px 0;
  margin-bottom: 200px;
}

.team-wrap::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #0A2C27;
}

.team-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.team-item:nth-child(even) {
  transform: translateY(50%);
  justify-content: flex-start;
}

.team-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color-dark-green);
  border-radius: 50%;
}

.team-item:nth-child(even)::before {
  transform: translateX(-50%);
  left: 0;
}

.team-item:nth-child(odd)::before {
  transform: translateX(50%);
  right: 0;
}

.team-item:nth-child(6n+1)::before{
  bottom: -69px;
}

.team-item:nth-child(6n+2)::before {
  top: 48px;
}

.team-item:nth-child(6n+3)::before {
  bottom: 20px;
}

.team-item:nth-child(6n+4)::before {
  top: 0;
}

.team-item:nth-child(6n+5)::before {
  bottom: 40px;
}

.team-item:nth-child(6n+6)::before {
  top: -48px;
}

.team-item::after {
  content: '';
  position: absolute;
  background-size: cover;
}

.team-item:nth-child(6n+1)::after{
  right: 24px;
  bottom: -62px;
  width: 117px;
  height: 48px;
  background-image: url(/assets/theme/img/line-2.png);
}

.team-item:nth-child(6n+2)::after{
  left: 24px;
  top: 54px;
  width: 80px;
  height: 5px;
  background-image: url(/assets/theme/img/line-3.png);
}

.team-item:nth-child(6n+3)::after{
  right: 24px;
  bottom: 28px;
  width: 20px;
  height: 5px;
  background-image: url(/assets/theme/img/line-4.png);
}

.team-item:nth-child(6n+4)::after{
  left: 24px;
  top: 7px;
  width: 104px;
  height: 5px;
  background-image: url(/assets/theme/img/line-3.png);
}

.team-item:nth-child(6n+5)::after{
  right: 24px;
  bottom: 48px;
  width: 50px;
  height: 5px;
  background-image: url(/assets/theme/img/line-6.png);
}

.team-item:nth-child(6n+6)::after{
  left: 24px;
  top: -41px;
  width: 80px;
  height: 29px;
  background-image: url(/assets/theme/img/line-5.png);
}


.team-img {
  position: relative;
  width: 250px;
  height: 324px
}

.team-item:nth-child(6n+1) .team-img{
  right: 90px;
}

.team-item:nth-child(6n+2) .team-img {
  left: 130px;
}

.team-item:nth-child(6n+3) .team-img {
  right: 45px;
}

.team-item:nth-child(6n+4) .team-img {
  left: 150px;
}

.team-item:nth-child(6n+5) .team-img {
  right: 70px;
}

.team-item:nth-child(6n+6) .team-img {
  left: 100px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-img::before {
  display: block;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: var(--color-dark-green);
  border-radius: 10px;
}

.team-img img {
  position: relative;
  box-shadow: 0px 4px 4px rgba(229, 229, 229, 0.4);
  border-radius: 10px;
}

.team-item:nth-child(6n+1) .team-img::before{
  bottom: -10px;
  right: -10px;
}

.team-item:nth-child(6n+2) .team-img::before,
.team-item:nth-child(6n+3) .team-img::before {
  top: -10px;
  left: -10px;
}

.team-item:nth-child(6n+4) .team-img::before,
.team-item:nth-child(6n+5) .team-img::before {
  top: -10px;
  right: -10px;
}

.team-item:nth-child(6n+6) .team-img::before {
  bottom: -10px;
  left: -10px;
}

.team-block {
  position: absolute;
  background: #FEF15E;
  z-index: 2;
  width: 170px;
  text-align: center;
  color: #000;
  padding: 6px 14px 0;
  height: 75px;
}

.team-item:nth-child(6n+1) .team-block{
  left: -35%;
  bottom: 10%;
}

.team-item:nth-child(6n+2) .team-block {
  right: -45%;
  top: 25%;
}

.team-item:nth-child(6n+3) .team-block {
  top: 25%;
  left: -35%;
}

.team-item:nth-child(6n+4) .team-block {
  right: -45%;
  top: 5%;
}

.team-item:nth-child(6n+5) .team-block {
  top: 15%;
  left: -45%;
}


.team-item:nth-child(6n+6) .team-block {
  right: -35%;
  bottom: 5%;
}

.team-name {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.team-text {
  font-size: 10px;
  line-height: normal;
}

@media(max-width: 992px) {
  .team-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .team-wrap::after,
  .team-item::after,
  .team-item::before {
    display: none;
  }

  .team-item:nth-child(6n+1) .team-img,
  .team-item:nth-child(6n+2) .team-img,
  .team-item:nth-child(6n+3) .team-img,
  .team-item:nth-child(6n+4) .team-img,
  .team-item:nth-child(6n+5) .team-img,
  .team-item:nth-child(6n+6) .team-img {
    left: 0;
    right: 0;
  }

  .team-item:nth-child(even) {
    transform: translateY(0);
  }
}

.comfort-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.comfort-block {
  grid-column: auto / span 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-bottom: 50px;
}

.comfort-block:nth-child(5n+1),
.comfort-block:nth-child(5n+2) {
  grid-column: auto / span 3;
}

.comfort-title {
  font-weight: 900;
}

.comfort-line {
  width: 56px;
  height: 1px;
  background: var(--color-dark-green);
  margin: 8px auto;
}

.comfort .btn{
  position: relative;
  width: fit-content;
}

.comfort button img {
  position: absolute;
  bottom: 24px;
}

.review {
  padding: 60px 0;
}

.review-slider {
  position: relative;
  padding: 0 60px;
}

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

.review-slide img{
  width: 100%;
  border: 3px solid var(--color-dark-green);
  border-radius: 10px;
  padding: 6px 0;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.review-arrow.swiper-btn-next {
  right: 0;
}

.review-arrow.swiper-btn-prev {
  left: 0;
}

.swiper-btn-next,
.swiper-btn-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.swiper-btn-next img {
  transform: scaleX(-1);
}

.achievements {
  padding: 60px 0;
}

.achievements .btn {
  margin: 0 auto 60px;
  width:fit-content;
}

.achievements-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 10px;
  max-width: 920px;
  margin: 0 auto;
}

.achievements-img {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: auto / span 5;
  position: relative;
  cursor: pointer;
  transition: 0.8s linear;
}

.achievements-img.small {
  grid-row: auto / span 3;
}

.achievements-img:first-child {
  grid-column: 1 / -1;
}

.achievements-img > img {
  width: 100%;
  aspect-ratio: 290 / 410;
  border-radius: 10px;
  border: 5px solid var(--color-dark-green);
  border-radius: 10px;
  transition: 0.8s;
  max-width: 290px;
  max-height: 600px;
}

.achievements-img.small > img {
  aspect-ratio: 290 / 205;
}

.achievements-img__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  top: 0;
  left: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}

.achievements-img__popup {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
}

.achievements-img__popup img {
  max-width: 0;
  max-height: 0;
}

.achievements-img__popup-active .achievements-img__bg {
  opacity: 0.4;
}

.achievements-img__popup-active .achievements-img__popup {
  opacity: 1;
  z-index: 10;
}

.achievements-img__popup-active .achievements-img__popup img {
  position: relative;
  z-index: 5;
  max-width: 80%;
  max-height: 80%;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 100;
  top: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  cursor: pointer;
  opacity: 0.5;
}

.popup-main {
  position: relative;
  z-index: 5;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup-left {
  background: #0A2C27;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 30px;
  position: relative;
  padding-left: 200px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.popup-left__bg {
  position: absolute;
  max-width: 40%;
  left: -9.3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.popup-left__text {
  margin-left: -50px;
}

.popup-left__header {
  font-weight: 900;
  font-size: 64px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  line-height: 0.8;
  text-indent: -15%;
  margin-left: 15%;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.popup-left ul {
  padding-left: 20%;
  list-style: none;
  font-size: 24px;
  color: #fff;
}

.popup-left ul li {
  margin-bottom: 30px;
  position: relative;
  max-width: 400px;
}

.popup-left ul li::before {
  position: absolute;
  left: -30px;
  top: 14px;
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-right: 20px;
}

.popup-close {
  top: 0;
  right: 0;
  font-size: 56px;
  cursor: pointer;
  position: absolute;
  font-weight: 900;
  line-height: 0.7;
}

.popup-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.popup-right form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
}

.popup-right form label {
  font-size: 24px;
}

.popup-right form input {
  background: #DBE4DB;
  border: 2px solid #0A2C27;
  padding: 20px;
  outline: none;
  margin-bottom: 30px;
}

.popup-right form .input-error {
    margin: -25px 0 20px;
    font-size: 14px;
}

.popup-right form p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.popup-right form button {
  width: 60%;
  margin: 0 auto;
}

.popup-line {
  background: #0A2C27;
  border-radius: 3px;
  width: 100px;
  height: 2px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 720px) {
  .block-paw {
    width: 90%;
    margin: 0 auto 20px;
  }
  .header-contacts a {
    display: inline-block;
  }
  .promo-title {
    font-size: 40px;
    line-height: normal;
  }
  .promo-title::after {
    line-height: normal;
    bottom: -10px;
  }
  .promo-buttons {
    flex-direction: column;
    align-items: center;
  }
  .promo-wrap {
    padding: 60px 0 150px;
  }
  .symptoms-list {
    grid-template-columns: 1fr;
  }
  .symptoms-img {
    top: -60px;
    width: 280px;
  }
  .price {
    padding: 40px 0;
  }
  .price-block {
    margin: 10px 0;
    flex-wrap: wrap;
  }
  .price-block__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .price-block__wrap button, .price-block__wrap a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: block;
    margin: 8px auto;
  }
  .price-block__top {
    order: 1;
    padding: 20px;
    margin-bottom: 10px;
  }
  .price-block__common {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 10px 0;
  }
  .price-block__title {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
  }
  .price-block__title-1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .price-block__rub {
    width: 50%;
  }
  .price-block__bottom {
    padding: 20px;
  }
  .price-list {
    font-size: 18px;
    margin-bottom: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .price-list__text {
    width: 60%;
  }
  .schem {
    padding: 40px 0;
  }
  .schem .col-lg-3, .schem .col-lg-5 {
    margin-bottom: 60px;
  }
  .schem-img::before {
    display: none;
  }
  .schem-nurse {
    display: none;
  }
  .schem-line-1 {
    -webkit-transform: translate(25%, 50%) scaleX(-1);
            transform: translate(25%, 50%) scaleX(-1);
  }
  .schem-line-2 {
    -webkit-transform: translate(25%, 50%) scaleX(-1);
            transform: translate(25%, 50%) scaleX(-1);
  }
  .we {
    padding: 40px 0;
  }
  .we-block img {
    margin-bottom: 20px;
  }
  .we-block p {
    width: 100%;
  }
  .team .col-lg-4 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .team-img {
    margin-bottom: 30px;
    margin-top: 0;
  }
  .team-img-1 {
    margin-left: auto;
  }
  .team-img-2 {
    margin-right: auto;
    margin-left: 0;
  }
  .team-img-2 .team-block {
    left: auto;
    right: -40%;
  }
  .team-img-3 {
    margin-left: auto;
  }
  .team-img-3 .team-block {
    left: -40%;
  }
  .team-img-4 {
    margin-right: auto;
  }
  .team-img-4 .team-block {
    right: -40%;
  }
  .team-img-5 {
    margin-left: auto;
  }
  .team-img-5 .team-block {
    left: -40%;
  }
  .team-img-6 {
    margin-right: auto;
  }

  .comfort {
    padding: 40px 0;
  }

  .comfort-wrap {
    grid-template-columns: 1fr;
  }

  .comfort-btn {
    margin: 80px auto 30px;
    display: block;
  }

  .review-slider {
    width: 90%;
  }
  .review-arrows {
    left: 0;
    width: 95%;
    left: 2.5%;
  }
  .achievements-wrap {
    grid-template-columns: 1fr;
  }
  .achievements-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .achievements-img__popup-active .achievements-img__popup img {
    max-width: 95%;
    max-height: 95%;
  }
  .popup-main {
    width: 95%;
  }
  .popup-left {
    display: none;
  }
}

.thanks {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.thanks-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  cursor: pointer;
  opacity: 0.5;
}

.thanks-main {
  background: #fff;
  z-index: 5;
  position: relative;
  padding: 45px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
}

.thanks-main img {
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, -74%);
          transform: translate(-50%, -74%);
  width: 80%;
  left: 50%;
}

.thanks-main h2 {
  margin-bottom: 10px;
}

.thanks-close {
  top: 0;
  right: 0;
  font-size: 56px;
  cursor: pointer;
  position: absolute;
  font-weight: 900;
  line-height: 0.7;
}

.contacts {
  padding: 40px 0;
}

.contacts-main {
  background: url(/assets/theme/img/contacts-bg.png) center no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 80px 0 100px;
}

.contacts-main::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  left: 0;
  top: 0;
  background: rgba(10, 44, 39, 0.69);
}

.contacts-main__wrap {
  position: relative;
  z-index: 5;
  max-width: 540px;
  margin: 0 auto;
}

.contacts-main__title {
  font-family: Proxima Nova;
  font-weight: 600;
  font-size: 64px;
  line-height: 110%;
}

.contacts-main__subtitle {
  margin-bottom: 60px;
}

.contacts-main__button {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contacts__wrap {
  display: flex;
  gap: 30px;
}

.contacts__list {
  flex: 1;
}

.contacts-block {
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 18px 30px;
  margin-bottom: 15px;
}

.contacts-block__icon {
  background: #EBEEEE;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.contacts-block__title {
  font-weight: 600;
}

.contacts-block p {
  font-size: 14px;
}

.contacts-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px 68px 40px;
  height: 100%;
}

.contacts-form__header {
  font-weight: 600;
  font-size: 36px;
  line-height: 140%;
}

.contacts-form__title {
  font-size: 14px;
  margin-bottom: 30px;
}

.contacts-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts-form form input, .contacts-form form textarea, .contacts-form form select {
  background: #EBEEEE;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  padding: 15px;
}

.contacts-form form input::-webkit-input-placeholder, .contacts-form form textarea::-webkit-input-placeholder, .contacts-form form select::-webkit-input-placeholder {
  font-size: 14px;
  color: rgba(15, 73, 66, 0.5);
}

.contacts-form form input:-ms-input-placeholder, .contacts-form form textarea:-ms-input-placeholder, .contacts-form form select:-ms-input-placeholder {
  font-size: 14px;
  color: rgba(15, 73, 66, 0.5);
}

.contacts-form form input::-ms-input-placeholder, .contacts-form form textarea::-ms-input-placeholder, .contacts-form form select::-ms-input-placeholder {
  font-size: 14px;
  color: rgba(15, 73, 66, 0.5);
}

.contacts-form form input::placeholder, .contacts-form form textarea::placeholder, .contacts-form form select::placeholder {
  font-size: 14px;
  color: rgba(15, 73, 66, 0.5);
}

.contacts-form form input:focus, .contacts-form form textarea:focus, .contacts-form form select:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contacts-form form textarea {
  width: 100%;
  margin-bottom: 12px;
}

.contacts-form__block {
  width: 48%;
  margin-bottom: 12px;
}

.contacts-form__input {
  width: 100%;
}

.contacts-form .input-error {
    font-size: 14px;
}

.contacts-map {
  position: relative;
  height: 700px;
}

.contacts-map:hover .contacts-map__info {
  -webkit-animation: opacity-0 0.6s;
          animation: opacity-0 0.6s;
  opacity: 0;
  z-index: -1;
}

.contacts-map__info {
  position: absolute;
  background: rgba(10, 44, 39, 0.62);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contacts-map__header {
  font-weight: 800;
  font-size: 36px;
  line-height: normal;
  margin-bottom: 30px;
}

.contacts-map__pins {
    display: flex;
    gap: 20px;
}

.contacts-map ul {
    list-style: url("../img/pin.svg");
  font-weight: 700;
  font-size: 24px;
}

@-webkit-keyframes opacity-0 {
  0% {
    opacity: 1;
    z-index: 1;
  }
  99% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes opacity-0 {
  0% {
    opacity: 1;
    z-index: 1;
  }
  99% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

@media screen and (max-width: 992px) {
  .contacts-main {
    background-size: cover;
  }
  .contacts-main__button {
    flex-direction: column;
    justify-content: center;
  }
  .contacts__wrap {
    flex-direction: column;
  }
  .contacts-form {
    padding: 18px 30px;
  }
  .contacts-form__block {
    width: 100%;
  }
  .contacts-map iframe {
    max-height: 90vh;
  }
  .contacts-map__info {
    background: rgba(10, 44, 39, 0.8);
  }
  .contacts-map__header {
    font-size: 28px;
  }
  .contacts-map ul {
    font-size: 16px;
  }
}
.footer {
    background: var(--color-dark-green);
    color: white;
    padding: 20px;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
}
.footer a:hover {
    opacity: 0.7;
}
.footer__title{
    color: white;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer__zayvka{
    cursor: pointer;
}
.footer__menu ul{
    margin: 0;
    padding: 0;
    column-count: 2;
}
.footer__menu ul li{
    display: block;
    text-transform: uppercase;
}
.footer__menu ul li a{
    font-size: 15px;
    color: white;
}
.footer__menu2 {
    padding-top: 33px;
    margin: 0 auto;
}
.footer__menu2 ul{
    margin: 0;
    padding: 0;
}
.footer__menu2 ul li{
    display: block;
}
.footer__menu2 ul li a{
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}
.footer__contact{
    padding-top: 35px;
    color: white;
    margin-left: auto;
}
.footer__contact a{
    color: white;
    display: block;
}
.footer__zayvka
{
    color: #FEF15E;
}
.footer__map{
    margin-top: 20px;
    text-transform: uppercase;
}
@media screen and (max-width: 768px){
  .footer__wrap {
      flex-direction: column;
  }
  .footer__menu ul{
      column-count: 1;
  }
  .footer__contact{
      margin-left: 0;
  }
  .footer__menu2 {
      padding-top: 35px;
      margin: 0 ;
  }
}

body {
  position: relative;
}

.title {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 25px;
  line-height: normal;
  text-align: center;
}

.uslugi-img {
  display: flex;
  justify-content: center;
}

.uslugi-text {
  max-width: 540px;
  margin: 0 auto;
}

.uslugi-btn {
    width: fit-content;
    margin: 0 auto 3rem;
}

.uslugi-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 3rem;
  gap: 40px;
}

.uslugi-buttons .btn{
  width: fit-content;
}

.uslugi-border {
  border: 3px solid #0A2C27;
  border-radius: 50px;
  padding: 30px;
  margin: 0 auto 30px;
  width: 80%;
}

.uslugi-border__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.uslugi-border__text {
    margin-bottom: 30px;
}

.uslugi-border .text-content {
  font-weight: 600;
  line-height: 140%;
}

.uslugi-border .text-content  p {
  margin-bottom: 20px;
}

.uslugi-border--bottom .text-content {
  font-size: 24px;
  font-weight: 600;
    line-height: 140%;
}

.uslugi-title {
  font-weight: 600;
  margin: 30px auto 30px;
  font-size: 24px;
  line-height: 140%;
  max-width: 60%;
}

.uslugi-line {
  width: 108px;
  height: 3px;
  background: var(--color-dark-green);
}

.uslugi-desc {
  margin: 30px auto 30px;
  max-width: 60%;
}

.uslugi-desc h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  margin: 0 auto 30px;
}

.uslugi-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  justify-content: center;
  margin: 2rem auto;
  max-width: 920px;
}

.uslugi-price {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px #C4C4C4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  max-width: 445px;
  width: calc((100% - 20px) / 2)
}

.uslugi-price-desc {
    max-width: 80%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
}

.uslugi-price-desc hr {
    width: 108px;
    height: 3px;
    background: var(--color-dark-green);
    margin: 18px auto;
    border: 0;
}

.uslugi-block {
  margin-bottom: 50px;
}

.uslugi-list {
  display: grid;
  gap: 50px;
  margin-bottom: 100px;
}

.uslugi-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.uslugi-item:nth-child(even) {
  align-items: flex-end;
  text-align: right;
}

.uslugi-item__title {
  font-size: 24px;
  font-weight: 600;
}

.uslugi-item__text {
  font-size: 18px;
  font-weight: 600;
}
.uslugi-item .btn {
  max-width: 225px;
}

.uslugi-decor {
  position: absolute;
}

.decors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.decor {
    position: absolute;
}

.decor.reverse {
    position: absolute;
    transform: scaleX(-1);
}

.decor:nth-child(even) {
    right: 0;
}

.decor:nth-child(odd) {
    left: 0;
}

@media screen and (max-width: 1399px) {
  .decor {
    display: none;
  }
}


@media screen and (max-width: 720px) {
  .uslugi-border {
    padding: 25px 15px;
    width: 100%;
  }
  
  .uslugi-title {
     max-width: 100%;
  }
  
  .uslugi-price-desc {
    max-width: 100%;

    }
  .uslugi-price {
    width: 100%;
    align-items: center;
  }
  .uslugi-price p:nth-child(1) {
    max-width: 70%;
  }
}

.prices-subtitle {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 25px;
  line-height: normal;
}

.prices-title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 25px;
  line-height: normal;
}

.prices-list {
  margin-bottom: 30px;
}

.prices-item {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 20px;
}

.prices-amount {
  font-weight: 700;
  text-align: right;
}

@media(max-width: 540px) {
  .prices-item {
  grid-template-columns: 1fr;
  }
}


.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 2rem 0;
}

.services-item{
    display: flex;
    flex-direction: column;
    width: calc((100% - 3 * 20px) / 4);
    background: linear-gradient(270.05deg, #0F4942 8.2%, #1B8073 129.36%);
    box-shadow: 0px 7px 14px rgba(20, 100, 90, 0.97);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    position: relative;
    transition: box-shadow 0.5s ease, top 0.5s ease;
}

.services-item:has(a:hover) {
    box-shadow: none;
    top: 3px;
}

.services-name {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.services-icon {
  color: rgba(255,255,255,0.7);
  width: 120px;
  height: 120px;
  align-self: flex-end;
  justify-self: flex-end;
}

.services-icon svg {
  width: 100%;
  height: 100%;
}

@media(max-width: 1240px) {
  .services-item{
    width: calc((100% - 2 * 20px) / 3);
  }
}

@media(max-width: 992px) {
  .services-item{
    width: calc((100% - 20px) / 2);
  }
}

@media(max-width: 540px) {
  .services-item{
    width: 100%;
  }
}

.blog-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 2rem 0;
}

.card {
    width: calc((100% - 2 * 20px) / 3);
    background: rgba(27,128,115,0.3);
    box-shadow: 0px 4px 10px #C4C4C4;
    border-radius: 10px;
    padding: 10px;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0px 4px 20px rgba(20, 100, 90, 0.5);
}

.card-icon {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-bottom: 20px;

}

.card-icon svg {
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.card-title {
    font-size: 22px;
    line-height: 130%;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.card:hover .card-title {
   /* color: #fff; */
   opacity: 0.7;
}

@media(max-width: 992px) {
  .card {
    width: calc((100% - 20px) / 2);
  }
}

@media(max-width: 540px) {
  .card {
    width: 100%;
  }
}

