@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: 6px;
    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;
}

.footer .wrapper {
    gap: 52px;
}

.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%;
}

.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{
    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;
}
@media (max-width: 1360px) {
    .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) {
    .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: 64px;
    }

    .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) {
    .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) {
    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;
    }
}