/*-------------------reset----------------------*/
html, body, div, span, h1, h2, h3, h4, h5, h6, p,
a, em, img, small, strike, sub, sup,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, label, table, caption, tr, th, td,
article, figure, figcaption, footer, header,
menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*-------------------reset end----------------------*/

/*-------------------global presets end----------------------*/
@font-face {
    font-family: 'Mont';
    src: url('/wp-content/themes/nashe_theme/assets/fonts/Mont-Regular.woff2') format('woff2'),
        url('/wp-content/themes/nashe_theme/assets/fonts/Mont-Regular.woff') format('woff'),
        url('/wp-content/themes/nashe_theme/assets/fonts/Mont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mont';
    src: url('/wp-content/themes/nashe_theme/assets/fonts/Mont-SemiBold.woff2') format('woff2'),
        url('/wp-content/themes/nashe_theme/assets/fonts/Mont-SemiBold.woff') format('woff'),
        url('/wp-content/themes/nashe_theme/assets/fonts/Mont-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Mont';
    src: url('/wp-content/themes/nashe_theme/assets/fonts/Mont-Bold.woff2') format('woff2'),
        url('/wp-content/themes/nashe_theme/assets/fonts/Mont-Bold.woff') format('woff'),
        url('/wp-content/themes/nashe_theme/assets/fonts/Mont-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
body {
    font-family: 'Mont', sans-serif;
    font-size:16px;
    line-height: 28px;
    color: black;
    font-weight: normal;
}
.wrap {
    width:100%;
    max-width: 1200px;
    margin-left:auto;
    margin-right:auto;
}
body.no_scroll {
    overflow: hidden;
}

h2 {
    font-size: 34px;
    line-height: 1;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}
h2::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    background: #db6028;
    bottom: -18px;
    left: calc(50% - 40px);
}
@media only screen and (min-width:768px) {
    h2 {
        font-size: 41px;
        margin-bottom: 90px;
    }
    h2::after {
        bottom: -35px;
    }
}
@media only screen and (min-width:990px) {
    h2 {
        font-size: 45px;
        margin-bottom: 105px;
    }
}


.btn_white {
    font-family: 'Mont';
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 600;
    color: #1c1b21;
    text-decoration: none;
    transition: 0.3s;
    padding: 13px 45px 12px;
    border-radius: 30px;
    border: 3px solid #db6028;
    word-wrap: break-word;
    display: inline-block;
    cursor: pointer;
}
.btn_white:hover {
    background: #db6028;
    color: white;
}
/*-------------------global presets end----------------------*/


/*-------------------header----------------------*/
header {
    background: #1c1b21;
    text-align: center;
    padding: 8px 0;
}
header .wrap {
    padding: 0 20px;
}
header .wrap .left p {
    color: white;
}
header .wrap .left p a {
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}
header .wrap .left p a:hover {
    color: #db6028;
}

header .wrap .right {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 8px;
    padding-bottom: 8px;
}
header .wrap .right .h_net {
    display: flex;
    align-items: center;
}
header .wrap .right .h_net a {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: 0.2s;
    margin-right: 10px;
}
header .wrap .right .h_net a.fb::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: url(/wp-content/themes/nashe_theme/assets/img/icon_fb_black.png) no-repeat;
    background-size: contain;
    top: 5px;
    left: 5px;
}
header .wrap .right .h_net a.inst::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: url(/wp-content/themes/nashe_theme/assets/img/icon_inst_black.png) no-repeat;
    background-size: contain;
    top: 5px;
    left: 5px;
}
header .wrap .right .h_net a.tg::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: url(/wp-content/themes/nashe_theme/assets/img/icon_tg_black.png) no-repeat;
    background-size: contain;
    top: 5px;
    left: 5px;
}
header .wrap .right .h_net a:hover {
    background: #db6028;
}

