@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(./../fonts/OpenSans-Regular.woff2) format("woff2");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(./../fonts/OpenSans-Medium.woff2) format("woff2");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(./../fonts/OpenSans-SemiBold.woff2) format("woff2");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(./../fonts/OpenSans-Bold.woff2) format("woff2");
}

@font-face {
    font-family: "Open Sans Condensed";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(./../fonts/OpenSansCondensed-Bold.woff2) format("woff2");
}

@font-face {
    font-family: "Playpen Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(./../fonts/PlaypenSans-Regular.woff2) format("woff2");
}

@font-face {
    font-family: "Playpen Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(./../fonts/PlaypenSans-SemiBold.woff2) format("woff2");
}

@font-face {
    font-family: "Playpen Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(./../fonts/PlaypenSans-Bold.woff2) format("woff2");
}

@font-face {
    font-family: "Playpen Sans";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(./../fonts/PlaypenSans-ExtraBold.woff2) format("woff2");
}

@font-face {
    font-family: "Caveat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(./../fonts/Caveat-Bold.woff2) format("woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333338;
}

a {
    text-decoration: none;
    color: #333338;
    transition: all 0.4s;
}

a:hover {
    color: #E43329;
}

path {
    transition: all 0.4s;
}

h1 {
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 120%;
    text-align: center;
    max-width: 920px;
}

h2 {
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 120%;
}

h3 {
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
}

h4 {
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-align: left;
}

h1 span,
h2 span,
h3 span,
h4 span {
    color: #E43329;
}

h4 span {
    display: block;
}

p,
strong {
    line-height: 130%;
}

ul,
ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    padding-left: 20px;
    width: 100%;
}

li {
    line-height: 140%;
}

.dash li {
    list-style-type: "– ";
}

.step {
    padding-left: 6px;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input,
textarea {
    background: #F5F7FC;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    border: 1px solid rgba(100, 100, 111, 0.2);
    backdrop-filter: blur(7.5px);
    border-radius: 8px;
    padding: 0 24px;
    height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
    outline: none;
}

textarea {
    padding: 16px 24px;
    height: 108px;
    resize: none;
}

button {
    outline: none;
    border: none;
    background: transparent;
    outline: none;
    transition: all 0.4s;
    cursor: pointer;
}

button.btn {
    padding: 12px 24px;
    max-width: 100%;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
}

.btn {
    text-transform: capitalize;
    font-size: 20px;
    line-height: 24px;
    padding: 19px 24px;
    font-weight: 600;
    background: #009933;
    border: 1px solid #009933;
    color: #FFFFFF;
    border-radius: 8px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

.btn:hover {
    background: transparent;
    color: #009933;
}

.btn._border {
    background: transparent;
    border: 1px solid #009933;
    color: #00205B;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
}

.btn._border:hover {
    background: #009933;
    color: #FFFFFF;
}

.btn._red {
    background: #E43329;
    padding: 12px 24px;
    border-color: #E43329;
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
}

.btn._red:hover {
    background: #FFFFFF;
    color: #E43329;
}

.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #FFFFFF;
    z-index: 5;
    border-bottom: 1px solid #F5F7FC;
}

.headerSpace {
    height: 90px;
}

.headerWrapper {
    display: flex;
    align-items: center;
    gap: 44px;
    height: 90px;
}

.logotype {
    display: inline-flex;
}

.logotype img {
    height: 64px;
    width: auto;
}

.headerNav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.rightHeader {
    display: flex;
    align-items: center;
    gap: 24px;
}

.authRow {
    display: flex;
    align-items: center;
    gap: 24px;
}

.authRow a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(100, 100, 111, 0.2);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wrapper {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 32px;
}

.demo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
}

.demo span {
    border-bottom: 1px solid #333338;
    transition: all 0.4s;
}

.demo:hover span {
    color: #E43329;
    border-color: #E43329;
}

.footer {
    background: #26263E;
    padding-top: 52px;
    padding-bottom: 100px;
    color: #FFFFFF;
}

.downloads {
    display: flex;
    gap: 20px;
}

