html {
    height: 100%;
}

body {
    min-height: 100%;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    position: fixed;
    z-index: 80;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1250px) {
    .header {
        height: 130px;
        padding-top: 12px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        z-index: 300;
        height: 70px;
    }

    .now-opened + .header {
        box-shadow: none;
    }
}

.header-base {
    position: fixed;
    z-index: 108;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
    .now-opened + .header-base {
        box-shadow: none;
    }
}

/* header grid block */
.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1410px) {
    .header__row {
        max-width: 100%;
    }
}

@media screen and (max-width: 1250px) {
    .header .header__row {
        flex-wrap: wrap;
    }
}

.burger-button {
    display: none;
}

@media screen and (max-width: 1024px) {
    .burger-button {
        display: block;
        width: 26px;
        height: 42px;
        padding-right: 0;
        padding-left: 0;
        border: none;
        outline: none;
        background-color: rgba(0, 0, 0, 0);
    }
}

.burger {
    position: relative;
    display: block;
    width: 26px;
    height: 20px;
    margin-right: 0;
    margin-left: 0;
    border-top: 2px solid black;
}

.burger::before {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    margin-top: -1px;
    transition: all 0.3s linear;
    border-top: 2px solid black;
}

.burger::after {
    content: '';
    position: absolute;
    top: 100%;
    display: block;
    width: 100%;
    transition: all 0.3s linear;
    border-top: 2px solid black;
}

.burger-button--opened .burger {
    border-top: 0;
}

.burger-button--opened .burger::before {
    transition: all 0.3s linear;
    transform: rotate(45deg);
}

.burger-button--opened .burger::after {
    top: 50%;
    margin-top: -1px;
    transition: all 0.3s linear;
    transform: rotate(-45deg);
}

.now-opened + .header .search {
    transition: all 0.3s linear;
    opacity: 0;
}

.mobile-header {
    display: none;
}

@media screen and (max-width: 1024px) {
    .mobile-header {
        position: fixed;
        z-index: 200;
        top: 0;
        right: 0;
        display: block;
        width: 100%;
        min-width: 300px;
        height: 100%;
        transform: translate(0, -100%);
        background-color: #ffffff;
    }
}

.mobile-header__nav {
    display: flex;
    overflow: scroll;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: 110px;
    padding-right: 50px;
    padding-bottom: 42px;
    padding-left: 50px;
}

@media screen and (max-width: 330px) {
    .mobile-header__nav {
        padding-top: 90px;
    }
}

@media screen and (max-height: 450px) {
    .mobile-header__nav {
        padding-top: 52px;
    }
}

@media screen and (max-width: 1024px) {
    .mobile-header__nav .header-menu {
        display: block;
        width: auto;
        margin: 0;
        padding-left: 0;
        list-style-type: none;
        text-align: left;
    }
}

