*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}
:root
{
    --bg-color:#ffffff;
    --text-color:#000;
    --second-color:#666;
    --main-color: #1B421A;
    --big-font:5rem;
    --h2-font:3rem;
    --p-font:1.1rem;
}
body
{
    height:100vh;
    background: var(--bg-color);
    color: var(--text-color);  
}  


/*header section start*/


header
{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;   
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 30px 18%;
    transition: .3s;
}

.logo img
{
    max-width: 100%;
    width: 130px;
    height: auto;
} 
.navlist
{
    display: flex;
}
.navlist li
{
    position: relative;
}
.navlist a
 {
    font-size: var(--p-font);
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 27px;
}
.navlist a::after
{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--main-color);
    bottom: -3px;
    left: 0;
    transition: ease .40s;
}
.navlist a:hover::after
{
	width:100%;
}
#menu-icon
{
    font-size: 35px;
    color: var(--text-color);
    z-index: 10001;
    cursor: pointer;
    display: none;
}
section 
{
padding: 5%;
}
.home
{
 min-height: 100vh;
 height: 100%;
 width: 100%;
 background: url(../img/background.png);   
 background-size: cover;
 background-position: center;
 position: relative;
 display: grid;
 grid-template-columns: repeat(2,1fr);
 align-items: center;
 grid-gap: 20rem ;
}
.home-text h1
{
    margin: 10px 0px 25px;
    font-size: var(--big-font);
    line-height: 1;
    font-weight: 500;
    color: var(--main-color);
}
.home-text h5
{
    margin-bottom:23px;
    font-size:23px;
    font-weight:500;
}
span
{
    color:orangered;
}
.home-text h3
{
    font-size:20px;
    font-weight:500;
    color: orangered;
}
.home-text p
{
    font-weight: var(--p-font);
    color: var(--second-color);
    line-height: 28px;
    margin-bottom: 20px;
}
.socail a
{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 17px;
    margin-right: 22px;
    margin-bottom: 30px;
}
.socail a:hover
{
    transform: scale(1.1);
    background:orangered;
    transition:.5s;
}
.btn
{
    display: inline-block;
    color: var(--bg-color);
    background:orangered;
    font-size: var(--p-font);
    padding: 10px 40px;
    font-weight: 500;
     line-height: 24px;
     border-radius: 30px;
     transition: ease .40s;
}
    .btn:hover  
{
    transform: scale(1.1);  
}   
.home-img img   
{
    max-width: 100%;
    width: 430px;
    height: auto;
    margin-left: 100px; 
}   
header.sticky   
{
    background: var(--bg-color);
    padding: 13px 18%;
    box-shadow: 0px 0px 10px  rgb(0 0 0 / 10%); 
}

/*      1425 width screen start meadia      */

    @media (max-width: 1425px) {
    header
    {
        padding: px 3%;
        transition: .3s;
    }
    header.sticky
    {
        padding: 16px 3%;
        transition: .3s;
    }
    .home-text h1
     {
        font-size: 4.3rem;
     }
     .home-img img
     {
        padding-top: 1px;
        width: 400px;
        margin-left: -5px;
        height: auto;
     } 
     .home-text
     {
        margin-left: px;
     }
    }


/*      1425 width screen ends meadia       */


/*      970 width screen start meadia       */

    @media (max-width: 970px){
	#menu-icon{
		display: block;
	}
    
    .navlist
    {
        position: absolute;
        top: -700px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--main-color);
        text-align: center;
        transition: all .40s;
    }
    .navlist a
    {
        display: block;
        padding: 1.2rem;
        margin: 1.5rem;
        border-right: 2px solid var(--bg-color);
        color: var(--bg-color);
    } 
    .navlist a:hover
    {
        background: var(--bg-color);
        color:var(--main-color);
    }
    .navlist a::after
    {
        display: none;
    }
    .navlist.active
    {
       top: 100%; 
    }
    .home
    {
        min-height: 80vh;
    }
    .home-text
     {
         padding-top: 55px;
     }
     .home-img
     {
        text-align: center;
     }
     .home-img img
     {
        width: 700px;
        margin-left: -50px;
        height: auto;
     }
     .home-text h1
     {
        font-size: 2.3rem;
     }
     header
     {
         padding: 1px 3%;
         transition: .3s;
     }
     header.sticky
     {
         padding: 5px 3%;
         transition: .3s;
     }
}

