*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

html,body{
    overflow-x: hidden;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgb(249, 247, 247),rgba(241, 70, 135, 0.2));
    background-size: cover;
    position: relative;
    box-sizing: border-box;
}

.data{
    margin-left: auto;
    margin-right: auto;

}


nav{
    display: flex;
    padding: 10px 3%;
    justify-content: space-between;
    max-width: 100%;
    text-align: right;
    background: transparent;
}

.nav-links img{
    width: 200px;
    background-color: white;
    margin-right: 900px;
    padding-top: 5px;
}

.nav-links{
    text-align: right;
    z-index: 2;
    display: inline-flex;
    padding: 0 3%;
    background: white;
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.nav-links .menu{
    padding-top: 22px;
    text-align: left;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 6px 12px;
    position: relative;
    margin-right: 30px;
}

.nav-links ul li a{
    display: block;
    padding: 5px;
    color: #344c6c;
    text-decoration: none;
    text-align: left;
    font-size: 17px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 4px;
    background: #344c6c;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.nav.sticky ul{
    width: auto;
}

.sub-menu{
    display: none;
    padding-top: 0px;
}

.nav-links ul li:hover .sub-menu{
    width: 200%;
    left: 1px;
    background: transparent;
    position: absolute;
    z-index: 999;
    display: block;
    text-align: left;
    padding: 2px 2px;
}

.nav-links ul li:hover .sub-menu ul{
    display: block;
    flex: auto;
}

nav .fa{
    display: none;
}

.content{
    margin-top: 50px;
    margin-left: 0px;
    position: absolute;
    width: 36%;
    top: 50%;
    left: 30%;
    right: 50%;
    text-align: left;
    transform: translate(-50%,-50%);

}

.content h1{
    
    font-size: 60px;
    margin-bottom: 5px;
    color: #344c6c;

}

.content h1 span{
    color: #ec505d;
}

.content p{
    
    line-height: 22px;
    font-size: 16px;
    color: #567DB0;

}

.content .btn{
    display: inline-block;
    margin-top: 15px;
    background: #567DB0;
    color: white;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 30px;
}

.content .btn:hover{
    border: 1.5px solid #567DB0;
    background: white;
    color: #567DB0;
    transition: 1s;
}

.content-1{
    margin-left: 150px;
    position: absolute;
    width: 80%;
    top: 10%;
    left: 0%;
}

.content-1 h1{
    
    font-size: 50px;
    margin-bottom: 15px;
    text-align: center;
    color: white;

}

.nav-links .btn{
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 25px;
    margin-left: 0%;
    background: #567DB0;
    color: white;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 100px;
}

.nav-links .btn:hover{
    border: 1.5px solid #567DB0;
    background: white;
    color: #567DB0;
    transition: 1s;
}

.content input, .content textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Phone Size
--------------------------------------------------------------*/

nav .fa{
    display: none;
}

@media(max-width: 800px){
    
    .header{
        background-position: center;    
    }
    
    nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 800;
    }
    
    .text-box h1{
    font-size: 20px;
    }

    .nav-links ul li{
        flex-direction: column;
    }
    
    .nav-links{
        position: fixed;
        background: #011638;
        height: 100%;
        width: 200px;
        top: 0;
        left: initial;
        right: -500px;
        bottom: initial;
        text-align: center;
        z-index: 2;
        transition: 1s;
        padding: 10px;
    }
    
    nav .fa{
        display: block;
        color: white;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 10px;
        margin-left: 5px;
        font-size: 26px;
        cursor: pointer;
    }
    
    .nav-links ul{
        padding: 20px;
    }
    
    .content h1{
        font-size: 30px;
        margin-top: 40%;
    }
    
    .nav-links .menu{
        text-align: center;
        flex: column;
        margin-top: 80px;
        left: -182px;
        position: relative;
    }
    
    .nav-links img{
        padding: 0px;
        width: 170px;
        margin: 0px;
    }
    
    .nav-links ul li:hover .sub-menu{
        width: 135%;
        background: #011638;
        position: absolute;
        z-index: 999;
        display: inline-flex;
        text-align: center;
        border: 2px solid #eec643;
        border-color: #eec643;
        left: -24px;
    }
    
    .sub-menu ul li a{
        font-size: 18px;
        padding-top: 8px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 8px;
    }
    
    .sub-menu ul{
        padding: 0px;
    }
    
    .content{
        margin: 0px;
        padding: 10px;
    }
}

