
.header{
    position: fixed;
    z-index: 10;
    height: 60px;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.header.scrolled{
    background:#fff;
    box-shadow:0 6px 20px rgba(2,6,23,.08);
    padding:10px 24px;
}

.header .menu{
    display: block;
    width: 90%;
    margin: auto;
}

.header .menu .logo img{
    max-width: 150px;
    padding: 5px 0;
    float: left;
}

.menu-list {
    display: flex;
    justify-content: right;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.menu-list a {
    text-decoration: none;
    font-size: 16px;
    color: #3d4043;
    padding: 8px 4px;
    position: relative;
    transition: color 0.2s ease;
}

.menu-list a:hover,
.menu-list a:focus {
    color: #1097f7;
}

.menu-list > li:not(.nav__cta) > a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1097f7;
    transition: width 0.25s ease;
}
.menu-list > li:not(.nav__cta) > a:hover::after,
.menu-list > li:not(.nav__cta) > a:focus::after {
    width: 100%;
}

.nav__cta a{
    background: #1097f7; color:#fff; padding:12px 24px; border-radius:12px;
    border: 1px solid #1097f7;
    box-shadow: 0 8px 18px rgba(16,151,247,.25);
}
.nav__cta a:hover{ background: transparent; }

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 2001;
    position: absolute;
    right: 30px;
    top: 20px;
}

.burger span {
    display: block;
    height: 3px;
    background: #3d4043;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.language{
    margin-left: 30px;
}

@media (max-width: 1020px) {
    .burger {
        display: flex;
    }

    .language{
        margin-left: 0;
        margin-top: 30px;
    }

    .menu-list{
        position: fixed;
        inset: 0;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 0;
        transform: translateX(-100%);
        transition: transform .3s ease;
        z-index: 2000;
    }
    .menu-list.open{
        transform: translateX(0);
    }
    .menu-list a{ font-size:22px; }

    .menu-list.open {
        transform: translateX(0);
    }

    .menu-list a {
        font-size: 22px;
    }

    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 36px;
        background: none;
        border: none;
        cursor: pointer;
        color: #3d4043;
        z-index: 2002;
    }
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


.certification-menu{
    width: 100%;
    background-color: #E2E3E4;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 80px;
    z-index: 2;
}

.certification-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.certification-menu li{
    display: inline;
    line-height: 40px;
    margin: 0 30px;
}

.certification-menu a{
    color: #3d4043;
    text-decoration: none;
}

.certification-menu a:hover{
    color: #1097f7;
    text-decoration: none;
    border-bottom: 1px solid CurrentColor;
    cursor: pointer;
}

@media only screen and (max-width: 1295px) {
    .certification-menu li {
        margin: 0 20px;
    }
}

