@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Thin.ttf');
    font-weight: 100;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-ExtraLight.ttf');
    font-weight: 200;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-DemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-ExtraBold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: "TT";
    src: url('/fonts/TT-Hoves-Pro-Trial-Black.ttf');
    font-weight: 900;
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
}


.header__logo {
    width: 200px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

nav.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 85vw;
}

a.fb__link--btn {
    padding: 6px 26px;
    font-family: "TT";
    font-weight: 500;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: .3s all;
    -webkit-transition: .3s all;
    font-size: 24px;
}

a.fb__link--btn:hover {
    background: #f0f0f0;
}

a.fb__link--btn.active {
    background: #30b564;
    color: white;
    font-weight: 600;
}

a.fb__link--btn.second {
    background: #e3f0e3;
    width: 200px;
    display: block;
    text-align: center;
}

a.fb__link--btn.second:hover {
    background: #f0f0f0;
}

button.fb__links--btn {
    font-weight: 500;
    transition: .3s;
    color: black;
    outline: none;
    border: 0;
    padding: 6px 18px;
    font-family: "TT";
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 24px;
    background: transparent;
    gap: 15px;
    position: relative;
    z-index: 4;
}

button.fb__links--btn:hover {
    background: #f0f0f0;
}

button.fb__links--btn > img {
    width: 10px;
    transform: rotate(90deg);
    margin-top: 5px;
}

.fb--links {
    position: relative;
}

.fb__links--block {
    position: absolute;
    top: 100%;
    margin: 0;
    left: 0;
    list-style: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 5px;
    transition: .3s;
    transform: translateY(-20px);
    opacity: 0;
    z-index: -2;
    background: white;
}

.fb__links--block li a {
    font-size: 20px;
    color: black;
    font-weight: 400;
    transition: .3s;
    text-decoration: none;
}

.fb__links--block li::before {
	content: "";
}

.fb__links--block li a:hover {
    color: #30b564;
}

.fb__links--block li:nth-child(2) a {
    margin: 15px 0;
    display: block;
}

