body {
    color: #464646;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    color: #48b3e5;
}

    a:hover {
        text-decoration: none;
        color: #74c6ec;
    }

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

.scroll-to-top {
    position: fixed;
    visibility: hidden;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 35px;
    height: 35px;
    border-radius: 52px;
    transition: all 0.3s;
    opacity: 0;
    background: #48b3e5;
}

    .scroll-to-top i {
        font-size: 22px;
        color: #fff;
        line-height: 0.1;
    }

    .scroll-to-top:hover {
        color: #fff;
        background: #6cc2ea;
    }

    .scroll-to-top.active {
        opacity: 1;
        visibility: visible;
    }

#main-header {
    z-index: 700;
    padding: 15px 0;
    transition: all 0.4s;
}

    #main-header.header-scrolled,
    #main-header.header-inner-pages {
        background: rgba(42, 60, 92, 0.9);
    }

    #main-header .logo {
        margin: 0;
        padding: 0;
    }

        #main-header .logo a {
            color: #fff;
        }

        #main-header .logo img {
            max-height: 42px;
        }

.navbar {
    padding: 0;
}

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

    .navbar li {
        position: relative;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        transition: 0.2s;
        align-items: center;
        padding: 10px 0 10px 30px;
        font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
        justify-content: space-between;
        color: #fff;
    }

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

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            color: #48b3e5;
        }

    .navbar .getstarted, .navbar .getstarted:focus {
        margin-left: 30px;
        font-size: 14px;
        border-radius: 50px;
        padding: 8px 20px;
        color: #fff;
        font-weight: 600;
        border: 2px solid #48b3e5;
    }

        .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
            background: #32aadf;
            color: #fff;
        }

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

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

        .navbar .dropdown ul a {
            color: #0e3e55;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            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: #48b3e5;
            }

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

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

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

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

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

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    display: none;
    line-height: 0;
    cursor: pointer;
    transition: 0.4s;
}

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

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

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(42, 60, 92, 0.9);
    transition: 0.2s;
    z-index: 800;
}

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

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

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

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

    .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
        color: #39537e;
        margin: 15px;
    }

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

        .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: #48b3e5;
            }

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

#hero-section {
    width: 100%;
    height: 80vh;
    background: #39537e;
}

    #hero-section .container {
        padding-top: 72px;
    }

    #hero-section h1 {
        font-size: 48px;
        margin: 0 0 10px 0;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
    }

    #hero-section h2 {
        margin-bottom: 50px;
        font-size: 24px;
        color: rgba(255, 255, 255, 0.6);
    }

    #hero-section .btn-get-started {
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 16px;
        display: inline-block;
        padding: 10px 28px 11px 28px;
        border-radius: 50px;
        transition: 0.4s;
        letter-spacing: 1px;
        margin: 10px 0 0 0;
        color: #fff;
        background: #48b3e5;
    }

        #hero-section .btn-get-started:hover {
            background: #20a0d9;
        }

@media (max-width: 991px) {
    #hero-section {
        height: 100vh;
        text-align: center;
    }

        #hero-section .animated {
            animation: none;
        }

        #hero-section .hero-img {
            text-align: center;
        }

            #hero-section .hero-img img {
                width: 50%;
            }
}

@media (max-width: 768px) {
    #hero-section h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero-section h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero-section .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero-section .hero-img img {
        width: 80%;
    }

    #hero-section .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

section {
    padding: 60px 0;
    overflow: hidden;
}

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

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

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

        .section-title h2::before {
            content: "";
            position: absolute;
            display: block;
            width: 120px;
            height: 1px;
            background: #ddd;
            bottom: 1px;
            left: calc(50% - 60px);
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 40px;
            height: 3px;
            background: #48b3e5;
            bottom: 0;
            left: calc(50% - 20px);
        }

    .section-title p {
        margin-bottom: 0;
    }

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-left: 28px;
        position: relative;
    }

        .about .content ul li + li {
            margin-top: 10px;
        }

    .about .content ul i {
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 20px;
        color: #48b3e5;
        line-height: 1;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #48b3e5;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #48b3e5;
}

    .about .content .btn-learn-more:hover {
        background: #48b3e5;
        color: #fff;
        text-decoration: none;
    }

