body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    --text: #5768A2;
    --header: #36426C;
    --blue: #4C75FF;
    --red: #dd153f;
    --border: #D9E2FF;
    --grey-bg: #F5F7FF;
    --grey-text: #95A8E8;
    --table-header: #7494FF;
}
p, li {
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.8125rem;
    color: var(--text);
    margin: 0;
}
.disabled {
    opacity: .6;
    pointer-events: none;
}
input[type="button"],
button[type="button"],
.banner-btn {
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 100%;
    padding: 18px 28px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border: 2px solid;
    display: inline-block;
}
input[type="button"].blue,
button[type="button"].blue,
.banner-btn {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
input[type="button"].blue:hover,
button[type="button"].blue:hover,
.banner-btn:hover {
    box-shadow: 0 10px 20px 0 #4C75FF4D;
}
input[type="button"].white,
button[type="button"].white,
.banner-btn.white {
    background: #fff;
    border-color: #fff;
    color: var(--blue);
}
input[type="button"].white:hover,
button[type="button"].white:hover,
.banner-btn.white:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}
h2 {
    font-weight: 600;
    font-size: 1.8125rem;
    line-height: 2.4375rem;
    color: var(--header);
}
.tab-selector {
    display: grid;
    width: fit-content;
    max-width: 100%;
    grid-template-columns: repeat(4, fit-content(100%));
    margin: 0 auto 75px;
    position: relative;
    padding: 0;
    list-style: none;
}
.tab-selector .tab-button {
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.3125rem;
    color: var(--grey-text);
    padding: 0 30px 17px;
    user-select: none;
    border-bottom: 2px solid var(--border);
}
.tab-selector .tab-button:hover {
    color: var(--blue);
    cursor: pointer;
}
.tab-selector .tab-button.active {
    color: var(--blue);
    border-color: var(--blue);
}
.tab-container {
    display: flex;
}
.tab-container .tab {
    display: none;
}
.tab-container .tab.active {
    display: block;
}
.table-container {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.table-container table {
    width: 100%;
    font-size: 0.9375rem;
    line-height: 1.3125rem;
}
.table-container table tr:nth-of-type(even) {
    background: var(--grey-bg);
}
.table-container table th {
    background: var(--table-header);
    color: #fff;
    font-weight: 600;
    padding: 20px 30px;
}
.table-container table th:not(:last-of-type) {
    border-right: 1px solid #6788F4;
}
.table-container table td {
    font-weight: 500;
    color: var(--text);
    padding: 20px 30px;
}
.table-container table td:not(:last-of-type) {
    border-right: 1px solid #D9E2FF;
}


header {
    background: linear-gradient(180deg, #4C75FF 0%, #84A0FF 100%);
    padding-top: 28px;
}
header .header--top-row {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 25px;
}
header .header--top-row .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 100%;
}
header .logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}
header .logo p {
    color: #fff;
    margin: 0;
}
header .header-contacts {
    display: flex;
    align-items: center;
    gap: 60px;
}
header .header-contacts a {
    color: #fff;
    text-decoration: none;
}
#header-hidden-menu button[type="button"],
header button[type="button"] {
    border: none;
    outline: none;
    background: rgba(255, 255, 255, .1);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    padding: 7px 25px 7px 7px;
    color: #fff;
    font-weight: 600;
    gap: 20px;
}
#header-hidden-menu button span,
header button span {
    margin-left: 15px;
}
#header-hidden-menu button[type="button"]:hover,
header button[type="button"]:hover {
    background: #fff;
    color: #FFA136;
}
#header-hidden-menu button[type="button"]:hover svg circle,
header button[type="button"]:hover svg circle {
    fill: #FFA136;
}
#header-hidden-menu button[type="button"]:hover svg path,
header button[type="button"]:hover svg path {
    fill: #fff;
}
.header--nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, fit-content(100%));
    justify-content: space-between;
    padding: 30px 85px 30px 0;
    margin: 0;
}
.header--nav li a {
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

dialog {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 50px 50px 45px;
    background: #fff;
    border: none;
    outline: none;
    position: fixed;
    overflow: visible;
    max-width: 570px;
}
dialog::backdrop {
    background: rgba(54, 66, 108, 0.7);
    backdrop-filter: blur(3px);
}
dialog .modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    outline: none;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 2.3rem;
    line-height: 100%;
    font-weight: 300;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: .6;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    -ms-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}
