*, *::before, *::after {
    box-sizing: border-box;
    outline: none;
}


body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: var(--base-line-height);
    font-weight: 100;
    text-align: left;
    overflow-y: scroll;
    overflow-x: hidden;
}



:root {
    --base-font-size: 1em;
    --base-line-height: 2em;
    --h1-font-size: 2.5rem;
    /*--h1-line-height: -1.1rem;*/
    --h1-line-height:3rem;
    --h1-margin-bottom: -0.75em;
    --h2-font-size: 2.5rem;
    --h2-line-height: 3rem;
    --h3-font-size: 1.2rem;
    --h3-line-height: 1.5rem;
    --container-padding: 3.125em 0;
    --margin-left-5: 0.3125em;
    --margin-right-5: 0.3125em;

}


.current-nav {
    opacity: 0.5;
}


nav {
    width: 100%;
    max-height: 4em;
    background-color: #fff;
    /*background-color: #000;*/
    
    
    position: fixed;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .1));
}

.nav-container-full-width {
    width: 100%;
    min-height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    /*filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .5));*/

}


.dsktp-nav {
    display: flex;
    justify-content: space-between;
    visibility: hidden;
    width: 40%;
    margin: 0 auto;
}

.dsktp-nav-item {
    /*font-size: 0.8rem;*/
    margin: 0;
    
}



h1 {
    margin-top: 0;
    
    margin-bottom: var(--h1-margin-bottom);
    /*font-size: 1.8rem;*/
    font-size: var(--h1-font-size);
    /*line-height: -1.1rem;*/
    line-height: var(--h1-line-height);
    /*text-align: center;*/
    z-index: 5;
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;

    
}

.main-title {
    line-height: 2.8rem;
}

h2 {
    margin-top: 0;
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    font-weight: 700;
    z-index: 5;

}

h3 {
    
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    font-weight: 400;
    z-index: 5;

    /*text-align: left;*/
}

p {
    /*font-size: calc(var(--base-font-size) - 0.1em);
    line-height: calc(var(--base-line-height) - 0.1em);*/
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    font-family: 'Inter', sans-serif;
    z-index: 5;

}

.smallprint {
    letter-spacing: 0.0625em;
    font-size: calc(var(--base-font-size) / 2);
}


section {
    min-height: 100vh;
    margin: 0;
    padding:  6em 0;
}

.container {
    width: 70%;
    margin: 0 auto;
    padding: 3.125em 0;
    overflow: hidden;
    
}

.container-full-width {
    width: 100%;
    min-height: 100%;
    z-index: 1;
    overflow: hidden;
}


/*.row {
    min-height: 100%;
}*/

.content-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 3em;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.minh100vh {
    min-height: 100vh;
}


.m-left-5 {
    
    margin-left: var(--margin-left-5);
}

.m-right-5 {
 
    margin-right: var(--margin-left-5);
}

.m-left-15 {
    /*margin-left: 15px!important;*/
    margin-left: 0.9375em!important;
}

.m-right-15 {
    /*margin-right: 15px!important;*/
    margin-right: 0.9375em!important;
}

.m-top-150 {
    /*margin-top: 150px;*/
    margin-top: 9.375em;
}

.m-top-100 {
    /*margin-top: 100px;*/
    margin-top: 6.25em;
}

.m-top-75 {
    margin-top: 4.6875em;
}

.m-top-50 {
    /*margin-top: 50px;*/
    margin-top: 3.125em;
}

.m-top-25 {
    /*margin-top: 25px;*/
    margin-top: 1.5625em;
}


.no-padding {
    padding: 0;
}

.no-top-padding {
    padding-top: 0;
}

.blue-txt {
    color:#6DCFF6;
}

.white-txt {
    color: white;
}


.menu-icon {
    width: 2.1875em;
    height: 1.875em;
    margin-left: 1.25em;

    cursor: pointer;
    position: fixed;
    z-index: 21!important;
    visibility: visible;
}

.nav-phone {
    /*margin-right: 1.25em;*/
     width: 1.5em;
     cursor: pointer;
     position: fixed;
     right: 1.25em ;
     z-index: 21;
     visibility: visible;
 }
 
 .dsktp-nav-phone {
     width: 1.5em;
     /*margin-right: 1.25em;*/
     margin-left: 4em;
 }

#menu {
    height: 0;
    width: 100%; /*change with JS*/
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0; /*change with JS*/
    visibility: hidden;
    /*background-color: #6DCFF6;*/
    /*background-color: #000;*/
    background-color: #fff;
    transition: 0.2s;
    transition-timing-function: ease-in;
    z-index: 20;
}

.close-btn {
    position: absolute;
    /*top: 15px;*/
    top: 0.9375em;
    /*right: 15px;*/
    right: 0.9375em;
    /*width: 48px;*/
    width: 3em;
    z-index: 21;
    transition: 1s;
    transition-timing-function: ease-in;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

li {
    text-align: center;
  
    color: #6DCFF6;
    color: #000;
    list-style: none;
    padding: 1em 0;
    margin-top: 2.5em;
    font-size: var(--h3-font-size);
    font-weight: 400;
}

.menu-content li {
    margin-top: 2em;
}

a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    
}


.reveal-anim {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 1s;
    transform: translateY(2em);
    opacity: 0;
}


/*BUTTONS******************************************************/
button {
    
  
    /*padding: 0.5em 2em;*/
    padding: 0.5em 1.5em;
    border-radius: 0.9375em;
    cursor: pointer;
    /*margin: 0.625em 0;*/
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;  
    /*font-size: calc(var(--base-font-size) - 0.2em);*/
    font-size: var(--base-font-size);
    text-transform: uppercase;
    z-index: 20;
}

