
@import "./utilitys.css";

:root{
    --primary:#3dcfd3;
    --dark:#161616;
    --pure:#ffffff;
    --ternary:#898989;
    --light:#f2f2f2;
    --secondary:#070606;
}
body{
    font-family:'Poppins',sans-serif;
}
html{
    scroll-behavior: smooth;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smotthing:antialiased
}

header{
    background:var(--dark);
    clip-path: polygon(0 0,100% 0,100% 100%,70% 90%,0 100%);
}
.container{
    max-width:620px;
    padding: 0 10px;
    margin: 0 auto;
}
header nav .left a{
    color: var(--pure);
    text-decoration: none;
    margin-right: 0.7rem;
    text-transform: uppercase;
    transition: all .3s ease;
}

.logo-img{
    width: 35px;
    height: 35px;
}
header nav .left a:hover{
    color: var(--primary);
}
.left{
    align-items: center;
}
.flex{
    align-items: center;
    justify-content: space-between;
}
header nav{
  padding: 5px 0;
}
header nav .branding{
    margin-right: 2rem;
}
.hero{
    align-items: center;
    
}
.hero img{
    width: 250px;
    margin-right: 40px;
    filter:drop-shadow(5px 5px 20px white );
}
.hero .right{
    color: var(--pure);
    margin-top: -50px;
}
.hero .right h6{
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 10px;
    margin-top: 10px;
}
.hero .right h1{
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 5px;
    line-height: 35px;
}
.hero .right h1 span{
    color: var(--primary);
}
.hero .right p{
    line-height: 20px;
    margin-bottom: 20px;
    font-size: 10px;
}
/* -------hero section end------ */

section{
    padding: 35px 0;
}
.about-img{
    height: 350px;
    width: 250px;
}
section.about h1{
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 400;
}
section.about h1 span{
    color: var(--primary);
}
section.about h3{
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 550;
}
section.about p{
    font-family:'lato', sans-serif;
    font-size: 13px;
    color: var(--ternary);
    line-height: 18px;
}
section.about .socail{
    display: flex;
    margin-top: 20px;

}
section.about .socail a{
    display: flex;
    align-items: center;
    justify-content:center;
    width: 25px;
    height: 25px;
    border: 2px solid vae(--primary);
    border-radius: 50%;
    margin-right: 2px;
    padding: 5px;
    transition: all .3s ease;
}
section.about .socail a:hover{
    background: var(--primary);
}
.section-heading{
    color: var(--secondary);
    text-align: center;
    margin-bottom: 1.3rem;
    line-height: 5px;
}
.section-heading span{
    color: var(--primary);

}
.section-heading + p{
    color: var(--ternary);
    font-family:'lato',sans-serif;
    margin-bottom: 50px;
    text-align: center;
}
.card img{
    background: var(--primary);
    height: 60px;
    width: 60px;
    padding: 10px;
}
section.services{
    background: var(--light);
}

section.services .card-wrapper{
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-column-gap:1.3rem;
    grid-row-gap:3.5rem;
}
section.services .card-wrapper .card{
    background: var(--pure);
    padding: 2rem 1.3rem;
    position: relative;
    padding-top: 2.5rem;
    text-align: center;
    transition: all .3s ease;

}
section.services .card-wrapper .card img{
    position: absolute;
    top:-2.3rem;
    left: 50%;
    transform: translatex(-50%);
}
section.services .card-wrapper .card h2{
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 5px;
}
section.services .card-wrapper .card p{
    font-family: 'lato',sans-serif;
    color: var(--ternary);
    font-size: 12px;
    line-height: 15px;
}
section.services .card-wrapper .card:hover{
    background: var(--dark);
}
section.services .card-wrapper .card:hover h2,section.services .card-wrapper .card:hover p{
    color: var(--pure);
}
/* ------card-section-end------ */
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%,65% 85%,0 100%);
    padding-bottom: 70px;
}
section.freelancer h1{
    font-size: 20px;
    margin-bottom: 15px;
}
section.freelancer p{
    margin-bottom: 20px;
    font-size: 15px;
    font-family: 'lato',sans-serif;
}
/* ------freelancer-section-end------ */
section.reviws .slider .slide img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}
section.reviws .slider .slide{
text-align: center;
display: flex;
align-items: center;
flex-direction: column;
padding: 0 7rem;
}
section.reviws .slider .slide p{
    font-family: 'lato',sans-serif;
    color: var(--ternary);
    margin-bottom: 0.8rem;
    font-size: 15px;
}
section.reviws .slider .slide span{
    font-size: 10px;
}
section.reviws .slider-dots .dots{
    list-style-type:none;
    display: flex!important;
    justify-content: center;
}
section.reviws .slider-dots .dots button{
    font-size: 0;
    width: 8px;
    height: 5px;
    margin-right: 0.2rem;
    background: var(--ternary);
    cursor: pointer;
    border-radius: 50px;
    border: none;
}
section.reviws .dots li.slick-active button{
background: var(--primary);
width: 20px;

}