header .wrap .right .lng_switch {
    /* display: none; */
    /* display: flex; */
    justify-content: center;
    align-items: center;
}
header .wrap .right .lng_switch ul {
    display: flex;
}
header .wrap .right .lng_switch ul li {
    padding: 0 12px;
    border-right: 2px solid #64636e;
    line-height: 20px;
}
header .wrap .right .lng_switch ul li:last-child {
    border-right: none;
}
header .wrap .right .lng_switch ul li a {
    font-weight: 600;
    text-decoration: none;
    color: white;
    line-height: 1;
    transition: 0.2s;
}
header .wrap .right .lng_switch ul li a:hover {
    color: #db6028;
}
header .wrap .right .lng_switch ul li.selected a {
    color: #64636e;
}
@media only screen and (min-width:768px) {
    header .wrap {
        display: flex;
        justify-content: space-between;
        padding: 0 8px 0 20px;
        align-items: center;
    }

    header .wrap .right {
        display: flex;
        padding-top: 0;
        padding-bottom: 0;
    }

    header .wrap .right .lng_switch {
        margin-top: 0;
        margin-left: 35px;
    }
    header .wrap .right .lng_switch ul {
        display: flex;
        align-items: center;
    }
    header .wrap .right .lng_switch ul li {
        line-height: 1;
        height: 20px;
        display: flex;
        align-items: center;
    }
}
/*-------------------header end----------------------*/

.wrap_header {
    width: 100%;
}
.wrap_header_content {
    position: relative;
    padding-bottom: 104%;
    background: url(/wp-content/themes/nashe_theme/assets/img/bg_main.jpg) top right no-repeat;
    background-size: cover;
}
.wrap_header_content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(50,50,50,0.6);
}
@media only screen and (min-width:768px) {
    .wrap_header_content {
        padding-bottom: 47.1%;
        background: url(/wp-content/themes/nashe_theme/assets/img/bg_main.jpg) center center no-repeat;
        background-size: cover;
    }
    .wrap_header_content::before {
        content: none;
    }
}

/*-------------------nav----------------------*/
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0 0;
}
.nav .wrap {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    position: relative;
}
.nav .wrap .gamburger {
    position: absolute;
    content: "";
    width: 30px;
    height: 24px;
    left: 20px;
    top: 0;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}
.nav .wrap .gamburger span {
    display: inline-block;
    width: 100%;
    height: 2px;
    /* background: #1c1b21; */
    background: white;
}
.nav .wrap .gamburger.cross span:nth-child(1) {
    position: relative;
    transform: rotate(45deg);
    top: 6px;
}
.nav .wrap .gamburger.cross span:nth-child(2) {
    display: none;
}
.nav .wrap .gamburger.cross span:nth-child(3) {
    position: relative;
    transform: rotate(-45deg);
    bottom: 6px;
}

.nav .wrap .logo a {
    display: inline-block;
    width: 136px;
    height: 54px;
    background: url(/wp-content/themes/nashe_theme/assets/img/logo_white.webp) no-repeat;
    background-size: contain;
}
.nav .wrap .logo a img {
    /* height: 54px; */
}
.nav .wrap .nav_menu {
    display: none;
}
.nav .wrap .nav_menu.mobile {
    position: fixed;
    background: white;
    top: 186px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav .wrap .nav_menu ul {
    text-align: center;
}
.nav .wrap .nav_menu ul li {
    margin-bottom: 25px;
}
.nav .wrap .nav_menu ul li:last-child {
    margin-bottom: 0;
}
.nav .wrap .nav_menu ul li a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: 0.2s;
}
.nav .wrap .nav_menu ul li a:hover {
    color: #db6028;
}
@media only screen and (min-width:768px) {
    .nav .wrap .nav_menu.mobile {
        top: 137px;
        align-items: flex-start;
        padding-top: 20px;
    }
    .nav .wrap .gamburger span {
        display: inline-block;
        width: 100%;
        height: 2px;
        background: #1c1b21;
    }
    .nav .wrap .logo a {
        background: url(/wp-content/themes/nashe_theme/assets/img/logo_nashe.png) no-repeat;
        background-size: contain;
    }
}
@media only screen and (min-width:900px) {
    .nav .wrap {
        justify-content: space-between;
        align-items: center;
    }
    .nav .wrap .gamburger {
        display: none;
    }
    .nav .wrap .nav_menu,
    .nav .wrap .nav_menu.mobile {
        display: block;
        position: unset;
    }
    .nav .wrap .nav_menu ul {
        display: flex;
    }
    .nav .wrap .nav_menu ul li {
        margin-left: 47px;
        margin-bottom: 0;
    }
    .nav .wrap .nav_menu ul li:first-child {
        margin-left: 0;
    }
}
/*-------------------nav end----------------------*/

