@import url("https://fonts.googleapis.com/css2?family=Forum&family=Manrope&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: #212324;
  --burger-color-active: #212324;
  --container-width: 1600px;
  --container-padding: 30px;
  --font-default: "Manrope", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: white;
  --color-body: #212324;
  --color-text: #212324;
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }
}

/* responsive */
@font-face {
  font-family: "Diatype";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Diatype/ABCDiatype-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

input,
a {
  outline: none !important;
  color: var(--color-text);
}

button,
input,
textarea {
  font-family: var(--font-default);
}

section {
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  section {
    margin-bottom: 60px;
  }
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
body._default {
  padding-top: 130px;
  position: relative;
}
body._default::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 362px;
  width: 100%;
  background: linear-gradient(#FFFFCC, #FFFFFF);
  z-index: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger-content {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
  text-align: center;
}
.burger-content__body {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .burger-content__body {
    top: 100px;
  }
}
.burger-content a {
  text-decoration: none;
}
.burger-content ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 22px;
}
.burger-content ul li {
  list-style: none;
}
.burger-content .header__top-right {
  flex-direction: column;
  row-gap: 20px;
}
.burger-content .header__top-social a {
  display: flex !important;
}
.burger-content .header__top-social a:first-child {
  display: flex;
  align-items: center;
}
.burger-content .header__phone {
  font-size: 22px;
  line-height: 28px;
  display: inline-block !important;
}
.burger-content .header__btn {
  color: var(--color-body);
  margin-right: 0;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  display: flex !important;
}
.burger-content .header__top-adress {
  display: inline-block !important;
}

.burger {
  cursor: pointer;
  display: none;
  width: 26px;
  position: relative;
  z-index: 1000;
  padding-bottom: 7.5px;
}
@media screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}
.burger i {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
}
.burger i::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -9px;
}
.burger i::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -9px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

.slider-next, .slider-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../img/slider-next.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s ease;
  right: -60px;
}
.slider-next:hover, .slider-prev:hover {
  opacity: 0.6;
}
@media (max-width: 1670px) {
  .slider-next, .slider-prev {
    right: 10px;
    opacity: 0.4;
  }
  .slider-next:hover, .slider-prev:hover {
    opacity: 1;
  }
}

