@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    /*--webcliff-color: #266f57;*/
    --webcliff-color: #026469;
    --webcliff-bg-color: #E7EAE6;
}

.manrope-200 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.manrope-300 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #222;
    color: #FFF;
    font-family: "Manrope", sans-serif;
}

.grecaptcha-badge{
    visibility: hidden !important;
}

.section-title{
    font-size: 4rem;
}

.webcliff-color{
    color: var(--webcliff-color) !important;
}

@media(max-width: 490px){
    .section-title{
        font-size: 2.6rem;
    }
}

.webcliff-btn{
    background-color: var(--webcliff-color);
    color: #FFF;
    box-shadow: rgba(2, 100, 105, 1) 0px 10px 20px -8px;
}

.webcliff-btn:hover{
    background-color: #00935b;
    color: #FFF;
    box-shadow: rgba(0, 147, 91, 1) 0px 10px 20px -8px;
}

/****************** NAV **************/
#navbar {
    transition: all 0.7s;
    letter-spacing: +0.05em;
    font-weight: 600;
    background-color: #FFF;
    color: #000;
}

#navbar .active{
    color: var(--webcliff-color) !important;
}



@media(max-width: 490px){
    #navbar{
        border-bottom: 1px solid #D7D7D7;
    }
    
    .nav-contact{
        color: var(--bs-nav-link-color);
        text-decoration: none;
    }
}

@media(min-width: 1200px){
    .nav-link:not(.active)::before{
        content: '';
        position: absolute;
        left: 15%;
        top: 90%;
        width: 70%;
        border-top-width: .143em;
        border-top-style: solid;
        transform: scaleX(0);
        transform-origin: right center;
        transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }

    .nav-link:not(.active):hover::before{
        transform: scaleX(1);
        transform-origin: left center;
    }
    
    #navbar .active::before{
        content: '';
        position: absolute;
        left: 15%;
        top: 90%;
        width: 70%;
        border-top-width: .143em;
        border-top-style: solid;
        border-color: var(--webcliff-color);
        transition: all 0.25s;
    }
    
     #navbar .active:hover::before{
        border-color: inherit;
    }
}


/********************** Footer *********************/

footer{
    color: #FFF;
    padding-bottom: 30px;
    border-top: 1px solid #171717;
}

.footer-info p{
    font-size: 1rem;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    padding: 10px 0;
    padding-top: 10px;
    display: flex;
    align-items: center;
}

.footer-links ul i {
    padding-right: 2px;
    color: #00935b;
    font-size: 18px;
    line-height: 1;
}

.footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

.footer-links ul a:hover{
    color: #00935b;
}


#cookie_consent{
    position: fixed;
    bottom: 5%;
    right: 1%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--webcliff-color);
    background-color: #FFF;
    color: var(--webcliff-color);
}

#cookie_consent a{
     color: var(--webcliff-color);
}

#cookie_accept{
    background-color: var(--webcliff-color);
    color: #FFF;
    box-shadow: rgba(2, 100, 105, 1) 0px 10px 20px -8px;
}

#cookie_accept:hover{
    background-color: #00935b;
    color: #FFF;
    box-shadow: rgba(0, 147, 91, 1) 0px 10px 20px -8px;
}