@media screen and (max-width: 1024px) {
    .mobile-header__nav .menu-item {
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .mobile-header__nav .header-menu a {
        text-align: left;
        text-decoration: none;
        letter-spacing: 0;
        text-transform: initial;
        color: rgb(0, 0, 0);
        font-size: 24px;
        line-height: 1;
    }
}

@media screen and (max-width: 767px) {
    .mobile-langs {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 230px;
        text-transform: uppercase;
    }
}

@media screen and (max-width: 767px) {
    .mobile-langs a {
        text-decoration: none;
        color: grey;
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .mobile-langs a.active {
        color: #000000;
    }
}

.menu-wrapper {
    z-index: 100;
    transition: all 0.3s linear;
}

.menu-wrapper.now-opened {
    z-index: 101;
    transform: translateY(0%);
}

/**
* Переключатель языков
*/

.lang_menu {
    position: relative;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .lang_menu {
        order: 3;
    }
}

.select-internal {
    position: relative;
    display: block;
    font-size: 20px;
}

@media all and (max-width: 1024px) {
    .select-internal {
        display: none;
    }
}

.lang {
    overflow: hidden;
    width: auto;
    border: solid 1px #ffffff;
}

@media screen and (max-width: 1024px) {
    .lang {
        width: auto;
    }
}

.lang__active-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    padding-right: 0;
    cursor: pointer;
}

@media only screen and (max-width: 1680px) {
    .lang__active-lang {
        height: 35px;
    }
}

@media only screen and (max-width: 1440px) {
    .lang__active-lang {
        height: 30px;
    }
}

@media only screen and (max-width: 1366px) {
    .lang__active-lang {
        height: 27px;
    }
}

@media screen and (max-width: 991px) {
    .lang__active-lang {
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .lang__active-lang {
        display: block;
        height: auto;
    }
}

.lang__triangle::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 6px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'13.414\' height=\'8.121\' viewBox=\'0 0 13.414 8.121\'%3E%3Cpath id=\'Контур_11656\' data-name=\'Контур 11656\' d=\'M0,0,6,6,0,12\' transform=\'translate(12.707 0.707) rotate(90)\' fill=\'none\' stroke=\'%23000\' stroke-width=\'2\'/%3E%3C/svg%3E%0A');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.lang--opened .lang__triangle::after {
    transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
    .lang__triangle::after {
        content: '';
        display: inline-block;
        width: 7px;
        height: 10px;
        transform: translateY(-20%) rotateZ(90deg);
        background: url('../img/arrow_button.svg') no-repeat center;
        background-size: contain;
    }

    .lang--opened .lang__triangle::after {
        transform: rotateZ(270deg);
    }
}

.langname {
    padding-right: 9px;
    text-transform: capitalize;
    color: #000000;
    font-size: 17px;
}

@media screen and (max-width: 767px) {
    .langname {
        padding-right: 10px;
        font-size: 24px;
    }
}

.lang-list {
    display: none;
}

@media screen and (max-width: 767px) {
    .lang-list {
        display: block;
        height: 0;
        transition: all 0.3s linear;
    }
}

.active.lang-list {
    position: absolute;
    z-index: 1;
    top: 54px;
    right: 0;
    display: block;
    width: 79px;
    padding-bottom: 18px;
    cursor: pointer;
    text-align: center;
    color: #000000;
    background-color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06), 0 6px 6px rgba(0, 0, 0, 0.02);
}

.lang-list a {
    text-decoration: none;
}

.lang-list__item {
    display: block;
    padding-top: 11px;
    padding-bottom: 8px;
    text-align: center;
    letter-spacing: 1.2px;
    text-transform: lowercase;
    color: #000000;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.2;
}

.lang-list__item::first-letter {
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .lang-list__item {
        padding-top: 11px;
        padding-bottom: 11px;
        text-align: left;
        font-size: 24px;
        line-height: 1;
    }
}

.greedy-search {
    position: relative;
    width: 100%;
    height: 40px;
    margin-right: 40px;
    margin-left: 40px;
}

@media screen and (max-width: 550px) {
    .greedy-search {
        margin-right: 20px;
        margin-left: 20px;
    }
}

.search-field {
    width: 100%;
    height: 100%;
    padding-right: 32px;
    padding-left: 15px;
    text-align: left;
    color: #000000;
    border: 1px solid #bebebe;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.43;

    -webkit-appearance: none;
}

.search-field:focus {
    border: 1px solid #000000;
    outline: none;
    box-shadow: none;
}

.search-field::placeholder {
    color: rgb(0, 0, 0);
    font-family: 'ProximaNova', sans-serif;
    font-size: 17px;
}

.search-field::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
    font-family: 'ProximaNova', sans-serif;
    font-size: 17px;
}

.search-field::-ms-input-placeholder {
    color: rgb(0, 0, 0);
    font-family: 'ProximaNova', sans-serif;
    font-size: 17px;
}

