@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

body {
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  font-optical-sizing: auto;
  line-height: normal;
  color: #545454;
}
@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1426px;
    margin-right: auto;
    margin-left: auto;
  }
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  scroll-padding-top: 104px;
}
@media (min-width: 1024px) {
  .section {
    scroll-margin-top: 144px;
  }
}
@media (min-width: 1280px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.btn {
  display: inline-flex;
  justify-content: center;
  padding: 14px 42px;
  border-radius: 6px;
  border-width: 0;
  color: #fff;
  line-height: normal;
  transition-duration: 0.2s;
  transition-property: background-color, transform;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .btn {
    font-size: 18px;
  }
}
.btn-primary {
  background-color: #00B8D4;
}
.btn-primary:hover {
  background-color: #009BB2;
}
.btn-primary:active {
  transform: translateY(2px);
}

.general-logo {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 300;
}
.general-logo .logo__img {
  margin-right: 4px;
  padding: 4px 4px 4px 0;
  border-right: 1px solid #D1D1D1;
}
.general-logo .logo__description {
  font-weight: 200;
  text-align: center;
}
.general-logo p {
  display: flex;
  flex-direction: column;
}

.link__underline {
  position: relative;
  font-weight: 300;
  transition-duration: 0.1s;
}
.link__underline:before, .link__underline:after {
  content: "";
  position: absolute;
  top: 100%;
  width: 50%;
  height: 1px;
  background-color: #00B8D4;
  opacity: 0;
  transition-duration: 0.25s;
}
.link__underline:before {
  left: 0;
  transform: translateX(-150%);
}
.link__underline:after {
  left: 50%;
  transform: translateX(150%);
}
.link__underline:hover {
  text-shadow: 0.25px 0 rgb(84, 84, 84), -0.25px 0 rgb(84, 84, 84);
}
.link__underline:hover:before, .link__underline:hover:after {
  opacity: 1;
  transform: translateX(0);
}

.link {
  position: relative;
  color: #00B8D4;
  font-weight: 300;
}
.link:before, .link:after {
  content: "";
  position: absolute;
  top: 100%;
  width: 50%;
  height: 1px;
  background-color: #00B8D4;
  transition-duration: 0.25s;
}
.link:before {
  left: 0;
}
.link:after {
  left: 50%;
}
.link:hover:before, .link:hover:after {
  opacity: 0;
}
.link:hover:before {
  transform: translateX(-100%);
}
.link:hover:after {
  transform: translateX(100%);
}

.section-title {
  display: flex;
  flex-direction: column;
}
.section-title .title-name {
  text-align: center;
}
.section-title .title-description {
  text-align: right;
}

.btn-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .btn-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 104px;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  transition-duration: 0.25s;
  transition-timing-function: ease-out;
  z-index: 3;
}
@media (min-width: 1024px) {
  header {
    height: 144px;
  }
}
header.header-to-top {
  transform: translateY(-110%);
}
header .container {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__logo .logo__img {
  height: 56px;
}
@media (min-width: 1024px) {
  .header__logo .logo__img {
    height: 80px;
  }
}
.header__logo .logo__img img {
  height: 100%;
}
.header__logo .logo__name {
  margin-bottom: -4px;
  font-size: 24px;
  letter-spacing: 0.862px;
}
@media (min-width: 1024px) {
  .header__logo .logo__name {
    font-size: 41px;
    letter-spacing: 1.436px;
  }
}
.header__logo .logo__description {
  font-size: 9px;
  letter-spacing: 0.182px;
}
@media (min-width: 1024px) {
  .header__logo .logo__description {
    font-size: 15px;
    letter-spacing: 0.304px;
  }
}
@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    left: 0;
    top: 104px;
    width: 100%;
    height: calc(100svh - 104px);
    padding-top: 60px;
    padding-bottom: 20px;
    background-color: #fff;
    text-align: center;
    overflow-y: auto;
    transform: translateX(-100%);
    transition-duration: 0.25s;
  }
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
  }
}
.header__nav-list {
  display: flex;
}
@media (max-width: 1023px) {
  .header__nav-list {
    flex-direction: column;
    margin-bottom: 60px;
    row-gap: 34px;
  }
}
@media (min-width: 1024px) {
  .header__nav-list {
    flex-grow: 1;
    justify-content: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.menu-toggle {
  position: relative;
  height: 32px;
  width: 32px;
  padding: 0;
  z-index: 10;
  overflow: hidden;
  background-color: transparent;
  border-width: 0;
}
.menu-toggle:focus, .menu-toggle:active {
  outline: none;
}
.menu-toggle:before, .menu-toggle:after {
  content: "";
  transform: rotate(0);
}
.menu-toggle:before, .menu-toggle:after, .menu-toggle span {
  position: absolute;
  left: 2px;
  width: 100%;
  height: 2px;
  transition-duration: 0.25s;
  background-color: #00B8D4;
  border-radius: 8px;
}
.menu-toggle:before {
  top: 7px;
}
.menu-toggle:after {
  bottom: 7px;
}
.menu-toggle span {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.show-menu {
  overflow: hidden;
}
.show-menu header {
  background-color: rgb(255, 255, 255);
}
.show-menu .header__nav {
  transform: translateX(0);
}
.show-menu .menu-toggle span {
  left: 100%;
}
.show-menu .menu-toggle:before {
  top: 15px;
  height: 3px;
  width: 90%;
  transform: rotate(45deg);
}
.show-menu .menu-toggle:after {
  bottom: 14px;
  height: 3px;
  width: 90%;
  transform: rotate(-45deg);
}

.hero {
  padding-top: 154px;
  padding-bottom: 44px;
  background-image: url("../images/hero-decor.svg");
  background-repeat: no-repeat;
  background-position: center top 32px;
  background-size: 183%;
}
@media (min-width: 768px) {
  .hero {
    padding-bottom: 0;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 194px;
  }
}
@media (min-width: 1280px) {
  .hero {
    background-size: 1100px;
    background-position: right -270px top -40px;
  }
}
@media (min-width: 768px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
  }
}
.hero__title {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .hero__title {
    margin-bottom: 32px;
    padding-top: 60px;
    padding-left: 50px;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    padding-top: 140px;
    padding-left: 0;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    padding-top: 180px;
  }
}
.hero__title-text {
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 300;
  color: #929292;
}
@media (min-width: 1280px) {
  .hero__title-text {
    font-size: 22px;
  }
}
.hero__title h1 {
  display: grid;
  line-height: 0.9;
  text-transform: uppercase;
}
.hero__title-name {
  margin-bottom: 6px;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 2.666px;
  color: #00B8D4;
}
@media (min-width: 1280px) {
  .hero__title-name {
    font-size: 142px;
    line-height: 0.9;
  }
}
.hero__title-description {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2.141px;
}
@media (min-width: 1280px) {
  .hero__title-description {
    font-size: 42px;
    line-height: 0.9;
  }
}
.hero__img {
  display: block;
  width: 300px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .hero__img {
    grid-row: span 2;
  }
}
@media (min-width: 1280px) {
  .hero__img {
    width: 440px;
    margin-right: 60px;
  }
}
@media (min-width: 1440px) {
  .hero__img {
    width: 540px;
  }
}
.hero__description {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  row-gap: 18px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px;
  background-color: #fff;
  color: #020202;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}
@media (min-width: 768px) {
  .hero__description {
    margin-right: 0;
    margin-left: 40px;
  }
}
@media (min-width: 1280px) {
  .hero__description {
    max-width: 600px;
    margin-left: 0;
    padding-left: 0;
    align-items: flex-start;
    font-size: 20px;
    background-color: transparent;
  }
}

.about-glp {
  background-color: #F0F0F0;
}
.about-glp .container {
  display: grid;
  grid-row-gap: 40px;
}
@media (min-width: 768px) {
  .about-glp .container {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .about-glp .container {
    grid-template-columns: 0.85fr 1fr;
    grid-column-gap: 48px;
  }
}
@media (min-width: 1280px) {
  .about-glp .container {
    grid-template-columns: 624px 1fr;
    grid-column-gap: 180px;
  }
}
.about-glp__section-title {
  row-gap: 14px;
  font-size: 17px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.882px;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .about-glp__section-title {
    row-gap: 24px;
    font-size: 30px;
    letter-spacing: 1.572px;
  }
}
.about-glp__section-title .title-name {
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 1.098px;
  color: #00B8D4;
}
@media (min-width: 1280px) {
  .about-glp__section-title .title-name {
    font-size: 104px;
    letter-spacing: 1.957px;
  }
}
.about-glp__img-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  padding: 26px 45px 0;
  background-color: #fff;
  border-radius: 12px;
}
@media (min-width: 1280px) {
  .about-glp__img-wrapper {
    padding: 45px 95px 0;
    border-radius: 20px;
  }
}
.about-glp__text-wrapper {
  display: grid;
  grid-row-gap: 40px;
  font-weight: 300;
}
@media (min-width: 1280px) {
  .about-glp__text-wrapper {
    max-width: 546px;
    grid-row-gap: 60px;
    padding-top: 68px;
    line-height: 1.6;
  }
}
@media (min-width: 1440px) {
  .about-glp__text-wrapper {
    grid-row-gap: 80px;
  }
}
.about-glp__text-wrapper h3 {
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2.141px;
  text-transform: uppercase;
  color: #00B8D4;
}
@media (min-width: 1280px) {
  .about-glp__text-wrapper h3 {
    max-width: 80%;
  }
}

.options {
  overflow: hidden;
}
.options__section-title {
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 1.867px;
  color: #020202;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .options__section-title {
    margin-bottom: 24px;
    font-size: 38px;
  }
}
.options__section-title span {
  color: #00B8D4;
  font-weight: 400;
}
.options__list-wrapper {
  display: grid;
  grid-row-gap: 100px;
}
@media (min-width: 768px) {
  .options__list-wrapper {
    margin-bottom: 46px;
  }
}
@media (min-width: 1024px) {
  .options__list-wrapper {
    height: 580px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1440px) {
  .options__list-wrapper {
    margin-bottom: 72px;
  }
}
.options__section-description {
  max-width: 484px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 300;
}
.options__list-item {
  position: relative;
}
@media (min-width: 1024px) {
  .options__list-item {
    display: flex;
    align-items: flex-end;
  }
}
.options__list-item-text {
  padding: 22px 12px;
  border-radius: 12px;
  background-color: #D9D9D9;
  font-weight: 300;
}
@media (min-width: 768px) {
  .options__list-item-text {
    position: relative;
    padding: 32px;
    z-index: 2;
  }
}
@media (min-width: 1024px) {
  .options__list-item-text {
    position: absolute;
    top: 82px;
    width: 540px;
    padding: 20px;
    transition-duration: 0.25s;
    opacity: 0;
  }
}
@media (min-width: 1280px) {
  .options__list-item-text {
    width: 686px;
    padding: 32px;
  }
}
@media (min-width: 1440px) {
  .options__list-item-text {
    top: 88px;
  }
}
.options__list-item-text .inner {
  position: relative;
  display: grid;
  grid-row-gap: 32px;
  padding: 22px 12px;
  border-radius: 8px;
  border: 1px solid #FFF;
  z-index: 1;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .options__list-item-text .inner {
    grid-row-gap: 20px;
  }
}
@media (min-width: 1440px) {
  .options__list-item-text .inner {
    padding: 28px;
  }
}
.options__list-item-text .inner:after {
  content: "";
  position: absolute;
  inset: 0 -1px -1px 0;
  background: linear-gradient(143deg, rgba(255, 255, 255, 0.48) 12.6%, rgba(255, 255, 255, 0) 92.68%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 8px;
  z-index: -1;
}
.options__list-item-text h3 {
  margin-bottom: 26px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2.141px;
  text-transform: uppercase;
}
.options__list-item-text .h4 {
  margin-bottom: 8px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #00B8D4;
}
.options__list-item .options__list-item-img {
  position: absolute;
  width: 206px;
  height: 298px;
  z-index: 2;
}
.options__list-item .options__list-item-img img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1024px) {
  .options__list-item .options__list-item-img {
    transition-duration: 0.5s;
  }
}
.options__list-item:nth-child(1) {
  padding-top: 190px;
}
@media (min-width: 768px) {
  .options__list-item:nth-child(1) {
    padding-top: 80px;
    padding-left: 200px;
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(1) {
    padding-left: 350px;
  }
}
.options__list-item:nth-child(1) .options__list-item-img {
  top: 0;
  right: -20px;
}
@media (min-width: 768px) {
  .options__list-item:nth-child(1) .options__list-item-img {
    top: 50px;
    right: auto;
    left: 0;
    width: 210px;
    height: 400px;
    transform: rotate(-16deg);
  }
}
@media (min-width: 1024px) {
  .options__list-item:nth-child(1) .options__list-item-img {
    transform: rotate(0) scale(1);
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(1) .options__list-item-img {
    top: 35px;
    left: 121px;
    width: 220px;
    height: 482px;
  }
}
@media (min-width: 1024px) {
  .options__list-item:nth-child(1) .options__list-item-text {
    left: 200px;
    transform: translateX(-100%);
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(1) .options__list-item-text {
    left: 380px;
  }
}
@media (min-width: 1024px) {
  .options__list-item:nth-child(1) .tab-button {
    left: 0;
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(1) .tab-button {
    left: 130px;
  }
}
.options__list-item:nth-child(2) {
  padding-bottom: 148px;
}
@media (min-width: 768px) {
  .options__list-item:nth-child(2) {
    padding-top: 80px;
    padding-right: 200px;
    padding-bottom: 0;
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(2) {
    padding-right: 350px;
  }
}
.options__list-item:nth-child(2) .options__list-item-img {
  bottom: 0;
  right: -20px;
}
@media (min-width: 768px) {
  .options__list-item:nth-child(2) .options__list-item-img {
    top: 50px;
    right: 32px;
    width: 184px;
    height: 400px;
    transform: rotate(16deg);
  }
}
@media (min-width: 1024px) {
  .options__list-item:nth-child(2) .options__list-item-img {
    right: 12px;
    transform: rotate(0) scale(1);
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(2) .options__list-item-img {
    top: 42px;
    right: 0;
    width: 220px;
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .options__list-item:nth-child(2) .options__list-item-text {
    right: 200px;
    transform: translateX(100%);
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(2) .options__list-item-text {
    right: 230px;
  }
}
@media (min-width: 1024px) {
  .options__list-item:nth-child(2) .tab-button {
    right: 0;
  }
}
@media (min-width: 1440px) {
  .options__list-item:nth-child(2) .tab-button {
    right: 11px;
  }
}
@media (max-width: 1023px) {
  .options__list-item:nth-child(2) .inner > div:last-of-type {
    padding-right: 94px;
  }
}
@media (min-width: 1024px) {
  .options__list-item.active .options__list-item-text {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (min-width: 1024px) {
  .options__list-item.active:nth-child(1) .options__list-item-img {
    transform: scale(1.1) rotate(-12deg);
  }
}
@media (min-width: 1440px) {
  .options__list-item.active:nth-child(1) .options__list-item-img {
    transform: scale(1.2) rotate(-16deg);
  }
}
@media (min-width: 1024px) {
  .options__list-item.active:nth-child(2) .options__list-item-img {
    transform: scale(1.1) rotate(12deg);
  }
}
@media (min-width: 1440px) {
  .options__list-item.active:nth-child(2) .options__list-item-img {
    transform: scale(1.2) rotate(16deg);
  }
}
@media (max-width: 1023px) {
  .options .tab-button {
    display: none;
  }
}
@media (min-width: 1024px) {
  .options .tab-button {
    position: absolute;
    bottom: 50px;
    width: 200px;
    transition-timing-function: ease-out;
    transition-duration: 0.4s;
    z-index: 2;
  }
}
@media (min-width: 1440px) {
  .options .tab-button {
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .options .tab-button.active {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-24px);
  }
}

.how-it-works {
  background-color: #F0F0F0;
}
.how-it-works__section-title {
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 1.867px;
  text-transform: uppercase;
  color: #020202;
}
@media (min-width: 768px) {
  .how-it-works__section-title {
    max-width: 534px;
    font-size: 36px;
    letter-spacing: 1.867px;
  }
}
.how-it-works__section-title .title-name {
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 2.325px;
  color: #00B8D4;
}
@media (min-width: 768px) {
  .how-it-works__section-title .title-name {
    font-size: 98px;
    letter-spacing: 2.325px;
  }
}
.how-it-works__list {
  display: grid;
  grid-row-gap: 20px;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .how-it-works__list {
    grid-column-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .how-it-works__list {
    margin-bottom: 52px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.how-it-works__list-item {
  padding: 20px 20px 40px;
  border-radius: 20px;
  background-color: #FFF;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 300;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 254px;
  box-shadow: 0 2px 10px 0 rgba(0, 184, 212, 0);
  transition-duration: 0.5s;
}
.how-it-works__list-item.active {
  box-shadow: 0 2px 10px 0 rgba(0, 184, 212, 0.7);
}
.how-it-works__list-item .num {
  display: inline-block;
  margin-bottom: 178px;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #00B8D4;
}
.how-it-works__list-item-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #020202;
}
.how-it-works__list-item.health-assessment {
  background-image: url("../images/health.webp");
}
.how-it-works__list-item.consultation {
  background-image: url("../images/consultation.webp");
}
.how-it-works__list-item.treatment {
  background-image: url("../images/tablets.webp");
  background-position: right top 40px;
}
.how-it-works__list-item.support {
  background-image: url("../images/support.webp");
}
.how-it-works__description {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.advantages__section-title {
  display: grid;
  margin-bottom: 42px;
  font-size: 32px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 1.867px;
  text-transform: uppercase;
  text-align: center;
  color: #020202;
}
@media (min-width: 768px) {
  .advantages__section-title {
    margin-bottom: 68px;
    grid-row-gap: 12px;
    font-size: 38px;
  }
}
.advantages__section-title strong {
  color: #00B8D4;
  font-weight: 400;
}
.advantages__list {
  display: flex;
  flex-direction: column;
  grid-row-gap: 80px;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .advantages__list {
    flex-direction: row;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1280px) {
  .advantages__list {
    margin-bottom: 80px;
    justify-content: space-around;
  }
}
.advantages__list-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 1280px) {
  .advantages__list-item {
    width: 290px;
    font-size: 16px;
  }
}
.advantages__list-item-img {
  width: 120px;
  height: 120px;
  margin-bottom: 22px;
  border-radius: 100%;
  border: 2px solid #00B8D4;
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1280px) {
  .advantages__list-item-img {
    width: 160px;
    height: 160px;
    margin-bottom: 32px;
    background-size: 80px;
  }
}
.advantages__list-item-img.item-care {
  background-image: url("../images/care.svg");
}
.advantages__list-item-img.item-team {
  background-image: url("../images/team.svg");
}
.advantages__list-item-img.item-support {
  background-image: url("../images/support.svg");
}
.advantages__list-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
  color: #020202;
}

.images-slider {
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-theme-color: #00B8D4;
}
.images-slider .swiper-pagination {
  position: static;
  margin-top: 16px;
}
.images-slider .swiper-slide {
  overflow: hidden;
  transition-duration: 0.25s;
}
.images-slider .swiper-slide img {
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .images-slider .swiper-slide {
    height: 33vw;
    border-radius: 8px;
    transform: scale(0.8);
  }
}
@media (min-width: 1280px) {
  .images-slider .swiper-slide {
    height: 400px;
  }
}
.images-slider .swiper-slide-active {
  transform: scale(1);
}

.reviews {
  background-image: url("../images/reviews-bg.svg");
  background-repeat: no-repeat;
  background-position: left 66% top 74px;
  background-size: 190%;
  background-color: #A6A6A6;
}
@media (min-width: 1280px) {
  .reviews {
    background-position: left -150px top -40px;
    background-size: 1190px;
  }
}
@media (max-width: 767px) {
  .reviews .container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .reviews .reviews__slider {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.reviews__section-title {
  margin-bottom: 60px;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 2.325px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
@media (min-width: 1280px) {
  .reviews__section-title {
    font-size: 98px;
  }
}
@media (min-width: 1024px) {
  .reviews__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 8px;
  }
}
@media (min-width: 1280px) {
  .reviews__list {
    grid-column-gap: 20px;
  }
}
.reviews__list-item {
  height: auto;
  padding-top: 44px;
}
@media (min-width: 1024px) {
  .reviews__list-item {
    text-align: center;
  }
}
.reviews__list-item-inner {
  height: 100%;
  padding-right: 22px;
  padding-left: 22px;
  padding-bottom: 34px;
  border-radius: 42px;
  border: 3px solid rgba(255, 255, 255, 0.77);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
}
.reviews__list-item-img {
  width: 88px;
  margin: -44px auto 10px;
}
.reviews__list-item-name {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
.reviews .swiper-scrollbar {
  position: static;
  margin-top: 24px;
  border-radius: 8px;
  background-color: #929292;
}
.reviews .swiper-scrollbar-drag {
  border-radius: 8px;
  background-color: #fff;
}

@media (min-width: 1280px) {
  .form {
    background-image: url("../images/form-bg.webp");
    background-repeat: no-repeat;
    background-size: 1270px;
    background-position: left calc(50% + 500px) bottom -175px;
  }
}
.form__section-title {
  margin-bottom: 42px;
  font-size: 32px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 1.867px;
  text-transform: uppercase;
  color: #020202;
  text-align: center;
}
@media (min-width: 1280px) {
  .form__section-title {
    font-size: 38px;
  }
}
.form__wrapper {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1280px) {
  .form__wrapper {
    max-width: 740px;
  }
}
.form-row {
  display: grid;
  margin-bottom: 20px;
  grid-row-gap: 20px;
}
@media (min-width: 1280px) {
  .form-row {
    margin-bottom: 32px;
  }
}
@media (min-width: 1280px) {
  .form-row:not(.multi-row) {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
}
.form-row.multi-row {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
}
@media (min-width: 1280px) {
  .form-row.multi-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.form-item {
  display: grid;
  grid-row-gap: 8px;
}
.form-item .label {
  font-size: 12px;
  line-height: 18px;
  color: #666;
}
.form-item button:active, .form-item button:focus {
  outline-color: transparent;
}
.form-item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/arrow-select.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  color: #666;
  cursor: pointer;
}
.form-input {
  width: 100%;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  transition-duration: 0.25s;
  outline-color: transparent;
}
.form-input:active, .form-input:focus {
  outline-color: #00B8D4;
}
.form-input::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.form-input::placeholder {
  color: #666;
  opacity: 1;
}
.form .phone-input {
  position: relative;
}
.form .phone-input .country-selector {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
.form .phone-input .country-list {
  display: none;
  position: absolute;
  left: -8px;
  top: calc(100% + 8px);
  padding: 8px;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}
.form .phone-input .country-list li {
  cursor: pointer;
}
.form .phone-input .country-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
.form .phone-input .selector-toggle {
  display: flex;
  padding: 0;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
}
.form .phone-input .selector-toggle img {
  width: 22px;
}
.form .phone-input .selector-toggle .arrow {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
.form .phone-input .phone-field {
  padding-left: 60px;
}
.form .form-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.form .form-btn-wrapper .btn {
  width: calc(100% - 70px);
  border-width: 0;
}
@media (min-width: 1024px) {
  .form .form-btn-wrapper .btn {
    width: 280px;
  }
}

footer {
  padding-top: 42px;
  padding-bottom: 62px;
  background-color: #F0F0F0;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-row-gap: 62px;
  padding-bottom: 60px;
  border-bottom: 1px solid #00B8D4;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr auto auto;
    grid-column-gap: 80px;
  }
}
@media (min-width: 1280px) {
  .footer-top {
    grid-column-gap: 160px;
  }
}

.footer__item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}
@media (min-width: 1024px) {
  .footer__item-info {
    align-items: start;
  }
}

.footer__logo {
  justify-content: center;
}
.footer__logo .logo__img {
  margin-right: 6px;
  padding-right: 6px;
}
.footer__logo .logo__name {
  margin-bottom: -4px;
  font-size: 41px;
  letter-spacing: 1.436px;
}
.footer__logo .logo__description {
  font-size: 16px;
  letter-spacing: 0.304px;
}

.socials-list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
.socials-list a {
  transition-duration: 0.25s;
}
.socials-list a:hover {
  opacity: 0.7;
}

.footer__item-nav {
  display: none;
}
@media (min-width: 1024px) {
  .footer__item-nav {
    display: block;
  }
}
@media (min-width: 1024px) {
  .footer__item-nav-list {
    display: grid;
    grid-row-gap: 22px;
  }
}

.footer__title {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 1.867px;
  text-transform: uppercase;
  color: #00B8D4;
}

.footer__item-contacts {
  width: 280px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
}
.footer__item-contacts-list {
  display: grid;
  grid-row-gap: 22px;
}
.footer__item-contacts-list a {
  position: relative;
  display: block;
  padding-left: 26px;
  background-repeat: no-repeat;
}
.footer__item-contacts-list a {
  background-position: left top 1px;
}
.footer__item-contacts-list .email a {
  background-image: url("../images/mail-icon.svg");
}
.footer__item-contacts-list .phone a {
  background-image: url("../images/phone-icon.svg");
}
.footer__item-contacts-list .address a {
  background-image: url("../images/marker-icon.svg");
  background-position: left top -2px;
}

.footer-bottom {
  padding-top: 12px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .footer-bottom .copyright {
    margin-bottom: 22px;
  }
}
.footer-bottom .terms {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .footer-bottom .terms {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .footer-bottom .terms > *:not(:last-child):after {
    content: "|";
    margin-right: 4px;
    margin-left: 4px;
  }
}

.thank-you {
  height: 100vh;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .thank-you {
    align-items: center;
    justify-content: center;
  }
}
.thank-you__logo {
  justify-content: center;
}
.thank-you__logo .logo__name {
  font-size: 48px;
}
@media (min-width: 768px) {
  .thank-you__logo .logo__name {
    font-size: 66px;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .thank-you__logo .logo__description {
    font-size: 24px;
  }
}
.thank-you__title {
  margin-bottom: 24px;
  font-size: 48px;
}
@media (min-width: 768px) {
  .thank-you__title {
    font-size: 60px;
  }
}
.thank-you__description {
  max-width: 396px;
  font-size: 20px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .thank-you__description {
    max-width: 440px;
    font-size: 24px;
  }
}
/*# sourceMappingURL=main.css.map */
