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

/* Adding All My Section Tag Fixed Padding */
section{
    padding: 80px;
}

/* CReating Banner Area in CSS */
.banner{
    position:relative;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    background: url(images/myPic1.png);
    background-size: cover;
    background-position: right center;
}
.banner h2{
    font-size: 2.5em;
    color: #444;
    font-weight: 300;
    line-height: 1.5em;
}
.banner h2 span{
    font-size: 1.2em;
    color:#efefef;
}
.banner h3{
    color: #fff;
    font-size: 1.5em;
    font-weight: 500;
}
.btn{
    position: relative;
    background: #8f9aa7;
    display:inline-block;
    color:#000;
    margin-top: 20px;
    padding:10px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
}
/* CReating Abot Me Sections */
.heading{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111;

}
.heading p{
    font-style: italic;
    font-size: 14px;
}
.heading h2{
    font-size: 3em;
    color: #009e66;

}
.content{
    display: flex;
    justify-content: space-between;
}
.contentBx{
    padding-left: 40px;
    text-align: justify;
}
.proPic{
    width:300px;
    height: 350px;
    border-top-left-radius: 30%;
    border-bottom-right-radius: 30%;
}
.contentBx h2{
    font-weight: 300;
    margin-bottom: 10px;
}
.heading.bottom{
    display:flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.btn.round{
    border-radius: 50px;
}
.bt{
    margin-top: 20px;
    text-align: left;
}
.w50{
    min-width: 25%;

}
img{
    max-width: 100%;
}
/*Creating Logo and and Header using CSS*/

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

}
header .logo{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

header ul{
    position: relative;
    display: flex;

}
header ul li{
    list-style-type: none;
    position: relative;
}
header ul li a{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
}
/* Creating Sticky Menu Bar in CSS*/

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

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


/* Designing Services Layout in CSS*/

.services{
    background: #111;

}
.heading.white p{
    color:#fff;

}
.services .content{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.services .content .servicesBx{
    color: #fff;
    background: #161616;
    margin: 10px 15px;
    padding: 30px 15px;
    text-align: center;
    max-width: 360px;
}
.services .content .servicesBx:hover{
    border-bottom: 2px solid #009e66;
    cursor: pointer;
}

.services .content .servicesBx .fa{
    color: #009e66;
}
/*Design Work Section in CSS*/

.work .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.work .content .workBx{
    width: 500px;
    padding: 20px;
}
.work .content .workBx img{
    max-width: 100%;
    border: 1px solid rgba(0,0,0,0.4)
}

.work .content .workBx img:hover{
    box-shadow: 0 0 20px 5px #ccc;
    transform: scale(1.3);
    transition: 0.5s;
    cursor: pointer;
}
.work .content .workBx p{
    text-align: left;
    line-height: 1.25em;
}

/*Designing Testimonial Layout in CSS*/
.testimonial {
    background: #111;
}
.testimonial .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.testimonial .content .testimonialBx{
    background: #161616;
    margin: 20px;
    padding: 60px 40px;
    max-width: calc(50% - 40px);
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
    cursor: pointer;
}
.testimonial .content .testimonialBx:hover{
    border-bottom:2px solid #009e66;
}
.testimonial .content .testimonialBx p{
    color: #fff;
    font-style: italic;
    font-size: 18px;
    font-weight: 100;
    font-family: "Times New Roman", Times, serif;
    line-height: 24px;
}
.testimonial .content .testimonialBx h3{
    color: #009e66;
    line-height: 1.25em;
    margin-top: 40px;
    text-align: end;
    font-weight: 200;
    line-height: 20px;
    font-style: italic;
}
footer.copyright{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
}
/* Making Responsive Layoit*/
@media (max-width: 991px)
{
    header,
    header.sticky{
        padding:20px 50px;
		z-index:2;
    }
    header .menu{
        display:none;
        z-index:1;
    }
    header .menu{
        position:fixed;
        background:#fff;
        display:block;
        top:75px;
        left:-100%;
        padding:100px 50px;
        width:100%;
        height:100vh;
        border-top:1px solid rgba(0,0,0,0.2);
        text-align:center;
        transition:0.5s;
        -webkit-transition:0.5s;
        -moz-transition:0.5s;
        -ms-transition:0.5s;
        -o-transition:0.5s;
}
    header .menu.active{
        position: fixed;
        top: 75px;
        left: 0;
        padding: 100px 50px;
        display: block;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
    }
    header ul li a{
        font-size: 20px;
        font-weight: 400;
        color:#111;
        margin:10px 0;
    }
    .toggle{
        width:40px;
        height:40px;
        background:url(images/menu.png);
        background-position:center;
        background-size:30px;
        background-repeat:no-repeat;
        cursor:pointer;
    }
    .toggle.active{
        width:40px;
        height:40px;
        background:url(images/close.png);
        background-position:center;
        background-size:25px;
        background-repeat:no-repeat;
        cursor:pointer;
    }
    header.sticky .toggle{
        filter:invert(1);    ;
        -webkit-filter:invert(1)    ;
    }
    section {
        padding: 100px 30px;
    }
    .banner{
        padding:150px 50px 100px;
    }
    .banner h2{
        font-size: 1.5em;
    }
    .banner h3{
        font-size: 1em;;
    }
    .textBx{
        position:relative;
        top:170px;
    }
    .btn{
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
        border-radius:50px;
        -webkit-border-radius:50px;
        -moz-border-radius:50px;
        -ms-border-radius:50px;
        -o-border-radius:50px;
    }
    .content{
        flex-direction: column;
    }
    .contentBx{
        padding:0;
    }
    .content .w50 img{
        display:block;
        margin:0 auto 30px auto;
    }
    .heading h2{
        font-size:24px;
    }
    .contentBx h3{
        font-size: 20px;
    }
    .contentBx h2{
        font-size: 20px;
        font-weight: 300;
    }
    .services .content .servicesBx{
        margin:10px;
    }
    .contactInfo{
        margin:10px 0;
    }
}

@media (max-width: 768px){
    .testimonial .content .testimonialBx{
        max-width: calc(100% - 20px);
        padding: 40px 20px;
        margin: 30px;
    }
    .heading.bottom{
        display:flex;
        justify-content: space-between;
        align-items: center;
        flex-direction:row;
    }
}

@media (max-width: 600px){
    .testimonial .content .testimonialBx{
        max-width: calc(100% - 20px);
        padding: 40px 20px;
        margin: 30px;
    }
    .heading.bottom{
        display:flex;
        justify-content: space-between;
        align-items: center;
        flex-direction:column;
    }
}