.search-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 100%;
    margin: 0;
    padding: 0;
    padding-right: 14px;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: url('data:image/svg+xml, %3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'17.443\' height=\'18.018\' viewBox=\'0 0 17.443 18.018\' stroke=\'%23000000\'%3E%3Cg id=\'Group_570\' data-name=\'Group 570\' transform=\'translate(-250.199 -96)\'%3E%3Cg id=\'Group_67\' data-name=\'Group 67\' transform=\'translate(250.199 96)\'%3E%3Cg id=\'Ellipse_14\' data-name=\'Ellipse 14\' fill=\'none\' stroke-width=\'2\'%3E%3Ccircle cx=\'7.5\' cy=\'7.5\' r=\'7.5\' stroke=\'none\'/%3E%3Ccircle cx=\'7.5\' cy=\'7.5\' r=\'6.5\' fill=\'none\'/%3E%3C/g%3E%3Cpath id=\'Path_77\' data-name=\'Path 77\' d=\'M17788.941,13669.992l5.064,5.066\' transform=\'translate(-17777.27 -13657.748)\' fill=\'none\' stroke-width=\'2\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: left;
}

.langs--mobile {
    display: block;
    padding-top: 11px;
}

.langs--mobile .active.lang-list {
    position: static;
    width: auto;
    height: auto;
    padding-top: 11px;
    padding-bottom: 0;
    transition: all 0.3s linear;
    text-align: left;
    border: none;
}

.menu-social {
    width: 100%;
    max-width: 225px;
    height: 70px;
    margin-top: 32px;
    margin-right: auto;
    padding-left: 0;
    text-align: left;
}

@media screen and (max-height: 400px) {
    .menu-social {
        height: 46px;
    }
}

@media screen and (max-width: 768px) {
    .menu-social {
        width: auto;
        max-width: 100%;
    }
}

.menu-social .social-item {
    margin: 0 6px;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .menu-social .social-item {
        margin-right: 28px;
        margin-left: 0;
    }

    .menu-social .social-item:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 400px) {
    .menu-social .social-item {
        margin-right: 20px;
    }
}

@media screen and (max-width: 991px) {
    .search input::-webkit-input-placeholder {
        padding-top: 3px;
        color: #000000;
        font-size: 12px;
        font-weight: normal;
        line-height: 1;
    }
}

/**
*
* footer 
*/
.footer {
    position: relative;
    z-index: 100;
    padding-top: 69px;
    padding-bottom: 72px;
    border-top: 1px solid rgb(230, 230, 230);
    background-color: white;
}

@media screen and (max-width: 960px) {
    .footer {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 960px) {
    .footer {
        padding-top: 50px;
    }
}

.footer__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logos {
    width: 16%;
}

@media screen and (max-width: 960px) {
    .footer-logos {
        position: relative;
        display: block;
        order: 3;
        width: 100%;
        margin-top: 53px;
        padding-top: 42px;
        padding-bottom: 33px;
    }

    .footer-logos::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: 100vw;
        height: 1px;
        margin-left: -50vw;
        background-color: rgb(230, 230, 230);
    }
}

@media screen and (max-width: 550px) {
    .footer-logos {
        margin-top: 29px;
        padding-top: 29px;
    }
}

.footer-menu {
    width: 84%;
    margin-bottom: 114px;
}

@media screen and (max-width: 1024px) {
    .footer-menu {
        width: 75%;
    }
}

