@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --main-color: #E4AD5F;
}
*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    translate: all .2s linear;
    line-height: 1.5;
   
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    background: #0C2438;
    padding-left: 30rem;
}
/* Header CSS */
header{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #678094;
    /* background: #3C413F; */
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    flex-flow: column;
    padding: 10rem 2rem ;
    width: 30rem;
    text-align: center;


}
header .logo{
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: bolder;
    color: #A4B0BC;
}

header .logo span{
    text-transform: uppercase;
    color: var(--main-color);
}

header .navbar a{
    display: block;
    text-align: justify;
    font-size: 2rem;
    margin: 2rem 0;
    color: #E4AD5F;
    
}

header .navbar a:hover{
    letter-spacing: .2rem;
    color: #A4B0BC;
}

header .follow a{
    font-size: 2.5rem;
    margin: 0 .7rem;
    color: #E4AD5F;
}

header .follow a:hover{
    color: #A4B0BC;
}

#menu-bars{
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    background: var(--main-color);
    color: #EEEEEE;
    border-radius: .5rem;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

.cursor-1{

    position: absolute;
    top: 0px;
    left: 0px;
    height: 1rem;
    width: 1rem;
    background: #E4AD5F;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;

}

.cursor-1.active{
    height: 4rem;
    width: 4rem;
    opacity: .3;
}

.cursor-2{

    position: absolute;
    top: 0px;
    left: 0px;
    height: 4rem;
    width: 4rem;
    border: .1rem solid #E4AD5F;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    transition: .1s linear;
    
}

.cursor-2.active{
    display: none;
}

/* section css */

section{
    padding: 1rem 5%;
    min-height: 100vh;


}
/* Home section CSS */
.container{
    width: 100%;
    display: flex;
    justify-content: space-evenly;

}
.home{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    /* color: #EEEEEE; */
    color: #A4B0BC;
}
.hello{
    width: 90%;
    margin-top: 120px;
    font-weight: 700;
}
.hello span{
    font-family: 'Clicker Script',cursive ;
    font-size: 42px;
    font-weight: 700;
    color: var(--main-color);
}
.content{
    width: 75%;
    padding-top: 60px;
}
.image_box{
    width: 20%;
}
.content h3{
   
    font-size: 32px;
    font-family: 'Clicker Script',cursive ;
}
.content p{
    width: 90%;
    font-size: 20px;
    padding-top: 12px;
    text-align: justify;
}
.typing{
    color: var(--main-color);
    font-family: 'Clicker Script',cursive ;
}

.image_box{
    margin-top: 100px;    
    position: relative;
    width: 400px;
    height: 400px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    overflow: hidden;
}
.image_box::before{
    content: '';
    position: absolute;
    inset: -10px 90px;
    background: linear-gradient(315deg,#678094,#E4AD5F);
    transition: 0.5s;
    animation: animate 4s linear infinite;

}
.image_box:hover::before{
    inset: -20px 0px;
}
@keyframes animate{

    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.image_box::after{
    content: '';
    position: absolute;
    inset: 6px;
    background: #0C2438;
    border-radius: 50%;
    z-index: 1;
}
.image_content{
    position: absolute;
    inset: 30px;
    border: 6px solid #070a1c;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.image_content img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:fill;
    transition: 0.5s;
    pointer-events: none;
}

.image_box:hover .image_content img{

    opacity: 0;
}
.image_content a{
    font-size: 28px;
    background: #678094;
    color: #E4AD5F;
    padding: 10px 25px;
    border-radius: 15px;
    transition: 1.5s;
    
}
.image_content a:hover{
    letter-spacing: 0.2em;
}

/* .btn{
    background-color: #678094;
    width: 150px;
    height: 40px;
    font-size: 18px;
    padding: 5px 0px;
}
.btn a{
    color: #E4AD5F;
} */

.content a{
    position: relative;
    width: 150px;
    height: 50px;
    font-size: 18px;
    background: #678094;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #E4AD5F;
    border-radius: 25px;

}
.content a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E4AD5F;
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
    transform-origin:right ;
    border-radius: 25px;

}
.content a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.content a span{
    display: inline-block;
    z-index: 2;
}
a:hover span{
    color: #0C2438;
}
.content a i{
    position: relative;
    display: inline-block;
    width: 2px;
    height: 30px;
    background-color: #0C2438;
    transition: 0.5s, width 0.5s, height 0.5s;
    transition-delay: 0s, 0.5s, 1s;

}
.content a:hover i{
    width: 30px;
    height: 2px;
    background: #0C2438;
    transition-delay: 0s, 1s, 0.5s;
}
.content a i::before{
    content: '';
    position: absolute;
    top: 0.5px;
    right: 0;
    width: 50%;
    height: 2px;
    background: transparent;
    rotate: 0;
    transform-origin: right;
    transition: 1s;
}

.content a:hover i::before{
    background-color: #0C2438;
    rotate: 45deg;
    transition-delay: 1.5s;
}

.content a i::after{
    content: '';
    position: absolute;
    top: -0.5px;
    right: 0;
    width: 50%;
    height: 2px;
    background: transparent;
    rotate: 0;
    transform-origin: right;
    transition: 1s;
}

.content a:hover i::after{
    background-color: #0C2438;
    rotate: -45deg;
    transition-delay: 1.5s;
}

/* About Section */

.heading{
    font-size: 4rem;
    padding-bottom: 1rem;
    color: #E4AD5F;
    text-transform: uppercase;
}
.heading span{

    color: #678094;
    text-transform: uppercase;

}

.about .row-1{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
    padding-top: 100px;
}
.about .row-1 .image{
    flex:1 1 25rem;

}
.about .row-1 .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 1rem solid #678094;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1 rem rgba(0,0, 0,0.1);
}
.about .row-1 .content{
    flex:1 1 50rem;
}

