﻿
/*-------- # general CSS --------*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

.container {
    max-width: 1280px;
}

a {
    text-decoration: none;
    color: #000000;
}

    a:hover {
        color: #2b99f8;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin-right: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title p {
    align-items: center;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #0658a1;
}

.fixed-top {
    top: -1px;
}

.white-bg {
    width: 95%;
    margin-top: 0px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgb(165 165 165 / 26%);
}
/*-------- # page-head-section --------*/
.page-head-section {
    text-align: center;
    width: 100%;
    height: 55vh;
    overflow: hidden;
    position: relative;
    margin-bottom: -90px;
    z-index: 99;
    transition: 0.3s;
}

    .page-head-section:before {
        content: "";
        background: linear-gradient(80deg, rgb(6 88 161 / 90%), rgb(39 179 174 / 90%) 100%);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .page-head-section h2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 46px;
        font-weight: 700;
    }

    .page-head-section p {
        width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
    }

    .page-head-section .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid #27b3ae;
    }

        .page-head-section .btn-get-started:hover {
            background: #27b3ae;
            color: #fff;
            text-decoration: none;
        }

.about-bg {
    background: url("../img/background/about-bg.jpg") top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services-bg {
    background: url("../img/background//services-bg.jpg") top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.devloper-bg {
    background: url("../img/background/hire-bg.jpg") top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.portfolio-bg {
    background: url("../img/background/portfolio-bg.jpg") top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-bg {
    background: url("../img/background/contact-bg.jpg") top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.career-bg {
    background: url("../img/background/career-bg.jpg") top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.allservices-display {
    display: none;
}

@media screen and (max-width: 767px) {
    .page-head-section {
        height: 70vh;
        padding: 100px 0;
    }

        .page-head-section h2 {
            font-size: 28px;
        }

    .white-bg {
        width: 100%;
        padding: 40px 10px;
    }

    .section-title p {
        font-size: 30px;
    }

    .allservices-display {
        display: block;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .page-head-section {
        height: 40vh;
    }

    .allservices-display {
        display: block;
    }

    .page-head-section p {
        font-size: 20px;
    }
}
/*-------- # Hire CSS --------*/
.hire {
    margin-top: 80px;
    margin-bottom: 80px;
}

.talk {
    background: linear-gradient(80deg,#0658a1,#27b3ae 100%);
    border-radius: 20px;
    padding: 40px 20px;
}

    .talk h2 {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        color: #ffffff;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .talk p {
        width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
    }

    .talk .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 20px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 34px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #0658a1;
        background: #ffffff;
        animation-delay: 0.8s;
        font-weight: bold;
    }

        .talk .btn-get-started:hover {
            background: #ffffff;
            color: #0658a1;
            padding: 20px 45px;
            text-decoration: none;
        }

@media screen and (max-width: 767px) {
    .hire {
        margin: 40px 0px;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .hire {
        margin: 50px 0px;
    }
}
/* ============================================================================================ Header ============================================================================================ */
/*-------- # Header CSS --------*/
.header {
    background: #ffffff;
    transition: all 0.5s;
    z-index: 997;
    height: 80px;
}

    .header.header-scrolled {
        background: #ffffff;
        top: 0px;
        box-shadow: 0 1px 13px 0px #aaaaaa;
    }

    .header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        .header .logo a {
            color: #fff;
        }

        .header .logo img {
            max-height: 70px;
            padding: 15px;
        }

.header-inner-pages {
    background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
    background: rgba(6, 98, 178, 0.9) !important;
}
/*-------- # Navigation CSS --------*/
/*  Desktop Navigation  */
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 20px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-weight: 600;
        color: #000000;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #0658a1;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: #0658a1;
        font-weight: 800;
    }

    .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: 8px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: none;
            color: #01427c;
        }

    .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;
    }
/*-------- # Mobile Navigation CSS --------*/
.mobile-nav-toggle {
    color: #0658a1;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #27b3ae;
    }

@media screen and (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(5, 74, 133, 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;
        border-radius: 10px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile > ul > li {
        padding: 0;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #000000;
    }

        .navbar-mobile a:hover:before,
        .navbar-mobile li:hover > a:before,
        .navbar-mobile .active:before {
            visibility: hidden;
        }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #0658a1;
        }

    .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: #0658a1;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }
/* =================================================================== Home Page =================================================================== */
/*-------- # Slider Section CSS --------*/
.hero {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
    background: url("../img/background/home-bg.jpg") top center;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
    z-index: 99;
    transition: 0.3s;
}

    .hero:before {
        content: "";
        background: linear-gradient(80deg, rgb(6 88 161 / 90%), rgb(39 179 174 / 90%) 100%);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .hero h2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 48px;
        font-weight: 700;
    }

    .hero p {
        width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
    }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 10%;
    }

    .hero .carousel-control-next-icon,
    .hero .carousel-control-prev-icon {
        background: none;
        font-size: 48px;
        line-height: 1;
        width: auto;
        height: auto;
    }

    .hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid #27b3ae;
    }

        .hero .btn-get-started:hover {
            background: #27b3ae;
            color: #fff;
            text-decoration: none;
        }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }

@media screen and (max-width: 767px) {
    .hero {
        height: 90vh;
        padding: 100px 0;
    }

        .hero h2 {
            font-size: 28px;
        }

        .hero .carousel-control-next-icon {
            margin-right: 20px;
        }

        .hero .carousel-control-prev-icon {
            margin-left: 20px;
        }

        .hero .carousel-control-next-icon,
        .hero .carousel-control-prev-icon {
            font-size: 28px;
        }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .hero .carousel-control-next-icon {
        margin-right: 20px;
    }

    .hero .carousel-control-prev-icon {
        margin-left: 20px;
    }

    .hero {
        height: 60vh;
        padding: 100px 0;
    }

        .hero p {
            font-size: 20px;
        }
}
/*-------- # Icon Boxes CSS --------*/
.icon-boxes {
    padding-top: 0;
    padding-bottom: 10px;
    position: relative;
    z-index: 100;
}

    .icon-boxes .icon-box {
        padding: 40px 30px;
        position: relative;
        overflow: hidden;
        background: #fff;
        box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
        transition: all 0.3s ease-in-out;
        border-radius: 10px;
    }

    .icon-boxes .icon {
        margin: 0 auto 20px auto;
        display: inline-block;
        text-align: center;
    }

        .icon-boxes .icon i {
            font-size: 38px;
            line-height: 1;
            color: #0658a1;
        }

            .icon-boxes .icon i img {
                width: 55px;
            }

    .icon-boxes .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 22px;
        color: #0658a1;
    }

        .icon-boxes .title a {
            color: #0658a1;
        }

    .icon-boxes .description {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 0;
        color: #777777;
    }

    .icon-boxes .icon-box span {
        font-size: 38px;
        line-height: 20px;
        font-weight: 700;
        color: #0b2341;
        margin-left: 20px;
    }

@media screen and (min-width: 767px) and (max-width: 991px) {
    .icon-boxes .title {
        font-size: 26px;
    }

    .icon-boxes .icon i img {
        width: 65px;
    }

    .icon-boxes .icon-box span {
        font-size: 42px;
    }

    .icon-boxes .description {
        font-size: 20px;
        line-height: 33px;
    }
}
/*-------- # About CSS --------*/
.about {
    margin-top: 100px;
}

    .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: #27b3ae;
            line-height: 1;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .content .btn-learn-more {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 5px;
        transition: 0.3s;
        line-height: 1;
        color: #000000;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        margin-top: 6px;
        border: 2px solid #27b3ae;
    }

        .about .content .btn-learn-more:hover {
            background: #27b3ae;
            color: #fff;
            text-decoration: none;
        }

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #c1c1c1;
    margin: 4px 10px;
}

@media screen and (max-width: 767px) {
    .about {
        margin-top: 0px;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .about {
        margin-top: 30px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title p {
        font-size: 40px;
    }

    .about-pera p {
        font-size: 20px;
    }

    .about .content ul li {
        font-size: 20px;
        margin: 25px 0px;
    }

    .about .content .btn-learn-more {
        font-size: 20px;
    }
}
/*-------- # Services Section CSS --------*/
.services {
    display: flex;
    padding: inherit;
    padding: 70px 0 70px 0;
    margin-top: 100px;
    background-color: #f0f4f8;
}

    .services .bx {
        font-size: 40px;
    }

    .services .img {
        border-radius: 8px;
        overflow: hidden;
    }

        .services .img img {
            transition: 0.6s;
        }

    .services .details {
        padding: 50px 30px;
        margin: -100px 30px 0 30px;
        transition: all ease-in-out 0.3s;
        background: #ffffff;
        position: relative;
        background: #ffffffcc;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0px 0px 25px #00000021;
    }

        .services .details .icon {
            margin: 0;
            width: 72px;
            height: 72px;
            background: #27b3ae;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #ffffff;
            font-size: 28px;
            transition: ease-in-out 0.3s;
            position: absolute;
            top: -36px;
            left: calc(50% - 36px);
            border: 4px solid #ffffff;
        }

            .services .details .icon .background-icon {
                position: relative;
            }

                .services .details .icon .background-icon .light-blue {
                    display: none;
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: 99;
                }

            .services .details .icon img {
                width: 45px;
            }

    .services .service-item:hover .details .icon .background-icon .light-blue {
        display: inline;
    }

    .services .details h3 {
        color: #1a1f24;
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 21px;
        transition: ease-in-out 0.3s;
    }

    .services .details p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .service-item:hover .details h3 {
        color: #27b3ae;
    }

    .services .service-item:hover .details .icon {
        background: #ffffff;
        border: 2px solid #27b3ae;
    }

        .services .service-item:hover .details .icon i {
            color: #27b3ae;
        }

    .services .service-item:hover .img img {
        transform: scale(1.2);
    }

@media screen and (max-width: 767px) {
    .services {
        margin-top: 40px;
        padding: 40px 0px;
    }

        .services .details {
            padding: 40px 20px;
            margin: -100px 20px 0 20px;
        }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .services {
        margin-top: 60px;
    }

        .services .details h3 {
            font-size: 26px;
        }

        .services .details p {
            line-height: 30px;
            font-size: 18px;
        }

        .services .details {
            margin: -100px 20px 0 20px;
            padding: 40px 25px;
        }
}
/*-------- # Testimonials CSS --------*/
.testimonials {
    margin-top: 100px;
}

    .testimonials .testimonial-wrap {
        padding-left: 50px;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        box-sizing: content-box;
        padding: 30px 30px 30px 60px;
        margin: 30px 15px;
        min-height: 200px;
        box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
        position: relative;
        background: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 90px;
            border-radius: 10px;
            border: 6px solid #fff;
            position: absolute;
            left: -45px;
        }

        .testimonials .testimonial-item h3 {
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #111;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #999;
            margin: 0;
        }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: #c9e7e6;
            font-size: 26px;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 15px auto 15px auto;
        }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #27b3ae;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #27b3ae;
        }

@media screen and (max-width: 767px) {
    .testimonials {
        margin-top: 50px;
    }

    .section-title p {
        margin-bottom: 25px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: initial;
    }

    .testimonials .testimonial-item {
        padding: 20px;
        text-align: center;
        margin: 10px;
    }

    .testimonials .testimonial-wrap {
        padding-left: 0px;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .testimonials {
        margin-top: 80px;
    }

        .testimonials .testimonial-item {
            margin: 15px;
        }

            .testimonials .testimonial-item h3 {
                font-size: 26px;
            }

            .testimonials .testimonial-item h4 {
                font-size: 20px;
            }

            .testimonials .testimonial-item p {
                font-size: 20px;
            }
}
/*-------- # Portfolio CSS --------*/
.hportfolio {
    background: #f0f4f8;
    padding: 70px 0 70px 0;
    margin-top: 100px;
}

    .hportfolio .swiper-pagination {
        margin-top: 40px;
        position: relative;
    }

    .hportfolio .swiper-pagination-bullet {
        border-radius: 0;
    }

    .hportfolio .swiper-pagination .swiper-pagination-bullet {
        width: 35px;
        height: 5px;
        background-color: #fff;
        opacity: 1;
    }

    .hportfolio .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #27b3ae;
    }

@media screen and (max-width: 767px) {
    .hportfolio {
        margin-top: 40px;
        padding: 30px 0px 15px 0px;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .hportfolio {
        margin-top: 40px;
        padding: 50px 0px;
    }
}
/* =================================================================== About Page =================================================================== */
.about-text-align {
    text-align: center !important;
}

    .about-text-align .title a {
        font-size: 26px;
    }

    .about-text-align .icon i {
        font-size: 50px;
    }

        .about-text-align .icon i img {
            width: 70px;
        }

    .about-text-align .description {
        font-size: 16px;
    }

.about-details {
    margin-top: 100px;
    margin-bottom: 100px;
}

    .about-details .p-padding {
        padding-top: 45px;
    }

    .about-details .content ul {
        list-style: none;
        padding: 0;
    }

        .about-details .content ul li {
            padding: 0 0 10px 30px;
            position: relative;
        }

        .about-details .content ul i {
            position: absolute;
            font-size: 20px;
            left: 0;
            top: -3px;
            color: #0658a1;
        }

    .about-details .content p:last-child {
        margin-bottom: 0;
    }

.stats-counter {
    text-align: center;
    padding: 40px 0;
    background-color: #f0f4f8;
}

    .stats-counter .stats-item {
        align-items: baseline;
        padding: 40px 0;
    }

        .stats-counter .stats-item i {
            font-size: 44px;
            line-height: 0;
            margin-right: 15px;
        }

        .stats-counter .stats-item span {
            font-size: 40px;
            display: block;
            font-weight: 700;
            color: #0ea2bd;
            line-height: 40px;
        }

        .stats-counter .stats-item p {
            margin: 0;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 14px;
        }

@media screen and (max-width: 768px) {
    .about-details {
        margin-top: 10px;
        margin-bottom: 80px;
    }

    .stats-counter .stats-item span {
        font-size: 32px;
    }

    .stats-counter {
        padding: 0px;
    }

        .stats-counter .stats-item {
            padding: 30px 0px;
        }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .about-details {
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .about-text-align .title a {
        font-size: 30px;
    }

    .about-text-align .description {
        font-size: 20px;
        line-height: 32px;
    }

    .about-pera ul li {
        font-size: 20px;
        margin: 10px;
    }
}
/* =================================================================== Services Page =================================================================== */
.all-services {
    position: relative;
    z-index: 100;
}

.services-tech {
    margin-top: 80px;
}

.services-tech-title {
    text-align: center;
    padding-bottom: 30px;
}

    .services-tech-title h2 {
        font-weight: bold;
        font-size: 46px;
        line-height: 67px;
        font-family: "DM Sans", Sans-serif;
    }

    .services-tech-title p {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 10px;
    }

.services-tech-all {
    margin-top: 30px;
    padding: 25px;
    border-radius: 5px;
    -webkit-transition: .6s;
    transition: .6s;
    border: 2px solid #eee;
    border-radius: 10% 25%;
}

    .services-tech-all .icon {
        margin-bottom: 15px;
    }

        .services-tech-all .icon i {
            display: inline-block;
            height: 80px;
            width: 80px;
            line-height: 72px;
            color: #0064fb;
            text-align: center;
            font-size: 45px;
            border-radius: 100%;
            -webkit-transition: .6s;
            transition: .6s;
        }

            .services-tech-all .icon i img {
                width: 50px;
                height: 50px;
            }

    .services-tech-all h3 {
        margin-bottom: 10px;
        color: #000000;
        font-size: 25px;
        line-height: 35px;
        font-weight: 700;
        -webkit-transition: .6s;
        transition: .6s;
    }

    .services-tech-all p {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 26px;
        color: #777;
        -webkit-transition: .6s;
        transition: .6s;
    }

    .services-tech-all .services-btn {
        font-size: 15px;
        font-weight: 500;
        position: relative;
        -webkit-transition: .6s;
        transition: .6s;
    }

        .services-tech-all .services-btn i {
            position: absolute;
            right: -20px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            font-size: 15px;
        }

    .services-tech-all:hover {
        background-color: #fff;
        -webkit-box-shadow: 0 15px 35px rgba(0,0,0,.1);
        box-shadow: 0 15px 35px rgba(0,0,0,.1);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        border-radius: 25% 10%;
    }

.read_more {
    color: #01427c !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    opacity: 0;
    transition: all .3s ease-in-out;
}

    .read_more:hover {
        text-decoration: none;
    }

    .read_more:after {
        position: absolute;
        content: "";
        height: 3px;
        width: 0;
        left: 0;
        right: 0;
        bottom: -2px;
        background-color: transparent;
        color: #01427c;
        border-bottom: 2px solid #01427c;
        transition: all .3s ease-in-out;
        transform: translate(0,0) translateZ(0);
        -webkit-transform: translate(0,0) translateZ(0);
    }

.services-tech-all:hover .read_more {
    opacity: 1;
    transform: translate(-3px);
}

    .services-tech-all:hover .read_more:after {
        width: 100%;
    }

.services-tech-all:hover .h-main-one {
    color: #bf233e;
}

.services-tech-all:hover .h-main-two {
    color: #27b3ae;
}

.services-tech-all:hover .h-main-three {
    color: #1071b8;
}

.services-tech-all:hover .h-main-four {
    color: #78a5a3;
}

.services-tech-all:hover .h-main-five {
    color: #de6b83;
}

.services-tech-all:hover .h-main-six {
    color: #1e4f87;
}

.services-tech-all .icon .i-main-one {
    background-color: #f9e6ea;
}

.services-tech-all .icon .i-main-two {
    background-color: #e9f7f7;
}

.services-tech-all .icon .i-main-three {
    background-color: #e7f1f8;
}

.services-tech-all .icon .i-main-four {
    background-color: #f1f6f6;
}

.services-tech-all .icon .i-main-five {
    background-color: #fcf0f2;
}

.services-tech-all .icon .i-main-six {
    background-color: #e5ecf4;
}

@media screen and (max-width: 767px) {
    .services-tech {
        margin-top: 20px;
    }

    .services-tech-title h2 {
        line-height: 45px;
        font-size: 36px;
    }

    .services-tech-title p {
        font-size: 16px;
        line-height: 28px;
        padding-top: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .services-tech {
        margin-top: 10px;
    }

    .services-tech-title p {
        font-size: 22px;
        line-height: 38px;
    }

    .services-tech-all p {
        font-size: 20px;
        line-height: 32px;
    }
}
/* =================================================================== Services Inner Page =================================================================== */
.sections-description {
    display: flex;
    justify-content: center;
}

    .sections-description p {
        text-align: center;
        font-size: 18px;
        line-height: 35px;
        padding-top: 15px;
    }

.sections-details {
    justify-content: space-between;
    margin-top: 50px;
}

.sections-details-left {
    align-self: center;
}

.sections-details-right {
    align-self: center;
}

    .sections-details-right ul {
        list-style: none;
        padding: 0px;
        margin-top: 10px;
    }

    .sections-details-right li {
        margin-top: 8px;
    }

        .sections-details-right li .point {
            padding-left: 15px;
        }

    .sections-details-right .title {
        font-size: 20px;
        font-weight: 600;
    }

.services-Industry {
    margin-top: 80px;
}

.services-Industry-title {
    text-align: center;
    padding-bottom: 30px;
}

    .services-Industry-title h2 {
        font-weight: bold;
        font-size: 46px;
        line-height: 67px;
        font-family: "DM Sans", Sans-serif;
    }

.services-Industry-all {
    padding: 25px;
    border-radius: 5px;
    -webkit-transition: .6s;
    transition: .6s;
}

    .services-Industry-all .icon {
        margin-bottom: 15px;
    }

        .services-Industry-all .icon i {
            display: inline-block;
            color: #0658a1e8;
            text-align: center;
            font-size: 30px;
            border-radius: 100%;
        }

    .services-Industry-all h3 {
        margin-bottom: 10px;
        color: #000000;
        font-size: 20px;
        line-height: 35px;
        font-weight: 700;
        -webkit-transition: .6s;
        transition: .6s;
    }

    .services-Industry-all p {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 26px;
        color: #777;
        -webkit-transition: .6s;
        transition: .6s;
    }

    .services-Industry-all .icon .i-main {
        background-color: #f0f8ff;
        display: inline-block;
        height: 80px;
        width: 80px;
        line-height: 90px;
        text-align: center;
        border-radius: 100%;
    }

@media screen and (max-width: 767px) {
    .services-Industry {
        margin-top: 20px;
    }

    .services-Industry-title h2 {
        line-height: 45px;
        font-size: 30px;
    }

    .sections-description p {
        font-size: 16px;
        line-height: 30px;
    }

    .sections-details-right .title {
        margin-top: 30px;
    }

    .sections-details {
        margin-top: 20px;
    }
}
/* =================================================================== HireDeveloper =================================================================== */
/*-------- # Hire Form CSS --------*/
.iti {
    width: 100%
}

.iti__flag-container {
    border-radius: 20px;
}

.iti__selected-flag {
    background-color: #e9ecef;
    width: 48px;
    border-right: 1px solid rgb(206 212 218);
}

.iti--allow-dropdown input[type=text] {
    padding-left: 57px;
}

.input-padding {
    padding-top: 15px;
}

.hire-form {
    padding-top: 0;
    position: relative;
    z-index: 100;
    text-align: center;
}

.form-control {
    height: 45px;
}

.input-group-text {
    width: 48px;
    justify-content: center;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

.hire-form .email-form textarea {
    resize: none;
    padding: 12px 15px;
}

.hire-form .email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

    .hire-form .email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

.hire-form .email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

    .hire-form .email-form .error-message br + br {
        margin-top: 25px;
    }

.hire-form .email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.form-button[type=submit] {
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    background: #27b3ae;
    margin-top: 15px;
}

    .form-button[type=submit]:hover {
        background: #33383b;
    }

.type-file::-webkit-file-upload-button {
    display: none !important;
    width: 100%
}

.type-file {
    width: 100%
}

input[type=file] {
    margin-top: 3px;
}

.typefile {
    text-align: left;
}
/*-------- # Benefits CSS --------*/
.hbenefits {
    margin-top: 80px;
}

.benefits-title {
    text-align: center;
    padding-bottom: 30px;
}

    .benefits-title h2 {
        font-weight: bold;
        font-size: 46px;
        line-height: 67px;
        font-family: "DM Sans", Sans-serif;
    }

    .benefits-title p {
        font-size: 22px;
        line-height: 67px;
        margin-bottom: 10px;
    }

.benefits .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

.benefits .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: 0.5s;
    color: #3fbbc0;
    overflow: hidden;
}

    .benefits .icon img {
        width: 70px;
        padding-top: 30px;
    }

.benefits . i {
    line-height: 0;
}

.benefits .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

    .benefits .title a {
        color: #444444;
        transition: 0.3s;
    }

        .benefits .title a:hover {
            color: #3fbbc0;
        }

    .benefits .title::after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 2px;
        background: #3fbbc0;
        bottom: 0;
        left: calc(50% - 25px);
    }

.benefits .description {
    font-family: "DM Sans", Sans-serif;
    font-size: 20px;
    font-weight: 400;
}
/*-------- # Time CSS --------*/
.time {
    background-color: #f0f4f8;
    padding: 70px 0px;
    margin-top: 80px;
}

.time-title {
    text-align: center;
    padding-bottom: 30px;
}

    .time-title h2 {
        font-weight: bold;
        font-size: 46px;
        line-height: 67px;
        font-family: "DM Sans", Sans-serif;
    }

    .time-title p {
        font-size: 22px;
        line-height: 67px;
        margin-bottom: 10px;
    }

.flip-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    min-height: 200px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    padding: 0;
    border-top: 0;
    margin-bottom: 25px;
    overflow: hidden;
}

    .flip-box:hover .back {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        z-index: 10;
        opacity: 1;
        border-radius: 0px;
        visibility: visible;
    }

    .flip-box:hover .front {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
    }

    .flip-box .back,
    .flip-box .front {
        position: relative;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        color: white;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-pack: center;
        -ms-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
        transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        background-size: cover;
        background-position: center;
        max-width: 100%;
    }

    .flip-box .back {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
        -webkit-box-shadow: 0px 0px 76px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 76px 0px rgba(0, 0, 0, 0.2);
        opacity: 0;
    }

    .flip-box .front {
        z-index: 10;
    }

        .flip-box .front .content {
            font-size: 2rem;
        }

    .flip-box .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        text-align: center;
        padding: 0px;
        margin: 0px;
    }

        .flip-box .content:after, .flip-box .content:before {
            content: none;
        }

        .flip-box .content img {
            max-width: 120%;
        }

    .flip-box .front .content {
        -webkit-transform: translateZ(0px);
        transform: translateZ(0px);
    }

.developer-content-box {
    width: 100%;
    padding: 0 25px;
}

    .developer-content-box ul {
        padding-left: 0px;
        margin-top: 25px;
        list-style: none;
        text-align: center;
    }

    .developer-content-box > h4 {
        font-size: 22px;
        color: #003071;
        line-height: normal;
        font-weight: 600;
        margin: 0 0 10px;
    }

    .developer-content-box > p {
        font-size: 21px;
        color: #000000;
        line-height: normal;
        margin: 0;
    }

    .developer-content-box > .developr-contect {
        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .developer-content-box > .developr-contect > li {
            margin-right: 25px;
        }

            .developer-content-box > .developr-contect > li:last-child {
                margin-right: 0;
            }

            .developer-content-box > .developr-contect > li > img {
                width: 32px;
            }

                .developer-content-box > .developr-contect > li > img:hover {
                    -webkit-animation: tada 1s linear;
                    animation: tada 1s linear;
                }

.developer-brdr-box {
    border-top: 1px solid #003071;
    border-bottom: 1px solid #003071;
    padding: 20px 25px;
    margin: 20px 0;
}

.developer-title {
    color: #003071;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.333;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .time {
        margin-top: 10px;
        padding: 30px 0px;
    }

    .time-title h2 {
        line-height: 40px;
        font-size: 28px;
    }

    .time-title p {
        font-size: 18px;
        line-height: 26px;
        padding-top: 10px;
    }

    .hbenefits {
        margin-top: 50px;
    }

    .benefits-title h2 {
        line-height: 40px;
        font-size: 28px;
    }

    .benefits .icon img {
        width: 50px;
        padding-top: 20px;
    }

    .benefits .description {
        font-size: 18px;
        padding: 0px 20px;
    }

    .benefits-title p {
        font-size: 18px;
        line-height: 30px;
    }

    .input-padding {
        padding-top: 0px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .time {
        margin-top: 40px;
    }

    .time-title h2 {
        line-height: 40px;
        font-size: 36px;
    }

    .benefits-title h2 {
        line-height: 40px;
        font-size: 36px;
    }
}
/* =================================================================== Portfolio Page =================================================================== */
.portfolio {
    position: relative;
    z-index: 100;
    margin-bottom: 80px;
}

    .portfolio .portfolio-flters {
        padding: 0px 0px 30px 0px;
        list-style: none;
        text-align: center;
    }

        .portfolio .portfolio-flters li {
            cursor: pointer;
            display: inline-block;
            padding: 0;
            font-size: 18px;
            font-weight: 500;
            margin: 0 10px;
            line-height: 1;
            transition: all 0.3s ease-in-out;
        }

            .portfolio .portfolio-flters li:hover,
            .portfolio .portfolio-flters li.filter-active {
                color: #ffffff;
                background: linear-gradient(20deg,#0658a1,#27b3ae 100%);
                padding: 10px 20px;
                border-radius: 25px;
            }

            .portfolio .portfolio-flters li:first-child {
                margin-left: 0;
            }

            .portfolio .portfolio-flters li:last-child {
                margin-right: 0;
            }

    .portfolio .portfolio-wrap {
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        height: 100%;
        overflow: hidden;
    }

        .portfolio .portfolio-wrap img {
            transition: 0.3s;
            position: relative;
            z-index: 1;
        }

        .portfolio .portfolio-wrap .portfolio-info {
            padding: 25px 20px;
            background-color: #fff;
            position: relative;
            border-top: 1px solid #f3f3f3;
            z-index: 2;
        }

            .portfolio .portfolio-wrap .portfolio-info h4 {
                font-size: 18px;
                font-weight: 600;
                padding-right: 50px;
            }

                .portfolio .portfolio-wrap .portfolio-info h4 a {
                    color: #1a1f24;
                    transition: 0.3s;
                }

                    .portfolio .portfolio-wrap .portfolio-info h4 a:hover {
                        color: #0ea2bd;
                    }

            .portfolio .portfolio-wrap .portfolio-info p {
                color: #6c757d;
                font-size: 14px;
                margin-bottom: 0;
                padding-right: 50px;
            }

        .portfolio .portfolio-wrap:hover img {
            transform: scale(1.1);
        }
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
    z-index: 100;
    position: relative;
}

    .portfolio-details .pimg {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 30px rgb(165 165 165 / 26%);
    }

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

.portfolio-info .skill p {
    font-size: 14px;
    margin: 5px;
    background-color: #01427c;
    color: #ffffff;
    border-radius: 25px;
    padding: 8px 15px;
    display: inline-block;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0ea2bd;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

    .portfolio-details .swiper-button-prev:after,
    .portfolio-details .swiper-button-next:after {
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.2);
        font-size: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .portfolio-details .swiper-button-prev:hover:after,
    .portfolio-details .swiper-button-next:hover:after {
        background-color: rgba(0, 0, 0, 0.6);
    }

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .portfolio-details .portfolio-info h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: #0ea2bd;
        left: 0;
        bottom: 0;
    }

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: #0ea2bd;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

    .portfolio-details .portfolio-info .btn-visit:hover {
        background: #009d8b;
    }

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: white;
    height: 100%;
    margin-bottom: 50px;
}

    .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid #fff;
        float: left;
        margin: 0 10px 0 0;
    }

    .portfolio-details .portfolio-description .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 15px 0 5px 0;
        padding-top: 20px;
    }

    .portfolio-details .portfolio-description .testimonial-item h4 {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        color: #009d8b;
        font-size: 26px;
        line-height: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .portfolio-details .portfolio-description .testimonial-item p {
        font-style: italic;
        margin: 0 0 15px 0 0 0;
        padding: 0;
    }

@media screen and (max-width: 767px) {
    .portfolio {
        margin-bottom: 30px;
    }

    .portfolio-details .pimg {
        padding: 8px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-details .portfolio-description p {
        font-size: 20px;
    }

    .portfolio-info .skill p {
        font-size: 20px;
    }
}
/* =================================================================== Contact Page =================================================================== */
.contact-form {
    padding-top: 0;
    position: relative;
    z-index: 100;
    text-align: center;
    margin-bottom: 80px;
}

    .contact-form .contact-details .contact-add {
        display: flex;
    }

.contact-tabs .tab-content .contact-map {
    padding: 0px;
}

.contact-tabs .tab-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

    .contact-tabs .tab-content ul li i {
        display: inline-block;
        font-size: 26px;
        height: 80px;
        width: 80px;
        text-align: center;
        line-height: 80px;
        color: #0658a1;
        margin-right: 15px;
    }

    .contact-tabs .tab-content ul li .info {
        padding: 0
    }

        .contact-tabs .tab-content ul li .info span {
            display: block;
            font-weight: 400;
            text-transform: none;
            color: #666
        }

        .contact-tabs .tab-content ul li .info p {
            font-weight: 600;
            color: #0e2b3d;
            text-transform: uppercase;
            margin-bottom: 0
        }

.contact-form-title p {
    margin-top: 20px;
    font-size: 18px;
}

.form-group textarea {
    resize: none;
}

.contact-form-title h2 {
    font-size: 28px;
    font-weight: bold;
}

.nav-tabs .nav-link.active {
    color: #0658a1;
    background-color: #fff;
    box-shadow: -5px -8px 12px -2px rgb(214 215 216 / 57%);
}

.nav-tabs .nav-link {
    border: none;
    color: black;
}

.tab-pane-add {
    border: 15px solid #fff;
    padding: 20px 5px;
    background-color: #fbfbfb;
    min-height: 400px;
    box-shadow: 0 5px 30px 0 rgba(214,215,216,.57)
}

.contact-tabs .tab-content iframe {
    min-height: 400px;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: #fff;
    box-shadow: 0 5px 30px 0 rgba(214,215,216,.57)
}

@media screen and (max-width: 767px) {
    .contact-form {
        margin-bottom: 40px;
    }

    .contact-tabs .tab-content ul li i {
        width: 65px;
        margin-right: 0px;
    }

    .contact-form-title p {
        padding: 10px 0px 15px;
    }
}

@media screen and (max-width: 991px) {
    .contact-form .contact-details .contact-add {
        display: block;
    }

    .contact-form-title h2 {
        margin-top: 50px;
    }
}
/* =================================================================== Careers Page =================================================================== */
/*-------- # Career Benefits CSS --------*/
.cbenefits {
    position: relative;
    z-index: 100;
}
/*-------- # Opening CSS --------*/
.opening {
    padding-top: 80px;
    margin-bottom: 80px;
}

.hireflip-card-front {
    color: black;
}

.hirelogo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.fronthiretitle {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: inherit;
    line-height: 35px;
}

.fronthirelocation {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.backhiretitle {
    margin: 0 0 20px;
    font-size: 40px;
    font-weight: bold;
}

.backhire-text {
    margin-bottom: 26px;
    color: #fff;
    font-size: 18px;
}

.applybtn {
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #fff;
    padding: 10px 20px 13px;
    border-radius: 27px;
}

.hiring-cards {
    padding-bottom: 40px;
    background: #f2f4f6;
}

.hireflip-card:hover .hireflip-card-inner .hireflip-card-back {
    top: 0px;
    opacity: 1;
}

.hireflip-card-back {
    background: linear-gradient(0deg,#0658a1,#27b3ae 100%);
    color: white;
    transform: unset;
    position: absolute;
    top: 279px;
    transition: 0.6s;
    opacity: 0;
    padding: 60px;
}

.hireflip-card {
    background-color: transparent;
    perspective: 1000px;
    margin-bottom: 20px;
    height: 280px;
}

.hireflip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    border: 1px solid #e2e2e2;
    transform-style: preserve-3d;
    border-radius: 20px;
    overflow: hidden;
}

.hireflip-card-front, .hireflip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 35px;
    border-radius: 20px;
}

.hireflip-card:hover .hireflip-card-inner {
    transform: unset;
}

@media screen and (max-width: 768px) {
    .opening {
        margin-bottom: 30px;
        padding-top: 50px;
    }
}
/* =================================================================== Footer =================================================================== */
/*-------- # Footer CSS --------*/
.footer {
    background: #01427c;
    padding: 0 0 10px 0;
    color: #fff;
    font-size: 14px;
}

    .footer .footer-top {
        background: linear-gradient(0deg,#0658a1,#27b3ae 140%);
        padding: 60px 0 40px 0;
    }

        .footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            .footer .footer-top .footer-info h3 {
                font-size: 28px;
                margin: 0 0 15px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            .footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                color: #fff;
            }

        .footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        .footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            .footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    font-size: 18px;
                    line-height: 1;
                }

                .footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    .footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                .footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    .footer .footer-top .footer-links ul a:hover {
                        font-size: 15px;
                        margin-left: 5px;
                        font-weight: bold;
                    }

        .footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            .footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            .footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #33383b;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
            }

                .footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #27b3ae;
                }

