@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Kiwi+Maru&family=Lexend:wght@100..900&family=Protest+Guerrilla&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*_______________________________________ GLOBALS _____________________________________ */
*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* ____ Our Colors____ */
:root {
    --oxford-blue: #212a37;
    --oxford-blue-lighter: hsl(215, 25%, 40%);
    --oxford-blue-lightest: hsl(215, 25%, 70%);
    --that-clear-orange: rgb(255, 121, 68)
}

/* ___ BG-IMG-CENTERING ___ */
.img-centric{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* _____________________________________ NAVIGATION _____________________________________ */

nav{
    position: fixed;
    z-index: 10;
    width: 100%;
    height: auto;
    padding: 5px 10px;
}

nav .logo{
    position: absolute;
    padding: 10px 20px;
    top: 5px;
    left: 5px;
    z-index: 11;

}

nav .outer{
    width: auto;
    height: auto;
    padding: 20px 25px;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari / prefixed support */
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: width all 0.3s ease-in-out;

}

nav .outer.ring .inner.ring{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .outer.ring .inner.ring .link.contain{
    padding: 0px 20px;
}

nav .outer.ring .inner.ring .link.contain a{
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    font: 400 1.2em Lexend;
    color: var(--oxford-blue);
    position: relative;
}

nav .outer.ring .inner.ring .link.contain a::after{
    position: absolute;
    content: '';
    width: 0%;
    background: var(--oxford-blue-lighter);
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: all 0.2s ease-in-out;
}

nav .outer.ring .inner.ring .link.contain a:hover::after{
    width: 100%;
}

/* inspo: paolovendramini.com */
nav span.menu-mobile{
    display: inline-block;
    color: white;
    font: 700 1.4em Lexend;
    /* padding: 30px 25px; */
    padding: 20px 25px;
    position: absolute;
    top: 5px;
    right: 5px;
    visibility: hidden;
    
}

nav span.menu-mobile:hover{
    cursor: pointer;
}

/* _______________________________________ Home Page ___________________________________ */

/* test comment */
section.home{
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

section.home .text-contain{
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%,-50%);
    padding: 30px;
}

section.home .text-contain h1{
    width: auto;
    font: 5em 'Changa One', cursive;
    color: white;
    mix-blend-mode: difference;
    text-align: center;
    text-transform: uppercase;
}

section.intro,
section.coverage-areas,
section.clientele,
section.health_and_safety{
    width: 100%;
    height: auto;
    background: var(--oxford-blue-lighter);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10% 5%;
    position: relative;
}

section.intro{
    position: relative;
}

section.intro header,
section.coverage-areas > .contain > .hi-top,
section.clientele > .contain > .hi-top,
section.health_and_safety > header{
    height: auto;
    width: 100%;
    padding: 20px 25px;
}

section.intro header h2,
section.coverage-areas > .contain > .hi-top > h2,
section.clientele > .contain > .hi-top > h2,
section.health_and_safety > header h2{
    font: 600 3em Protest Guerrilla;
    text-transform: uppercase;
    text-align: center;
    color: ivory;

}

section.intro > main,
section.coverage-areas > .contain > .low,
section.clientele > .contain > .low,
section.health_and_safety main{
    height: auto;
    width: 100%;
    padding: 2.5% 15%;
}

section.clientele > .contain > .low{
    padding: 2.5% 2.5%;
}


section.intro main p,
section.coverage-areas > .contain > .low > .panel > p,
section.coverage-areas > .contain > .low > p,
section.clientele > .contain > .low > .panel p,
section.health_and_safety main p{
    font: 200 1.3em Lexend;
    color: ivory;
    text-align: center;
}

section.intro main p a{
    margin: 50px 0px;
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid ivory;
    background: ivory;
    color: var(--oxford-blue);
    display: inline-block;
    text-decoration: none;
    font: 400 1em Lexend;
    transition: all 0.2s ease-in-out;
}

section.intro main p a:hover{
    background: transparent;
    color: ivory;
}


/* ___________________________________ Services Page _______________________________ */
section.services-too,
section.services{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* from parallax2 */
    overflow: hidden;
}

section.services .img-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
}

/* section.services > h2{
    color: ivory;
    font: 400 7em 'Changa One';    
} */

section.services .img-wrapper h2{
    font: 700 6em Poppins, serif;
    color: ivory;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    text-align: center;
}

section.services .img-wrapper img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}