.about .row-1 .content h3{
    color: #E4AD5F;
    font-size: 3.5rem;

}

.about .row-1 .content p{
    color: #E4AD5F;
    font-size: 1.7rem;
    padding: .5rem 0;
    
}
.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: #678094;
}
.content .re{
    display: flex;
    width: 80%;
    justify-content: space-around;
    padding-top: 40px;
}

/*   ----Tech Stack CSS--- */
/* 
.tech .container .techno{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    gap: 40px;
    padding-top: 100px;

} */
.tech .container .techno div img{
    width: 150px;
    height: 150px;
    border-radius: 35px;
    cursor: pointer;
}

:root{
--clr:#ff0f5b;
--clr :#be01fe;
--clr:#01b4ff;

}
.tech .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;


}
.tech .container .techno{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
    gap: 40px 60px;
   
    
}
.tech .container .techno .drop{

position: relative;
width: 350px;
height: 350px;
box-shadow: inset 20px 20px 20px rgba(0,0,0,0.05),
25px 35px 20px rgba(0,0,0,0.05),
25px 30px 30px rgba(0,0,0,0.05),
inset -20px -20px 25px #A4B0BC;
transition: 0.5s ease-in-out;
display: flex;
justify-content: center;
align-items: center;
 background: #678094;
}

.tech .container .techno .drop:nth-child(1){
    border-radius: 57% 43% 43% 57% / 43% 43% 57% 57%;
}
.tech .container .techno .drop:nth-child(2){
    border-radius: 61% 39% 52% 48% / 44% 59% 41% 43%;
}
/* -- */
.tech .container .techno .drop:nth-child(3){
    border-radius: 57% 43% 43% 57% / 43% 43% 57% 57%;
}
.tech .container .techno .drop:nth-child(4){
    border-radius: 61% 39% 52% 48% / 44% 59% 41% 43%;
}
/* -- */
.tech .container .techno .drop:nth-child(5){
    border-radius: 57% 43% 43% 57% / 43% 43% 57% 57%;
}
.tech .container .techno .drop:nth-child(6){
    border-radius: 61% 39% 52% 48% / 44% 59% 41% 43%;
}
/* -- */
.tech .container .techno .drop:nth-child(7){
    border-radius: 57% 43% 43% 57% / 43% 43% 57% 57%;
}
.tech .container .techno .drop:nth-child(8){
    border-radius: 61% 39% 52% 48% / 44% 59% 41% 43%;
}

.tech .container .techno .drop:hover{
    border-radius: 50%;
}
.tech .container .techno .drop::before{
    content: '';
    position: absolute;
    top: 50px;
    left: 85px;
    width: 35px;
    height: 35px;
    background-color: #A4B0BC;;
    border-radius: 50%;
    opacity: 0.9;
}
.tech .container .techno .drop::after{
    content: '';
    position: absolute;
    top: 90px;
    left: 110px;
    width: 15px;
    height: 15px;
    background-color: #A4B0BC;
    border-radius: 50%;
    opacity: 0.9;
}

/* Skills section css */


.skill{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    
}
.skill ul{
    position: relative;
    transform: skewY(-15deg);
   
 
}
.skill ul li{
    position: relative;
    list-style: none;
    width: 100%;
    background: #678094;
    padding: 15px;
    transition: 0.5s;
    z-index: calc(1 * var(--i));
    


}


.skill ul li:hover{
    transform: translateX(-100px);
    background: var(--clr);
}