.footer-awards .awards img {
    width: 28%;
}

.footer .copyright {
    text-align: center;
    padding-top: 10px;
}

.footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

    .footer .credits a {
        transition: 0.3s;
    }

.footer-info a {
    color: #ffffff;
}
/*-------- # Social Link CSS --------*/
.footer .footer-top .social-links {
    display: flex;
}

    .footer .footer-top .social-links div a {
        width: 38px;
        height: 38px;
        background-color: #fff;
        text-align: center;
        line-height: 34px;
        font-size: 16px;
        margin-right: 12px;
        display: block;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        border: 2px solid #fff;
        z-index: 1;
    }

        .footer .footer-top .social-links div a .icon {
            position: relative;
            color: #262626;
            transition: .5s;
            z-index: 3;
        }

        .footer .footer-top .social-links div a:hover .icon {
            color: #fff;
            transform: rotateY(360deg);
        }

        .footer .footer-top .social-links div a:before {
            content: "";
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f00;
            transition: .5s;
            z-index: 2;
        }

        .footer .footer-top .social-links div a:hover:before {
            top: 0;
        }

    .footer .footer-top .social-links div:nth-child(1) a:before {
        background: #3b5999;
    }

    .footer .footer-top .social-links div:nth-child(2) a:before {
        background: radial-gradient(circle farthest-corner at 35% 90%,#fec564,transparent 50%), radial-gradient(circle farthest-corner at 0 140%,#fec564,transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%,#5258cf,transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%,#5258cf,transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0,#893dc2,transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%,#893dc2,transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%,#d9317a,transparent), linear-gradient(#6559ca,#bc318f 30%,#e33f5f 50%,#f77638 70%,#fec66d 100%);
    }

    .footer .footer-top .social-links div:nth-child(3) a:before {
        background: #0077b5;
    }

    .footer .footer-top .social-links div:nth-child(4) a:before {
        background: #1DA1F2;
    }

    .footer .footer-top .social-links div:nth-child(5) a:before {
        background: #25D366;
    }
#myBtn {
    display:none;
    position: fixed;
    bottom: 2px;
    right: 2px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #01427c;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
}

    #myBtn:hover {
        background-color: #ffffff;
        color: #01427c;
    }

@media screen and (min-width: 767px) and (max-width: 991px) {
    .footer .footer-top .footer-info p {
        font-size: 18px;
        line-height: 30px;
    }

    .footer .footer-top .footer-links ul a {
        font-size: 18px;
    }

    .footer .footer-top h4 {
        font-size: 22px;
    }
}

@media screen and (max-width: 991px){
    #myBtn {
        visibility:hidden;
    }
}


/* =================================================================== Extra Small Devices =================================================================== */
@media screen and (max-width: 320px) {
    .hero {
        height: 130vh;
    }

    .page-head-section {
        height: 110vh;
    }

    .white-bg {
        padding: 40px 0px;
    }

    .benefits-title h2 {
        font-size: 32px;
    }

    .benefits-title p {
        line-height: 28px;
    }

    .fronthiretitle {
        font-size: 20px;
        line-height: 28px;
    }

    .hireflip-card-back {
        padding: 20px;
    }

    .section-title p {
        font-size: 26px;
    }

    .services .details {
        padding: 30px 10px;
        margin: -102px 16px 0 16px;
    }

    .portfolio {
        padding: 5px;
    }
}