/*      970 width screen ends meadia        */

/*      800 width screen start meadia       */

    @media (max-width: 640px)
    {
     .home
     {
        
        grid-template-columns: 1fr;
        height:100vh;
        grid-gap: 1rem;
     }
     .about
     {
        grid-template-columns: 1fr;
        min-height: 130vh;
        grid-gap: 1rem;
     }
     .home-text
     {
         padding-top: 85px;
     }
     .home-text h1
     {
        font-size: 4rem;
     }
     .home-img
     {
        text-align: center;
     }
     .home-img img
     {
        
        height: auto;
        margin-left: 0px;
     }
     header
     {
         padding: 1px 3%;
         transition: .3s;
     }
     header.sticky
     {
         padding: 5px 3%;
         transition: .3s;
     }
    }

/*800 width screen ends meadia*/

/*  header section ends   */

/*  about section start  */

/*   about section start here   */

    .heading
    {
    margin-left: 15px;
    font-size: 4rem;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .heading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }

    .about .row-1
    {
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    padding-bottom: 2rem;
    }

    .about .row-1 .image
    {
    flex:1 1 25rem;
    }

    .about .row-1 .image img
    {
    height: 100%;
    width:100%;
    object-fit: cover;
    border:1rem solid #F3DBCE ;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem #000;
    }

    .about .row-1 .content
    {
    flex:1 1 50rem;
    }

    .about .row-1 .content h3
    {
    color:#333;
    font-size: 3rem;
    margin-bottom: 20px;
    }

    .about .row-1 .content p
    {
    color:#666;
    font-size: 1.7rem;
    padding:.7rem 0;
    margin-top: 10px;
    }

    .about .row-1 .content .box-container
    {
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    padding: 0.5rem 0;
    }

    .about .row-1 .content .box-container .box
    {
    flex:1 1 20rem;
    }

    .about .row-1 .content .box-container .box span
    {
    color:var(--main-color);
    }

    .about .btn
    {
    margin-left: 10px;
    margin-top: 20px;
    }

/* 1425 width start here*/

@media (max-width: 1425px) 
{
    
    .heading
    {
    margin-left: -10px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .heading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }


.about .row-1
{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    padding-bottom: 2rem;
}

.about .row-1 .image
{
    flex:1 1 20rem;
}

.about .row-1 .image img
{
    height: 100%;
    width:95%;
    object-fit: cover;
    border:1rem solid #F3DBCE;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem #000;
    margin-left: -25px;
}

.about .row-1 .content
{
    flex:1 1 40rem;
    
}

.about .row-1 .content h3
{
    color:#333;
    font-size: 2.5rem;
    margin-left: -50px;
}

.about .row-1 .content p
{
    color:#666;
    font-size: 1.7rem;
    padding:.7rem 0;
    margin-top: 10px;
    margin-left: -50px;
}

.about .row-1 .content .box-container
{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    padding: 0.7rem 0;
    margin-left: -px;
}

.about .row-1 .content .box-container .box
{
    flex:1 0 10rem;
}
}
/* 1425 width ends here */

@media (max-width: 970px) 
{
    .about .row-1 .content
    {
        margin-left: 60px;
    }
    .about .row-1 .content h3
    {
        color:#333;
        font-size: 3rem;
        margin-left: -50px;
    }
    .about .row-1 .image img
    {
        height: 100%;
        width:100%;
        object-fit: cover;
        border:1rem solid #F3DBCE;
        border-radius: .5rem;
        box-shadow: 0 .5rem 1rem #000;
        margin-left: 10px;
    }
    .heading
    {
    margin-left: 40px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .heading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }
}

/* About section Ends here*/

/* Skills start here*/

.about .row-2
{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    align-items: center;
}

.about .row-2 .skills
{
    flex:1 1 26rem;
}

.about .row-2 .skills .progress
{
    padding:1rem 0;
}

.about .row-2 .skills .progress h3
{
    display: flex;
    justify-content: space-between;
    padding:.7rem 0;
    font-size: 1.7rem;
    color:#111;
    font-weight: 400;
}