@media screen and (max-width: 960px) {
    .footer-menu {
        width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .footer-menu {
        display: none;
    }
}

.footer-mobile-menu {
    display: none;
    order: 1;
    width: 100%;
    margin-top: 53px;
    margin-bottom: 58px;
}

@media screen and (max-width: 550px) {
    .footer-mobile-menu {
        display: block;
    }
}

.footer-menu .menu,
.footer-menu ul {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

@media screen and (max-width: 960px) {
    .footer-menu .menu {
        justify-content: flex-start;
    }
}

.footer-mobile-menu .menu,
.footer-mobile-menu ul {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.footer-menu .menu-item,
.footer-menu li {
    width: 33%;
    margin-bottom: 23px;
    text-align: right;
}

@media screen and (max-width: 960px) {
    .footer-menu .menu-item,
    .footer-menu li {
        width: 17%;
        min-width: 150px;
        margin-right: 18%;
        text-align: left;
    }

    .footer-menu .menu-item:nth-child(3n),
    .footer-menu li:nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 760px) {
    .footer-menu .menu-item,
    .footer-menu li {
        width: 33%;
        min-width: 150px;
        margin-right: 0;
        text-align: left;
    }
}

.footer-mobile-menu .menu-item,
.footer-mobile-menu li {
    width: 50%;
    min-width: 150px;
    margin-bottom: 23px;
    text-align: left;
}

.footer-menu .menu-item a,
.footer-mobile-menu .menu-item a,
.footer-menu a,
.footer-mobile-menu a {
    display: inline-block;
    width: 150px;
    transition: all 0.3s ease-out;
    text-align: left;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    font-size: 17px;
    line-height: 1.2;
}

@media (hover), (min-width:0\0), (min--moz-device-pixel-ratio:0) {
    .footer-menu .menu-item a:hover {
        transition: all 0.3s ease-out;
        text-decoration: underline;
    }
}

@media screen and (max-width: 760px) {
    .footer-socs {
        display: inline-flex;
        justify-content: space-between;
        width: 50%;
    }
}

@media screen and (max-width: 550px) {
    .footer-socs {
        align-self: center;
        justify-content: flex-start;
        width: 100%;
    }
}

.footer-copyright {
    display: inline-block;
    width: 50%;
}

@media screen and (max-width: 550px) {
    .footer-copyright {
        order: 2;
        width: 100%;
    }
}

.footer-copyright address {
    font-style: normal;
}

.footer-socs .social-item {
    margin-right: 30px;
}

@media screen and (max-width: 760px) {
    .footer-socs .social-item {
        margin-right: 0;
    }
}

@media screen and (max-width: 550px) {
    .footer-socs .social-item {
        margin-right: 30px;
    }
}

.footer-socs .social-item:last-child {
    margin-right: 0;
}

.footer-logo {
    display: block;
    width: 75px;
}

@media screen and (max-width: 960px) {
    .footer-logo {
        display: none;
    }
}

.footer-logo img {
    width: 100%;
    height: auto;
}

/* FOOTER END */

.fixed-body {
    overflow-y: hidden;
}

.header-padding {
    padding-top: 60px;
}

@media screen and (max-width: 1250px) {
    .header-padding {
        padding-top: 100px;
    }
}

@media screen and (max-width: 767px) {
    .header-padding {
        padding-top: 70px;
    }
}

.wrapper {
    width: 100%;
    max-width: 1392px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 14px;
    padding-left: 14px;
}

@media screen and (max-width: 1410px) {
    .wrapper {
        padding: 0 5%;
    }
}

@media screen and (max-width: 1366px) {
    .wrapper {
        padding-right: 3.5%;
        padding-left: 3.5%;
    }
}

@media screen and (max-width: 1024px) {
    .wrapper {
        padding-right: 32px;
        padding-left: 32px;
    }
}

@media screen and (max-width: 550px) {
    .wrapper {
        padding-right: 21px;
        padding-left: 21px;
    }
}

.wrapper-correction {
    margin-right: -14px;
    margin-left: -14px;
}

@media screen and (max-width: 767px) {
    .wrapper-correction {
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper--small {
    width: 100%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .wrapper--small {
        padding-right: 32px;
        padding-left: 32px;
    }
}

@media screen and (max-width: 550px) {
    .wrapper--small {
        padding-right: 21px;
        padding-left: 21px;
    }
}

.header-nav {
    display: block;
    margin-left: 40px;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .header-nav {
        display: none;
    }
}

.header-nav__item {
    display: inline-block;
    padding-right: 40px;
    list-style-type: none;
    text-decoration: none;
}

.header-submenu {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100vw;
    padding-top: 65px;
    padding-bottom: 65px;
    transition: transform 0.1s ease, opacity 400ms linear 0.1s;
    transform: scaleY(0);
    transform-origin: top center;
    white-space: nowrap;
    opacity: 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.07);
}

.header-submenu__row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1392px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 14px;
    padding-left: 14px;
}

@media screen and (max-width: 1410px) {
    .header-submenu__row {
        max-width: 100%;
        padding: 0 5%;
    }
}

@media screen and (max-width: 1366px) {
    .header-submenu__row {
        padding: 0 3.5%;
    }
}

@media screen and (max-width: 1250px) {
    .header-submenu__row {
        padding: 0 4.5%;
    }
}

.header-submenu .header-nav__item {
    display: block;
    width: 24%;
    max-width: 320px;
    margin-right: 2%;
    padding-right: 0;
    transition: transform 0.2s, opacity 0.1s;
    transition-delay: 0.1s;
    transform: translateY(-10px);
    text-decoration: none;
    opacity: 0;
}

.header-submenu .header-nav__item:last-child {
    margin-right: 0;
}

@media screen and (min-width: 769px) {
    .header-nav__item:hover .header-submenu .header-nav__item {
        transition: transform 0.3s ease, opacity 0.2s linear;
        transition-delay: 0.3s;
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 1440px) {
    .header-submenu .header-nav__item {
        max-width: 296px;
    }
}

@media screen and (max-width: 1024px) {
    .header-submenu .header-nav__item {
        max-width: 212px;
        margin-right: 3%;
    }
}

.header-submenu__pic {
    display: block;
    width: 100%;
    height: 190px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1366px) {
    .header-submenu__pic {
        height: 175px;
    }
}

@media screen and (max-width: 1024px) {
    .header-submenu__pic {
        height: 126px;
    }
}

.header-submenu__pic img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.header-nav__title {
    cursor: pointer;
    font-size: 17px;
    line-height: 1.4;
}

@media (hover), (min-width:0\0), (min--moz-device-pixel-ratio:0) {
    .header-nav__title:hover {
        opacity: 0.6;
    }
}

.header-nav__title-triangle::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 6px;
    margin-left: 10px;
    transition: all 200ms ease-in;
    vertical-align: middle;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'13.414\' height=\'8.121\' viewBox=\'0 0 13.414 8.121\'%3E%3Cpath id=\'Контур_11656\' data-name=\'Контур 11656\' d=\'M0,0,6,6,0,12\' transform=\'translate(12.707 0.707) rotate(90)\' fill=\'none\' stroke=\'%23000\' stroke-width=\'2\'/%3E%3C/svg%3E%0A');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.sub-menu {
    padding-top: 0;
    padding-left: 0;
    list-style: none;
}

.mobile-header__nav .menu-item-has-children {
    padding-top: 0;
    padding-bottom: 0;
}

.header-submenu .header-submenu {
    display: none;
}

.header-nav > .header-nav__item:last-child {
    padding-right: 0;
}

.mobile-header__nav .menu-item-has-children > a {
    display: none;
}

.mobile-header__nav .langname {
    font-size: 24px;
}

.langs--mobile .lang-list__item {
    padding-bottom: 11px;
    text-align: left;
    font-size: 24px;
}

.langs--mobile .lang__active-lang {
    justify-content: flex-start;
}

.header-nav__title {
    position: relative;
}

@media screen and (min-width: 769px) {
    .header-nav__item:hover .header-nav__title::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        display: block;
        width: 100%;
        height: 50px;
    }

    .header-nav__item:hover .header-nav__title-triangle::after {
        transition: all 200ms ease-in;
        transform: rotate(180deg);
    }
}

@media screen and (min-width: 769px) {
    .header-nav__item:hover .header-submenu {
        visibility: visible;
        transition: transform 0.25s ease, opacity 400ms;
        transform: scaleY(1);
        opacity: 1;
    }
}

/** SUBSCRIBE LANDING */

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid rgb(221, 221, 221);
}

@media screen and (max-width: 550px) {
    .footer-wrap {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.footer-registrars {
    text-align: right;
}

.footer-registrars__item {
    display: inline-block;
    margin-left: 30px;
    vertical-align: middle;
}

@media screen and (max-width: 1024px) {
    .footer-registrars__item {
        margin-left: 10px;
    }
}

.footer-registrars__logo {
    max-width: 94px;
}

@media screen and (max-width: 1024px) {
    .footer-registrars__logo {
        max-width: 70px;
    }
}

.copy {
    text-align: left;
    opacity: 0.5;
    color: #000000;
    font-size: 13px;
    font-weight: normal;
    line-height: 2.17;
}

/** SUBSCRIBE LANDING END */


.partners-list {
    margin-top: 50px;
}

@media screen and (max-width: 960px) {
    .partners-list {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0;
    }
}

@media screen and (max-width: 550px) {
    .partners-list {
        justify-content: space-between;
    }
}

.partners__logo {
    display: block;
    margin-top: 30px;
}

@media screen and (max-width: 960px) {
    .partners__logo {
        display: inline-block;
        margin-top: 0;
        margin-right: 16px;
        margin-left: 16px;
    }
}

@media screen and (max-width: 550px) {
    .partners__logo {
        margin: 0;
    }
}

.partners__logo img {
    max-width: 78px;
    height: auto;
}

.page-404 {
    height: 100vh;
    min-height: 630px;
}

@media screen and (max-width: 1024px) {
    .page-404 {
        min-height: 1px;
    }
}

.page-404 .wrapper {
    height: 100%;
    min-height: 100%;
}

.page-404__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .page-404__wrapper {
        display: block;
    }
}

.page-404__text {
    width: 1000px;
    max-width: 50%;
}

@media screen and (max-width: 1024px) {
    .page-404__text {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding-top: 98px;
        padding-bottom: 100px;
        text-align: center;
    }
}

@media screen and (max-width: 550px) {
    .page-404__text {
        padding-top: 63px;
    }

    .page-404__text .simple-button {
        margin-top: 20px;
    }

    .page-404__text .text--large {
        max-width: 266px;
        margin-right: auto;
        margin-left: auto;
    }
}

.page-404__nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .page-404__nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 768px;
        margin-right: auto;
        margin-left: auto;
        padding-bottom: 50px;
    }
}

