/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'Poppins', sans-serif;
    color: #212529;
    background: var(--color-white) url(../../../Images/FIRSTADV/bg-body.svg) top no-repeat;
    background-size: 100%;
}

a {
    color: var(--color-primary);
}

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

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

b, strong {
    font-weight: 500;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: var(--color-secondary);
        color: var(--color-white);
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #212529;
            color: var(--color-white);
        }

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: var(--color-primary);
    padding: 5px 0;
    font-size: 14px;
}

    #topbar .contact-info {
        color: var(--color-white);
    }

        #topbar .contact-info a {
            line-height: 1;
            color: var(--color-white);
            transition: 0.3s;
        }

            #topbar .contact-info a:hover {
                color: var(--color-primary);
            }

        #topbar .contact-info i {
            color: var(--color-white);
            padding: 4px;
        }

        #topbar .contact-info .icofont-phone {
            padding-left: 20px;
        }

    #topbar .social-links a {
        color: var(--color-white);
        padding: 4px 0 4px 16px;
        display: inline-block;
        line-height: 1px;
        transition: 0.3s;
    }

        #topbar .social-links a:hover {
            color: var(--color-primary);
        }

        #topbar .social-links a:first-child {
            border-left: 0;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* #header {
    box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    position: sticky;
    top: 0;
    z-index: 500;
} */
#header.header-scrolled {
    top: 0;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    z-index: 997;
    transition: all 0.5s;
    background: var(--color-white);
}

#header .logo h1 {
    font-size: 26px;
    padding: 0 0 0 8px;
    margin: 11px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    border-left: 8px solid var(--color-primary);
}

    #header .logo h1 a,
    #header .logo h1 a:hover {
        color: #545454;
        text-decoration: none;
    }

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 72px;
}


/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
        position: relative;
    }

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

        .navbar li {
            position: relative;
        }

        .navbar > ul > li {
            white-space: nowrap;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0px;
            font-family: var(--font-default);
            font-size: 16px;
            font-weight: 500;
            color: rgba(var(--color-default), 0.9);
            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: 0;
            left: 0;
            background-color: var(--color-secondary);
            visibility: hidden;
            transition: all 0.3s ease-in-out 0s;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before,
        .navbar .active:before {
            visibility: visible;
            transform: scaleX(0.7);
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--color-secondary);
        }

        .navbar .dropdown a:hover:before,
        .navbar .dropdown:hover > a:before,
        .navbar .dropdown .active:before {
            visibility: hidden;
        }

        .navbar .dropdown a:hover,
        .navbar .dropdown .active,
        .navbar .dropdown .active:focus,
        .navbar .dropdown:hover > a {
            color: var(--color-white);
            background: var(--color-gray);
        }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 0;
            top: 100%;
            margin: 0;
            padding: 0 0 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: var(--color-gray);
            transition: 0.3s;
        }

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

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                font-weight: 400;
                color: var(--color-white);
            }

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

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-white);
                    background: var(--color-secondary)
                }

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

        .navbar .megamenu {
            position: static;
        }

            .navbar .megamenu ul {
                right: 0;
                padding: 10px;
                display: flex;
            }

                .navbar .megamenu ul li {
                    flex: 1;
                }

                    .navbar .megamenu ul li a,
                    .navbar .megamenu ul li:hover > a {
                        color: rgba(var(--color-white-rgb), 0.5);
                        background: none;
                    }

                        .navbar .megamenu ul li a:hover,
                        .navbar .megamenu ul li .active,
                        .navbar .megamenu ul li .active:hover {
                            color: var(--color-white);
                            background: var(--color-primary);
                        }

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
    margin-top: 72px;
}

    #hero .carousel-item {
        width: 100%;
        /*height: 70vh;*/
        height: 500px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-position: center center;
    }

        #hero .carousel-item::before {
            content: '';
            background-color: var(--color-white);
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
        }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        padding-bottom: 120px;
    }

    #hero .carousel-content {
        text-align: center;
    }

    #hero h1 {
        margin-bottom: 30px;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
    }

    #hero h2 span {
        color: var(--color-primary);
    }

    #hero p {
        width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 15px auto;
        color: arken(#545454, 15);
        font-size: 1rem;
    }

    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
        background-position: center top;
    }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-left,
    #hero .carousel-inner .active.carousel-item-right {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-left,
    #hero .carousel-inner .carousel-item-prev.carousel-item-right {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-inner .carousel-item-next,
        #hero .carousel-inner .carousel-item-prev,
        #hero .carousel-inner .active.carousel-item-left,
        #hero .carousel-inner .active.carousel-item-right {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #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;
        color: #545454;
    }

    #hero .carousel-indicators li {
        cursor: pointer;
        background: var(--color-primary);
        overflow: hidden;
        border: 0;
        width: 12px;
        height: 12px;
        border-radius: 50px;
        margin-bottom: 180px;
        opacity: .2;
    }

        #hero .carousel-indicators li.active {
            opacity: 1;
        }

    #hero .btn-get-started {
        font-family: 'Poppins', sans-serif, sans-serif;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: var(--color-white);
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid var(--color-primary);
        background: var(--color-primary);
    }

        #hero .btn-get-started:hover {
            background: transparent;
            color: var(--color-primary);
            text-decoration: none;
        }