/*--------------------------------------------------------------
# Quotes
--------------------------------------------------------------*/

.row{
    margin-top: 3%;
    display: flex;
    justify-content: space-between;
}

.quotes{
    width: 100%;
    height: 80vh;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 50px;
    background-image: linear-gradient(rgb(241, 70, 135, 0.2),rgba(249, 247, 247));
    background-position: center;
    background-size: cover;
}

.quotes .row{
    width: 40%;
    margin-top: 50px;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.quotes h1{
    color: #344c6c;
    font-size: 50px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Things We Offer
--------------------------------------------------------------*/

.things{
    width: 100%;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 50px;
    background-color: black;
    background-image: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0)),url();
    background-position: center;
    background-size: cover;
}

.things .row{
    width: 80%;
    margin-top: 20px;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.things h1{
    color: white;
    font-size: 36px;
    font-weight: 600;
}

.things p1{
    color: black;
    font-size: 14px;
    line-height: 22px;
    padding: 10px;
    
}

.things img{
    max-width: 100px;
}

.things .row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    
}

.things-col{
    flex-basis: 31%;
    background: white;
    border-radius: 10px;
    margin-bottom: 4%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: rgba(51, 51, 51, 0.08) 0px 1px 1px 0px, rgba(51, 51, 51, 0.16) 0px 1px 3px 1px;
    border-block-start: 10px solid;
    padding-block-start: 15px;
    border-image-source: radial-gradient(blue,darkslategrey);
    border-image-slice: 1;
}

.things-col-1{
    flex-basis: 31%;
    background: white;
    border-radius: 10px;
    margin-bottom: 4%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: rgba(51, 51, 51, 0.08) 0px 1px 1px 0px, rgba(51, 51, 51, 0.16) 0px 1px 3px 1px;
    border-block-start: 10px solid;
    padding-block-start: 15px;
    border-image-source: radial-gradient(yellow,red);
    border-image-slice: 1;
}

.things-col-2{
    flex-basis: 31%;
    background: white;
    border-radius: 10px;
    margin-bottom: 4%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    box-shadow: rgba(51, 51, 51, 0.08) 0px 1px 1px 0px, rgba(51, 51, 51, 0.16) 0px 1px 3px 1px;
    border-block-start: 10px solid;
    padding-block-start: 15px;
    border-image-source: radial-gradient(yellow,green);
    border-image-slice: 1;
}

.things-col a, .things-col-1 a, .things-col-2 a{
    color: white;
}

.things-col img, .things-col-1 img, .things-col-2 img{
    background-color: transparent;
    width: 100%;
    align-content: center;
}

.things h3{
    color: black;
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    transition: 0.3s;
}

.things-col:hover, .things-col-1:hover, .things-col-2:hover{
    transform: scale(1.1);
}

.things h3:hover{
    color: #dda15e;
}

@media(max-width: 800px){
    .things{
        padding-bottom: 30px;
    }
} 

/*--------------------------------------------------------------
# Call to Action

.cta{
    margin: 20px auto;
    margin-bottom: 0px;
    width: 100%;
    background-image: linear-gradient(rgba(59, 62, 66,0.7),rgba(59, 62, 66,0.7)),url(images/banner%201.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: white;
    margin-bottom: 40px;
    padding: 0;
    font-size: 30px;
}

.cta-1{
    margin: 20px auto;
    margin-bottom: 0px;
    width: 80%;
    background-image: linear-gradient(rgba(59, 62, 66,0.7),rgba(59, 62, 66,0.7)),url(images/banner%201.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta-1 h1{
    color: white;
    margin-bottom: 40px;
    padding: 0;
    font-size: 30px;
}

@media(max-width: 800px){
    .cta h1{
        font-size: 24px;
    }
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 2px solid white;
    background: #264653;
    transition: 1s;
}

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Information Footer
--------------------------------------------------------------*/