.page-404__nav .picture-link {
    width: 320px;
    margin-bottom: 28px;
    margin-left: 28px;
    text-align: left;
}

@media screen and (max-width: 1366px) {
    .page-404__nav .picture-link {
        width: 45%;
        margin-left: 5%;
    }
}

@media screen and (max-width: 1024px) {
    .page-404__nav .picture-link {
        width: 320px;
        margin-left: 0;
    }
}

@media screen and (max-width: 1024px) {
    .page-404__nav .picture-link {
        width: 45%;
        margin-left: 0;
    }
}

.p-space {
    padding-top: 80px;
}

.cookies-page {
    padding-top: 96px;
    padding-bottom: 96px;
}

@media screen and (max-width: 768px) {
    .cookies-page {
        padding-top: 107px;
        padding-bottom: 103px;
    }
}

@media screen and (max-width: 550px) {
    .cookies-page {
        padding-top: 50px;
        padding-bottom: 74px;
    }
}

.writer-page {
    padding-top: 100px;
    text-align: center;
}

@media screen and (max-width: 550px) {
    .writer-page {
        padding-top: 44px;
    }
}

.wpcf7 form .wpcf7-response-output {
    border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border: none;
}

.wpcf7 form.spam .wpcf7-response-output {
    border: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border: none;
}