/* ------slider-section-end------ */
section.work{
    background: var(--light);
    align-items: center;
    text-align: center;
}
section.work .card-wrapper{
    margin: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 1.3rem;
    grid-column-gap: 1.3rem;
}
section.work .card-wrapper .cards{
    height: 160px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;

}
section.work .card-wrapper .cards .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61,207,211,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--light);
    opacity: 0;
    transition: all .3s ease;
}
section.work .card-wrapper .cards .overlay a{
    color: var(--secondary);
    text-decoration: none;
}
section.work .card-wrapper .cards img{
    height: 100%;
    width: 100%;
}
section.work .card-wrapper .cards:hover .overlay{
    opacity: 1;
}
/* -- ------ourwork-section-end------ -- */
section.blog{
    background: var(--dark);
    clip-path: polygon(0 0,100% 0,100% 100%,75% 90%,0 100%);
    padding-bottom: 10rem;
}
section.blog .section-heading{
    color: var(--pure);
}
section.blog .card-wrapper .blog-card .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} 


section.blog .card-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 1.3rem;
}
section.blog .card-wrapper .blog-card{
    background: var(--pure);
    border-radius: 5px;
    overflow: hidden;
 
}
section.blog .card-wrapper .blog-card .card-content{
    padding:0.8rem 0.8rem;

}
section.blog .card-wrapper .blog-card .card-content h1{
    font-size: 15px;
    font-weight: 600;
}
section.blog .card-wrapper .blog-card .card-content a{
    color: var(--secondary);
    text-decoration: none;
}
section.blog .card-wrapper .blog-card .card-content span{
    color: var(--ternary);
    font-size: 10px;
}
section.blog .card-wrapper .blog-card .card-content p{
    font-family:'lato',sans-serif;
    color: var(--ternary);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}
section.blog .card-wrapper .blog-card .card-content a.read-more{
    font-size: 15px;
}
section.blog .card-wrapper .blog-card .card-content a:hover{
    color: var(--primary);
}
 /* ------ourwork-section-end------  */
 section.contact .card-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 3rem;
 }
 section.contact .card-wrapper .contact-card{
    text-align: center;
 }
 section.contact .card-wrapper .contact-card img{
    height: 30%;
    width: 20%;
    margin-bottom: 2rem;
 }
 section.contact .card-wrapper .contact-card h2{
  font-weight: 400;
  margin-bottom: 0.8rem;
 }
 section.contact .card-wrapper .contact-card h6{
    font-weight: 400;
    font-size: 15px;
    color: var(--ternary);
    margin-bottom: 3rem;
 }
 section.contact .input-wrap{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2.5rem;
    margin-bottom: 1.5rem;
 }
 section.contact .input-wrap-2{
    display: flex;
    flex-direction: column;
 }
 section.contact input{
    padding: 5px ;
    border: 1px solid var(--light);
 }
 section.contact .input-wrap-2 input{
    margin-bottom: 1.5rem;
    border: 1px solid var(--light);
 }
 section.contact .input-wrap-2 textarea{
    padding: 5px ;
    border: 1px solid var(--light);
 }
 section.contact input:focus{
    outline: none;
 }
 section.contact .input-wrap-2 textarea:focus{
    outline: none;
 }
 section.contact .btn-wrapper{
    text-align: center;
    margin-top: 2rem;
 }
 /* -----contact-section-end------ */
 footer{
    background: var(--dark);
    text-align: center;
    padding: 2rem 0;

 }
 footer .footer-logo{
    width: 6%;
    height: 5%;
    margin-bottom: 1rem;
   
 }
 footer .footer-socail img{
    width: 25px;
    height: 25px;
    background: var(--pure);
    border-radius: 50%;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
 }
 footer .Copyright{
    color: var(--ternary);
    font-size: 10px;
 }