/*-------------------main----------------------*/
.main .img .box {
    width: 100%;
}
.main .img .box>div {
    position: relative;
    width: 100%;
    padding-bottom:60%;
}
.main .txt>div {
    padding: 15px 24px 90px;
}
.main .txt h1 {
    font-size: 35px;
    line-height: 58px;
    letter-spacing: .024em
}
.main .txt .btn {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}
.main .txt .btn .next {
    margin: 10px 20px 10px 0;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 700;
    background: #db6028;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    padding: 18px 34px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
}
.main .txt .btn .next:hover {
    background: #1c1b21;
}
.main .txt .btn .buy {
    margin: 10px 0 10px 0;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: #1c1b21;
    text-decoration: none;
    transition: 0.3s;
    padding: 18px 34px 16px;
    border-radius: 30px;
    border: 1px solid #cbcbcb;
    word-wrap: break-word;
}
.main .txt .btn .buy:hover {
    border: 1px solid #1c1b21;
}
@media only screen and (min-width:768px) {
    .main {
        display: flex;
        flex-direction: row-reverse;
    }
    .main>div {
        width: 50%;
        overflow: hidden;
    }
    .main .img .box>div {
        padding-bottom: 100%;
    }
    .main .txt {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .main .txt h1 {
        line-height: 68px;
    }
    .main .txt>div {
        padding: 0 24px 0 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 600px;
        width: 100%;
    }
    .main .txt .btn {
        margin-top: 30px;
    }
    .main .txt .btn .next {
        margin-right: 10px;
    }
}
@media only screen and (min-width:990px) {
    .main {
        padding-bottom: 30px;
    }
    .main .img .box>div {
        background: url(/wp-content/themes/nashe_theme/assets/img/img_main.png) no-repeat left center;
        background-size: cover;
        padding-bottom: 70%;
    }
    .main .txt h1 {
        line-height: 78px;
    }
    .main .txt>div {
        padding-left: 40px;
    }
}
/*-------------------main end----------------------*/

/*-------------------main2----------------------*/
.main2 {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100% - 80px);
}
.main2 .wrap {
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}
.main2 .wrap>div {
    width: 100%;
}
.main2 .wrap h1 {
    font-size: 28px;
    line-height: 1.3;
    color: white;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.main2 .wrap .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main2 .wrap .next {
    font-family: 'Mont';
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 600;
    color: black;
    text-decoration: none;
    transition: 0.3s;
    padding: 13px 45px 12px;
    border-radius: 30px;
    border: 3px solid white;
    background: white;
    word-wrap: break-word;
    display: inline-block;
    margin-bottom: 15px;
}
.main2 .wrap .next:hover {
    background: none;
    color: white;
}
.main2 .wrap .buy {
    font-family: 'Mont';
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    padding: 13px 45px 12px;
    border-radius: 30px;
    border: 3px solid white;
    word-wrap: break-word;
    display: inline-block;
}
.main2 .wrap .buy:hover {
    background: white;
    color: black;
}
@media only screen and (min-width:768px) {
    .main2 .wrap {
        text-align: left;
    }
    .main2 .wrap>div {
        width: 100%;
    }
    
    .main2 {
        position: absolute;
        top: 130px;
        left: 0;
        right: 0;
        height: calc(100% - 130px);
        padding: 0 20px 100px;
    }
    .main2 .wrap h1 {
        font-size: 38px;
        line-height: 1.3;
        color: white;
        text-transform: uppercase;
        margin-bottom: 40px;
    }
    .main2 .wrap .btn {
        display: flex;
        flex-direction: row;
    }
    .main2 .wrap .next {
        margin-bottom: 0;
        margin-right: 10px;
    }
}
@media only screen and (min-width:1400px) {
    .main2 {
        position: absolute;
        top: 130px;
        left: 0;
        right: 0;
        height: calc(100% - 260px);
        padding: 0 20px 100px;
    }
    .main2 .wrap h1 {
        font-size: 50px;
        line-height: 1.3;
        color: white;
        text-transform: uppercase;
        margin-bottom: 80px;
    }
}
/*-------------------main2----------------------*/

/*-------------------intro----------------------*/
.intro {
    background: url(/wp-content/themes/nashe_theme/assets/img/bg_grey.jpg) top center no-repeat;
    background-size: cover;
}
.intro .wrap {
    padding: 60px 24px;
}
.intro .wrap .txt_content {
    text-align: center;
    max-width: 1060px;
}
.intro .wrap p {
    margin-bottom: 15px;
}
.intro .wrap p:last-child {
    margin-bottom: 0;
}
@media only screen and (min-width:768px) {
    .intro .wrap {
        padding: 80px 32px;
    }
    .intro .wrap p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width:990px) {
    .intro .wrap {
        padding: 80px 40px;
    }
}
/*-------------------intro end----------------------*/

/*-------------------prod----------------------*/
.prod {
    padding: 60px 24px;
}
.prod .wrap {
    text-align: center;
}
.prod .wrap h2 {
    text-transform: none;
}
.prod .wrap h2 span {
    font-size: 48px;
    font-weight: 700;
}
.prod .wrap .wrap_in {
    text-align: center;
    margin-bottom: 30px;
}
.prod .wrap .wrap_in img {
    width: 100%;
    max-width: 450px;
}
.prod .wrap .txt_content {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}
.prod .wrap .btn {
    padding-top: 20px;
    text-align: center;
}
@media only screen and (min-width:768px) {
    .prod {
        padding: 80px 0 60px;
    }
    .prod .wrap h2 span {
        font-size: 68px;
    }
    .prod .wrap .wrap_in {
        margin-bottom: 40px;
    }
    .prod .wrap .txt_content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}
/*-------------------prod end----------------------*/

/*-------------------separator----------------------*/
.products_h_f img {
    width: 100%;
    display: block;
}
/*-------------------separator end----------------------*/


/*-------------------products2----------------------*/
.products2 {
    padding: 50px 0 70px;
    background: #f7f7f7;
}
.products2 .wrap_caption {
    padding: 0 24px;
}
.products2 .wrap .txt_content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}
.products2 .wrap .txt_content p {
    text-align: center;
}
.products2 .wrap_items .items_nav ul {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.products2 .wrap_items .items_nav ul li {
    text-align: center;
    line-height: 1.2;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    background: black;
    color: white;
    transition: 0.2s;
    border-right: 2px solid #f7f7f7;
}
.products2 .wrap_items .items_nav ul li:hover {
    background: #db6028;
}
.products2 .wrap_items .items_nav ul li.selected {
    background: #db6028;
    cursor: default;
}
.products2 .wrap_items .items_nav ul li:first-child {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
.products2 .wrap_items .items_nav ul li:last-child {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}



.products2 .wrap_items .items_content {
    margin-top: 15px;
    display: none;
}
.products2 .wrap_items .items_content.show {
    display: block;
}
.products2 .wrap_items .items_content .main_slider {
    position: relative;
    padding: 0 26px;
}
.products2 .wrap_items .items_content .main_slider .swiper-container {
    overflow: hidden;
    padding-bottom: 0;
}
.products2 .wrap_items .items_content .main_slider .swiper-slide {
    width: 100% !important;
}
.products2 .wrap_items .items_content .main_slider figure {
    background: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    padding: 20px 18px 5px;
    height: 730px;
    overflow-y: auto;

}
.products2 .wrap_items .items_content .main_slider figure h3 {
    font-size: 22px;
    font-weight: 600;
    color: #db6028;
    margin-bottom: 20px;
}
.products2 .wrap_items .items_content .main_slider figure .img .box {
    padding-bottom: 15px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.products2 .wrap_items .items_content .main_slider figure .img .box .box_content {
    position: relative;
    padding-bottom: 80%;
    background: gray;
}
.products2 .wrap_items .items_content .main_slider figure .img .box .box_content img {
    object-fit: contain;
}
.products2 .wrap_items .items_content .main_slider figure .desc {
    overflow-y: auto;
    height: 420px;
}
.products2 .wrap_items .items_content .main_slider figure .desc .caption {
    margin-bottom: 15px;
    line-height: 1.5;
}
.products2 .wrap_items .items_content .main_slider figure .desc .properties p {
    font-weight: 700;
    margin-bottom: 3px;
}
.products2 .wrap_items .items_content .main_slider figure .desc .properties ul {
    list-style-type: disc;
    padding-left: 20px;
}
.products2 .wrap_items .items_content .main_slider figure .desc .properties ul li {
    line-height: 1.5;
}

.products2 .wrap_items .items_content .dop_slider .item {
    display: flex;
}
.products2 .wrap_items .items_content .dop_slider .item .sub_item {
    display: flex;
}


.swiper-button-prev {
    background: #db6028;
    width: 26px !important;
    height: 60px !important;
    top: calc(50% - 60px) !important;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    left: 0 !important;
    font-family: 'Mont' !important;
}
.swiper-button-prev::after {
    color: white;
    font-size: 16px !important;
    font-weight: 700;
}
.swiper-button-next {
    background: #db6028;
    width: 26px !important;
    height: 60px !important;
    top: calc(50% - 60px) !important;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    right: 0 !important;
    font-family: 'Mont' !important;
}
.swiper-button-next::after {
    color: white;
    font-size: 16px !important;
    font-weight: 700;
}



.products2 .wrap_items .items_content .dop_slider {
    position: relative;
    padding: 0 26px;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 {
    overflow: hidden;
    height: 100%;
    position: relative;
    -webkit-border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide {
    border-top: 2px solid #f7f7f7;
    border-right: 2px solid #f7f7f7;
    background: white;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide.bg_color {
    border-top: none;
    background: url(/wp-content/themes/nashe_theme/assets/img/bg_item_active.png) no-repeat;
    background-size: cover;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide:last-child {
    border-right: none;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div {
    height: 85px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_cherry {
    color: #5a0000;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_orange {
    color: #e84d01;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_orange2 {
    color: #e45c00;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_blue {
    color: #314192;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_yellow {
    color: #f6ad3f;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_pink {
    color: #f92e45;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_brown {
    color: #d24625;
}
.products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p .color_brown2 {
    color: #ae6025;
}
.swiper-button-prev2 {
    width: 26px !important;
    height: 26px !important;
    top: calc(50% + 8px) !important;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    left: 0 !important;
    font-family: 'Mont' !important;
}
.swiper-button-prev2::after {
    color: black;
    font-size: 16px !important;
    font-weight: 700;
}
.swiper-button-next2 {
    width: 26px !important;
    height: 26px !important;
    top: calc(50% + 8px) !important;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    right: 0 !important;
    font-family: 'Mont' !important;
}
.swiper-button-next2::after {
    color: black;
    font-size: 16px !important;
    font-weight: 700;
}

@media only screen and (min-width:990px) {
    .products2 .wrap .txt_content p {
        font-size: 18px;
        text-align: center;
    }
    .products2 .wrap_items .items_nav ul {
        display: flex;
        margin-top: 60px;
    }
    .products2 .wrap_items .items_nav ul li {
        padding: 15px 40px;
        font-weight: 600;
        cursor: pointer;
        background: black;
        color: white;
        transition: 0.2s;
        border-right: 2px solid #f7f7f7;
    }
    .products2 .wrap_items .items_nav ul li:hover {
        background: #db6028;
    }
    .products2 .wrap_items .items_nav ul li.selected {
        background: #db6028;
        cursor: default;
    }
    .products2 .wrap_items .items_nav ul li:first-child {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
    }
    .products2 .wrap_items .items_nav ul li:last-child {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .products2 .wrap_items .items_content {
        margin-top: 40px;
    }
    .products2 .wrap_items .items_content .main_slider {
        position: relative;
        padding: 0 60px;
    }
    .products2 .wrap_items .items_content .main_slider figure {
        height: 560px;

        padding: 80px 80px 20px;
        grid-template-rows: min-content;
        column-gap: 0px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "h3 img"
        "desc img";
    }
    .products2 .wrap_items .items_content .main_slider figure h3 {
        grid-area: h3;
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 50px;
    }
    .products2 .wrap_items .items_content .main_slider figure .img {
        grid-area: img;
        display: flex;
        align-items: center;
    }
    .products2 .wrap_items .items_content .main_slider figure .desc {
        grid-area: desc;
        height: unset;
        padding-right: 60px;
    }
    .products2 .wrap_items .items_content .main_slider figure .desc .caption {
        line-height: 1.75;
    }
    .products2 .wrap_items .items_content .main_slider figure .desc .properties ul li {
        line-height: 1.75;
    }

    .swiper-button-prev {
        background: #db6028;
        width: 60px !important;
        height: 120px !important;
        top: calc(50% - 40px) !important;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        left: 0 !important;
        font-family: 'Mont' !important;
    }
    .swiper-button-prev::after {
        color: white;
        font-size: 26px !important;
        font-weight: 700;
    }
    .swiper-button-next {
        background: #db6028;
        width: 60px !important;
        height: 120px !important;
        top: calc(50% - 40px) !important;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        right: 0 !important;
        font-family: 'Mont' !important;
    }
    .swiper-button-next::after {
        color: white;
        font-size: 26px !important;
        font-weight: 700;
    }


    .products2 .wrap_items .items_content .dop_slider {
        position: relative;
        padding: 0 60px;
    }
    .products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div {
        height: 120px;
    }
    
    .products2 .wrap_items .items_content .dop_slider .swiper-container2 .swiper-slide>div p {
        font-size: 24px;
        font-weight: 700;
    }
    .swiper-button-prev2 {
        width: 60px !important;
        height: 26px !important;
        top: calc(50% + 8px) !important;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        left: 0 !important;
        font-family: 'Mont' !important;
    }
    .swiper-button-prev2::after {
        color: black;
        font-size: 26px !important;
        font-weight: 700;
    }
    .swiper-button-next2 {
        width: 60px !important;
        height: 26px !important;
        top: calc(50% + 8px) !important;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        right: 0 !important;
        font-family: 'Mont' !important;
    }
    .swiper-button-next2::after {
        color: black;
        font-size: 26px !important;
        font-weight: 700;
    }
}
@media only screen and (min-width:990px) {
    .products2 .wrap_items .items_nav ul li {
        padding: 15px 70px;
    }
}
/*-------------------products2 end----------------------*/

/*-------------------advantages----------------------*/
.advantages {
    padding: 70px 0;
}

.advantages .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.advantages .wrap figure {
    padding: 20px;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}
.advantages .wrap figure .img {
    display: inline-block;
    width: 120px;
}
.advantages .wrap figure .img img {
    width: 100%;
}
.advantages .wrap figure h4 {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    margin: 25px 0;
}
.advantages .wrap figure p {
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
}
@media only screen and (min-width:768px) {
    .advantages .wrap figure h4 {
        font-size: 30px;
        line-height: 1;
        margin: 50px 0 25px;
    }
    .advantages .wrap figure {
        width: 50%;
    }
}
@media only screen and (min-width:990px) {
    .advantages {
        padding: 100px 0 90px;
    }
    .advantages h2 {
        margin-bottom: 90px;
    }
    .advantages .wrap figure {
        width: 33.33%;
    }
}
/*-------------------advantages end----------------------*/

/*-------------------parthners2----------------------*/
.parthners2 {
    padding: 0 0 85px;
    text-align: center;
}
.parthners2 .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 40px 0;
}
.parthners2 .wrap figure {
    padding: 0 20px;
    width: 100%;
    max-width: 240px;
    margin-bottom: 50px;
}
.parthners2 .wrap figure img {
    width: 100%;
}
@media only screen and (min-width:990px) {
    .parthners2 {
        padding: 0 0 70px;
    }
    .parthners2 h2 {
        margin-bottom: 140px;
    }
    .parthners2 .wrap {
        padding: 0;
    }
    .parthners2 .wrap figure {
        width: 25%;
        max-width: unset;
    }
}
/*-------------------parthners end----------------------*/

/*-------------------where----------------------*/
.where {
    padding: 0 0 85px;
    text-align: center;
}
#map, 
#map iframe {
    /* height: 400px; */
    width: 100%;
}
#map {
    overflow: hidden;
  }
#map > iframe{  
    border: none;  
    margin-top: -80px;
  }
@media only screen and (min-width:768px) {
    /* .parthners h2 {
        font-size: 41px;
        line-height: 53px;
    } */
}
@media only screen and (min-width:990px) {
    .where h2 {
        /* margin-bottom: 140px; */
    }
}
/*-------------------where end----------------------*/

/*-------------------where_online----------------------*/
.where_online {
    padding: 35px 0 85px;
    text-align: center;
}
.where_online .wrap {
    padding: 0 24px;
}
.where_online .wrap .txt_content {
    text-align: center;
    max-width: 910px;
    margin: 0 auto;
}
.where_online .wrap p {
    margin-bottom: 30px;
}
.where_online .wrap .btn_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.where_online .wrap .btn_content a.btn_desktop {
    margin: 10px 20px;
    display: flex;
    align-items: center;
    width: 230px;
}
.where_online .wrap .btn_content a.btn_desktop .img {
    /* display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px; */
}
.where_online .wrap .btn_content a.btn_desktop.a_iphone .img {
    background: url(/wp-content/themes/nashe_theme/assets/img/apple_black.png) no-repeat;
    background-size: contain;
    transition: 0.3s;
    position: relative;
    top: -2px;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
.where_online .wrap .btn_content a.btn_desktop.a_iphone:hover .img {
    background: url(/wp-content/themes/nashe_theme/assets/img/apple_white.png) no-repeat;
    background-size: contain;
    transition: 0.3s;
}
.where_online .wrap .btn_content a.btn_desktop.a_android {
    padding: 14px 45px 13px;
}
.where_online .wrap .btn_content a.btn_desktop.a_android .img {
    background: url(/wp-content/themes/nashe_theme/assets/img/play_black.png) no-repeat;
    background-size: contain;
    transition: 0.3s;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
.where_online .wrap .btn_content a.btn_desktop.a_android:hover .img {
    background: url(/wp-content/themes/nashe_theme/assets/img/play_white.png) no-repeat;
    background-size: contain;
    transition: 0.3s;
}
.where_online .wrap .btn_content a.btn_desktop img {
    width: 24px;
    margin-right: 15px;
    /* max-width: 172px; */
}
.where_online .wrap .btn_content a.btn_desktop:first-child img {
    position: relative;
    top: -3px;
}
@media only screen and (min-width:768px) {
    .where_online .wrap {
        padding: 0 32px;
    }
    .where_online .wrap p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width:990px) {
    .where_online .wrap {
        padding: 0 40px;
    }
}
/*-------------------where_online end----------------------*/

/*-------------------questions----------------------*/
.questions {
    padding: 20px 0 50px;
}
.questions .wrap {
    padding: 0 24px;
}
.questions .wrap .item {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #cbcbcb;
}
.questions .wrap .item.hide {
    display: none;
}
.questions .wrap div.item:first-child {
    border-top: 1px solid #cbcbcb;
}
.questions .wrap .item h5 {
    padding: 5px 50px 5px 0;
    position: relative;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1.5;
}
.questions .wrap .item h5:hover {
    color: #db6028;
}
.questions .wrap .item h5::before {
    position: absolute;
    content: "+";
    top: calc(50% - 20px);
    color: #db6028;
    right: 15px;
    font-size: 42px;
    font-weight: 400;
    transition: 0.3s;
}
.questions .wrap .item h5.open::before {
    transform: rotate(-45deg);
}
.questions .wrap .item div {
    padding: 15px 15px 15px 15px;
}
.questions .wrap .item div p {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 16px;
}
.questions .wrap .item div p:last-child {
    margin-bottom: 0;
}
.questions .wrap .item div ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}
.questions .wrap .item div ul li {
    font-style: italic;
}
.questions .wrap .btn {
    text-align: center;
    margin-top: 70px;
}
.questions .wrap .btn div {
    cursor: pointer;
}
@media only screen and (min-width:768px) {
    .questions {
        padding: 20px 0 90px;
    }
    .questions .wrap .item {
        padding: 30px 0;
    }
    .questions .wrap .item h5 {
        padding: 15px 35px 15px 0;
        font-size: 30px;
    }
}
@media only screen and (min-width:990px) {
    .questions h2 {
        margin-bottom: 120px;
    }
}
/*-------------------questions end----------------------*/

/*-------------------contact_us----------------------*/
.contact_us {
    padding: 150px 0 80px;
    background: url(/wp-content/themes/nashe_theme/assets/img/bg_form.jpg) top center no-repeat;
    background-size: cover;
}
.contact_us .wrap {
    padding: 0 24px;
}
.contact_us .wrap .txt {
    padding: 0 24px;
}
.contact_us .wrap .txt .wrap_contact {
    margin-top: 30px;
}
.contact_us .wrap .txt .wrap_contact p {
    margin-bottom: 25px;
}
.contact_us .wrap .txt .wrap_contact p.p_desc {
    margin-bottom: 15px;
}
.contact_us .wrap .txt .wrap_contact p a {
    color: black;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s;
}
.contact_us .wrap .txt .wrap_contact p a.email_form {
    color: #db6028;
    transition: 0.3s;
}
.contact_us .wrap .txt .wrap_contact p a:hover {
    color: #db6028;
}
.contact_us .wrap .txt .wrap_contact p a.email_form:hover {
    color: black;
}
.contact_us .wrap .txt .f_net {
    display: flex;
    margin-top: 15px;
}
.contact_us .wrap .txt .f_net a {
    width: 40px;
    height: 40px;
    background: #1c1b21;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: 0.2s;
    margin-right: 8px;
}
.contact_us .wrap .txt .f_net a.fb::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/wp-content/themes/nashe_theme/assets/img/icon_fb_white.png) no-repeat;
    background-size: contain;
    top: 10px;
    left: 10px;
}
.contact_us .wrap .txt .f_net a.inst::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/wp-content/themes/nashe_theme/assets/img/icon_inst_white.png) no-repeat;
    background-size: contain;
    top: 10px;
    left: 10px;
}
.contact_us .wrap .txt .f_net a.tg::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/wp-content/themes/nashe_theme/assets/img/icon_tg_white.png) no-repeat;
    background-size: contain;
    top: 10px;
    left: 10px;
}
.contact_us .wrap .txt .f_net a:hover {
    background: #db6028;
}

.contact_us .wrap .txt .net a img {
    width: 100%;
}
.contact_us .wrap .txt .net a:first-child {
    margin-right: 15px;
}
.contact_us .wrap .frm {
    text-align: center;
}
.contact_us .wrap .frm div {
    margin-top: 50px;
    box-shadow: 0.5px -10px 57px 3px rgb(34 34 34 / 7%);
    padding: 45px 30px 45px;
    border-radius: 20px;
    background: white;
}
.contact_us .wrap .frm div form input {
    font-family: 'Mont', sans-serif;
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 2px solid #e5e5e5;
    font-size: 16px;
    width: 100%;
}
.contact_us .wrap .frm div form input:focus {
    outline-color: #3b99fc;
}
.contact_us .wrap .frm div form input::placeholder {
    opacity: 0.6;
}
.contact_us .wrap .frm div form textarea {
    font-family: 'Mont', sans-serif;
    border-radius: 21px;
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    font-size: 16px;
    width: 100%;
    min-height: 150px;
}
.contact_us .wrap .frm div form textarea::placeholder {
    opacity: 0.6;
}
.contact_us .wrap .frm div form button {
    font-family: 'Mont';
    margin-top: 32px;
    font-size: 16px;
    font-weight: 600;
    background: #db6028;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    padding: 13px 50px 12px;
    border-radius: 30px;
    cursor: pointer;
    border: 3px solid #db6028;
}
.contact_us .wrap .frm div form button:hover {
    background: white;
    color: #db6028;
}
.contact_us .wrap .frm div form button.inactive_element {
    background: #e5e5e5;
    border: 3px solid #e5e5e5;
    cursor: default;
}
.contact_us .wrap .frm div form button.inactive_element:hover {
    color: white;
}
@media only screen and (min-width:768px) {
    .contact_us {
        padding: 180px 0 80px;
    }
    .contact_us .wrap {
        display: flex;
        padding: 0 17px;
    }
    .contact_us .wrap>div {
        width: 50%;
    }
    .contact_us .wrap .txt {
        padding: 0 15px;
    }
    .contact_us .wrap .txt h2 {
        text-align: left;
        margin-top: 60px;
    }
    .contact_us .wrap .txt h2::after {
        left: 0;
    }
    .contact_us .wrap .txt .wrap_contact {
        margin-top: 50px;
    }
    .contact_us .wrap .txt .wrap_contact p a {
        font-size: 30px;
    }
    .contact_us .wrap .frm {
        padding: 0 15px;
    }
    .contact_us .wrap .frm div {
        margin-top: 0;
        padding: 60px 70px;
    }
}
@media only screen and (min-width:990px) {
    .contact_us .wrap .txt h2 {
        font-size: 48px;
        line-height: 62px;
    }
    .contact_us .wrap {
        padding: 0;
    }
    .contact_us .wrap .frm div {
        padding: 80px 80px;
    }
}
/*-------------------contact_us end----------------------*/

/*-------------------footer----------------------*/
footer {
    padding: 0 24px;
    background: #1c1b21;
}
footer .wrap {
    padding: 60px 0;
}
footer .wrap .f_logo {
    text-align: center;
}
footer .wrap .f_logo .f_logo_img {
    width: 125px;
    height: 50px;
    display: inline-block;
    margin-bottom: 30px;
}
footer .wrap .f_logo .f_logo_img img {
    width: 100%;
}
footer .wrap .f_logo p {
    color: white;
}

footer .wrap .f_menu {
    text-align: center;
    margin-top: 50px;
    color: white;
}
footer .wrap .f_menu ul {
    margin-bottom: 50px;
}
footer .wrap .f_menu ul li {
    margin-bottom: 10px;
}
footer .wrap .f_menu ul li:last-child {
    margin-bottom: 0;
}
footer .wrap .f_menu ul li a {
    color: white;
    text-decoration: none;
}
footer .wrap .f_menu ul li a:hover {
    color: #db6028;
}


@media only screen and (min-width:768px) {
    footer {
        padding: 0 32px;
    }
    footer .wrap .f_menu {
        margin-top: 0;
    }
}
@media only screen and (min-width:990px) {
    footer .wrap {
        display: flex;
        justify-content: space-between;
        padding: 30px 0;
    }
    footer .wrap .f_logo {
        text-align: left;
    }
    footer .wrap .f_logo .f_logo_img {
        margin-bottom: 60px;
    }
    footer .wrap .f_menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
    }
    footer .wrap .f_menu ul {
        display: flex;
        padding-top: 15px;
    }
    footer .wrap .f_menu ul li {
        margin-left: 45px;
    }
}
/*-------------------footer end----------------------*/

