@font-face {
    font-family: "Inter";
    src: url("Inter-SemiBold.woff2") format("woff2"), url("Inter-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
  src: url("Inter-Regular.woff2") format("woff2"), url("Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: "Inter";
  src: url("Inter-Medium.woff2") format("woff2"), url("Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

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

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

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

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

button {
    cursor: pointer;
}

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

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

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

img {
    vertical-align: top;
}

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

address {
    font-style: normal;
}

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

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 150%;
    background-color: #171717;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
}

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.wrapper > * {
    min-width: 0;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
  /* 111.111% */
}

.hero {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.30)), to(rgba(0, 0, 0, 0.30))),
    -webkit-gradient(linear, left top, right top, from(rgba(18, 18, 18, 0.10)), color-stop(47.12%, rgba(18, 18, 18, 0.10)), color-stop(76.92%, rgba(18, 18, 18, 0.00)), to(rgba(18, 18, 18, 0.00))),
    url("../img/hero.webp") center / cover no-repeat,
    lightgray;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.10) 0%, rgba(18, 18, 18, 0.10) 47.12%, rgba(18, 18, 18, 0.00) 76.92%, rgba(18, 18, 18, 0.00) 100%),
    url("../img/hero.webp") center / cover no-repeat,
    lightgray;
    background-repeat: no-repeat;
}

.hero__container {
    padding: 150px 15px 120px;
}

.hero__texts {
    margin-bottom: 40px;
}

.hero__title {
    max-width: 700px;
    font-size: 44px;
    margin-bottom: 32px;
}

.hero__title.title {
    line-height: 145%;
}
.hero__subtitle {
    max-width: 588px;
    font-size: 24px;
    line-height: 150%;
}

.hero-btn {
    max-width: 300px;
    padding: 24px 32px 24px 24px;
    gap: 8px;
    border-radius: 8px;
    background: linear-gradient(275deg, #2D7FEB -0.54%, #3185F2 59.4%, #0F70ED 100%);
}

.hero-btn span,
.btn-404 span {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
  /* 133.333% */
    letter-spacing: -0.24px;
    color: #FAFCFF;
}
.btn-404 {
    max-width: 400px;
    padding: 24px;
    border-radius: 8px;
    background: 
    linear-gradient(275deg, #2D7FEB -0.54%, #3185F2 59.4%, #0F70ED 100%);
}

.btn {
    position: relative;
    z-index: 0;
    isolation: isolate;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(275deg, #2169C8 -0.54%, #286FCE 59.4%, #0A5FCB 100%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn > * {
    position: relative;
    z-index: 10;
}

.main__container {
    padding: 70px 15px 90px;
}

.about__container {
    padding: 40px 32px;
    border-radius: 16px;
    background: #242424;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 100px;
}

.about__content {
    padding-left: 20px;
    padding-right: 20px;
}

.about__title {
    margin-bottom: 24px;
}

.about__text {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
  /* 160% */
}

.about__picture {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about__img {
    border-radius: 8px;
}

.callback__container,
.cards-grid__container,
.faq__container {
    margin-bottom: 100px;
}

.cards-grid__title,
.callback__title,
.faq__title {
    margin-bottom: 36px;
}

.cards-grid__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2 1fr);
    gap: 8px;
}

.cards-grid__item {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #242424;
    padding: 24px 24px 32px;
}

.cards-grid__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.cards-grid__list-item {
    margin-left: 15px;
    list-style: disc;
}

/* .cards-grid__item:nth-child(3) {
  grid-row: span 2;
  -ms-flex-line-pack: center;
      align-content: center;
} */

.item-card__icon {
    margin-bottom: 20px;
}

.item-card__title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  /* 120% */
    margin-bottom: 10px;
}

.grid-col-2-line .item-card__text {
    position: relative;
    margin-bottom: 10px;
}

.grid-col-2-line .item-card__text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.30);
    opacity: 0.3;
}

.grid-col-2__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid-col-2__item {
    padding: 24px 24px 32px 24px;
    width: 49%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #242424;
    border-radius: 8px;
}

.grid-item-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}

.grid-item-bg:nth-child(1) {
    background-image: url('../img/card-bg-1.webp');
}

.grid-item-bg:nth-child(2) {
    background-image: url('../img/card-bg-2.webp');
}

.grid-item__img {
    margin-bottom: 20px;
}

.callback__txt {
    font-size: 24px;
    font-weight: 600;
    line-height: 183%;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 36px;
}

.callback-form {
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #242424;
    border-radius: 8px;
}

.callback-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
}