.footer .wrapper {
    gap: 52px;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer .col {
    align-items: unset;
    text-align: left;
}

.footerRow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.footerRow .col {
    gap: 20px;
}

.footerRow .col div {
    padding: 0;
}

.footerRow a {
    color: #FFFFFF;
}

.footerRow a:hover {
    color: #E43329;
}

.phone {
    font-size: 20px;
    font-weight: 600;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social {
    display: flex;
    gap: 10px;
}

.social a:hover {
    opacity: 0.7;
}

.footerBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    width: 100%;
}

.footer .btn {
    font-size: 16px;
    padding: 12px;
}

.footer .btn:hover {
    color: #009933;
}

.btnApp {
    text-transform: uppercase;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.btnApp:hover {
    background: rgba(255, 255, 255, 0.6);
}

.burgerBtn {
    display: none;
}

.col p {
    width: 100%;
}

.gear {
    position: absolute;
}

.other {
    padding: 80px 0;
}

.information {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.information h1 {
    text-align: left;
    font-size: 32px;
    max-width: 100%;
    line-height: 150%;
    text-transform: uppercase;
}

.information p,
.information strong {
    line-height: 150%;
}

.information h3 {
    font-size: 24px;
    line-height: 150%;
    text-transform: uppercase;
}

.information .col {
    align-items: flex-start;
}

.support {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support .form {
    max-width: 640px;
    width: 100%;
}

.form h3 {
    padding-bottom: 8px;
}

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

.timeSelect>p {
    max-width: 100px;
    width: 100%;
    background: #FFFFFF;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    border-radius: 10px;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.formMessage {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.formMessage:not(.error) {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.formMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn._disabled,
.btn:disabled,
.demo:disabled {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

input[type="tel"] {
    appearance: none;
}

.dropdown {
    position: relative;
    display: flex;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdownArrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.dropdown._active .dropdownArrow {
    transform: rotate(180deg);
}

.dropdownMenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdownMenu._active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdownItem {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdownItem:hover {
    color: #E43329;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 10;
    top: -100vh;
    transition: all 0.4s;
}

.popup._active {
    top: 0;
}

.popupBg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    z-index: 0;
    cursor: pointer;
}

.popupContent {
    position: absolute;
    z-index: 1;
    max-width: 450px;
    width: 100%;
    background: linear-gradient(68.69deg, rgba(0, 32, 91, 0) 38.02%, rgba(0, 32, 91, 0.07) 102.2%), #FFFFFF;
    box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.2);
    border-radius: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 44px 28px 32px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.popupContent._active {
    visibility: visible;
    opacity: 1;
}

.popupClose {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.popupClose:hover path {
    fill: #E43329;
}

.popupContent h3 {
    font-size: 28px;
    text-align: center;
    padding-bottom: 12px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.checkbox {
    padding-left: 32px;
    position: relative;
    font-size: 13px;
    cursor: pointer;
}

.checkbox strong {
    font-size: 15px;
}

.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #F5F7FC;
    border: 1px solid rgba(100, 100, 111, 0.2);
    border-radius: 4px;
    transition: all 0.3s;
}

.checkmark:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 2px;
    width: 15px;
    height: 11px;
    background: url(data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2211%22%20viewBox%3D%220%200%2015%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0%205.79731L1.43981%204.35684L5.04%207.95572L12.9964%200L14.4375%201.43981L5.04%2010.8373L0%205.79731Z%22%20fill%3D%22%23009933%22%2F%3E%0A%3C%2Fsvg%3E);
    background-size: cover;
    opacity: 0;
    transition: all 0.3s;
}

.checkbox input:checked~.checkmark:after {
    opacity: 1;
}

.form .msg {
    text-align: center;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.8);
}

.form .row {
    flex-direction: row;
}

.form .row .checkbox {
    width: calc(50% - 10px);
}

@media (max-width: 1360px) {
    .dropdownMenu {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
        min-width: 240px;
        left: 50%;
        transform: translate(-50%, -10px);
        padding: 16px;
    }

    .dropdownMenu._active {
        transform: translate(-50%, 0);
    }

    .dropdownItem {
        padding: 0;
        text-align: center;
        font-size: 22px !important;
        font-weight: 500;
    }

    .burgerBtn {
        position: relative;
        display: block;
        width: 24px;
        height: 18px;
        cursor: pointer;
    }

    .burgerBtn::after,
    .burgerBtn::before,
    .burgerBtn span {
        position: absolute;
        content: '';
        width: 100%;
        height: 2px;
        background: #333338;
        border-radius: 2px;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        transition: all 0.4s;
        opacity: 1;
    }

    .burgerBtn::before {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .burgerBtn span {
        width: 50%;
        left: unset;
        transform: unset;
        right: 0;
        bottom: 0;
        top: unset;
    }

    .burgerBtn:hover::before,
    .burgerBtn:hover::after,
    .burgerBtn:hover span {
        background: #E43329;
    }

    .burgerBtn._active span {
        opacity: 0;
    }

    .burgerBtn._active::after {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .burgerBtn._active::before {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .headerNav {
        position: fixed;
        top: -100vh;
        background: rgba(255, 255, 255, 0.8);
        left: 0;
        padding: 32px 20px;
        width: 100%;
        box-shadow: 0px 1px 16px rgba(0, 0, 0, 0.06);
        gap: 32px;
        transition: all 0.4s;
        z-index: 3;
        height: calc(100vh - 90px);
        flex-direction: column;
        padding-top: 100px;
        backdrop-filter: blur(4px);
    }

    .header._active .headerNav {
        top: 90px;
    }

    .headerNav a {
        font-size: 24px;
        font-weight: 600;
    }

    .header .logotype,
    .rightHeader,
    .burgerBtn {
        position: relative;
        z-index: 4;
    }

    .headerWrapper .logotype {
        flex-grow: 1;
    }
}

@media (max-width: 1320px) {
    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 40px;
    }

    h4 {
        font-size: 22px;
    }

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

@media (max-width: 1240px) {
    .btn {
        padding: 16px !important;
    }

    .footer {
        padding: 52px 0;
    }
}

@media (max-width: 960px) {
    .other {
        padding: 60px 0;
    }

    .information h1 {
        font-size: 28px;
    }

    .information h3 {
        font-size: 22px;
    }

    .header .btn._border {
        position: fixed;
        bottom: -100vh;
        left: 50%;
        transform: translateX(-50%);
        background: #009933;
        color: #FFFFFF;
        text-transform: uppercase;
        padding: 16px !important;
        line-height: 120%;
        max-width: 300px !important;
        width: 100% !important;
    }

    .header .btn._border:hover {
        background: #FFFFFF;
        color: #009933;
    }

    .header._active .btn._border {
        bottom: 64px;
    }

    h1 {
        font-size: 56px;
    }

    .footer .logotype {
        width: 100%;
    }

    .footerRow {
        flex-wrap: wrap;
        gap: 32px 24px;
    }

    .footerBottom {
        padding: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 24px;
    }

    h4 span {
        display: inline-block;
    }
}

@media (max-width: 640px) {
    .popupContent h3 {
        font-size: 24px;
        padding-bottom: 4px;
    }

    .headerNav {
        gap: 24px;
    }

    .dropdownMenu {
        gap: 24px;
    }

    .headerNav {
        padding-top: 52px;
    }

    .rightHeader {
        position: fixed;
        z-index: 5;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        flex-direction: column;
        bottom: -100vh;
        gap: 20px;
        transition: all 0.4s;
    }

    .header .btn._border {
        position: relative;
        bottom: unset !important;
        left: unset !important;
        transform: none !important;
        max-width: 300px;
    }

    .header._active .rightHeader {
        bottom: 36px;
    }

    .authRow {
        display: flex;
        flex-direction: column;
        max-width: 300px;
        width: 100%;
        gap: 20px;
    }

    .authRow a {
        font-size: 20px;
        font-weight: 500;
    }

    .authRow .btn {
        width: 100%;
    }

    .footerRow {
        gap: 32px 16px;
    }

    .socials {
        width: 100%;
    }
}

@media (max-width: 540px) {

    .form .row {
        flex-direction: unset;
        gap: 16px;
    }

    .checkbox {
        font-size: 14px;
        width: 100% !important;
    }

    .checkbox strong {
        font-size: 14px;
    }

    .popupContent {
        padding: 36px 20px 24px;
    }

    .popupContent {
        max-width: 100%;
        width: 95vw;
    }

    .information h1 {
        font-size: 24px;
    }

    .information h3 {
        font-size: 20px;
    }

    button.btn {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    input,
    textarea {
        font-size: 14px;
        padding: 0 16px;
    }

    textarea {
        padding: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px !important;
    }

    h4 span {
        display: block;
    }

    .btn {
        max-width: 100% !important;
        width: 100% !important;
    }

    .footerBottom {
        gap: 24px;
        flex-wrap: wrap-reverse;
    }
}

@media (max-width: 414px) {
    .popupContent h3 {
        font-size: 20px;
    }

    h1 {
        font-size: 36px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .demo {
        font-size: 16px;
    }

    h4 {
        font-size: 20px !important;
    }

    h2 {
        font-size: 28px;
    }

    p,
    strong,
    li {
        line-height: 150%;
    }

    body {
        font-size: 14px;
    }
}