@charset "UTF-8";

@font-face {
    font-family: "Gilroy";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Gilroy/Gilroy-Regular.eot");
    src: url("../fonts/Gilroy/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Regular.svg#Gilroy") format("svg");
}

@font-face {
    font-family: "Gilroy";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Gilroy/Gilroy-Bold.eot");
    src: url("../fonts/Gilroy/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Bold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Bold.svg#Gilroy") format("svg");
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --container-width: 1260px;
    --transition: .3s ease;
    --default-font-family: "Inter";
    --heading-font-family: "Inter";
    --sp: 64px;
    --primary: #1F53BA;
    --secondary: #72CD0C;
    --white: #FFFFFF;
    --black: #132446;
    --grey-50: #F5F6F7;
    --grey-100: #DDE2ED;
    --grey-300: #7F8EAC;
    --grey-500: #54627F;
    --red: #FF3F3F;
    --green: #00E067;
    --h1: 54px;
    --h2: 42px;
    --h3: 32px;
    --h4: 24px;
    --h5: 20px;
    --h6: 16px;
    --l: 20px;
    --m: 16px;
    --s: 14px;
}

body {
    font: 400 var(--l)/160% var(--default-font-family), Helvetica, Arial, sans-serif;
    background: var(--white);
    min-width: 360px;
    color: var(--black);
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
}

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

.hidden {
    display: none;
    overflow: hidden;
}

.wrapper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
}

[class*=__container] {
    margin: 0 auto;
    max-width: var(--container-width);
    padding: 0 10px;
    width: 100%;
}

[class*=__container] [class*=__container] {
    padding: 0;
}

form input.error {
    box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
    border: 2px solid var(--red) !important;
}

form input.not_error {
    box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
    border: 2px solid var(--green) !important;
}

h1,
._h1 {
    font: 700 var(--h1)/120% var(--heading-font-family);
    text-transform: uppercase;
}

h2,
._h2 {
    font: 700 var(--h2)/120% var(--heading-font-family);
    max-width: 700px;
    text-transform: uppercase;
}

h3,
._h3 {
    font: 700 var(--h3)/130% var(--heading-font-family);
    text-transform: uppercase;
}

h4,
._h4 {
    font: 700 var(--h4)/135% var(--heading-font-family);
    text-transform: uppercase;
}

h5,
._h5 {
    font: 700 var(--h5)/140% var(--heading-font-family);
    text-transform: uppercase;
}

h6,
._h6 {
    font: 700 var(--h6)/140% var(--heading-font-family);
    text-transform: uppercase;
}

a {
    color: var(--black);
    text-decoration: none;
}

._semibold {
    font-weight: 600;
}

._bold {
    font-weight: 700;
}

._primary {
    color: var(--primary);
}

._secondary {
    color: var(--secondary);
}

._s {
    font-size: var(--s);
    line-height: 140%;
}

._m {
    font-size: var(--m);
    line-height: 140%;
}

._subtitle {
    color: var(--grey-500, #54627F);
    margin-top: 4px;
}

._e ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-flow: column;
    gap: 8px;
}

._e ol {
    list-style: decimal;
    padding-left: 20px;
    display: flex;
    flex-flow: column;
    gap: 8px;
}