section.services-too{
 
    background: ivory; 

    padding: 7.5% 12.5%;
    flex-direction: column;
    height: auto;
    position: relative;

    /* VITAL FOR GSAP PINNING */
    position: relative;

}

section.services-too > .contain ol > li{
    font: 600 1.5em Lexend;
    text-transform: uppercase;
    padding: 7.5px 10px;
    border: 2px solid var(--oxford-blue);
    margin: 50px;
    list-style: none;
    text-align: center;
    color: var(--oxford-blue);
    transition: all 0.2s ease-in-out;
}

section.services-too > .contain ol > li:hover{
    background: var(--oxford-blue);
    color: ivory;
    cursor: pointer;
}


section.services-too > .contain ol > li > ul {
    margin-top: 15px;
}

section.services-too > .contain ol > li > ul > li{
    color: var(--oxford-blue);
    margin: 5px;
    margin-right: 0px;
    text-transform: capitalize;
    text-align: left;
    padding-left: 30px;
    list-style-type: disc;
    list-style-position: inside;
    font: 400 .9em Lexend;
}

section.services-too > .contain ol > li > ul > li::marker{
    margin: 0%;
    padding: 0%;
}

section.services-too > .contain ol > li:hover > ul > li{
    color: ivory;
}


/* ___________________________________ Contact Page _______________________________ */
section.contact{
    background: var(--oxford-blue-lighter);
}

