/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #14141C;
  --color-ligth-1: #FAFAF2;
  --color-light-2: #F4F4F4;
  --color-accent: #E51776;
  --color-hover: #d10363;
  --color-grey: #737380;
  --margin-top: rem(150);
  --font-title: "Montserrat", sans-serif;
  --font-text: "Inter", sans-serif;
}

.light-theme {
  --color-dark: #FAFAF2;
  --color-ligth-1: #14141C;
}

.conteiner-big {
  width: 100%;
  max-width: 115rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.conteiner {
  width: 100%;
  max-width: 83.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-subtitle {
  font-family: var(--font-title);
  font-size: clamp(1.125rem, 1.0384615385rem + 0.3846153846vw, 1.5rem);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: lowercase;
  opacity: 0;
  transform: translate(0px, 120%);
  transition: all 0.8s ease 0s;
}
.section-subtitle.anime-active{
  opacity: 1;
  transform: translate(0px, 0px);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 1.0384615385rem + 2.0512820513vw, 3.5rem);
  font-weight: 600;
  color: var(--color-ligth-1);
  text-transform: lowercase;
  width: 50%;
  opacity: 0;
  transform: translate(0px, 120%);
  transition: all 0.8s ease 0s;
}
.section-title.anime-active{
  opacity: 1;
  transform: translate(0px, 0px);
}
@media (width <= 90.06125rem) {
  .section-title {
    width: 80%;
  }
}
@media (width <= 47.99875rem) {
  .section-title {
    width: 100%;
  }
}

.title-description {
  margin-top: 1.875rem;
  font-size: clamp(1rem, 0.9423076923rem + 0.2564102564vw, 1.25rem);
  font-weight: 400;
  color: var(--color-ligth-1);
  line-height: 1.5;
  width: 50%;
  opacity: 0;
  transform: translate(0px, 120%);
  transition: all .8s ease 0s;
}
.title-description.anime-active{
  opacity: 1;
  transform: translate(0px, 0px);
}
@media (width <= 90.06125rem) {
  .title-description {
    width: 80%;
  }
}
@media (width <= 47.99875rem) {
  .title-description {
    width: 100%;
  }
}

.home-page {
  position: relative;
}
.home-page::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 155rem;
  top: 0;
  left: 0;
  background-image: url("./../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(-50%, -50%);
}

.service-page {
  position: relative;
  padding-bottom: 9.375rem;
  overflow: hidden;
}
.service-page::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 155rem;
  top: 0;
  left: 0;
  background-image: url("./../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(50%, -50%);
}
.service-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 155rem;
  top: 100%;
  left: 0;
  background-image: url("./../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(50%, -50%);
}

.contacts-page {
  position: relative;
}
.contacts-page::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 155rem;
  top: 0;
  left: 0;
  background-image: url("./../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(50%, -50%);
}

html {
  scroll-timeline: --animate-service block;
}

body {
  background-color: var(--color-dark);
  font-family: var(--font-text);
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-title);
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
}

input[type=checkbox] {
  appearance: none;
}

main {
  padding-bottom: 9.375rem;
}

.animate-service {
  animation-timeline: --animate-service;
}
.animate-service:nth-child(1) {
  transform: translateX(-150%);
}
.animate-service:nth-child(2) {
  transform: translateX(150%);
}
.animate-service:nth-child(3) {
  transform: translateX(-150%);
}
.animate-service:nth-child(4) {
  transform: translateX(150%);
}
.animate-service:nth-child(5) {
  transform: translateX(-150%);
}
.animate-service__active:nth-child(1) {
  transform: translateX(0);
  transition: transform 0.8s;
}
.animate-service__active:nth-child(2) {
  transform: translateX(0);
  transition: transform 0.8s;
}
.animate-service__active:nth-child(3) {
  transform: translateX(0);
  transition: transform 0.8s;
}
.animate-service__active:nth-child(4) {
  transform: translateX(0);
  transition: transform 0.8s;
}
.animate-service__active:nth-child(5) {
  transform: translateX(0);
  transition: transform 0.8s;
}

.button {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ligth-1);
  padding: 1.375rem 3.75rem 1.375rem 1.875rem;
  background-position: 0 center;
  border-radius: 2.5rem;
  border: none;
  position: relative;
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  transform: translateY(-40%);
  background-image: url("../images/icon/btn-arrow-light.svg");
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
}
@media (width <= 47.99875rem) {
  .button::before {
    right: 5.75rem;
  }
}
@media (width <= 47.99875rem) {
  .button {
    width: 100%;
    padding: 1.125rem 3.75rem 1.125rem 1.5rem;
  }
}

.button-bg {
  background-color: var(--color-accent);
}
.button-bg:hover {
  background-color: var(--color-hover);
  transition: 0.2 ease-in;
}

.button-tr {
  background-color: var(--color-dark);
  box-shadow: 0 0 0 1px var(--color-accent);
  text-align: center;
}
.button-tr:hover {
  box-shadow: 0 0 1px 1px var(--color-accent);
  transition: 0.2 ease-in;
}

.logo a{
   width: clamp(7.5rem, 5.8125rem + 7.5vw, 14.8125rem);
   background-image: url('../images/icon/logo-dark.svg');
   display: block;
   height: 60px;
   background-size: contain;
   background-repeat: no-repeat;
   background-position: 0 center;
}
.light-theme .logo a{
    background-image: url('../images/icon/logo-light.svg');
}

@media (width <= 47.99875rem){
   .logo a{
      height: 30px;
    }
}

.menu {
  margin: 0 1.25rem;
}
.menu__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 3.75rem;
}
@media (width <= 90.06125rem) {
  .menu__list {
    column-gap: 1.875rem;
  }
}
.menu__list li {
  font-size: clamp(0.875rem, 0.8461538462rem + 0.1282051282vw, 1rem);
  font-weight: 400;
  color: var(--color-ligth-1);
  text-transform: uppercase;
}
.menu__list li:hover {
  color: var(--color-accent);
  transition: color 0.2s ease-in;
}
.menu .current-menu-item {
  color: var(--color-accent);
}
.menu-item:hover{
  color: var(--color-accent);
  transition: .2s ease-in;
}
@media (width <= 64.06125rem) {
  .menu {
    display: none;
  }
}