.skill ul li::before{
    content: '';
    position: absolute;
    top: 0;
    left: -70px;
    width: 70px;
    height: 100%;
    background: #A4B0BC;
    filter: brightness(0.7);
    transform-origin: right ;
    transform: skewY(45deg);
    transition: 0.5s;
}
.skill ul li:hover::before{
    background: var(--clr);
    filter: brightness(0.7);
}
.skill ul li::after{
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #A4B0BC;
    filter: brightness(0.9);
    transform-origin: bottom;
    transform: skewX(45deg);
    transition: 0.5s;
}
.skill ul li:hover::after{
    background: var(--clr);
    filter: brightness(0.9);
}

.skill ul li a{
    color: #E4AD5F;
    font-size: 32px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    letter-spacing: 0.07em;
    transition: 0.5s;
}
.skill ul li:hover a{

    color: #A4B0BC;
}
.skill ul li:last-child::after{
    box-shadow: -140px 140px 20px rgba(0,0,0,0.25);
}

/* Project Section */
.project-outer{
    width: 95%;
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-top: 40px;
    background: #678094;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 25px;
    border-radius: 25px;
    height: 600px;
    transition: all 0.3s;
}
.project-inner{
    display: flex;
    align-items: center;
}




.imageSlider{
    width: 500px;
    flex-shrink:0;
    height: 500px;
    background-image: linear-gradient(147deg,#fe8a39,0%,#fd3838 74%);
    box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
    border-radius: 15px;
    transform: translate(-80px);
    overflow: hidden;
    /* width: 100%; */
    /* height: 300px; */
    background-image: url("/Images/Ssense_Home.png");
    background-size: 100% 100%;
    animation: changeImage 20s linear infinite;
    cursor: pointer;
    

}
.imageSlider img{
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    border-radius: 20px; */
    width: 100%;
height: 100%;
object-fit: contain;
display: block;
opacity: 1;
border-radius: 20px;
    transition: all 0.3s;
    }
@keyframes changeImage {
    0%{
        background-image: url("/Images/Ssense_Home.png");
    }
    /* 15%{
        background-image: url("/Images/Ssense_Menwears.png");
    }
    35%{
        background-image: url("/Images/Ssense_Womenswear.png");
    }
    55%{
        background-image: url("/Images/Ssense_Everything.png");
    }
    75%{
        background-image: url("/Images/Ssense_AddCart.png");
    }
    85%{
        background-image: url("/Images/Ssense_SingUp_Login.png");
    }
    100%{
        background-image: url("/Images/Ssense_Home.png");
    } */

}
/* .project_content{
    overflow: scroll;
} */
.project_content > *{
    opacity: 1;
    transform: translateY(25px);
    transition: all 0.4s;
    
}


.project_content h1{

    font-size: 32px;
    color: #0C2438;
    font-weight: 500;
    display: flex;
    justify-content: center;
}
.project_content .project_content_title h2,.project_content .project_content_tech h2{
    font-size: 24px;
    color: #E4AD5F;
    font-weight: 500;
}
.project_content .project_content_title p{
    font-size: 15px;
    color: #A4B0BC;
    font-weight: 300;
    
    
}
.project_content .project_content_tech li{
    font-size: 18px;
    color: #A4B0BC;
    font-weight: 300;
}

.project-btn{
    margin-top: 15px;
    display: flex;

}

.project-btn a{
    position: relative;
    width: 150px;
    height: 50px;
    font-size: 18px;
    background: #678094;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #E4AD5F;
    border-radius: 25px;

}
.project-btn a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E4AD5F;
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
    transform-origin:right ;
    border-radius: 25px;

}
.project-btn a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.project-btn a span{
    display: inline-block;
    z-index: 2;
}
.project-btn a:hover span{
    color: #0C2438;
}
.project-btn a i{
    position: relative;
    display: inline-block;
    width: 2px;
    height: 30px;
    background-color: #0C2438;
    transition: 0.5s, width 0.5s, height 0.5s;
    transition-delay: 0s, 0.5s, 1s;

}
.project-btn a:hover i{
    width: 30px;
    height: 2px;
    background: #0C2438;
    transition-delay: 0s, 1s, 0.5s;
}
.project-btn a i::before{
    content: '';
    position: absolute;
    top: 0.5px;
    right: 0;
    width: 50%;
    height: 2px;
    background: transparent;
    rotate: 0;
    transform-origin: right;
    transition: 1s;
}

.project-btn a:hover i::before{
    background-color: #0C2438;
    rotate: 45deg;
    transition-delay: 1.5s;
}