@media only screen and (max-width: 1136px) {
    .certification-menu li {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 976px) {
    .certification-menu li{
        font-size: 14px;
    }
}

@media only screen and (max-width: 900px) {
    .certification-menu li{
        font-size: 12px;
    }

}

@media only screen and (max-width: 850px) {
    .certification-menu {
        display: none;
    }
}

@media only screen and (max-width: 589px) {
    .header{
        height: 60px;
    }
     .header .menu .logo img{
        max-width: 30%;
        padding: 10px 0;
    }
}

/*-------------footer------------------*/


.footer{
    background-color: #f8f8fc;
    width: 100%;
    padding: 60px 0 100px 0;
}

.footer .footer-content{
    display: block;
    width: 90%;
    margin: auto;
}

.footer .footer-content img{
    width: 90%;
    padding-bottom: 5px;
}

.footer .foundation-details{
    float: left;
    width: 25%;
    display: block;
    padding-right: 70px;
}

.footer .foundation-details .bold{
    font-weight: 600;
    display: block;
    padding-bottom: 20px;
}

.footer .foundation-details .thin{
    font-weight: 300;
    display: block;
    color: #97a0a9;
}

.footer .menu-subpages{
    display: inline-block;
    width: 50%;
}

.footer .gold-line{
    border-top: 3px solid #ffbc19;
    width: 55%;
    float: left;
    padding: 0;
    margin: 0;
}

.footer .links{
    margin-top: 20px;
}

.footer .explore-foundation{
    display: block;
    float: left;
    width: 50%;
}

.footer .how-we-work{
    display: block;
    float: left;
}

.footer .explore-foundation p, .footer .how-we-work p{
    font-weight: 700;
    font-size: 18px;
}

.footer .explore-foundation ul, .footer .how-we-work ul, .footer .contact-details ul{
    margin: 0;
    padding: 0;
}

.footer .explore-foundation li, .footer .how-we-work li{
    font-size: 15px;
    list-style: none;
    font-weight: 300;
    margin: 2px auto;
}

.footer .explore-foundation a, .footer .how-we-work a, .footer .contact-details a{
    color: #3d4043;
    text-decoration: none;
}

.footer .explore-foundation li a:hover, .footer .how-we-work li a:hover{
    color: #1097f7;  !important;
    border-bottom: 1px solid #1097f7; !important;
    padding-bottom: 1px;
    text-decoration: none;
}

.footer .contact-details{
    display: block;
    float: right;
    width: 15%;
    padding-top: 40px;
}

.footer .contact-details li{
    font-size: 16px;
    list-style: none;
    margin: 2px auto;
}

.footer .contact-details a:hover{
    text-decoration: none;
    color: #1097f7;
}

.footer .contact-details i{
    color: #6cbffb;
    margin-right: 15px;
}

.footer .legal-docs{
    width: 100%;
    display: block;
    float: left;
    padding-top: 80px;
}

.footer .legal-docs ul{
    padding: 0;
    margin-bottom: 10px;
}

.footer .legal-docs ul li{
    display: inline;
    padding-right: 20px;
}

.footer .legal-docs ul a{
    color: #3d4043;
    font-weight: 300;
    text-decoration: none;
}

.footer .legal-docs ul a:hover{
    color: #1097f7;
    text-decoration: none;
}

.footer .legal-line{
    display: block;
    margin: 5px auto 0 auto;
    border-top: 2px solid #1097f7;
    width: 100%;
}

.follow-us{
    padding-top: 10px;
    width: 100%;
    display: block;
}

.follow-us i{
    color: #ffffff;
    background-color:#6cbffb;
    width: 60px;
    height: 60px;
    padding: 14px 16px;
    border-radius: 50%;
    margin-right: 5px;
}

.follow-us i:hover{
    background-color:#1097f7;
}

.follow-us .fa-facebook-f{
    padding-left:19px
}


@media only screen and (max-width: 1680px) {
    .footer .foundation-details .bold{
        font-size: 14px;
    }
    .footer .contact-details{
        width: 20%;
    }
}

@media only screen and (max-width: 1480px) {
    .footer .foundation-details{
        width: 30%;
        padding-right: 70px;
    }
}

@media only screen and (max-width: 1280px) {
    .footer .foundation-details{
        width: 40%;
        padding-right: 70px;
    }
    .footer .menu-subpages{
        width: 60%;
    }
    .footer .contact-details{
        width: 100%;
        padding-top: 60px;
    }
    .footer .explore-foundation{
        display: block;
        float: left;
        width: 60%;
    }
}

@media only screen and (max-width: 850px) {
    .footer .foundation-details{
        width: 100%;
        padding-bottom: 50px;
    }
    .footer .foundation-details img{
        width: 45%;
    }
    .footer .menu-subpages{
        width: 100%;
    }
    .footer .legal-docs ul li{
        font-size: 13px;
    }
}

@media only screen and (max-width: 700px) {
    .footer .foundation-details img {
        width: 55%;
    }
}

@media only screen and (max-width: 550px) {
    .footer .foundation-details img {
        width: 60%;
    }
    .footer .explore-foundation p, .footer .how-we-work p{
        font-size: 15px;
    }
    .footer .explore-foundation p, .footer .how-we-work p{
        font-size: 15px;
    }
    .footer .contact-details li{
        font-size: 14px;
    }
}

@media only screen and (max-width: 450px) {
    .footer .foundation-details{
        width: 80%;
    }
    .footer .foundation-details img{
        width: 90%;
    }
    .footer .foundation-details .bold {
        font-size: 12px;
    }
    .footer .foundation-details {
        font-size: 12px;
    }
}

@media only screen and (max-width: 485px) {
    .footer .explore-foundation{
        margin-bottom: 30px;
    }
}


.cookie-banner{
    position: fixed;
    bottom: 0;
    background: #ffffff;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    border-top: 1px solid #1097f7;
}

.cookie-banner a{
    color: #44CCFF;
    text-decoration: none;
}

.cookie-banner .left-side{
    width: 90%;
    padding-right: 20px;
}

.cookie-banner .right-side{
    width: 10%;
}

.accept-cookies-btn{
    background-color: #1097f7;
    border:1px solid #1097f7;
    color: #ffffff;
    padding: 10px 30px;
    float: right;
}
.accept-cookies-btn:hover{
    color: #44CCFF;
    background-color: transparent;
}

@media only screen and (max-width: 940px) {
    .cookie-banner{
        padding: 20px 20px;
    }
}
@media only screen and (max-width: 627px) {
    .cookie-banner .left-side{
        width: 80%;
        font-size: 13px
    }
    .cookie-banner .right-side{
        width: 20%;
    }
}