.about .row-2 .skills .progress .bar
{
    width:100%;
    background:#ccc;
    overflow:hidden;
    height:1rem;
    border-radius: 50rem;
}

.about .row-2 .skills .progress .bar span
{
    display:block;
    background:var(--main-color);
    border-radius: 50rem;
}

.about .row-2 .skills .progress:nth-child(1) .bar span
{
    width:95%;
}

.about .row-2 .skills .progress:nth-child(2) .bar span
{
    width:80%;
}

.about .row-2 .skills .progress:nth-child(3) .bar span
{
    width:75%;
}

.about .row-2 .skills .progress:nth-child(4) .bar span
{
    width:90%;
}

/* progress  animtion start here*/

/*HTML animtion*/

.anb1 span 
    {
    height: 100%;
    animation: anb1 10s ease-out;
    }
    
    @keyframes anb1
    {
    0%
    {
        width: 0%;
    }
    95%
    {
        width: 95%;
    }
    }
    
    /*CSS animtion*/

    .anb2 span 
    {
    height: 100%;
    animation: anb2 10s ease-out;
    }
    
    @keyframes anb2 
    {
    0%
    {
        width: 0%;
    }
    80%
    {
        width: 80%;
    }
    } 

    /*JAVASCRIPT animtion*/

    .anb3 span 
    {
    height: 100%;
    animation: anb3 10s ease-out;
    }
    
    @keyframes anb3 
    {
    0%
    {
        width: 0%;
    }
    75%
    {
        width: 75%;
    }
    }

    /*BOOTSTRAP animtion*/

    .anb4 span 
    {
    height: 100%;
    animation: anb1 10s ease-out;
    }
    
    @keyframes anb4 
    {
    0%
    {
        width: 0%;
    }
    90%
    {
        width: 90%;
    }
    }

/*  progress  animation ends here*/

