@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
:root {
    --white: #ffffff;
    --green: #96F400;
    --brown : #2E0015;
    --purple : #DAC7F5;
    --light-green: #E5FCBF;
    --lightest : #EEE;

    --DenimRegular : 'DenimInkRegualar';
    --DenimLight : 'DenimInkLight';
}
@font-face {
    font-family: 'DenimInkRegualar';
    src: url('../fonts/DenimINK-Regular.woff2') format('woff2'),
         url('../fonts/DenimINK-Regular.woff') format('woff');
}
@font-face {
    font-family: 'DenimInkRegualarItalic';
    src: url('../fonts/DenimINK-RegularItalic.woff2') format('woff2'),
         url('../fonts/DenimINK-RegularItalic.woff') format('woff');
}
@font-face {
    font-family: 'DenimInkLight';
    src: url('../fonts/DenimINK-Light.woff2') format('woff2'),
         url('../fonts/DenimINK-Light.woff') format('woff');
}
@font-face {
    font-family: 'DenimInkLightItalic';
    src: url('../fonts/DenimINK-LightItalic.woff2') format('woff2'),
         url('../fonts/DenimINK-LightItalic.woff') format('woff');
}
@font-face {
    font-family: 'DenimInkBold';
    src: url('../fonts/DenimINK-Bold.woff2') format('woff2'),
         url('../fonts/DenimINK-Bold.woff') format('woff');
}
@font-face {
    font-family: 'DenimInkBoldItalic';
    src: url('../fonts/DenimINK-BoldItalic.woff2') format('woff2'),
         url('../fonts/DenimINK-BoldItalic.woff') format('woff');
}
/* ############ GLOBAL ############ */
html {
    overflow-y: scroll;
    scroll-behavior: auto;
    scroll-padding-top: 10.4rem;
}
html, body {
    font: normal 10px/1.5 arial,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    cursor: default;
    width:100%;
    height:auto;
    margin:0px;
    padding:0px;
    line-height:1.4;
    color: var(--brown);
    letter-spacing: 0em;
    font-family: "Space Grotesk", sans-serif;
    scroll-behavior: auto !important;
}
* {
    box-sizing: border-box;
}

.post,
.page {
	margin: 0;
}

.page-content, .entry-content, .entry-summary {
    margin: 0;
}

.desktop{
    display:block !important;
}
.mobile{
    display:none !important;
}

p{
    font-size:1.7rem;
    margin-bottom: 2.7rem;
    line-height: 1.3;
    color: var(--brown);
}
ul,
ol{
    padding-left: 0rem;
    margin-bottom: 2.7rem;
}
ul li,
ol li{
    font-size: 1.8rem;
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    -webkit-margin-before: 0.0em;
    -webkit-margin-after: 0.0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    line-height: 1;
    margin-top:0px;
    margin-bottom: 3rem;
    color: var(--brown);
    font-family: var(--DenimLight);
}
:is(h1, h2, h3, h4, h5, h6) strong{
    font-family: var(--DenimRegular);
    font-weight: normal;
}
h1{
    font-size: 6.1rem;
}
h2{
    font-size: 4.9rem;
}
h3{
    font-size: 3.9rem;
}
h4{
    font-size: 3.1rem;
}
h5{
    font-size: 2.5rem;
    line-height: 1.2;
}
h6{
    font-size: 2rem;
}
a,
a:visited {
    color: inherit;
    text-decoration: none;
}
a:hover {
    opacity: 1;
    text-decoration: none;
    color: inherit;
}
a:focus{
    outline: none;
}

b, strong {
    font-weight: 700;
}

img {
    width: auto;
    height:auto;
    max-width: 100%;
    max-height: 100%;
}
.container {
    width:100%;
    margin: 0 auto;
    max-width: 1520px;
    padding-left: 6rem;
    padding-right: 6rem;
}
.container-fluid{
    width:100%;
    max-width:100%;
    margin: 0 auto;
    padding-left:6rem;
    padding-right:6rem;
}
.row {
    margin-right: -1.2rem;
    margin-left: -1.2rem;
}
.row > *{
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
.row.reverse-order{
    flex-direction: row-reverse !important;
}

button{
    font-size: 2rem;
    min-height: 5.4rem;
    display: flex;
    align-items: center;
    position: relative;
    background-color: transparent;
    border: none; 
    color: var(--brown);
    padding:0;
}
button:hover::before{
    margin-right: 0rem;
    margin-left: 1.2rem;
    width: 2.1rem;
    height: 2.1rem;
}
button::before{
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: url(../img/button-arrow.svg) no-repeat center;
    background-size: contain;
    transition: all .5s;
    margin-right: 1.5rem;
}
button:disabled::before {
    content: none; /* Removes the pseudo-element */
}
.bg-brown{
    background-color: var(--brown);
}
.bg-green{
    background-color: var(--green);
}
.bg-purple{
    background-color: var(--purple);
}
.bg-light-green{
    background-color: var(--light-green);
}
.before-bg-brown::before{
    background-color: var(--brown) !important;
}
.before-bg-green::before{
    background-color: var(--green) !important;
}
.before-bg-purple::before{
    background-color: var(--purple) !important;
}
.before-bg-light-green::before{
    background-color: var(--light-green) !important;
}


.underlineGrow{
    position: relative;
}
.underlineGrow::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--brown);
    animation: underlineGrow 1.5s linear forwards;
}

/* TABLE */
table{
    font-size: 1.3rem;
}
table li{
    font-size: 1.3rem;
}
table td, table th {
  border: 1px solid var(--brown);
  padding: 2.2rem 1.9rem;
  color: black;
  vertical-align: top;
}
table tr:first-child{
    background-color: var(--brown);
}
table tr:first-child td{
    padding: 1.2rem 1.9rem;
    color: var(--white);
}

/* HEADER */
.site-header{
    position: fixed;
    width: 100%;
    z-index: 99;
    background: var(--white);
}
.site-header .inner{
    padding-top: 3.4rem;
    padding-bottom: 3.5rem;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.scroll .site-header .inner{
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
    border: none;
}
.scroll .site-header .inner::after{
    content: none;
}
/*.scroll .site-header .inner:hover{
    padding-top: 3.9rem;
    padding-bottom: 4rem;
}*/
.site-header.site-header-nav-close .inner{
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.site-header .site-branding{
    width: 31.5rem;
    transition: all 0.3s;
}
.scroll .site-header .site-branding{
    width: 19rem;
}
.site-header .menu-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .col-branding {
    width: auto;
    position: relative;
    transition: 0.2s;
    animation: fade-in-top 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.site-header a.custom-logo-link img.custom-logo{
    width: 100%;
    transition: 0.2s;
}
.site-header .col-main-menu {
    width: auto;
    animation: fade-in-top 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.burger {
    display: none;
}
.site-header .main-navigation{
    width: auto;
    display: flex;
    align-items: center;
}
.site-header ul#main-menu{
    justify-content: flex-end;
    align-items: center;
}
.site-header ul#main-menu>li{
    margin-right: 3.5rem;
}
.site-header ul#main-menu>li.current-menu-item a::before{
    transform: translate3d(0, 2px, 0) scale3d(1, 1.5, 1);
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}

.site-header ul#main-menu>li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    transform-origin: 50% 100%;
    transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
    clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}

.site-header ul#main-menu>li:hover a::before {
    transform: translate3d(0, 2px, 0) scale3d(1, 1.5, 1);
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}

.site-header ul#main-menu>li a {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

.site-header ul#main-menu>li:hover a {
    transform: translate3d(0, -2px, 0);
}
#main-menu li {
    position:relative;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}
