*{
    margin: 0;
    padding: 0;
    font-family: 'Ysabeau SC', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(19,22,23,0.7),rgba(0,9,30,0.7)),url(images/background2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 140px;
    margin-top: 15px;
}
@media(max-width:700px){
    nav img{
    width: 110px;
    margin-top: 30px;
    }
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;  
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #c0c0c0;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 55px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 21px;
    color: #fff; 
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
    font-size: 35px;
}
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #808080;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 32px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
}
 .text-box p{
        font-size: 15.2px;
    }      
}   
/*---- Services -----*/
.service{
        padding: 50px;
        margin: auto;
        text-align: center;
        padding-top: 130px;
}
h2{
    font-size: 38px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 18.5px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    align-items: center;
    margin-top: 4%;
    display: flex;
    justify-content: space-between;
}
.service-col{
    flex-basis: 31%;
    background: #ECECEC;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h2{
    text-align: center;
    font-weight: 800;  
}
.service-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
/*---- Benefit -----*/
.benefit{
    width: 85%;
    margin: auto;
    text-align: center;
    padding-top: 15px; 
}
.benefit-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.benefit-col img{
    width: 100%;
    display: block; 
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: black;
    font-size: 40px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.layer p{
    width: 100%;
    font-weight: 400;
    color: black;
    font-size: 24px;
    top: 43%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: -0.1;
    transition: 0.5s;
}
.layer:hover p{
    bottom: 49%;
    opacity: 1;
}
.hero-bttn{
    text-decoration: none;
    color: #fff;
    border: 1px solid #transparent;
    padding: 12px 34px; 
    font-size: 13px;
    background: #606060;
    position: absolute;
    cursor: pointer;
    bottom: 0;
    opacity: 0;
    transform: translateX(-50%);
} 
.hero-bttn:hover{
    border: 1px solid #606060;
    background: #606060;
    opacity: 1;
}
.benefit-col:hover .hero-bttn{
    opacity: 1;
}
/*---- Purpose ------*/
.purpose{
    width: 85%;
    margin: auto;
    text-align: center;
    padding-top: 105px;
}
@media(max-width: 700px){
    .purpose{
        padding-top: 50px;
    }
}
.purpose-col{
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 10%;
    text-align: center;
    font-size: 18px;
}
.purpose-col img{
    width: 100%;
    border-radius: 10px; 
}
.purpose-col p{
    padding: 0; 
}
.purpose-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}
/*--------- call to action -------*/
.cta{
    margin: 100px auto;
    margin-top: 10px;
    width: 85%;
    background-image: linear-gradient(rgba(19,22,23,0.3),rgba(0,9,30,0.3)),url(images/banner.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
    padding-bottom: 100px;
}
.cta h3{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
    clear: both;
    font-size: 30px;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px; 
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #606060;
    background: #606060;
    transition: 1s;
}
@media(max-width: 700px){
    .cta h3{
        font-size: 25px;
    }
}
/*--------- network -------*/
* {
    box-sizing: border-box;
}

.body {
    background: linear-gradient(to bottom, #000428, #004683);
    animation: background-color 20s;
    min-height: 100vh;
}
.networks p{
    text-align: center;
    
}
.network {
    padding: 50px;
    margin-top: -50px;
    margin-right: 300px;
    margin-left: 300px;

}
.network .row{
    width: 100%;
}
.network .col-lg-4 {
    display: flex;
    justify-content: center;
}
.card {
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    perspective: 500px;
    border: none;
    background-color: inherit;
}
.card .face {
    position: absolute;
    color: #777;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    transform-style: preserve-3d;
    transition: 0.5s;
    backface-visibility: hidden;
    border-top: 1px solid #f6f6f6;
    border-left: 1px solid #f6f6f6;
    /* border-right: 1px solid #999;
border-bottom: 1px solid #999; */
}

.card .face.front-face,
.card .face.back-face {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card .face.front-face .profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.card .face.front-face .name {
    letter-spacing: 2px;
}

.card .face.front-face .designation {
    font-size: 0.8rem;
    color: #777;
    font-weight: 600;
    letter-spacing: 1px;
}

.card:hover .face.front-face {
    transform: rotateY(180deg);
}

.card .face.back-face {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    transform: rotateY(180deg);
    padding: 20px 30px;
    text-align: center;
    user-select: none;
}

.card .face.back-face .fa-quote-left {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 1.2rem;
}

.card .face.back-face .fa-quote-right {
    position: absolute;
    bottom: 35px;
    right: 25px;
    font-size: 1.2rem;
}

.card:hover .face.back-face {
    transform: rotateY(360deg);
}

@media(max-width: 991.5px) {
    .col-lg-4 {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .network{
        margin-top: -70px;
        margin-right: -100px;
        margin-left: -100px;
    }
}
/*--------- Footer -------*/

.footer{
    width: auto;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: -10px;
    font-weight: 600;
}
.icons .fa{
    color: darkgrey;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    font-size: 30px;
}
.fa-linkedin-square{
    color: darkgray;
    margin-bottom: 50px;
}
/*--------- Contact -------*/ 

.sub-header{ 
    height: 50vh; 
    width: 100%; 
    background-image: linear-gradient(rgba(19,22,23,0.5),rgba(0,9,30,0.5)),url(images/bannerc.jpg); 
    background-position: center; 
    background-size: cover; 
    position: relative; 
    text-align: center; 
    color: #fff; 
} 
.sub-header h1{
    font-size: 55px;
}
.location{ 
    width: 80%; 
    margin: auto; 
    padding: 80px 0; 
} 
.location iframe{ 
    width: 100%; 
} 
.contact-us{ 
    width: 80%; 
    margin: auto; 
} 
.contact-col{ 
    flex-basis: 48%; 
    margin-bottom: 30px; 
} 
.contact-col div{ 
    display: flex; 
    align-items: center; 
    margin-bottom: 40px; 
} 
.contact-col div .fa{ 
    font-size: 28px; 
    color: darkgrey; 
    margin: 10px; 
    margin-right: 30px; 
} 
.contact-col div p{ 
    padding: 2px; 
    font-size: 18px; 
} 
.contact-col div h5{ 
    font-size: 20px; 
    margin-bottom: 5px; 
    color: #555; 
    font-weight: 600; 
} 
.contact-col input, .contact-col textarea{ 
    width: 95%; 
    padding: 11px; 
    margin-bottom: 20px; 
    outline: none; 
    border: 3px solid #ccc; 
    box-sizing: border-box; 
} 
.contact-col footer h4{ 
    font-size: 10px; 
} 
.red-btn{ 
    display: inline-block; 
    text-decoration: none; 
    color: #fff; 
    border: 1px solid #fff; 
    padding: 12px 34px;  
    font-size: 13px; 
    background: transparent; 
    position: relative; 
    cursor: pointer; 
} 
.red-btn{ 
    border: 2px solid #D3D3D3; 
    background: transparent; 
    color: black; 
} 
.red-btn:hover{ 
    color: #D3D3D3; 
    border: 2px solid #606060; 
    background: #606060; 
    transition: 1s; 
} 
/*--------- breakthrough -------*/
.sub-header2{ 
    height: 50vh; 
    width: 100%; 
    background-image: linear-gradient(rgba(19,22,23,0.5),rgba(0,9,30,0.5)),url(images/breakthrough.jpg); 
    background-position: center; 
    background-size: cover; 
    position: relative; 
    text-align: center; 
    color: #fff; 
}
.breakthrough{
    padding: 50px;
        margin: auto;
        text-align: center;
        padding-top: 105px;
    margin-bottom: 20px;
} 
.sub-header2 h3{
    padding-top: 105px;
    font-size: 55px;
}
.breakthrough h2{
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
}
.breakthrough p{
    margin-bottom: 10px;
    padding-bottom: 10px;
}
@media(max-width:700px){
    .breakthrough h2{
        font-size: 29px;
        margin-top: -50px;
        margin-bottom: 15px;
    }
    .breakthrough p{
        font-size: 17px;
        padding-bottom: 30px;
        width: 100%;

    }
    .sub-header2 h3{
        padding-top: 120px;
        font-size: 38px; 
    }
    .breakthrough-banner h2{
        padding-top: 80px;
    }
    .breakthrough-banner p{
        margin-bottom: -30px;
    }
    .breakthrough-col h2{
    }
    
    .breakthrough-col p{
        
    }
    .breakthrough-col img{
        margin-top: 20px;   
    }
    .breakthrough-info{
        width: 100%;
    }
}
.breakthrough-col div {
    position: relative;
}
.breakthrough h3{
    margin-top: 66px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 38px;
}
.breakthrough-banner{
    margin-top: 6px;
}
.breakthrough-info{
    width: 90%;
    align-content: center;
    object-position: center;
    margin: inherit;
}
.breakthrough-col h2{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 22px;
}
.breakthrough-col{
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 10%;
    text-align: center;
    font-size: 18px;
    padding-top: -10px;
}
.breakthrough-col img{
    width: 100%;
    border-radius: 10px; 
}
.breakthrough-col p{
    text-align: center;
    margin-bottom: -50px;
    position: relative;
}
.breakthrough-cta{
    margin: 100px auto;
    margin-top: 10px;
    width: 100%;
    background-image: linear-gradient(rgba(19,22,23,0.3),rgba(0,9,30,0.3)),url(images/wiu.jpg);
    background-position: top;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 80px 0;
}
.breakthrough-cta h3{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
    clear: both;
    font-size: 30px;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px; 
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #606060;
    background: #606060;
    transition: 1s;
}
@media(max-width: 700px){
    .breakthrough-cta h3{
        font-size: 24px;
        margin-top: -10px;
        position: relative;
        top: 65px;
    }
    .breakthrough-cta{
        background-position: bottom;
    }
    .breakthrough-cta .hero-btn{
        top: 55px;

    }
}

/*--------- privacy -------*/
.privacy{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.privacy-left{
    flex-basis: 65%;
}
.privacy-left img{
    width: 80%;
    border-radius: 10px;
    filter: grayscale(75%);
}
.privacy-left h2{
    color: black;
    font-weight: 600;
    margin: 30px 0;
    text-align: left;
    font-size: 30px;  
}
.privacy-left p{
    font-size: 22px;
    padding: 0;
}
.privacy-left li{
    font-size: 19px;
}
.privacy-right{
    flex-basis: 32%;
    margin-top: -2150px;
}
.privacy-right h3{
    background: lightgrey;
    color: transparent;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.privacy-right div{
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: black;
    padding: 8px;
    box-sizing: border-box;
}
.privacy-right span{
    font-size: 22px;
}
@media(max-width:700px){
    .sub-header h1{
        font-size: 39px;
        margin-top: 50px;
    }
    .footer{
    }
    .privacy-right{
        display: none;
    }
}