*{
    margin: 0;
    padding: 0;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.clear::after{
    content: "";
    clear: both;
    display: block;
}
.left{
    float: left;
}
.right{
    float: right;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
}
.mid-content{
    max-width: 1200px;
    margin: auto;
}
/* Begain main css */
body,h1,h2,h3,h4,h5,h6,p,a,span{
    font-family: 'Work Sans', sans-serif;
}
.header-section{
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}
.header-section a{
    color: #010101;
}
.header-logo{
    width: 30%;
}
.logo img{
    max-width: 100%; 
    height: 60px;
    float: left;
    margin-right: 10px;
}
.logo span {
    display: inline-block;
    margin-top: 14px;
    font-size: 26px;
    font-weight: 500;
}
.header-menu{
    width: 60%;
}
.header-button{
    width: 10%;
}
a.header-btn {
    color: #6278df;;
    border: 2px solid #6278df;
    display: inline-block;
    padding: 7px 22px;
    margin-top: 10px;
    border-radius: 7px;
    font-weight: 600;
}

.primary-menu ul li{
    display: inline-block;
}
.primary-menu ul li a {
    display: block;
    padding: 0 20px;
    line-height: 57px;
    font-weight: 500;
    font-size: 17px;
}

/* DropDown Menu css */
.primary-menu ul li{
    position: relative;
}
.primary-menu ul li ul{
    position: absolute;
    left: 0;
    top: 100%;
    width: 250px;
    background: #fff;

    opacity: 0;
    visibility: hidden;
    transition: .4s;
    transform: scaleY(0);
    transform-origin: top center;
}
.primary-menu ul li:hover ul{
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
/* banner css */
.banner-section{
    background: url(img/banner.jpg)no-repeat center center;
    background-size:cover;
    padding: 180px;
    color: #fff;
    position: relative;
    z-index: 2;
}
.banner-section::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: -1;
}

.banner-content h3{
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;

    
}
.banner-content h2{
    font-size: 60px;
    margin-bottom: 50px;
}

.default-btn {
    color: #808080;
    padding: 15px 20px;
    background-color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 5px;
    margin: 0px 8px;
    transition: .4s;
}
.default-btn:hover{
    background-color: #6278df;
    color: #fff;
}
/* add and text */

.add{
   width: 48%;
   margin-top: 100px;
}
.add-video-span{
    color: red;

}
.text {
    width: 48%;
    margin-top: 80px;
}


.text h2 {
    font-size: 47px;
    font-weight: 400;
}
.text p {
    font-size: 21px;
    margin-top: 20px;
    font-weight: 300;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 20px;
}
.sevice-section{
    margin-top: 100px;
}

.section-title h1{
    font-size: 60px;
}
.section-title p{
    font-size: 26px;
    font-weight: 300;
    margin-top: 25px;
}
.services-items{
    margin-top: 140px;
}
.service-box{
    width: 30%;
    box-shadow: 4px;
    box-shadow: 4px 4px 20px 0 royalblue;
    margin-right: 40px;
    margin-bottom: 30px;
    padding: 25px;
    box-sizing: border-box;


}
.s-icon{
    width: 60px;
    float: left;
    min-height: 108px;
    height: 151px;
    color: #6278df;
    font-size: 45px;
    margin-right: 10px;
}

.s-content h3{
    margin-top: 4px;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
}
.s-content p{
    font-size: 22px;
    font-weight: 300;
    margin-top: 40px;
    line-height: 1.5;
    text-align: center;
}
/* section two */
.section-two{
    margin-top: 80px;
}

.section-two-title h2{
    font-size: 65px;
    font-weight: 400;
}
.section-two-title p{
    font-size: 27px;
    font-weight: 300;
}

.text-box {
    width: 350px;
    margin: 0 20px;
    margin-top: 100px;
    transition: .4s;
    border-radius: 5px;
    box-shadow: 4px 4px 20px 0 rgb(0, 0, 0,.4);
}
.text-box:hover{
    background-color: #6278df;
}
.text-box h2 {
    font-size: 27px;
    font-weight: 500;
    margin-top: 25px;
    margin-left: 25px;
}
.text-box h3 {
    font-size: 60px;
    font-weight: 800;
    margin-top: 50px;
    margin-top: 25px;
    margin-left: 25px;
}
.text-box h3 span{
    font-size: 20px;
}
.text-box h4 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 50px;
    margin-top: 25px;
    margin-left: 25px;
}
.text-box p {
    font-size: 23px;
    font-weight: 300;
    margin-top: 20px;
    margin-top: 25px;
    margin-left: 25px;

}
.p-content{
    border-top: 1px solid #ddd;
    background-color: #fff;
    
}
.p-content ul{
    margin: 30px 23px;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.6;
}
.p-content ul li{
    list-style: none;
    line-height: 60px;
    
}
.p-content ul li span{
    color: #6278df;
    margin-right: 5px;
}
.p-button.default-button{
    box-shadow: 4px 4px 20px 0 rgb(0, 0, 0,.4);
}
.text-box:hover .p-button .default-btn{
    background-color: #6278df;
    color: #fff;
}
/* section three */

