/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Libre+Franklin:wght@500;600&display=swap');

.font_2 {
    font-family: 'Josefin Sans', sans-serif;
}
/* end fonts */

#loader-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #fff;
    -webkit-animation: loader 1.4s linear;
    animation: loader 1.4s linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/* loader */
@-webkit-keyframes loader {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    100% {
        display: none;
        visibility: hidden;
        z-index: -10;
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    100% {
        display: none;
        visibility: hidden;
        z-index: -10;
        opacity: 0;
    }
}

/* end loader */

/* root */
:root {
    --color-orange: #FD9F27;
    --color-orange2: #e78507;
    --color-black: #312F2E;
    --color-text: #686462;
    --color-white: #fff;
    --transition: all .3s ease-in-out;
}
/* end root */

/* global styles */
html { 
    overflow-x: hidden;
    overflow-y: scroll;
 }

*,
*:before,
*:after { 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
}

* {
    margin: 0;
    padding: 0; 
    border: 0; 
    font-size: 100%; 
    font: inherit; 
    vertical-align: baseline; 
    -webkit-text-size-adjust: none; 
    -webkit-locale: auto;
}

.clear {
    clear: both;
    overflow: hidden;
    height: 0;
    font-size: 0;
    display: block;
}

html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) ::-webkit-scrollbar-track {
    background: var(--color-text);
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) ::-webkit-scrollbar-thumb {
    background: var(--color-orange);
}

body ::-moz-selection {
    color: #fff;
    background: var(--color-orange);
}

body ::selection {
    color: #fff;
    background: var(--color-orange);
}

body ::-moz-selection {
    color: #fff;
    background: var(--color-orange);
}

:focus,
:hover,
:active,
:visited {
    outline: none;
}

button { background: none; }

body {
    height: 100%;
    overflow: hidden;
    background: #f4f4f4;
    font-family: 'Libre Franklin', sans-serif;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 500;
    color: var(--color-text);
}

#content-block {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.overflow-hidden {
    overflow: hidden;
}

html.overflow-hidden body {
    overflow: hidden;
}

.swiper-container.swiper-initialized {
    opacity: 1;
}

.swiper-slide:not(:first-child) {
    display: none;
}
/* end global styles */

/*spacer*/
.spacer {
    clear: both;
}

.spacer-xl {
    height: 180px;
}

.spacer-lg {
    height: 160px;
}

.spacer-md {
    height: 150px;
}

.spacer-sm {
    height: 120px;
}

.spacer-sm-2 {
    height: 80px;
}

/*media*/
@media (max-width: 1560px) {
    .spacer-xl {
        height: 150px;
    }
    
    .spacer-lg {
        height: 120px;
    }
    
    .spacer-md {
        height: 100px;
    }
    
    .spacer-sm {
        height: 100px;
    }
    
    .spacer-sm-2 {
        height: 80px;
    }
}

@media (max-width: 1199px) {
    .spacer-xl,
    .spacer-lg,
    .spacer-md {
        height: 90px;
    }

    .spacer-sm,
    .spacer-sm-2 {
        height: 60px;
    }
}
/*end spacer*/

/*image styles*/
.img_wrapp {
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
}

.img_wrapp img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img_wrapp2 {
    position: relative;
    align-self: flex-start;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_wrapp2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

/* media */
@media (min-width: 992px) {
    .scale:hover img {
        transform: scale(1.02);
    }
}
/*end image styles*/

/* typography */
b,
strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

a {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: inherit;
    transition: var(--transition);
}

a:link,
a:visited,
a:active,
a:hover {
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

iframe {
    border: none;
    outline: none;
}

ul,
ol {
    list-style: none;
}

picture { font-size: 0; }

img {
    position: relative;
    max-width: 100%;
    height: auto;
    transition: var(--transition);
    backface-visibility: hidden;
}

img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ededed;
    background-image: url(../img/default-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.text {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
}

.text.text-xl {
    font-size: clamp(20px, 1.2vw, 22px);
    line-height: 1.54;
}

.text * {
    margin-bottom: 30px;
}

.text :last-child,
.text.no-margin * {
    margin-bottom: 0;
}

.text img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text ul li,
.text ol li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
}

.text ul li ul,
.text ol li ol {
    margin-top: 16px;
}

.text ul li:before {
    content: "";
    position: absolute;
    border-radius: 100%;
    left: 0;
    top: 13.5px;
    width: 6px;
    height: 6px;
    background: var(--color-text);
}

.text ol {
    counter-reset: number;
}

.text ol li {
    padding-left: 24px;
}

.text ol li:before {
    font-weight: inherit;
    counter-increment: number;
    content: counter(number) ".";
    position: absolute;
    top: 0;
    left: 0;
    color: inherit;
}

.text ul li:last-child,
.text ol li:last-child {
    margin-bottom: 0;
}

.text ul li span,
.text ol li span {
    font-weight: 700;
}

.text a:not(.btn) {
    position: relative;
    color: var(--color-orange);
    cursor: pointer;
    white-space: pre-wrap;
    font-weight: 700;
}

.text a:not(.btn)::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--color-orange);
    transition: var(--transition);
    backface-visibility: hidden;
}

