/***  Basics  ***/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #2487ce;
    text-decoration: none;
}

a:hover {
    color: #469fdf;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

@media screen and (max-width: 768px) {
    [data-aos] {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }

    section {
        padding-top: 40px !important;
        padding-bottom: 0 !important;
    }

    .section-title h2, .section-title {
        margin-bottom: 0px !important;
        padding-bottom: 10px !important;
        font-size: 28px !important;
    }
}

section {
    padding-bottom: 20px;
    padding-top: 60px;
    overflow: hidden;
}

.section-bg {
    background-color: #f8fbfe;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #124265;
}


/***  Navigaion  ***/
#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid #e6f2fb;
}

#header .logo-div {
    display: flex;
    align-items: center;
}

#header.header-scrolled {
    border-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo-img {
    width: 50px;
    margin-right: 10px;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #16507b;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 14px;
    color: #16507b;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar .menu-social a {
    font-size: 20px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
    color: #2487ce;
}

.navbar .getstarted, .navbar .getstarted:focus {
    background: #2487ce;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.contact-btn {
    background: #2487ce;
    padding: 8px 20px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover, .contact-btn:hover {
    color: #fff;
    background: #3194db;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
    color: #2487ce;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/***  Mobile navbar  ***/
.mobile-nav-toggle {
    color: #124265;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header .logo {
        font-size: 28px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 38, 58, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #124265;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
    color: #2487ce;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
    color: #2487ce;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/***  Top section  ***/
#top {
    height: 100vh;
    width: 100%;
    position: relative;
    background-size: cover;
    position: relative;
    padding-top: 70px;
    padding-bottom: 0;
}

#top:before {
    content: "";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#top .container {
    padding-top: 80px;
}

#top h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    color: #124265;
    font-family: "Poppins", sans-serif;
}

#top h2 {
    color: #5e5e5e;
    margin: 10px 0 0 0;
    font-size: 22px;
}

.top-photo {
    width: 50%;
}

@media (max-width: 992px) {

    #top {
        height: 50vh;
    }

    #top h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #top h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .contact-us, .contact-form {
        text-align: center;
        margin-top: 20px;
    }

    #services {
        padding-bottom: 0;
    }

}

/***  About section  ***/
#about {
    background-color: #48a1e0;
}

#about h2, #about h5 {
    color: white;
}

#about p {
    font-size: 18px;
    letter-spacing: .02rem;
    font-weight: 400;
    line-height: 36px;
    text-rendering: optimizeLegibility;
    padding-bottom: 10px;
}


/***  Services section  ***/
#services .icon-box {
    padding: 50px 30px;
    height: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

#services .icon-box:hover {
    transform: scale(1.02);
    background: none;
    box-shadow: none;
}

#services .icon-box-photo {
    transition: all 0.3s ease-in-out;
    background-position: center !important;
    border-radius: 10px;
}

#services .icon-box-photo:hover {
    transform: scale(1.04);
}

#services .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color: black;
}

#services .icon-box .title a {
    color: #124265;
    transition: 0.3s;
}

#services .icon-box .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: black;
}

#services .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: #2487ce;
}

/***  Rework section  ***/
.rework-photo img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    width: auto;
}

/***  Gallery section  ***/
.gallery-photo {
    transition: 0.3s;
}

.gallery-photo:hover {
    transform: translate(0, -5px);
}


/***  Contact section  ***/
#contact {
    padding-bottom: 50px;
}

.contact .info {
    width: 100%;
    background: #fff;
}

.contact-row a {
    color: #000 !important;
}

.contact-row a:hover {
    color: #2487ce !important;
}

#contact .icon {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1;
    color: #2487ce
}

#contact .text p, #contact .text a {
    margin-bottom: 0;
    color: #000;
}

#contact .contact-row {
    margin-bottom: 30px;
}

.alert {
    display: none;
}


/***  Footer section  ***/
#footer p {
    font-size: 13px;
}


/***  Service page  ***/
#service-top {
    background-color: #2487ce;
}

#service-top h1 {
    color: white;
    margin: 0;
    margin-top: 60px !important;
}

.service-page-title-icon {
    color: white;
    font-size: 40px;
    margin: 10px;
}

.service-page-description img {
    width: 400px;
    height: 300px;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.3);
    transition: 0.3s;
    border-radius: 5px;
}

.service-page-description img:hover {
    transform: translate(0, -5px);
}

.service-page-description p {
    font-size: 18px;
    letter-spacing: .02rem;
    font-weight: 400;
    line-height: 36px;
    text-rendering: optimizeLegibility;
    padding-bottom: 10px;
}


/***  Lightbox  ***/
/* .lightbox {
    display: none;

    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 1em;

    background: rgba(0, 0, 0, 0.8);
}

.lightbox:target {
    display: block;
}

.lightbox span {
    display: block;
    width: 100%;
    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
} */