@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: Assistant;
    src: url("../fonts/Assistant-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: Assistant_Light;
    src: url("../fonts/Assistant-Light.ttf");
    font-display: swap;
}

@font-face {
    font-family: Assistant_bold;
    src: url("../fonts/Assistant-Bold.ttf");
    font-display: swap;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: black;
    width: max-content;
    cursor: pointer;
}
/*.contentScroll{*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    right: 24px;*/
/*    z-index: 20;*/
/*    padding: 8px 16px;*/
/*    border-radius: 8px;*/
/*    background-color: #21456B;*/
/*    color: white;*/
/*}*/
.contentScroll{
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.contentScroll:focus{
    position: absolute;
    top: 10px;
    right: 24px;
    z-index: 20;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #21456B;
    color: white;
    clip: unset;
    clip-path: unset;
    overflow: unset;
    height: auto;
    width: auto;
}
a.active {
    font-family: Assistant_bold, sans-serif;
}

input {
    font-family: Assistant, sans-serif;
}

.large_btn {
    padding: 10px 20px !important;
    font-size: 1.2em;
}

.btn {
    border: none;
    background-color: #a0ce6f;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 5px 0 rgba(75, 81, 91, .2);
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.smart_btn:hover {
    transition: .3s;
    transform: scale(1.1);
}

.btn_bg {
    position: absolute;
    border: none;
    background: linear-gradient(140deg, rgba(125, 166, 112, 1) 0%, rgba(180, 230, 110, 1) 100%);
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    top: -5px;
    right: 10px;
    width: 90%;
    height: 35px;
}

.smart_btn {
    position: relative;
    display: inline-block;
}

.smart_btn .btn {
    box-shadow: unset;
}

header {
    background-color: #fff;
    height: 85px;
    width: 100%;
    position: fixed;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    transition: .3s;
}

.sticky {
    height: 85px;
    transition: .3s;
    box-shadow: 0 1px 5px 0 rgba(75, 81, 91, .2);
}

.sticky .header_social_icons {
    margin: 29px 25px;
}

.header_social_icons {
    display: none;
    margin: 45px 25px;
    justify-content: space-between;
    width: 110px;
    transition: .3s;
}

.header_social_icons a {
    width: 30px;
    height: 30px;
}

.header_social_icons img {
    width: 100%;
}

/*LOGO*/

.logo {
    width: 240px;
    margin-top: 16px;
    margin-left: 25px;
    transition: .3s;
    position: relative;
    z-index: 10;
}

.logo img {
    width: 100%;
}

.sticky .logo {
    width: 240px;
    margin-top: 16px;
    margin-left: 25px
}

/*LOGO*/

/*MOBILE NAVBAR*/

.mobile_navbar {
    height: 85px;
    line-height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

.menu_mobile {
    width: 100%;
    max-width: 400px;
    z-index: 11;
    position: absolute;
    top: 0;
    transition: 0.3s;
    background-color: white;
    right: -400px;
    box-shadow: 0 1px 5px 0 rgba(75, 81, 91, .2);
    overflow-y: auto;
    max-height: 100vh;
    display: none;
}

.menu_mobile img {
    display: block;
    max-width: 200px;
    width: 90%;
    margin: 50px auto 30px;
}

.menu_mobile .btn {
    padding: 8px 16px;
    background-color: #ffce13;
    max-width: 220px;
    width: 90% !important;
    margin: 10px auto !important;
    line-height: 30px;
    font-family: Assistant_bold, sans-serif;
}

.title_navbar_catalog p {
    color: #7DA670;
    line-height: 0;
    margin: 60px 50px 10px;
}

.title_navbar_catalog a {
    font-family: Assistant_bold, sans-serif;
}

.menu_mobile a {
    width: 100%;
    display: block;
    color: black;
    padding-right: 50px;
    font-size: 1.5em;
    border-bottom: 1px solid #e4e4e4;
}

.menu_mobile a img {
    width: 50px;
    max-width: unset;
    margin: 10px 0px;
}

.linkSubMenuMobile {
    /*width: 80%;*/
    margin: auto;
    display: none;
    background-color: whitesmoke;
    transition: .3s;
}
/*.linkMenuMobile:focus .linkSubMenuMobile{*/
/*    display: block;*/
/*}*/
/*.linkMenuMobile:focus-within .linkSubMenuMobile{*/
/*    display: block;*/
/*}*/
.linkSubMenuMobile.active{
    display: block;
}

.menu_mobile a:hover {
    opacity: .8;
    transition: .3s;
}

.menu_mobile .btn {
    width: max-content;
    margin: auto;
}

.mobile_navbar_title {
    font-size: 1.6em;
    text-align: center;
    line-height: 40px;
}

.mobile_navbar_line {
    height: 2px;
    background: linear-gradient(90deg, rgba(180, 220, 250, 1) 0%, rgba(84, 121, 156, 1) 100%);
    width: 100%;
}

.show_menu {
    right: 0;
    display: block;
}

/*MOBILE NAVBAR*/

/*SUB MENU*/

.sub_menu {
    width: 100%;
    display: none;
}

.show_sub_menu {
    display: block;
    text-transform: none;
    transition: .4s ease-in-out;
}

/*SUB MENU*/

/* ICON_BURGER */

.icon {
    height: 85px;
    width: 70px;
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 12;
    border: none;
    background-color: transparent;
}

.burger {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #21456b;
    height: 3px;
    width: 20px;
}

.burger:before,
.burger:after {

    content: '';
    position: absolute;
    height: 3px;
    width: 20px;
    background-color: #21456b;
    right: 0;
}

.burger:before {
    top: -8px;
}

.burger:after {
    top: 8px;
}

.icon.active .burger {
    background: rgba(0, 0, 0, 0);
}

.icon.active .burger:before {
    transform: rotate(45deg);
    top: -20px;
    right: -10px;
    background-color: #21456b;
}

.icon.active .burger:after {
    transform: rotate(135deg);
    top: -20px;
    right: -10px;
    background-color: #21456b;
}

/*ICON_BURGER*/

/* NAVBAR */

.sticky .navbar {
    margin-top: 34px;
}

.navbar {
    z-index: 10;
    position: relative;
    width: max-content;
    /*	height: 120px;*/
    display: none;
    margin-top: 52px;
    transition: .3s;
}

.navbar a {
    margin: auto 6px;
}

.navbar a:hover {
    transition: .3s;
    color: #A6D95F;
}

.navbar a img {
    width: 24px;
    margin-left: -8px;
}

.linkSubMenu {
    position: absolute;
    background-color: white;
    display: none;
    flex-direction: column;
    right: 100px;
    top: 25px;
    box-shadow: 0 4px 5px 0 rgba(75, 81, 91, .2);
}

.linkMenu:hover .linkSubMenu {
    display: flex;
}
.linkMenu:focus-within .linkSubMenu {
    display: flex;
}

/*.linkMenu:hover .linkSubMenu,*/
/*.linkSubMenu:focus-within {*/
/*    display: flex;*/
/*}*/
.display{

}
.linkSubMenu a {
    padding: 8px 16px;
}

.sticky .header_post_btn {
    margin-top: 22px
}

.header_post_btn {
    background-color: #ffce13;
    height: max-content;
    margin-top: 44px;
    margin-right: 0;
    transition: .3s;
    display: none;
}

/* END NAVBAR */


@media (min-width: 992px) {
    .logo {
        height: 70px;
        width: 320px;
        margin-top: 24px;
        margin-left: 25px
    }

    header {
        background-color: #fff;
        height: 120px;
        width: 100%;
        position: fixed;
        z-index: 5;
        display: flex;
        justify-content: space-between;
    }

    .navbar {
        display: block;
        margin-right: 25px;
    }

    .icon, .menu_mobile {
        display: none;
    }
}

@media (min-width: 1200px) {
    .header_social_icons {
        display: flex;
    }

    .header_post_btn {
        background-color: #ffce13;
        height: max-content;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }

    .mobile_navbar {
        display: none;
    }

    .navbar {
        display: block;
        margin-right: 0;
    }
}

/*@media (min-width: 1600px) {*/
/*    .header_post_btn {*/
/*        background-color: #ffce13;*/
/*        height: max-content;*/
/*        position: absolute;*/
/*        left: 50%;*/
/*        transform: translateX(-50%);*/
/*        display: block;*/
/*    }*/
/*}*/