.btn {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    border-radius: 64px;
    background: var(--secondary, #72CD0C);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    max-width: 360px;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    background: rgba(114, 205, 12, 0.85);
}

.btn.disabled {
    opacity: 0.5;
    background: var(--grey-300, #7F8EAC);
    pointer-events: none;
}

.btn_light {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

.btn_light:hover {
    background-color: var(--black);
    color: var(--white);
}

.subm {
    cursor: pointer;
    border: none;
    display: flex;
    font-family: "Inter";
    font-weight: 600;
    width: 100%;
    max-width: 360px;
}

.form {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 24px;
}

.form__inputs {
    display: flex;
    flex-flow: column;
    gap: 8px;
    max-width: 340px;
    width: 100%;
}

.form .input {
    font: 400 16px/1 "Inter";
    background: #fff;
    width: 100%;
    height: 46px;
    border: 2px solid #dcdcdc;
    border-radius: var(--4, 4px);
    padding-left: 8px;
    display: block;
}

.form .input__wrap {
    display: block;
    text-align: left;
    display: flex;
    flex-flow: column;
    gap: 4px;
}

.form .input__label {
    display: block;
    font-size: var(--s);
    line-height: 130%;
    font-weight: 700;
}

.form__footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form:before {
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
    z-index: 10;
}

.form.loading:before {
    display: block;
}

.form .intl-tel-input {
    width: 100%;
}

.form .country-list .country-name {
    color: #333;
}

.modal-form {
    border-radius: var(--20, 20px);
    background: var(--white, #FFF);
    max-width: 600px;
    padding: 32px 48px;
    text-align: center;
}

.header {
    padding: 12px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}

.header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: var(--grey-50, #F5F6F7);
    z-index: -1;
}

.header.active .mob-menu {
    transform: translateX(0);
}

.header.active .header__logo {
    opacity: 0;
    z-index: -1;
}

.header.active .header__button {
    transform: translateX(-72px);
}

.header.active .header__burger {
    background: rgba(19, 36, 70, 0.05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 4L20 20M4 20L20 4' stroke='%2354627F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") 50% no-repeat;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.header__logo {
    aspect-ratio: 1/1;
    background: url(../img/logo.svg) 50%/contain no-repeat;
    width: 66px;
    display: block;
    z-index: 10;
}

.header__menu {
    display: flex;
    gap: 32px;
}

.header__menu-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    text-decoration: none;
}

.header__button {
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.header__burger {
    display: none;
    background: rgba(255, 255, 255, 0.05) url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_477_128' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Cpath d='M1 4.76316H23M1 12H23M1 19.2368H23' stroke='%2354627F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_477_128)'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A") 50% no-repeat;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    z-index: 10;
}

.mob-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--grey-50, #F5F6F7);
    padding: 124px 0 24px;
    z-index: 9;
    display: none;
    transform: translateX(-100%);
    transition: var(--transition);
}

.mob-menu__container {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.mob-menu__list-number {
    color: var(--grey-500, #54627F);
    font-size: var(--s);
    line-height: 130%;
    transform: translateY(-5px);
}

.mob-menu__list-item {
    padding: 16px 0;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.mob-menu__list-link {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 125%;
    color: var(--grey-500, #54627F);
    text-decoration: none;
}

.mob-menu__social {
    margin-top: auto;
}

.mob-menu__social .social-links {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.mob-menu__social .social-link {
    width: 44px;
    height: 44px;
    background: rgba(19, 36, 70, 0.05);
}

.mob-menu__social .social-link path[stroke] {
    stroke: var(--black);
}

.mob-menu__social .social-link path[fill] {
    fill: var(--black);
}

.section404 {
    padding: var(--sp) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
    background: var(--grey-50, #F5F6F7);
    position: relative;
    z-index: 1;
}

.section404__container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section404__uptitle {
    font: 700 var(--h4)/135% var(--heading-font-family);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.section404__content {
    max-width: 560px;
    display: flex;
    flex-flow: column;
}

.section404__button {
    margin-top: 48px;
}

.section404__code {
    background: url(../img/404.svg) 50%/contain no-repeat;
    aspect-ratio: 540/260;
    width: 100%;
    max-width: 540px;
    z-index: 10;
    transform: translate(-100px, 50%) rotate(-15deg);
}

.section404__image {
    background: url("../img/404__bg.webp") 50%/cover no-repeat;
    aspect-ratio: 1/1;
    width: 1024px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.hero {
    min-height: 790px;
    padding: var(--sp) 0;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--grey-50, #F5F6F7);
    z-index: 1;
}

.hero__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__decor {
    position: absolute;
    width: 1066px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--black);
    left: 50%;
    top: -185px;
    z-index: -1;
}

.hero__decor:before {
    content: "";
    position: absolute;
    left: 129px;
    top: 430px;
    border-radius: 292.5px;
    background: var(--primary, #1F53BA);
    filter: blur(168.75px);
    width: 292.5px;
    height: 292.5px;
    flex-shrink: 0;
    transform: translate3d(0, 0, 0);
}

.hero__content {
    max-width: 500px;
}

.hero__tags {
    padding: 8px 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 32px;
    display: inline-flex;
    background: var(--white, #FFF);
    border-radius: var(--24, 24px);
}

.hero__tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__tag-icon {
    aspect-ratio: 1/1;
    width: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero__tag-text {
    font-size: var(--m);
    line-height: 160%;
}

.hero__button {
    margin-top: 48px;
}

.hero__image {
    position: absolute;
    top: 50%;
    right: 0;
    aspect-ratio: 1/1;
    width: 750px;
    -o-object-fit: contain;
    object-fit: contain;
    left: 50%;
    transform: translate(-140px, -50%);
}

.hero .social-links {
    flex-direction: column;
    position: relative;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-link path {
    transition: var(--transition);
}

.social-link:hover path[stroke] {
    stroke: var(--primary);
}

.social-link:hover path[fill] {
    fill: var(--primary);
}

.advantages {
    padding: var(--sp) 0;
    background: var(--grey-50, #F5F6F7);
    position: relative;
}

.advantages__header {
    max-width: 600px;
    margin-bottom: 32px;
}

.advantages__items {
    --columns: 3;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(var(--columns), 1fr);
}

.advantages .item {
    border-radius: var(--16, 16px);
    background: var(--white, #FFF);
    text-align: center;
    padding: 48px 24px;
    position: relative;
}

.advantages .item:before {
    content: "";
    position: absolute;
    right: 8px;
    top: 8px;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.2632 27.7064C18.5946 28.3976 16.806 28.7522 15 28.75C13.194 28.7522 11.4054 28.3976 9.73684 27.7064C8.06832 27.0153 6.55281 26.0013 5.27738 24.7226C3.99874 23.4472 2.98472 21.9317 2.29358 20.2632C1.60243 18.5946 1.24778 16.806 1.25001 15C1.24778 13.194 1.60243 11.4054 2.29358 9.73684C2.98472 8.06832 3.99874 6.55281 5.27738 5.27738C6.55281 3.99874 8.06832 2.98472 9.73684 2.29358C11.4054 1.60243 13.194 1.24778 15 1.25001C16.806 1.24778 18.5946 1.60243 20.2632 2.29358C21.9317 2.98472 23.4472 3.99874 24.7226 5.27738C26.0013 6.55281 27.0153 8.06832 27.7064 9.73684C28.3976 11.4054 28.7522 13.194 28.75 15C28.7522 16.806 28.3976 18.5946 27.7064 20.2632C27.0153 21.9317 26.0013 23.4472 24.7226 24.7226C23.4472 26.0013 21.9317 27.0153 20.2632 27.7064ZM20.7763 12.5948C21.1424 12.2286 21.1424 11.635 20.7763 11.2689C20.4102 10.9028 19.8166 10.9028 19.4504 11.2689L13.977 16.7424L11.5717 14.3371C11.2056 13.971 10.612 13.971 10.2459 14.3371C9.87978 14.7032 9.87978 15.2968 10.2459 15.6629L13.3141 18.7311C13.6802 19.0972 14.2738 19.0972 14.6399 18.7311L20.7763 12.5948Z' fill='%23DDE2ED'/%3E%3C/svg%3E") 50%/contain no-repeat;
}

.advantages .item__icon {
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    width: 48px;
    display: block;
    margin: 0 auto;
}

.advantages .item__title {
    margin: 24px 0 8px;
}

.advantages .item__text {
    font-size: var(--s);
    line-height: 130%;
    color: var(--grey-500, #54627F);
}

.wave {
    position: relative;
    padding: var(--sp) 0;
}

.wave:before {
    width: 100%;
    content: "";
    position: absolute;
    height: var(--sp);
    left: 0;
}

.wave__shape {
    width: 100%;
    aspect-ratio: 1500/60;
}

.wave--bottom-gray:before {
    top: 0;
    background: var(--grey-50, #F5F6F7);
}

.wave--bottom-gray .wave__shape {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1500' height='60' viewBox='0 0 1500 60' fill='none'%3E%3Cpath d='M0 0.188868C232.341 38.7994 485.325 60 750 60C1014.68 60 1267.66 38.7994 1500 0.188868V0H0V0.188868Z' fill='%23F5F6F7'/%3E%3C/svg%3E") 50%/contain no-repeat;
}

.wave--top-gray:before {
    bottom: 0;
    background: var(--grey-50, #F5F6F7);
}

.wave--top-gray .wave__shape {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1500' height='60' viewBox='0 0 1500 60' fill='none'%3E%3Cpath d='M0 59.8111C232.341 21.2006 485.325 0 750 0C1014.67 0 1267.66 21.2006 1500 59.8111V60H0V59.8111Z' fill='%23F5F6F7'/%3E%3C/svg%3E") 50%/contain no-repeat;
}

.wave--top-black {
    background: var(--grey-50, #F5F6F7);
}

.wave--top-black:before {
    bottom: 0;
    background: var(--black, #132446);
}

.wave--top-black .wave__shape {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1500' height='60' viewBox='0 0 1500 60' fill='none'%3E%3Cpath d='M0 59.8111C232.341 21.2006 485.325 0 750 0C1014.67 0 1267.66 21.2006 1500 59.8111V60H0V59.8111Z' fill='%23132446'/%3E%3C/svg%3E") 50%/contain no-repeat;
}

.wave--bg-white {
    background: var(--white);
}

.for {
    padding: var(--sp) 0;
}

.for__container {
    display: flex;
    flex-flow: column;
    gap: 32px;
}

.for__items {
    --columns: 4;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(var(--columns), 1fr);
}

.for .item {
    text-align: center;
}

.for .item__image {
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--grey-100);
    position: relative;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.for .item__image-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.for__footer {
    text-align: center;
}

.for__button {
    margin: 0 auto;
}

.calculator {
    padding: var(--sp) 0;
}

.calculator__container {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    gap: 48px;
}

.calculator__content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 64px;
}

.calculator__header {
    position: relative;
}

.calculator__body {
    display: flex;
    flex-flow: column;
    gap: 32px;
}

.calculator .tooltip {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 18px;
    top: 18px;
}

.calculator .tooltip:hover .tooltip__icon path {
    stroke: var(--black);
}

.calculator .tooltip:hover .tooltip__content {
    z-index: 5;
    transform: scale(1);
}

.calculator .tooltip__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.calculator .tooltip__content {
    position: absolute;
    width: 400px;
    border-radius: var(--8, 8px);
    background: var(--grey-50, #F5F6F7);
    padding: 8px;
    display: flex;
    flex-flow: column;
    gap: 8px;
    position: absolute;
    top: 0;
    left: 34px;
    z-index: -5;
    transition: var(--transition);
    transform: scale(0);
}

.calculator .tooltip__text {
    font-size: var(--s);
    line-height: 130%;
    color: var(--grey-500, #54627F);
    display: flex;
    flex-flow: column;
    gap: 4px;
}

.calculator .item__header {
    display: flex;
    text-align: center;
}

.calculator .item__header:has(.item__header-groups) {
    padding-top: 50px;
    position: relative;
}

.calculator .item__header-groups {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* background: green; */
    display: flex;
}

.calculator .item__header-groups .group {
    font-size: var(--xs);
    padding: 0 27.5px;
}

.calculator .item__header-groups .group:after {
    content: '';
    display: block;
    width: 100%;
    height: 13.5px;
    border: 1px solid;
    border-bottom: none;
}

.calculator .item__header-groups .group_1 {
    color: var(--secondary);
    width: 110px;
}

.calculator .item__header-groups .group_1:after {
    border-color: var(--secondary);
}

.calculator .item__header-groups .group_2 {
    flex: 1 1 auto;
    color: var(--primary);
}

.calculator .item__header-groups .group_2:after {
    border-color: var(--primary);
}

.calculator .item__legend {
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 4px;
}

.calculator .item__legend-number {
    font: 700 var(--h5)/90% var(--heading-font-family);
    text-transform: uppercase;
}

.calculator .item__legend-text {
    color: var(--grey-500, #54627F);
    font-size: var(--s);
    line-height: 130%;
}

.calculator .item__legend:after {
    content: "";
    width: 2px;
    height: 12px;
    border-radius: var(--4, 4px);
    background: var(--grey-100, #DDE2ED);
}

.calculator .item__range {
    width: 100%;
    border-radius: var(--20, 20px);
    background: var(--grey-50, #F5F6F7);
    position: relative;
}

.calculator .item__range-track {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: var(--20, 20px);
    background: var(--grey-300, #7F8EAC);
    min-width: 10%;
    z-index: 1;
}

.calculator .item__range-slider {
    -webkit-appearance: none;
    /* Remove default styling */
    /* width: calc(100% - 80px); */
    width: 100%;
    margin: 20px auto 0;
    /* margin: 20px 0 0 auto; */
    display: block;
    height: 16px;
    background: transparent;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
    z-index: 5;
    position: relative;
}

.calculator .item__range-slider::-webkit-slider-thumb {
    position: relative;
    -webkit-appearance: none;
    /* Remove default styling */
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
    z-index: 5;
}

.calculator .item__range-slider--duration::-webkit-slider-thumb {
    background: var(--black, #132446) url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_506_2735' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Cpath d='M2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C9.14017 2 6.56074 3.20048 4.73812 5.125' stroke='%2354627F' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M15.75 12L12 12L12 8.25' stroke='%2354627F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_506_2735)'%3E%3Crect width='23' height='24' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A") 50% no-repeat;
}

.calculator .item__range-slider--size::-webkit-slider-thumb {
    background: var(--black, #132446) url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_506_926' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Cpath d='M21.121 3.465C20.243 2 18.828 2 16 2H12M21.121 3.465C22 4.92833 22 7.28667 22 12M21.121 3.465L2.879 20.535M22 12C22 16.7133 22 19.0717 21.121 20.535C20.243 22 18.828 22 16 22H12M22 12L12 22M2.879 20.535C3.757 22 5.172 22 8 22H12M2.879 20.535C2 19.0717 2 16.7133 2 12C2 7.28667 2 4.92833 2.879 3.465C3.757 2 5.172 2 8 2H12M12 2L7 7' stroke='%2354627F' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M2.879 3.465C2 4.92833 2 7.28667 2 12C2 16.7133 2 19.0717 2.879 20.535C3.757 22 5.172 22 8 22H12H16C18.828 22 20.243 22 21.121 20.535C22 19.0717 22 16.7133 22 12C22 7.28667 22 4.92833 21.121 3.465C20.243 2 18.828 2 16 2H12H8C5.172 2 3.757 2 2.879 3.465Z' stroke='%2354627F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_506_926)'%3E%3Crect width='23' height='24' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A") 50% no-repeat;
}

.calculator__results {
    display: flex;
    gap: 12px;
}

.calculator__result {
    border-radius: var(--8, 8px);
    background: var(--grey-50, #F5F6F7);
    padding: 4px;
    width: 100%;
}

.calculator__result.active {
    background: rgba(114, 205, 12, 0.05);
    color: var(--secondary, #72CD0C);
}

.calculator__result-title {
    border-radius: var(--4, 4px);
    background: var(--white, #FFF);
    padding: 8px;
    color: var(--grey-500, #54627F);
    font-size: var(--s);
    line-height: 130%;
    margin-bottom: 8px;
}

.calculator__result-value {
    text-align: center;
}

.calculator__result-value span {
    font-size: var(--m);
    line-height: 160%;
}

.calculator__result-value b {
    font: 700 var(--h2)/120% var(--heading-font-family);
    max-width: 700px;
    text-transform: uppercase;
}

.calculator__images {
    background: var(--grey-50, #F5F6F7);
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 552px;
    border-radius: 11.421px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator__image {
    display: none;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: none;
}

.calculator__image.active {
    display: block;
}

.calculator__footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    text-align: center;
}

.calculator__button {
    /* margin: 0 auto; */
    min-width: 360px;
}

.start {
    padding: var(--sp) 0;
}

.start__header {
    text-align: center;
}

.start__title {
    margin: 0 auto;
}

.start__items {
    margin-top: 32px;
}

.start .item {
    --color: #DDE2ED;
    padding-top: 24px;
    padding-left: 40px;
    display: flex;
    gap: 24px;
    width: 50%;
    margin-left: auto;
    border-left: 4px solid var(--color);
    transition: var(--transition);
}

.start .item._animated {
    --color: #1F53BA;
}

.start .item._animated .item__text {
    color: var(--grey-500);
}

.start .item._animated .item__number:before {
    max-width: 40px;
}

.start .item:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
    flex-direction: row-reverse;
    padding-right: 40px;
    padding-left: 0;
    text-align: right;
    border-right: 4px solid var(--color);
    border-left: none;
    width: calc(50% + 4px);
}

.start .item:nth-child(odd) .item__number:before {
    left: 100%;
    transform: translate(0, -50%);
}

.start .item__number {
    font: 700 var(--h3)/130% var(--heading-font-family);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color);
    text-transform: uppercase;
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.start .item__number:before {
    content: "";
    height: 4px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    background: var(--color);
    transition: var(--transition);
    max-width: 0;
}

.start .item__title {
    color: var(--color, #1F53BA);
    transition: var(--transition);
}

.start .item__text {
    font-size: var(--m);
    line-height: 160%;
    color: var(--color, #54627F);
    transition: var(--transition);
}

.gallery {
    padding: var(--sp) 0;
    background: var(--grey-50, #F5F6F7);
}

.gallery__slider {
    overflow: visible;
    width: 100vw;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.gallery__slider-wrap {
    margin-top: 32px;
    position: relative;
    height: 580px;
}

.gallery__slider-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery .swiper-slide {
    max-width: 364px;
    height: 580px;
}

.gallery .swiper-wrapper {
    transition-timing-function: linear;
}

.contacts {
    padding: var(--sp) 0;
    background: var(--grey-50, #F5F6F7);
}

.contacts__body {
    margin-top: 32px;
    display: flex;
    border-radius: var(--8, 8px);
    background: var(--white, #FFF);
}

.contacts__info {
    padding: 32px;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.contacts__map {
    width: 100%;
}

.contacts__map-image {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 14.588px;
}

.contacts__divider {
    height: 1px;
    background: var(--grey-50, #F5F6F7);
}

.contacts__divider--2 {
    margin-top: auto;
}

.contacts__find-text {
    color: var(--grey-500, #54627F);
}

.contacts__phone {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: none;
    text-decoration: none;
    margin-right: auto;
}

.contacts__phone-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url(../img/phone.svg) 50%/contain no-repeat;
}

.contacts__phone-text {
    font-size: 16px;
    font-weight: 600;
}

.contacts__address {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
    margin-right: auto;
}

.contacts__address-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url(../img/location.svg) 50%/contain no-repeat;
}

.success {
    text-align: center;
    min-height: 100vh;
    padding: var(--sp) 0;
    display: flex;
    align-items: center;
}

.success__header {
    margin: 8px auto 32px;
    max-width: 360px;
}

.success__button {
    margin: 0 auto;
    border-radius: var(--64, 64px);
    border: 1px solid var(--black, #132446);
    background: transparent;
    color: var(--black, #132446);
}

.success__button:hover {
    background: var(--black);
    color: var(--white);
}

.single-page__wrap {
    padding: calc(var(--sp) * 2) 0;
}

.single-page__content {
    display: flex;
    flex-flow: column;
    gap: 8px;
}

.footer {
    margin-top: auto;
    text-align: center;
    background: var(--black, #132446);
    padding: var(--sp) 0 32px;
    color: var(--grey-300, #7F8EAC);
    position: relative;
}

.footer__container {
    display: flex;
    flex-flow: column;
    gap: 64px;
    z-index: 1;
}

.footer__logo {
    width: 120px;
    display: block;
    aspect-ratio: 1/1;
    background: url(../img/logo-white.svg) 50%/contain no-repeat;
    margin: 0 auto;
}

.footer__social {
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    font-size: var(--m);
    line-height: 160%;
    border-top: 1px solid rgba(31, 83, 186, 0.5);
    position: relative;
    z-index: 1;
}

.footer__bottom:before {
    content: "";
    width: 320px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--primary, #1F53BA);
    filter: blur(184px);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
    z-index: -1;
}

.footer__docs {
    display: flex;
    flex-flow: column;
    gap: 4px;
    text-align: left;
}

.footer__docs-link {
    text-decoration: none;
    color: var(--white);
}

.footer__developed {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__developed-link {
    background: url(../img/avis-logo.svg) 50%/contain no-repeat;
    width: 80px;
    aspect-ratio: 80/30;
    display: block;
}

.modal-overlay {
    display: none;
    padding-top: 1px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--black, #132446);
    z-index: 999;
    overflow: auto;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.modal-overlay:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 585px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary, #1F53BA);
    filter: blur(337.5px);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.modal-overlay .modal-content {
    margin-bottom: 0px;
    border-radius: 20px;
}

.modal-overlay .close-button {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: 0.2s linear;
}

.modal-overlay .close-button:before {
    background: #fff;
    content: "";
    height: 50px;
    width: 2px;
    display: block;
    transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
    background: #fff;
    content: "";
    margin-top: -50px;
    height: 50px;
    width: 2px;
    display: block;
    transform: translateX(25px) rotate(45deg);
    transition: 0.2s linear;
}

#modal-video .modal-content {
    height: auto;
    width: 100%;
}

#modal-video .video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

#modal-video .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.countdownHolder {
    margin: 0 auto;
    font: 30px/1 Roboto, sans-serif;
    text-align: center;
    letter-spacing: -3px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /*Параметры цифр */
    /*Параметры подложки для секций */
    /*Параметры секций разделения (:)*/
    /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
    display: inline-block;
    height: 1em;
    overflow: hidden;
    position: relative;
    width: 0.5em;
}

.countdownHolder .digit {
    position: absolute;
    display: block;
    border-radius: 0.2em;
    text-align: center;
    color: #000;
    letter-spacing: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}

.countdownHolder .countDiv {
    display: none;
    width: 10px;
    height: 1em;
    position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
    background: #444;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 50%;
    margin-left: -3px;
    top: 0.2em;
    box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
    content: "";
}

.countdownHolder .countDiv:after {
    top: 0.6em;
}

.countdownHolder .textdigit {
    font-size: 15px;
    letter-spacing: 0px;
}

@media (max-width: 1260px) {
    :root {
        --container-width: 760px;
        --sp: 48px;
        --h1: 32px;
        --h2: 24px;
        --h3: 20px;
        --h4: 18px;
        --h5: 16px;
        --h6: 14px;
        --l: 16px;
        --m: 14px;
        --s: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .modal-form {
        max-width: 340px;
        padding: 24px 16px;
    }

    .header:before {
        background: var(--black, #132446);
        opacity: 1;
    }

    .header__logo {
        width: 44px;
        background: url(../img/logo-white.svg) 50%/contain no-repeat;
    }

    .header__menu {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .mob-menu {
        display: block;
    }

    .section404 {
        text-align: center;
        min-height: auto;
        padding-top: 250px;
        padding-bottom: 80px;
        min-height: calc(100vh - 400px);
    }

    .section404__container {
        flex-direction: column-reverse !important;
    }

    .section404__content {
        max-width: 100%;
        margin-top: 32px;
    }

    .section404__button {
        margin: 40px auto 0;
    }

    .section404__code {
        width: 270px;
        transform: rotate(-15deg);
    }

    .section404__image {
        width: 467px;
        top: 0;
        transform: translate(-50%, -100px);
    }

    .hero {
        min-height: 600px;
    }

    .hero__decor {
        width: 600px;
        top: 0;
        left: calc(50% + 50px);
    }

    .hero__decor:before {
        width: 200px;
        height: 200px;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
        top: 50%;
    }

    .hero__content {
        max-width: 360px;
    }

    .hero__tag {
        flex-direction: column;
        gap: 0;
        width: 80px;
    }

    .hero__tag-icon {
        width: 24px;
    }

    .hero__button {
        display: inline-flex;
        margin-top: 24px;
    }

    .hero__image {
        width: 376px;
        transform: translate(0, -50%);
    }

    .hero .social-links {
        display: none;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .advantages__header {
        margin-bottom: 24px;
    }

    .advantages__items {
        --columns: 2;
        gap: 8px;
    }

    .advantages .item:before {
        width: 24px;
        height: 24px;
    }

    .advantages .item {
        padding: 24px 8px;
        border-radius: var(--12, 12px);
    }

    .advantages .item__icon {
        width: 30px;
    }

    .advantages .item__title {
        margin: 12px 0 0;
    }

    .wave__shape {
        aspect-ratio: 360/34;
    }

    .wave--bottom-gray .wave__shape {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='34' viewBox='0 0 360 34' fill='none'%3E%3Cpath d='M0 0.107025C55.7619 21.9863 116.478 34 180 34C243.522 34 304.238 21.9863 360 0.107025V0H0V0.107025Z' fill='%23F5F6F7'/%3E%3C/svg%3E") 50%/contain no-repeat;
    }

    .wave--top-gray .wave__shape {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='34' viewBox='0 0 360 34' fill='none'%3E%3Cpath d='M0 33.893C55.7619 12.0137 116.478 0 180 0C243.522 0 304.238 12.0137 360 33.893V34H0V33.893Z' fill='%23F5F6F7'/%3E%3C/svg%3E") 50%/contain no-repeat;
    }

    .wave--top-black .wave__shape {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='34' viewBox='0 0 360 34' fill='none'%3E%3Cpath d='M0 33.893C55.7619 12.0137 116.478 0 180 0C243.522 0 304.238 12.0137 360 33.893V34H0V33.893Z' fill='%23132446'/%3E%3C/svg%3E") 50%/contain no-repeat;
    }

    .for__container {
        gap: 24px;
    }

    .for__items {
        --columns: 3;
        gap: 20px 12px;
    }

    .calculator__container {
        gap: 24px;
    }

    .calculator__content {
        gap: 24px;
        max-width: 360px;
    }

    .calculator__body {
        gap: 16px;
    }

    .calculator__button {
        min-width: 350px;
    }

    .calculator .item__range-slider {
        height: 12px;
        width: calc(100% - 40px);
        margin-top: 8px;
    }

    .calculator .item__range-slider::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }

    .calculator__results {
        margin-top: 20px;
        gap: 8px;
    }

    .calculator__result-title {
        padding: 4px;
    }

    .calculator__images {
        max-width: 340px;
    }

    .calculator .item__header-groups .group {
        padding: 0 16px;
    }

    .calculator .item__header-groups .group:after {
        height: 12px;
    }

    .calculator .item__header-groups .group_1 {
        width: 64px;
    }

    .start__items {
        margin-top: 24px;
    }

    .start .item {
        gap: 12px;
    }

    .start .item__number {
        width: 40px;
        height: 40px;
    }

    .gallery__slider-wrap {
        height: 490px;
        margin-top: 24px;
    }

    .gallery .swiper-slide {
        height: 490px;
        max-width: 320px;
    }

    .contacts__body {
        margin-top: 24px;
    }

    .contacts__info {
        gap: 12px;
        padding: 12px;
    }

    .footer {
        padding-bottom: 24px;
    }

    .footer__logo {
        width: 80px;
    }

    .footer__social {
        gap: 12px;
    }

    .footer__bottom {
        padding-top: 16px;
    }

    .footer__bottom:before {
        width: 130px;
        filter: blur(75px);
    }

    .footer__developed-link {
        width: 64px;
    }
}

@media (max-width: 760px) {
    :root {
        --container-width: 360px;
    }

    [class*=__container] {
        flex-direction: column;
    }

    .header__container {
        flex-direction: row;
    }

    .hero {
        padding-top: 400px;
        text-align: center;
    }

    .hero__decor {
        width: 986px;
        left: 50%;
        top: 370px;
        transform: translate(-50%, -100%);
    }

    .hero__decor:before {
        width: 130px;
        height: 130px;
        flex-shrink: 0;
        left: 50%;
        top: auto;
        bottom: 200px;
        transform: translate3d(-50%, 0, 0);
        filter: blur(75px);
    }

    .hero__content {
        display: flex;
        flex-flow: column;
    }

    .hero__tags {
        justify-content: center;
        gap: 24px;
        order: 4;
        margin-bottom: 0;
        margin-top: 48px;
    }

    .hero__button {
        margin: 24px auto 0;
    }

    .hero__image {
        top: 0;
        transform: translate(-50%, 20px);
    }

    .advantages__subtitle {
        max-width: 300px;
    }

    .for__items {
        --columns: 2;
    }

    .for__button {
        display: inline-flex;
    }

    .calculator .tooltip__content {
        width: 300px;
        left: auto;
        right: 20px;
    }

    .calculator__footer {
        flex-direction: column;
        gap: 16px;
    }

    .calculator .item__header:has(.item__header-groups) {
        padding-top: 44px;
    }

    .calculator .item__header-groups .group {
        font-size: 12px;
        padding: 0 15.5px;
    }

    .calculator .item__header-groups .group:after {
        height: 14px;
    }

    .calculator .item__header-groups .group_1 {
        width: 62px;
    }

    .start .item {
        width: 100%;
        border-left: 2px solid var(--color);
    }

    .start .item:nth-child(odd) {
        width: 100%;
        padding-right: 0;
        padding-left: 40px;
        border-left: 2px solid var(--color);
        border-right: none;
        text-align: left;
        flex-direction: row;
    }

    .start .item:nth-child(odd) .item__number:before {
        left: 0;
        transform: translate(-100%, -50%);
    }

    .start .item__number:before {
        height: 2px;
    }

    .start .item__text {
        max-width: 220px;
    }

    .contacts__body {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
    }

    .footer__docs {
        text-align: center;
    }
}