@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100dvh;
  min-width: 320px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
  resize: none;
}

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

button {
  cursor: pointer;
}

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

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  font-size: inherit;
  color: inherit;
  display: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6, p, address, cite, span, ul, li {
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
}

/*-----------------------------------обнуляющие стили--------------------------------*/
/*----------------------------------Шрифты--------------------------------*/
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format(woff2);
  font-weight: 500;
  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-Bold.woff2") format(woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format(woff2);
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/*----------------------------------Шрифты--------------------------------*/
/*----------------------------------Переменные--------------------------------*/
:root {
  --color-black: #141414;
  --color-white: #FFFFFF;
  --color-green: #00C6BF;
  --color-blue: #017CC1;
  --border-radius: 5px;
  --font-family-base: "Montserrat", Arial, sans-serif;
  --container-width: 1520px;
}

/*----------------------------------Переменные--------------------------------*/
/*----------------------------------global--------------------------------*/
body.lock {
  overflow: hidden;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  background: var(--color-white);
}

.main {
  flex: 1 1 auto;
  position: relative;
  z-index: 2;
}

._container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 20px;
}

section {
  padding: 35px 0px;
}
@media (max-width: 768px) {
  section {
    padding: 10px 0px;
  }
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}
.wrapper__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.title {
  margin-bottom: 29px;
  font-weight: 700;
}
.title h1 {
  font-size: clamp(24px, 3.7333333333vw, 56px);
  line-height: 114%;
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .title h1 {
    margin-bottom: 16px;
  }
}
.title h3 {
  font-size: clamp(16px, 1.6vw, 24px);
  color: var(--color-white);
  line-height: 171%;
  background-color: var(--color-green);
  display: inline;
  border-radius: var(--border-radius);
  padding: 5px;
}
@media (max-width: 768px) {
  .title {
    margin-bottom: 16px;
  }
}

.subtitle {
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 100%;
  color: var(--color-green);
  margin-bottom: 40px;
  font-weight: 700;
}

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 880px;
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .buttons {
    flex-wrap: wrap;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .buttons {
    margin-bottom: 24px;
  }
}

