/*! ====  HEADER START  ===== */

body.mm_noscroll {
    overflow-y: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.fixed_header {
    position: fixed;
    top: 0px;
    width: 100%;
}

.open_bg,
.open_menu_bg,
.open_prof_bg {
    display: block;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(14 16 19 / 50%);
    transition: all 0.3s ease;
}

.open_bg.opn,
.open_menu_bg.opn,
.open_prof_bg.opn {
    opacity: 1;
    visibility: visible;
}

/*! ====  HEADER START  ===== */

header {
    display: block;
    position: fixed;
    width: 100%;
    min-width: 310px;
    z-index: 9991;
    padding: 64px 16px;
    left: 0;
    top: 0;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
}

header.visible_mob {
    padding: 16px;
    background-color: #315e00;
}

/* main.p_top {
    padding-top: 72px;
}

@keyframes fix {
    0% {
        top: -128px;
    }

    100% {
        top: 0px;
    }
}

.header_top.scroll_head nav.nav_mobile {
    height: calc(100% - 60px);
}

.visible_mob .header_bottom {
    position: fixed;
    top: 0px;
    left: 0;
    animation: fix 0.6s ease;
    -webkit-animation: fix 0.6s ease;
}

.visible_mob .hd_search {
    position: fixed;
    top: 56px;
} */

/* .header_top {
    position: relative;
    width: 100%;
    padding: 12px 0px;
    background: #fff;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
} */

.header_bottom {
    position: relative;
    width: 100%;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.header_top .main_center,
.header_bottom .main_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.header_left {
    display: block;
    width: auto;
    float: left;
    margin: 0 auto 0 0;
    /* max-width: 250px; */
}

.header_right {
    display: flex;
    align-items: center;
    width: auto;
    float: right;
    margin: 0 0 0 auto;
}

.hd_info {
    display: block;
    float: left;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0px;
    color: #0e1013;
}

.menu_btn {
    display: flex;
    align-items: center;
    position: relative;
    float: left;
    margin: 0 0 0 auto;
    cursor: pointer;
}

.menu_btn::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
}

.menu_mobile::before {
    background-image: url("../img/icons/menu.svg");
}

.menu_close::before {
    background-image: url("../img/icons/close.svg");
}

.menu_close {
    position: absolute;
    right: 16px;
    top: 16px;
}

.menu_mobile {
    float: right;
    margin: 0;
}

.menu_desk {
    display: block;
}

.menu_mobile {
    display: none;
}

.head_icon {
    display: flex;
    align-items: center;
    /* margin-left: auto; */
    gap: 24px;
}

.search_opn.clicked::before {
    background-position: 0 100%;
}

.search_opn {
    display: block;
    float: left;
    width: 24px;
    height: 24px;
    margin: 0px;
    cursor: pointer;
}

.search_opn::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url("../img/icons/search_opn.svg");
}

.mobile_src {
    display: none;
    right: 40px;
    float: right;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin: 4px 8px 4px 0;
    background-color: #edf7fc;
    border-radius: 50%;
}

/*! Langs */

.language_block {
    display: block;
    position: relative;
    float: left;
}

.show_lang .lang_list {
    opacity: 1;
    visibility: visible;
}

.lang_list {
    display: block;
    width: 100%;
    position: absolute;
    top: 24px;
    left: 0px;
    padding: 10px 4px 10px 0;
    background-color: #315e00;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.lang_list li {
    display: block;
    list-style: none;
    width: 100%;
}

.lang_list li a:hover {
    text-decoration: underline;
}

