
.landing_wrap {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    position: relative;
    max-width: 1920px;
}
@media (max-width: 1224px) {
    .landing_wrap {
        padding: 0 12px;
        z-index: 2;
    }
}
@media (min-width: 1224px) {
    .landing_wrap {
        padding: 0 80px;
    }
}

.landing_header {
    position: sticky;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 10;
    width: 100%;
}
.landing_header .landing_wrap {
    justify-content: space-between;
    padding-top: 4px;
    padding-bottom: 4px;
}

.landing_header > .landing_wrap > div:first-of-type {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.landing_logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.landing_logo img {
    max-width: 100%;
}
.landing_logo span {
    padding-left: 12px;
    color: #2F5FE3;
    font-size: 20px;
    font-weight: 600;
    font-family: "Geologica", sans-serif;
}

.landing_lang {
    display: flex;
    text-wrap: nowrap;
}
@media (max-width: 1280px) {
    .landing_lang {
        margin: 0 auto 0 20px;
    }
}
@media (min-width: 1281px) {
    .landing_lang {
        margin-left: 20px;
    }
}

.landing_lang__btn {
    color: #0c1839;
    cursor: pointer;
    background: transparent;
    transition: 0.2s ease-in-out;
}
.landing_lang__btn:hover, .landing_lang__btn:focus {
    color: #2f5fe3;
}
.landing_lang__btn--active {
    color: #2f5fe3;
    font-weight: 700;
}
.landing_lang__btn:not(:first-child):before {
    content: "|";
    margin: 0 5px;
}

@media (max-width: 1224px) {
    .landing_header__navbar {
        background-color: white;
        position: absolute;
        top: 58px;
        left: 0;
        width: 100%;
        display: flex;
        display: none;
        flex-direction: column;
        overflow: hidden;
        transition: 0.3s max-height;
        padding: 20px 20px;
    }
}
@media (min-width: 1224px) {
    .landing_header__navbar {
        display: contents;
    }
}
.landing_header__navbar--open {
    max-height: none;
    display: flex;
}

.landing_topnav {
    display: flex;
    align-items: center;
}
@media (max-width: 1224px) {
    .landing_topnav {
        width: 100%;
        flex-direction: column;
    }
}
@media (min-width: 1224px) {
    .landing_topnav {
        gap: 24px;
    }
}
.landing_topnav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0c1839;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    transition: 0.2s ease-in-out;
}
@media (max-width: 1224px) {
    .landing_topnav__link {
        padding: 20px 16px;
        width: 100%;
        border-bottom: 1px solid rgba(47, 95, 227, 0.2);
    }
}
.landing_topnav__link:hover, .landing_topnav__link:focus {
    color: #2f5fe3;
    text-shadow: 0 0 1px #2f5fe3;
}
.landing_header__navbar > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.landing_topnav__download {
    background-color: #2F5FE3;
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
}
.landing_topnav__download:hover {
    background-color: #72C9FA;;
}
.landing_topnav__download:first-of-type {
    border-radius: 12px 0 0 12px;
}
.landing_topnav__download:last-of-type {
    border-radius: 0 12px 12px 0;
}
@media (max-width: 1224px) {
    .landing_topnav__download {
        width: 100%;
    }
}

@media (max-width: 1224px) {
    .landing_header__btn {
        position: relative;
        margin-left: auto;
        display: block;
        font-size: 0;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: #427bec;
        cursor: pointer;
        flex-shrink: 0;
    }
    .landing_header__btn:before, .landing_header__btn:after,
    .landing_header__btn span {
        background: #fff;
        border-radius: 4px;
        position: absolute;
        top: 50%;
        left: 7px;
        right: 7px;
        height: 2px;
        margin-top: -1px;
        transition: all 0.3s linear;
        opacity: 1;
    }
    .landing_header__btn:before, .landing_header__btn:after {
        content: "";
    }
    .landing_header__btn:before {
        top: 30%;
    }
    .landing_header__btn:after {
        top: 70%;
    }
    .landing_header__btn--active:before, .landing_header__btn--active:after {
        top: 50%;
        left: 15%;
        right: 15%;
    }
    .landing_header__btn--active:before {
        transform: rotate(45deg);
    }
    .landing_header__btn--active:after {
        transform: rotate(-45deg);
    }
    .landing_header__btn--active span {
        opacity: 0;
    }
}
@media (min-width: 1224px) {
    .landing_header__btn {
        display: none;
    }
}

.topnav {
    max-width: 800px;
    flex-wrap: wrap;
    justify-content: end;
}
@media (min-width: 1025px) {
    .topnav {
        gap: 5px 20px;
    }
}
