*{
    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: #a09dab;
    --main-color: #004c70;
    --big-font: 4rem;
    --h2-font: 3rem;
    --p-font: 1.1rem;
}

body{
    background: var(--bg-color);
    color: var(--text-color);
}

header{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding:  30px 2% 30px 2%;
    transition: .3s;
}
header.sticky{
    background: var(--bg-color);
    padding: 13px 25%;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.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;
}
.top-btn{
    display: inline-block;
    padding: 9px 30px;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    color: var(--text-color);
    letter-spacing: 1px;
    font-size: var(--p-font);
    font-weight: 500;
    transition: ease .50s;
}

.top-btn:hover{
    transform: scale(1.1);
    background: var(--main-color);
    border: 2px solid var(--main-color);
    color: var(--bg-color);
}

section{
    padding: 100px 20% 100px 20%;
}
.home{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background: url(../img/bg.svg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 15rem;
}
.home-text h1{
    margin: 10px 0px 25px;
    font-size: var(--big-font);
    font-weight: 500;
    line-height: 1;
}
.home-text h5{
    margin-bottom: 23px;
    font-size: 19px;
    font-weight: 500;
}
span{
    color: var(--main-color);
}
.home-text h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}
.home-text p{
    font-size: var(--p-font);
    color: var(--second-color);
    line-height: 28px;
    margin-bottom: 20px;
}
.home-text .job a{
    color: #0f6839;
}

.social a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(116, 116, 116);
    font-size: 17px;
    color: var(--bg-color);
    margin-right: 22px;
    margin-bottom: 30px;
}
.social a:hover{
    transform: scale(1.1);
    background: var(--main-color);
    transition: .50s;
}

.btn{
    display: inline-block;
    color: var(--bg-color);
    background: var(--main-color);
    font-size: var(--p-font);
    padding: 10px 40px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 30px;
    transition: ease .40s;
    margin-left: 13px;
}
.btn:hover{
    transform: scale(1.1);
}

.home-img img{
    max-width: 100%;
    width: 540px;
    height: auto;
}

.items{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    grid-gap: 2rem;
    align-items: center;
    text-align: center;
}
.sub-box{
    padding: 45px 45px 45px 45px;
    transition: ease .50s;
    cursor: pointer;
}
.sub-img img{
    max-width: 100%;
    width: 40px;
    height: auto;
    margin-bottom: 20px;
}
.sub-img iconify-icon{
    max-width: 100%;
    width: 40px;
    height: auto;
    margin-bottom: 20px;
}
.sub-box h3{
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
}
.sub-box p{
    font-size: var(--p-font);
    color: var(--second-color);
    line-height: 29px;
}
.sub-box a{
    position: absolute;
    width: auto;
    font-size: 17px;
    font-weight: 500;
    color: #000000ce;
    bottom: 0%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;
}
.sub-box:hover{
    background: linear-gradient(rgba(124, 124, 124, 0.5) 0%, #797979);
    box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
    border-radius: 12px;
    will-change: transform;
    transform: perspective(1000px) rotateX(4.80deg) rotateY(10.23deg) scale3d(1.05, 1.05, 1.05);
}
.sub-box:hover h3{
    color: #1d1b1b;
}
.sub-box:hover p{
    color: var(--bg-color);
}
.sub-box:hover a{
    bottom: 4%;
    opacity: 1;
}

.about{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 3rem;
}
.about-img img{
    max-width: 100%;
    width: 540px;
    height: auto;
}
.about-text h2{
    font-size: var(--h2-font);
    font-weight: 500;
    margin: 8px 0px 25px;
    line-height: 1.1;
}
.about-text h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}
.about-text p{
    max-width: 550px;
    font-size: var(--p-font);
    color: var(--second-color);
    line-height: 28px;
    margin-bottom: 45px;
}
.about-text a{
    color: var(--main-color);
}

.heading{
    text-align: center;
    margin-bottom: 20px;
}
.heading h2{
    font-size: var(--h2-font);
    font-weight: 500;
    margin: 7px 0px 20px;
    line-height: 1.1;
}
.heading h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}
.heading p{
    font-size: var(--p-font);
    color: var(--second-color);
    line-height: 28px;
}

.projects .view_sec{
    margin-top: 50px;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}
.projects .view_sec a{
    color: var(--main-color);
}

.projects-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    grid-gap: 2rem;
    align-items: center;
    margin-top: 5rem;
    text-align: center;
    cursor: pointer;
}