@media (max-height: 768px), (max-width: 1200px) {
    #hero {
        /*margin-bottom: 60px;*/
    }

        #hero .carousel-container {
            padding-bottom: 0;
        }

        #hero .carousel-indicators li {
            margin-bottom: 0;
        }
}

@media (max-width: 768px) {
    #hero {
        /*height: 100vh;*/
    }

        #hero .carousel-item {
            height: 100vh;
        }
}

@media (min-width: 1024px) {
    #hero p {
        width: 50%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 0 0 80px 0;
}

.section-bg {
    background-color: white;
}

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

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 10px;
        position: relative;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            /*background: var(--color-primary);*/
            bottom: 0;
            left: calc(50% - 25px);
        }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0 20px 0;
    background: #f7f7f7;
    border-bottom: 1px solid #ededed;
    margin-bottom: 40px;
}

    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 700;
        color: #545454;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 0 5px 0;
        margin: 0;
        font-size: 14px;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #6e6e6e;
                content: "/";
            }


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 30px 0px;
    border-top: 1px solid rgba(var(--color-gray-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--color-gray-rgb), 0.1);
}

    .about .content {
        background-color: var(--color-white);
        border-radius: 8px;
        padding: 20px;
        height: 100%;
        border: 1px solid rgba(var(--color-gray-rgb), 0.1);
        text-align: center;
    }

        .about .content h3 {
            font-weight: 600;
            font-size: 32px;
            color: #212529;
        }

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

            .about .content ul li {
                padding-bottom: 10px;
            }

            .about .content ul i {
                font-size: 20px;
                padding-right: 4px;
                color: var(--color-primary);
            }

        .about .content p {
            font-size: 14px;
            line-height: 1.8;
            text-align: justify;
        }