.slider-prev {
  background-image: url("../img/slider-prev.svg");
  left: -60px;
  right: auto;
}
@media (max-width: 1670px) {
  .slider-prev {
    left: 10px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header a {
  text-decoration: none;
}
.header__top {
  background: #F8F8C4;
  padding: 12px 0;
}
.header__top-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top-body ul {
  list-style: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 45px;
       column-gap: 45px;
}
@media screen and (max-width: 1200px) {
  .header__top-body ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .header__top-body ul {
    display: none;
  }
}
.header__top-body ul a {
  transition: 0.3s ease;
}
.header__top-body ul a:hover {
  opacity: 0.6;
}
.header__top-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media (max-width: 1280px) {
  .header__top-right {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .header__top-right {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.header__phone {
  font-weight: 600;
  font-size: 18px;
  line-height: 24.59px;
  transition: 0.3s ease;
}
.header__phone:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1200px) {
  .header__phone {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .header__phone {
    display: none;
  }
}
.header__top-social {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1200px) {
  .header__top-social {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.header__top-social a {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(33, 35, 36, 0.2);
  border-radius: 100%;
  transition: 0.3s ease;
}
.header__top-social a:hover {
  opacity: 0.6;
}
.header__top-social a:first-child {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__top-social a:first-child {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .header__top-social a {
    display: none;
  }
}
.header__top-social a img {
  max-width: 18px;
}
.header__top-adress {
  font-size: 14px;
  line-height: 19.12px;
}
@media (max-width: 650px) {
  .header__top-adress {
    display: none;
  }
}
.header__body {
  background: rgba(255, 255, 204, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 11px 0;
}
@media screen and (max-width: 480px) {
  .header__body {
    display: none;
  }
}
.header__wrap {
  display: flex;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  margin-right: 50px;
  transition: 0.3s ease;
}
.header__logo:hover {
  opacity: 0.6;
}
@media screen and (max-width: 992px) {
  .header__logo {
    display: none;
  }
}
.header__logo--mob {
  display: none;
}
@media screen and (max-width: 992px) {
  .header__logo--mob {
    display: flex;
    align-items: center;
    max-width: 150px;
  }
  .header__logo--mob img {
    max-width: 100%;
  }
}
.header__btn {
  background: #C4ECB6;
  padding: 12px 20px 12px 15px;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 50px;
  transition: 0.3s ease;
}
.header__btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 992px) {
  .header__btn {
    margin-right: 30px;
  }
}
@media (max-width: 576px) {
  .header__btn {
    display: none;
  }
}
.header__slider {
  overflow: hidden;
  margin-right: 77px;
}
@media screen and (max-width: 1200px) {
  .header__slider {
    margin-right: 20px;
  }
}
.header__slider .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.header__slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  margin-left: auto;
  transition: 0.3s ease;
}
.header__slider-arrow:hover {
  opacity: 0.6;
}
.header__slide {
  transition: 0.3s ease;
}
.header__slide:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .header__slide {
    font-size: 14px;
  }
}

.home {
  padding: 230px 0 120px 0;
  background: linear-gradient(180deg, #FFFFCC 0%, #FFFFFF 100%);
  overflow: hidden;
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .home {
    padding-top: 190px;
  }
}
@media screen and (max-width: 992px) {
  .home {
    padding: 150px 0 120px 0;
  }
}
@media screen and (max-width: 480px) {
  .home {
    padding-top: 80px;
  }
}
.home::after {
  content: "";
  position: absolute;
  right: -137px;
  top: -193px;
  width: 1010px;
  height: 1012px;
  background-image: url("../img/home-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .home::after {
    top: -250px;
    right: -537px;
  }
}
@media screen and (max-width: 768px) {
  .home::after {
    right: -737px;
    top: -300px;
  }
}
@media (max-width: 541px) {
  .home::after {
    width: 810px;
    height: 812px;
  }
}
.home__body {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  position: relative;
  z-index: 1;
}
.home__wrap-top {
  margin-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .home__wrap-top {
    margin-bottom: 60px;
  }
}
.home__offer {
  font-family: "Forum";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 80px;
  line-height: 88px;
  margin-bottom: 19px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .home__offer {
    font-size: 60px;
    line-height: 68px;
  }
}
@media screen and (max-width: 768px) {
  .home__offer {
    font-size: 50px;
    line-height: 58px;
  }
}
.home__offer::after {
  content: "";
  position: absolute;
  right: -62px;
  top: -49px;
  width: 76px;
  height: 76px;
  background-image: url("../img/home-star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.home__desc {
  max-width: 427px;
  font-size: 18px;
  line-height: 27px;
  color: rgba(33, 35, 36, 0.7);
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .home__desc {
    margin-bottom: 30px;
  }
}
.home__btn {
  display: flex;
  align-items: center;
  padding: 20px 32px 20px 42px;
  background: #C4ECB6;
  border-radius: 6px;
  box-shadow: 0px 4px 0px 0px rgb(147, 197, 130);
  max-width: -moz-max-content;
  max-width: max-content;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s ease;
}
.home__btn:hover {
  opacity: 0.6;
}
.home__btn:hover {
  box-shadow: none;
}
.home__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.home__item {
  grid-column: 3 span;
  max-width: 170px;
}
@media screen and (max-width: 1200px) {
  .home__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 992px) {
  .home__item {
    grid-column: 3 span;
  }
}
@media screen and (max-width: 768px) {
  .home__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 480px) {
  .home__item {
    grid-column: 6 span;
  }
}
.home__item-img {
  max-width: 60px;
  min-width: 60px;
  height: 60px;
  margin-bottom: 16px;
}
.home__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.home__img {
  -webkit-clip-path: url(#blur);
          clip-path: url(#blur);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 1250px) {
  .home__img {
    margin-right: -100px;
  }
}
@media screen and (max-width: 1200px) {
  .home__img {
    margin-right: -150px;
  }
}
@media screen and (max-width: 992px) {
  .home__img {
    display: none;
  }
}

.services__cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.services__offer {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .services__offer {
    margin-bottom: 30px;
  }
}
.services__offer span {
  font-family: "Forum", sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 53px;
  color: #212324;
  position: relative;
  z-index: 0;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .services__offer span::after {
    display: none;
  }
  .services__offer span::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .services__offer span {
    font-size: 46px;
    line-height: 51px;
  }
}
@media screen and (max-width: 480px) {
  .services__offer span {
    font-size: 42px;
    line-height: 47px;
  }
}
.services__offer {
  text-align: center;
}
.services__offer span::before {
  background-image: url("../img/star before.svg");
  width: 112px;
  height: 37px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  left: -137px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}
.services__offer span::after {
  background-image: url("../img/star after.svg");
  width: 112px;
  height: 37px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  right: -137px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}
.services__card {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  border: solid 1px #E2E2E2;
  border-radius: 12px;
  padding: 20px;
  grid-column: 4 span;
}
@media screen and (max-width: 992px) {
  .services__card {
    grid-column: 6 span;
  }
}
@media (max-width: 550px) {
  .services__card {
    grid-column: 12 span;
  }
}
.services__card-img {
  max-height: 280px;
  min-height: 170px;
  height: auto;
  min-width: 190px;
  display: block;
  transition: 0.3s ease;
}
.services__card-img:hover {
  opacity: 0.6;
}
.services__card-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.services__card-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services__card-info {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .services__card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
@media (max-width: 550px) {
  .services__card-info {
    flex-direction: row;
  }
}
.services__card h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #212324;
  font-family: "Manrope", sans-serif;
}
.services__card h3 a {
  text-decoration: none;
  transition: 0.3s ease;
}
.services__card h3 a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 992px) {
  .services__card h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .services__card h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.services__card-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  font-family: "Manrope", sans-serif;
  background: #FFFBCA;
  padding: 4px 10px;
  border-radius: 4px;
  color: #212324;
}
@media screen and (max-width: 768px) {
  .services__card-info p {
    font-size: 14px;
    line-height: 19px;
    max-width: 84px;
  }
}
.services__card-way {
  display: flex;
  gap: 16px;
  list-style-type: none;
}
.services__card-way li {
  background: rgba(196, 236, 182, 0.25);
  padding: 4px 10px;
  border-radius: 4px;
  color: rgba(33, 35, 36, 0.7);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  font-family: "Manrope", sans-serif;
}
.services__card-price {
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 24px;
  color: #212324;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .services__card-price {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
  }
}
.services__buttons {
  display: flex;
  gap: 16px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .services__buttons {
    display: flex;
    flex-direction: column;
  }
}
.services__buttons a {
  text-decoration: none;
  color: #212324;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 23px;
  border: solid 1px #C4ECB6;
  padding: 16px 0;
  text-align: center;
  width: 100%;
  border-radius: 6px;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .services__buttons a {
    font-size: 14px;
    line-height: 21px;
  }
}
.services__buttons a:hover {
  opacity: 0.7;
}
.services__buttons a.services__sign {
  background: #C4ECB6;
}
.services__sign span {
  position: relative;
  z-index: 0;
}
.services__sign span::after {
  background-image: url("../img/star.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}
.services__sign span::before {
  background-image: url("../img/star.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.questions {
  padding: 104.21px 0;
  background: #FFFFE8;
  position: relative;
  overflow: hidden;
}
.questions::before, .questions::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24.21px;
  background-color: #FBFBFB;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  z-index: 1;
  background-image: url("../img/border.svg");
  background-position: center;
  background-size: cover 10px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  .questions {
    padding-top: 55px;
  }
}
.questions::after {
  top: auto;
  bottom: 0;
}
.questions__content {
  max-width: 500px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: 130px;
}
@media (max-width: 1500px) {
  .questions__content {
    max-width: 400px;
  }
}
@media (max-width: 1330px) {
  .questions__content {
    margin-right: 0;
  }
}
@media (max-width: 1100px) {
  .questions__content {
    max-width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .questions__content {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 480px) {
  .questions__content {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 200px;
    width: 100%;
    max-width: 100%;
  }
}
.questions__img {
  max-height: 830px;
  max-width: 828px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
}
@media (max-width: 1500px) {
  .questions__img {
    max-width: 750px;
    max-height: 752px;
  }
}
@media (max-width: 1330px) {
  .questions__img {
    max-width: 700px;
    max-height: 702px;
  }
}
@media screen and (max-width: 1200px) {
  .questions__img {
    left: -60px;
  }
}
@media (max-width: 1100px) {
  .questions__img {
    left: -150px;
  }
}
@media screen and (max-width: 992px) {
  .questions__img {
    left: -250px;
  }
}
@media (max-width: 880px) {
  .questions__img {
    left: -378px;
  }
}
@media screen and (max-width: 768px) {
  .questions__img {
    left: 50%;
    transform: translateX(-50%);
    bottom: -300px;
    height: 483px;
    width: 321px;
  }
}
.questions__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.questions__border {
  -o-object-fit: cover;
     object-fit: cover;
}
.questions__body {
  display: flex;
  gap: 127px;
  position: relative;
}
.questions__offer {
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  color: #212324;
  font-family: "Forum", sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .questions__offer {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 8px;
  }
}
.questions__desk {
  color: rgba(33, 35, 36, 0.7);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .questions__desk {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
.questions form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.questions form input {
  border: solid 1px #E2E2E2;
  border-radius: 6px;
  padding: 16px;
}
.questions form input[type=submit] {
  background: #C4ECB6;
  position: relative;
  transition: 0.3s;
}
.questions form input[type=submit]::before {
  background-image: url("../img/star.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}
.questions form input[type=submit]:hover {
  opacity: 0.7;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .info {
    margin-bottom: 90px;
    margin-top: 120px;
  }
}
.info__body {
  display: flex;
  -moz-column-gap: 100px;
       column-gap: 100px;
  margin: 0 30px;
}
@media screen and (max-width: 992px) {
  .info__body {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 100px;
  }
}
@media screen and (max-width: 480px) {
  .info__body {
    margin: 0 15px;
    row-gap: 50px;
  }
}
.info__big {
  width: 42%;
  text-align: center;
  background: #F6F6F6;
  box-shadow: 0 0 0 30px #F6F6F6;
  border: 1px solid #39ABB8;
  border-radius: 12px;
  padding: 0 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 30px;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 992px) {
  .info__big {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .info__big {
    box-shadow: 0 0 0 15px #F6F6F6;
    padding: 30px;
  }
}
.info__big a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.info__big:hover {
  opacity: 0.6;
}
.info__big-img {
  margin-top: -87px;
}
.info__big-img img {
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .info__big-img {
    max-width: 300px;
    margin: 0 auto;
    margin-top: -87px;
  }
}
.info__offer {
  text-transform: uppercase;
  font-size: 48px;
  line-height: 52px;
  font-family: "Forum";
  margin-bottom: 40px;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .info__offer {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 30px;
  }
}
.info__desc {
  font-size: 18px;
  line-height: 27px;
  color: rgba(33, 35, 36, 0.7);
  max-width: 427px;
}
@media screen and (max-width: 1200px) {
  .info__desc {
    font-size: 16px;
    line-height: 25px;
  }
}
@media screen and (max-width: 992px) {
  .info__desc {
    max-width: 100%;
  }
}
.info__items {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  width: 58%;
}
@media screen and (max-width: 992px) {
  .info__items {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .info__items {
    row-gap: 50px;
  }
}
.info__item {
  background: #F6F6F6;
  box-shadow: 0 0 0 30px #F6F6F6;
  border: 1px solid #B2ED9D;
  border-radius: 12px;
  position: relative;
  padding: 63px 40px;
  padding-right: 200px;
  display: flex;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .info__item {
    padding: 43px 30px;
    padding-right: 170px;
  }
}
@media screen and (max-width: 480px) {
  .info__item {
    flex-direction: column-reverse;
    text-align: center;
    box-shadow: 0 0 0 15px #F6F6F6;
    padding: 15px 30px 30px;
    row-gap: 30px;
  }
}
.info__item:nth-child(2) {
  border-color: #F6DC81;
  justify-content: flex-end;
  padding: 63px 38px;
  padding-left: 280px;
}
@media screen and (max-width: 1200px) {
  .info__item:nth-child(2) {
    padding-left: 240px;
  }
}
@media screen and (max-width: 992px) {
  .info__item:nth-child(2) {
    padding-left: 250px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .info__item:nth-child(2) {
    padding: 15px 30px 30px;
  }
}
.info__item:nth-child(2) .info__item-img {
  right: auto;
  left: 10px;
  top: -4px;
}
@media screen and (max-width: 480px) {
  .info__item:nth-child(2) .info__item-img {
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
  }
}
.info__item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.info__item:hover {
  opacity: 0.6;
}
.info__item-img {
  position: absolute;
  right: -56px;
  top: -8px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .info__item-img {
    max-width: 200px;
  }
  .info__item-img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .info__item-img {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    max-width: 100%;
  }
}

.blog__cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .blog__cards {
    display: none;
  }
}
.blog__card {
  grid-column: 3 span;
  border-bottom: solid 1px #C4ECB6;
  position: relative;
  transition: 0.3s ease;
}
.blog__card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .blog__card {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 992px) {
  .blog__card {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 768px) {
  .blog__card {
    grid-column: 12 span;
  }
}
.blog__card a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.blog__card:first-child {
  grid-column: 6 span;
  grid-row: 1/span 2;
}
@media screen and (max-width: 1200px) {
  .blog__card:first-child {
    grid-column: 8 span;
  }
}
@media screen and (max-width: 992px) {
  .blog__card:first-child {
    grid-column: 12 span;
  }
}
@media screen and (max-width: 768px) {
  .blog__card:first-child {
    grid-row: auto;
  }
}
.blog__card-img {
  width: 100%;
  height: 230px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1200px) {
  .blog__card-img {
    height: 220px;
  }
}
@media screen and (max-width: 768px) {
  .blog__card-img {
    height: 400px;
  }
}
@media (max-width: 550px) {
  .blog__card-img {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .blog__card-img {
    height: 250px;
  }
}
.blog__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.blog__card:first-child .blog__card-img {
  max-width: 760px;
  height: 585px;
}
@media screen and (max-width: 1200px) {
  .blog__card:first-child .blog__card-img {
    height: 568px;
  }
}
@media screen and (max-width: 992px) {
  .blog__card:first-child .blog__card-img {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .blog__card:first-child .blog__card-img {
    height: 400px;
  }
}
@media (max-width: 550px) {
  .blog__card:first-child .blog__card-img {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .blog__card:first-child .blog__card-img {
    height: 250px;
  }
}
.blog__card:first-child .blog__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.blog__card:first-child .blog__card-offer {
  display: flex;
  align-items: center;
}
.blog__card-date {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(33, 35, 36, 0.7);
  font-family: "Manrope", sans-serif;
  text-align: center;
  position: relative;
}
.blog__card-date::before {
  width: 100%;
  height: 1px;
  background: #C4ECB6;
  content: "";
  z-index: 1;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blog__card-date span {
  z-index: 1;
  position: relative;
  padding: 0 16px;
  background: white;
}
.blog__card-offer {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #212324;
  font-family: "Manrope", sans-serif;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  min-height: 48px;
}
.blog__slider-wrap {
  display: none;
}
@media screen and (max-width: 768px) {
  .blog__slider-wrap {
    display: block;
    position: relative;
  }
}
.blog__slider {
  overflow: hidden;
}

.contact__body {
  position: relative;
}
@media screen and (max-width: 992px) {
  .contact__body {
    padding-bottom: 375px;
  }
}
@media screen and (max-width: 480px) {
  .contact__body {
    padding-bottom: 325px;
  }
}
.contact__content {
  margin-top: 50px;
}
.contact__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
  width: 43.5%;
}
@media screen and (max-width: 1200px) {
  .contact__items {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .contact__items {
    width: 100%;
  }
}
.contact__item {
  grid-column: 6 span;
  min-height: 271px;
  padding: 50px 20px 20px 50px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .contact__item {
    padding: 30px 20px 20px 30px;
  }
}
@media screen and (max-width: 992px) {
  .contact__item {
    min-height: 250px;
  }
}
@media screen and (max-width: 480px) {
  .contact__item {
    grid-column: 12 span;
    border-bottom: 1px solid #E2E2E2;
    min-height: 0;
    padding: 25px 20px;
  }
}
.contact__item:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: -15.5px;
  right: -15.5px;
  width: 30px;
  height: 30px;
  background-image: url("../img/contact-center.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .contact__item:nth-child(1)::after {
    display: none;
  }
}
.contact__item:not(:nth-child(2n)) {
  border-right: 1px solid #E2E2E2;
}
@media screen and (max-width: 480px) {
  .contact__item:not(:nth-child(2n)) {
    border-right: none;
  }
}
.contact__item:not(:nth-last-child(-n+2)) {
  border-bottom: 1px solid #E2E2E2;
}
.contact--page .contact__items {
  position: relative;
}
.contact--page .contact__items::after {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 17.18px;
  background-image: url("../img/contact-star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .contact--page .contact__items::after {
    display: none;
  }
}
.contact--page .contact__item:nth-child(1)::after {
  background-image: url("../img/contact-cross.svg");
  width: 21px;
  height: 21px;
  bottom: -10.5px;
  right: -10.5px;
}
.contact__item-img {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .contact__item-img {
    margin-bottom: 25px;
  }
}
.contact__phone {
  font-size: 24px;
  line-height: 36px;
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}
.contact__phone:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .contact__phone {
    font-size: 22px;
    line-height: 34px;
  }
}
.contact__social {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.contact__social a {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 1px solid rgba(33, 35, 36, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.contact__social a:hover {
  opacity: 0.6;
}
.contact__item-text {
  font-size: 18px;
  line-height: 27px;
}
.contact__map {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 52.5%;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .contact__map {
    width: 48%;
  }
}
@media screen and (max-width: 992px) {
  .contact__map {
    width: 100%;
    height: 350px;
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 480px) {
  .contact__map {
    height: 300px;
  }
}

.top {
  margin-bottom: 50px;
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .top {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 480px) {
  .top {
    margin-bottom: 30px;
  }
}
.top__body h1 {
  font-weight: 400;
  font-size: 68px;
  line-height: 75px;
  font-family: "Forum", sans-serif;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .top__body h1 {
    font-size: 60px;
    line-height: 67px;
  }
}
@media screen and (max-width: 768px) {
  .top__body h1 {
    font-size: 50px;
    line-height: 57px;
  }
}
@media screen and (max-width: 480px) {
  .top__body h1 {
    font-size: 40px;
    line-height: 47px;
  }
}

.aioseo-breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 29px;
}
@media screen and (max-width: 992px) {
  .aioseo-breadcrumbs {
    flex-wrap: wrap;
  }
}

.aioseo-breadcrumb {
  font-weight: 300;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 17px;
  color: #9A9A8F;
}
@media screen and (max-width: 768px) {
  .aioseo-breadcrumb {
    font-size: 12px;
    line-height: 15px;
  }
}

.aioseo-breadcrumb a {
  color: #212324;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  transition: 0.3s;
}
.aioseo-breadcrumb a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .aioseo-breadcrumb a {
    font-size: 12px;
    line-height: 15px;
  }
}

.aioseo-breadcrumb-separator {
  position: relative;
  width: 12px;
  font-size: 0;
}
.aioseo-breadcrumb-separator::after {
  background-image: url(../img/separator.svg);
  width: 12px;
  height: 12px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.top--single h1 {
  font-weight: 400;
  font-size: 52px;
  line-height: 57px;
  font-family: "Forum", sans-serif;
  text-transform: uppercase;
  margin: 0;
  max-width: 793px;
}
.top--blog h1 {
  max-width: 1200px;
}
@media screen and (max-width: 992px) {
  .top--single h1 {
    font-size: 48px;
    line-height: 53px;
  }
}
@media screen and (max-width: 768px) {
  .top--single h1 {
    font-size: 37px;
    line-height: 42px;
  }
}
@media screen and (max-width: 480px) {
  .top--single h1 {
    font-size: 32px;
    line-height: 37px;
  }
}

.who {
  background: #F6F6F6;
  margin-bottom: 0;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .who {
    padding-bottom: 60px;
  }
}
.who .services__offer {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .who .services__offer {
    margin-bottom: 50px;
  }
}
.who__cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
}
@media (max-width: 800px) {
  .who__cards {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .who__cards {
    margin: 0 20px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media screen and (max-width: 480px) {
  .who__cards {
    margin: 0 10px;
    row-gap: 30px;
  }
}
.who__card {
  border: solid 1px #C4ECB6;
  border-radius: 12px;
  box-shadow: 0 0 0 20px #FFFFFF;
  padding: 30px;
  background: #FFFFFF;
  grid-column: 4 span;
}
@media screen and (max-width: 992px) {
  .who__card {
    grid-column: 6 span;
  }
}
@media (max-width: 800px) {
  .who__card {
    grid-column: 12 span;
  }
}
@media screen and (max-width: 480px) {
  .who__card {
    box-shadow: 0 0 0 10px #FFFFFF;
    padding: 20px;
  }
}
.who__card-offer {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #212324;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .who__card-offer {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 7px;
  }
}
.who__card-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(33, 35, 36, 0.7);
}
@media (max-width: 800px) {
  .who__card-desc {
    font-size: 14px;
    line-height: 21px;
  }
}

.what {
  background: linear-gradient(#F6F6F6, rgba(246, 246, 246, 0));
  position: relative;
}
.what .services__offer {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .what .services__offer {
    margin-bottom: 20px;
  }
}
.what__cards {
  display: flex;
  row-gap: 30px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: stretch;
}
@media screen and (max-width: 768px) {
  .what__cards {
    row-gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .what__cards {
    row-gap: 15px;
  }
}
.what__card {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
.what__card-number {
  min-width: 40px;
  min-height: 132px;
  font-weight: 400;
  font-size: 120px;
  line-height: 132px;
  font-family: "Forum", sans-serif;
  color: #C4ECB6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .what__card-number {
    min-width: 35px;
    min-height: 128px;
    font-size: 115px;
    line-height: 127px;
  }
}
@media screen and (max-width: 480px) {
  .what__card-number {
    min-width: 30px;
    min-height: 123px;
    font-size: 110px;
    line-height: 122px;
  }
}
.what__card-desk {
  border: 1px solid #C4ECB6;
  border-radius: 12px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  margin-top: -44px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(33, 35, 36, 0.7);
  font-family: "Manrope", sans-serif;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .what__card-desk {
    font-size: 15px;
    line-height: 23px;
    padding: 40px;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
}
@media screen and (max-width: 480px) {
  .what__card-desk {
    font-size: 13px;
    line-height: 21px;
    padding: 33px;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}

.single {
  background: linear-gradient(rgba(246, 246, 246, 0), rgb(246, 246, 246));
  margin-bottom: 0;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .single {
    padding-bottom: 60px;
  }
}
.single__video {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  margin-bottom: 102px;
  transition: 0.3s ease;
}
.single__video:hover {
  opacity: 0.8;
}
.single__video::before {
  background-image: url(../img/single__video__psevdo.svg);
  min-width: 100px;
  min-height: 100px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  background-size: 30px, 30px;
  background-position: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .single__video::before {
    min-width: 70px;
    min-height: 70px;
    background-size: 20px, 20px;
  }
}
@media screen and (max-width: 480px) {
  .single__video::before {
    min-width: 63px;
    min-height: 63px;
    background-size: 16px, 16px;
  }
}
@media screen and (max-width: 1200px) {
  .single__video {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 992px) {
  .single__video {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .single__video {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .single__video {
    margin-bottom: 40px;
  }
}
.single__video img {
  width: 100%;
}
.single__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .single__content {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }
}
@media (max-width: 1390px) {
  .single__wrap {
    max-width: 50%;
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .single__wrap {
    max-width: 100%;
    margin-left: auto;
  }
}
.single__props {
  display: flex;
  gap: 43px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.single__props p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: rgba(33, 35, 36, 0.5);
  font-family: "Manrope", sans-serif;
}
.single__props-time span {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #212324;
  font-family: "Manrope", sans-serif;
}
@media screen and (max-width: 768px) {
  .single__props-time span {
    font-size: 18px;
    line-height: 26px;
  }
}
.single__props-price span {
  color: #39ABB8;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  font-family: "Manrope", sans-serif;
}
@media screen and (max-width: 768px) {
  .single__props-price span {
    font-size: 18px;
    line-height: 26px;
  }
}
.single__wrap-desk {
  margin-bottom: 27px;
  max-width: 850px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212324;
  font-family: "Manrope", sans-serif;
}
.single__wrap-items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
@media screen and (max-width: 992px) {
  .single__wrap-items {
    row-gap: 20px;
  }
}
.single__wrap-item {
  grid-column: 3 span;
}
@media (max-width: 1250px) {
  .single__wrap-item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 992px) {
  .single__wrap-item {
    grid-column: 6 span;
  }
}
.single__wrap-item-img {
  max-width: 100%;
}
.single__wrap-item-img img {
  max-width: 100%;
}
.single__wrap-item-desk {
  max-width: 190px;
}
@media (max-width: 1390px) {
  .single__wrap-item-desk {
    max-width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .single__wrap-item-desk {
    max-width: 100%;
  }
}
.single__content-request-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single__content-request-img {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translate(-50%);
}
.single__content-request {
  display: flex;
  flex-direction: column;
  gap: 38px;
  border: solid 1px #E2E2E2;
  border-radius: 20px;
  background: #FFFFFF;
  padding: 50px 50px;
  position: relative;
  min-width: 500px;
  text-align: center;
}
.single__content-request::before {
  background-image: url(../img/single__border.svg);
  width: 30px;
  height: 30px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 97%;
}
@media screen and (max-width: 480px) {
  .single__content-request::before {
    width: 20px;
    height: 20px;
  }
}
.single__content-request::after {
  background-image: url(../img/single__border.svg);
  width: 30px;
  height: 30px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 97%;
}
@media screen and (max-width: 480px) {
  .single__content-request::after {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 1390px) {
  .single__content-request {
    max-width: 50%;
    margin-right: 0px;
  }
}
@media (max-width: 1100px) {
  .single__content-request {
    min-width: 420px;
  }
}
@media screen and (max-width: 992px) {
  .single__content-request {
    max-width: 100%;
    min-width: 100%;
  }
}
.single__content-request-buttons a {
  border-radius: 6px;
  background: #C4ECB6;
  padding: 16px 0;
  text-decoration: none;
  width: 100%;
  margin-top: 38px;
  transition: 0.3s;
}
.single__content-request-buttons a:hover {
  opacity: 0.7;
}
.single__content-request-buttons .single__content-request-button {
  background: #F4F4F4;
  margin-top: 0px;
}

.get {
  overflow: hidden;
}
.get .services__offer {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .get .services__offer {
    margin-bottom: 0px;
  }
}
.get__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .get__top {
    justify-content: center;
    margin-bottom: 30px;
  }
}
.get__img {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .get__img {
    display: none;
  }
}
.get__slider-wrap {
  position: relative;
  padding-bottom: 40px;
}
.get__slide {
  background: rgba(57, 171, 184, 0.1);
  padding: 40px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 480px) {
  .get__slide {
    padding: 30px 20px;
  }
}
.get__slide-img {
  max-width: 60px;
  min-width: 60px;
  height: 60px;
}
.get__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.get__slide-desc {
  color: rgba(33, 35, 36, 0.7);
  line-height: 24px;
}
.get .swiper-scrollbar {
  left: 0 !important;
  width: 100% !important;
  bottom: 0 !important;
  height: 2px !important;
  background-color: rgba(0, 0, 0, 0.05);
}
.get .swiper-scrollbar-drag {
  background: #C4ECB6;
}

.about .services__offer {
  margin-bottom: 108px;
}
@media screen and (max-width: 768px) {
  .about .services__offer {
    margin-bottom: 30px;
  }
}
.about__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .about__body {
    display: flex;
    flex-direction: column;
    gap: 70px;
  }
}
.about__content {
  max-width: 50%;
}
@media screen and (max-width: 992px) {
  .about__content {
    max-width: 100%;
  }
}
.about__content-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .about__content-desc {
    font-size: 13px;
    line-height: 21px;
  }
}
.about__content-bottom {
  background: rgba(57, 171, 184, 0.1);
  border-radius: 12px;
  width: 100%;
  padding: 0 50px 50px 50px;
}
@media screen and (max-width: 768px) {
  .about__content-bottom {
    padding: 0 30px 30px 30px;
  }
}
.about__tabs {
  display: flex;
  gap: 37px;
  position: relative;
  top: -25px;
}
@media screen and (max-width: 768px) {
  .about__tabs {
    gap: 18px;
    top: -17px;
  }
}
.about__tab {
  border: 1px solid #39ABB8;
  border-radius: 8px;
  padding: 11.5px 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  background: #FFFFFF;
  transition: 0.3s;
}
.about__tab:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .about__tab {
    padding: 8px 17px;
    font-size: 18px;
    line-height: 25px;
  }
}
.about__tab.active {
  background: #39ABB8;
  color: #FFFFFF;
}
.about__bottom-descs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .about__bottom-descs {
    font-size: 13px;
    line-height: 21px;
  }
}
.about__bottom-descs p {
  display: none;
}
.about__bottom-descs p.active {
  display: block;
}
.about__order {
  max-width: 50%;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  background: #C4ECB6;
  padding: 0 40px 40px;
  box-shadow: 0 0 0 30px #C4ECB6;
  max-height: 100%;
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .about__order {
    max-width: 400px;
  }
}
@media screen and (max-width: 992px) {
  .about__order {
    max-width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .about__order {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 480px) {
  .about__order {
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 0 0 0 10px #C4ECB6;
    padding: 0 10px 10px;
    max-width: 100%;
  }
}
.about__order-offer {
  text-align: center;
  font-family: "Forum";
  text-transform: uppercase;
  font-size: 40px;
  line-height: 44px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .about__order-offer {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
.about__order form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .about__order form {
    gap: 13px;
  }
}
.about__order p {
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
  margin-top: 16px;
}
@media screen and (max-width: 480px) {
  .about__order p {
    margin-top: 10px;
  }
}
.about__order a {
  text-decoration: none;
  color: #39ABB8;
  transition: 0.3s;
}
.about__order a:hover {
  opacity: 0.7;
  cursor: pointer;
}
.about form input {
  border: solid 1px #E2E2E2;
  border-radius: 6px;
  padding: 16px;
}
.about form input[type=submit] {
  background: #39ABB8;
  position: relative;
  transition: 0.3s;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 24px;
}
.about form input[type=submit]::before {
  background-image: url("../img/star.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  content: "";
  z-index: 1;
  background-size: contain;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}
.about form input[type=submit]:hover {
  opacity: 0.7;
  cursor: pointer;
}
.about__order-img {
  position: relative;
  margin-top: -60px;
  margin-bottom: 50px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about__order-img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .about__order-img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .about__order-img img {
    max-width: 290px;
  }
}
@media screen and (max-width: 480px) {
  .about__order-img img {
    max-width: 150px;
  }
}

.other {
  overflow: hidden;
}
.other__slider-wrap {
  position: relative;
}
.other__slider {
  overflow: hidden;
}
.other .services__card {
  max-width: 100%;
  height: 100%;
}
.other .swiper-slide {
  height: auto;
}

.blog.blog__content {
  /* margin-bottom: 50px; */
}
.blog__button-body {
  margin-bottom: 120px;
  text-align: center;
}
.blog__button-body a {
  border: solid 2px #C4ECB6;
  border-radius: 6px;
  padding: 15px 57.5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  max-width: 222px;
  transition: 0.3s;
}
.blog__button-body a:hover {
  background: #C4ECB6;
  color: white;
}
.blog__tabs {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.blog__tabs-body {
  border: solid 1px #F5F6F4;
  border-radius: 12px;
  padding: 10px;
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: rgb(245, 246, 244);
  align-items: center;
}
@media screen and (max-width: 480px) {
  .blog__tabs-body {
    padding: 5px;
    gap: 10px;
  }
}
.blog__tabs-body a {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: rgba(33, 35, 36, 0.7);
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.3s;
}
.blog__tabs-body a:hover {
  color: #212324;
}
@media screen and (max-width: 480px) {
  .blog__tabs-body a {
    padding: 4px 8px;
    font-size: 14px;
    line-height: 19px;
  }
}
.blog__tabs-body a.active {
  background: #C4ECB6;
  border-radius: 6px;
  color: #212324;
  padding: 8px 12px;
  transition: 0.3s;
}
.blog__tabs-body a.active:hover {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .blog__tabs-body a.active {
    padding: 4px 8px;
  }
}

.footer {
  background: #1A222B;
  padding: 120px 0 41px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 41px 0;
  }
}
.footer::after {
  background-image: url("../img/footer__after.svg");
  width: 764px;
  height: 738px;
  position: absolute;
  content: "";
  background-size: contain;
  top: 0;
  background-repeat: no-repeat;
  right: -381px;
  z-index: 0;
  animation: spin 120s linear 0s infinite;
}
@media screen and (max-width: 1200px) {
  .footer::after {
    right: -481px;
  }
}
@media screen and (max-width: 992px) {
  .footer::after {
    display: none;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.footer__body {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-right: 260px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .footer__body {
    margin-right: 160px;
  }
}
@media screen and (max-width: 992px) {
  .footer__body {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__logo {
  display: inline-block;
  transition: 0.3s;
}
.footer__logo:hover {
  opacity: 0.5;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1200px) {
  .footer__top {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__top {
    align-items: center;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 210px;
}
@media screen and (max-width: 768px) {
  .footer__left {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer__left {
    gap: 10px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .footer__content {
    gap: 80px;
  }
}
@media screen and (max-width: 992px) {
  .footer__content {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__content {
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__number {
  display: inline-block;
}
.footer__number a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  font-family: "Manrope", sans-serif;
  transition: 0.3s;
}
.footer__number a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 992px) {
  .footer__number a {
    font-size: 21px;
    line-height: 33px;
  }
}
.footer__socials {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__socials {
    justify-content: center;
  }
}
.footer__socials a {
  border: solid 2px rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer__socials a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 992px) {
  .footer__socials a {
    width: 32px;
    height: 32px;
  }
}
.footer__socials img {
  width: 17px;
  height: 18px;
}
.footer__mail {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  transition: 0.3s;
}
.footer__mail:hover {
  color: #FFFFFF;
}
.footer__adress {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  font-family: "Manrope", sans-serif;
}
@media screen and (max-width: 992px) {
  .footer__adress {
    font-size: 15px;
    line-height: 24px;
  }
}
.footer__time {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Manrope", sans-serif;
  list-style-type: none;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .footer__nav {
    gap: 25px;
    row-gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    justify-items: center;
    gap: 20px;
  }
}
.footer__nav div {
  grid-column: 4 span;
  max-width: 280px;
}
@media screen and (max-width: 1200px) {
  .footer__nav div {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav div {
    grid-column: 12 span;
    max-width: 100%;
  }
}
.footer__nav a {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  list-style-type: none;
  text-decoration: none;
  transition: 0.3s;
}
.footer__nav a:hover {
  opacity: 0.5;
}
.footer__nav li {
  margin-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .footer__nav li {
    margin-bottom: 10px;
  }
}
.footer__nav-offer {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.5);
  list-style-type: none;
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .footer__nav-offer {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .footer__nav-offer {
    margin-bottom: 5px;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 830px) {
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom ul {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .footer__bottom ul {
    gap: 40px;
  }
}
@media screen and (max-width: 992px) {
  .footer__bottom ul {
    gap: 25px;
  }
}
@media screen and (max-width: 480px) {
  .footer__bottom ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.footer__bottom ul a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.3s;
}
.footer__bottom ul a:hover {
  color: #FFFFFF;
}
.footer__bottom-dev p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom-dev {
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer__bottom-dev a {
  transition: 0.3s;
}
.footer__bottom-dev a:hover {
  opacity: 0.5;
  cursor: pointer;
}

.page__body {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.page__body a {
  transition: 0.3s ease;
}

.page__body a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.page__body ul {
  padding-left: 20px;
}

.page__img {
  margin-bottom: 20px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.3s ease;
  display: block;
}
.page__img:hover {
  opacity: 0.8;
}
.page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page .blog__card-date {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page__img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .page__img {
    height: 250px;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  font-size: 12px;
  margin: 0 !important;
  color: #b61818;
}

.modal {
  display: none;
}

.modal .services__offer {
  font-family: "Forum", sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 53px;
  color: #212324;
  position: relative;
  z-index: 0;
  display: block;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modal .services__offer {
    font-size: 46px;
    line-height: 51px;
  }
}
@media screen and (max-width: 480px) {
  .modal {
    padding: 20px;
  }
  .modal .services__offer {
    font-size: 35px;
    line-height: 40px;
  }
}

.modal form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}