@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: verela;
    src: url("../fonts/VarelaRound-Regular.ttf");
    font-display: swap;
}


* {
    box-sizing: border-box;
}


header {
    height: 82px;
    width: 100%;
    position: absolute;
    z-index: 5;
    box-sizing: border-box;
}

.contentScroll {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 60px;
    width: 1px;
    word-wrap: normal !important;
}

.contentScroll:focus {
    position: absolute;

    z-index: 20;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: var(--color_blue);
    color: white;
    clip: unset;
    clip-path: unset;
    overflow: unset;
    height: auto;
    width: auto;
}

/*LOGO*/

.header_center {
    margin: auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 11;
    display: flex;
    justify-content: space-between;
    height: 80px;
}

.logo {
    height: 40px;
    margin-top: 18px;
    margin-left: 20px;
    display: block;
    position: relative;
    z-index: 20;
}

.logo img {
    height: 40px;
}

/*LOGO*/


/*MOBILE NAVBAR*/


.mobile_navbar {
    height: 80px;
    line-height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

.menu_mobile {
    width: 100%;
    z-index: 2;
    position: absolute;
    text-align: right;
    top: -400px;
    transition: 0.6s;
    /*background-color: black;*/
    box-sizing: border-box;
    padding: 20px;
    right: 0;
}
.menu_mobile a{
    width: 100%;
    display: block;
    background-color: var(--color_text);
    color: var(--color_dark);
    height: 56px;
    line-height: 3.5;
    border-bottom: 1px solid var(--color_dark_blue);
}


.open_sub_menu svg {
    float: left;
    transition: all 0.1s ease;
    margin: 12px;
    height: 24px;
    width: 24px;
}

.open_sub_menu svg {
    fill: var(--color_blue);
}

.sub_menu svg {
    float: right;
    transition: all 0.1s ease;
    margin: 12px 0 12px 12px;
    height: 20px;
    width: 20px;
    transform: none !important;
}

.show_menu {
    top: 50px;
}

/*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 {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    height: 80px;
    width: 60px;
    cursor: pointer;
    display: block;
    background-color: transparent;
}

.burger {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--color_text);
    height: 3px;
    width: 20px;
    transition: .3s;
}

.burger:before,
.burger:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 20px;
    background-color: var(--color_text);
    transition: .3s;
    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: 0;
}

.icon.active .burger:after {
    transform: rotate(135deg);
    top: 0;
}

/*ICON_BURGER*/


/*NAV BAR*/

.navbar {
    z-index: 10;
    position: relative;
    box-sizing: border-box;
    height: 100px;
    display: none;
    padding: 30px;
    line-height: 2.5;
}

.navbar a {
    text-decoration: none;
    margin: 0 16px;
    transition: .3s;
}

.navbar a:hover {
    color: white;
    text-decoration: underline;
}

/*NAV BAR*/


@media (min-width: 768px) {
    header {
        height: 102px;
    }


    .mobile_navbar {
        display: none;
    }

    .navbar {
        display: block;
    }

    .icon, .menu_mobile {
        display: none;
    }

    .logo {
        height: 55px;
        margin-top: 20px;
        margin-left: 48px;
        display: block;
    }

    .logo img {
        height: 55px;
    }
    .header_center {
        height: 100px;
    }
}