@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&displat=swap');
*
{   
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

section{
    padding: 100px;
}

.banner{
    position: relative;
    min-height: 100vh;
    background: url(/img/EditBanner5.jpg);
    background-size: cover;
    background-position: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner h2{
    font-size: 3em;
    color: #fff;
    font-weight: 500;
    line-height: 1.5em;
}

.banner h2 span{
    font-size: 1.5em;
    font-weight: 700;
}

.banner h3{
    font-size: 1.5em;
    color: #fff;
    font-weight: 500;
}


.btn{
    position: relative;
    background: linear-gradient(90deg,#EF3937, #F16248);
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
}


header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

header.sticky{
    background: #fff;
    padding: 20 px 100 px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header .logo{
    position: relative;
    display: flex;
    color: #fff;
}



header ul{
    position: relative;
    display: flex;
}

header ul li{
    position: relative;
    list-style: none;
}

header ul li a{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}

header.sticky ul li a{
    color: #111;
}

.heading{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
}

.heading h2{
    font-weight: 600;
    font-size: 30px;
}

.content{
    display: flex;
    justify-content: space-between;
}

.contentBx{

    padding-right: 30px;
}
.contentBx h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.w50{
    min-width: 50%;
}

img{
    max-width: 100%;
}

#author{
    max-width: 60%;
}
.logo-div {
    background: transparent url("/img/ea2White.svg") no-repeat scroll 0% 0%;
    width: 50px;
    height: 40px;
    text-indent: -3333px;
    border: 0;
    margin: 0; 
}

header.sticky .logo-div{
    background: transparent url("/img/ea2Black.svg") no-repeat scroll 0% 0%;
}

.big-logo-div {
    position: relative;
    width: 500px;
    height: 500px;
    right: 40%;
    border: 0;
    margin: 0;
    z-index: 1;
}
  

.img-class {
    align-content: center;
    position: relative;
    margin: 23%;

}

.textBx{
    z-index: 2;
}

.skills{
    background: #111;
}

.heading.white{
    color: #fff;
}

.skills .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.skills .content .skillsBx{
    padding: 40px 20px;
    background: #222;
    color: #fff;
    max-width: 340px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
}

.skills .content .skillsBx:hover{
    background: #1F4474;
    
}

.skills .content .skillsBx img{
    max-width: 80px;
    filter: invert(1);
}

.skills .content .skillsBx img{
    max-width: 90px;
    filter: invert(1);
}

.skills .content .skillsBx h2{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
}

.workContainer{
    width: 1200px;
    min-height: 500px;
    margin: 70px auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.workContainer .workBx{
    position: relative;
    width: 300px;
    height: 300px;
    margin: 10px;
    box-sizing: border-box;
    display: inline-block;
}

.workContainer .workBx .imgBox{
    position: relative;
    overflow: hidden;
}

.workContainer .workBx .imgBox img{
    max-width: 100%;
    transition: transform 1s;
}

.workContainer .workBx:hover .imgBox img{
    transform: scale(1.2);
}

.workContainer .workBx .details{
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.8);
    transform: scaleY(0);
    transition: transform .5s;

}

.workContainer .workBx:hover .details{
    transform: scaleY(1);
}

.workContainer .workBx .details .detailsContent{

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 15px;
    color: #fff;
}

.workContainer .workBx .details .detailsContent h2{

    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #F16248;
}

.workContainer .workBx .details .detailsContent p{

    margin: 10px 0 0;
    padding: 0;
    
}

.contact{
    background: #111;
}

.formBx{
    min-width: 60%;
}

.formBx form{
    display: flex;
    flex-direction: column;
}

.formBx form h3,
.contactInfo h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.formBx form input,
.formBx form textarea{
    margin-bottom: 20px;
    padding: 15px;
    resize: none;
    font-size: 16px;
    background: transparent;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
}

.formBx form textarea{
    min-height: 200px;
}

.formBx form input::placeholder,
.formBx form textarea::placeholder{
    color:#999;
}

.formBx form input[type="submit"]{
    max-width: 100px;
    padding: 10px;
    background: linear-gradient(90deg,#EF3937, #F16248);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contactInfo{
    min-width: 40%;
}

.contactInfoBx{
    position: relative;
}

.contactInfoBx .box{
    position: relative;
    padding: 20px;
    display: flex;
}

.contactInfoBx .box .icon{
    min-width: 40px;
    padding-top: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.contactInfoBx .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.contactInfoBx .box .text h3{
    font-weight: 500;
    color: #1F4474;
    margin-bottom: 0;
}

@media (max-width: 991px){
    header,
    header.sticky{
        padding: 20px 50px;
        z-index: 1000;
    }

    .menu{
        position: fixed;
        top: 75px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0,0,0,0.2);
    }

    .menu.active{
        left: 0;
    }

    header ul li a{
        color: #111;
        font-size: 24px;
        margin: 10px;
    }

    .toggle{
        width: 40px;
        height: 40px;
        background: url(/img/menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
    }

    .toggle.active{
        background: url(/img/close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        cursor: pointer;
    }

    header.sticky .toggle{
        filter: invert(1);
    }

    section{
        padding: 100px 50px;
    }

    .banner{
        padding: 150px 50px 100px;
        
    }

    .banner h2{
        font-size: 1.8em;
    }

    .banner h3{
        font-size: 1.2em;
    }

    .btn{
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 12px;
    }

    .big-logo-div {
        
        width: 300px;
        height: 300px;
        
    }

    .heading h2{
        font-size: 24px;
    }

    .heading.white h2{
        font-size: 24px;
    }

    .contentBx h3{
        font-size: 20px;
    }

    .content{
        flex-direction: column;
    }

    .w50{
        margin-bottom: 20px;
    }

    .workContainer{
        width: 900px;
        min-height: 500px;
        margin: 70 auto 0;
        flex-direction: column;
    }


    .skills .content .skillsBx{
        margin: 10px;
    }

    .work .content .workBx{
        width: 100%;
        padding: 10px;
    }

    .contactInfo{
        margin: 20px 0;
    }
}

@media (max-width: 600px){
    header,
    header.sticky{
        padding: 20px 20px;
    }

    .banner{
        padding: 300px 20px 100px;
    }

    .big-logo-div {
        
        width: 800px;
        height: 200px;
     
        right: 20px;
        top: 80px;
    }

    .section{
        padding: 100px 20px;
    }

    #projects{
        padding-left: 10;
    }

    .workContainer{
        width: 275px;
        min-height: 500px;
        margin: 70 auto 0;
        flex-direction: column;
    }
    .workbx{
        width: 275px;
        min-height: 500px;
        margin: 70 auto 0;
        flex-direction: column;
    }
}