.btn-container {
    display: flex;
    
    
}

.btn-fill {
    background: #6DCFF6;
    color: #000;
    border: 0;
    width: 100%;

    transition: all .2s ease-in-out;
}
.btn-fill-dark {
    background: #000;
    color: #ffffff;
    border: 0;
    width: 100%;

    transition: all .2s ease-in-out;
}

.btn-fill:active {
    transform: scale(1.02);
    transition: .1s;
}

.btn-fill-light {
    
    background: #000;
    color:#000;
    border: 0;
    width: 100%;

    transition: all .2s ease-in-out;
}


.btn-fill-light:active {
    transform: scale(1.02);
    transition: .1s;
}

.btn-outline {
    border: 0.0625em solid #ffffff;
  
    background: transparent;
    color: #ffffff;
    transition: all .2s ease-in-out;
}

.btn-outline:active {
    transform: scale(1.02);
    transition: .1s;
}


/*INDEX**********************************************************************************************************/
.intro {
   
    text-align: center;
    min-height: 100vh;

    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 1;

    overflow: hidden;
    /*background-image:url(images/index-bg.jpg);*/
    background-image: url(images/mc-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.685);
    background-blend-mode: multiply;
    position: relative;

}

.intro .btn-fill {
    margin: 0 auto;
}

.mc-logo {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}


.about {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

/*.about .btn-fill-dark {
    width: 50%;
}*/

.van {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    mix-blend-mode: multiply;
}

.about-two {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 5;

}

/*.about-two .btn-fill-dark {
    width: 50%;
    margin: 0 auto;
}*/

.bg-graphic {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    margin: auto;
    z-index: 1;
    width: 100%;
    height: auto;
}


.areas-covered {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: #fff;
    background-image: url(images/angel-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 0;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .1));
    z-index: 5;
}

.areas-covered p {
    text-align: center;
}


/*.areas-covered .btn-fill-dark {
    width: 50%;
}*/

.recycling {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url(images/env-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.good-to-know {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
    background-color: #fff;
    padding: 0;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .1));
    z-index: 5;

}

/*.good-to-know .btn-fill-dark {
    width: 50%;
}*/


#gtk-l {
    background-image: url(images/index-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .1));
    z-index: 1;

}
#gtk-2 {
    
    min-height: 100vh;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .1));
    z-index: 2;
}


/*CONTACT PAGE********************************************************************************************************************/


.contact {
    text-align: left;
    min-height: 100vh;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.contact .dsktp-nav-phone {
    margin-left: 0;
}

/*.lillies {
    position: absolute;
    bottom:-50%;
    left:0;
    z-index: 1;
    opacity: 0;
}*/


/*.contact .btn-fill-dark {
    width: 50%;
}*/


form {
    width: 100%;
}



input, textarea {
    
    border: none;
    width: 100%;
    padding: 8px;
    /*border-radius:  0.625em;*/
    /*background-image: linear-gradient(45deg, #ffffff33, #d8d8d818);*/
    width: 100%;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

textarea {
    resize: vertical;
    padding:  16px 8px;
}

input[type=text] {
    background-color:white;
}

label {
    color:  var(--dark-blue);
    font-weight: 400; 
}

.typed-txt {
    color:  var(--dark-blue);
}


#to {
    border: none;
    width: 100%;
    padding: 8px;
    border-radius:  0.625em;
    width: 100%;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}



.thanks {
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
  
    overflow: hidden;
    position: relative; 
}

/*.thanks .btn-fill-dark {
    width: 50%;
}*/

/*PRIVACY POLICY******************************************************************************************************/


.privacy-policy {
    text-align: left;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
  
    overflow: hidden;
    position: relative;
}


.privacy-policy li {
    text-align: left;  
    list-style: none;
    font-size: var(--base-font-size);
    font-weight: 500;
    margin-top: -1em;
}




/*FOOTER*************************************************************************************************************/


.footer {
    width: 100%;
    /*min-height: 150px;*/
    min-height: 9.375em;
    background-color: #fff;
    color: #000;
    text-align: center;
    /*padding: 20px;*/
    padding: 1.25em;
    margin: 0;
    display: block;
    z-index: 30;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .1));

}


/*********************************************************************************************************************/




@media (min-width: 800px) {
   
    .row {
        display: flex;
        align-items: left;
    }

  
    .col {
        /*width: 50%;*/
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*justify-content: flex-start;*/
    }


    .privacy-policy .col + .col {
        margin-left: 2.5em;
        /*align-items: flex-start;*/
      
    }

    .mc-logo {
        width:20%;
    }

    .intro .btn-fill {
        width: 30%;
        margin: 0 auto;
    }

    
    .about h1, p {
        text-align: left;
    }

    .about .btn-fill-dark {
        margin-left: 0;
        width: 30%;

    }

    .about-two .btn-fill-dark {
        width: 30%;
        margin: 0 auto;

    }

    .about-two p {
        text-align: center;
    }

    .good-to-know .btn-fill-dark {
        margin-left: 0;
        width: 30%;

    }

    .areas-covered .btn-fill-dark {
        width: 30%;
        margin: 0 auto;
    }
    .contact .col {
        justify-content: flex-start;
    }

    .contact .btn-fill-dark {
        margin-left: 0;
        width: 30%;

    } 

    .contact h1 {
        text-align: left;
        
    }

    .dsktp-nav {
        visibility: visible;
    }

    .menu-icon {
        visibility: hidden;
        display: none;
    }

    .nav-phone {
        visibility: hidden;
    }

}    