.button {
  display: inline-block;
  padding: 16px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.button-green {
  background-color: var(--color-green);
  color: #062B32;
  border: 1px solid #333333;
}
@media (hover: hover) {
  .button-green:hover {
    color: var(--color-white);
    background-color: #099793;
  }
}

.button-blue {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 10px 26px 0 rgba(255, 77, 98, 0.2);
}
@media (hover: hover) {
  .button-blue:hover {
    background-color: var(--collor-white);
  }
}

.license {
  border: 1px solid #bee1f6;
  border-radius: 5px;
  padding: 20px 41px;
  position: relative;
}
.license__icon {
  border-radius: 50%;
  background-color: #f0f6f9;
  width: 73px;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 68px;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 13px 22px 0 rgba(0, 80, 126, 0.08), 0 6px 8px 0 rgba(0, 55, 86, 0.1);
  padding: 19px;
}
@media (hover: hover) {
  .license:hover .license__icon {
    opacity: 1;
    scale: 1.1;
  }
}
@media (max-width: 768px) {
  .license {
    padding: 20px;
  }
}

.messangers {
  display: flex;
  align-items: center;
  gap: 12px;
}

/*----------------------------------global--------------------------------*/
/*----------------------------------main-section--------------------------------*/
.main-section {
  margin-top: 92px;
}
@media (max-width: 768px) {
  .main-section {
    margin-top: 30px;
  }
}
.main-section__content {
  position: relative;
}
.main-section__content > p {
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 171%;
  margin-bottom: 67px;
  max-width: 989px;
}
@media (max-width: 768px) {
  .main-section__content > p {
    margin-bottom: 32px;
  }
}
.main-section__blocks {
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 49px 60px 49px 90px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
@media (max-width: 1280px) {
  .main-section__blocks {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .main-section__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-section__block img {
  margin-bottom: 23px;
}
.main-section__block span {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
  color: var(--color-blue);
  margin-bottom: 16px;
}
.main-section__block p {
  font-size: clamp(12px, 0.9333333333vw, 14px);
  line-height: 129%;
}
.main-section__block:last-child {
  flex-basis: 615px;
}
.main-section__arrow {
  position: absolute;
  top: -130px;
  right: 19px;
  z-index: -1;
}
@media (max-width: 1280px) {
  .main-section__arrow {
    display: none;
  }
}

/*----------------------------------main-section--------------------------------*/
/*----------------------------------card--------------------------------*/
.card {
  height: 100%;
}
.card img {
  margin-bottom: 20px;
  height: 380px;
}
.card h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 10px;
  color: var(--color-green);
}
.card p {
  font-size: 18px;
  line-height: 156%;
}

/*----------------------------------card--------------------------------*/
/*---------------------------------------sliders----------------------------*/
.slider {
  overflow: hidden;
}
.slider__content {
  position: relative;
  overflow: hidden;
}
.slider__buttons {
  max-width: 300px;
  position: absolute;
  top: 30px;
  left: 94.5%;
}
@media (max-width: 1280px) {
  .slider__buttons {
    left: 92%;
  }
}
@media (max-width: 768px) {
  .slider__buttons {
    top: 90%;
    left: 80px;
  }
}

.slider-detox img {
  width: 100%;
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .slider-detox {
    padding-bottom: 100px;
  }
}

/*---------------------------------------параметры чтобы слайды имели одинаковую высоту----------------------------*/
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  transition: all 0.5s ease;
}

/*---------------------------------------параметры чтобы слайды имели одинаковую высоту----------------------------*/
.slider-detox .swiper-button-next {
  right: -50px;
}

.slider-detox .swiper-button-prev {
  left: -38px;
}

.slider-detox .swiper-button-next::after,
.slider-detox .swiper-button-prev::after {
  font-size: 20px;
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: var(--color-white);
  transition: all 0.3s;
}

.slider-detox .swiper-button-next.swiper-button-disabled::after,
.slider-detox .swiper-button-prev.swiper-button-disabled::after {
  background-color: var(--color-white);
  color: var(--color-green);
  transition: all 0.3s;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  transition: all 0.3s;
}

/*---------------------------------------sliders----------------------------*/
/*----------------------------------contacts--------------------------------*/
.contacts {
  position: relative;
  margin-bottom: 26px;
  margin-top: 37px;
}
@media (max-width: 768px) {
  .contacts {
    margin-bottom: 50px;
  }
}
.contacts__map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .contacts__map iframe {
    height: 390px;
  }
}
.contacts__block {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  width: 424px;
  color: #414141;
  padding: 49px 20px;
  position: relative;
  z-index: 2;
  margin-top: 36px;
}
.contacts__block_tel {
  margin-bottom: 30px;
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 24px);
}
@media (max-width: 768px) {
  .contacts__block_tel {
    margin-bottom: 20px;
  }
}
.contacts__block_mail {
  font-size: clamp(14px, 1.2vw, 18px);
  text-decoration: underline;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .contacts__block_mail {
    margin-bottom: 16px;
  }
}
.contacts__block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 144%;
  margin-bottom: 5px;
}
.contacts__block address {
  margin-bottom: 25px;
  font-size: clamp(14px, 1.2vw, 18px);
}
@media (max-width: 768px) {
  .contacts__block {
    width: 300px;
    margin-top: 50px;
    padding: 20px;
  }
}

/*----------------------------------contacts--------------------------------*/
/*----------------------------------footer--------------------------------*/
.footer {
  padding: 20px 0px;
  position: relative;
  z-index: 2;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer__body {
    justify-content: center;
  }
}
.footer p:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/*----------------------------------footer--------------------------------*//*# sourceMappingURL=styles.css.map */