.info-footer{
    width: 100%;
    height: 30vh;
    background-color: white;
    display: flex;
    justify-content: space-between;
}

.info-footer .row{
    width: 65%;
}

.info-footer h1{
    font-size: 25px;
    color: #567DB0;
}

.info-footer p{
    font-size: 15px;
    color: #567DB0;
}

.info-footer .icons .fa{
    color: #567DB0;
    margin: 0 5px;
    cursor: pointer;
    padding: 5px 0;
    font-size: 30px;
}

.info-one{
    border-radius: 10px;
    margin-bottom: 4%;
    padding: 0px 50px;
}

.info-two{
    border-radius: 10px;
    margin-bottom: 4%;
    padding: 0px 50px;
}

.info-three{
    border-radius: 20px;
    margin-bottom: 4%;
    padding: 0px 50px;
}

.info-four{
    border-radius: 10px;
    margin-bottom: 4%;
    padding: 0px 50px;
}

/*--------------------------------------------------------------
# Download Footer
--------------------------------------------------------------*/

.download-footer{
    width: 100%;
    height: 15vh;
    background-color: black;
    justify-content: space-between;
}

.download-footer .download-row{
    margin-left: 3%;
}

.download-footer img{
    max-width: 200px;
    height: auto;
    cursor: pointer;
    margin: 1%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: white;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    color: #567DB0;
}

.footer p{
    color: #567DB0;
}