dialog .modal-close:hover {
    opacity: 1;
}
dialog h2 {
    font-weight: 600;
    font-size: 1.8125rem;
    line-height: 2.4375rem;
    color: var(--header);
}
dialog h2 + p {
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.8125rem;
    color: var(--text);
    display: block;
    width: 100%;
    text-align: center;
    margin: 15px 0 40px;
}
dialog input[type="text"] {
    border: 1px solid var(--border);
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 17px 18px;
    background: var(--grey-bg);
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    color: var(--text);
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
dialog input[type="text"]::placeholder {
    color: var(--grey-text);
}
dialog .privacy-agreement input[type="checkbox"] {
    display: none;
}
dialog .privacy-agreement label {
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.4375rem;
    color: var(--text);
    position: relative;
    padding-left: 35px;
    user-select: none;
    margin-top: 10px;
}
dialog .privacy-agreement label a {
    text-decoration: none;
}
dialog .privacy-agreement label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid var(--border);
    background: var(--grey-bg);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
dialog .privacy-agreement label:hover:before {
    border-color: var(--blue);
    cursor: pointer;
}
dialog .privacy-agreement input[type="checkbox"] + label:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/check.svg) no-repeat center;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    visibility: hidden;
}
dialog .privacy-agreement input[type="checkbox"]:checked + label:before {
    border-color: var(--blue);
    background: var(--blue);
}
dialog .privacy-agreement input[type="checkbox"]:checked + label:after {
    visibility: visible;
}
dialog input[type="button"] {
    margin-top: 30px;
    width: 100%;
}
.footer-wrapper {
    padding: 90px 0 30px;
    background: linear-gradient(0deg, #84A0FF 0%, #FFFFFF 100%);
}
footer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid var(--grey-bg);
    background: #fff;
    padding: 40px 40px 30px;
}
footer .grid-container {
    display: grid;
    grid-template-columns: repeat(4, fit-content(100%));
    gap: 0 100px;
}
footer h3 {
    font-size: 0.9375rem;
    line-height: 1.4375rem;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 20px;
}
footer .grid-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .grid-container a {
    text-decoration: none;
    display: inline-block;
}
footer .grid-container li,
footer .grid-container div:not(.social-links-container) a {
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    color: var(--text);
}
footer .grid-container li {
    line-height: 100%;
}
footer .grid-container li:not(:last-of-type),
footer .grid-container .helpful-info a:not(:last-of-type),
footer .grid-container .footer-contacts a:not(:last-of-type) {
    margin-bottom: 10px;
}
footer .grid-container .social-links-container a:not(:last-of-type) {
    display: inline-block;
    margin-right: 5px;
}
footer .bottom-text {
    border-top: 1px solid var(--border);
    margin-top: 30px;
    padding-top: 30px;
}
footer .bottom-text p,
footer .bottom-text p a {
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    color: var(--grey-text);
    max-width: 1002px;
}
footer .bottom-text p:not(:last-of-type) {
    margin-bottom: 20px;
}
#scrollTopBtn {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--blue);
    -moz-transform: scale(1, -1);
    -webkit-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    transform: scale(1, -1);
    filter: FlipV;
    -ms-filter: "FlipV";
}
#scrollTopBtn.hidden {
    opacity: 0;
    pointer-events: none;
}
#scrollTopBtn,
#scrollTopBtn path {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
#scrollTopBtn path {
    fill: #fff;
}
#scrollTopBtn:hover {
    background: var(--grey-bg);
}
#scrollTopBtn:hover path {
    fill: var(--blue);
}
#menuCallBtn,
#menuCloseBtn {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    border: 5px solid rgba(255, 255, 255, .1);
    background-clip: padding-box;
    position: relative;
    display: block;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    cursor: pointer;
    z-index: 1;
}
#menuCallBtn {
    position: fixed;
    top: 25px;
    right: 16px;
}
#menuCallBtn span,
#menuCloseBtn span {
    display: block;
    height: 3px;
    width: 23px;
    background: #FFA136;
    position: absolute;
    left: 50%;
    margin-left: -11.5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#menuCallBtn span:nth-of-type(1) {
    top: 50%;
    margin-top: -8.5px;
}
#menuCallBtn span:nth-of-type(2) {
    top: 50%;
    margin-top: -1.5px;
}
#menuCallBtn span:nth-of-type(3) {
    top: 50%;
    margin-top: 5.5px;
}
#menuCloseBtn {
    position: absolute;
    top: 25px;
    right: 16px;
}
#menuCloseBtn span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}
#menuCloseBtn span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 50%;
    margin-top: -1.5px;
}
#menuCallBtn:hover,
#menuCloseBtn:hover {
    background: #FFA136;
    border-color: #fff;
}
#menuCallBtn:hover span,
#menuCloseBtn:hover span {
    background: #fff;
}

