/*========================================
General Style
=========================================*/
@import url("https://use.typekit.net/foo0nyz.css");
body{
    font-family: raleway, sans-serif;
    font-size: 18px;
    font-weight: 500;
    overflow-x: hidden;
    -webkit-appearance: none;
    -webkit-border-radius: none;
}
a:hover{
    text-decoration: none;
}
.theme-btn {
    background-color: #154b95;
    color: #fff;
    padding: 15px 24px;
    border: 2px solid #fff;
}
.theme-btn:hover{
    background-color: transparent;
    color: #fff;
}
.theme-btn-2{
    background-color: #154b95;
    color: #fff;
    padding: 15px 24px;
    border: 2px solid #fff;
}
.theme-btn-2:hover{
    background-color: transparent;
    color: #154b95;
    border-color: #154b95;
}
/* page loader */
.loader-container {
    position: fixed;
    height: 100vh;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999;
    background-color: #154b95;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
  
/* qoutation modal */
#qoutation-form .modal-dialog {
    max-width: 650px;
}
#qoutation-form .modal-header h5{
    font-weight: 600;
    font-size: 2rem;
}
#qoutation-form .modal-footer{
    justify-content: unset;
}
/* header */
.header-section{
    margin-bottom: 25px;
}
.header-section span{
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a8a8a8;
}
.header-section h2{
    font-size: 30px;
    font-weight: 700;
    text-transform: none;
}
/* navigation bar */
.navigation-bar-section {
    position: relative;
    z-index: 999;
}
.header_area.sticky-header {
    padding: 15px 0px;
    position: relative;
}
.header_area.sticky-header::before{
    content: "";
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 340px;
    z-index: -1;
    transform: skewX(-30deg);
    margin-left: -40px;
    transition: 1s;
}
.is-sticky .header_area.sticky-header::before{
    transition: 1s;
    width: 120%;
    box-shadow: 0 -2px 6px rgba(0,0,0,.2);
}
.is-sticky .header_area.sticky-header .header-nav-links a{
    color: #154b95;
}
.nav-container {
    margin: 0px 60px;
}
.header-nav-links{
    margin: auto;
}
.nav-link{
    color: #fff;
}
.header-logo{
    width: 200px;
}
.get-qoute-btn {
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.1px;
    background-color: #154b95;
    border-style: solid;
    border: 2px solid #154b95;
    padding: 12px 26px 12px 27px;
    color: #fff;
    transition: .5s;
}
.get-qoute-btn:hover{
    background-color: transparent;
    color: #154b95;
    transition: .5s;
}
.side-menu-toggler-container{
    margin-left: 10px;
    display: none;
}
.side-menu-toggler-container .side-menu-toggler {
    font-size: 25px;
    color: #fff;
}.is-sticky .side-menu-toggler-container .side-menu-toggler{
    color: #154b95;
}
/* side menu */
.side-bar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #0000008a;
    z-index: 9999;
}
.side-bar-wrap.hide{
    display: none;
}
.side-bar-container {
    height: 100%;
    width: 360px;
    z-index: 99999;
    position: absolute;
    right: 0;
    background-color: #154b95;
    color: #fff;
}
.side-bar-header {
    padding: 10px;
    border-bottom: 2px solid #999;
}
.side-bar-header span{
    font-size: 25px;
    cursor: pointer;
}
.side-bar-body ul{
    padding-left: 15px;
}
.side-bar-body ul li{
    list-style: none;
    border-bottom: 1px solid #999999;
}
.side-bar-body ul li a{
    padding: 10px;
    width: 100%;
    display: block;
    color: #fff;
}
.side-bar-body ul li a:hover{
    font-weight: 600;
}
.side-bar-container.show{
    animation-duration: .6s;
    animation-name: slidein;
}
@keyframes slideout {
    0%{
      width: 350px;
    }
    50% {
      width: 175px;
    }
    100%{
      width: 0px;
    }
}
@keyframes slidein {
    from {
        width: 0px;
    }

    to {
        width: 350px;
    }
}
/* banner */
.banner-section{
    height: 100vh;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}
