:root{
    --main-blue: #58AFBA;
    --main-yellow: #F4C856;
    --hover-yellow: #f3d589;
    --dark-blue: #3E828D;
    --grey: #DFE7E8;
}

a{
    text-decoration: none;
}

b{
    font-family: Avenir Black;
}

nav a{
    font-family: Avenir;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: white;
}



.t-hamburger{
    font-family: Avenir;
    font-size: 16pt;
    text-decoration: none;
    font-weight: 800;
    color: var(--dark-blue);
}

.t-doe-h{
    font-size: 6.8vh;
    color:var(--dark-blue);
    font-family: Bemio;
}

.t-de-h{
    font-size: 5.3vh;
    color:var(--dark-blue);
    font-family: Bemio;
}

.t-test-h{
    color:var(--dark-blue);
    font-size: 9.2vh;
    font-family: Bemio;
}

.t-caption-h{
    color:var(--main-yellow);
    position: absolute;
    font-size: 15pt;
    margin-top: -30px;
    font-family: reklame-script;
    display: inline-block;
    transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);

}

.t-ddt-h{
    margin-top:20px;
    border-radius: 25px;
    background-color: var(--main-yellow);
    padding: 10px 20px 10px 20px;
}

.t-ddt-h a{
    font-family: Avenir;
    text-decoration: none;
    color:white;
    font-weight: 800;
    font-size: 16pt;
}

.t-ddt{
    border-radius: 25px;
    background-color: var(--main-yellow);
    padding: 5px 15px 5px 15px;
}

.t-ddt-b{
    border-radius: 25px;
    background-color: var(--dark-blue);
    padding: 5px 15px 5px 15px;
}

/* ---------------------
NAV
--------------------- */

.c-main--header-white{
    z-index:1000;
    width: 100%;
    position: fixed;
    top:-90px;
    background-color:white;
    transition: top 0.3s;
}

.c-main--header-white a{
    color:var(--dark-blue);
}

.c-main--header-white.t-ddt a{
    color:white;
}

.c-header-nav{
    z-index: 99;
    max-width: 83vw;
    margin: 0 auto;
    height: 90px;
}

.c-header-nav nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    height: 100%;
}

.c-main--header-white a{
    color:var(--dark-blue);
}

.c-main--header-white.t-ddt a{
    color:white;
}


/* ---------------------
HAMBURGER
--------------------- */

.c-color, .c-color::after, .c-color::before{
    background-color: var(--dark-blue) !important;
}

.c-burgermenu{
    padding: 10vh 10vw 10vh 10vw;
    height: 80vh;
    background-color:white;
    display: none;
    position: sticky;
    top:0;
    z-index: 1500;
}

.c-burgermenu__title{
    line-height: 38pt;
    margin-bottom: 90px !important;
}

.c-burgermenu div{
    margin-bottom: 26px;
}

.show-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hamburger {
    position: absolute;
    display: none;
    justify-content: flex-end;
    top:0px;
    z-index: 2000;   
    padding: 15px 15px;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}


.hamburger:hover {
    opacity: 0.7;
}
.hamburger.is-active:hover {
    opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--dark-blue);
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}

/*
* Spring
*/
.hamburger--spring .hamburger-inner {
    top: 2px;
}
.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

@media only screen and (max-width: 1200px) {
    .hamburger{
        display: none;
    }
}

@media only screen and (max-width: 750px) {

    .hamburger{
        position: sticky;
        margin-top: -80px;
        width: 100%;
        padding: 1.75rem;
        display: flex;
        justify-content: flex-end;
    }
}