*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
html{
    background-color: #27231c;
    font-size: 15px;
    color: white;
    font-family: 'Abhaya Libre';
}









/*UNIVERSAL-STYLE*/
.container{
    max-width: 1220px;
    margin: auto;
}
.column{
    display: flex;
/*    height: 540px;*/
}
.column > div{
    width: 50%;
}
h2{
    font-size: 45px;
    font-weight: normal;
    padding: 20px 0px;
}
p{
    line-height: 30px;
    font-family: 'Arial';
    letter-spacing: 1px;
}
.text p{
    line-height: 30px;
    font-family: 'Arial';
    letter-spacing: 1px;
    font-size: 14px;
}
.text{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 120px;
}
.text h6{
    font-size: 150%;
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    padding: 30px 0px;
}
.text-wraper button{
    padding: 20px 40px;
    background-color: inherit;
    outline: none;
    border: solid 2px #ff4373;
    margin-top: 40px;
    color: #ff4373;
    font-weight: bold;
}
.text-wraper button:hover{
    cursor: pointer;
    background-color: #ff4373;
    color: white;
    transition: 0.4s;
}
.checked{
    color: #ffca00;
}



/*HEADER with NAVBAR = HERO*/
header{
    background-image: url(images/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 650px;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    flex-wrap: wrap;
}
nav button{
    display: none;
}
#ul{
    list-style-type: none;
    display: flex;
}
li > a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 20px;
    font-family: 'Arial';
    letter-spacing: 1px;
}



/*INTRO*/
.intro{
/*    background-color: blueviolet;*/
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.intro > div{
    text-align: center;
}
.intro h6{
    font-size: 150%;
    font-weight: normal;
}
.intro h1{
    font-size: 500%;
    font-weight: normal;
    padding: 20px 0px;
}
.intro button{
    padding: 20px 40px;
    background-color: inherit;
    outline: none;
    border: solid 2px #ff4373;
    margin-top: 40px;
    color: #ff4373;
    font-weight: bold;
}
.intro button:hover{
    cursor: pointer;
    background-color: #ff4373;
    color: white;
    transition: 0.4s;
}



/*CONTACT-LINKS*/
.contact-links{
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0px;
    margin-bottom: 90px;
    font-family: 'Arial';
    letter-spacing: 1px;
}
.contact-links > div{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-links i{
    font-size: 25px;
    padding: 20px;
}



/*ABOUT-ME-WRAPER*/
#about-me-wraper{
    display: flex;
}
#about-me-wraper > div{
    width: 50%;
}
#about-me-wraper .about{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#about-me-wraper .artist{
    background-image:  url(images/about-me-image.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}



/*SECTION-TWO*/
#section-two-showcase-image{
    background-image: url(images/section-two.image.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}



/*SECTION-THREE*/
#section-three-showcase-image{
    background-image: url(images/section-three.image.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}



/*COMMENTS*/
#what-they-say{
    text-align: center;
    padding: 50px 0px;
}
#what-they-say h2{
    font-size: 45px;
    font-weight: normal;
    padding: 20px 0px;
}
.client-comment{
    padding: 30px 60px;
}
.comment-text{
    padding: 10px 0px;
}
.client-wraper{
    display: flex;
    align-items: center;
}
.client-wraper > div{
    margin-left: 15px;
}
.client-wraper span{
   line-height: 1px;
}
.client-name, .client-title{
    line-height: 30px;
    font-family: 'Arial';
    letter-spacing: 1px;
    font-size: 13px;
}



