:root {
    --clr-text: #d6f3d9;
    --clr-back: #051a11;
    --clr-primary:#125732;
    --clr-accent: #f8db7b;
    --clr-accent2: #f8bc61;
    --clr-hover: #baf0be;
    --clr-active: #FFFFFF;

    --ff-logo: "Cinzel", monospace;
    --ff-title: "Merriweather", sans-serif;
    --ff-serif: "Merriweather Sans", sans-serif;
}

html {
    font-family: var(--ff-serif);
    background-color: var(--clr-back);
    color: var(--clr-text);
    font-size: 1.125rem;
    text-align: center;
}
body {
    margin: 0;
}

img {
    display: block;
}

section {
    padding: 80px 0.6em;
}
.section-title {
    font-family: var(--ff-title);
    font-weight: bold;
    background-color: black;
    color: var(--clr-accent);
    border-radius: 10px;
    border: 2px solid var(--clr-accent2);
    width: 335px;
    margin:  20px auto 20px;
    padding: 10px 0;
}

a {
    text-decoration: none;
    color: inherit;
} a:hover{text-decoration: underline;}

                                        /* Typography */

.header-logo {
    font-family: var(--ff-logo);
    font-size: 30px;
    display: inline-block;
    width: 300px;
}
h1{
    font-size: 28px;
}
h1, h2, h3, p{
    margin: 0;
}

h2, h3{
    font-family: var(--ff-title);
}

h2 {
    font-size: 2.5rem;
}

p {
    padding: 5px;
    text-align: center;
}
a.active{
    background-color: #000
}

                                        /* Navigation bar*/

nav {
    position:fixed;
    background: var(--clr-back);
    height: 80px;
    width: 100%;
}

.header-logo{
    width: 300px;
    margin: -10px 0 0 34px;
}   
.logo-link{
    float:left;
    margin-left:50px;
}
.logo-link:hover{ background: none}

nav ul{
    display:flex;
    justify-content: space-between;
    margin: 0 30px;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 10px;
    padding-left: 5px;
}
nav ul li a{
    color: #99f59f;
    font-size: 17px;
    text-transform:capitalize;
    border-radius: 3px;
    padding: 28px 20px;
    font-weight: 600;
}
 nav a:active, nav a:hover {
    background: var(--clr-primary);
    color:white;
    transition: .3s;
}
.filebutton{
    min-width: 150px;
}
.checkbtn{
    font-size: 30px;
    color: #99f59f;
    float:right;
    line-height: 80px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}
#check{
    display:none;
}

@media only screen and (max-width: 1800px){

    .header-logo{
        font-size: 30px;
        margin: 0;
        width: 260px;
    } 
    .logo-link{
        margin-left: 10px;
    }
    nav ul li a {
        font-size: 16px;
        
    }
}
@media only screen and (max-width: 1580px){
   
    .checkbtn{
        display:block;
    }
    
    nav ul{
        display: block;
        position:fixed;
        width: 70%;
        height: 100vh;
        background: black;
        top:80px;
        left: 100%;
        text-align: center;
        transition: all 0.5s;
        padding: 0;
    }
    nav ul li{
        display: block;
        padding: 20px 0;
        line-height: 15px;
        border-bottom: 1px solid #333;

    }
    nav ul li a{
        font-size: 20px;
    }
     nav a:hover,nav a:active{
        background: none;
        color: #32a117;
    }
    #check:checked ~ ul{
        left: 30%;
    }
}
@media only screen and (max-height: 480px){
    
    nav ul li{
        line-height: 0px;
    }
    .logo-link {
        max-width: 50px;
    }
}

                    /* Footer */

footer {
    background-color: black;
    COLOR: white;
    padding: 3em 0em;
    display: flex;
    justify-content:space-evenly;
    min-width: 300px;
}
footer p { 
}