.about-img {
    height: 140px;
    width: 140px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services {
    padding: 30px 0px;
    border-bottom: 1px solid rgba(var(--color-gray-rgb), 0.1);
}

    .services .icon-box {
        text-align: center;
        border: 1px solid #e2e0e0;
        padding: 80px 20px;
        transition: all ease-in-out 0.3s;
    }

        .services .icon-box .icon {
            margin: 0 auto;
            width: 64px;
            height: 64px;
            background: var(--color-primary);
            border-radius: 5px;
            transition: all .3s ease-out 0s;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transform-style: preserve-3d;
        }

            .services .icon-box .icon i {
                color: var(--color-white);
                font-size: 28px;
            }

            .services .icon-box .icon::before {
                position: absolute;
                content: '';
                left: -8px;
                top: -8px;
                height: 100%;
                width: 100%;
                background: var(--color-secondary);
                border-radius: 5px;
                transition: all .3s ease-out 0s;
                transform: translateZ(-1px);
            }

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

            .services .icon-box h4 a {
                color: #545454;
            }

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

        .services .icon-box:hover {
            background: var(--color-primary);
            border-color: var(--color-primary);
        }

            .services .icon-box:hover .icon {
                background: var(--color-white);
            }

                .services .icon-box:hover .icon i {
                    color: var(--color-primary);
                }

                .services .icon-box:hover .icon::before {
                    background: var(--color-secondary);
                }

            .services .icon-box:hover h4 a,
            .services .icon-box:hover p {
                color: var(--color-white);
            }

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients {
    padding: 30px 0px;
    border-bottom: 1px solid rgba(var(--color-gray-rgb), 0.1);
}

    .clients .owl-item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

        .clients .owl-item img {
            border-radius: 8px;
            box-shadow: 0 6px 12px 0 rgb(51 56 70 / 10%);
            background-color: var(--color-white);
            padding: 20px;
            margin-bottom: 10px;
        }

            .clients .owl-item img:hover {
                -webkit-filter: none;
                filter: none;
                opacity: 1;
            }

    .clients .owl-nav,
    .clients .owl-dots {
        margin-top: 15px;
        text-align: center;
    }

    .clients .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd !important;
    }

        .clients .owl-dot.active {
            background-color: var(--color-primary) !important;
        }

    .clients .owl-nav button {
        position: absolute;
        top: 25px;
    }

        .clients .owl-nav button span {
            font-size: 56px;
            color: var(--color-primary);
        }

    .clients .owl-nav .owl-prev {
        left: -15px;
    }

    .clients .owl-nav .owl-next {
        right: -15px;
    }


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 30px 0px 45px 0px;
    background: -webkit-linear-gradient(#0291dd, #afe3ff);
}

    .testimonials .testimonial-item {
        box-sizing: content-box;
        padding: 40px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        position: relative;
        background: var(--color-white);
        border-radius: 4px;
        height: 100%;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 90px;
            border-radius: 50px;
            border: 6px solid var(--color-white);
            float: left;
            margin: 0 10px 0 0;
        }

        .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: white;
            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 0 0 0;
            padding: 0;
        }

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills {
    padding: 30px 0px;
    border-bottom: 1px solid rgba(var(--color-gray-rgb), 0.1);
}

    .skills ul li {
        padding-bottom: 10px;
    }

    .skills .content h3 {
        font-weight: 700;
        font-size: 26px;
        color: #545454;
        font-family: "Poppins", sans-serif;
        margin-bottom: 20px;
    }

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

        .skills .content ul li {
            padding-bottom: 10px;
        }

        .skills .content ul i {
            font-size: 20px;
            padding-right: 4px;
            color: var(--color-primary);
        }

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

    .skills .progress {
        height: 62px;
        display: block;
        background: none;
    }

        .skills .progress .skill {
            padding: 0;
            margin: 0 0 6px 0;
            text-transform: uppercase;
            display: block;
            font-weight: 600;
            font-family: "Poppins", sans-serif;
            color: #545454;
        }

            .skills .progress .skill .val {
                float: right;
                font-style: normal;
            }

    .skills .progress-bar-wrap {
        background: #e0e0e0;
    }

    .skills .progress-bar {
        width: 1px;
        height: 10px;
        transition: .9s;
        background-color: var(--color-primary);
    }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
}

    .contact .info-box i {
        font-size: 32px;
        color: var(--color-primary);
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #fef5f4;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: var(--color-white);
        background: #ed3c0d;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .sent-message {
        display: none;
        color: var(--color-white);
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: var(--color-white);
        text-align: center;
        padding: 15px;
    }

        .contact .php-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;
        }

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

        .contact .php-email-form input::focus,
        .contact .php-email-form textarea::focus {
            background-color: var(--color-primary);
        }

    .contact .php-email-form input {
        padding: 20px 15px;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
    }

    .contact .php-email-form button[type="submit"] {
        background: var(--color-primary);
        border: 0;
        border-radius: 50px;
        padding: 10px 24px;
        color: var(--color-white);
        transition: 0.4s;
    }

        .contact .php-email-form button[type="submit"]:hover {
            background: #e6573f;
        }

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

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

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

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
}

    #footer .footer-newsletter {
        padding: 50px 0;
        background: #404040;
    }

        #footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: var(--color-white);
            padding: 6px 10px;
            position: relative;
            border-radius: 50px;
        }

            #footer .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 8px;
                width: calc(100% - 140px);
            }

            #footer .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 30px;
                margin: 3px;
                background: var(--color-primary);
                color: var(--color-white);
                transition: 0.3s;
                border-radius: 50px;
            }

                #footer .footer-newsletter form input[type="submit"]:hover {
                    background: #e6573f;
                }

    #footer .footer-top {
        padding: 60px 0 60px 0;
    }

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

            #footer .footer-top .footer-info h3 {
                font-size: 1.2rem;
                font-weight: 600;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-family: 'Poppins', sans-serif;
            }

            #footer .footer-top .footer-info p {
                margin-bottom: 10px;
                font-family: 'Poppins', sans-serif;
                line-height: 1.15;
                font-size: .98rem;
                text-align: justify;
            }


        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: var(--color-secondary);
            line-height: 1;
            padding: 6px 0;
            margin-right: 4px;
            border-radius: 5px;
            text-align: center;
            width: 36px;
            height: 30px;
            transition: 0.3s;
            color: var(--color-white);
        }

            #footer .footer-top .social-links a:hover {
                background: var(--color-primary);
                color: var(--color-white);
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 1.2rem;
            font-weight: 600;
            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;
                    color: #ec7f6d;
                    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 {
                    transition: 0.3s;
                    display: inline-block;
                    font-size: 14px;
                    color: #212529;
                }



                    #footer .footer-top .footer-links ul a:hover {
                        color: var(--color-primary);
                    }

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

            #footer .footer-top .footer-contact p {
                line-height: 26px;
            }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: var(--color-white);
    }

    #footer hr {
        border-top: 2px solid var(--color-white);
    }


