* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    text-transform: capitalize;
    transition: all .4s;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
    
}

html::-webkit-scrollbar {
    background: transparent;
    width: .3rem;
}


img {
    max-width: 100%;
    height: auto;
}

&{
    --main-color: rgb(233, 123, 50);
    --bg-color1: #222;
    --bg-color2: #111;
    --text-color-1: #eee;
    --text-color-2: #fff;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .8);
    --focus-color: #535aed;
    --border-color: rgb(104, 238, 155);
    --big-fz: calc(24px + (65 - 25) * ((100vw - 300px) / (1900 - 300)));
    --medium-fz: calc(16px + (35 - 16) * ((100vw - 300px) / (1900 - 300)));
    --small-fz: calc(12px + (18 - 12) * ((100vw - 300px) / (1900 - 300)));
}

body {
    background: var(--bg-color1);
}
body.active {
    --bg-color1:#fff;
    --bg-color2:#eee;
    --text-color-1:#222;
    --text-color-2:#111;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .8);
    --focus-color: #898bb8;
    --border-color: rgb(19, 19, 193);
}

section {  
     
    padding: 2rem 9%;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3.5rem;
    font-size: var(--small-fz);
    color: var(--text-color-1);
    background: var(--main-color);
    border-radius: .5rem;
    cursor: pointer;
    
}

.btn:hover {
    letter-spacing: .5rem;
    background: var(--main-color);
    color: var(--text-color-2);
}

.btn:focus {
    background: var(--focus-color);
    
}

.heading {
    text-align: center;
    font-size: var(--big-fz);
    margin-bottom: 3rem;
    color: var(--text-color-2);
}

.heading span {
    color: var(--main-color);
}

.just-validate-error-label {
    color: #f44932;
}


/* heder section start*/
 .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-color2);
    padding: 1.5rem 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--box-shadow);
 }

 .header .logo {
    color: var(--text-color-2);
    font-size: var(--medium-fz);
    font-weight: 800;
 }

 .header .icons {
    display: flex;
    gap: 1rem;
    
 }

 .header .icons div {
    width: calc(27px + (40 - 27) * ((100vw - 300px) / (1900 - 300)));
    height: calc(27px + (40 - 27) * ((100vw - 300px) / (1900 - 300)));
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: var(--small-fz);
    color: var(--text-color-1);
    background: var(--bg-color1);
    cursor: pointer;
 }

 .header .icons div:hover {
    background: var(--main-color);
    color: var(--text-color-2);
 }

 .header .navbar {
    position: absolute;
    top: 115%;
    right: 5%;
    background: var(--bg-color2);
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    width: 20rem;
    padding: 1rem;
    display: none;
 }

 .header .navbar.active {
    display: block;
 }

.header .navbar a {
        display:block;
        font-size: var(--small-fz);
        padding: 1rem;
        color: var(--text-color-1);
        transition:  0.5s;
}

.header .navbar a:hover {
        /* background: var(--main-color); */
        transform: translateX(1rem);
        color: var(--main-color); 
}
    /* heder section end*/

    /*icon-contact section start*/
    .header .icons-contact {
        display: flex;
        gap: 1rem;
        left: 20rem auto;
    }
    .header .icons-contact .fab {
        width: calc(27px + (40 - 27) * ((100vw - 300px) / (1900 - 300)));
        height: calc(27px + (40 - 27) * ((100vw - 300px) / (1900 - 300)));
        display:flex;
        position: relative;
        justify-content: center;
        align-items:center;
        border-radius: 50%;
        font-size: var(--small-fz);
        color: var(--text-color-1);
        background: var(--bg-color1);
        cursor: pointer;
    }

    /*icon-contact section end*/

   .header .resume_label {
        position: absolute;
        top: 6rem;
        right: 13%;
        
        
        font-size: var(--small-fz);
        color: var(--text-color-1);
    }

    /* media queries */
@media(max-width: 1200px) {
        .header {
            padding: 1.5rem 5rem;
        }
    }
@media screen and (max-width: 790px) {
        .header .navbar {
            right: 1%;
            width: 10rem;
            padding: 1rem, 5rem;
        }
}
    

    
    