.ul-two-column ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.ul-two-column li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

blockquote {
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    position: relative;
    display: block;
    font-size: clamp(18px, 1.8vw, 26px);
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: var(--color-black);
}

blockquote::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 508px;
    height: 50px;
    background-image: url('../img/est.webp');
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 18px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: var(--color-black);
    font-weight: 700; 
}

h1,
.h1 {
    font-size: clamp(36px, 3.2vw, 54px);
}

h2,
.h2 {
    font-size: clamp(26px, 2.6vw, 46px);
}

h3,
.h3 {
    font-size: clamp(26px, 2.2vw, 36px);
}

h4,
.h4 {
    font-size: clamp(26px, 2.2vw, 36px);
}

h5,
.h5 {
    font-size: clamp(18px, 1.8vw, 26px);
}

.h5.full {
    font-size: 26px;
}

h6, .h6 {
    font-size: clamp(14px, 1.8vw, 18px);
}

.subtitle {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.text-truncate {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-line-1 {
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-2 {
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-3 {
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-4 {
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-5 {
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-6 {
    overflow: hidden;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-line-8 {
    overflow: hidden;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/* media */
@media (min-width: 992px) {
    .text a:hover::after {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .hide-md {
        display: none !important;
    }

    blockquote::before {
        height: 40px;
    }

    .text {
        font-size: 16px;
    }

    .text ul li:before {
        top: 9px;
    }
}

@media (max-width: 991px) {
    .hide-sm {
        display: none !important;
    }

    .text * {
        margin-bottom: 26px;
    }

    blockquote {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    br {
        display: none;
    }

    .ul-two-column ul {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .text-line-1,
    .text-line-2,
    .text-line-3,
    .text-line-4,
    .text-line-5 {
        -webkit-line-clamp: inherit;
    }
}

/* end typography */

/* container styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1564px;
    }
}

@media (min-width: 1200px) and (max-width: 1810px) {
    .container {
        max-width: 1660px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* end container styles */

/* colors */
.color_orange {
    color: var(--color-orange);
}

.color_text {
    color: var(--color-text);
}

.color_black {
    color: var(--color-black);
}

.color_white {
    color: var(--color-white);
}
/* end colors */

/* button styles */
.btn {
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    font-weight: 600;
    line-height: 1;
    color: var(--color-black);
    font-size: 22px;
    min-width: 154px;
    padding: 16px 12px;
    border: 2px solid var(--color-orange);
    border-radius: 6px;
    transition: var(--transition);
    backface-visibility: hidden;
    overflow: hidden;
}

.btn.color2 {
    background: var(--color-orange);
}

.btn.color3 {
    background: transparent;
}

.btn.color4 {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* media */
@media (min-width: 992px) {
    .btn:hover {
        background: var(--color-orange2);
        border-color: var(--color-orange2);
    }

    .btn.color3:hover {
        background: var(--color-orange);
        border-color: var(--color-orange);
    }

    .btn.color4:hover {
        background: var(--color-orange2);
        border: 2px solid var(--color-orange2);
    }
}

@media (max-width: 1199px) {
    .btn {
        font-size: 16px;
        padding: 14px 12px;
    } 
}
/* end button styles */

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 136px;
    z-index: 20;
    backface-visibility: hidden;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    display: flex;
    align-items: center;
}

header+*:not(.no-margin) {
    margin-top: 136px;
}

header.home + *:not(.no-margin) {
    margin-top: 156px;
}

.header.scrolled {
    height: 100px;
    box-shadow: -10px 14px 24px rgba(0, 0, 0, 0.12);
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header #logo {
    display: inline-block;
    line-height: 0;
}

.header.scrolled #logo img {
    max-width: 160px;
}

.header #logo img {
    max-width: 244px;
    max-height: 86px;
}

header .social,
header .btn_mobile {
    display: none;
}

.toggle-block {
    text-align: center;
    padding: 0 16px;
}

.nav-wrapp ul {
    font-size: 0;
}

.nav-wrapp > ul:first-of-type > li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 60px;
}

.nav-wrapp ul li:last-child {
    margin: 0!important;
}

.nav-wrapp > ul a:not(.btn) {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    color: var(--color-black);
}

.nav-wrapp > ul a:not(.btn):after {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--color-orange);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: var(--transition);
    backface-visibility: hidden;
}

.nav-wrapp>ul:first-of-type > li.active a::after {
    width: 100%;
}

.second_menu {
    position: relative;
}

.second_menu i {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    transition: var(--transition);
    cursor: pointer;
}

.second_menu i::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    border-color: var(--color-black) transparent transparent transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    backface-visibility: hidden;
}

.second_menu_list {
    text-align: left;
    position: absolute;
    z-index: 10;
    bottom: -10px;
    left: -44px;
    transform: translateY(100%);
    padding: 34px 20px 34px 44px;
    width: 202px;
    background: var(--color-white);
    border: 1px solid #F4F4F4;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    backface-visibility: hidden;
    transition: var(--transition);
}

.second_menu_list > li:not(:last-child) {
    margin-bottom: 20px;
}

.second_menu_list a {
    color: var(--color-text)!important;
}

.mobile-button {
    position: relative;
    display: none;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    z-index: 101;
    transition: var(--transition);
    background-color: var(--color-orange);
}

.mobile-button span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 3px;
    margin-top: -1.5px;
    margin-left: -11px;
    background: var(--color-black);
    transition: var(--transition);
}

.mobile-button:before,
.mobile-button:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 3px;
    margin-left: -11px;
    background: var(--color-black);
    margin-top: 6.5px;
    transition: var(--transition);
}

.mobile-button:before {
    margin-top: -9.5px;
}

.mobile-button.active:before,
.mobile-button.active:after {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.mobile-button.active:after {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.mobile-button.active span {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
}

/* media */
@media (min-width: 992px) {
    #logo:hover img {
        opacity: .8 !important;
    }

    .nav-wrapp ul li:hover > a:not(.btn):after {
        width: 100%;
    }

    .second_menu:hover .second_menu_list {
        opacity: 1;
        visibility: visible;
    }

    .second_menu:hover i::after {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

@media (max-width: 1560px) {
    header+*:not(.no-margin) {
        margin-top: 100px;
    }

    header.home + *:not(.no-margin) {
        margin-top: 120px;
    }

    .header {
        height: 100px;
        padding: 12px 0;
    }

    .header #logo img {
        max-width: 170px;
    }

    .header.scrolled {
        height: 80px;
    }

    .header.scrolled #logo img {
        max-width: 140px;
    }

    .nav-wrapp>ul > li {
        margin-right: 32px;
    }

    .nav-wrapp > ul:first-of-type > li {
        margin-right: 40px;
    }
}

@media (max-width: 1199px) {
    .nav-wrapp > ul:first-of-type > li {
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .heaader_right {
        display: none;
    }
    .header #logo img {
        max-width: 114px;
        max-height: 40px;
    }
    .header {
        height: 80px;
    }

    header+*:not(.no-margin) {
        margin-top: 80px;
    }

    header.home + *:not(.no-margin) {
        margin-top: 96px;
    }

    header.open-menu .layer-close {
        top: 80px;
    }

    .toggle-block {
        width: 100%;
        left: 0;
        transform: translateX(100%);
        position: fixed;
        top: 80px;
        height: calc(100vh - 80px);
        height: calc((var(--vh, 1vh) * 100) - 80px);
        background: #E5E5E5;
        padding: 0 0 162px;
        text-align: center;
        transition: var(--transition);
        backface-visibility: hidden;
        z-index: 101;
        overflow: hidden;
    }

    header.open-menu .toggle-block {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .toggle-block::before {
        content: '';
        width: 84px;
        height: 84px;
        background-image: url('../img/menu_decor.webp');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: -1;
        position: absolute;
        right: 20px;
        bottom: 68px;  
    }

    .toggle-block::after {
        content: '';
        width: 60%;
        height: 150px;
        background-image: url('../img/menu_img.webp');
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: auto;
        z-index: -1;
        position: absolute;
        left: 0;
        bottom: 0;  
    }

    .toggle-block > .nav-wrapp {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 62px 24px 0;
        overflow-y: auto;
    }

    .toggle-block > .nav-wrapp::before {
        content: '';
        width: 68px;
        height: 68px;
        background-image: url('../img/menu_left.webp');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: auto;
        z-index: -1;
        position: fixed;
        left: 0;
        top: 40%;  
    }

    .toggle-block > .nav-wrapp::after {
        content: '';
        width: 86px;
        height: 86px;
        background-image: url('../img/menu_right.webp');
        background-repeat: no-repeat;
        background-position: right center;
        background-size: auto;
        z-index: -1;
        position: fixed;
        right: 0;
        top: 54%;  
    }

    .nav-wrapp>ul:first-of-type > li {
        display: block;
        margin: 0 0 66px;
    }

    .nav-wrapp>ul:first-of-type > li > a:not(.btn) {
        font-family: 'Josefin Sans', sans-serif;
        text-transform: uppercase;
        font-size: 36px;
        letter-spacing: -0.04em;
        line-height: 1.2;
        font-weight: 700;
    }

    .second_menu_list {
        position: relative;
        z-index: 0;
        bottom: 0;
        left: 0;
        transform: translateY(0);
        background-color: transparent;
        backdrop-filter: blur(0px);
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transition: none;
        padding: 30px 0 0;
        display: none;
        border: 0;
        border-radius: 0;
        text-align: center;
    }

    .second_menu.open i::after {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    .second_menu.open .second_menu_list {
        margin-bottom: -20px;
    }

    .second_menu_list > li {
        display: block;
    }

    .nav-wrapp>ul:first-of-type {
        margin-bottom: 90px;
    }

    .nav-wrapp>ul li:nth-child(1) {
        transition-delay: .3s;
    }

    .nav-wrapp>ul li:nth-child(2) {
        transition-delay: .4s;
    }

    .nav-wrapp>ul li:nth-child(3) {
        transition-delay: .5s;
    }

    .nav-wrapp>ul li:nth-child(4) {
        transition-delay: .6s;
    }

    .nav-wrapp>ul li:nth-child(5) {
        transition-delay: .7s;
    }

    .nav-wrapp>ul li:nth-child(6) {
        transition-delay: .8s;
    }

    .nav-wrapp>ul li:nth-child(7) {
        transition-delay: .9s;
    }

    .nav-wrapp>ul li:nth-child(8) {
        transition-delay: 1s;
    }

    .nav-wrapp>ul li:nth-child(9) {
        transition-delay: 1.1s;
    }

    .nav-wrapp>ul li:nth-child(10) {
        transition-delay: 1.2s;
    }

    .nav-wrapp>ul li {
        opacity: 0;
        transform: translateY(-20px);
        transition: .2s ease-in;
        backface-visibility: hidden;
    }

    .header.open-menu .nav-wrapp>ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .second_menu i {
        vertical-align: top;
    }

    .second_menu_list > li:not(:last-child) {
        margin-bottom: 36px;
    }

    header .social,
    header .btn_mobile {
        display: block;
    }

    header .btn_mobile {
        margin-bottom: 28px;
    }

    .mobile-button {
        display: block;
    }
}

@media (max-width: 767px) {
    .header .btn {
        display: block;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    header {
        position: relative;
    }

    header+* {
        margin-top: 0;
    }

    .toggle-block {
        padding: 0 0 80px;
    }

    .toggle-block::after {
        height: 70px;
        background-size: contain;
    }

    .toggle-block > .nav-wrapp {
        padding: 20px 24px 0;
    }

    .nav-wrapp>ul:first-of-type > li {
        margin: 0 0 24px;
    }

    .second_menu_list > li:not(:last-child) {
        margin-bottom: 16px;
    }

    .second_menu_list {
        padding: 20px 0;
    }

    .second_menu.open .second_menu_list {
        margin-bottom: 0;
    }

    .nav-wrapp>ul:first-of-type {
        margin-bottom: 30px;
    }

    .toggle-block::before {
        bottom: 0;
    }
}

/* end header */

/*banner*/
.banner + *:not(.no_margin) {
    margin-top: 90px;
}

.banner.no_margin + * {
    margin-top: 0;
}

.bg-native {
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-native-before::before {
    content:'';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.bg-native-after::after {
    content:'';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.bg {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.opacity:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}


.parallax-bg {
    overflow-y: hidden;
}

.parallax-bg .bg {
    position: absolute;
    width: 100%;
    height: 120%;
    top: -10%;
}

.banner {
    position: relative;
}

.banner .h4 {
    font-size: clamp(24px, 2.2vw, 32px);
}

.h4.full {
    font-size: 32px;
}

.banner+.sec-full-width, .banner+.select-year {
    margin-top: 0;
}

.banner+.submenu-inner-wrap {
    margin: 0 0 70px;
}

.banner-align {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 10000px;
    padding: 40px 0;
    height: 350px;
    z-index: 1;
    overflow: hidden;
}


/* banner type big */
.banner-align.big {
    height: 820px;
}

.banner-align.big .box {
    position: relative;
    max-width: 910px;
    padding: 0 12px;
    margin: 0 auto;
    text-align: center;
}

.banner-align.big .box::before {
    content: '';
    width: 260px;
    height: 180px;
    background-image: url('../img/pokeworks-icon.webp');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    display: block;
    margin: 0 auto 60px;
}

.banner-align.big .title {
    margin-bottom: 28px;
}

.banner-align.big .text {
    margin-bottom: 46px;
}

.banner-align.big .btn {
    min-width: 350px;
}
/* end banner type big */

/* type small */
.banner-align.small {
    height: 432px;
}

.banner-align.small .opacity:before {
    background: rgba(0, 0, 0, 0.5);
}

.banner-align.small .box {
    max-width: 910px;
    margin: 0 auto;
}

.banner-align.small .box > .title {
    margin-bottom: 18px;
}

.banner-align.small .box > .desc {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.banner-align .btn_side {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.banner-align .btn_side .btn:first-child {
    margin-right: 10px;
}

.banner-align .btn_side .btn {
    min-width: 250px;
}
/* end type small */

.banner-align.size3 {
    height: 400px;
}

.banner-align.align-top {
    vertical-align: top;
}

.banner-align.custom {
    display: block;
    width: 100%;
    padding: 0;
}

.banner-align.custom .container, .banner-align.custom .row {
    height: 100%;
}

.banner.banner-detail {
    margin-bottom: 50px;
}

.banner-content {
    position: relative;
}

.banner-content>* {
    margin-bottom: 40px;
}

.banner-content>*:last-child {
    margin-bottom: 0;
}

.banner-content.mobile {
    display: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
}

.home-banner .banner-content .title {
    font-weight: 300;
}

.home-banner .banner-content .title b {
    font-weight: 900;
}

.home-banner .banner-content .text {
    max-width: 420px;
}

.home-banner .only-mobile {
    display: none;
    text-align: center;
    margin-top: 15px;
}

.home-banner .swiper-pagination {
    bottom: 30px !important;
}

.banner-align .bg.mobile {
    display: none;
}

.video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    clip: rect(auto, auto, auto, auto);
    display: none;
}

.video video {
    position: fixed;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.video-present .video {
    display: block;
    overflow: hidden;
}

/*media*/
@media(max-width: 1560px) {
    .banner-align.small {
        height: 420px;
    }

    .banner-content>* {
        margin-bottom: 30px;
    }

    .banner-align.size2 {
        height: 450px;
    }

    .banner-align.big .box::before {
        width: 180px;
        height: 180px;
        margin: 0 auto 46px;
    }

    .banner-align.big .title {
        margin-bottom: 16px;
    }

    .banner-align.big .text {
        margin-bottom: 30px;
    }

    .banner-align.big {
        height: 600px;
    }

    .banner-align.small .box > .desc {
        margin-bottom: 28px;
    }
}

@media(max-width: 1199px) {
    .banner-align.full-h {
        height: calc(100vh - 80px);
    }

    .banner-align.big .box::before {
        width: 144px;
        height: 102px;
    }

    .banner-align .btn_side .btn:first-child {
        margin-right: 20px;
    }

    .banner-align.small .box > .title {
        margin-bottom: 14px;
    }
}

@media (max-width: 991px) {
    .banner-align.big {
        height: auto;
        padding: 190px 0;
    }

    .banner-align.big .btn {
        min-width: 270px;
    }
}

@media(max-width: 767px) {
    .banner-align.full-h, .banner-align.full-h2 {
        height: 50vh;
        padding: 20px 0;
    }

    .banner-align .bg:not(.mobile) {
        display: none;
    }

    .banner-align .bg.mobile, .home-banner .banner-align .bg.mobile {
        display: block;
    }

    .home-banner .banner-align .opacity:before {
        background: rgba(0, 0, 0, 0.2);
    }

    .banner-content>* {
        margin-bottom: 15px;
    }

    .banner-align.size2 {
        height: 300px;
    }

    .home-banner .swiper-pagination {
        bottom: auto !important;
        position: relative;
        margin-top: 15px;
    }
    
    .banner-align .btn_side {
        flex-direction: column;
    }

    .banner-align .btn_side .btn {
        min-width: 200px;
    }
    
    .banner-align .btn_side .btn:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/*end banner*/

/* home banner */
.home_banner {
    position: relative;
}

.home_banner::after {
    width: 9.17vw;
    max-width: 176px;
    height: 9.17vw;
    max-height: 176px;
    background-image: url('../img/tomato.webp');
    background-position: right center;
    right: 0;
    bottom: 0;
    transform: translateY(30%);
}
.home_banner .content_inner {
    max-width: 780px;
}

.home_banner .content_inner .title {
    margin-bottom: 30px;
}

.home_banner .content_inner .text {
    margin-bottom: 40px;
    max-width: 694px;
}

.btn_box {
    font-size: 0;
}

.home_banner .btn:not(:last-child) {
    margin-right: 10px;
}

.home_banner .btn:last-child {
    min-width: 196px;
}

.home_banner .home_img {
    position: relative;
    max-width: 664px;
    margin: 0 auto;
}

.home_banner .home_img::before {
    width: 18.24vw;
    max-width: 350px;
    height: 18.24vw;
    max-height: 350px;
    background-image: url('../img/bg-decor-2.webp');
    background-position: center;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
}

.home_banner .home_img::after {
    width: 7.94vw;
    max-width: 152px;
    height: 7.94vw;
    max-height: 152px;
    background-image: url('../img/bg-decor-1.webp');
    background-position: center;
    left: 0;
    top: 0;
    transform: translateX(-40%);
}

/* media */
@media (max-width: 1199px) {
    .home_banner .content_inner .title {
        margin-bottom: 12px;
    }

    .home_banner .content_inner .text {
        margin-bottom: 26px;
    }
}

@media (max-width: 991px) {
    .home_banner .home_img {
        margin-bottom: 52px;
        max-width: 72%;
        width: calc((50vw + 50%) - 6px);
        margin-right: calc(50% - 50vw);
    }

    .home_banner::before {
        content: '';
        width: 80px;
        height: 76px;
        background-image: url('../img/basil.webp');
        background-position: left center;
        left: 0;
        top: 0;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: -1;  
    }

    .home_banner::after,
    .home_banner .home_img::before {
        content: none;
    }

    .home_banner .home_img .img_wrapp {
        overflow: visible;
    }

    .home_banner .home_img .img_wrapp::before {
        content: '';
        width: 96px;
        height: 96px;
        background-image: url('../img/tomato-2.webp');
        background-position: center;
        left: 0;
        bottom: 0;
        transform: translateX(-80%);
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: -1;        
    }

    .home_banner .home_img::after {
        background-image: url('../img/falling.webp');
        width: 78px;
        height: 78px;
        top: 20%;
        left: 0;
        transform: translateX(-100%);
    }

    .banner_images {
        position: relative;
        width: 80vw;
        margin-right: calc(50% - 50vw);
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .home_banner .btn:not(:last-child) {
        min-width: 124px;
    }
    
    .home_banner .btn:last-child {
        min-width: 156px;
    }
}

@media (max-width: 575px) {
    .home_banner .home_img .img_wrapp::before {
        width: 23.2vw;
        height: 23.2vw;
    }
}
/* end home banner */