.section-three-title h1{
    font-size: 60px;
    font-weight: 400;
    margin-top: 130px;
}
.members-team{
    margin-top: 48px;
}
.member{
    margin: 10px 11px;
}
.member img{
    width: 276px;
    border-radius: 5px;
}

.member-bio h4{
    font-size: 25px;
    font-weight: 500;
    margin-top: 15px;
}
.member-bio p{
    font-size: 20px;
}
/* newsletter */


.newsletter-title{
    margin-top: 148px;
}
.newsletter-title p{
    font-size: 25px;
}
.newsletter-title h2{
    margin-top: 34px;
    font-size: 50px;
    font-weight: 400;
}
.newsletter-form{
    margin-top: 60px;
}


.default-input {
    width: 260px;
    font-size: 20px;
    padding: 10px 29px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    box-shadow: 4px 4px 20px 0 rgba(17, 89, 204, 0.1);
    box-sizing: border-box;
}
.default-input:focus{
    
    background-color: #fff;
    color: #6278df;
    border: 2px solid #6278df;
    box-shadow: 0px 0 10px 7.5px #6278df;
}
.submit-btn {
    background: #6278df;
    font-size: 20px;
    padding: 10px 29px;
    border: 2px solid transparent;
    border-radius: 10px;
    margin-left: 20px;
    font-weight: 700;
    cursor: pointer;
}
.submit-btn:hover{
    background-color: #fff;
    color: #6278df;
    border: 2px solid #6278df;
    box-shadow: 0px 0 10px 7.5px #6278df;
}

/* blog-section */
.blog-section{
    margin-top: 160px;
}

.left-text{
    width: 48%;
}
.left-text h1{
    font-size: 50px;
    font-weight: 400;
}
.right-text{
    width: 48%;
}
.right-text p{
    font-size: 20px;
    line-height: 1.5;
}
.second-row{
    margin-top: 55px;
}
.left-img-text{
    width: 48%;
}
.right-img-text{
    width: 48%;
}
.left-img-text img{
    float: left;
    width: 370px;
}
.left-img-text .r-text{
    float: right;
    width: 190px;
}
.left-img-text .r-text h3{
    margin-top: 55px;
    font-size: 25px;
    font-weight: 500;
    
}
.left-img-text .r-text p{
    margin-top: 25px;
    font-size: 21px;
    font-weight: 300;
}
.right-img-text img{
    float: left;
    width: 370px;
}
.right-img-text .r-text{
    float: right;
    width: 190px;
}
.right-img-text .r-text h3{
    margin-top: 55px;
    font-size: 25px;
    font-weight: 500;
    
}
.right-img-text .r-text p{
    margin-top: 25px;
    font-size: 21px;
    font-weight: 300;
}

/* application section */
.application{
    margin: 160px;
}

.application h6{
    font-size: 25px;
    font-weight: 300;
}
.application h2{
    margin-top: 30px;
    font-size: 46px;
    font-weight: 400;
}
/* application-items */

.item{
    width: 23%;
    margin: 55px;
}
.item:last-child{
    margin-right: 0;
}
.item-content{
    background: #fff;
    box-shadow: 3px 3px 30px 0 rgba(98 120 223 / 30%);
    width: 331px;
}
.item-content::after{
    content: "";
    position: absolute;
    bottom: -500;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 37.5px 0 37.5px;
    border-color: #cfe3f9  transparent transparent transparent;
    display: inline-block;

}
.item-content p{
    font-size: 22px;
    margin-top: 100px;
    line-height: 1.4em;
    padding: 30px 10px;
}
.item-content p::before{
    content: "\f10d";
    font-family: fontawesome;
    font-size: 80px;
    display: inline-block;
    opacity: 10%;
    position: absolute;
}
.item-img{
    margin-top: 40px;
    width: 270px;
}
.item-img img{
    border-radius: 50%;
    width: 100px;
    float: left;
}
.item-user-bio{
    position: relative;
    top: 20px;
}
.item-user-bio h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 7px;
    margin-left: 130px;
}


/* contuct-section */


.contuct-map{
    width: 48%;
}
.contuct-form{
    width: 48%;
}
.contuct-form h4{
    font-size: 28px;
    font-weight: 400;
}
.contuct-form p{
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
}
.contuct-form form{
    margin-top: 50px;
}
.contuct-form .w100{
    width: 80%;
}
.contuct-form .w50{
    width: 38.5%;
}
.contuct-form .h100{
    height: 400px;
}
.contuct-form .default-input{
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.footer{
    margin: 80px;
}
.footer p{
    font-size: 22px;
}