.footer-nav,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}
    .footer-nav a {
         color: inherit;
         padding: 0.5em;
         text-decoration: none;
    }
    .footer-nav a:hover{
        text-decoration: underline;
    }
.list-item {
    padding: 0.7em 0 0.7em;
}


    .footer-social a{
        color: inherit;
}
.social-link {}

.footer-icon {
    width: 4em;
    margin: 2.6rem 0;
}                   
                                        /* Buttons */




                                        /* Homepage Styles */

.top-banner {
    padding: 0 1em;
    text-align: center;
    font-size: 14px;
    line-height: 0.9;
}
.header-p {
    display: none;
}
.notice {
    background-color: black;
    font-size: 14px;
    text-align: center;
    padding-top: 85px;
    min-width: 300px;
}
                                /* Hero Section */
.hero {
    display: flex;
    background-color: var(--clr-primary);
    background-image: url(imgs/diamonds.jpg);
    background-blend-mode: multiply;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    font-family: var(--ff-title);
    padding: 7vh 0.3vw;
    text-shadow: 2px 2px 2px black;
}

.greenlines {padding: 1.2em;}
.greenlines hr{
    color: var(--clr-text);
    width: 25vw;
} 
.hero-right{
    display: none;
}
.hero-portrait{
    border-radius: 50%;
    margin: auto 10px auto 0;
    width: 350px;
    height: auto;
    max-width: 24vw;
    padding: 0 15px 0 10px;
}
.hero-portrait-p{
    border-radius: 50%;
    margin: auto;
    width: 100%;
    height: auto;
    max-width: 150px;
}

.hero-p {
    padding: 0 5vw 0 5vw;
    text-indent: 1.5em;
    text-align: left;
}
@media only screen and (min-width: 500px){
    .hero-title{
        font-size: 36px;
    }
}
@media only screen and (min-width:768px){
    .hero-title{
        font-size: 48px;
    }
    .hero-p{
        text-align: center;
        line-height: 150%;
    }
    .hero-portrait-p{
        max-width: 24vw;
        padding-left: 20px;
    }
}
@media only screen and (min-width:1100px){
    .hero-title{
        font-size: 58px;
    }
    .hero-right{
        display: block;
        float: right;
    }
    .hero-portrait-p{
        display: none;
    }
}
@media only screen and (max-width: 1200px){
    .hero{
        background-size: cover;
        background-position: center;
    }
}

                    /* Our Services Section */


.serv-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 1em;
    justify-items: stretch;
    align-items: stretch;
    padding-top: 15px;
}
.service,  
.serv-all {
    background-color: #7eca85;
    color: black;
    padding: 0;
    margin: auto;
    border-radius: 15%;
    border: 3px solid lightgreen;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}
.service {
    width: 100%;
    max-width: 220px;
    height: 45vw;
    max-height: 220px;
    line-height: 1;
    transition: 0.2s ease-in-out;
}
.serv-all{
    grid-column: 1/3;
    width: 90%;
    font-size: 22px;
    line-height: 0;
    border-radius: 15px;
    transition: 0.2s ease-in-out;
}
        .serv-all:hover,
        .service:hover {
            background-color: var(--clr-accent);
            border-color:black;
            text-decoration: underline;
        }
        .serv-all:active,
        .service:active {background-color: var(--clr-active);}
        

.serv-img {
    min-width: 20%;
    max-width: 50%;
    display: block;
    padding: 6% 0 0 0;
    margin:  0 auto;
}
.service h4 {
    color: black;
    margin: 6% 0 0 0;
    font-size: 18px;
}
@media (min-width: 500px){
    
    .service h4{
        margin: 2%;
        font-size: 22px;
    }
}
@media only screen and (min-width: 768px) {
    
    .serv-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .service{
        height: 21vw;
        max-height: 250px;
        width: 21vw;
        max-width: 250px;
    }
    .serv-all{
        grid-column: 1/5;
    }
}
@media only screen and (min-width: 1080px){
    .services{
        max-width: 1080px;
        margin: auto;
    }

    .serv-grid{
        max-width: 1080px;
    }
    .service{
        width: 220px;
        height: 220px;
    }

    .service h4{
        padding-top: 6%;
        font-size: x-large;
    }
}


                    /* About Us Section */