.banner-section::before{
    content: "";
    position: absolute;
    background-color: rgba(21, 75, 149, 0.4);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.banner-content{
    text-align: center;
    position: relative;
    z-index: 2;
}
.banner-content h1{
    font-size: 57px;
    font-weight: 600;
}
/* footer */
.footer-container {
    padding: 50px 0px 0px;
    background-color: #154b95;
}
.footer-container .footer-icon-container{
    width: 200px;
    margin-bottom: 15px;
}
.footer-container .each-footer-column{
    color: #fff;
}
.footer-container .each-footer-column h5{
    font-weight: 600;
    margin-bottom: 30px;
}
.footer-container .each-footer-column ul li{
    margin-bottom: 15px;
}
.footer-container .each-footer-column ul li a{
    color: #fff;
}
.footer-social-icon {
    padding: 0px;
    margin: 0px;
}
.footer-social-icon .each-footer-icon{
    margin: 0px 5px;
    border: 1px solid #fff;
    padding: 5px 10px;
    color: #fff;
}
.copy-right-container{
    text-align: center;
    color: #fff;
    border-top: 2px solid #fff;
    margin-top: 10px;
}
.copy-right-container p{
    margin-bottom: 0px;
    padding: 5px 0px;
}
/*========================================
Home Page Style
=========================================*/
/* Carousel */
#hero.carousel{
    height: 100vh;
}
.carousel-inner{
    height: 100%;
}
.carousel-item{
    height: 100%;
}
.each-carousel-container{
    height: 100%;
}
.each-carousel-container:nth-child(1){
    background-color: #29395B;
}
.each-carousel-container:nth-child(2){
    background-color: #29395B;
}
.each-carousel-wrap{
    height: 100%;
    background-position: center;
}
.content-container {
    height: 100%;
    display: flex;
    align-items: center;
}
.text-container{
    color: #fff;
}
.two-item .text-container{
    display: flex;
}
.text-container h2{
    font-size: 80px;
    font-weight: 700;
    line-height: 70px;
}
.text-container p{
    margin-bottom: 40px;
}
.social-media-container {
    position: absolute;
    right: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}
.social-media-container .each-social-media {
    margin-bottom: 30px;
}
.social-media-container .each-social-media a{
    padding: 10px;
    color: #fff;
    background-color: #154b95;
}