.col{
    position: relative;
}
.col img{
    max-width: 100%;
    width: 550px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);
}
.layer h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;
}
.layer:hover h3{
    bottom: 70%;
    opacity: 1;
}

.layer h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;
}
.layer:hover h5{
    bottom: 25%;
    opacity: 1;
}

.skill-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, auto));
    grid-gap: 3rem;
    justify-content: center;
    margin-top: 5rem;
    cursor: pointer;
}

.row{
    min-width: 450px;
    justify-content: space-between;
    width: auto;
    height: 300px;
    background: #ffffff;
    box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
    border-radius: 12px;
    padding: 45px 45px 45px 45px;
    transition: ease .40s;
    cursor: pointer;
}
.row h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 2px;
}
.row p{
    font-size: var(--p-font);
    color: var(--second-color);
}
.row:hover{
    will-change: transform;
    transform: perspective(1000px) rotateX(4.80deg) rotateY(10.23deg) scale3d(1.05, 1.05, 1.05);
}

.s img{
    height: 65px;
    width: 65px;
    padding: 15px;
    border-radius: 35%;
    margin-bottom: 20px;
}
.s.s-one img{
    background: #baebcd;
}
.s.s-two img{
    background: #d2d7a3;
}
.s.s-three img{
    background: #f09494;
}
.s.s-four img{
    background: #9ad5da;
}
.s.s-five img{
    background: #f3cb96;
}
.s.s-six img{
    background: #e6a2e6;
}
.container{
    width: 100%;
    height: auto;
    padding: 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    grid-gap: 2rem;
    align-items: center;
    margin-top: 5rem;
    background: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.conc_info{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, auto));
    grid-gap: 2rem;
    align-items: center;
}
.conc_info .box img{
    width: 50%;
    height: 50%;
}
.conc_info .box{
    text-align: center;
    color: #353535;
    font-weight: 600;
}
.email_sec{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    grid-gap: 2rem;
    align-items: center;
}

form{
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    padding: 2vw 3vw;
    width: 90%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
}
form h3{
    color: #191919;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-left: 20px;
}
form input, form textarea{
    width: 100%;
    border: 0;
    border-radius: 10px;
    margin: 10px;
    padding: 15px;
    outline: none;
    background: #f5f5f5f5;
    font-size: 14px;
}
form button{
    padding: 15px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 25px;
}
#my-form-status{
    text-align: center;
    margin-top: 20px;
    color: var(--main-color);
    font-weight: 500;
}
.foot{
    text-align: center;
    font-size: var(--p-font);
    color: var(--main-color);
    font-weight: 500;
}

#go_top_btn{
    position: fixed;
    padding-top: 4px;
    bottom: 50px;
    right: 50px;
    font-size: var(--p-font);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--main-color);
    border: none;
    cursor: pointer;
    display: none;
}
@media (max-width: 1425px){
    header{
        padding: 16px 3%;
        transform: .3s;
    }
    header.sticky{
        padding: 10px 3%;
        transition: .3s;
    }
    section{
        padding: 70px 3%;
        transition: .3s;
    }
    .con_bg{
        width: 95%;
        transition: .3s;
    }
    :root{
        --big-font: 4rem;
        --h2-font: 2.3rem;
        --p-font: 1rem;
        transition: .3s;
    }
}

@media (max-width: 970px){
    #menu-icon{
        display: block;
    }
    .home{
        min-height: 80vh;
    }
    .navlist{
        position: absolute;
        top: -600px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--main-color);
        text-align: right;
        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%;
    }
}

@media (max-width: 820px){
    .home{
        grid-template-columns: 1fr;
        min-height: 130vh;
        grid-gap: 1rem;
    }
    .home-text{
        padding: 55px;
    }
    .home-img{
        text-align: center;
    }
    .home-img img{
        width: 440px;
        height: auto;
    }
    .about{
        grid-template-columns: 1fr;
    }
    .about-img{
        text-align: center;
        margin-bottom: 30px;
    }
    :root{
        --big-font: 3rem;
        --h2-font: 2rem;
    }
    section{
        padding: 65px 3%;
        transition: .3s;
    }
    .container{
        display: block;
    }
    .conc_info .box{
        width: 100%;
    }
    .email_sec{
        margin-top: 15px;
        width: 100%;
        margin-left: 50px;
    }
}
@media (max-width: 540px){
    .container{
        display: block;
    }
    .conc_info .box{
        width: 100%;
    }
    .email_sec{
        width: 100%;
        margin-top: 15px;
        margin-left: 20px;
    }
}