.about-us {
    background: var(--clr-back);
    background-image: url(imgs/Horses.jpg);
    background-blend-mode: multiply;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
} 
.about-us h3, 
.about-us div{
    padding: 20px 0 8px;
}
.about-us h3{
    font-size:26px;
}

.abt-article1,
.abt-article2 {
    margin: 0;
    padding-bottom: 10px;
    text-indent: 5vw;
}                       .abt-article1 h3, .abt-article2 h3{text-indent:0; text-align: center;}
                        .abt-article1 p, .abt-article2 p {text-align: center; padding: 10px;}
.abt-portrait{
    border-radius: 50%;
    margin: auto 10px auto 0;
    width: 350px;
    height: auto;
    max-width: 24vw;
}


.abt-office {
    border-radius:5px;
    margin: auto;
    width: 100%;
    height: auto;
    max-width: 550px;
}

@media only screen and (min-width:1080px){

    .abt-article1,
    .abt-article2{
        max-width:1440px;
        margin: auto;
    }

    .abt-article1{
        display:flex;
        flex-direction: row;
    } .abt-article1 p,
      .abt-article2 p {text-align: left; padding: 0 2em;}
    .abt-portrait{margin-left: 2vw;}
    
    .abt-article2{
        display: flex;
        flex-direction: row-reverse;
    }
}



                    /* Contact Us */

.contact-details{
    padding: 5px 5px;
    background-color: black;
    border-radius: 5px;
    display: flex;
    font-size: larger;
    max-width: 900px;
    margin: auto;
}
#contact p {margin:auto; text-align: center;}

.form-container{
    border: 3px solid;
    margin: 0 30%;
}
#contact-form {
    text-align: left;
    width: 70%;
    max-width: 900px;
    margin:  1rem auto;
    border: 2px solid;
    padding: 2rem;
    }
#contact-form label {
        display: block;
}
input, textarea {
    display: block;
    width: 100%;
    margin: 0.2rem auto;
}
textarea{
    resize: vertical;
}
#contact-block {
    padding: 5px;
}
.submit-button, .reset-button {
    background-color: var(--clr-text);
    font-weight: 800;
    font-size: inherit;
    border-radius: 5px;
    border: 2px solid silver;
    background-color: var(--clr-primary);
    color: ivory;
    max-width: 300px;
    margin-bottom: 10px;
}
.submit-button:hover, .reset-button:hover{
    background-color: var(--clr-hover);
    color: black;
    transition: 0.3s ease;
}

.faqContainer {
    
}
.faqSidebar{
    padding-top: 5px;
    border-right: 5px solid var(--clr-accent2);
    border-bottom: 5px solid var(--clr-accent2);
    border-top: 5px solid var(--clr-accent2);
    border-radius: 0% 10px 10px 0%;
}
.faqContent {
    background:black;
}
/*#status{
    font-size: x-large;
    font-weight: 600;
    width: 900px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 8px;
    color: black;
}
#status.success{
    background-color: var(--clr-accent2);
    border: 6px solid var(--clr-accent);
    animation: status 4s ease forwards;
}
#status.error{
    background-color: #dd2a2a;
    border: 6px solid var(--clr-accent2);
    animation: status 4s ease forwards;
}
@keyframes status{
    0%{
        opacity: 1;
        pointer-events: all;
    }
    90%{
        opacity: 1;
        pointer-events: all;
    }
    100%{
        opacity: 0;
        pointer-events: none;
    }
}
*/
@media only screen and (max-width: 750px){
    .contact-details{
        flex-direction: column;
    }
}

    /* TEMPORARY STYLES*/

.wip{
    font-size: 100px;
}