.project-btn a i::after{
    content: '';
    position: absolute;
    top: -0.5px;
    right: 0;
    width: 50%;
    height: 2px;
    background: transparent;
    rotate: 0;
    transform-origin: right;
    transition: 1s;
}

.project-btn a:hover i::after{
    background-color: #0C2438;
    rotate: -45deg;
    transition-delay: 1.5s;
}


.imageSlider2{
    width: 500px;
    flex-shrink:0;
    height: 500px;
    background-image: linear-gradient(147deg,#fe8a39,0%,#fd3838 74%);
    box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
    border-radius: 15px;
    transform: translate(-80px);
    overflow: hidden;
    background-image: url("/Images/Boat_Style_Home.png");
    background-size: 100% 100%;
    animation: changeImage2 20s linear infinite;
    cursor: pointer;
    

}
@keyframes changeImage2 {
    0%{
        background-image: url("/Images/Boat_Style_Home.png");
    }
    /* 15%{
        background-image: url("/Images/Boat_Product.png");
    }
    35%{
        background-image: url("/Images/Boat_SingUp.png");
    }
    55%{
        background-image: url("/Images/boat_cart.png");
    }
    75%{
        background-image: url("/Images/Boat_checkout.png");
    }
    85%{
        background-image: url("/Images/Boat_GiftCard.png");
    }
    100%{
        background-image: url("/Images/Boat_Style_Home.png");
    } */
}

.imageSlider3{
    width: 500px;
    flex-shrink:0;
    height: 500px;
    background-image: linear-gradient(147deg,#fe8a39,0%,#fd3838 74%);
    box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
    border-radius: 15px;
    transform: translate(-80px);
    overflow: hidden;
    background-image: url("/Images/Naukri_Home.png");
    background-size: 100% 100%;
    animation: changeImage3 20s linear infinite;
    cursor: pointer;
    

}
@keyframes changeImage3 {
    0%{
        background-image: url("/Images/Naukri_Home.png");
    }
    /* 15%{
        background-image: url("/Images/Naukri_Job.png");
    }
    35%{
        background-image: url("/Images/Naukri_SaveJob.png");
    }
    55%{
        background-image: url("/Images/Naukri_Login.png");
    }
    75%{
        background-image: url("/Images/Naukri_Service.png");
    }
    85%{
        background-image: url("/Images/Naukri_Job.png");
    }
    100%{
        background-image: url("/Images/Naukri_Home.png");
    } */
}

.imageSlider4{
    width: 500px;
    flex-shrink:0;
    height: 500px;
    background-image: linear-gradient(147deg,#fe8a39,0%,#fd3838 74%);
    box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
    border-radius: 10px;
    transform: translate(-80px);
    overflow: hidden;
    background-image: url("/Images/Rodan_Home.png");
    background-size: 100% 100%;
    animation: changeImage4 20s linear infinite;
    cursor: pointer;
    

}
@keyframes changeImage4 {
    0%{
        background-image: url("/Images/Rodan_Home.png");
    }
    /* 15%{
        background-image: url("/Images/Rodan_Product.png");
    }
    35%{
        background-image: url("/Images/Rodan_Consultant.png");
    }
    55%{
        background-image: url("/Images/Rodan_cart.png");
    }
    75%{
        background-image: url("/Images/Rodan_Login.png");
    }
    85%{
        background-image: url("/Images/Rodan_Product.png");
    }
    100%{
        background-image: url("/Images/Rodan_Home.png");
    } */
}


/* Statics css start */

.calendar{
    background-color: #0C2438;
    color: #E4AD5F;
    
}

/* contact css */
.contact-me{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
}
.contact-me .contact-info{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.contact-me .contact-info .box{

    position: relative;
    padding: 20px 0;
    display: flex;
}
.contact-me .contact-info .box .c-icon{
    min-width: 60px;
    height: 60px;
    background: #E4AD5F;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 28px;
}
.contact-me .contact-info .box .c-icon i{
    cursor: pointer;
}
.contact-me .contact-info .box .social{
   background-color:#0C2438;
   color: #E4AD5F;
   display: flex;
   flex-direction: row;
   gap: 30px;
   margin-left: 20px;
}
.contact-me .contact-info .box .social a{
    text-decoration: none;
    color: #678094;
    cursor: pointer;
}
.contact-me .contact-info .box .c-text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #A4B0BC;
    flex-direction: column;
    font-weight: 300;
}
.contact-me .contact-info .box .c-text h3{
    font-weight: 500;
    color: #E4AD5F;
}
.contact-form{
    width: 40%;
    padding: 40px;
    background:#678094;
    border-radius: 20px;
}
.contact-form h2{
    font-size: 30px;
    color: #E4AD5F;
    font-weight: 500;

}
.contact-form .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contact-form .inputBox input,.contact-form .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #E4AD5F;
    outline: none;
    resize: none;
    background-color: var(--bg-black-700);
}
.contact-form .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #E4AD5F;

}
.contact-form .inputBox input:focus ~ span,
.contact-form .inputBox input:valid ~ span,
.contact-form .inputBox textarea:focus ~ span,
.contact-form .inputBox textarea:valid ~ span
{

    columns: #444;
    font-size: 12px;
    transform: translateY(-20px);
}
.contact-form .inputBox input[type="submit"]{
    width: 100px;
    background: #0C2438;
    color: #E4AD5F;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
}

.footBar{
    text-align: end;
    color: #E4AD5F;
    margin-top: 140px;
}

/* Media Query */
@media (max-width:1100px){

    html{
        font-size: 55%;
    }
    body{
        padding: 0;
    }
    #menu-bars{
        display: initial;
    }
    header{
        left: 120%;
    }
    header.active{
        left: 0%;
    }
    .cursor-1,.cursor-2{
        display: none;
    }
    .image_box{
        width: 300px;
        height: 300px;
    }
    .content{
        padding-top: 10px;
    }
    /* .skill{
        min-height: 110vh;
        
    } */

    .tech .container .techno .drop{
        width: 250px;
        height: 250px;
    }


    .tech .container .techno div img{
        margin-top: 50px;
        width: 100px;
        height: 100px;
        border-radius: 25px;
        cursor: pointer;
    }


    .skill ul li a{
        letter-spacing: 0.05em;
        
    }
    .skill ul li:last-child::after{
        box-shadow: -180px 180px 20px rgba(0,0,0,0.25);
    }
    .project-outer{
        max-width: 680px;
        height: 680px;
        margin-top: 100px;
    }
    .padd20{
        padding-top: 100px;
    }
    .project-inner{
        flex-direction:column;

    }
    .imageSlider, .imageSlider2, .imageSlider3, .imageSlider4{
        transform: translateY(-50%);
        width: 90%;
        height: 270px;
    }
    .project_content{
        margin-top: -80px;
        /* text-align: center; */
        padding: 0 30px;
    }
    .project_content h1{

        font-size: 18px;
        color: #0C2438;
        font-weight: 300;
        display: flex;
        justify-content: center;
    }
    .project_content .project_content_title h2,.project_content .project_content_tech h2{
        font-size: 16px;
        color: #E4AD5F;
        font-weight: 100;
    }
    .project_content .project_content_title p{
        font-size: 16px;
        color: #A4B0BC;
        font-weight: 100;
        
        
    }
    .project_content .project_content_tech li{
        font-size: 16px;
        color: #A4B0BC;
        font-weight: 100;
        
    }
    /* .padd20{
        padding-top: 90px;
    } */
    .project-btn{
        justify-content: center;
        align-items: center;

    }
    .contact-me{
        flex-direction: column;
    }
    .contact-me .contact-info{
        margin-bottom: 40px;
    }
    .contact-me .contact-info,
    .contact-form
    {
        width: 100%;
    
    }
    .contact-info{
       margin-left: 150px;
        
    }
    .footBar{
        text-align: end;
        color: #E4AD5F;
        margin-top: 40px;
    }
    
}