#header-hidden-menu {
    position: fixed;
    right: -100%;
    top: 0;
    background: var(--blue);
    color: #fff;
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 100%;
    padding: 50px;
    width: 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 2;
}
#header-hidden-menu.active {
    right: 0;
}
#header-hidden-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 150px;
}
#header-hidden-menu ul li:not(:last-of-type) {
    margin-bottom: 30px;
}
#header-hidden-menu a {
    font-weight: 500;
    font-size: 1.8125rem;
    line-height: 2.4375rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
#header-hidden-menu .header-contacts a:nth-of-type(2) {
    margin: 30px 0 40px;
}
#header-hidden-menu .header-contacts button {
    font-size: 1.3125rem;
    line-height: 1.938rem;
}
#header-hidden-menu .header-contacts svg.small {
    display: none;
}

@media (min-width: 576px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (min-width: 1200px) {
    #menuCallBtn {
        display: none;
    }
}

@media (max-width: 1400px) {
    .header--nav ul {
        padding-right: 0;
    }
    footer .grid-container {
        gap: 0 90px;
    }
}
@media (max-width: 1200px) {
    header .header-contacts,
    .header--nav {
        display: none;
    }
    #menuCallBtn {
        display: block;
    }
    footer .grid-container {
        gap: 40px 90px;
        grid-template-columns: repeat(3, fit-content(100%));
    }
}
@media (max-width: 991px) {
    footer .grid-container {
        gap: 40px 90px;
        grid-template-columns: repeat(2, fit-content(100%));
    }
    #scrollTopBtn {
        left: 20px;
    }
}
@media (max-width: 768px) {


}
@media (max-width: 575px) {
    #header-hidden-menu .header-contacts svg.small {
        display: initial;
    }
    #header-hidden-menu .header-contacts svg.big {
        display: none;
    }
    #header-hidden-menu ul {
        margin: 0 0 60px;
    }
    #header-hidden-menu ul li:not(:last-of-type) {
        margin-bottom: 20px;
    }
    #header-hidden-menu a {
        font-weight: 500;
        font-size: 1.063rem;
        line-height: 100%;
        color: #fff;
        text-decoration: none;
        display: inline-block;
    }
    #header-hidden-menu .header-contacts a:nth-of-type(2) {
        margin: 20px 0 30px;
    }
    #header-hidden-menu .header-contacts button {
        font-size: 0.938rem;
        line-height: 100%;
    }
    footer .grid-container {
        grid-template-columns: repeat(1, fit-content(100%));
        gap: 40px;
    }
    dialog {
        max-width: 100vw;
    }
}