/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/
.accordion-container {
    position: relative;
    height: auto;
    margin: 10px auto;
}

    .accordion-container > h2 {
        text-align: center;
        color: var(--color-white);
        padding-bottom: 5px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }

.set {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
}

    .set > a {
        background-color: var(--color-white);
        color: #444;
        cursor: pointer;
        padding: 15px 25px 15px 40px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 18px;
        transition: 0.4s;
        margin-bottom: 20px;
        border-radius: 0px;
        margin: 0px;
        border-bottom: 1px solid rgba(var(--color-gray-rgb), 0.1);
        display: block;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        transition: all 0.2s linear;
        font-weight: 500;
    }

        .set > a i {
            float: right;
            margin-top: 0px;
            color: var(--color-primary);
            font-size: 24px;
            position: absolute;
            right: 0;
            top: 12px;
        }

        .set > a.active {
            background-color: var(--color-white);
            outline: none;
        }

.panalnew {
    color: #212529;
    width: 100%;
    background-color: var(--color-white);
    display: none;
    padding: 10px 15px;
}


    .panalnew p {
        margin-bottom: 0px;
    }

    .panalnew ul {
        margin-bottom: 0px;
    }

.featurette-divider {
    margin: 3rem 0;
}

.font-16 {
    font-size: 1rem;
}

.font-40 {
    font-size: 40px !important;
}

.btn-custom {
    color: var(--color-white);
    background: var(--color-primary);
    padding: .375rem 1.75rem;
    border-radius: 5px;
    border: 2px solid var(--color-primary);
    min-width: 130px;
    font-weight: 400;
}

    .btn-custom:hover {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }

.btn-outline-custom {
    color: var(--color-white);
    background: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    padding: .375rem 1.75rem !important;
    border-radius: 5px;
    min-width: 130px;
}

    .btn-outline-custom:hover {
        color: var(--color-white);
        background-color: var(--color-primary);
        border: 2px solid var(--color-primary);
    }

.text-custom {
    color: var(--color-primary);
}

.bg-custom {
    background-color: var(--color-primary);
}

.posp {
    padding: 30px 0px 50px 0px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.font-20 {
    font-size: 20px;
}

.font-14 {
    font-size: 14px;
}

.font-12 {
    font-size: 12px !important;
}

.text-black {
    color: #212529;
}

.text-primary {
    color: var(--color-primary) !important;
}

.font-weight-500 {
    font-weight: 500;
}

.form-control {
    font-size: 0.897rem;
    /*border-radius: 0rem;*/
}

.alert-success {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.sign-up {
    padding: 50px 0px;
}

.ver-tabs {
    display: block;
    padding: 30px 15px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-radius: 0px !important;
    text-transform: uppercase;
    color: #212529;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--color-primary);
    background-color: #f5f5f5;
    border-left: 3px solid var(--color-primary);
    border-right: none;
    font-size: 14px;
}

.nav-pills .nav-link {
    font-size: 14px;
}

#v-pills-tabContent label {
    display: inline-block;
    margin-bottom: .5rem;
    font-weight: 500;
}

.error {
    float: right;
    color: var(--color-white);
    font-size: 12px;
    padding: 5px;
    position: absolute;
    left: 10px;
}

#v-pills-Documents .error {
    left: 0px;
}