@media(max-width:500px){

    html{
        font-size: 50%;
    }
    header{
        width: 100%;
    }
    .cursor-1,.cursor-2{
        display: none;
    }
    .container{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .image_box{
        height:300px;
        width: 250px;
    }
    .tech .container .techno .drop{
        width: 220px;
        height: 220px;
    }


    .tech .container .techno div img{
        margin-top: 50px;
        width: 70px;
        height: 70px;
        border-radius: 15px;
        cursor: pointer;
    }

    .skill ul li a{
        
        font-size: 20px;
        letter-spacing: 0.05em;
        
    }
    .skill ul li:last-child::after{
        box-shadow: -200px 200px 20px rgba(0,0,0,0.25);
    }
    
    .project-outer{
        height: 680px;
    }

    .project-inner{
        flex-direction:column;

    }
    .project-outer{
        margin-top: 120px;
    }
    .project_content{
        height: 600px;
        padding: 0 ;
    }

    .contact-me{
        flex-direction: column;
    }
    .contact-me .contact-info{
        margin-bottom: 40px;
    }
    .contact-me .contact-info,
    .contact-form
    {
        width: 100%;
    
    }
    .contact-info{
       margin-left: 10px;
        
    }
    .footBar{
        text-align: end;
        color: #E4AD5F;
        margin-top: 40px;
    }
}