.about .row-2 .box-container
{
    flex:1 1 20rem;
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.about .row-2 .box-container .box
{
    flex:1 1 15rem;
    background:#fff;
    padding:2rem;
    border-radius: .5rem;
    box-shadow:  .5rem 1rem rgba(0,0,0,.1);
    cursor: default;
}

.about .row-2 .box-container .box h3
{
    color:var(--main-color);
    font-size: 3rem;
}

.about .row-2 .box-container .box p
{
    color:#666;
    font-size: 1.7rem;
    padding-top: .5rem;
}

/*Width 1425px start here*/
@media (max-width: 1425px) 
    {
    .sheading
    {
    margin-left: 15px;
    font-size: 4rem;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .sheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    margin-left: -12px;
    }
    .about .row-2 .skills
    {
        flex:1 1 34rem;
    }
    .about .row-2 .box-container
    {
        flex:1 1 35rem;
        display: flex;
        flex-wrap: wrap;
        gap:1.5rem;
    }
    }

    /*Width 1425px start here*/

/* Skills ends here*/

/*  service start here*/

.seheading
    {
    margin-left: 10px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .seheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }

.service .box-container
{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.service .box-container .box
{
    flex:1 1 25rem;
    text-align: center;
    padding:2rem;
    background:#fff;
    border-radius: .5rem;
    box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    transition: ease.45s;
    cursor: pointer;
}
/*Hover */
.service .box-container .box:hover
{
    flex:1 1 25rem;
    text-align: center;
    padding:2rem;
    background:#fff;
    border-radius: .5rem;
    box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
	will-change: transform;
	transform: perspective(1000px) rotateX(4.80deg) rotateY(10.23deg) scale3d(1.05,1.05,1.05);
}


.service .box-container .box i
{
    height:6rem;
    width:6rem;
    line-height: 6rem;
    font-size: 2.5rem;
    color:#fff;
    background:var(--main-color);
    border-radius: 50%;
}

.service .box-container .box h3
{
    color:#444;
    font-size: 2.2rem;
    padding-top: 1rem;
}

.service .box-container .box p
{
    color:#666;
    font-size: 1.7rem;
    padding-top: .5rem;
}

@media (max-width:1425px) 
{
    .seheading
    {
    margin-left: 10px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .seheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    
    }
    .service .box-container .box
    {
        flex:1 1 23rem;
        text-align: center;
        padding:2rem;
        background:#fff;
        border-radius: .5rem;
        box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    }
}

/*  service start here*/

/*  portfolio start here*/

.pheading
    {
    margin-left: 10px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .pheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }


.portfolio .box-container
{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.portfolio .box-container .box
{
    flex:1 1 27rem;
    height:25rem;
    position: relative;
    overflow:hidden;
    border:1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    background:#fff;
    border-radius: .5rem;
}

.portfolio .box-container .box img
{
    height:100%;
    width:100%;
    object-fit: cover;
    border-radius: .5rem;
    position: relative;
    z-index: 1;
}

.portfolio .box-container .box:hover img
{
    height:75%;
    width:75%;
}

.portfolio .box-container .box h3
{
    position: absolute;
    bottom:.5rem; left:1rem;
    font-size: 1.8rem;
    color:#333;
    text-transform: uppercase;
}

.portfolio .box-container .box .icons
{
    position: absolute;
    top:1rem; right:1rem;
}

.portfolio .box-container .box .icons a
{
    display: block;
    height:4rem;
    width:4rem;
    border-radius: .5rem;
    background: #eee;
    color:#333;
    font-size: 1.7rem;
    line-height: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.portfolio .box-container .box .icons a:hover
{
    background:var(--main-color);
    color:#fff;
}
@media (max-width: 1425px) 
{
    .portfolio .box-container .box
    {
        flex:1 1 24rem;
        height:25rem;
        position: relative;
        overflow:hidden;
        border:1rem solid #fff;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        background:#fff;
        border-radius: .5rem;
    }

    .pheading
    {
    margin-left: 20px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .pheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }
    
}

/*  portfolio ends here*/

/*  contact start here   */

.cheading
    {
    margin-left: 50px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .cheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }

.contact .icons-container
{
    display: flex;
    gap:1.5rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}

.contact .icons-container .icons
{
    flex:1 1 25rem;
    text-align: center;
    padding:2rem;
    background:#fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
}

.contact .icons-container .icons i
{
    height:5rem;
    width:5rem;
    line-height: 5rem;
    font-size: 2rem;
    background: var(--main-color);
    color:#fff;
    border-radius: 50%;
}

.contact .icons-container .icons h3
{
    color:#111;
    font-size: 2rem;
    padding:.5rem 0;
    padding-top: 1rem;
}

.contact .icons-container .icons p
{
    color:#666;
    font-size: 1.7rem;
}

.contact .row
{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.contact .row form
{
    flex:1 1 55rem;
    background:#fff;
    padding:0 2rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
}

.contact .row .map
{
    flex:1 1 25rem;
    border:1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
    width: 100%;
}

.contact .row form .box,
.contact .row form textarea
{
    width: 100%;
    border-bottom: .1rem solid #333;
    color:#333;
    text-transform: none;
    font-size: 1.7rem;
    padding:1rem 0;
    margin:1rem 0;
}

.contact .row form .box:focus,
.contact .row form textarea:focus
{
    border-color: var(--main-color);
}

.contact .row form .box::placeholder,
.contact .row form textarea::placeholder
{
    text-transform: capitalize;
}

.contact .row form textarea
{
    height: 20rem;
    resize: none;
}

.contact .row form .btn
{
    margin-top: 0;
    margin-bottom: 1.5rem;
}

@media (max-width: 1425px) 
{
   

    .cheading
    {
    margin-left: 50px;
    font-size: 4rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .cheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }

    .contact .icons-container .icons
{
    flex:1 1 20rem;
    text-align: center;
    padding:2rem;
    background:#fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
}

.contact .row form
{
    flex:1 1 10rem;
    background:#fff;
    padding:0 2rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
}

.contact .row .map
{
    flex:1 1 20rem;
    border:1rem solid #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
    width: 100%;
}
    
}


@media (max-width: 800px) 
{
   

    .cheading
    {
    margin-left: 50px;
    font-size: 3.5rem;
    margin-top: 15px;
    padding-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    }

    .cheading span
    {
    color: var(--main-color);
    text-transform: uppercase;
    }
}
/*  contact ends here*/

/* footer section start here*/

.footer{
    margin-top: 2rem;
    font-size: 2rem;
    padding:2.5rem;
    text-align: center;
    color:#666;
    background: #fff;
}

.footer span{
    color:var(--main-color);
}



/*footer section ends here*/