/* =========================
   Reset
========================= */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* =========================
   Fonts
========================= */
@font-face {
  font-family: "Inter";
  src: url("fonts/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterTight-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterTight-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterTight-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Style
========================= */
body {
  font-family: 'Inter';
  letter-spacing: -0.32px;
  background-color: #FFFFFF;
  padding: 0 40px;
  min-width: 320px;
}

.wrapper {
  max-width: 1840px;
  margin: 40px auto 20px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 0 auto;
}

.container {
  margin: 0 auto;
  max-width: 1880px;
  padding: 0 20px;
}

/* =========================
   Header
========================= */

.header.is-sticky {
  background: #FFFFFF;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin-bottom: 0;
}

.header__body {
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left {
  font-size: 24px;
}

.header__rigth {
  text-align: right;
  line-height: 1.1;
}

.header__rigth-phone {
  margin-bottom: 10px;
  font-size: clamp(14px, 12.3636px + 0.4545vw, 20px);
}

.header__rigth-phone a {
  position: relative;
}

.header__rigth-phone a:after {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #FFFFFF;
  content: '';
  transition: width 0.3s ease;
}

.header__rigth-text {
  font-weight: 400;
  font-size: 16px;
}

/* =========================
   Hero
========================= */
.hero {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(293px, 260.5455px + 9.0152vw, 412px);
  padding-bottom: clamp(227px, 212px + 4.1667vw, 282px);
  background: url('img/hero-bg.webp') center center / cover no-repeat;
  color: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
}

.hero__title {
  max-width: 1210px;
  margin-bottom: 32px;
  font-weight: 500;
  font-size: clamp(28px, 18.1818px + 2.7273vw, 64px);
  letter-spacing: -0.64px;
  text-align: center;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tg__link,
.whatsapp__link,
.tel__link {
  display: inline-block;
}

.tg__link {
  margin-bottom: 32px;
  position: relative;
  padding: 25px 86px 25px 25px;
  background-color: #61B5E5;
  border-radius: 50px;
  letter-spacing: -0.64px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tg__link::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url('img/icon-tg.svg') center center / cover no-repeat;
}

.whatsapp__link {
  margin-bottom: 20px;
}

.whatsapp__link,
.tel__link {
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
  letter-spacing: -0.32px;
  font-weight: 400;
  line-height: 1.2;
}

.whatsapp__link span,
.tel__link span {
  font-weight: 600;
}

/* =========================
   Price
========================= */

.price {
  margin-bottom: 20px;
  padding-top: 60px;
  padding-bottom: 20px;
  background-color: #F3F8FB;
  border-radius: 20px;
  overflow: hidden;
  color: #1D4053;
  letter-spacing: -0.32px;
}

.title {
  font-weight: 600;
  font-size: clamp(24px, 20.7273px + 0.9091vw, 36px);
  margin-bottom: 40px;
}

.price__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price__block {
  display: flex;
  gap: 20px;
}

.item-price {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.item-price,
.item-right {
  flex: 1 1 50%;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
}

#price-list-1,
#price-list-2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.item-price__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.item-price__left {
  line-height: 1.2;
}

.item-price__item:not(:last-child) {
  padding: 0 0 32px 0;
}

.item-price__item:not(:last-child)::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: '';
  bottom: 0;
  left: 0;
  background-color: #B3CFDE;
}

.item-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.item-right__title {
  line-height: 1.2;
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
  font-weight: 400;
  color: #72A4BF;
  margin-bottom: 32px;
}

.item-right__text {
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
  line-height: 1.2;
}

.item-right__text:not(:last-child) {
  margin-bottom: 24px;
}

.item-price__right {
  min-width: 62px;
}


/* =========================
  Work
========================= */

.work {
  padding-top: clamp(15px, 2.7273px + 3.4091vw, 60px);
  padding-bottom: 20px;
  margin-bottom: clamp(30px, 27.2727px + 0.7576vw, 40px);
  border-radius: 20px;
  overflow: hidden;
  background-color: #F3F8FB;
}

.work__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 7.2727px + 0.7576vw, 20px);
}

.work__item {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 32px 20px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
}

.work__item-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #F3F8FB;
  border-radius: 12px;
  overflow: hidden;
  font-size: 20px;
  font-weight: 600;
}

.work__item-title {
  flex: 1 1 auto;
  margin-top: clamp(20px, -32.3636px + 14.5455vw, 212px);
  margin-bottom: clamp(11px, 9.6364px + 0.3788vw, 16px);
  color: #1D4053;
  font-size: clamp(16px, 13.8182px + 0.6061vw, 24px);
  line-height: 1.2;
  font-weight: 500;
}

.work__item-text {
  color: #1D4053;
  line-height: 1.2;
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
}

.work__item-bottom {
  display: flex;
  flex-direction: column;
}

/* =========================
  Consultation
========================= */
.consultation {
  padding: 10px;
  margin-bottom: 20px;
  background-color: #F3F8FB;
  border-radius: 20px;
  overflow: hidden;
  justify-content: space-between;
  color: #1D4053;
}

.consultation__title.title {
  padding-top: clamp(30px, 21.8182px + 2.2727vw, 60px);
  margin-bottom: clamp(15px, 12.5455px + 0.6818vw, 24px);
}

.consultation__subtitle {
  margin-bottom: clamp(30px, 27.2727px + 0.7576vw, 40px);
  line-height: 1.2;
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
}

.hero__bottom._left {
  align-items: flex-start;
}


.hero__bottom._left .tg__link {
  color: #FFFFFF;
}

.consultation__body {
  display: flex;
  padding: 20px 0px;
  gap: 30px;
}

.consultation__left,
.consultation__right {
  flex: 1 1 50%;
}

.consultation__right {
  position: relative;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
}

