@import 'utilities.css';

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root{
    --primary: #3DCFD3;
    --dark: #161616;
    --pure: #FFFFFF;
    --ternary: #898989;
    --light: #F2F2F2;
    --secondary: #070606;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smotthing:antialiased;
}

body{
    font-family:'Poppins',sans-serif ;
}

.logo{
    color:White;
}

header{
    background-color: #161616;
    clip-path: polygon(0 0,100% 0,100% 100%,70% 95%,0 100%);
}

.container{
    max-width: 1152px;
    padding: 0 15px;
    margin: 0 auto;
}

header nav .left a{
    color: white;
    text-decoration: none;
    margin-right: 2rem;
    text-transform: uppercase;
    transition: all .3s ease;
}

header nav .left a:hover{
    color: #3DCFD3;
}

header nav{
    padding:2rem 0;
}

header nav .logo{
    margin-right: 3rem;
}

.hero .left img{
    width: 500px;
}

.hero .right{
    color: white;
    
}

.hero .right h6{
    font-size: 1.6rem;
    color: #3DCFD3;
    margin-bottom: 0.5rem;
}

.hero .right h1{
    font-size: 4rem;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero .right h1 span{
    color: #3DCFD3;
}

.hero .right p{
    line-height: 1.9;
    margin-bottom: 2rem;
}

section{
    padding: 6rem 0;
}

section.about h1{
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
}

section.about h1 span{
    color: #3DCFD3;
}

section.about h3{
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

section .about p{
    font-family: 'Lato',sans-serif;
    color: #161616;
    line-height: 1.9;
}

section .about .social{
    display: flex;
}

section .about .social a{
    background: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
} 

.scl{
    width: 35px;
    
}

.sectionheading{
    color: #070607;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 0.5;
}

.sectionheading + p{
    color:var(--ternary);
    font-family: 'Lato',sans-serif;
    margin-bottom: 8rem;
    text-align: center;
}

.sectionheading span{
    color:var(--primary) ;
}

section.services{
    background-color: var(--light);
}

section.services .cardwrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 6rem;
}

section.services .cardwrapper .card{
    background: var(--pure);
    padding: 3rem 2rem;
    position: relative;
    padding-top: 5rem;
    text-align: center;
    transition: all .3s ease;
}

section.services .cardwrapper .card img{
    position: absolute;
    top: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
}

section.services .cardwrapper .card h2{
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

section.services .cardwrapper .card p{
    font-family: 'Lato',sans-serif;
    color: var(--ternary);
    line-height: 1.6;
}

section.services .cardwrapper .card:hover{
    background: var(--dark);
}

section.services .cardwrapper .card:hover h2,section.services .cardwrapper .card:hover p{
    color: var(--pure);
}

section.freelancer{
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(../images/camera.png);
    color: var(--pure);
    clip-path: polygon(0 0,100% 0,100% 100%,67% 80%,0 100%);
    padding: 14rem;
}

section.freelancer h1{
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

section.freelancer p{
    margin-bottom: 2rem;
    font-family: 'Lato',sans-serif;
}