#main-menu li a{
    font-size: 1.7rem;
}
#main-menu>li .sub-menu{
    display: flex;
    flex-direction: column;
    box-shadow: none;
}
#main-menu>li>.sub-menu>li:hover>.sub-menu{
    left: 100%;
}
@media only screen and (min-width: 992px){
    #main-menu>li:hover>.sub-menu{
        left: 0;
    }
}
#main-menu>li .sub-menu li{
    position: unset;
    padding-top: 1.6rem;
}
#main-menu>li .sub-menu li a{
    font-size: 2rem;
    min-width: max-content;
}
#main-menu>li>.sub-menu {
    padding-left: 3.4rem;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}
#main-menu>li>.sub-menu li>.sub-menu{
    padding-left: 1rem;   
    padding-right: 3.9rem;    
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}
#contact-menu li a{
    font-size: 1.7rem;
    background-color: var(--light-green);
    padding: 1.2rem 2.7rem;
    border-radius: 20px 0px;
    height: 5.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INTERNAL NAV */
.internal-nav .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    font-size: 1.7rem;
    color: #666;
    column-gap: 6.4rem;
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    opacity: 1;
    transition: opacity 0.4s;
}
.internal-nav .menu-item:hover{
    opacity: 0.6;
}
@media only screen and (max-width: 991px){
    .internal-nav {
        max-width: 100%;
        overflow-x: scroll;
    }
    .internal-nav::-webkit-scrollbar {
        display: none;
    }
    .internal-nav {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .internal-nav .inner{
        justify-content: flex-start;
    }
    .internal-nav .menu-item{
        min-width: fit-content;
    }
}



/* FOOTER */
.site-footer .inner{
    background-color: var(--green);
    padding: 4rem;
    border-top-right-radius: 8rem;
    margin: 2rem 0;
}
.site-footer .top{
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--brown);
}
.site-footer .logo-area{
    padding-right:5rem;
}
.site-footer .footer-logo{
    width:100%;
    max-width: 29.6rem;
}
.site-footer .footer-copy{
    margin-top: 2rem;
    font-size: 1rem;
    max-width: 44.7rem;
}
.site-footer ul#footer-menu{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap:3rem;
}
.site-footer #footer-menu li {
  width: calc(50% - 1.5rem);
  box-sizing: border-box;
  padding: 0 0 0.8rem 0;
  font-size: 1.5rem;
}
.site-footer .footer-contact{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem;
}
.site-footer .bottom{
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    column-gap: 4rem;
    row-gap:    2rem;
    flex-wrap:wrap;
}
.site-footer .copyrights{
    font-size: 1.3rem;
    text-transform: uppercase;
}
.site-footer #legal-menu{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 4rem;
}
.site-footer #legal-menu li{
    font-size: 1.3rem;
    text-transform: uppercase;
    text-decoration: underline;
}
/* MAIN CONTENT */
.site-main{
    padding-top: 12rem;
}

/* Edit button */

.edit-link{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--white);
    color: var(--brown);
    width: 8rem;
    height: 3rem;
    text-transform: uppercase;
    font-size: 1.8rem;
    letter-spacing: 1px;
    border: 2px solid var(--brown);
    z-index: 999;
}
.edit-link a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.edit-link:hover{
    background-color: var(--brown);
    color: var(--white);
}