.callback-form__input {
    width: 32%;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 6px;
    padding: 16px 24px;
}

.callback-form__agreement {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 16px;
}

.callback-form__checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.callback-form__agreement-text {
    position: relative;
    padding-left: 32px;
    line-height: 1.3;
    font-size: 14px;
}

.callback-form__agreement-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    background-color: transparent;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.callback-form__agreement-text::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: translateY(-60%) rotate(45deg);
    -ms-transform: translateY(-60%) rotate(45deg);
    transform: translateY(-60%) rotate(45deg);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.callback-form__checkbox:checked + .callback-form__agreement-text::before {
    background-color: #2D7FEB;
    border-color: #2D7FEB;
}

.callback-form__checkbox:checked + .callback-form__agreement-text::after {
    opacity: 1;
}

.callback-form__checkbox:focus-visible + .callback-form__agreement-text::before {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.callback-form__btn {
    width: 100%;
    padding: 16px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: linear-gradient(275deg, #2D7FEB -0.54%, #3185F2 59.4%, #0F70ED 100%);
    border-radius: 6px;
    color: #FAFCFF;
    font-size: 20px;
    font-weight: 600;
}

.callback-form__policy {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid #FAFCFF;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.callback-form__policy:hover {
    border-bottom: 1px solid transparent;
}

/* .button {
  display: inline-block;
  color: #FFF;
  padding: 8px 16px;
  border-radius: 6px;
  background: #151515;
} */



.accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.accordion__item {
    padding: 24px 24px 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #242424;
    border-radius: 8px;
}

.accordion__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  /* padding-bottom: 12px; */
    cursor: pointer;
}



.accordion__icon {
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.accordion__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.90);
}

.accordion__collapse {
    position: relative;
  /* padding-top: 12px; */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: none;
    transition: none;
}

.accordion__collapse::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.30);
    opacity: 0;
}

.accordion__collapse.open::before {
    opacity: 0.3;
}

.accordion__collapse.open {
    padding-top: 12px;
    max-height: 500px;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.accordion__top:has(+ .accordion__collapse.open) {
    padding-bottom: 12px;
}

.accordion__top:has(+ .accordion__collapse.open) .accordion__icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.collapse-accordion__content {
    padding-left: 32px;
    max-width: 960px;
    width: 100%;
}

.footer {
    background: #242424;
    padding: 80px 15px;
}

.footer__title {
    margin-bottom: 36px;
}

.footer__items {
    padding-left: 29px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
}
.footer__items:not(:last-child) {
    margin-bottom: 20px;
}

.footer__item a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer__item:hover a {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    color: #2169C8;
}

.footer__link {
    position: relative;
    color: #FFF;
    font-size: 20px;
    line-height: 28px;
  /* 140% */
}

.footer-tel::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../img/icons/tel.svg");
    top: 0;
    left: -30px;
}

.footer-mail::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../img/icons/mail.svg");
    top: 0;
    left: -30px;
}

.footer-tg::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../img/icons/tg.svg");
    top: 0;
    left: -30px;
}

.popup-form {
    position: fixed;
    inset: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
}

.popup-form.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.popup-form__body {
    position: relative;
    width: 100%;
    max-width: 980px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #1f1f1f;
}

.popup-form__form {
    padding: 0;
    border: 0;
    background: transparent;
}

.popup-form__form .callback-form__row {
    gap: 12px;
}

.popup-form__form .callback-form__input {
    width: 100%;
}

.popup-form__title {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #fafcff;
    text-align: center;
}

.popup-form__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    background: transparent;
    color: #fafcff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.succes {
    position: fixed;
    inset: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
}

.succes.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.succes__body {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #1f1f1f;
}

.succes__title {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #fafcff;
}

.succes__text {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.succes__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    background: transparent;
    color: #fafcff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.succes__btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 6px;
    background: linear-gradient(275deg, #2D7FEB -0.54%, #3185F2 59.4%, #0F70ED 100%);
}

.policy {
    padding: 24px 0 72px;
}

.policy__inner {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: #242424;
    padding: 36px 32px;
}

.policy__title {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 28px;
}

.policy__section + .policy__section {
    margin-top: 28px;
}

.policy__subtitle {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
}

.policy__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
}

.policy__text + .policy__text {
    margin-top: 10px;
}

.policy__text + .policy__list {
    margin-top: 10px;
}

.policy__list {
    margin: 0;
    padding-left: 22px;
}

.policy__item {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
}

.policy__item + .policy__item {
    margin-top: 6px;
}

.policy__link {
    color: #6aa8ff;
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(106, 168, 255, 0.6);
    text-decoration-color: rgba(106, 168, 255, 0.6);
}

