*{
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #080808;
    color:#fff
}
#header{
    width: 100%;
    height: 100vh;
    background-image: url(images/backround.png);
    background-size: cover;
    background-position: center;

}
.container{
    padding: 10px 10%;

}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color:#fff;
    text-decoration: none;
    font-size: 18px;
    position:relative;
}

nav ul li a::after{
    content: '';
    width: 0%;
    height:3px;
    background: aqua;
    position: absolute;
    left:0;
    bottom: -6px;
}

nav ul li a:hover::after{
    width: 100%;
}

.header-text{
    margin-top: 20%;
    font-size: 30px;
    text-align: right;
    margin-right: 10%;
}
.header-text h1{
    color:aqua;
}

/* --------------about---------------*/

#about{
    padding: 125px 0;
    color: #ababab;
}

.row{
   display: flex;
   justify-content:space-between;
   flex-wrap: wrap; 
}
.about-col-1{
    flex-basis: 60%;
}
.about-col-1 p{
    font-size: 20px;
}
.about-col-2{
    flex-basis: 35%;
}
.about-col-2 img{
    width: 100%;
    border-radius: 5px;

}
.subtitle{
    font-size: 60px;
    font-weight: 600;
    color: #ffff;
}

.resume_button{
    font-size: 1rem;
    background-image: linear-gradient(to bottom, #0BD3EB 0%, #0B77EB 100%);
    padding: 14px 0px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 1rem;
    cursor: pointer;
    position: absolute;
    transition: all 0.35s;
    outline: none;
}

/*Resume hover transition*/
.resume_button a
{
    position: relative;
    z-index: 1;
    color: #fff;
    text-decoration: none;
    padding: 13px 40px 13px 40px;
}

.resume_button:after
{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1A4CDB;
    transition: all 0.35s;
    border-radius: 4px;
}

.resume_button:hover:after
{
    width: 100%;
}
/*-------------------experience---------------------*/
.experience_container
{
    padding: 30px 0;
    background: #262626;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: 0.3s ease;
    height: 80vh;
}


.experience_body_container
{
    display: flex;
    max-width: 1600px;
}

.experience_card_container
{
    margin: 40px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    padding: 10px;
    width: 60vw;
    color: black;
    background-color: #B9B6A3;
}

.gd_text_container 
{
    margin: auto;
    width: 55vw;
}

.gd_text
{
    font-size: 1.5rem;
}

.gd_text a
{
    text-decoration: none;
}

.mark3
{
    background: none;
    color: #76633E;
}

.mark3:hover
{
    background: none;
    color: #5C523A;
}


.experience_card_content
{
    text-align: left;
    width: 55vw;
    margin: auto;
    font-size: 1.25rem;
}

.experience_card_content a
{
    text-decoration: none;
}

@media screen and (max-width: 1200px)
{
    .gd_text_container 
    {
        width: 80vw;
        margin: auto;
    }

    .experience_card_container
    {
        width: 85vw;
    }

    .experience_card_content
    {
        width: 80vw;
    }
}


/*-------------------projects---------------------*/
#projects{
    padding: 30px 0;
    height: 120vh;
    background-color: #ababab;
}
.subtitle-projects{
    font-size: 60px;
    font-weight: 600;
    color: #ffff;
}
.project-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 60px;
    margin-top: 90px;
}

.project-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-right: 10px;
    transition: transform 0.5s;
}

.project-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}

.project-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.project-list div a{
    text-decoration: none;
    color: #080808;
    font-size:12px;
    display: inline-block;
}
.project-list div:hover{
    background-color: aqua;
    transform: translateY(-10px);
}

/*---------------------contact---------------*/
#contact{
    height:60vh;
    margin-top: 30px;
}

.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}

.contact-left p{
    margin-top: 30px;
}

.contact-left p i{
    color: aqua;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover{
    color: aqua;
    transform: translateY(-5px);
}

.contact-right button{
    display: inline-block;
    background: green;
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.contact-right form{
    width: 100%;
}
form input, form textarea{
    width: 100%;
    border:0;
    outline:none;
    background: #fff;
    padding: 15px;
    margin: 15px 0;
    font-size: 18px;
    border-radius: 6px;
}

#msg{
    color: #61b752;
    margin-top: 10px;
    display: block;

}
/*---------------------css for small screens-------------------*/

@media only screen and (max-with:600px) {
    
}