.carousel-qoute-container {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 32px rgba(10, 10, 10,0.08);
    -moz-box-shadow: 0 0 32px rgba(10, 10, 10,0.08);
    -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
}
.carousel-qoute-container h2{
    font-weight: 600;
}
.input-container {
    margin-bottom: 20px;
    margin-left: 0px;
    padding-left: 0;
}
.form-input{
    width: 100%;
    display: block;
    color: #636363;
    background-color: #f5f5f5;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 0;
    border: none;
}
.text-container{
    height: 100%;
    align-items: center;
}
/* welcome */
.welcome-section{
    padding: 70px 0px;
}
.welcome-text-container h2{
    color: #000000;
    font-size: 45px;
    display: block;
    font-weight: 700;
    margin-bottom: 30px;
}
/* home services */
.home-services-section{
    padding: 40px 0px;
    background-color: #154b95;
}
.each-home-service{
    /* color: #fff; */
    text-align: center;
    border: 3px solid #fff;
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    transition: .6s;
    height: 100%;
}
.home-services-container .col-lg-4{
    margin-bottom: 30px;
}
.each-home-service .icon-container {
    width: 100px;
    margin: auto;
    margin-bottom: 20px;
    background-image: url('../img/icon-logo/sign.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.each-home-service .icon-container .sec-pic{
    display: none;
    transition: .6s;
}
.home-service-content h3{
    color: #999999;
    font-weight: 600;
    text-transform: capitalize;
}
.each-home-service:hover{
    color: #fff;
    background-color: transparent;
    transition: .6s;
}
.each-home-service:hover .icon-container .sec-pic{
    display: block;
    transition: .6s;
}
.each-home-service:hover .icon-container .fir-pic{
    display: none;
    transition: .6s;
}
.read-more{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999999;
}
.read-more:hover{
    color: #fff;
}
.read-more i{
    display: inline-block;
    vertical-align: middle;
}
/* WHy Chose Us */
.why-chose-us-section{
    padding: 40px 0px;
}
.why-chose-us-container{
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    display: flex;
    width: 100%;
    position: relative;
}
.why-chose-us-container .each-side{
    width: 50%;
}
.why-chose-us-container .each-side.left-side{
    padding: 40px 40px 40px 40px;
}
/* testimonial */
.testimonial-section{
    padding: 50px 0px;
    position: relative;
    z-index: 1;
}
.testimonial-section::before{
    content: "";
    position: absolute;
    background-color: rgba(21, 75, 149, 0.8);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}
.testimonail-container{
    margin: 30px 60px;
    border: 1px solid #fff;
    position: relative;
    z-index: 3;
    padding: 20px 50px;
    color: #fff;
}
.each-comment-container{
    padding: 50px;
    background: rgba(3, 14, 38, 0.1);
    text-align: center;
    position: relative;
}
.testimonial-profile{
    display: inline-flex;
}
.testimonial-profile .profile-pic{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;
    border: 2px solid #999999;
}
.testimonial-profile .profile-info h4{
    color: #fff;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}
.testimonial-profile .profile-info span{
    color: #999999;
}
.testimonails-carousels .owl-dots{
    text-align: center;
}
.testimonails-carousels .owl-dots .owl-dot{
    background: #fff;
        background-color: rgb(255, 255, 255);
    border: 0;
    width: 15px;
    height: 5px;
    border-radius: 5px;
    margin-right: 10px;
}
.testimonails-carousels .owl-dots .owl-dot.active {
    width: 30px !important;
    background-color: #999999;
}
/* subscribe */
.subscribe-section {
    padding: 60px 0px;
}
.subscribe-card {
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
}
/*========================================
About us Page Style
=========================================*/
/* about us */
.about-us-section{
    padding: 60px 0px;
}
.about-us-card {
    box-shadow: 0 16px 38px -12px rgba(211, 198, 198, 0.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    margin: 0px 50px;
    position: relative;
}
.about-us-container .sides{
    width: 50%;
}
.about-us-container .sides.right-side{
    background-color: #154b95;
    padding: 30px 30px 30px;
}
/*========================================
Members Page Style
=========================================*/
.members-section{
    padding: 40px 40px;
}
.member-info {
    padding-left: 50px;
}
.each-member-container {
    margin-bottom: 60px;
    margin-top: 60px;
}
.each-member-container:first-child{
    margin-top: 0px;
}
.each-member-container .member-img{
    height: 550px;
}
.each-member-container .member-contact-info h3{
    text-transform: capitalize;
    line-height: 42px;
    letter-spacing: 0.8px;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
}
.member-contact-info ul{
    padding: 0;
    list-style: none;
}
.member-contact-info ul li p{
    margin-bottom: 0px;
}
.member-contact-info ul li p{
    color: #999;
    font-weight: 500;
}
.member-contact-info ul li p .value{
    color: #212529;
}
/*========================================
Oue Services Page Style
=========================================*/
.services-section{
    /*! padding: 60px 0px; */
}

.earch-service-container{
    /*! margin: 30px 0px; */
    padding: 70px 30px;
}
.service-img-side {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
.service-text-side {
    background-color: #fff;
    padding: 50px 30px;
    box-shadow: 0 16px 38px -12px rgba(211, 198, 198, 0.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
}
/*========================================
Events Page Style
=========================================*/
.events-section {
    padding: 50px 0px;
}
#events_carousel.carousel{
    height: 100%;
}
.events_carousel .carousel-item {
    transition: transform 2.6s ease-in-out;
}  
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: opacity 0s 2.6s;
}
.each-events-container {
    width: 100%;
}
.thumbnails {
    position: relative;
    height: 355px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    /* background-color: #154b95; */
    margin-bottom: 25px;
}
.thumbnails .overlayer-text {
    position: absolute;
    background-color: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
}
.thumbnails .overlayer-text h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: capitalize;
}
.thumbnails .overlayer-text h5{
    font-size: 18px;
}
.event-section {
    padding: 40px 0px;
}
.each-event-container{
    height: 230px;
    width: 100%;
    margin-bottom: 20px;
}
/*========================================
Contact us Page Style
=========================================*/
.contact-form-section {
    padding: 60px 0px;
}
.contact-us-form-wrap {
    margin: 0px 140px;
    position: relative;
}
.social-media {
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.1);
}
.each-contact-info {
    padding: 0px;
    margin: 0px 0px 20px;
}
.each-contact-info p{
    margin-bottom: 0px;
    margin-left: 20px;
    display: flex;
    word-wrap: anywhere;
}
.each-contact-info a{
    color: #fff;
}
.social-media .each-contact-info a{
    margin-bottom: 0px;
    margin-left: 20px;
    display: flex;
}
.each-contact-info p::before{
    font-family: 'themify';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin-left: -20px;
    font-size: 25px;
    padding-right: 10px;
}
.each-contact-info a::before{
    font-family: 'themify';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin-left: -20px;
    font-size: 25px;
    padding-right: 10px;
}
.each-contact-info p.address::before{
    content: "\e693";
    margin-top: auto;
    margin-bottom: auto;
}
.each-contact-info p.email::before{
    content: "\e75a";
    margin-top: auto;
    margin-bottom: auto;
}
.each-contact-info p.phone span{
    margin: 0px 5px;
}
.each-contact-info p.phone::before{
    content: "\e621";
    margin-top: auto;
    margin-bottom: auto;
}
.each-contact-info a.facebook::before{
    content: "\e741";
    margin-top: auto;
    margin-bottom: auto;
}
.each-contact-info a.twitter::before{
    content: "\e72a";
    margin-top: auto;
    margin-bottom: auto;
}
.each-contact-info a.linkedin::before{
    content: "\e735";
    margin-top: auto;
    margin-bottom: auto;
}
.contact-us-form-container{
    position: relative;
    padding: 60px 0px;
}
.contact-us-form-container::before{
    content: "";
    position: absolute;
    background-color: #154b95;
    left: 180px;
    right: 0;
    top: 0;
    bottom: 0;
}
.contact-details{
    background-color: #999999;
    color: #fff;
    padding: 30px 30px;
    height: 100%;
}
.contact-details-container{
    margin: 0;
    padding: 0;
}
.form-card .contact-form{
    padding: 30px 30px 30px 75px;
    background-color: transparent;
    color: #fff;
}
.form-input-container .form-input{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.form-container {
    box-shadow: 0 16px 38px -12px rgba(211, 198, 198, 0.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    padding: 30px 20px;
    background-color: #fff;
}
.contact-details h3, .contact-form h3{
    font-weight: 600;
}