.dropdown {
  padding-right: 1.25rem;
  background-image: url("./../images/icon/arrow-menu.svg");
  background-repeat: no-repeat;
  background-position: 100% center;
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 375px;
  display: none;
  padding-top: 40px;
  background-color: transparent;
  z-index: 1;
}
.sub-menu li {
  border-left: 1px solid var(--color-grey);
  border-right: 1px solid var(--color-grey);
  overflow: hidden;
}
.sub-menu li:first-child {
  border-top: 1px solid var(--color-grey);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.sub-menu li:last-child {
  border-bottom: 1px solid var(--color-grey);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.sub-menu li a {
  padding: 15px 30px;
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-ligth-1);
  background-color: var(--color-dark);
}
.sub-menu li a:hover {
  color: var(--color-accent);
  font-weight: 600;
}

.burger {
  display: none;
  width: 24px;
  height: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.burger span {
  width: 100%;
  display: block;
  height: 2px;
  background-color: var(--color-accent);
}
@media (width <= 64.06125rem) {
  .burger {
    display: flex;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-dark);
  padding-top: 3.75rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index:1101;
}
.mobile-menu__list {
  font-size: 0.875rem;
  color: var(--color-ligth-1);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-menu__list li {
  width: 100%;
}
.mobile-menu__list a {
  width: 100%;
  display: block;
  padding: 15px;
}
.mobile-menu__list a:hover {
  color: var(--color-accent);
}
.mobile-menu__list .sub-menu{
  position: relative;
  padding-top: 0;
  
  top: 0;
}
.mobile-menu__list .sub-menu li{
  border: none;
}
.mobile-menu__bottom {
  margin-bottom: 1.875rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close {
  position: absolute;
  top: 1.875rem;
  right: 0.9375rem;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 2rem;
}
.mobile-menu__close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "+";
  display: block;
  color: var(--color-accent);
  transform: rotate(45deg);
}

.mobile-menu.is-active {
  display: flex;
}

.phone {
  font-size: clamp(0.875rem, 0.8461538462rem + 0.1282051282vw, 1rem);
  color: var(--color-ligth-1);
  font-weight: 500;
  position: relative;
  padding-left: 42px;
}
.phone::before {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  border-radius: 50%;
  background-color: var(--color-grey);
  background-image: url("./../images/icon/phone.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.lang__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
}
.lang-item {
  color: var(--color-grey);
  font-size: clamp(0.875rem, 0.8461538462rem + 0.1282051282vw, 1rem);
  position: relative;
  font-weight: 400;
}
.lang-item:not(:last-child)::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--color-grey);
  position: absolute;
  top: 0;
  right: -11px;
}
.lang .current-lang {
  color: var(--color-accent);
}

.theme__list {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 2.5rem;
}
.theme__item {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme .icon-theme-dark, .theme .icon-theme-light {
  stroke: var(--color-grey);
}
.light-theme .theme-dark{
  background-color: #14141C;
}
.theme .theme-dark.is-active {
  background-color: #fff;
}
.theme .theme-light.is-active {
  background-color: #fff;
}
.theme .theme-light.is-active .icon-theme-light {
  stroke: var(--color-dark);
}
.light-theme .theme .theme-light.is-active .icon-theme-light {
  stroke: var(--color-grey);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 0 0 2px var(--color-grey);
  padding: 0.9375rem 1.875rem;
  column-gap: 1.25rem;
  background-color: var(--color-dark);

  z-index: 1;
}
@media (width > 64.06125rem){
 .header__wrapper{
    position:relative;
 }
}
.header__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40%;
  column-gap: 3.75rem;
}
@media (width <= 90.06125rem) {
  .header__right {
    column-gap: 1.875rem;
  }
}
@media (width <= 64.06125rem) {
  .header__right {
    display: none;
  }
}

.hero {
  padding-top: 8.75rem;
}
@media (width <= 64.06125rem){
  .hero{
    padding-top: 4rem;
  }
  
}
@media (width <= 47.99875rem) {
  .hero {
    padding-top: 1.875rem;
  }
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (width <= 64.06125rem) {
  .hero__wrapper {
    flex-direction: column;
  }
}
.hero__title {
  width: 50%;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 1.7788461538rem + 3.2051282051vw, 5.625rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-ligth-1);
  text-align: left;
}

.hero__title span {
  color: var(--color-accent);
}
@media (width <= 90.06125rem) {
  .hero__title {
    width: 45%;
  }
}
@media (width <= 64.06125rem) {
  .hero__title {
    width: 100%;
    padding-left: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__title {
    padding-left: 0;
  }
}
.hero__description {
  width: 50%;
  padding: 1.875rem;
}
@media (width <= 90.06125rem) {
  .hero__description {
    width: 55%;
  }
}
@media (width <= 64.06125rem) {
  .hero__description {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .hero__description {
    padding-left: 0;
    padding-right: 0;
  }
}
.hero__text {
  font-size: clamp(0.875rem, 0.7884615385rem + 0.3846153846vw, 1.25rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-ligth-1);
  text-align: left;
  margin-bottom: 3.75rem;
}
.hero__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (width <= 90.06125rem) {
  .hero__text {
    margin-bottom: 2.5rem;
  }
}
.hero__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.875rem;
}
@media (width <= 47.99875rem) {
  .hero__button {
    flex-direction: column;
    row-gap: 1.875rem;
    align-items: flex-start;
  }
}

.slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 2px;
}
.slider__item {
  display: flex;
  justify-content: flex-start;
  column-gap: 3.75rem;
}
@media (width <= 90.06125rem) {
  .slider__item {
    column-gap: 2.5rem;
  }
}
.slider__image {
  width: 44.375rem;
}
@media (width <= 90.06125rem) {
  .slider__image {
    width: 64%;
  }
}
.slider__description {
  width: 40%;
  position: relative;
}
@media (width <= 90.06125rem) {
  .slider__description {
    width: 33%;
  }
}
.slider__arrows {
  width: 14.6875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 5.9375rem;
  position: absolute;
  left: 48.125rem;
  bottom: 1px;
}
.slider__arrows__item {
  display: block;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--color-grey);
  cursor: pointer;
}
.slider__arrows__item:hover {
  box-shadow: 0 0 0 1px var(--color-accent);
}
.slider__prev {
  background-image: url("./../images/icon/prev.svg");
  background-repeat: no-repeat;
  background-position: center 58%;
}
.slider__next {
  background-image: url("./../images/icon/next.svg");
  background-repeat: no-repeat;
  background-position: center 55%;
}

.slider-arrows {
  width: 14.6875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 48.125rem;
  bottom: 1px;
  z-index: 1001;
}
.slider-arrows__item {
  display: block;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--color-grey);
  cursor: pointer;
}
.slider-arrows__item:hover {
  box-shadow: 0 0 0 1px var(--color-accent);
}
@media (width <= 90.06125rem) {
  .slider-arrows__item {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media (width <= 90.06125rem) {
  .slider-arrows {
    left: 68%;
  }
}
@media (width <= 47.99875rem) {
  .slider-arrows {
    left: 30%;
  }
}
.slider-pagination {
  display: flex;
  justify-content: space-between;
  column-gap: 0.625rem;
  font-family: var(--font-title);
  color: var(--color-grey);
  font-size: clamp(1rem, 0.8269230769rem + 0.7692307692vw, 1.75rem);
  font-weight: 600;
  width: 30%;
  margin: o auto;
}
.slider-pagination .swiper-pagination-current {
  color: var(--color-accent);
}

.cases {
  margin-top: 9.375rem;
}
@media (width <= 47.99875rem) {
  .cases {
    margin-top: 3rem;
  }
}
.cases .slider {
  overflow: hidden;
}
@media (width <= 64.06125rem) {
  .cases .slider__item {
    flex-direction: column;
  }
}
@media (width <= 64.06125rem) {
  .cases .slider__image {
    width: 100%;
    max-height: 25rem;
  }
}
@media (width <= 64.06125rem) {
  .cases .slider__image .case-img {
    width: 100%;
    max-height: 25rem;
  }
}
@media (width <= 64.06125rem) {
  .cases .slider__description {
    width: 100%;
    margin-top: 1.875rem;
  }
}
.cases .slider h3 {
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  font-weight: 600;
  color: var(--color-ligth-1);
  margin-bottom: 1.875rem;
}
.cases .slider P {
  font-size: clamp(0.875rem, 0.8173076923rem + 0.2564102564vw, 1.125rem);
  font-weight: 400;
  color: var(--color-grey);
  line-height: 1.5;
}
.cases .slider P:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (width <= 64.06125rem) {
  .cases .slider {
    padding-bottom: 6.25rem;
  }
}

.card {
  display: flex;
}
.card__image {
  width: 6.25rem;
  height: 6.25rem;
  margin-right: 2.0625rem;
}
.card__image img {
  max-width: 100%;
}
@media (width <= 47.99875rem) {
  .card__image {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.card__title {
  font-family: var(--font-title);
  font-size: clamp(1rem, 0.8846153846rem + 0.5128205128vw, 1.5rem);
  color: var(--color-ligth-1);
  font-weight: 600;
  margin-bottom: 2.0625rem;
}
.card__text {
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  color: var(--color-grey);
  font-weight: 400;
  line-height: 1.5;
}

.advantages__wrapper {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  padding: 3.75rem 3.125rem;
  margin-top: 9.375rem;
}
.advantages.anime-active .advantages__list{
  opacity: 1;
  transform: translate(0px, 0px);
}
@media (width <= 47.99875rem) {
  .advantages__wrapper {
   padding: 1.825rem;
   margin-top: 3rem;
  }
}
.advantages__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.75rem;
  margin-top: 5.625rem;
  opacity: 0;
  transform: translate(0px,120%);
  transition: all .8s ease 0s;
}
@media (width <= 64.06125rem) {
  .advantages__list {
    flex-direction: column;
  }
}
.advantages .card {
  width: 45%;
  display: flex;
  justify-content: flex-start;
}
.advantages .card__description {
  width: 70%;
}
@media (width <= 47.99875rem) {
  .advantages .card__description {
    width: 100%;
  }
}
.advantages .card__title {
  margin-top: 2.0625rem;
}
@media (width <= 64.06125rem) {
  .advantages .card__title {
    margin-top: 0;
  }
}
@media (width <= 64.06125rem) {
  .advantages .card {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .advantages .card {
    flex-direction: column;
    row-gap: 2.0625rem;
  }
  .advantages .card__title{
    margin-bottom: 1rem;
  }
}

.service {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  background-color: var(--color-dark);
  padding: 3.75rem 1.875rem;
}
.service:hover{
  box-shadow: 0 0 0 1px var(--color-accent);
}
.service__description {
  text-align: center;
  color: var(--color-grey);
}
.service__description h3 {
  font-family: var(--font-title);
  color: var(--color-ligth-1);
  font-size: clamp(1.125rem, 0.8076923077rem + 1.4102564103vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}
.service__description p {
  color: var(--color-grey);
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.875rem;
}

.services {
  margin-top: 9.375rem;
  background-image: url("./../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 95% 100%;
}
@media (width <= 64.06125rem){
  .services{
    margin-top: 6rem;
  }
  
}
.services .section-subtitle {
  text-align: center;
  width: 100%;
  display: block;
}
.services .section-title {
  text-align: center;
  width: 100%;
}
.services__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5.625rem;
  row-gap: 3.75rem;
}
@media (width <= 47.99875rem) {
  .services__list {
    margin-top: 3rem;
    row-gap: 1.75rem;
  }
}
@media (width <= 64.06125rem) {
  .services__list {
    flex-direction: column;
  }
}
.services__item {
  width: 48%;
  position: relative;
}

.services__item:last-child a{
  /* width: 100%; */
  display: flex;
  justify-content: space-between;
  
}.services__item:last-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .services__item:last-child {
    flex-direction: column;
  }
}

.services__item:last-child .service__image {
  width: 48%;
}
.services__item:last-child ul {
  margin-left: 40px;
}
.services__item:last-child li {
  list-style: disc;
  margin-top: 10px;
}
@media (width <= 47.99875rem) {
  .services__item:last-child .service__image {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .services__item:last-child .service__except {
    width: 100%;
  }
}
.services__item:last-child .service__description {
  width: 48%;
  margin-top: 0;
  align-items: baseline;
  text-align: left;
}
@media (width <= 47.99875rem) {
  .services__item:last-child .service__description {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .services__item:last-child .button::before {
    right: 3rem;
  }
}
.services__item:last-child .section-subtitle {
  text-align: left;
}
.services__item:last-child .service__title {
  text-align: left;
  width: 50%;
}
.services__item:last-child .button {
  margin-top: 3.75rem;
}
@media (width <= 64.06125rem) {
  .services__item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  .services__item a{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (width <= 47.99875rem) {
  .services__item a{
    flex-direction: column;
    align-items: center;
  }
}
.services .service__description {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (width <= 64.06125rem) {
  .services .service__description {
    width: 57%;
    justify-content: flex-start;
    margin-top: 0;
  }
}
@media (width <= 47.99875rem) {
  .services .service__description {
    width: 100%;
    margin-top: 30px;
  }
}
@media (width <= 47.99875rem) {
  .services .service__description p{
    margin-top: 1rem;
  }
}
.services .service__except {
  margin-top: 1.875rem;
}
@media (width <= 64.06125rem) {
  .services .service__image {
    width: 40%;
    margin-right: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .services .service__image {
    width: 100%;
    margin-right: 0;
  }
}

.step {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  padding: 3.75rem;
  width: 47.5%;
  position: relative;
}
@media (width <= 64.06125rem) {
  .step {
    padding: 2.5rem;
    width: 100%;
    display: flex;
  }
}
@media (width <= 47.99875rem) {
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
}
.step__image {
  position: absolute;
  z-index: 0;
}
.step__title {
  font-family: var(--fint-title);
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  font-weight: 600;
  color: var(--color-ligth-1);
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
  margin-left: 1.875rem;
  z-index: 1001;
  position: relative;
}
@media (width <= 64.06125rem) {
  .step__title {
    width: 40%;
  }
}
@media (width <= 47.99875rem) {
  .step__title {
    width: 100%;
  }
}
.step__text {
  font-family: var(--fint-title);
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  font-weight: 400;
  color: var(--color-grey);
  line-height: 1.5;
}
@media (width <= 64.06125rem) {
  .step__text {
    width: 50%;
  }
}
@media (width <= 47.99875rem) {
  .step__text {
    width: 100%;
  }
}
.step .button {
  margin-top: 1.875rem;
  position: absolute;
  bottom: 1.875rem;
  left: 3.75rem;
}
@media (width <= 64.06125rem) {
  .step .button {
    left: 45%;
  }
}
@media (width <= 47.99875rem) {
  .step .button {
    position: relative;
    left: 0;
    margin-top: 1.875rem;
    bottom: 0;
  }
  .step .button::before{
    right: 3rem;
  }
}
.step:hover {
  box-shadow: 0 0 0 1px var(--color-accent);
}
.step:hover .step-icon {
  fill: var(--color-accent);
}
.step:last-child {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .step:last-child {
    flex-direction: column;
    row-gap: 1.875rem;
  }
  .step:last-child .card {
    width: 100%;
    flex-direction: column;
  }
  .step:last-child .card__description {
    width: 100%;
    margin-top: 1.875rem;
  }
}
.step .card {
  width: 48%;
}
.step .card__description {
  width: 70%;
}

.steps {
  margin-top: 9.375rem;
}
@media (width <= 64.06125rem){
  .steps{
    margin-top: 6rem;
  }
  
}
.steps .section-title {
  width: 30%;
}
.steps__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 3.75rem;
  margin-top: 5.625rem;
}
@media (width <= 47.99875rem) {
  .steps__wrapper {
    margin-top: 3rem;
    row-gap: 1.75rem;
  }
}
.step-icon {
  stroke: var(--color-accent);
  font-family: var(--font-title);
}

.price {
  margin-top: 9.375rem;
}
@media (width <= 64.06125rem){
  .price{
    margin-top: 6rem;
  }
  
}
.price .section-title {
  width: 100%;
  text-transform: none;
}
.price__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media (width <= 64.06125rem) {
  .price__wrapper {
    align-items: baseline;
  }
}
@media (width <= 47.99875rem) {
  .price__wrapper {
    flex-direction: column;
  }
}
.price__image {
  width: 48%;
}
@media (width <= 64.06125rem) {
  .price__image {
    width: 40%;
    min-width: 300px;
    margin-right: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .price__image {
    width: 100%;
  }
}
.price__description {
  width: 48%;
}
@media (width <= 64.06125rem) {
  .price__description {
    width: 53%;
  }
}
@media (width <= 47.99875rem) {
  .price__description {
    width: 100%;
    margin-top: 1.875rem;
  }
}
.price__text {
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  color: var(--color-grey);
  line-height: 1.5;
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
}
.price .button {
  text-align: center;
  padding: 1.375rem 1.875rem;
}
.price .button::before {
  display: none;
}
@media (width <= 47.99875rem) {
  .price .button {
    width: 100%;
    display: block;
  }
}

.review {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  padding: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  position: relative;
  height: 27.5rem;
}
@media (width <= 64.06125rem) {
  .review {
    height: 18.75rem;
  }
}
@media (width <= 30.06125rem) {
  .review {
    padding: 1.875rem;
    height: 23rem;
  }
}
.review__author {
  font-family: var(--font-title);
  font-size: clamp(1.125rem, 1.0384615385rem + 0.3846153846vw, 1.5rem);
  font-weight: 600;
  color: var(--color-ligth-1);
}
.review__text {
  margin-top: 1.5rem;
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  font-weight: 400;
  color: var(--color-grey);
  line-height: 1.5;
}
.review .button {
  padding-left: 0;
  position: absolute;
  bottom: 1.875rem;
  left: 3.75rem;
}
@media (width <= 47.99875rem) {
  .review .button {
    width: 38%;
    padding-right: 3.75rem;
    padding-left: 0;
    text-align: left;
  }
}
@media (width <= 30.06125rem) {
  .review .button {
    width: 60%;
    left: 1.875rem;
    bottom: 1.875rem;
  }
}
.review:hover {
  box-shadow: 0 0 0 1px var(--color-accent);
}
.review:hover .button {
  color: var(--color-accent);
}
.review:hover .button::before {
  background-image: url("./../images/icon/btn-arrow-lhover.svg");
}

.reviews {
  margin-top: 9.375rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.25rem;
  overflow: hidden;
}
@media (width <= 64.06125rem){
  .reviews{
    margin-top: 6rem;
  }
  
}
@media (width <= 64.06125rem) {
  .reviews .section-title {
    width: 40%;
  }
}
.reviews__slider {
  padding-top: 6.875rem;
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
}
@media (width <= 30.06125rem) {
  .reviews__slider {
    padding-top: 3.75rem;
  }
}
.reviews .slider-arrows {
  bottom: 87%;
  left: calc(100% - 13.1875rem);
  width: 13.125rem;
  column-gap: 0;
}
@media (width <= 90.0613rem){
  .reviews .slider-arrows{
    width: 10rem; 
    left: calc(100% - 10rem);
  }
}
@media (width <= 64.06125rem) {
  .reviews .slider-arrows {
    bottom: 80%;
  }
}
@media (width <= 47.99875rem){
  .reviews .button::before{
    right: 3rem;
  }
}
@media (width <= 30.06125rem) {
  .reviews .slider-arrows {
    display: none;
  }
}
.reviews .button-tr {
  position: absolute;
  bottom: 87%;
  right: 17.5rem;
}
@media (width <= 64.06125rem) {
  .reviews .button-tr {
    bottom: 81%;
  }
}
@media (width <= 47.99875rem) {
  .reviews .button-tr {
    right: none;
    left: 0;
    width: auto;
  }
}
@media (width <= 30.06125rem) {
  .reviews .button-tr {
    width: 100%;
    bottom: -25%;
  }
}
@media (width <= 30.06125rem) {
  .reviews .slider {
    overflow: visible;
  }
}

.copyright {
  padding: 0.9375rem 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-grey);
  border-top: 1px solid var(--color-grey);
}

.footer__body {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: var(--color-dark);
  position: relative;
  z-index: 1;
}
.footer__wrapper {
  padding-top: 3.75rem;
}
.footer__menu {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media (width <= 30.06125rem) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__info {
  display: flex;
  justify-content: space-between;
}
@media (width <= 30.06125rem) {
  .footer__info {
    flex-direction: column;
  }
}
.footer__about {
  width: 50%;
  margin: 3.75rem 0;
  border-right: 1px solid var(--color-grey);
}
.footer__about__text {
  font-size: clamp(0.875rem, 0.8461538462rem + 0.1282051282vw, 1rem);
  font-weight: 400;
  color: var(--color-grey);
  line-height: 1.5;
  margin-top: 1.875rem;
}
.footer__about__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (width <= 30.06125rem) {
  .footer__about {
    width: 100%;
  }
}
.footer__contacts {
  width: 47%;
  display: flex;
  flex-direction: column;
  margin: 3.75rem 0;
  justify-content: space-between;
}
@media (width <= 64.06125rem) {
  .footer__contacts {
    row-gap: 1.875rem;
  }
}
@media (width <= 30.06125rem) {
  .footer__contacts {
    width: 100%;
    margin-top: 1rem;
  }
}
.footer .social {
  justify-content: flex-start;
  column-gap: 1.875rem;
}
@media (width <= 64.06125rem) {
  .footer .social {
    row-gap: 1.875rem;
  }
}

.contacts__list {
  display: flex;
  column-gap: 3.75rem;
}
@media (width <= 64.06125rem) {
  .contacts__list {
    flex-direction: column;
    row-gap: 1.875rem;
  }
}
.contacts .phone {
  font-size: clamp(0.875rem, 0.7307692308rem + 0.641025641vw, 1.5rem);
  line-height: 1.5;
}
@media (width <= 30.06125rem) {
  .contacts .phone {
    font-size: 18px;
  }
}
.contacts .phone::before {
  top: 2px;
}

.email {
  font-size: clamp(0.875rem, 0.7307692308rem + 0.641025641vw, 1.5rem);
  color: var(--color-ligth-1);
  font-weight: 500;
  position: relative;
  padding-left: 42px;
  line-height: 1.5;
}
@media (width <= 30.06125rem) {
  .email {
    font-size: 18px;
  }
  .social__item a {
    width: 32px;
    height: 32px;
  }
  .contacts .phone::before{
    top: -3px;
  }
 
}
.email::before {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  border-radius: 50%;
  background-color: var(--color-grey);
  background-image: url("./../images/icon/email.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
@media (width <= 30.06125rem){
  .contacts .email::before{
    top:-3px;
  }
}
.menu-footer {
  display: flex;
  flex-direction: column;
  width: 47%;
  align-items: flex-start;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid var(--color-grey);
}
.menu-footer:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (width <= 64.06125rem) {
  .menu-footer {
    padding-bottom: 1.875rem;
  }
}
@media (width <= 30.06125rem) {
  .menu-footer {
    width: 100%;
  }
}
.menu-footer__label {
  font-family: var(--font-title);
  font-size: clamp(1rem, 0.8846153846rem + 0.5128205128vw, 1.5rem);
  font-weight: 400;
  color: var(--color-grey);
  text-transform: lowercase;
}
.menu-footer__list {
  display: flex;
  justify-content: flex-start;
  column-gap: 3.75rem;
  font-size: clamp(0.875rem, 0.8461538462rem + 0.1282051282vw, 1rem);
  font-weight: 400;
  color: var(--color-ligth-1);
  margin-top: 1.875rem;
}
@media (width <= 90.06125rem) {
  .menu-footer__list {
    column-gap: 2.5rem;
  }
}
@media (width <= 64.06125rem) {
  .menu-footer__list {
    flex-direction: column;
    row-gap: 1.875rem;
  }
}
.menu-footer__link:hover {
  color: var(--color-accent);
  transition: 0.2s ease-in;
}

.social {
  display: flex;
  align-items: center;
}
@media (width <= 64.06125rem) {
  .social {
    flex-direction: column;
    align-items: flex-start;
  }
}
.social__label {
  font-family: var(--font-title);
  font-size: clamp(1rem, 0.8846153846rem + 0.5128205128vw, 1.5rem);
  font-weight: 400;
  color: var(--color-grey);
  text-transform: lowercase;
}
.social__list {
  display: flex;
  justify-content: flex-start;
  column-gap: 0.9375rem;
}
.social__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-grey);
  border-radius: 50%;
  width: 3.75rem;
  height: 3.75rem;
}
.social__item a:hover {
  background-color: var(--color-accent);
  transition: 0.2s ease-in;
}

.modal-request {
  display: none;
}

.modal__review {
  display: none;
}
.modal__review .modal__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modal__review .modal__type:nth-child(2) {
  width: 48%;
}
.modal__review .modal__type:nth-child(3) {
  width: 48%;
}
.modal__review .modal__type:nth-child(4) {
  width: 100%;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(229, 23, 118, 0.5);
  z-index: 1001;
  display: none;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--color-dark);
  padding: 3.75rem;
  border-radius: 1.5rem;
}
@media (width <= 30.06125rem) {
  .modal {
    width: 95%;
    padding: 1.875rem;
  }
}
.modal__label {
  font-family: var(--font-title);
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  font-weight: 600;
  color: var(--color-ligth-1);
  line-height: 1.4;
  margin-bottom: 1.875rem;
  width: 100%;
}
.modal__type {
  width: 30rem;
  display: block;
}
.modal__type:not(:last-child) {
  margin-bottom: 1.875rem;
}
/* .modal__type:nth-child(4) {
  margin-bottom: 0;
} */
@media (width <= 47.99875rem) {
  .modal__type {
    width: 23.75rem;
  }
}
@media (width <= 30.06125rem) {
  .modal__type {
    width: 100%;
  }
}
.modal__input {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  width: 100%;
  padding: 1.0625rem 1.875rem;
  font-size: clamp(0.875rem, 0.8173076923rem + 0.2564102564vw, 1.125rem);
  line-height: 1.5;
  color: var(--color-ligth-1);
}
.modal__agreement {
  font-size: clamp(0.875rem, 0.8461538462rem + 0.1282051282vw, 1rem);
  font-weight: 14;
  line-height: 1.5;
  color: var(--color-ligth-1);
  padding-left: 2.25rem;
  display: block;
  position: relative;
}
.modal__agreement a {
  color: var(--color-accent);
}
.modal__agreement::before {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.125rem;
  box-shadow: 0 0 0 1px var(--color-accent);
}
.modal__chackbox:checked ~ span .modal__agreement::before {
  background-image: url("../images/icon/checked.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.modal__chacksbox:checked + span .modal__agreement::before {
  background-image: url("../images/icon/checked.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.modal__close {
  position: absolute;
  top: 1.375rem;
  right: 1.375rem;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}
.modal__close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "+";
  display: block;
  color: var(--color-accent);
  transform: rotate(45deg);
}
.modal__textarea {
  width: 100%;
  outline: navajowhite;
  border: none;
}
.modal__active {
  display: block;
}

.service-page .service {
  box-shadow: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
@media (width <= 64.06125rem) {
  .service-page .service {
    padding: 0;
    padding-top: 1.875rem;
    align-items: flex-start;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service {
    flex-direction: column;
  }
}
.service-page .service__item {
  width: 100%;
}
.service-page .service__image {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  padding: 3.75rem 1.875rem;
  width: 48%;
  background-color: var(--color-dark);
  position: relative;
  z-index: 0;
}
@media (width <= 64.06125rem) {
  .service-page .service__image {
    width: 35%;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 18.75rem;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service__image img {
    max-height: 16.25rem;
  }
}
.service-page .service__title {
  width: 100%;
  font-size: clamp(2rem, 1.6538461538rem + 1.5384615385vw, 3.5rem);
  text-transform: lowercase;
  text-align: left;
  color: var(--color-ligth-1)
  
}
.service-page .service__description {
  padding-top: 3.75rem;
  width: 48%;
}
@media (width <= 64.06125rem) {
  .service-page .service__description {
    padding-top: 0;
    width: 60%;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service__description {
    width: 100%;
    margin-top: 1.875rem;
  }
}
.service-page .service__except {
  color: var(--color-ligth-1);
  text-align: left;
  font-weight: 300;
  margin-top: 3.75rem;
  font-size: fluid-text(20, 14);
}
@media (width <= 64.06125rem) {
  .service-page .service__except {
    margin-top: 1.875rem;
  }
}
.service-page .service__except p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.service-page .service__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.875rem;
  margin-top: 3.75rem;
}
@media (width <= 64.06125rem) {
  .service-page .service__button {
    margin-top: 2.5rem;
  }
}
@media (width <= 30.06125rem) {
  .service-page .service__button {
    flex-direction: column;
    row-gap: 1.875rem;
    align-items: flex-start;
  }
}
.service-page .service__body {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  margin-top: 9.375rem;
  padding: 3.75rem 3.125rem;
  background-color: var(--color-dark);
  position: relative;
  z-index: 1;
}
@media (width <= 47.99875rem) {
  .service-page .service__body {
    padding: 1.875rem;
    margin-top: 6rem;
  }
  .service-page .price{
    margin-top: 3rem;
  }
}
.service-page .service__result .service__title {
  width: 40%;
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  text-transform: none;
  line-height: 1.4;
  
}
.service-page .service__result{
  margin-bottom: 3rem;
}
.service-page .service__result:last-child{
  margin-bottom: 0;
}
@media (width <= 47.99875rem) {
  .service-page .service__result .service__title {
    width: 100%;
  }
}
.service-page .service__result__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2.875rem;
  column-gap: 3.75rem;
}
@media (width <= 64.06125rem) {
  .service-page .service__result__list {
    column-gap: 1.25rem;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service__result__list {
    display: flex;
  }
}
@media (width <= 30.06125rem) {
  .service-page .service__result__list {
    flex-direction: column;
  }
}
.service-page .service__result__list .card {
  width: 20%;
  flex-direction: column;
}
.service-page .service__result__list .card__title {
  margin-top: 1.25rem;
}
@media (width <= 47.99875rem) {
  .service-page .service__result__list .card {
    width: 48%;
    margin-bottom: 1.875rem;
    padding-right: 0 !important;
  }
}
@media (width <= 30.06125rem) {
  .service-page .service__result__list .card {
    width: 100%;
  }
}
.service-page .service__desc .service__title {
  width: 40%;
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  text-transform: none;
  line-height: 1.4;
}
@media (width <= 47.99875rem) {
  .service-page .service__desc .service__title {
    width: 100%;
    margin-bottom: 1.875rem;
  }
}
.service-page .service__desc__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 3.75rem;
}
@media (width <= 47.99875rem) {
  .service-page .service__desc__item {
    flex-direction: column;
  }
}
.service-page .service__desc__text {
  width: 50%;
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  font-weight: 400;
  color: var(--color-grey);
  line-height: 1.5;
}
@media (width <= 47.99875rem) {
  .service-page .service__desc__text {
    width: 100%;
  }
}
.service-page .service__desc__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (width <= 64.06125rem) {
  .service-page .service .button {
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  }
}
@media (width <= 64.06125rem) {
  .service-page .service .button::before {
    right: 1.125rem;
  }
}
@media (width <= 30.06125rem) and (width <= 64.06125rem) {
  .service-page .service .button::before {
    right: 5rem;
  }
}
.service-page .price {
  margin-top: 9.375rem;
}
.service-page .price .section-subtitle {
  text-align: center;
}
.service-page .price .section-title {
  text-align: center;
  text-transform: lowercase;
}
.service-page .price__wrapper {
  margin-top: 1.5625rem;
  padding: 3.125rem;
  column-gap: 3.75rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(0deg, rgb(229, 23, 118) 0%, rgba(0, 0, 0, 0) 43%);
}
@media (width <= 90.06125rem) {
  .service-page .price__wrapper {
    padding: 1.875rem;
    column-gap: 1.875rem;
  }
}
@media (width <= 64.06125rem) {
  .service-page .price__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 1.875rem;
    background: linear-gradient(0deg, rgb(229, 23, 118) 0%, rgba(0, 0, 0, 0) 60%);
  }
}
@media (width <= 30.06125rem) {
  .service-page .price__wrapper {
    padding: 0.625rem;
  }
}
.service-page .price .button {
  margin: 1.875rem 0;
  width: 100%;
}
.service-page .service-form {
  margin-top: 9.375rem;
  padding: 0 1.875rem;
}
@media (width <= 30.06125rem) {
  .service-page .service-form {
    padding: 0;
    width: 100%;
    margin-top: 6rem;
  }
}
.service-page .service-form .section-title {
  width: 100%;
  text-align: center;
}
.service-page .service-form .section-description {
  font-size: clamp(0.875rem, 0.7884615385rem + 0.3846153846vw, 1.25rem);
  font-weight: 400;
  color: var(--color-ligth-1);
  text-align: center;
  margin-top: 2.5rem;
}
.service-page .service-form__request {
  position: relative;
  background-color: var(--color-dark);
  z-index: 1;
}
.service-page .service-form .modal {
  left: auto;
  top: auto;
  translate: none;
  padding: 3.75rem;
  margin-top: 3.75rem;
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
}
@media (width <= 30.06125rem) {
  .service-page .service-form .modal {
    padding: 1.875rem;
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
 
  .service-page .price{
    margin-top: 6rem;
  }
}
.service-page .service-form .modal__form {
  flex-direction: row;
  display: flex;
  column-gap: 3.75rem;
}
@media (width <= 90.06125rem) {
  .service-page .service-form .modal__form {
    column-gap: 1.875rem;
  }
}
@media (width <= 64.06125rem) {
  .service-page .service-form .modal__form {
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 0;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service-form .modal__form {
    flex-direction: column;
  }
}
.service-page .service-form .modal__type:nth-child(5) {
  position: absolute;
  bottom: -2.875rem;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .service-page .service-form .modal__type:nth-child(4) {
    position: relative;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service-form .modal__type:nth-child(5) {
    width: calc(100% - 2.25rem);
     bottom: -1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .service-form .modal__agreement{
    display: block;
    bottom: -16px;
  }
}
@media (width <= 47.99875rem) {
  .service-form .modal__agreement::before{
    top: 8px;
  }
}
@media (width <= 64.06125rem) {
  .service-page .service-form .modal__type {
    width: 48%;
  }
}
@media (width <= 47.99875rem) {
  .service-page .service-form .modal__type {
    width: 100%;
  }
}
.service-page .service-form .modal .button {
  width: 100%;
  padding: 1.375rem 0;
  padding-right: 2.5rem;
}
.service-page .service-form .modal .button::before {
  right: 3.75rem;
}
@media (width <= 47.99875rem) {
  .service-page .service-form .modal .button {
    margin-bottom: 1.25rem;
  }
}

.price-card {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  padding: 1.875rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
  background-color: var(--color-dark);
  position: relative;
  z-index: 1;
}
@media (width <= 47.99875rem) {
  .price-card {
    width: 100%;
  }
}
.price-card__name {
  font-family: var(--font-title);
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-ligth-1);
  margin-bottom: 1.875rem;
  height: 5rem;
}
.price-card__desc {
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-ligth-1);
  margin-bottom: 1.875rem;
}
.price-card__sum {
  font-family: var(--font-title);
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-ligth-1);
  margin-bottom: 1.875rem;
}
.price-card__package ul{
  font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-grey);
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.price-card__package li{
  position: relative;
  padding-left: 1.5625rem;
}
.price-card__package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  width: 0.9375rem;
  height: 0.9375rem;
  background-image: url("../images/icon/line-style.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.breadcrumb {
  display: flex;
  justify-content: flex-start;
  column-gap: 1.5625rem;
  margin-left: 1.875rem;
}
@media (width <= 64.06125rem) {
  .breadcrumb {
    margin-left: 0;
  }
}
.breadcrumb__item {
  font-size: fliud(18, 14);
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-accent);
  margin-top: 3.75rem;
  margin-bottom: 0.625rem;
}

.contacts-page__wrapper {
  margin-top: 3.75rem;
  display: flex;
}
@media (width <= 64.06125rem) {
  .contacts-page__wrapper {
    flex-direction: column;
  }
}
.contacts-page .contacts {
  width: 45%;
}
@media (width <= 64.06125rem) {
  .contacts-page .contacts {
    width: 40%;
  }
}
@media (width <= 30.06125rem) {
  .contacts-page .contacts {
    width: 100%;
  }
}
.contacts-page .contacts__list {
  flex-direction: column;
  row-gap: 3.75rem;
  margin-top: 5.625rem;
}
.contacts-page .contacts__list .phone, .contacts-page .contacts__list .email {
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  padding-left: 4.25rem;
  font-weight: 500;
  top: 0;
  line-height: 1.7;
}
.contacts-page .contacts__list .phone::before, .contacts-page .contacts__list .email::before {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-accent);
}
@media (width <= 30.06125rem) {
  .contacts-page .contacts__list .phone::before, .contacts-page .contacts__list .email::before {
    width: 2rem;
    height: 2rem;
  }
}
@media (width <= 30.06125rem){
.contacts-page .contacts__list {
  flex-direction: column;
  row-gap: 1.75rem;
  margin-top: 2.625rem;
  }
}
.contacts-page .contacts__form {
  width: 55%;
  z-index: 0;
}
@media (width <= 64.06125rem) {
  .contacts-page .contacts__form {
    width: 100%;
  }
}

.inquiry-form {
  box-shadow: 0 0 0 1px var(--color-grey);
  border-radius: 1.5rem;
  padding: 3.75rem 3.125rem;
  background-color: var(--color-dark);
  position: relative;
  z-index: 1;
}
@media (width <= 64.06125rem) {
  .inquiry-form {
    margin-top: 5.625rem;
  }
}
@media (width <= 30.06125rem) {
  .inquiry-form {
    padding: 1.875rem;
  }
}
.inquiry-form__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (width <= 30.06125rem) {
  .inquiry-form__wrapper {
    flex-direction: column;
  }
}
.inquiry-form .section-title {
  margin-bottom: 5.625rem;
}
@media (width <= 64.06125rem) {
  .inquiry-form .section-title {
    margin-bottom: 3.75rem;
  }
}
@media (width <= 30.06125rem) {
  .inquiry-form .section-title {
    margin-bottom: 1.875rem;
  }
}
.inquiry-form .modal__type {
  width: 46%;
  margin-bottom: 3.75rem;
}
.inquiry-form .modal__type:nth-child(5) {
  width: 100%;
}
.inquiry-form .modal__type:nth-child(6) {
  width: 40%;
  margin-bottom: 0;
}
.inquiry-form .modal__type:last-child {
  width: 60%;
  margin-bottom: 0;
}
@media (width <= 30.06125rem) {
  .inquiry-form .modal__type {
    width: 100%;
  }
}
@media (width <= 30.06125rem) {
  .inquiry-form .modal__type {
    margin-bottom: 1.875rem;
  }
  .inquiry-form .modal__type:nth-child(6) {
    width: 100%;
    margin-bottom: 1.875rem;
  }
  .inquiry-form .modal__type:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}
.inquiry-form .modal__agreement {
  cursor: normal;
 
}
.inquiry-form .modal__agreement::before {
  display: none;
}
@media (width <= 30.06125rem) {
  .inquiry-form .modal__agreement {
    padding-left: 0;
  }
}

.light-theme .button-bg {
  color: var(--color-dark);
}
.light-theme .button-tr::before {
  background-image: url("../images/icon/btn-arrow-dark.svg");
}
.light-theme .slider__prev {
  background-image: url("../images/icon/prev-dark.svg");
}
.light-theme .slider__next {
  background-image: url("../images/icon/next-dark.svg");
}
.light-theme .reviews__slider .button::before {
  background-image: url("../images/icon/btn-arrow-dark.svg");
}
.light-theme .reviews__slider .button:hover::before {
  background-image: url("../images/icon/btn-arrow-lhover.svg");
}

/*# sourceMappingURL=main.css.map */

.wpcf7-list-item{
  margin-left: 0;
}
input[type='submit']{
  background-image: url("../images/icon/btn-arrow-light.svg");
  background-repeat: no-repeat;
  background-position: 82% center;
  background-size: 14px 18px;
}
.footer{
  z-index: 0;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border: none;
  color: var(--color-accent);
  position: absolute;
  bottom: 0;
}


.wpcf7-submit.button{
  width: 180px;
}

.wpcf7-not-valid-tip{
  color: var(--color-accent);
  margin-top: 10px;
  display: flex;
}

.wpcf7 form .wpcf7-response-output{
  color: var(--color-accent);
  border: none;
  width: 30rem;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  margin-top: 1.5rem;
  border: 0;

}
.wpcf7-spinner{
  display: none;
}
@media (width <= 30.06125rem) {
  .service-page .service-form .modal__type:nth-child(6) {
    position: relative;
    order: 5;
    margin-bottom: 0;
    
  }
  .service-page .service-form .modal__type:nth-child(5) {
     position: relative;
     order: 6;
     bottom: 0;
     display: inline-flex;
  }
}

@media (width <= 47.998rem) {
  .wpcf7 form .wpcf7-response-output {
    width: 23.75rem;
  }
}

@media (width <= 30.06125rem) {
  .wpcf7 form .wpcf7-response-output {
    width: 100%;
  }
  .wpcf7-list-item{
    margin-bottom: 10px;
  }
}

.service-form .wpcf7-response-output{
  position: absolute;
  left: 0;
  top:-65px;

}
@media (width <= 30.06125rem) {
  .service-form .wpcf7-response-output{
    position: absolute;
    left: 0;
    top:90%;
  }
}
/* .contacts-page .wpcf7-response-output{
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-ligth-1);
    border: none;
    display: block;
    width: 460px;
    border: 1px solid var(--color-grey) !important;
    text-align: center;
    background-color: var(--color-dark);
    padding: 3.75rem !important;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
    z-index: 10;
} */
.service-page .modal__agreement{
  display: flex;
}





.advantages__item {
  .card__image{
    opacity: 0;
    transform: translate(0px,120%);
    transition: all .8s ease 0s;
  }
  .card__description{
    opacity: 0;
    transform: translate(0px,120%);
    transition: all .8s ease 0s;
  }
  .card__text{
    opacity: 0;
    transform: translate(0px,120%);
    transition: all .8s ease 0s;
  }
}
.advantages__item.anime-active{
  .card__image{
    opacity: 1;
    transform: translate(0px, 0px);
  }
  .card__description{
    opacity: 1;
    transform: translate(0px, 0px);
  }
  .card__text{
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

.anime-children{
  opacity: 0;
  transform: translate(0px,120%);
  transition: all .8s ease 0s;
}

.anime-parent.anime-active{
  .anime-children{
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.hidden{
  opacity: 0;
  position: absolute;
}