/* PAGE */
.page .entry-header{
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    min-height: 24rem;
    position: relative;
}
.page .entry-header h1{
    margin-bottom: 0;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.page .entry-header .subtitle{
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
    animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.home .entry-header h1{
    font-size: 9rem;
    animation-delay: 0.3s;
}
.page .entry-header h1 span{
    background: linear-gradient(180deg, var(--brown) 0%, var(--brown) 50%, white 50%, white 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: spanBg 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation-delay: 0.5s;
    background-size: 400% 400%;
    background-position: 0% 200%;
}

@keyframes spanBg {
    to {
        background-position: 0% 150%;
    }
}
/* Post */
.single .entry-header{
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid var(--brown);
    min-height: 24rem;
}
.single .entry-header h1{
    margin-bottom: 0;
}
.single .entry-header .breadcrumbs{
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
    display: flex;
}
.single .entry-header .breadcrumbs .cat{
    background-image: url(../img/breadcrumb-arrow.svg);
    background-repeat: no-repeat;
    background-size: .8rem 1.21rem;
    background-position: center left;
    padding-left: 1.3rem;
    margin-left: 0.8rem;
}
.single .entry-content{
    margin: 5.5rem 0 12rem 0;
}
.single .entry-content p{
    line-height: 1.5;
}
.single .entry-content a{
    text-decoration:underline;
    font-weight: 700;
}
.single .entry-content a:hover{
    opacity:0.7;
}
.single .entry-content .the-content{
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.single .entry-content .the-content > *:first-child{
    margin-top:0;
}
.single .entry-content .the-content h2,
.single .entry-content .the-content h3,
.single .entry-content .the-content h4,
.single .entry-content .the-content h5,
.single .entry-content .the-content h6{
    margin-top:4rem;
}
.single .entry-content .the-content > *:last-child{
    margin-bottom:0;
}
.single .entry-content .the-content > ul li{
    margin-bottom: 1rem;
}
.entry-content .hero-image{
    overflow: hidden;
    border-radius: 0px 80px;
    width: 100%;
    position: relative;
    /* padding-bottom: 65%; */
    height: 38.6rem;
    margin-bottom: 7.8rem;
}
.entry-content .hero-image .inner{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0px 80px;
    overflow: hidden;
    height: 100%;
    animation: height-in-ver-bottom 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    padding-bottom: 0;
    background-color: var(--light-green);
}
.entry-content .hero-image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.entry-content .author-block{
    position: sticky;
    top: 12rem;
    padding: 3rem 0 0 0;
    background-color: var(--white);
    margin-top: -3rem;
}
.entry-content .author-block .inner{
    /* background-color: var(--purple); */
    border-radius: 80px 0px;
    width: 100%;
    height: 38.6rem;
    padding: 3rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 5;
}
.entry-content .author-block::before{
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: calc(100% - 3rem);
    border-radius: 80px 0px;
    background: linear-gradient(to top, #DAC7F5 0%, #e4d6f8 0%);
    animation: scale-in-ver-bottom 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.entry-content .green-block{
    background-color: var(--green);
    border-radius: 80px 0px;
    width: 100%;
    height: 23.5rem;
    margin-top: 2rem;
    animation: scale-in-ver-bottom 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    position: relative;
    z-index: -1;
}
.entry-content .author-block .author .profile-picture{
    width: 5.7rem;
    height: 5.7rem;
    position: relative;
    border-radius: 0px 20px;
    overflow: hidden;
    margin-bottom: 1.6rem;
}
.entry-content .author-block .author .profile-picture img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.entry-content .author-block .author .name{
    font-size: 1.7rem;
}
.entry-content .author-block .post-info{
    display: flex;
    font-size: 1.3rem;
    align-items: flex-end;
    margin-top: 0.8rem;
    margin-bottom: 2.5rem;
}
.entry-content .author-block .post-info .date::after{
    content: '•';
    margin: 0 0.8rem;
    font-size: 1.8rem;
    line-height: 1;
}
.entry-content .author-block .sharing-block{
    padding-top: 2.5rem;
    border-top: 1px solid var(--brown);
    width: 100%;
}
.entry-content .author-block .sharing-block .icons{
    display: flex;
    column-gap: 0.8rem;
}
.entry-content .author-block .sharing-block .icons .social{
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 254, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
}
.post .the-content img{
    width: 100%;
    border-radius: 40px 0px;
    margin: 6rem 0;
}
.post .the-content figure.wp-caption img{
    margin-bottom: 0;
}
.post .the-content figure.wp-caption{
    margin-bottom: 6rem;
}
.post .the-content .wp-caption-text {
    text-align: left;
    font-size: 1.3rem;
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
}
.post .the-content .wp-caption-text::before{
    content: '';
    width: 5px;
    height: 100%;
    border-radius: 0px 10px;
    background-color: var(--green);
    position: absolute;
    left: 0;
}
.post .the-content blockquote{
    position: relative;
    padding-left: 2.5rem;
    margin: 3.2rem 0;
}
.post .the-content blockquote p{
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
}
.post .the-content blockquote::before{
    content: '';
    width: 9px;
    height: 100%;
    border-radius: 0px 10px;
    background-color: var(--purple);
    position: absolute;
    left: 0;
}
.post-teaser.featured {
    margin-bottom: 10rem;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.post-teaser .image{
    width: 100%;
    padding-bottom: 55%;
    border-radius: 40px 0px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}
.post-teaser.featured .image{
    padding-bottom: 80%;
}
.post-teaser .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.news-teasers .col-md-6 a{
    height:100%;
    display:block;
    position:relative;
    padding-bottom:3rem;
}
.post-teaser .info{
    position:absolute;
    bottom:0;
}
.post-teaser.featured .info{
    position:relative;
}
.post-teaser .title{
    padding: 0 1.9rem;
    margin-bottom: 3.9rem;
    font-weight: 400;
}
.post-teaser .info{
    padding: 0 1.9rem;
    display: flex;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.7rem;
    align-items: center;
    column-gap: 1.5rem;
    justify-content: space-between;
    width: 100%;
}
.post-teaser .info .lhs{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.5rem;
}
.post-teaser .info .lhs .reading-time{
    line-height:1.1
}
.post-teaser .info .rhs{
    line-height:1.1;
    text-align: right;
}
.post-teaser .info .category{
    border: 1px solid var(--green);
    border-radius: 12px 0px;
    padding: 5px 7px;
}
.post-teaser.featured .excerpt{
    font-size: 2rem;
    padding: 0 1.9rem;
    margin: 3.4rem 0;
}

.news-carousel{
    margin-top: 12rem;
    margin-bottom: 12rem;
    padding-top: 3rem;
    border-top: 1px solid var(--brown);
}
.news-carousel .carousel-title{
    font-size: 1.7rem;
    margin-bottom: 7rem;
    font-weight: 400;
}
.news-carousel .news-swiper .swiper-slide{
    height:auto;
}
.news-carousel .news-swiper .swiper-slide a{
    height: 100%;
    display: block;
    position: relative;
    padding-bottom: 3rem;
}
.news-carousel .news-swiper .swiper-slide .post-teaser .info {
    position: absolute;
    bottom: 0;
}
.swiper-pagination {
    position: relative;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #DAC7F5;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #411737;
}
.single-resource .news-carousel .news-swiper .swiper-wrapper .swiper-slide a .resource-teaser{
    height:100%;
}


/* News & Events */
.news-teasers{
    margin-top: 5.5rem;
    margin-bottom: 12rem;
}
.news-teasers .fade-in-on-page-load{
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.news-teasers>.row{
    row-gap: 8rem;
}
.pagination{
    justify-content: center;
}
.pagination .inner{
    display: flex;
    font-size: 2rem;
    margin: 5rem 0;
    column-gap: 2rem;
    font-weight: 400;
}
.news-filters{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.news-filters select{
    font-size: 1.7rem;
    padding: 1.5rem 2rem;
    border-radius: 20px 0px;
    background-color: var(--lightest);
    border: none;
    color: var(--brown);
    outline: none;
}

/* Resources */
.resources-teasers{
    margin-top: 9rem;
    margin-bottom: 12rem;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.resources-teasers .row > * > a{
    height:100%;
}
.resources-teasers .row > * > a .resource-teaser {
    height: 100%;
}
.resources-teasers>.row{
    row-gap: 8rem;
}
.resource-teaser{
    padding: 5rem 4rem;
    border-radius: 0px 40px;
    border: 1px solid var(--brown);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
/*    min-height: 47rem;*/
    padding-bottom: 13rem;
    position:relative;
}
.resource-teaser .title{
    margin-bottom: 3rem;
    font-weight: 400;
    font-size: 3.1rem;
}
.resource-teaser .excerpt{
    font-size: 1.7rem;
    margin-bottom: 2rem;
}
.resource-teaser .bottom{
    padding-top: 3.1rem;
    border-top: 1px solid var(--brown);
    background: url(../img/arrow-next.svg) no-repeat bottom 0.5rem right;
    background-size: 2.5rem;
    padding-right: 3rem;
    position: absolute;
    bottom: 3.25rem;
    width: calc(100% - 8rem);
}
.resource-teaser .info{
    display: flex;
    font-weight: 400;
    font-size: 1.7rem;
    align-items: center;
    column-gap: 1.7rem;
}
.resource-teaser .info .category{
    background-color: var(--green);
    border-radius: 12px 0px;
    padding: 5px 7px;
    column-gap: 1.7rem;
}
.resource-teaser .info .reading-time{
    text-transform: uppercase;
    font-size: 1.4rem;
}
.resource-teaser.featured .excerpt{
    font-size: 2rem;
    padding: 0 1.9rem;
    margin: 3.4rem 0;
}
.disclaimer{
    margin: 12rem 0;
    font-size: 1.3rem;
    line-height: 1.2;
}

/* CONTACT PAGE */
.page-template-contact-page .entry-title{
    font-size: 10.1rem;
    padding-bottom: 4rem;
    margin-bottom: 4rem !important;
    font-weight: 400;
}
.page-template-contact-page .entry-header{
    padding-top: 5.5rem;
    border-bottom: none;
    padding-bottom: 12rem;
}
.page-template-contact-page .contact-img{
    position: relative;
    padding-bottom: 80%;
}
.page-template-contact-page .contact-img .inner{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0px 80px;
    overflow: hidden;
    height: 100%;
    animation: height-in-ver-bottom 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    padding-bottom: 0;
}
.page-template-contact-page .contact-img .inner img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.page-template-contact-page .the-content{
    padding-bottom: 5.5rem;
    border-bottom: 1px solid var(--brown);
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.page-template-contact-page .the-content p{
    margin-bottom:0;
}
.page-template-contact-page article .email{
    padding-top: 2.3rem;
    padding-bottom: 5.5rem;
    border-bottom: 1px solid var(--brown);
    font-size: 2rem;
    font-weight: 400;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    margin-right: 0rem;
    margin-left: 0rem;
}
.page-template-contact-page article .email a{
    text-decoration: underline;
}
.page-template-contact-page article .address{
    padding-top: 2.3rem;
    padding-bottom: 5.5rem;
    font-size: 2rem;
    font-weight: 400;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    margin-right: 0rem;
    margin-left: 0rem;
}
.page-template-contact-page article .address button{
    margin-top: 1.8rem;
    min-height: auto;
}
.page-template-contact-page article .email > *,
.page-template-contact-page article .address > *{
    padding-left:0;
    padding-right:0;
}
.page-template-contact-page article .contact-us-disclaimer{
    border-top: 1px solid var(--brown);
    padding-top: 2.3rem;
    padding-bottom: 5.5rem;
    font-size: 2rem;
    font-weight: 400;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    font-size: 1.3rem;
    line-height: 1.2;
}
/* FLEXIBLE CONTENT */
/* Testimonials carousel */
.testimonials-carousel{
    margin: 12rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--brown);
}
.testimonials-carousel .swiper{
    width: calc(100% + 6rem);
    padding-top:1rem;
}
@media (min-width: 1520px) {
    .testimonials-carousel .swiper{
        width: calc(100% + ((100vw - 1416px) / 2));
    }
}
.testimonials-carousel .top-section{
    display: flex;
    align-content: space-between;
    margin-bottom: 6.4rem;
}
.testimonials-carousel .top-section h6{
    font-size: 1.3rem;
    margin-bottom: 0;
}
.testimonials-carousel .swiper-navigation {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    width: 7.4rem;
    column-gap: 2.4rem;
    margin-top: 0;
    margin-left: auto;
}
.testimonials-carousel .swiper-navigation > div {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 2.5rem 2.5rem;
    cursor: pointer;
}
.testimonials-carousel .swiper-navigation .swiper-button-disabled{
    opacity: 0.3;
}
.testimonials-carousel .my-swiper-button-next{
    background-image: url(../img/arrow-next.svg);
}
.testimonials-carousel .my-swiper-button-prev{
    background-image: url(../img/arrow-prev.svg);
}
.testimonials-carousel .swiper-slide{
    filter: blur(7px);
    transition: filter 0.3s;
}
.testimonials-carousel .swiper-slide-active{
    filter: blur(0px);
}
.testimonials-carousel .quote{
    padding-top: 4.7rem;
    background: url(../img/quotes.svg) no-repeat top left;
    background-size: 7.5rem 2.8rem;
}
.testimonials-carousel .quote p{
    font-size: 4.9rem;
    font-style: italic;
    line-height: 1.2;
    font-family: var(--DenimLight);
}
.testimonials-carousel .quote strong{
    font-family: var(--DenimRegular);
    font-weight: normal;
}
.testimonials-carousel .author{
    display: flex;
    column-gap: 1.8rem;
}
.testimonials-carousel .author .profile-picture{
    background-color: var(--light-green);
    width: 8.7rem;
    height: 8.5rem;
    border-radius: 0px 10px;
    position: relative;
    overflow: hidden;
}
.testimonials-carousel .author .profile-picture img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.testimonials-carousel .author .name{
    font-size: 2rem;
    font-weight: 400;
}
.testimonials-carousel .author .role{
    font-size: 1.6rem;
    font-weight: 300;    
}

/* IMAGE & TEXT SECTION */
.img-text-section{
    margin: 12rem 0 12rem 0;
}
/*body.page-id-15 .img-text-section{
    margin: 10rem 0 12rem 0;
}*/
.img-text-section .image img{
    width: 100%;
}
.img-text-section .section-content{
    padding-left: 7.2rem;
}
.img-text-section .row.reverse-order .section-content{
    padding-right: 7.2rem;
}
.img-text-section .subtitle{
    font-size: 1.7rem;
    margin-bottom: 1.9rem;
}
.img-text-section h2{
    font-size: 6.1rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-top: 1px solid var(--brown);
    border-bottom: 1px solid var(--brown);
}
.img-text-section .copy > *:last-child{
    margin-bottom:0;
}
.img-text-section a button{
    padding: 0;
}

/* BANNER */
.banner-section{
    width: 100%;
    background-color: var(--light-green);
    padding: 7rem 4rem 4.7rem 4rem;
    border-radius: 0px 80px;
    margin: 12rem 0 12rem 0;
}
.banner-section .inner{
    max-width: 105rem;
}
.banner-section .inner .subtitle{
    max-width: 88.7rem;
    width: 100%;
    font-size: 1.7rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--brown);
}
.banner-section .inner .copy{
    margin-bottom: 4.2rem;
}
.banner-section .inner .copy p{
    font-size: 3.9rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family:var(--DenimLight);
}
.banner-section .inner .copy p strong{
    font-weight:normal;
    font-family:var(--DenimRegular);
}

.page-id-15 .banner-section .subtitle{
    font-size: 6.1rem;
}

/* Blocks section */
/*.pin-spacer{
    margin:0 !important;
}*/
.blocks-section{
    margin: 12rem 0;
}
.blocks-section .intro .subtitle{
    font-size: 1.7rem;
    padding-bottom: 1.9rem;
    border-bottom: 1px solid var(--brown);
    margin-bottom: 1.9rem;
}
.blocks-section .intro button{
    padding: 0;
}
.blocks-section.l-full .intro{
    margin-bottom: 9rem;
}
.blocks-section.l-full .intro.style-banner{
    background-color: var(--light-green);
    padding: 7rem 4rem 4.7rem 4rem;
    border-radius: 0px 80px;
}
.blocks-section.l-full .intro.style-banner .copy{
    max-width: 105rem;
}
.blocks-section.l-full .intro h2{
    font-size: 6.1rem;
}
.blocks-section.l-full .intro.style-banner h2{
    max-width: 88.7rem;
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--brown);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    line-height: 1.4;
}
.blocks-section.l-full .intro.style-banner h3{
    line-height: 1.2;
}
.blocks-section.l-full .intro p{
    max-width: 44.9rem;
}
.blocks-section.l-50-50 .intro{
    padding-right: 4.3rem;
}
.blocks-section.l-50-50 .intro h2{
    font-size: 6.1rem;
    padding-bottom: 1.9rem;
    border-bottom: 1px solid var(--brown);
}
.blocks-section.l-50-50 .intro p{
    max-width: 44.9rem;
}
.blocks-section.l-50-50 .blocks{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}
.blocks-section .block .bg-brown :is(h2, h3, h4, h5, h6, p, *){
    color: var(--white);
    border-color: var(--white) !important;
}
.blocks-section.l-full .block .inner{
    padding: 4rem;
    border-radius: 80px 0px;
    height: 100%;
}
.blocks-section.l-50-50 .block{
    /* height: fit-content;
    margin-bottom: 2rem; */
    --spacing: 11rem;
    position: absolute;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
    top: 0;
    box-sizing: border-box;
    z-index: 1;
}
.blocks-section.l-50-50 .block:nth-child(2) {
    top: calc(var(--spacing));
    z-index: 2;
}
.blocks-section.l-50-50 .block:nth-child(3) {
    top: calc(var(--spacing) * 2);
    z-index: 3;
}
.blocks-section.l-50-50 .block:nth-child(4) {
    top: calc(var(--spacing) * 3);
    z-index: 4;
}

.blocks-section.l-50-50.no-desktop-animation .block{
    position: relative;
    top: 0;
    margin-bottom: -4rem;
}
.blocks-section.l-50-50 .block .inner{
    padding: 3rem 3rem 5rem 3rem;
    border-radius: 0px 40px;
    width: 100%;
}
.blocks-section.l-50-50 .block.shrink {
    margin-bottom: -5rem;
    height: 15rem;
    overflow: hidden;
}
.blocks-section.l-full .block .subtitle{
    font-size: 6.4rem;
    font-weight: 300;
    margin-bottom: 1.6rem;
    height: 6.7rem;
}
.blocks-section.l-full .block .inner a button{
    font-weight:700;
}
.blocks-section.l-50-50 .block .subtitle{
    font-size: 4.9rem;
    font-weight: 300;
    margin-bottom: 3.3rem;
}
.blocks-section.l-full .block .copy{
    padding-top: 6.7rem;
    border-top: 1px solid var(--brown);
}
.blocks-section.l-full .block .copy h4{
    font-size:3.1rem;
}
.blocks-section.l-50-50 .block .copy{
    padding-top: 3.3rem;
    border-top: 1px solid var(--brown);
}
.blocks-section.l-50-50 .block .copy p{
    font-size: 2rem;
}
.blocks-section.l-50-50 .block .copy h4{
    font-size:3.1rem;
}
.blocks-section.l-full .block button{
    font-size: 1.7rem;
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: left;
    min-height: auto;
    width: 100%;
    padding: 0;
    color: var(--brown);
}
.blocks-section.l-50-50 .block button{
    font-size: 2rem;
    padding: 0;
}
.blocks-section .block button::before{
    background-image: url(../img/button-arrow-brown.svg);
}
.blocks-section .block .bg-brown button{
    color: var(--white);
}
.blocks-section .block .bg-brown button::before{
    background-image: url(../img/button-arrow-white.svg);
}

/* Text section */
.text-section{
    margin: 12rem 0;
}
.text-section h2{
    font-size:6.1rem;
}
.text-section .subtitle{
    font-size: 1.7rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--brown);
    margin-bottom: 1.9rem;
}
body.page-id-15 .text-section .copy h4{
    margin-bottom:0;
}

/* Intro section */
.intro-section{
    margin-top: 5.5rem;
    margin-bottom: 12rem;
}
.intro-section .bg-brown p,
.intro-section .bg-brown button,
.intro-section .bg-brown{
    color: var(--white);
}
.intro-section .col-image{
    position: relative;
    padding-bottom: 50%;
    /* height: 0; */
}
.intro-section .image{
    position: absolute;
    left: 1.2rem;
    bottom: 0;
    width: calc(100% - 2.4rem);
    border-radius: 0px 80px;
    overflow: hidden;
    height: 100%;
    animation: height-in-ver-bottom 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    padding-bottom:0;
}
.intro-section .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.intro-section .col-copy{
    display: flex;
    flex-direction: column;
    row-gap: 1.8rem;
}
.intro-section .copy{
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background-color: transparent;
    position: relative;
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    border-radius: 80px 0px;
}
.intro-section .copy::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--green);
    border-radius: 80px 0px;
    animation: scale-in-ver-bottom 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: -1;
}
.intro-section .copy::after {
    content: "";
    position: absolute;    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: inherit;
    z-index: -1;
    border-radius: 80px 0px;
}
.intro-section .copy p{
    font-size: 2.5rem;
}
.intro-section .copy p:last-child{
    margin-bottom: 0;
}
.intro-section .intro-cta{
    border-radius: 80px 0px;
    padding: 4rem;
}
.intro-section .intro-cta button::before{
    background-image: url(../img/button-arrow-brown.svg);
}
.intro-section .intro-cta.bg-brown button::before{
    background-image: url(../img/button-arrow-white.svg);
}
.homepage-intro{
    min-height: fit-content;
}
.homepage-intro .top-copy{
    font-size: 2.4rem;
    padding: 0 4rem;
    margin-bottom: 1.8rem;
    animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.homepage-intro .mobile-top-copy {
    padding: 0 0rem;
    margin-bottom: 3rem;
    animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    font-size: 2.0rem;
}
.homepage-intro .copy{
    justify-content: space-between;
    min-height: calc(100% - 1.8rem);
}
.homepage-intro .copy button::before{
    background-image: url(../img/button-arrow-brown.svg);
}
.homepage-intro .scroll-to{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 3.1rem;
    margin-bottom: 9rem;
    width: 100%;
    padding-top: 1.2rem;
    border-top: 1px solid var(--brown);
    cursor: pointer;
}
.homepage-intro .scroll-to::after{
    content: '';
    background: url(../img/arrow-down.svg) no-repeat center;
    width: 2.2rem;
    height: 2.2rem;
    background-size: contain;
}
.homepage-intro .subtitle{
    font-size: 1.7rem;
    padding-bottom: 1.9rem;
    border-bottom: 1px solid var(--brown);
    margin-bottom: 1.9rem;
}
.homepage-intro .title h2{
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--brown);
    margin-bottom: 3.5rem;
    line-height: 1.2;
}
.homepage-intro .title h2 a{
    text-decoration: underline;
    text-underline-offset: -12px;
    text-decoration-thickness: 2px;
}

/* external resources section */
.external-resources-section{
    margin: 12rem 0;
}
.external-resources-section .subtitle{
    font-size: 1.7rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--brown);
    margin-bottom: 2rem;
}
.external-resources-section h2{
    max-width: 92.6rem;
    font-size: 4.9rem;
}
.external-resources-section .row-rigor{
    row-gap: 3.2rem;
    margin-top: 9rem;
}
.external-resources-section .copy{
    height: 100%;
    background-color: var(--purple);
    padding: 5rem 3.3rem;
    border-radius: 80px 0px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.external-resources-section .copy .bottom-copy{
    padding-top: 2rem;
    font-size: 1.7rem;
}
.external-resources-section .copy p{
    font-size: 2rem;
}
.external-resources-section .copy p:last-child{
    margin-bottom: 0;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--brown);
}
.external-resources-section .resource{
    padding: 4.7rem 4rem;
    border-radius: 0px 52px;
    background-color: var(--lightest);
    font-size: 1.7rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 2.3rem;
}
.external-resources-section .resource .inner{
    text-decoration: underline;
}
.external-resources-section .resources>div{
    margin-top: 3.2rem;
}
.external-resources-section .resources>div:nth-child(1),
.external-resources-section .resources>div:nth-child(2){
    margin-top: 0;
}
.external-resources-section .resources>div{
    -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  max-height: 100rem;
  overflow: hidden;
}
.external-resources-section .resources .hide{
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -o-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.external-resources-section .resource .bottom{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.external-resources-section .resource .bottom .date{
    text-decoration: none;
}
.external-resources-section .cta{
    width: 100%;
    padding: 1.5rem 2rem;
    border-radius: 20px 0px;
    border: 1px solid var(--brown);
    font-size: 1.6rem;
    text-align: center;
    font-weight: 300;
    margin-top: 6.2rem;
    cursor: pointer; 
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    justify-content: center;
}
.external-resources-section .cta::after{
    content: '';
    background: url(../img/chevron-down.svg) no-repeat center;
    background-size: contain;
    width: 1.3rem;
    height: 0.6rem;
    transform: rotate(0);
    transition: all 0.3s;
}
.external-resources-section .cta[data-status="more"]::after{
    transform: rotate(180deg);
}
/* LEGAL PAGE TEMPLATE */
.page-template-legal-page article{
    margin-top: 3.7rem;
    margin-bottom: 9rem;
}
.page-template-legal-page .entry-header{
    width: 100%;
    background-color: var(--purple);
    border-radius: 0px 40px;
    padding: 8.2rem 5.2rem;
    border: none;
    position: sticky;
    top: 15rem;
}
.page-template-legal-page .entry-header .date{
    font-size: 1.7rem;
    padding-bottom: 2.2rem;
    margin-bottom: 2.2rem;
    font-weight: 400;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.page-template-legal-page .entry-header .date span{
    font-size: 1.6rem;
    font-weight: 300;
}

/* TEAM SECTION */
.page-id-139 .entry-header h1{
    font-size: 10.1rem;
}
.member-pop-up{
    width:100%;
    margin: 0 auto;
    max-width: 926px;
    position: relative;
    display: none;
    max-height: 100vh;
    overflow-y: scroll;
    border-radius: 0px 52px;
    padding: 4.7rem 0;
}
.fancybox__container button::before{
    background-image: none;
}
.member-pop-up .inner{
    max-width: 69.2rem;
    margin: 6.7rem auto;
}
.member-pop-up .image{
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    border-radius: 0px 40px;
    overflow: hidden;
}
.member-pop-up .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.member-pop-up .bio{
    margin-top: 2.8rem;
}
.member-pop-up .bio > *:last-child{
    margin-bottom: 0rem;
}
.member-pop-up .title{
    padding-top: 1.4rem;
    border-top: 1px solid var(--brown);
    color: var(--brown);
    margin-bottom: 1.4rem;
}
.member-pop-up .role{
    font-size: 1.6rem;
    color: var(--brown);
}
.member-pop-up .f-button.is-close-btn{
    top: 4.3rem;
    left: 3.7rem;
    opacity: 1;
    outline: none;
    border: none;
    box-shadow: none;
    width: 2.5rem;
    height: 2.5rem;
    background: url(../img/arrow-prev.svg) no-repeat center;
    background-size: contain;
}
.member-pop-up .f-button.is-close-btn svg{
    display: none;
}
.member-pop-up .f-button svg{
    width: 3.3rem;
    height: 3.3rem;
}
.featured-team{
    margin: 6rem 0 12rem 0;
}
.team-members{
    margin: 6rem 0 12rem 0;
    /* padding-top: 8.2rem; */
    /* border-top: 1px solid var(--brown); */
}
.team-section .row{
    row-gap: 6.7rem;
}
.team-section .member{
    animation: slide-in-bottom 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.team-section .member:nth-child(3){
    animation-delay: 0.1s;
}
.team-section .member:nth-child(5){
    animation-delay: 0.2s;
}
.team-section .member:nth-child(7){
    animation-delay: 0.3s;
}
.team-section .member .image{
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    border-radius: 0px 40px;
    overflow: hidden;
}
.team-section .member .image img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.team-section .member h5{
    margin-top: 1.6rem;
    margin-bottom: 0.7rem;
}
.team-section .member .role{
    font-size: 1.6rem;
}
.team-section .extra-copy{
    margin-top: 5rem;
}

/* 404 PAGE */
.error404 .entry-header .subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
    animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.error404 .entry-header h1 {
    margin-bottom: 0;
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    font-size: 10.1rem;
    font-family: var(--DenimRegular);
}
.error404 .entry-header h1 span {
    background: linear-gradient(180deg, var(--brown) 0%, var(--brown) 50%, white 50%, white 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: spanBg 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation-delay: 0.5s;
    background-size: 400% 400%;
    background-position: 0% 200%;
}
.error404 .entry-header {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    min-height: 24rem;
    position: relative;
}
.error404 .page-content{
    padding-top: 8rem;
    padding-bottom: 11.2rem;
}

/* Custom AOS */
[data-aos="my-fade-up"]{
    opacity: 0
}
[data-aos="my-fade-up"].aos-animate{
    animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

[data-aos="my-fade-in"]{
    opacity: 0
}
[data-aos="my-fade-in"].aos-animate{
    animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* Keyframes */
@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}
@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(400px);
                transform: translateY(400px);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes height-in-ver-bottom {
    0% {
        height: 0;
      -webkit-transform-origin: 0% 100%;
              transform-origin: 0% 100%; 
      opacity: 1;
    }
    100% {
        height: 100%;
      -webkit-transform-origin: 0% 100%;
              transform-origin: 0% 100%; 
      opacity: 1;
    }
}
@keyframes scale-in-ver-bottom {
    0% {
      -webkit-transform: scaleY(0);
              transform: scaleY(0);
      -webkit-transform-origin: 0% 100%;
              transform-origin: 0% 100%;
      opacity: 1;
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
      -webkit-transform-origin: 0% 100%;
              transform-origin: 0% 100%;
      opacity: 1;
    }
}




/* MEDIA QUERIES */

@media only screen and (max-width: 1399px){
    .site-header .site-branding {
        width: 24rem;
    }
    /* VERTICAL SPACING */
    /* Homepage */
    .intro-section{
        margin-top: 5.5rem;
        margin-bottom: 10rem;
    }
    .blocks-section {
        margin: 10rem 0;
    }
    .banner-section {
        margin: 10rem 0 10rem 0;
    }
    .img-text-section {
        margin: 10rem 0 10rem 0;
    }
    .testimonials-carousel {
        margin: 10rem 0;
    }
    /* About */
    .blocks-section.l-full .intro{
        margin-bottom: 8rem;
    }
    .text-section {
        margin: 10rem 0;
    }
    /* Team */
    .featured-team{
        margin: 6rem 0 10rem 0;
    }
    .team-members{
        margin: 10rem 0 10rem 0;
    }
    /* Science */
    .external-resources-section{
        margin: 10rem 0;
    }
    .external-resources-section .row-rigor {
        margin-top: 7rem;
    }
    /* Resources */
    .resources-teasers {
        margin-top: 7rem;
        margin-bottom: 10rem;
    }
    .disclaimer{
        margin: 10rem 0;
    }
    /* Resources - individual */
    .single .entry-content{
        margin: 5.5rem 0 10rem 0;
    }
    .news-carousel{
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
    .news-carousel{
        padding-top: 3rem;
    }
    .news-carousel .carousel-title{
        margin-bottom: 5rem;
    }
    /* News & Events */
    .news-teasers{
        margin-top: 5.5rem;
        margin-bottom: 10rem;
    }
    .post-teaser.featured {
        margin-bottom: 8rem;
    }
    /* CONTACT PAGE */
    .page-template-contact-page .entry-header{
        padding-top: 5.5rem;
        padding-bottom: 10rem;
    }

    /* Typography */
    .page-template-contact-page .entry-title,
    .page-id-139 .entry-header h1,
    .home .entry-header h1 {
        font-size: 9rem;
        font-size: 8rem;
    }
    .text-section h2,
    h1,
    .img-text-section h2,
    .blocks-section.l-50-50 .intro h2 {
        font-size: 6.1rem;
        font-size: 5.6rem;
    }
    .testimonials-carousel .quote p,
    h2 {
        font-size: 4.9rem;
        font-size: 4.5rem;
    }

}

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

    /* Typography */
    .page-template-contact-page .entry-title,
    .page-id-139 .entry-header h1,
    .home .entry-header h1 {
        font-size: 9rem;
        font-size: 8rem;        
        font-size: 7rem;
    }
    h1,
    .img-text-section h2,
    .blocks-section.l-50-50 .intro h2 {
        font-size: 6.1rem;
        font-size: 5.6rem;
        font-size: 4.8rem;
    }
    .text-section h2,
    .testimonials-carousel .quote p,
    h2 {
        font-size: 4.9rem;
        font-size: 4.5rem;
        font-size: 4.2rem;
    }
    .banner-section .inner .copy p {
        font-size: 3.9rem;
        font-size: 3.6rem;
    }    
    .external-resources-section h2{
        font-size: 4.4rem;
    }
    .intro-section .copy p,
    .homepage-intro .top-copy {
        font-size: 2.4rem;
        font-size: 2.1rem;    
    }
    .homepage-intro .scroll-to {
        font-size: 3.1rem;
        font-size: 2.7rem;
    }
    h4 {
        font-size: 3.1rem;
        font-size: 2.7rem;
    }

    /* Homepage */
    .site-main {
        padding-top: 11rem;
    }

    /* About Us */
    .blocks-section.l-full .block .inner {
        padding: 4rem 3rem;
    }

    /* Resource individual */
    .entry-content .hero-image {
        margin-bottom: 7rem;
    }

    /* Contact Page */
    .page-template-contact-page .the-content,
    .page-template-contact-page article .address,
    .page-template-contact-page article .email,
    .page-template-contact-page article .contact-us-disclaimer {
        padding-bottom: 4.5rem;
    }

}

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

    .container {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    /* VERTICAL SPACING */
    /* Homepage */
    .intro-section{
        margin-top: 4.5rem;
        margin-bottom: 8rem;
    }
    .blocks-section {
        margin: 8rem 0;
    }
    .banner-section {
        margin: 8rem 0 8rem 0;
    }
    .img-text-section {
        margin: 8rem 0 8rem 0;
    }
    .testimonials-carousel {
        margin: 8rem 0;
    }
    /* About */
    .blocks-section.l-full .intro{
        margin-bottom: 6rem;
    }
    .text-section {
        margin: 8rem 0;
    }
    .blocks-section.l-full .block .copy {
        padding-top: 4rem;
        border-top: 1px solid var(--brown);
    }
    /* Team */
    .featured-team{
        margin: 5rem 0 8rem 0;
    }
    .team-members{
        margin: 8rem 0 8rem 0;
    }
    /* Science */
    .external-resources-section{
        margin: 8rem 0;
    }
    .external-resources-section .row-rigor {
        margin-top: 5rem;
    }
    /* Resources */
    .resources-teasers {
        margin-top: 6rem;
        margin-bottom: 8rem;
    }
    .disclaimer{
        margin: 8rem 0;
    }
    /* Resources - individual */
    .single .entry-content{
        margin: 4.5rem 0 8rem 0;
    }
    .news-carousel{
        margin-top: 8rem;
        margin-bottom: 8rem;
    }
    .news-carousel{
        padding-top: 3rem;
    }
    .news-carousel .carousel-title{
        margin-bottom: 4rem;
    }
    .entry-content .author-block {
        margin-top: 3rem;
    }
    
    /* News & Events */
    .news-teasers{
        margin-top: 4.5rem;
        margin-bottom: 8rem;
    }
    .post-teaser.featured {
        margin-bottom: 6rem;
    }
    /* CONTACT PAGE */
    .page-template-contact-page .entry-header{
        padding-top: 4.5rem;
        padding-bottom: 8rem;
    }

    /* Typography */
    .page-template-contact-page .entry-title,
    .page-id-139 .entry-header h1,
    .home .entry-header h1 {
        font-size: 9rem;
        font-size: 8rem;        
        font-size: 7rem;
        font-size: 6rem;
    }
    .blocks-section.l-full .intro h2{
        font-size: 5.6rem;
    }
    .text-section h2,
    h1,
    .img-text-section h2,
    .blocks-section.l-50-50 .intro h2 {
        font-size: 6.1rem;
        font-size: 5.6rem;
        font-size: 4.2rem;
    }
    .blocks-section.l-full .block .subtitle {
        font-size: 6.4rem;
        font-size: 5.6rem;
    }
    .testimonials-carousel .quote p,
    h2 {
        font-size: 4.9rem;
        font-size: 4.5rem;
        font-size: 3.6rem;
    }
    .banner-section .inner .copy p {
        font-size: 3.9rem;
        font-size: 3.6rem;
        font-size: 3.2rem;
    }
    .intro-section .copy p,
    .homepage-intro .top-copy{
        font-size: 2.4rem;
        font-size: 2.1rem;
        font-size: 2.0rem;
    }
    h3 {
        font-size: 3.9rem;
        font-size: 3.1rem;
    }
    h4 {
        font-size: 3.1rem;
        font-size: 2.7rem;
        font-size: 2.4rem;
    }
    .resource-teaser .title {
        font-size: 2.9rem;
    }

    /* Homepage */
    .testimonials-carousel .swiper {
        width: calc(100% + 4rem);
    }
    .img-text-section .section-content {
        padding-left: 1.6rem;
    }

    /* About */
    .img-text-section .row.reverse-order .section-content {
        padding-right: 0rem;
    }
/*    body.page-id-15 .blocks-section.l-full .blocks .row .block,*/
    .blocks-section.l-full .blocks .row .block{
        margin-bottom: -8rem;
    }
    .blocks-section.l-full .blocks .row .block:last-child{
        margin-bottom: 0rem;
    }
    .blocks-section.l-full .blocks .row .block .inner {
        padding: 4rem 3rem 10rem 3rem;
    }
    .blocks-section.l-full .blocks .row .block:last-child .inner {
        padding: 4rem 3rem 4rem 3rem;
    }

    /* Science */
    .blocks-section.l-full .block .subtitle {
        margin-bottom: 2.6rem;
        height: auto;
    }

    /* Resource individual */
    .entry-content .hero-image {
        margin-bottom: 6rem;
    }

    /* News & Events Overview */
    .news-teasers>.row {
        row-gap: 7rem;
    }

    /* News & Events Individual */
    .news-carousel .swiper-wrapper {
        padding-bottom: 4rem;
    }
    .news-swiper {
        width: calc(100% + 4rem);
    }
    .entry-content .hero-image {
        border-radius: 0px 60px;
    }

    /* Contact Page */
    .page-template-contact-page .the-content,
    .page-template-contact-page article .address,
    .page-template-contact-page article .email,
    .page-template-contact-page article .contact-us-disclaimer {
        padding-bottom: 4rem;
    }

    /* FOOTER */
    .site-footer .footer-copy {
        max-width: none;
    }
    .site-footer .logo-area {
        padding-right: 1.2rem;
        margin-bottom: 2rem;
    }

    /* Legal */
    .page-template-legal-page article .lhs{
        padding-right:3rem;
    }
    .page-template-legal-page article .rhs{
        padding-left:3rem;
    }

}

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

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Typography */
    .page-template-contact-page .entry-title,
    .page-id-139 .entry-header h1,
    .blocks-section.l-full .intro h2,
    .home .entry-header h1 {
        font-size: 9rem;
        font-size: 8rem;        
        font-size: 7rem;
        font-size: 6rem;
        font-size: 4.8rem;
    }
    .blocks-section.l-full .block .subtitle {
        font-size: 6.4rem;
        font-size: 5.6rem;
        font-size: 4.9rem;
    }
    .text-section h2,
    h1,
    .img-text-section h2,
    .blocks-section.l-50-50 .intro h2 {
        font-size: 6.1rem;
        font-size: 5.6rem;
        font-size: 4.2rem;
        font-size: 3.9rem;
    }
    .external-resources-section h2{
        font-size: 3.9rem;
    }
    .testimonials-carousel .quote p, h2 {
        font-size: 4.9rem;
        font-size: 4.5rem;
        font-size: 3.6rem;    
        font-size: 3.1rem; 
    }
    .banner-section .inner .copy p {
        font-size: 3.9rem;
        font-size: 3.6rem;
        font-size: 3.2rem;
        font-size: 2.5rem;
    }
    h4 {
        font-size: 3.1rem;
        font-size: 2.7rem;
        font-size: 2.4rem;
        font-size: 2rem;
    }
    .resource-teaser .title {
        font-size: 2.7rem;
    }
    h5 {
        font-size: 2.5rem;
        font-size: 2rem;
    }

    /* Homepage */
    .site-main {
        padding-top: 9.5rem;
    }
    .intro-section .col-image {
        position: relative;
        padding-bottom: 0;
        height: auto !important;
    }
    .intro-section .image{
        position: relative;
        left: 0rem;
        bottom: 0;
        width: 100%;
        border-radius: 0px 80px;
        overflow: hidden;
        height: 47rem !important;
        animation: height-in-ver-bottom 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        padding-bottom: 0;
        margin-bottom:5rem;
    }
    .intro-section .copy {
        padding: 5rem 3rem 4rem 3rem;
        min-height: auto;
    }
    .homepage-intro .title h2 a {
        text-underline-offset: -9px;
        text-decoration-thickness: 1.5px;
    }
    .homepage-intro .scroll-to {
        margin-bottom: 4rem;
    }
    .img-text-section .section-content {
        padding-left: 0rem;
        margin-top: 5rem;
    }
    .banner-section {
        padding: 7rem 3rem 5rem 3rem;
    }
    .banner-section .inner .copy{
        margin-bottom: 2rem;
    }
    .testimonials-carousel .swiper {
        width: calc(100% + 1.5rem);
    }
    .blocks-section.l-50-50 .intro {
        padding-right: 0rem;
        margin-bottom: 3.5rem;
    }
    .blocks-section.l-50-50 .blocks{
        display: block;
        min-height: auto;
    }
    .blocks-section.l-50-50 .block {
        --spacing: 0rem;
        position: relative;
        margin-bottom: -4rem;
    }
    body.home .banner-section {
        margin: 13rem 0 8rem 0;
    }

    /* About */
    .blocks-section.l-full .block .copy {
        padding-top: 4rem;
    }

    /* Team */
    .team-section .member .image {
        border-radius: 0px 20px;
    }
    .featured-team .row {
        margin-right: -0.8rem;
        margin-left: -0.8rem;
    }
    .featured-team .row > *{
        padding-right: 0.8rem;
        padding-left: 0.8rem;
    }
    
    /* Science */
    .blocks-section.l-full .block .inner {
        padding: 4rem 3rem 4rem 3rem;
    }
    .blocks-section.l-full .block .copy {
        padding-top: 4rem;
    }
    .blocks-section.l-full .block .copy h4{
        font-size:3.9rem;
    }

    /* Resources Overview*/
    .news-filters {
        margin-top:4rem;
        justify-content: flex-start;
        height:auto;
    }
    .resource-teaser {
        padding: 5rem 3rem 3rem 3rem;
        min-height: auto;
    }
    .resources-teasers>.row {
        row-gap: 6rem;
    }
    .resource-teaser .bottom {
        position: relative;
        bottom: 0rem;
        width: 100%;
        margin-top: 2rem;
    }
    /* Resource individual */
    .entry-content .hero-image {
        margin-bottom: 5rem;
    }
    .entry-content .author-block {
        margin-top: 2rem;
    }

    /* News & Events Overview */
    .post-teaser.featured .image {
        margin-bottom: 4rem;
    }
    .post-teaser .image {
        margin-bottom: 3rem;
    }
    .post-teaser .title{
        padding:0;
        margin-bottom: 3rem;
    }
    .post-teaser.featured .excerpt {
        font-size: 2rem;
        padding: 0;
        margin: 3rem 0 4rem 0;
    }
    .post-teaser .info {
        padding: 0;
    }
    .news-teasers>.row {
        row-gap: 6rem;
    }
    .post-teaser .info {
        position: relative;
        bottom: 0;
    }

    /* News & Events Individual */
    .news-carousel .swiper-wrapper {
        padding-bottom: 4rem;
    }
    .news-swiper {
        width: calc(100% + 1.5rem);
    }
    .entry-content .hero-image {
        border-radius: 0px 40px;
        padding-bottom: 75%;
        margin-bottom: 5rem;
    }
    .post .the-content img {
        margin: 4rem 0;
    }
    .post .the-content figure.wp-caption {
        margin-bottom: 4rem;
    }

    /* Contact Page */
    .page-template-contact-page .the-content,
    .page-template-contact-page article .address,
    .page-template-contact-page article .email,
    .page-template-contact-page article .contact-us-disclaimer {
        padding-bottom: 3.5rem;
    }

    /* Footer */
    .site-footer #footer-menu li {
        width: 100%;
    }
    .site-footer .footer-contact {
        margin-top: 2rem;
    }
    .site-footer .inner {
        padding: 6rem 3rem 4rem 3rem;
    }
    .site-footer #legal-menu {
        flex-wrap: wrap;
        row-gap:2rem;
    }

    /* Legal */
    .page-template-legal-page article .lhs{
        padding-right:1.2rem;
        margin-bottom: 3rem;
    }
    .page-template-legal-page article .rhs{
        padding-left:1.2rem;
    }

}

@media only screen and (max-width: 575px){
    .external-resources-section .resources>div:nth-child(2) {
        margin-top: 3.2rem;
    }
}





/* MOBILE NAVIGATION */

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

        .site-header .inner {
            padding-top: 2.9rem;
            padding-bottom: 3rem;
        }

        .site-header .col-branding{
            width:calc(100% - 7.1rem);
        }
        .site-header .col-main-menu{
            display: flex;
            flex-direction: row-reverse;
        }
        #contact-menu{
            margin-right: 7.9rem;
        }
        .site-header ul#main-menu {
            position: fixed;
            width: 100vw;
            min-height: calc(100vh - 9.5rem);
            background: white;
            right: -4rem;
            left:auto;
            top: 8.1rem;
            flex-direction: column;
            justify-content: flex-start;
            padding: 2rem 4rem 8rem 4rem;
            list-style: none;
            margin: 0;
            -webkit-transform: translateX(100%);
            -moz-transform: translateX(100%);
            -ms-transform: translateX(100%);
            -o-transform: translateX(100%);
            transform: translateX(100%);
            -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            display: flex;
            height: 100%;
            align-items: start;
            overflow-y: auto;
        }
        .site-header.slim ul#main-menu {
            top: 7.3rem;
        }
        body.page-id-140 .site-header ul#main-menu{
            background-color: var(--emerald);
        }
        #main-menu li{
            margin-bottom: 0rem;
        }
        .site-header #main-menu li a{
            font-size: 2.4rem;
        }
        .site-header #main-menu > li{
            padding-top:3rem;
        }
        .site-header #main-menu > li.cta{
            margin-top:4rem;
            padding-top: 0;
            width: auto;
        }
        
        .site-header #main-menu.show {
            -webkit-transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);
            transform: translateX(0px);
        }
        
        .burger-container{
            position: relative;
            height: 45px;
        }
        .burger {
            width: 60px;
            height: 51px;
            position: absolute;
            top: 0;
            right: 0rem;
            left: auto;
            z-index: 999999;
            display: block;
            background-color: var(--light-green);
            border-radius: 20px 0px;
            padding: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .burger span {
            position: relative;
            margin-top: -2px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            position: absolute;
            top: 50%;
        }
        .burger span, .burger span::before, .burger span::after {
            display: block;
            width: 22px;
            height: 2px;
            border-radius: 5px;
            background-color: var(--brown);
            outline: 1px solid transparent;
            -webkit-transition-property: background-color, -webkit-transform;
            -moz-transition-property: background-color, -moz-transform;
            -o-transition-property: background-color, -o-transform;
            transition-property: background-color, transform;
            -webkit-transition-duration: 0.3s;
            -moz-transition-duration: 0.3s;
            -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
        }
        .burger span::before{
            transition: all .3s;
        }
        .burger span::before, .burger span::after {
            position: absolute;
            content: "";
        }
        .burger span::before {
            top: -9px;  
        }
        .burger span::after {
            top: 9px;
        }
        header.slim .burger.clicked span,
        .burger.clicked span {
            background-color: transparent !important;
        }
        .burger.clicked span::before {
            top: -7px;
            -webkit-transform: translateY(7px) rotate(45deg);
            -moz-transform: translateY(7px) rotate(45deg);
            -ms-transform: translateY(7px) rotate(45deg);
            -o-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
        }
        .burger.clicked span::after {
            top: 7px;
            -webkit-transform: translateY(-7px) rotate(-45deg);
            -moz-transform: translateY(-7px) rotate(-45deg);
            -ms-transform: translateY(-7px) rotate(-45deg);
            -o-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
        }
        .burger:hover {
            cursor: pointer;
        }
        #contact-menu {
            margin-right: 7rem;
        }

    }


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

        .scroll .site-header .site-branding,
        .site-header .site-branding {
            width: 12rem;
        }
        .site-header .inner {
            padding-top: 2.2rem;
            padding-bottom: 2.2rem;
        }
        .main-navigation ul {
            display: flex;
        }
        #contact-menu li a {
            padding: 1.2rem 2rem;
        }
        .site-header ul#main-menu {
            position: fixed;
            width: 100vw;
            min-height: calc(100vh - 9.5rem);
            background: white;
            right: -1.5rem;
            left:auto;
            top: 7.3rem;
            flex-direction: column;
            justify-content: flex-start;
            padding: 2rem 1.5rem 8rem 1.5rem;
            list-style: none;
            margin: 0;
            -webkit-transform: translateX(100%);
            -moz-transform: translateX(100%);
            -ms-transform: translateX(100%);
            -o-transform: translateX(100%);
            transform: translateX(100%);
            -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            display: flex;
            height: 100%;
            align-items: start;
            overflow-y: auto;
        }

    }

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

        .burger {
            width: 50px;
        }
        #contact-menu li a {
            padding: 1.2rem 1rem;
        }
        #contact-menu {
            margin-right: 6rem;
        }

    }