.lang_list li a {
    display: block;
    padding: 4px 8px;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    opacity: 1;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.current_lang {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 20px;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    opacity: 1;
    cursor: pointer;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.current_lang::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 16px;
    height: 16px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/icons/arrow_dropw.svg");
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.show_lang .current_lang::before {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/*! Little menu */

.desk_little_menu {
    display: block;
    float: left;
    margin: 0 0 0 11px;
}

.desk_little_menu li {
    display: block;
    float: left;
    list-style: none;
    margin: 0 24px 0 0px;
}

.desk_little_menu li a {
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #161b1f;
    opacity: 1;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.desk_little_menu li a:hover {
    color: #8a742f;
}

/*! Langs */

.logo_sect {
    display: block;
    float: left;
    width: auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    float: left;
    width: auto;
}

.logo_img {
    display: block;
    width: 280px;
    /* height: 77px; */
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.logo_img img {
    display: block;
    width: 100%;
    height: 100%;
}

/* Search part =========*/

.hd_search {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 120px 24px 96px;
    background: linear-gradient(
        180deg,
        rgba(36, 78, 0, 0.94) 0%,
        rgba(24, 52, 0, 0.92) 45%,
        rgba(16, 36, 0, 0.92) 100%
    );
    backdrop-filter: blur(6px);
    z-index: 9998;
    overflow: hidden;
}

.hd_search .search_row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    /* box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28); */
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.hd_search .main_center {
    width: 100%;
    max-width: 960px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 8px;
}
.search_form {
    display: block;
    position: relative;
    width: 100%;
    /* top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%); */
}
.search_input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.search_input {
    display: block;
    float: left;
    background: rgba(255, 255, 255, 0.08);
    width: calc(100% - 68px);
    min-width: 0;
    padding: 16px 20px;
    font-family: "Poppins";
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    opacity: 1;
    white-space: nowrap;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.search_input:focus {
    outline: none;
    border-color: #f79a15;
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 0 0 4px rgba(247, 154, 21, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.24);
}

.search_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #f79a15 0%, #ffb942 100%);
    box-shadow: 0 16px 32px rgba(247, 154, 21, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.search_btn::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/icons/search_icon.svg");
}

.search_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(247, 154, 21, 0.42);
}

.search_btn:focus {
    outline: 2px solid rgba(247, 154, 21, 0.65);
    outline-offset: 3px;
}

.search_close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    background-image: url("../img/icons/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search_close:hover {
    /* background: rgba(255, 255, 255, 0.14); */
    border-color: rgba(255, 255, 255, 0.35);
    /* transform: translateY(-1px); */
}

.search_close:focus {
    outline: 2px solid rgba(247, 154, 21, 0.65);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .hd_search {
        padding: 96px 16px 64px;
    }

    .hd_search .search_row {
        padding: 0;
        min-height: 100%;
    }

    .hd_search .main_center {
        padding: 0;
    }

    .search_close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* Search part =========*/

nav.nav_desk {
    display: flex;
    align-items: center;
    position: relative;
    float: left;
    max-width: calc(100% - 280px);
    width: auto;
    height: auto;
    /* padding-left: 88px; */
    margin: 0px auto;
    z-index: 999;
}

ul.hdr_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.hdr_menu > li {
    float: left;
    position: relative;
    padding: 0 15px;
    list-style: none;
}

ul.hdr_menu li a {
    display: block;
    position: relative;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    opacity: 1;
    word-break: break-word;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

nav.nav_desk ul.hdr_menu > li > a::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #f79a15;
    position: absolute;
    bottom: -20px;
    transform-origin: right;
    transition: transform 0.25s;
    -webkit-transition: transform 0.25s;
    -moz-transition: transform 0.25s;
    -ms-transition: transform 0.25s;
    -o-transition: transform 0.25s;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
}

ul.hdr_menu li:hover > a,
ul.hdr_menu li.active > a {
    color: #f79a15;
}
ul.hdr_menu li.active a::before,
ul.hdr_menu li:hover a::before {
    transform-origin: left !important;
    transform: scaleX(1) !important;
    -webkit-transform: scaleX(1) !important;
    -moz-transform: scaleX(1) !important;
    -ms-transform: scaleX(1) !important;
    -o-transform: scaleX(1) !important;
}

ul.hdr_menu > li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.nav_desk ul.hdr_menu ul {
    display: block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: auto;
    min-width: 240px;
    padding: 8px 16px;
    top: 42px;
    left: 0;
    list-style: none;
    background-color: #315e00;
    box-shadow: 0px 4px 4px 0px 315e8;
    z-index: 9999999;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

ul.hdr_menu ul::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 30px;
    top: -23px;
    left: 0;
    z-index: -1;
}

ul.hdr_menu ul li {
    float: none;
    padding: 8px 0px;
}

ul.hdr_menu ul li a {
    font-weight: 400;
}
ul.hdr_menu ul li a:hover {
    color: #f79a15;
}

.dropdown {
    display: block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    padding: 8px 16px;
    min-width: 190px;
    width: 180px;
    top: 25px;
    right: 0;
    z-index: 999;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
}

.dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

.dropdown ul.hdr_menu > li {
    float: left;
    padding: 8px 0px;
    clear: both;
    display: block;
    width: 100%;
}

.mob_body {
    width: 100%;
    max-height: calc(100% - 12px);
    padding-right: 8px;
    overflow: auto;
}

.mob_header {
    width: 100%;
}

.mob_ftr {
    width: 100%;
    padding: 0px 16px 24px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mob_ftr .socials {
    display: flex;
    justify-content: center;
    float: none;
}

.mob_ftr .desk_little_menu {
    display: block;
    float: none;
    margin: 0 0 12px 0;
}

.mob_ftr .desk_little_menu li {
    width: 100%;
    float: none;
    margin: 0px;
    padding: 8px 0;
}

.mob_ftr .desk_little_menu li a {
    text-align: left;
    font-size: 14px;
    color: #596065;
}

nav.nav_mobile.transformed {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

nav.nav_mobile {
    display: none;
    float: left;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 48px 16px 16px 16px;
    margin: 0px auto 0 auto;
    background: #315e00;
    z-index: 9999999;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

nav.nav_mobile ul.hdr_menu {
    display: block;
    float: none;
    margin: 0 auto;
    padding: 0;
}

nav.nav_mobile ul.hdr_menu > li {
    float: none;
    width: 100%;
    padding: 0 0 22px 0px;
}

nav.nav_mobile ul.hdr_menu > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
}

nav.nav_mobile ul.hdr_menu > li > a.show::after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

nav.nav_mobile ul.hdr_menu > li.has_sub > a::after {
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    right: 0;
    background-image: url("../img/icons/arrow_dropw.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

nav.nav_mobile ul.hdr_menu ul {
    display: none;
    padding-left: 16px;
}

nav.nav_mobile ul.hdr_menu ul li {
    float: none;
    width: 100%;
    padding: 16px 0 0 0px;
}

nav.nav_mobile ul.hdr_menu ul li > a {
    font-size: 14px;
}

.cnt_link:hover {
    color: #1e88e5;
}

.cnt_link {
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    margin: 0 0 20px 0;
    float: left;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #0e1013;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.sing_links:hover {
    background-color: #0d47a1;
}

.sing_links {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    min-width: 220px;
    margin: 0 0 0 auto;
    padding: 16px 29px;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #ffffff;
    background-color: #1e88e5;
    box-shadow: 0px 3px 20px #1e88e533;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.sign_itm {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 0 0 26px;
}

.sign_itm span {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #ffffff;
}

.sign_itm::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../img/icons/user.svg") no-repeat center;
}

/*! ====  HEADER FINISH  ===== */

@media only screen and (min-width: 1025px) and (max-width: 1132px) {
    /* Header responsive */
    header {
        padding: 16px;
    }
    .header_top {
        padding: 16px;
    }
    .header_left {
        width: auto;
        margin: 0 0 0 0;
        max-width: 100%;
    }
    .header_right {
        width: auto;
        float: right;
        padding: 0 0;
    }
    ul.hdr_menu > li {
        padding: 0 16px 0 0px;
    }
    main.p_top {
        padding-top: 80px;
    }
    .main_page main.p_top {
        padding-top: 0;
    }
    /* Header responsive */
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Header responsive */
    header {
        padding: 16px;
    }
    .head_icon {
        gap: 16px;
    }
    .header_top {
        padding: 16px;
    }
    .header_left {
        width: auto;
        margin: 0 0 0 0;
        max-width: 100%;
    }
    .header_right {
        width: auto;
        float: right;
        padding: 0 0;
    }
    .menu_btn {
        display: block;
    }
    nav.nav_desk {
        display: none;
    }
    nav.nav_mobile {
        display: block;
    }
    .sign_link {
        float: right;
    }
    .langs {
        position: relative;
        top: -8px;
    }
    .lang_sect.clicked .langs {
        top: 8px;
    }
    .nav_mobile .lang_sect {
        float: none;
        padding-left: 0;
        padding-right: 0;
        background-color: #fff !important;
    }
    .lang_sect.desk {
        display: none;
    }
    .sing_links {
        margin: 24px 0 0 0;
    }
    .sing_links.desk,
    .number_links.desk {
        display: none;
    }
    .favorites_links {
        background-color: #f5f5f5;
    }
    .favorites_links.desk {
        display: none;
    }
    .mob_ftr .socials li {
        margin: 0 24px 0 0;
    }
    main.p_top {
        padding-top: 80px;
    }
    .main_page main.p_top {
        padding-top: 0;
    }
    /* Header responsive */
}

@media only screen and (min-width: 561px) and (max-width: 767px) {
    /* Header responsive */
    header {
        padding: 16px;
    }
    .head_icon {
        gap: 16px;
    }
    .header_top {
        padding: 16px;
    }
    .header_left {
        width: auto;
        margin: 0 0 0 0;
        max-width: 100%;
    }
    .header_right {
        width: auto;
        float: right;
        padding: 0 0;
    }
    .menu_btn {
        display: block;
    }
    .logo_img {
        display: block;
        width: 200px;
        /* height: 44px; */
    }
    nav.nav_desk {
        display: none;
    }
    nav.nav_mobile {
        display: block;
    }
    .sign_link {
        float: right;
    }
    .langs {
        position: relative;
        top: -8px;
    }
    .lang_sect.clicked .langs {
        top: 8px;
    }
    .nav_mobile .lang_sect {
        float: none;
        padding-left: 0;
        padding-right: 0;
        background-color: #fff !important;
    }
    .lang_sect.desk {
        display: none;
    }
    .sing_links {
        margin: 24px 0 0 0;
    }
    .sing_links.desk,
    .number_links.desk {
        display: none;
    }
    .favorites_links {
        background-color: #f5f5f5;
    }
    .favorites_links.desk {
        display: none;
    }
    .mob_ftr .socials li {
        margin: 0 24px 0 0;
    }
    main.p_top {
        padding-top: 80px;
    }
    .main_page main.p_top {
        padding-top: 0;
    }
    /* Header responsive */
}

@media only screen and (min-width: 0px) and (max-width: 560px) {
    /* Header responsive */
    header {
        padding: 16px;
    }
    .head_icon {
        gap: 16px;
    }
    .header_top {
        padding: 16px;
    }
    .header_left {
        width: auto;
        margin: 0 0 0 0;
        max-width: 100%;
    }
    .header_right {
        width: auto;
        float: right;
        padding: 0 0;
    }
    .logo_img {
        display: block;
        width: 150px;
        /* height: 44px; */
    }
    .menu_btn {
        display: block;
    }
    nav.nav_desk {
        display: none;
    }
    nav.nav_mobile {
        display: block;
    }
    .sign_link {
        float: right;
    }
    .langs {
        position: relative;
        top: -8px;
    }
    .lang_sect.clicked .langs {
        top: 8px;
    }
    .nav_mobile .lang_sect {
        float: none;
        padding-left: 0;
        padding-right: 0;
        background-color: #fff !important;
    }
    .lang_sect.desk {
        display: none;
    }
    .sing_links {
        margin: 24px 0 0 0;
    }
    .sing_links.desk,
    .number_links.desk {
        display: none;
    }
    .favorites_links {
        background-color: #f5f5f5;
    }
    .favorites_links.desk {
        display: none;
    }
    .mob_ftr .socials li {
        margin: 0 24px 0 0;
    }
    main.p_top {
        padding-top: 80px;
    }
    .main_page main.p_top {
        padding-top: 0;
    }
    /* Header responsive */
}

/*! ====  HEADER FINISH  ===== */