.bx-lg {
    font-size: 1.2rem !important;
}

.container {
    max-width: 1280px;
}

.navbar-light .navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
}

.nav-item {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.upload-file {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rounded-box {
    background-color: var(--color-white);
    box-shadow: 0 8px 24px hsl(0deg 0% 71% / 15%);
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
}

    .rounded-box a {
        padding: 10px 0px 30px 0px;
        height: 100%;
    }

        .rounded-box a:hover {
            background: rgba(var(--color-secondary-rgb), 0.1);
        }

    .rounded-box i {
        font-size: 2em;
    }

.badge-primary {
    color: var(--color-white);
    background-color: var(--color-secondary);
}

.insurance-box {
    box-shadow: 0 3px 12px 0 rgb(51 56 70 / 10%);
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.serial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(var(--color-gray-rgb), 0.1);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #333846;
    line-height: 30px;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0px;
}

.login-box {
    display: inline-flex;
    border: 4px solid rgba(var(--color-gray-rgb), 0.1);
    border-radius: 25px;
    width: 140px;
    height: 125px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: all ease-in-out 0.4s;
    background-color: var(--color-white);
}

    .login-box:hover {
        transform: translateY(-10px);
        box-shadow: 0px 0 60px 0 rgba(var(--color-gray-rgb), 0.2);
        border: 4px solid var(--color-secondary);
        color: var(--color-secondary);
    }

    .login-box i {
        font-size: 24px;
    }


/*Responsive Design CSS*/
@media (max-width: 767px) {

    html, body {
        font-size: 14px;
    }

    .navbar-brand img {
        max-width: 230px;
    }

    #hero {
        text-align: center;
        height: auto;
    }

        #hero h1 {
            font-size: 1.75rem;
        }


    .about {
        text-align: center;
    }

    .about-img {
        height: 80px;
        width: 80px;
        margin-bottom: 1rem;
    }

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

    .clients .owl-nav button {
        top: 0px;
    }

    .clients .owl-nav .owl-prev {
        left: -10px;
    }

    .clients .owl-nav .owl-next {
        right: -10px;
    }

    .testimonials .testimonial-item {
        height: auto;
        margin-bottom: 1rem;
    }

    .testimonials .carousel-control-next,
    .testimonials .carousel-control-prev {
        display: none;
    }

    .set > a {
        font-size: 16px;
    }

    .panalnew p {
        margin-bottom: 1rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .btn-outline-custom {
        width: 100%;
    }

    .btn-custom {
        width: 100%;
    }

    .box {
        margin-bottom: 30px;
    }

    #footer .footer-top h4 {
        margin-top: 1rem;
    }

    .footer-para {
        background: var(--color-primary);
        padding-top: 3rem;
        margin-bottom: 3rem !important;
    }

    #footer .footer-top {
        padding: 0px 0 5px 0;
    }

    .footer-para h3 {
        color: var(--color-white)fff !important;
    }

    .footer-para p {
        color: var(--color-white)fff !important;
    }

    #footer .footer-top .social-links a svg {
        fill: var(--color-white);
        margin-right: 0.5rem;
    }

    .error {
        float: left;
        position: relative;
        left: 0px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    #hero {
        text-align: center;
        height: auto;
    }

    .footer-para {
        background: var(--color-primary);
        padding-top: 3rem;
        margin-bottom: 3rem !important;
    }

    #footer .footer-top {
        padding: 0px 0 5px 0;
    }

    .footer-para h3 {
        color: var(--color-white) !important;
    }

    .footer-para p {
        color: var(--color-white) !important;
    }

    #footer .footer-top .social-links a svg {
        fill: var(--color-white);
        margin-right: 0.5rem;
    }

    .error {
        float: left;
        position: relative;
        left: 0px;
    }
}


/*--------------------------------------------------------------
# Car Insurance
--------------------------------------------------------------*/
.section-header {
    text-align: center;
    padding-bottom: 40px;
}

    .section-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: var(--color-primary);
        font-weight: 800;
    }

.page-content {
    margin-top: 69px;
    padding-top: 40px;
}

.app-content .page-content {
    margin: 0;
    padding: 0;
}

#CarInsurance p {
    text-align: justify;
}


@media (min-width: 320px) and (max-width: 767.98px) {
    .media-body h5 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .media-body h5 {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
}
