:root {
    --site-color-01: #186f32;
    --site-color-01-hover: #3b0d27;
}

html {
    font-size: 62.5%;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-VariableFont_wdth,wght);
}

body {
    background-color: #186f32;
    text-align: center;
    padding: 20px;
}

.main-intro img {
    width: 220px;
    padding-bottom: 0;
}

h1 {
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.5;
    color: #fff;
    font-family: Roboto, san sarif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 30px;
}

h2 {
    font-size: 2.3rem;
    line-height: 1.5;
    color: #fff;
    font-family: Roboto, san sarif;
    font-weight: 525;
    padding: 20px;
}

p {
    font-size: 2rem;
    font-family: Roboto, san sarif;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    padding: 0 60px;
}

a {
    font-size: 2rem;
    line-height: 1.75;
    color: white;
    font-family: Roboto;
}

a:hover {
    font-size: 2.2rem;
    line-height: 1.75;
    color: #92e09f;
    font-family: Roboto;
    cursor: pointer;
}

iframe {
    padding: 20px;
}

/* FOOTER */

.footer-main {
    width: 100%;
    padding: 60px;
}

.footer-main-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-getintouch {
    padding: 10px 20px;
    margin: 20px 0 60px;
    border: 2px solid white;
    font-weight: 600;
    transition: ease-in-out 200ms;
}

.footer-getintouch:hover {
    border: 2px solid var(--site-color-01);
}

.footer-sitemap {
    margin: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.footer-sitemap a {
    line-height: 30px;
}

.footer-sitemap a:hover {
    color: #000;
}

.footer-sitemap p {
    text-transform: uppercase;
}

/* MOBILE VERSION options: <600, 601ps, 768px, 992px, 1200px */

@media only screen and (max-width: 600px) {
   
    img {
        width: 70%;
        height: auto;
    }

    p {
        width: 100%;
        height: auto;
        padding-left: 0px;
        padding-right: 0px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .footer-getintouch {
        margin: 0 0 60px;
    }
    
    .footer-sitemap {
        flex-wrap: wrap;
    }
   
    .footer-sitemap ul:nth-child(1) {
        border-left: none;
        padding-left: 0;
    }
    
    .footer-sitemap ul:nth-child(1),
    .footer-sitemap ul:nth-child(2),
    .footer-sitemap ul:nth-child(3) {
        flex-basis: 100%;
        text-align: center;
        padding-bottom: 20px;
    }
    
    .footer-sitemap p {
        padding: 0 20px;
    }
    
    .footer-sitemap ul:nth-child(4) p {
        text-align: center;
    }
}