.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

    .services .icon-box .icon {
        margin-bottom: 10px;
    }

        .services .icon-box .icon i {
            color: #48b3e5;
            font-size: 36px;
            transition: 0.3s;
        }

    .services .icon-box h4 {
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .services .icon-box h4 a {
            color: #39537e;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        transform: translateY(-10px);
    }

        .services .icon-box:hover h4 a {
            color: #48b3e5;
        }

.cta {
    background: linear-gradient(rgba(42, 60, 92, 0.9), rgba(42, 60, 92, 0.9)), url("../img/start-project-background.png") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #fff;
        color: #fff;
    }

        .cta .cta-btn:hover {
            background: #48b3e5;
            border: 2px solid #48b3e5;
        }

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

.why .why-containers {
    padding: 0 100px;
}

    .why .why-containers ul {
        padding: 0;
        list-style: none;
    }

    .why .why-containers li + li {
        margin-top: 15px;
    }

    .why .why-containers li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

        .why .why-containers li h5 {
            color: #39537e;
        }

    .why .why-containers p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

@media (max-width: 1200px) {
    .why .why-containers {
        padding: 0;
    }
}

.contact .info {
    border-top: 3px solid #48b3e5;
    border-bottom: 3px solid #48b3e5;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

    .contact .info i {
        font-size: 20px;
        color: #48b3e5;
        float: left;
        width: 44px;
        height: 44px;
        background: #e8f6fc;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #39537e;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #6182ba;
    }

    .contact .info .email p {
        padding-top: 5px;
    }

    .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
        background: #48b3e5;
        color: #fff;
    }

.contact .message-form {
    width: 100%;
    border-top: 3px solid #48b3e5;
    border-bottom: 3px solid #48b3e5;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

    .contact .message-form .form-group {
        padding-bottom: 8px;
    }

    .contact .message-form .error-message {
        display: none;
        color: #fff;
        background: #dc3545;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .message-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .message-form .sent-message {
        display: none;
        color: #fff;
        background: #48b3e5;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .message-form .sending {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .message-form .sending:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            margin: 0 11px -5px 0;
            border: 4px solid #48b3e5;
            border-top-color: #eee;
            animation: animate-sending 1s linear infinite;
        }

    .contact .message-form .form-group {
        margin-bottom: 20px;
    }

    .contact .message-form input, .contact .message-form select, .contact .message-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

    .contact .message-form select {
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 16px;
    }

    .contact .message-form input:focus, .contact .message-form textarea:focus {
        border-color: #48b3e5;
    }

    .contact .message-form input {
        height: 44px;
    }

    .contact .message-form textarea {
        padding: 10px 12px;
    }

    .contact .message-form button {
        background: #48b3e5;
        border: 0;
        padding: 12px 34px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .message-form button:hover {
            background: #20a0d9;
        }

@keyframes animate-sending {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#main-footer {
    font-size: 14px;
    background: #39537e;
}

    #main-footer .footer-top {
        padding: 60px 0 30px 0;
        background: #fff;
    }

        #main-footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #main-footer .footer-top .footer-contact h3 {
                font-size: 28px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                text-transform: uppercase;
                font-weight: 600;
                color: #39537e;
            }

            #main-footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                font-family: "Roboto", sans-serif;
                margin-bottom: 0;
                color: #606060;
            }

        #main-footer .footer-top h4 {
            font-size: 16px;
            padding-bottom: 12px;
            color: #39537e;
            font-weight: bold;
            position: relative;
        }

        #main-footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #main-footer .footer-top .footer-links ul {
                list-style: none;
                margin: 0;
                padding: 0;
            }

                #main-footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    font-size: 18px;
                    color: #48b3e5;
                    line-height: 1;
                }

                #main-footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    align-items: center;
                    display: flex;
                }

                    #main-footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #main-footer .footer-top .footer-links ul a {
                    color: #787878;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #main-footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #48b3e5;
                    }


    #main-footer .footer-bottom {
        color: #fff;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #main-footer .copyright {
        float: left;
    }

@media (max-width: 768px) {
    #main-footer .footer-bottom {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    #main-footer .copyright {
        float: none;
        text-align: center;
    }
}
