/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Lato', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #092a49;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #092a49;
    outline: none;
    text-decoration: none;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20vh);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}


.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 100%;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #0796fe;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #092a49;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #0796fe;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}

/**********************************/
/*********** Terms and Conditions Page **********/
/**********************************/

.termscontainer {
    width: 850px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .termscontainer {
        width: 80%;
        margin: 0 auto;
    }

}


    /**********************************/
    /*********** Nav Bar CSS **********/
    /**********************************/
    .navbar {
        position: relative;
        transition: .5s;
        z-index: 999;
    }

    .navbar img {
        width: 250px;
        height: 150px;
     }

        .navbar.nav-sticky {
            position: fixed;
            top: 0;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
            background: rgba(9, 42, 73, .2) !important;
            transition: .5s;
        }

    .navbar.nav-sticky img {
        opacity: 0;
        transition: .5s;
        width: 50px;
        height: 50px;
     }

    .navbar .navbar-brand {
        margin: 0;
        color: #ffffff;
        font-size: 45px;
        line-height: 0px;
        font-weight: 200;
        text-transform: uppercase;
     }

    .navbar .navbar-brand img {
        max-width: 100%;
        max-height: 0px;
     }

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #0796fe !important;
        transition: 1s;
        font-weight: 400;
    }

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 20px 60px;
        background: rgba(9, 42, 73, .2) !important;
        z-index: 999;
    }

        .navbar.nav-sticky {
            padding: 10px 60px;
            background: #092a49 !important;
        }

    .page .navbar {
        background: #092a49 !important;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: #092a49 !important;
    }

        .navbar.nav-sticky {
            padding: 10px 10px;
            background: #092a49 !important;
        }

        .navbar a.nav-link {
            padding: 5px;
        }

        .navbar .dropdown-menu {
            box-shadow: none;
        }
}


    /*******************************/
    /********** Hero CSS ***********/
    /*******************************/
    .carousel {
        position: relative;
        width: 100%;
        height: calc(100vh - 35px);
        min-height: 400px;
        margin-bottom: 45px;
    }

        .carousel .container-fluid {
            padding: 0;
        }

        .carousel .carousel-item {
            position: relative;
            width: 100%;
            height: calc(100vh - 35px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .carousel .carousel-img {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: right;
            overflow: hidden;
        }

            .carousel .carousel-img::after {
                position: absolute;
                content: "";
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: rgba(5, 42, 73, .4);
                z-index: 1;
            }

            .carousel .carousel-img img {
                width: 100%;
                height: 100%;
            }

        .carousel .carousel-text {
            position: absolute;
            max-width: 700px;
            height: calc(100vh - 35px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 2;
        }

            .carousel .carousel-text h1 {
                text-align: center;
                color: #ffffff;
                font-size: 60px;
                font-weight: 200;
                margin-bottom: 20px;
            }

            .carousel .carousel-text p {
                color: #ffffff;
                text-align: center;
                font-size: 20px;
                margin-bottom: 25px;
            }

            .carousel .carousel-text .btn {
                padding: 15px 30px;
                font-size: 16px;
                letter-spacing: 1px;
                color: #ffffff;
                background: none;
                border: 2px solid #ffffff;
                border-radius: 0;
                transition: .3s;
            }

                .carousel .carousel-text .btn i {
                    margin-right: 5px;
                }

                .carousel .carousel-text .btn:hover {
                    color: #0796fe;
                    background: #ffffff;
                }

        .carousel .carousel-btn .btn:first-child {
            margin-right: 15px;
        }


        .carousel .animated {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
        }

        .carousel .owl-nav {
            position: absolute;
            width: 122px;
            right: 2px;
            bottom: 2px;
            display: none;
            z-index: 9;
        }

            .carousel .owl-nav .owl-prev,
            .carousel .owl-nav .owl-next {
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #0796fe;
                background: #092a49;
                font-size: 22px;
                transition: .3s;
            }

                .carousel .owl-nav .owl-prev:hover,
                .carousel .owl-nav .owl-next:hover {
                    color: #ffffff;
                    background: #0796fe;
                }

            .carousel .owl-nav .owl-prev {
                margin-right: 2px;
            }

        .carousel .animated {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
        }


    @media (max-width: 991.98px) {
        .carousel,
        .carousel .carousel-item,
        .carousel .carousel-text {
            height: calc(100vh - 105px);
        }

            .carousel .carousel-text h1 {
                font-size: 35px;
            }

            .carousel .carousel-text p {
                font-size: 16px;
            }

            .carousel .carousel-text .btn {
                padding: 12px 30px;
                font-size: 15px;
                letter-spacing: 0;
            }
    }

    @media (max-width: 767.98px) {
        .carousel,
        .carousel .carousel-item,
        .carousel .carousel-text {
            height: calc(100vh - 70px);
        }

            .carousel .carousel-text h1 {
                font-size: 30px;
            }

            .carousel .carousel-text .btn {
                padding: 10px 25px;
                font-size: 15px;
                letter-spacing: 0;
            }
    }

    @media (max-width: 575.98px) {
        .carousel .carousel-text h1 {
            font-size: 25px;
        }

        .carousel .carousel-text .btn {
            padding: 8px 20px;
            font-size: 14px;
            letter-spacing: 0;
        }
    }


    /*******************************/
    /******* Section Header ********/
    /*******************************/
    .section-header {
        position: relative;
        text-align: left;
        margin-bottom: 45px;
    }

.section-headerSpec {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

        .section-header p {
            margin-bottom: 5px;
            position: relative;
            font-size: 16px;
        }

        .section-header h2 {
            margin: 0 0 0 40px;
            position: relative;
            font-size: 50px;
            font-weight: 200;
        }

            .section-header h2::after {
                content: "";
                position: absolute;
                width: 200px;
                height: 0;
                border-bottom: 1px solid;
                top: 65px;
                left: -40px;
            }

        .section-headerSpec h2 {
            margin: 0 0 0 40px;
            position: relative;
            font-size: 50px;
            font-weight: 200;
        }

            .section-headerSpec h2::after {
                content: "";
                position: absolute;
                width: 200px;
                height: 0;
                border-bottom: 1px solid;
                top: 65px;
                left: -40px;
            }

            .section-header h2:hover::after {
            }

    @media (max-width: 991.98px) {
        .section-header h2 {
            font-size: 45px;
        }
    }

    @media (max-width: 767.98px) {
        .section-header h2 {
            font-size: 40px;
        }

            .section-header h2::after {
                content: "";
                position: absolute;
                width: 200px;
                height: 0;
                border-bottom: 1px solid;
                top: 45px;
                left: -40px;
            }

        .section-headerSpec h2 {
            font-size: 40px;
        }

            .section-headerSpec h2::after {
                content: "";
                position: absolute;
                width: 200px;
                height: 0;
                border-bottom: 1px solid;
                top: 95px;
                left: -40px;
            }
    }

    @media (max-width: 575.98px) {
        .section-header h2 {
            font-size: 35px;
        }

        .section-headerSpec h2 {
            font-size: 35px;
        }
    }


    /*******************************/
    /********** Fact CSS ***********/
    /*******************************/
    .fact {
        position: relative;
        width: 100%;
        padding: 45px 0 15px 0;
    }

        .fact .fact-item {
            position: relative;
            width: 100%;
            margin-bottom: 30px;
            padding: 30px 0 25px 0;
            text-align: center;
            background: #ffffff;
            border: 1px solid transparent;
            box-shadow: 0 0 30px rgba(0, 0, 0, .1);
            transition: .3s;
        }

            .fact .fact-item:hover {
                border-color: rgba(0, 0, 0, .1);
                box-shadow: none;
            }

            .fact .fact-item img {
                max-height: 50px;
                margin-bottom: 15px;
            }

            .fact .fact-item h2 {
                font-size: 22px;
                font-weight: 300;
                letter-spacing: 1px;
            }


    /*******************************/
    /********** About CSS **********/
    /*******************************/
    .about {
        position: relative;
        width: 100%;
        padding: 45px 0;
    }

        .about .section-header {
            margin-bottom: 30px;
            margin-left: 0;
        }

        .about .about-img {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            transition: .5s;
        }

            .about .about-img::after {
                position: absolute;
                content: "";
                top: 60px;
                right: 60px;
                bottom: 60px;
                left: 60px;
                background: transparent;
                z-index: 1;
            }

        .about .about-img-1 {
            position: relative;
            height: 100%;
            height: 100%;
            margin: 0 150px 150px 0;
            box-shadow: 4px 4px 0 0;
        }

        .about .about-img-2 {
            box-shadow: 4px 4px 0px 0px;
            position: absolute;
            height: 100%;
            height: 100%;
            top: 150px;
            left: 150px;
            z-index: 1;
        }

            .about .about-img-1 img,
            .about .about-img-2 img {
                position: relative;
                width: 100%;
                box-shadow: 4px 4px 0 0;
            }

        .about .about-text p {
            font-size: 16px;
        }

        .about .about-text a.btn {
            position: relative;
            margin-top: 15px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #092a49;
            border: 2px solid #092a49;
            border-radius: 0;
            background: none;
            transition: .3s;
        }

            .about .about-text a.btn:hover {
                color: #0796fe;
                background: #092a49;
            }

    @media (max-width: 991.98px) {
        .about .about-img {
            display: none;
        }
    }


    /*******************************/
    /********* Service CSS *********/
    /*******************************/
    .service {
        position: relative;
        width: 100%;
        padding: 45px 0 15px 0;
    }

        .service .service-item {
            position: relative;
            width: 100%;
            margin-bottom: 30px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, .1);
            transition: .3s;
        }



            .service .service-item:hover {
                border-color: transparent;
                box-shadow: 0 0 30px rgba(0, 0, 0, .1);
            }

            .service .service-item img {
                max-height: 50px;
                margin-bottom: 20px;
            }

            .service .service-item h3 {
                margin-bottom: 10px;
                font-size: 22px;
                font-weight: 300;
                letter-spacing: 1px;
            }

                .service .service-item h3:hover {
                    color: blue;
                    letter-spacing: 1.5px;
                    transition: 1s;
                }

            .service .service-item p {
                margin-bottom: 10px;
                font-size: 16px;
            }

            .service .service-item a {
                position: relative;
                font-size: 16px;
                color: #0796fe;
                transition: .3s;
                text-decoration: none;
            }


                .service .service-item a::after {
                    content: "";
                    position: absolute;
                    width: 80%;
                    height: 2px;
                    bottom: -3px;
                    left: 10%;
                    background: #0796fe;
                }

            .service .service-item:hover a.btn {
                color: #092a49;
                background: #1d2434;
                border-color: #1d2434;
            }

            .service .service-item a:hover {
                color: blue;
                letter-spacing: 1px;
            }


    /*******************************/
    /********* Feature CSS *********/
    /*******************************/
    .feature {
        position: relative;
        width: 100%;
        padding: 45px 0;

    }

        .feature .col-md-6 {
            height: 100%;  
        }

        .feature .feature-img {
            position: relative;
            width: 95%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
        }

            .feature .feature-img::after {
                position: absolute;
                content: "";
                width: 100%;
                height: 70%;
                top: 30%;
                left: 0;
                z-index: 1;
            }

            .feature .feature-img img {
                position: relative;
                max-width: 100%;
                max-height: 100%;
                margin: 0 30px 30px 30px;
                z-index: 2;
                box-shadow: 4px 4px 0 0;
            }

        .feature .feature-img-Oil {
            position: relative;
            width: 95%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
        }

            .feature .feature-img-Oil::after {
                position: absolute;
                content: "";
                width: 100%;
                height: 70%;
                top: 30%;
                left: 0;
                z-index: 1;
            }

            .feature .feature-img-Oil img {
                position: relative;
                max-width: 100%;
                max-height: 100%;
                margin: 0 30px 30px 30px;
                z-index: 2;
            }

    @media (max-width: 767.98px) {
        .feature .feature-img {
            display: none;
        }

        .feature .feature-img-Oil {
            display: none;
        }
    }

    .feature .counters .col-6 {
        padding-top: 25px;
        display: flex;
        flex-direction: row;
    }

    .feature .counters i {
        padding: 5px 0px 0 0;
        font-size: 28px;
        color: #0796fe;
    }

    .feature .counters h2 {
        position: relative;
        display: inline-block;
        color: darkgray;
        font-size: 30px;
        font-weight: 300;
    }

        .feature .counters h2::after {
            position: absolute;
            content: "+";
            top: -15px;
            right: -15px;
        }

    .feature .counters p {
        color: #092a49;
        font-size: 20px;
        margin: 0;
    }


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

        .testimonial .testimonials-carousel {
            position: relative;
            width: calc(100% + 30px);
            margin: 0 -15px;
        }

        .testimonial .testimonial-item {
            position: relative;
            width: 100%;
            padding: 0;
            display: flex;
            align-items: flex-start;
            justify-content: space-evenly;
            flex-direction: column;
            overflow: hidden;
        }

            .testimonial .testimonial-item img {
                position: relative;
                width: 210px;
                height: 110px;
                margin-bottom: 10px;
            }

            .testimonial .testimonial-item p {
                margin-bottom: 10px;
            }

            .testimonial .testimonial-item h2 {
                position: relative;
                color: #092a49;
                font-size: 16px;
                letter-spacing: 1px;
                margin-bottom: 5px;
                padding-bottom: 3px;
            }

                .testimonial .testimonial-item h2::before {
                    position: absolute;
                    content: "";
                    width: 30px;
                    height: 2px;
                    bottom: 0;
                    left: 0;
                    background: #0796fe;
                    transition: .3s;
                }

            .testimonial .testimonial-item:hover h2::before {
                width: 230px;
            }

            .testimonial .testimonial-item h3 {
                color: #999999;
                font-size: 14px;
                font-weight: 300;
                letter-spacing: 2px;
                margin: 0;
            }

        .testimonial .owl-nav {
            display: none;
            position: relative;
            width: 100%;
            margin-top: 30px;
            justify-content: center;
        }

            .testimonial .owl-nav .owl-prev,
            .testimonial .owl-nav .owl-next {
                position: relative;
                width: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #0796fe;
                font-size: 25px;
                transition: .3s;
            }

            .testimonial .owl-nav .owl-prev {
                padding-right: 80px;
            }

            .testimonial .owl-nav .owl-next {
                padding-left: 80px;
            }

                .testimonial .owl-nav .owl-prev:hover,
                .testimonial .owl-nav .owl-next:hover {
                    color: #092a49;
                }

                .testimonial .owl-nav .owl-prev::after,
                .testimonial .owl-nav .owl-next::after {
                    position: absolute;
                    content: "";
                    width: 80px;
                    height: 3px;
                    top: 11px;
                    background: #0796fe;
                    transition: .3s;
                }

            .testimonial .owl-nav .owl-prev::after {
                left: 9px;
            }

            .testimonial .owl-nav .owl-next::after {
                right: 9px;
            }

            .testimonial .owl-nav .owl-prev:hover::after {
                background: #092a49;
            }

            .testimonial .owl-nav .owl-next:hover::after {
                background: #092a49;
            }

@media (max-width: 767.98px) {
    .testimonial .testimonial-item {
        position: relative;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        overflow: hidden;
    }

        .testimonial .testimonial-item img {
            position: relative;
            width: 200px;
            height: 140px;
            margin-bottom: 10px;
            margin-left: 25%;
        }

}


    /*******************************/
    /********* Contact CSS *********/
    /*******************************/
    .contact {
        position: relative;
        width: 100%;
        padding: 45px 0 15px 0;
    }

        .contact .contact-info {
            position: relative;
            display: flex;
            padding: 30px;
            border: 1px solid rgba(0, 0, 0, .1);
            margin-bottom: 30px;
            transition: .3s;
        }

            .contact .contact-info:hover {
                border-color: transparent;
                box-shadow: 0 0 30px rgba(0, 0, 0, .1);
            }

        .contact .contact-icon {
            position: relative;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 0, 0, .1);
        }

            .contact .contact-icon i {
                font-size: 18px;
                color: #0796fe;
            }

        .contact .contact-text {
            position: relative;
            display: flex;
            flex-direction: column;
            padding-left: 15px;
        }

        .contact .contact-text {
            position: relative;
            display: flex;
            flex-direction: column;
            padding-left: 15px;
        }

            .contact .contact-text h3 {
                font-size: 16px;
                font-weight: 400;
                color: #092a49;
                letter-spacing: 1px;
            }

            .contact .contact-text p {
                margin: 0;
                font-size: 16px;
            }

        .contact .contact-form {
            position: relative;
            padding: 30px;
            border: 1px solid rgba(0, 0, 0, .1);
            margin-bottom: 30px;
            transition: .3s;
        }

            .contact .contact-form:hover {
                border-color: transparent;
                box-shadow: 0 0 30px rgba(0, 0, 0, .1);
            }

            .contact .contact-form input {
                padding: 15px;
                background: none;
                border-radius: 0;
                border: 1px solid rgba(0, 0, 0, .1);
            }

                .contact .contact-form input:focus {
                    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
                    transition: 1s;
                }

            .contact .contact-form date {
                padding: 15px;
                background: none;
                border-radius: 0;
                border: 1px solid rgba(0, 0, 0, .1);
            }

            .contact .contact-form textarea {
                height: 100px;
                padding: 8px 15px;
                background: none;
                border-radius: 0;
                border: 1px solid rgba(0, 0, 0, .1);
            }

            .contact .contact-form textarea:focus {
                    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
                    transition: 1s;
            }

            .contact .contact-form .btn {
                padding: 15px 30px;
                font-size: 16px;
                font-weight: 600;
                letter-spacing: 1px;
                color: #092a49;
                background: none;
                border: 2px solid #092a49;
                border-radius: 0;
                transition: .3s;
            }

                .contact .contact-form .btn:hover {
                    color: #0796fe;
                    background: #092a49;
                }

        .contact .help-block ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }


    /*******************************/
    /******* Single Page CSS *******/
    /*******************************/
    .single {
        position: relative;
        width: 100%;
        padding: 45px 0 15px 0;
    }

        .single img {
            width: 100%;
            margin: 0 0 25px 0;
        }

        .single .table,
        .single .list-group {
            margin-bottom: 30px;
        }

        .single .ul-group {
            padding: 0;
            list-style: none;
        }

            .single .ul-group li {
                margin-left: 2px;
            }

                .single .ul-group li::before {
                    position: relative;
                    content: "\f0da";
                    font-family: "Font Awesome 5 Free";
                    font-weight: 900;
                    margin-right: 10px;
                }

        .single .ol-group {
            padding-left: 18px;
        }


    /*******************************/
    /********* Footer CSS **********/
    /*******************************/
    .footer {
        position: relative;
        margin-top: 45px;
        padding-top: 90px;
        background: #092a49;
    }

        .footer .footer-contact,
        .footer .footer-link,
        .footer .footer-newsletter {
            position: relative;
            margin-bottom: 45px;
            color: #ffffff;
        }

            .footer .footer-contact h2,
            .footer .footer-link h2,
            .footer .footer-newsletter h2 {
                position: relative;
                margin-bottom: 30px;
                padding-bottom: 10px;
                font-size: 22px;
                font-weight: 300;
                letter-spacing: 1px;
                color: #ffffff;
            }

                .footer .footer-contact h2::after,
                .footer .footer-link h2::after,
                .footer .footer-newsletter h2::after {
                    position: absolute;
                    content: "";
                    width: 45px;
                    height: 2px;
                    bottom: 0;
                    left: 0;
                    background: #0796fe;
                }

            .footer .footer-link a {
                display: block;
                margin-bottom: 10px;
                color: white;
                transition: .3s;
                text-decoration: none !important;
            }

                .footer .footer-link a::before {
                    position: relative;
                    content: "\f105";
                    font-family: "Font Awesome 5 Free";
                    font-weight: 900;
                    margin-right: 10px;
                    text-decoration: none !important;
                }

                .footer .footer-link a:hover {
                    color: #0796fe;
                    letter-spacing: 1px;
                    text-decoration: none !important;
                }

            .footer .footer-contact p i {
                width: 25px;
            }

        .footer .footer-social {
            position: relative;
            margin-top: 20px;
        }

            .footer .footer-social a {
                display: inline-block;
            }

                .footer .footer-social a i {
                    margin-right: 15px;
                    font-size: 18px;
                    color: white;
                }

                .footer .footer-social a:last-child i {
                    margin: 0;
                }

                .footer .footer-social a:hover i {
                    color: #999999;
                }

        .footer .footer-newsletter .form {
            position: relative;
            width: 100%;
        }

        .footer .footer-newsletter input {
            height: 60px;
            border: 2px solid #1d2434;
            border-radius: 0;
        }

        .footer .footer-newsletter .btn {
            position: absolute;
            top: 8px;
            right: 8px;
            height: 44px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            color: #092a49;
            background: none;
            border-radius: 0;
            border: 2px solid #092a49;
            transition: .3s;
        }

            .footer .footer-newsletter .btn:hover {
                color: #0796fe;
                background: #092a49;
            }

        .footer .copyright {
            padding: 0 30px;
        }

            .footer .copyright .row {
                padding-top: 25px;
                padding-bottom: 25px;
                border-top: 1px solid rgba(256, 256, 256, .1);
            }

            .footer .copyright p {
                margin: 0;
                color: #999999;
            }

            .footer .copyright .col-md-6:last-child p {
                text-align: right;
            }

            .footer .copyright p a {
                color: #ffffff;
            }

                .footer .copyright p a:hover {
                    color: #0796fe;
                }

    @media (max-width: 767.98px) {
        .footer .copyright p,
        .footer .copyright .col-md-6:last-child p {
            margin: 5px 0;
            text-align: center;
        }
    }