/*FOOTER*/
.footer-background-image{
    background-image: url(images/footer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
footer > div:nth-child(odd){
    text-align: center;
    width: 73%;
    margin: auto;
}
footer > div{
    padding: 75px 0px;
}
footer p{
    padding: 30px 0px;
}
footer button{
    padding: 20px 40px;
    background-color: inherit;
    outline: none;
    border: solid 2px #ff4373;
    margin-top: 40px;
    color: #ff4373;
    font-weight: bold;
}
footer button:hover{
    cursor: pointer;
    background-color: #ff4373;
    color: white;
    transition: 0.4s;
}
footer #copyright{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}









/*MOBILE SCREEN*/
@media screen and (max-width: 481px){
    
    /*UNIVERSAL-STYLE*/
    .column{
        display: flex;
        flex-direction: column;
    }
    .column > div{
        width: 100%;
    }
    .text{
        padding: 60px 30px;
        text-align: center;
    }
    .text h2, .about h2, #what-they-say h2, footer h2{
/*        background-color: aquamarine;*/
        font-size: 38px;
    }
    .services-line{
        margin: auto;
    }
    
    
    /*HEADER with NAVBAR = HERO*/
    header{
        min-height: 350px;
    }
    nav{
        display: flex;
        flex-direction: column;
    }
    nav .titlelogo{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
    }
    nav .titlelogo img{
        width: 170px;
    }
    nav .titlelogo button{
        display: block;
        padding: 9px 14px;
        font-size: 20px;
        outline: none;
        border: none;
        border-radius: 2px;
    }
    nav #ul{
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        margin-top: 80px;
        background-color: #27231c;
        height: 0px;
        overflow: hidden;
        transition: 0.4s;
    }
    nav #ul li{
        border-top: solid 1px white;
    }
    
    
    /*INTRO*/
    .intro h1{
        font-size: 38px!important;
    }
    
    
    /*CONTACT-LINKS*/
    .contact-links{
        display: flex;
        flex-direction: column;
         margin-bottom: 90px!important;
    }
    .contact-links > div{
        padding: 20px 0px;
    }
    
    
    /*ABOUT-ME-WRAPER*/
    #about-me-wraper{
        display: flex;
        flex-direction: column;
    }
    #about-me-wraper .about{
        width: 100%;
        height: 250px;
    }
    #about-me-wraper .artist{
        background-size: cover;
        width: 100%;
        height: 520px;
    }
    
   
    /*SECTION-TWO*/
    #two .column{
        flex-direction: column-reverse;
    }
    #section-two-showcase-image{
        height: 250px!important;
    }
    
    
    /*SECTION-THREE*/
    #section-three-showcase-image{
        height: 250px!important;
    }
   
    
    /*COMMENTS*/
     #comments .column{
        display: flex;
        flex-direction: column!important;
    }
    .client-comment{
        padding: 30px;
    }
    
    
    /*FOOTER*/
    footer h2{
        font-size: 38px;
    }
    footer #copyright{
        padding: 60px 0px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    footer #copyright > div{
        padding: 10px 0px!important;
    }
    
}
/*TABLET SCREEN*/
@media screen and (max-width: 769px){
    
    /*UNIVERSAL-STYLE*/
    .column{
        display: flex;
        flex-direction: column;
    }
    .column > div{
        width: 100%;
    }
    .text{
        padding: 60px 30px;
        text-align: center;
    }
    .text h2, .about h2, #what-they-say h2, footer h2{
/*        background-color: aquamarine;*/
        font-size: 38px;
    }
    .services-line{
        margin: auto;
    }

    
    
    /*CONTACT-LINKS*/
    .contact-links{
        display: flex;
        margin-bottom: 0px;
    }
    .contact-links > div{
        padding: 20px 0px;
    }
    
    
    /*ABOUT-ME-WRAPER*/
    #about-me-wraper{
        display: flex;
    }
    #about-me-wraper .about{
        width: 100%;
    }
    #about-me-wraper .artist{
        background-size: cover;
        width: 100%;
        height: 520px;
    }
    
   
    /*SECTION-TWO*/
    #two .column{
        flex-direction: column-reverse;
    }
    #section-two-showcase-image{
        height: 500px;
    }
    
    
    /*SECTION-THREE*/
    #section-three-showcase-image{
        height: 500px;
    }
   
    
    /*COMMENTS*/
    #comments .column{
        display: flex;
        flex-direction: row;
    }
    .client-comment{
        padding: 30px;
    }
    
    
    /*FOOTER*/
    footer #copyright{
        padding: 60px 0px;
        display: flex;
        text-align: center;
    }
    footer #copyright > div{
        padding: 10px 50px;
    }
}
/*LARGER TABLET SCREEN*/
@media screen and (max-width: 1279px){
    
    /*UNIVERSAL-STYLE*/
    .column{
        display: flex;
        flex-direction: column;
    }
    .column > div{
        width: 100%;
    }
    .text{
        padding: 60px 30px;
        text-align: center;
    }
    .text h2, .about h2, #what-they-say h2, footer h2{
/*        background-color: aquamarine;*/
        font-size: 38px;
    }
    .services-line{
        margin: auto;
    }
    
    
    
    
    /*CONTACT-LINKS*/
    .contact-links{
        display: flex;
        margin-bottom: 0px;
    }
    .contact-links > div{
        padding: 20px 0px;
    }
    
    
    /*ABOUT-ME-WRAPER*/
    #about-me-wraper{
        display: flex;
    }
    #about-me-wraper .about{
        width: 100%;
    }
    #about-me-wraper .artist{
        background-size: cover;
        width: 100%;
        height: 520px;
    }
    
   
    /*SECTION-TWO*/
    #two .column{
        flex-direction: column-reverse;
    }
    #section-two-showcase-image{
        height: 500px;
    }
    
    
    /*SECTION-THREE*/
    #section-three-showcase-image{
        height: 500px;
    }
   
    
    /*COMMENTS*/
    #comments .column{
        display: flex;
        flex-direction: row;
    }
    .client-comment{
        padding: 30px;
    }
    
    
    /*FOOTER*/
    footer #copyright{
        padding: 60px 0px;
        display: flex;
        text-align: center;
    }
    footer #copyright > div{
        padding: 10px 50px;
    }
}