.policy__link:hover {
    color: #8bbcff;
}

.cookies {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 999;
    padding: 0 16px;
}

.cookies .contaner {
    max-width: 1200px;
    margin: 0 auto;
}

.cookies__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(8px);
}

.cookies__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.cookies__link {
    color: #8bbcff;
    text-decoration: underline;
}

.cookies__btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 140px;
    padding: 12px 20px;
    border-radius: 6px;
    background: linear-gradient(275deg, #2D7FEB -0.54%, #3185F2 59.4%, #0F70ED 100%);
}
@media (max-width: 991.98px) {
        .about__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 36px;
    }
    .about__content {
        padding: 0;
    }
    .about__picture {
        align-self: center;
    }
}
@media (max-width: 767.98px) {
    .cards-grid__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio__items {
        grid-template-columns: repeat(2, 1fr);
    }



    .grid-col-2__item {
        width: 100%;
    }

    .callback__txt {
        font-size: 20px;
    }

    .callback-form__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .callback-form__input {
        width: 100%;
    }
}

@media (max-width: 612.98px) {
    .footer__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
    }
    .footer__items:not(:last-child) {
        margin-bottom: 32px;
    }
}

@media (max-width: 576.98px) {
    .succes {
        padding: 14px;
    }

    .succes__body {
        padding: 18px;
    }

    .succes__title {
        font-size: 24px;
    }

    .policy {
        padding: 16px 0 40px;
    }

    .policy__inner {
        padding: 24px 16px;
    }

    .policy__title {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .policy__subtitle {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .policy__section + .policy__section {
        margin-top: 22px;
    }

    .policy__text,
  .policy__item {
        font-size: 15px;
        line-height: 1.6;
    }

    .cookies {
        bottom: 10px;
        padding: 0 10px;
    }

    .cookies__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
    }

    .cookies__text {
        font-size: 13px;
    }

    .cookies__btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .hero__container {
        padding: 150px 15px;
    }
    .title {
        font-size: 30px;
        
    }

    .hero__title {
        font-size: 36px;
    }
    .hero__texts {
        margin-bottom: 80px;
    }
    .hero-btn,
    .btn-404 {
        padding: 14px;
    }

    .hero-btn span,
    .btn-404 span {
        font-size: 18px;
    }

    .about__text {
        font-size: 16px;
    }

    .cards-grid__items {
        grid-template-columns: 1fr;
    }

    .cards-grid__item {
        max-width: unset;
        padding: 16px;
    }

    .grid-col-2__item {
        padding: 16px;
    }

    .grid-item__img {
        width: 40px;
    }

    .item-card__title {
        font-size: 18px;
    }

    .callback-form {
        padding: 24px 16px;
    }

    .callback__txt {
        font-size: 18px;
    }

    .callback-form__input {
        font-size: 16px;
        padding: 16px;
    }

    .callback-form__agreement-text {
        font-size: 12px;
    }

    .callback-form__btn {
        font-size: 18px;
        padding: 14px;
    }

    .accordion__item {
        padding: 16px;
    }

    .accordion__title {
        font-size: 16px;
    }

    .footer {
        padding: 60px 15 100px;
    }

    .footer__link {
        font-size: 18px;
    }
}

@media (max-width: 376.98px) {
    .title {
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        
    /* 114.286% */
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 14px;
        
    }

   

    .hero__subtitle {
        font-size: 18px;
    }

    .main__container {
        padding: 30px 24px 50px;
    }

    .about__container {
        padding: 24px 20px;
        margin-bottom: 50px;
    }

    .cards-grid__title,
  .callback__title,
  .faq__title {
        margin-bottom: 24px;
    }

    .callback__container,
  .cards-grid__container,
  .faq__container {
        margin-bottom: 50px;
    }

    .item-card {
        padding: 16px 16px 20px;
    }

    .item-card__title {
        font-size: 16px;
    }

    .item-card__text {
        font-size: 14px;
    }

    .portfolio__title {
        margin-bottom: 24px;
    }

    .item-pf {
        padding-bottom: 8px;
    }

    .item-pf__title {
        font-size: 14px;
        line-height: 20px;
    }

    .button {
        font-size: 16px;
        line-height: 24px;
    }

    .footer {
        padding: 24px 24px 40px;
    }

    .footer__link {
        font-size: 14px;
        line-height: 24px;
    }

    .footer__link::before {
        -webkit-transform: translateY(-20%);
        -ms-transform: translateY(-20%);
        transform: translateY(-20%);
    }
}