button.fb__links--btn:hover + ol.fb__links--block , ol.fb__links--block:hover {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

header {
    border-bottom: 1px solid #dddddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 10;
}

@media screen and (max-width: 1460px) {
    a.fb__link--btn {
        font-size: 22px;
    }

    button.fb__links--btn {
        font-size: 22px;
    }

    button.fb__links--btn > img {
        width: 8px;
        transform: rotate(90deg);
        margin-top: 0;
    }

    .fb__links--block li a {
        font-size: 14px;
    }

    a.fb__link--btn.second {
        width: 180px;
        border-radius: 10px;
    }

    .header__logo {
        width: 150px;
    }

    .header__inner {
        height: 76px;
    }
}

@media screen and (max-width: 920px) {
    .container {
        max-width: 95vw;
    }
}

.sidebar-toggle {
    display: none;
}

@media screen and (max-width: 850px) {
    header aside {
        display: block;
    }
    .sidebar-toggle {
        position: relative;
        border-radius: 5px;
        background: rgb(242, 242, 242);
        height: 40px;
        width: 40px;
        z-index: 25;
        display: block;
        transition: 0.5s;
        cursor: pointer;
    }

    nav.nav {
        display: none;
    }

    nav + a.fb__link--btn.second {
        margin-left: auto;
        margin-right: 15px;
        width: 180px;
        font-size: 20px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .sidebar-toggle span, .sidebar-toggle:after, .sidebar-toggle:before{
        height: 4px;
        width: 100%;
        position: absolute;
        background: #000000;
        margin: 0 auto;
        width: 25px;
        border-radius: 6px;
        margin-left: 6px;
        transition: 0.5s; 
    }
    .sidebar-toggle span{
        top: 18px;
    }
    .sidebar-toggle:after, .sidebar-toggle:before{
        content: '';
    }
    .sidebar-toggle:after{
        bottom: 9px;
        width: 20px;
    }
    .sidebar-toggle:before{
        top: 9px;
        width: 28px;
    }

    .sidebar-toggle.open-menu span {
        opacity:0; 
        transition: 0.5s; 
    }
    .sidebar-toggle.open-menu:before {
        transform: rotate(45deg);
        top: 18px;
        transition: 0.4s;
        width: 28px;
    }
    .sidebar-toggle.open-menu:after {
        transform: rotate(-45deg);
        bottom: 18px;
        transition: 0.4s;
        width: 28px;
    }
}

@media screen and (max-width: 600px) {
    nav + a.fb__link--btn.second {
        display: none;
    }
}

aside.mobile--sidebar {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 12;
    top: 0;
    left: 0;
    transition: .3s;
    transform: translateX(100%);
}

.aside--content {
    margin-top: 90px;
    margin-left: 30px;
}

.aside--content img {
    width: 150px;
}

.aside--content nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.aside--content nav a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    max-width: 180px;
    font-size: 18px;
}

a.sidebar--enter {
    margin-top: 60px;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background: #30b564;
    font-size: 14px;
}

aside.mobile--sidebar.open {
    transform: translateX(0);
}

@media screen and (max-width: 1290px) {
    header aside {
        display: block;
    }
    .sidebar-toggle {
        position: relative;
        border-radius: 5px;
        background: rgb(242, 242, 242);
        height: 40px;
        width: 40px;
        z-index: 25;
        display: block;
        transition: 0.5s;
        cursor: pointer;
    }

    nav.nav {
        display: none;
    }

    nav + a.fb__link--btn.second {
        margin-left: auto;
        margin-right: 15px;
        width: 180px;
        font-size: 20px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .sidebar-toggle span, .sidebar-toggle:after, .sidebar-toggle:before{
        height: 4px;
        width: 100%;
        position: absolute;
        background: #000000;
        margin: 0 auto;
        width: 25px;
        border-radius: 6px;
        margin-left: 6px;
        transition: 0.5s; 
    }
    .sidebar-toggle span{
        top: 18px;
    }
    .sidebar-toggle:after, .sidebar-toggle:before{
        content: '';
    }
    .sidebar-toggle:after{
        bottom: 9px;
        width: 20px;
    }
    .sidebar-toggle:before{
        top: 9px;
        width: 28px;
    }

    .sidebar-toggle.open-menu span {
        opacity:0; 
        transition: 0.5s; 
    }
    .sidebar-toggle.open-menu:before {
        transform: rotate(45deg);
        top: 18px;
        transition: 0.4s;
        width: 28px;
    }
    .sidebar-toggle.open-menu:after {
        transform: rotate(-45deg);
        bottom: 18px;
        transition: 0.4s;
        width: 28px;
    }

    header .container {
        max-width: 95vw;
    }

    .header__logo {
        width: 220px;
    }

    nav + a.fb__link--btn.second {
        margin-left: auto;
        margin-right: 15px;
        width: 220px;
        font-size: 24px;
        height: 50px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    
}

@media screen and (max-width: 1000px) {
    header.header {
        height: 76px;
        padding-top: 0;
    }

    .sidebar-toggle {
        top: 0;
        left: 0;
    }

    .sidebar-toggle.open-menu {
        left: 0;
    }
}


@media screen and (max-width: 850px) {
    nav + a.fb__link--btn.second {
        width: 180px;
        font-size: 20px;
        height: 40px;
    }
}

@media screen and (max-width: 600px) {
    nav + a.fb__link--btn.second {
        display: none;
    }
}

a.fb__link--btn.second {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.fb__link--btn.second img {
    max-width: 20%;
    display: block;
}

a.sidebar--enter img{
    max-width: 10%;
    display: block;
}

a.sidebar--enter {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 70vw;
    justify-content: center;
}

button.fb__links--btn:hover + ol.fb__links--block, ol.fb__links--block:hover {
	list-style: none;
    height: auto;
}

ol.fb__links--block {
    height: 0;
    overflow: hidden;
}



footer.footer {
    background: rgb(57, 57, 57);
    padding-bottom: 10px;
    padding-top: 0px !important;
    margin-top: 30px !important;
}

footer.footer .container {
    max-width: 70vw;
}

.footer__head {
    display: flex;
    color: white;
    padding-top: 90px;
    justify-content: space-between;
    gap: 20px;
}

.footer--col h3 {
    color: white;
    font-weight: 500;
    font-size: 40px;
}

.footer--col p {
    font-weight: 300;
    font-size: 28px;
    margin-top: 40px;
}


.footer--col img {
    width: 200px;
    margin-top: 20px;
}

.footer--col {
    flex-direction: column;
}

.footer--col a {
    display: block;
    margin-top: 40px;
    color: rgb(200, 231, 203);
    text-decoration: none;
    font-size: 28px;
}

.footer--col a:hover {
    color: rgb(100, 242, 255);
}

.footer__info p:nth-child(2) {
    color: rgb(155, 195, 158);
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-bottom: 10px;
}

.footer__info p:nth-child(3) {
    color: rgb(150, 150, 150);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    font-size: 16px;
}

.footer__info p:nth-child(4) {
    text-align: center;
    color: white;
    margin-top: 20px;
    padding-bottom: 10px;
}

@media screen and (max-width: 1600px) {
    .footer--col h3 {
        font-size: 24px;
    }

    .footer--col p {
        font-size: 20px;
        margin-top: 10px;
    }

    .footer--col a {
        margin-top: 10px;
        font-size: 20px;
    }

    .footer__head {
        gap: 60px;
    }

    .footer__info p:nth-child(1) {
        font-size: 20px;
    }
}

@media screen and (max-width: 1080px) {
    footer.footer .container {
        max-width: 95vw;
    }
}

.footer__info img {
    display: none;
}

@media screen and (max-width: 900px) {
    .footer--col:nth-child(2) {
        order: 1;
    }

    .footer__head {
        flex-direction: column-reverse;
        padding-top: 60px;
    }

    .footer__head img {
        display: none;
    }

    .footer__info img {
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.footer__info p:nth-child(2) {
    margin-top: 10px;
}

.footer__info p:nth-child(3) {
    order: 4;
}

.footer__info {
    display: flex;
    flex-direction: column;
}

.footer__info p:nth-child(4) {
    order: 3;
    margin-bottom: 0;
    margin-top: 5px;
}
}


.footer--col a {
    margin-top: 20px;
}

.footer--col a:nth-child(2) {
    margin-top: 40px;
}


@media screen and (max-width: 2300px) {
    footer.footer .container {
        max-width: 80vw;
    }

    .footer--col h3 {
        font-size: 24px;
    }

    .footer--col p {
        font-size: 20px;
    }

    .footer--col a {
        font-size: 20px;
    }

    .footer__info p:nth-child(2) {
    color: rgb(155, 195, 158);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-bottom: 10px;
}

.footer__info p:nth-child(3) {
    color: rgb(150, 150, 150);
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    font-size: 11px;
}

.footer__info p:nth-child(4) {
    font-size: 14px;
}
}

@media screen and (max-width: 1630px) {
    footer.footer .container {
        max-width: 85vw;
    }

    .footer__head {
        padding-top: 60px;
    }

    .footer--col h3 {
        font-size: 20px;
    }

    .footer--col p {
        font-size: 16px;
        margin-top: 20px;
    }

    .footer--col a:nth-child(2) {
        margin-top: 20px;
    }

    .footer--col a {
        font-size: 16px;
        margin-top: 15px;
    }

    .footer__info p:nth-child(2) {
        font-size: 16px;
    }

        .footer__info p:nth-child(3) {
        color: rgb(150, 150, 150);
        text-align: center;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        font-size: 10px;
    }

    .footer__info p:nth-child(4) {
        font-size: 12px;
    }
}

@media screen and (max-width: 1240px) {
    footer.footer .container {
        max-width: 95vw;
    }
}

@media screen and (max-width: 850px) {
    .footer__info p:nth-child(2) {
        margin-top: 0;
    }

    .footer--col h3 {
        font-size: 36px;
    }

    .footer--col a {
        font-size: 28px;
        margin-top: 25px;
    }
}

@media screen and (max-width: 600px) {
    .footer--col h3 {
        font-size: 20px;
    }

    .footer--col a {
        font-size: 16px;
        margin-top: 15px;
    }

    .footer__info img {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 500px) {
    footer.footer .container {
        max-width: 90vw;
    }
}

@media screen and (max-width: 440px) {
    .footer__info p:nth-child(2) {
        font-size: 12px;
    }

    .footer__info p:nth-child(4) {
        font-size: 12px;
    }

    .footer__info p:nth-child(3) {
        font-size: 12px;
    }
}

aside.kb-sidebar {
    top: 125px;
}

.sidebar-toggle.show#burger-op {
    display: none;
}

@media screen and (max-width: 1000px) {
    aside.kb-sidebar {
        top: 65px;
        z-index: 14;
    }

    .sidebar-toggle#burger-op {
        top: 15px;
        left: 10px;
    }

    .header__logo.kba {
        margin-left: 50px;
    }
}