*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: url("images/buildingbackground.webp");
    background-position: center;
    background-size: cover;
    position: relative;
}

/*--------- nav top menu -------*/

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #20e500;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

/*--------- Splash page text -------*/

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: rgba(0,0,0,0.5);
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #20e500;
    background: #20e500;
    transition: 1s;
}
nav .fa{
    display: none;    
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #20e500;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}




/*------ portfolio ------*/


.portfolio{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.portfolio-col {
        box-sizing: border-box;
        padding: 20px;
        display: block;
        text-decoration: none;

    } 
h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}


.portfolio-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; 
    box-sizing: border-box;
    padding: 20px;
    display: block;
    text-decoration: none;
}

.green-background {
        background-color: #c6e2b5;
    }  

.portfolio-col img{
    width: 100%;
    border-radius: 5px;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.portfolio-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*--------- gallery container (images show in intial view) ---------*/

.container{
    width: 80%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
}
.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
.gallery img{
    width: 100%;
}


/*------ About the Artist on index page------*/


#about{
    
    width: 80%;
    margin: auto;
    padding: 40px;
    text-align: justify;
    color: #1b1b1b;
    
}
.about-container{
    width: 100%;
    min-height: 80vh;
    align-items: center;
    justify-content: center;
    
    
    
}
.row{
    
    justify-content: space-between;
    
    
}
.about-index-col-1{
    margin: auto;
    flex-basis: 35%; 
    
}
.about-index-col-1 img{
    width: 100%;
    border-radius: 10px;  
}
.about-index-col-2{
    width: 100%;
    margin: auto;
    flex-basis: 60%;
    
}

.sub-title{
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.tab-titles{
    
    flex-wrap: wrap;
    display: flex;
    
    margin: 20px 0 40px;
    
}
.tab-links{
    
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #20e500;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color: #18aa01;
    font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}


/*------- testimonials --------*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 10px;
    text-align: center;
}
.testimonial-col{
    flex-basis: 40%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: justify;
    background: #c6e2b5;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #20e500;
}
@media(max-width: 700px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}

/*----- hero button ------*/

/*.hero-btn{
    
    
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 18px;
    background: #6f16dc;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #20e500;
    background: #20e500;
    transition: 1s;
}
nav .fa{
    display: none; 
}


/*.about{
    width: 100%;
    text-align: justify;
    padding: 30px 0;
}
h1{
    text-align: center;
    font-weight: 600;
}

h4{
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.icons .fa{
    color: #8ed066;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #8ed066;
}


    
/*------- call to action -------*/
    
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: url(images/bottom_background.webp);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
 }
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}



/*--------footer---------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h1{
    text-align: center;
    font-weight: 400;   
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #8ed066;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #8ed066;
}


/*--------------- about html page ------------*/

.sub-header{
    height: 30vh;
    width: 100%;
    background-image: url(images/background.webp);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
sub-header h1{
    margin-top: 100px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 30px;
}

.about-html-col-1{
    text-align: justify;
    flex-basis: 100%;
    padding: 30px 2px;
    
}
.about-html-col-2{
    width: 75%;
    height: auto;
    margin-left: 20px;
   
}
.about-html-col-2 img{
    width: 100%;
    height: auto;
}


.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}

/*-----------contact page---------*/

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #20e500;
    margin: 10px;
    margin-right: 30px;  
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #1b1b1b;
    font-weight: 400;
}
