*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Montserrat', sans-serif;
    margin: .008em;
}
/* header css */
.wrapper{
    
    background-color: #98b06f;
}

li, a, button{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fcf7ff;
    text-decoration: none;
}

header{
    display: flex;
    padding: 2em;
    justify-content: space-between;
    align-items: center;
    background-color: #d1ffb9;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* background-image: url(/images/rock\ stack.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px; */

    /* svg {
        width: 3em;
        cursor: pointer;
        margin-bottom: 120px ;
        margin-right: 10px;
    } */
    
}

nav{
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 50%;
    z-index: 999;
    background-color: white;
    text-transform: uppercase;
    transform: translateX(100%);
    transition: transform .5s ease-in-out;

    .nav_links {
        list-style-type: none;
        padding: 0px;
        margin-top: 4em; 

        a {
            color: black;
            padding: .75em 2em;
            display: block;
            width: 100%;
        }
    }

    .close{
        float: right;
        color: #3f403f;
        margin: 2em;
        margin-left: 160px;
        width: 2.3rem;
    }
}

.logo{
    width: 200px;
    cursor: pointer;
}

.nav_links{
    list-style-type: none;
}

.nav_links li{
    display: inline-block;
    padding: 8px 10px;
}

.nav_links li a{
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover{
    color: #98b06f;
    transform: scale(1.1);
        transition: all 0.3s ease 0s;
}

.nav-button{
    padding: 9px 25px;
    color: #fcf7ff;
    background-color: #98b06f;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.nav-button:hover{
    color: #d1ffb9;
    background-color: #475841;
}

.open-nav {
    transform: translateX(0);
}



@media only screen and (max-width: 680px) {
    .menu{
        width: 3em;
        margin-top: -8em;
        margin-right: -.6em;
    } 

    .close{
        width: 2.5em;
        float: right;
        margin: 1em;
    }

    ul li a{
        color: #475841;
        font-size: 18px;
    }

    .nav-button{
        padding: 7px 20px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 680px) {
    
    .menu{
        width: 3em;
        margin-top: -8em;
        margin-right: .6em;
    } 
}

@media only screen and (min-width: 900px) {
   
    .menu {
        display: none;
    }

    nav {
        transform: translateX(0);
        position: unset;
        display: block;
        width: auto;
        height: auto;
        background: none;

        svg.close {
            display: none;
        }
        ul {
            display: flex;
            margin: 0;
            
            a {
                padding: .5em 1.5em;

                &:hover {
                    text-decoration: underline;
                    color: #d1ffb9;
                }
            }
        }
    }

}

/* hero css */

.hero-head{
    font-size: 30px;
    text-align: center;
    margin: 40px;
    color: #fcf7ff;
}

.hero{
    display: flex;
}
.about-me{
    width: 95%;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    
}

.info{
    padding: 10px;
    text-align: center;
    color: #fcf7ff;
}

p{
    font-size: 16px;
    text-align: center;
    color: #fcf7ff;
}

.about-image{
    width: 35em;
    padding: 0.5em;
    border-radius: 1.5em;
}

@media only screen and (max-width: 680px) {
    
    .about-image{
        width: 100vw;
    }
}

@media only screen and (max-width: 900px) {

    .hero{
        display: inline;
        
        p{
            text-align: center;
        }
    }


    .about-image{
        width: 100%;
        
    }

}

@media only screen and (min-width: 900px) {

    .about-image{
        margin-top: 4em;
        width: 50vw;
    }

    .info{
        margin: 2em;
        /* padding: 0 4em; */
    }
}


/* card css */

.info-text{
    padding: 20px;
    color: #fcf7ff;
}

.card-holder{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #3f403f;
    border-radius: 10px;
    max-width: 400px;
    padding: 20px;
    margin: auto;
    text-align: center;
    margin: 40px;
    cursor: pointer;
    background-color: #475841;
    color: #fcf7ff;

  /* background-attachment: fixed; */
    /* background-image: url(images/svg-background.jpg);
    background-position: left; */
}

.prices{
    text-align: center;
    font-size: 30px;
}

.price-card-holder{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.price-card{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #3f403f;
    border-radius: 10px;
    max-width: 400px;
    padding: 20px;
    margin: auto;
    text-align: center;
    margin: 40px;
    cursor: pointer;
    background-color: #475841;


  /* background-attachment: fixed; */
    /* background-image: url(images/svg-background.jpg);
    background-position: left; */
}

.bottom-button{
    font-size: larger;
    width: 18em;
    padding: 9px;
    color: #475841;
    background-color: #d1ffb9;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.bottom-button:hover{
    color: #d1ffb9;
    background-color: #475841;
    transform: scale(1.1);
        transition: all 0.3s ease 0s;
}


/* contact section css for background */

.contact {
    --s: 70px; /* control the size */
  --c: #98b06f;
  
  --_l: #0000 46%,var(--c) 47% 53%,#0000 54%;
  background:
    radial-gradient(100% 100% at 100% 100%,var(--_l)) var(--s) var(--s),
    radial-gradient(100% 100% at 0    0   ,var(--_l)) var(--s) var(--s),
    radial-gradient(100% 100%,#0000 22%,var(--c) 23% 29%, #0000 30% 34%,var(--c) 35% 41%,#0000 42%)
    #475841;
  background-size: calc(var(--s)*2) calc(var(--s)*2);
}

.contact-container{
    display: flex;
    justify-content: space-evenly;
    margin: 6em 0;
    padding: 1em;
}
.contact-head{
    color: #fcf7ff;
    text-align: center;
    margin: 20px;
    padding: 20px;
}

h6{
    color: white;
}

.phone-icon {
    width: 40px;

    &:hover{
        transform: scale(1.5);
        transition: all 0.3s ease 0s;
    }
}

.facebook-icon{
    width: 40px;

    &:hover{
        transform: scale(1.5);
        transition: all 0.3s ease 0s;
    }
}

.email-icon{
    width: 40px;

    &:hover{
        transform: scale(1.5);
        transition: all 0.3s ease 0s;
    }
}

.location-icon{
    width: 40px;

    &:hover{
        transform: scale(1.5);
        transition: all 0.3s ease 0s;
    }
}

.arrow-icon{
    width: 50px;

    &:hover{
        transform: scale(1.5);
        transition: all 0.3s ease 0s;
    }
}
@media only screen and (max-width: 680px) {


    
   h6, a {
    text-align: center;
   }
}