.consultation__right img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================
   Feedback
========================= */
.feedback {
  margin-bottom: 20px;
  background-color: #F3F8FB;
  padding: 60px 0 20px;
  border-radius: 20px;
  overflow: hidden;
}

.feedback__title {
  margin-bottom: clamp(20px, 14.5455px + 1.5152vw, 40px);
}

.feedback__sliders {
  display: flex;
  gap: 20px;
}

.feedback__item {
  flex: 1 1 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(92px, 74.5455px + 4.8485vw, 156px);
  padding: 40px 20px 32px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
  color: #1D4053;
}

.feedback__item-img {
  width: 16px;
  display: block;
  margin-bottom: clamp(24px, 21.8182px + 0.6061vw, 32px);
}

.feedback__item-botom {
  line-height: 1.2;
}

.feedback__item-text {
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
}

.feedback__item-name {
  margin-bottom: clamp(5px, 4.1818px + 0.2273vw, 8px);
  font-size: clamp(16px, 14.9091px + 0.303vw, 20px);
  font-weight: 600;
}

.feedback__item-subs {
  font-size: clamp(14px, 13.4545px + 0.1515vw, 16px);
  color: #446E87;
}

.feedback__pagination {
  display: none;
}

/* =========================
   Footer
========================= */

.footer {
  background-color: #17556D;
  border-radius: 20px;
  overflow: hidden;
  color: #FFFFFF;
  padding: 40px 20px;
  letter-spacing: -0.16px;
}

.footer__body {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.footer__left,
.footer__center,
.center-item {
  display: flex;
  flex-direction: column;
}

.footer__left {
  justify-content: space-between;
}

.footer__title {
  font-size: 24px;
}

.footer__copy,
.center-item__top {
  opacity: 0.6;
}

.footer__center {
  gap: clamp(24px, 21.8182px + 0.6061vw, 32px);
}

.center-item {
  gap: 12px;
}

.center-item__bot {
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
}

.footer__right .hero__bottom {
  display: flex;
  align-items: end;
}

.hero__bottom .whatsapp__link {
  font-size: clamp(14px, 12.9091px + 0.303vw, 18px);
}

/* =========================
   Media
========================= */
@media(max-width:1087px) {
  .footer__body {
    flex-direction: column;
    align-items: center;
  }

  .footer__title {
    text-align: center;
  }

  .footer__copy {
    display: none;
  }

  .footer__right .hero__bottom,
  .center-item {
    align-items: center;
  }

  .footer__center {
    margin-bottom: 40px;
  }

  .center-item {
    text-align: center;
    align-items: center;
  }
}

@media(max-width:1024px) {
  .work__body {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 1fr;
    gap: clamp(10px, 7.2727px + 0.7576vw, 20px);
  }

  .work,
  .work__item-top {
    background-color: #FFFFFF;
  }

  .container__work {
    padding: 0;
  }

  .work__item {
    justify-content: space-between;
    padding: 20px;
    background-color: #F3F8FB;
  }

  .feedback {
    background-color: #FFFFFF;
  }

  .feedback__item {
    background-color: #F3F8FB;
  }

  .feedback__sliders {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .feedback__sliders::-webkit-scrollbar {
    display: none;
  }

  .feedback__sliders.is-slider {
    transition: height 220ms ease;
  }

  .feedback__track {
    display: flex;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 320ms ease;
  }

  .feedback__item {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
  }

  .feedback__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
  }

  .feedback__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #17556D;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .feedback__dot.is-active {
    transform: scale(1.67);
    transition: all 0.3s ease;
  }
}

@media(max-width:952px) {
  .consultation__body {
    flex-direction: column;
    padding: 10px 0px;
  }

  .consultation__right {
    min-height: 400px;
  }
}

@media(max-width:928px) {

  body,
  .container {
    padding: 0 10px;
  }

  .container.min {
    padding: 0px;
  }

  .wrapper {
    max-width: 1840px;
    margin: 10px auto 10px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .price__block {
    flex-direction: column;
  }

  .item-price,
  .item-right {
    background-color: #F3F8FB;
  }

  .price {
    padding-top: 20px;
    background-color: #FFFFFF;
  }

  .price__block,
  .price__body {
    gap: 10px;
  }

  .title {
    margin-bottom: 25px;
  }

  .feedback__container {
    padding: 0px;
  }
}

@media(max-width:638px) {
  .header {
    position: absolute;
    height: auto;
    width: 100%;
    max-height: 150px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: -0.16px;
  }

  .header__rigth-phone {
    display: none;
  }



  .header__left,
  .header__rigth {
    text-align: center;
  }

  .header__left {
    margin-bottom: 10px;
  }

  .header__rigth-text {
    font-size: 14px;
  }

  .header__body {
    flex-direction: column;
  }

  .consultation__right {
    min-height: 200px;
  }
}

@media(max-width:360px) {
  .tg__link {
    padding: 25px 75px 25px 25px;
  }
}

@media (min-width: 639px) {
  .header {
    position: sticky;
    margin-bottom: -80px;
    width: 100%;
    height: 90px;
    inset: 0;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: -0.16px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1000;
    background: transparent;
    transition:
      background 0.25s ease,
      box-shadow 0.25s ease,
      margin 0.25s ease;
  }

  .header.is-scrolled {
    color: #1D4053;
    background: #FFFFFF;
    backdrop-filter: blur(8px);
    border-radius: 0px 0px 20px 20px;
    border-bottom: 1px solid #B3CFDE;
  }
}

@media (any-hover:hover) {
  .header__rigth-phone a:hover:after {
    width: 100%;
    z-index: 9999999;
  }

  .tg__link:hover {
    background-color: #3B95CA;
  }

  .header.is-scrolled .header__rigth-phone a:after {
    background-color: #1D4053;
  }
}