.icons .fa{
    color: #567DB0;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}


/*--------------------------------------------------------------
# All Page Header
--------------------------------------------------------------*/

.sub-header{
    height: 0vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url();
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.sub-header h1{
    margin-top: 140px;
    font-size: 35px;
    color: #eec643;
}

/*--------------------------------------------------------------
# Sub Pages Nav
--------------------------------------------------------------*/

nav{
    display: flex;
    padding: 10px 3%;
    justify-content: space-between;
    max-width: 100%;
    text-align: right;
    background: transparent;
}

.snav-links img{
    width: 200px;
    background-color: black;
    margin-right: 50px;
    padding-top: 5px;
}

.snav-links{
    text-align: right;
    z-index: 2;
    display: inline-flex;
    padding: 0 3%;
    background: black;
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.snav-links .menu{
    padding-top: 22px;
    text-align: left;
}

.snav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 2px 12px;
    position: relative;
}

.snav-links ul li a{
    display: block;
    padding: 5px;
    color: white;
    text-decoration: none;
    text-align: left;
    font-size: 17px;
}

.snav-links ul li::after{
    content: '';
    width: 0%;
    height: 4px;
    background: white;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.snav-links ul li:hover::after{
    width: 100%;
}

.snav.sticky ul{
    width: auto;
}

.ssub-menu{
    display: none;
    padding-top: 0px;
}

.snav-links ul li:hover .ssub-menu{
    width: 200%;
    left: 1px;
    background: black;
    position: absolute;
    z-index: 999;
    display: block;
    text-align: left;
    padding: 2px 2px;
}

.snav-links ul li:hover .ssub-menu ul{
    display: block;
    flex: auto;
}

.snav-links .btn{
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 25px;
    margin-left: 35%;
    background: white;
    color: black;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 100px;
}

.snav-links .btn:hover{
    border: 1.5px solid white;
    background: black;
    color: white;
    transition: 1s;
}

/*--------------------------------------------------------------
# About Us Section

.row{
    margin-top: 3%;
    display: flex;
    justify-content: space-between;
}

.about-us{
    width: 90%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 300px;
    padding-left: 80px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 0px;
    transition: 0.5s;
}

.about-col:hover img{
    transform: scale(1.1);
}

.about-col-3{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col h1{
    padding-top: 0;
    padding-bottom: 20px;
}

.about-col h2{
    padding-top: 0;
    padding-bottom: 20px;
}

.about-col p{
    font-size: 18px;
    padding: 20px 5px 20px;
}

.about-col a{
    font-size: 15px;
}

.green-btn{
    border: 1px solid #18325c;
    background: transparent;
    color: #18325c;
}

.green-btn:hover{
    color: white;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .about-col img{
        width: 100%;
        display: block;
        padding: 0px;
    }
}

/*--------------------------------------------------------------
# About Info


.about-content{
    width: 100%;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 50px;
    background-color: black;
}

.about-left{
    flex-basis: 50%;
    padding-left: 150px;
    padding-right: 20px;
}

.about-left img{
    width: 400px;
    transition: 0.5s;
}

.about-left h2{
    color: grey;
    font-weight: 600;
    margin: 20px 0;
    transition: 0.3s;
}

.about-left p{
    color: white;
    padding: 0;
}

.about-left h2:hover{
    color: blue;
}

.about-left img:hover{
    transform: scale(1.05);
}

.about-right{
    flex-basis: 50%;
    padding-left: 20px;
    padding-right: 150px;
}

.about-right img{
    padding-top: 50px;
    width: 400px;
    transition: 0.5s;
}

.about-right h2{
    color: grey;
    font-weight: 600;
    margin: 20px 0;
    transition: 0.3s;
}

.about-right p{
    color: white;
    padding: 0;
}

.about-right h2:hover{
    color: blue;
}

.about-right img:hover{
    transform: scale(1.05);
}

@media(max-width:800px){
    .sub-header h1{
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# About Us Page



.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 110%;
    transition: 0.5s;
}

.about-col:hover img{
    transform: scale(1.05);
}

.about-col h1{
    padding-top: 0;
    font-size: 40px;
    font-family: serif;
    
}

.about-col p{
    font-size: 18px;
    padding: 10px 0 25px;
    font-family: 'Poppins', sans-serif;
}

.blue-btn{
    border: 1px solid black;
    background: transparent;
    color: #011638;
}

.blue-btn:hover{
    color: white;
    background-color: #011638;
}

@media(max-width: 800px){
    .content-1{
        margin: 0px;
    }
    
    .content-1 h1{
        margin-left: 90px;
    }
    
    .about-us .about-col img{
        width: 100%;
    }
    
}

/*--------------------------------------------------------------
# Motto


.motto{
    width: 100%;
    height: 50%;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    background-image: url(images/background%202.jpg)
}

.motto .rows{
    padding-left: 200px;
    font-size: 30px;
    color: #011638;
}

.motto span{
    color: #eec643;
}

@media(max-width: 800px){
    .motto .rows{
        padding-left: 0px;
    }
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.location{
    width: 100%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 80%;
    margin-left: 150px;
}

.contact-us{
    width: 100%;
    margin: auto;
    background-image: linear-gradient(rgba(134, 143, 154,0.5),rgba(0, 0, 0,0.6)),url(images/banner%205.jpg);
    background-position: center;
    background-size: cover;
    transition: 0.5s;
}

.contact-us .row{
    width: 80%;
    margin: auto;
    padding-top: 95px;
}

.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: white;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
    color: white;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: yellow;
    font-weight: 400;
}

.contact-col div h6{
    font-size: 20px;
    margin-bottom: 5px;
    color: yellow;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

@media(max-width: 800px){
    
    .contact-col div h6{
        font-size: 14px;
    }
    .contact-col div p{
        font-size: 10px;
    }
}

/*--------------------------------------------------------------
# Show Page Design 
--------------------------------------------------------------*/

.show{
    width: 100%;
    margin: auto;
    padding-top: 100px;
    background-color: black;
}

.show .row{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    
}

.show h2{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    color: white;
    padding-bottom: 30px;
}

.show p1{
    color: white;
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    
}

.show img{
    max-width: 500px;
    display: block;
}

.show-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
}

.show-col a{
    color: white;
    transition: 0.5s;
}

.show-col img{
    width: 100%;
    height: 200px;
    display: block;
    box-sizing: border-box;
    border-radius: 15px;
}

.show h3{
    color: white;
    font-size: 50px;
    text-align: left;
    font-weight: 600;
    margin: 10px 0;
    transition: 0.3s;
}

.show h3:hover{
    color: lightblue;
}

.show-col a:hover{
    color: lightblue;
}