section.contact .contain{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.contact .contain .hi-top h2{
    font: 400 5em 'Changa One';
    color: var(--oxford-blue);
    text-transform: uppercase;
    text-align: center;
}

section.contact .contain .low{
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}

section.contact .contain .low a{
    padding: 0px 20px;
    display: inline-block;
    text-decoration: none;
    color: ivory;
    font: 400 3em 'Changa One';
    text-transform: uppercase;
}

/* ___________________________________ About Page _______________________________ */
section.about,
section.coverage-areas,
section.clientele{
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

section.about img,
section.home img.background-img-home{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

section.about .contain{
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-25%, -50%);
    width: auto;
    height: auto;
    
}

section.about .contain .hi-top h2{
    font: 1.5em Lexend;
    color: ivory;
    text-transform: uppercase;
}

section.coverage-areas > .contain > .low,
section.clientele > .contain > .low{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

section.about .contain .low p,
section.clientele .contain .low p{
    font-family:  'Kiwi Maru', serif;
    font-size: clamp(68px, calc(68 * 1px + (52) * (100vw - 375 * 1px) / (1225)),110px);
    color: ivory;
}

section.coverage-areas{
    background: var(--oxford-blue-lighter);
}

section.clientele{
    background: ivory;
}

section.clientele > .contain > .hi-top > h2{
    color: var(--oxford-blue-lighter);
}

section.clientele .contain{
    width: 75%;
}

section.coverage-areas .contain .low .panel,
section.clientele .contain .low .panel{
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-bottom: rgba(255, 255, 240, 0.4) solid 2px; */
}


section.coverage-areas .contain .low .panel p,
section.clientele .contain .low .panel p{
    position: relative;
    text-align: center;
    color: ivory;
    font: 300 1.3em Lexend;
    list-style: circle;
    list-style-position: outside;
    list-style-type: disc;
}

section.clientele .contain .low .panel p{
    color: var(--oxford-blue);
}


section.coverage-areas .contain .low .panel p::after,
section.clientele .contain .low .panel p::after{
    position: absolute;
    content: '';
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 240, 0.4);
}

section.clientele .contain .low .panel p::after{
    background: var(--oxford-blue-lightest);
}
section.coverage-areas .contain .low p.conclude{
    font: 200 1.3em Lexend;
}


/* ________________________________________ The Footer ________________________________________ */
footer {
    width: 100%;
    height: auto;
    padding: 15px 0px;
    background-color: var(--oxford-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

footer .links{
    height: auto;
    width: 95%;
    padding: 15px 0px;
    display: flex;
    flex-wrap: wrap;
}

footer .links .link{
    flex: 1 1 300px;
    display: flex;
    padding: 20px;
}

footer .links-logo{
    justify-content: center;
    align-items: center;
}

footer .links ul{
    height: auto;
    width: auto;
    list-style: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline-start: 0px;
}

footer .links ul li{
    display: flex;
    padding: 5px 15px;
    align-items: center;
    list-style: none;
    
}

footer .links ul li a{
    padding: 0px 15px;
    display: inline-block;
    text-decoration: none;
    font: 400 1.2em Lexend;
    color: var(--oxford-blue);
}

footer .links-contacts{
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

footer .links-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
}

footer .links-contact a{
    font: 400 1.2em Lexend;
    display: inline-block;
    text-decoration: none;
    padding: 0px 20px;
    color: var(--oxford-blue);
}

footer .credits{
    padding: 30px;
}

footer .credits span{
    font: 400 1em Lexend;
    display: inline-block;
    text-align: center;
    color: ivory;
}

section.health_and_safety main p a,
footer .credits span a
{
    display: inline-flex;
    text-decoration: none;
    color: var(--that-clear-orange);
    padding-left: 0px;
    position: relative;
    transition: all 0.2s ease-in-out;
    /* overflow: hidden; */
}

section.health_and_safety main p a::after,
footer .credits span a::after{
    content: '';
    position: absolute;
    top: 50%;
    left: -31px;
    height: 1px;
    width: 0px;
    background: var(--that-clear-orange);
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}

section.health_and_safety main p a:hover,
footer .credits span a:hover{
    transform: translateX(31px);
}

section.health_and_safety main p a:hover::after,
footer .credits span a:hover::after{
    width: 25px; 
}

footer i,
footer .links ul li a,
footer .links-contact a{
    color: #fffff0;
}

/* ________________________________________ Responsive Design ______________________________________________ */
@media only screen and (max-width: 1000px){
    nav{
        height: 0dvh;
        padding: 0px;
    }

    nav .outer.ring{
        width: 100%;
        height: 100%;
        left: -100%;
        top: 0px;
        background: ivory;
        transform: translate(0%);
        border-radius: 0px;
        
    }
    
    nav .outer.ring .inner.ring{
        flex-direction: column;
        height: 85%;
        justify-content: center;
        padding: 20% 0%;
    }
    
    nav .outer.ring .inner.ring .link.contain{
        width: 100%;
        padding: 0%;
    }
    
    nav .outer.ring .inner.ring .link.contain a{
        text-align: left;
        text-transform: uppercase;
        font: 700 3.6em Lexend;
        margin-bottom: 10px;
        
    }
    
    nav span.menu-mobile{
        z-index: 12;
        visibility: visible;
    }
    
    
    section.intro > main{
        padding: 2.5% 5%;
    }

    section.intro > main p{
        font: 200 1.2em Lexend;
    }

    section.services-too{
        padding: 5% 0%;
    }
    
    section.services-too > .contain ol > li{
        padding: 25px 10px;
    }

    section.about{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.about .contain{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translate(-25%, 0%);
    }

    section.about .contain .hi-top h2,
    section.about .contain .low p{
        text-align: center;
    }

}

@media only screen and (max-width: 650px){
    footer .links ul{
        align-items: center;
    }
    
    footer .links-contacts{
        align-items: center;
    }

    footer .links-contact a{
        text-align: center;
    }

}