/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
}

:root {
    --primary-color: #014b8f;
    --secondary-color: #d50321;
    --body-bg: #fff;
    --primary-color-dark: #10133a;
    --white-color: #fff;
    --off-white: #f0f9ff;
    --btn-color: #333;
    --main-bg-color: #4399d4;
    --sv-color: #000;
    --quickbook: #2ca01c;
    --quickbook-2: #1a8a0c;
    --tally: #3069b1;
    --tally-2: #205ca5;
    --sba: #ff9f33;
    --sba-2: #fdad52;
}

.bg-off-white {
    background-color: #f0f9ff;
}

body {
    color: var(--primary-color);
    font-size: 14px;
    overflow-x: hidden;
    font-family: "Barlow", sans-serif;
    overflow-x: hidden !important;
}

.bg-quickbook {
    background-color: var(--quickbook);
}

.bg-quickbook-2 {
    background-color: var(--quickbook-2);
}

.bg-tally {
    background-color: var(--tally);
}

.bg-tally-2 {
    background-color: var(--tally-2);
}

.bg-sba {
    background-color: var(--sba);
}

.bg-sba-2 {
    background-color: var(--sba-2);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

.bg-sap-2 {
    background-color: var(--primary-color-dark);
}

/* Preset */
.font-p {
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    line-height: 26px;
}

.font-lg {
    font-size: 21px;
    font-weight: 500;
}

.font-xl {
    font-size: 24px;
    font-weight: 500;
}

.font-md {
    font-size: 14px;
    font-weight: 500;
}

.font-sm {
    font-size: 12px;
    font-weight: 500;
}

.ml-10 {
    margin-left: 10px;
}

.ml-30 {
    margin-left: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.pt-lg {
    padding-top: 3em;
}

.font-head-1 h4 {
    font-size: 34px;
}

.tab-pane p,
.tab-pane li {
    font-size: 14px;
    line-height: 24px;
}

.tab-pane strong,
.pricing strong {
    font-weight: 600;
}

a {
    text-decoration: none;
}

.bg-primary-color {
    background-color: var(--primary-color);
}

.color-white {
    color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--secondary-color);
    border-top-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #f06f54;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header.header-scrolled {
    padding: 12px 0;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#header .logo img {
    max-height: 70px;
}

#inner-header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
    height: 12vh;
}

#inner-header.header-scrolled {
    padding: 12px 0;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#inner-header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#inner-header .logo img {
    max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: auto;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    margin-right: 15px;
}

.navbar-links li {
    position: relative;
}

.navbar-links {
    display: none;
}

.navbar-links a,
.navbar-links a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar-links a i,
.navbar-links a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar-links a:hover,
.navbar-links .active,
.navbar-links .active:focus,
.navbar-links li:hover > a {
    /* color: var(--primary-color); */
    background-color: #e9e9e9;
    transition: 0.3s;
    border: 0.5px solid #dfdfdf;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1d;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: var(--secondary-color);
    padding: 10px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--primary-color);
}

.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;
}

.navbar .dropdown ul li {
    width: 320px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.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;
}

.navbar .megamenu {
    position: static;
}

.navbar .megamenu ul {
    right: 0;
    padding: 30px;
    display: flex;
}

.navbar .megamenu ul li {
    flex: 1;
}

.navbar .mego-s-content ul li a,
.navbar .mego-s-content ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
}
.mega-menu .mega-s-title h4 {
    font-size: 14px;
}
.navbar .mego-s-content a:hover,
.navbar .mego-s-content .active,
.navbar .mego-s-content .active:hover {
    color: var(--primary-color);
    background: #fff;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #0b2341;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
    .nav-2 {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--secondary-color);
}

.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: var(--secondary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

@media (max-width: 640px) {
    #navbar .sm-none {
        display: none;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

#hero .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 82px;
    left: 50px;
    right: 50px;
}

#hero h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 48px;
    font-weight: 600;
}

#hero p {
    animation-delay: 0.4s;
    color: var(--primary-color);
    margin-top: 15px;
    font-size: 21px;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    border-radius: 30px;
    width: 20px;
    margin: 0 10px;
    height: 20px;
    opacity: 1;
    transition: 0.3s;
    background: var(--secondary-color);
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary-color);
    position: relative;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: var(--secondary-color);
    margin-top: 15px;
}

#hero .btn-get-started:hover {
    background: var(--primary-color);
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta span {
    margin-left: 10px;
    transition: 0.3s;
}

.get-connect a {
    padding: 8px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 16px;
    color: var(--secondary-color);
    transition: 0.3s;
}

.get-connect-2 a {
    padding: 8px 15px;
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.get-connect a:hover span svg {
    margin-left: 20px;
    transform: rotate(45deg);
    transition: 0.3s;
}

.get-connect-2 a:hover span svg {
    margin-left: 20px;
    transform: rotate(45deg);
    transition: 0.3s;
}
.get-connect-2 a span svg,
.get-connect a span svg {
    transition: 0.3s;
}

.inner-hero-cta {
    margin-top: 30px;
    align-items: center;
}

.inner-hero-cta a {
    align-items: center;
    margin-top: 20px;
}

.inner-hero-cta a {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: 0.3s;
}

.inner-hero-cta a:hover span i {
    margin-left: 15px;
    transition: 0.3s;
}

.inner-hero-cta a span i {
    margin-left: 7px;
    font-size: 14px;
    transition: 0.3s;
}

.inner-hero-cta a:hover {
    transition: 0.3s;
    color: #fff;
}

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }

    #hero .carousel-container {
        text-align: center;
        top: 74px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
    #hero p {
        font-size: 16px;
    }
    .hero-cta {
        display: flex;
        flex-direction: column;
    }
    .get-connect {
        padding-top: 30px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-title {
    padding-bottom: 30px;
}

.section-title h4 {
    position: relative;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.section-title h4::after {
    content: "";
    height: 2px;
    width: 70px;
    background-color: var(--main-bg-color);
    position: absolute;
    bottom: -5px;
    left: 0;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li + li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--secondary-color);
    line-height: 1;
}

.about-img img {
    width: ;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    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: var(--secondary-color);
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--secondary-color);
}

.about .content .btn-learn-more:hover {
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
}
.underline-btn {
    position: relative;
    margin-top: 40px;
}
.underline-btn a:hover span svg {
    margin-left: 5px;
    transform: rotate(45deg);
    transition: 0.3s;
}
.underline-btn a span svg {
    transition: 0.3s;
}
.underline-btn a {
    padding: 5px;
    border-bottom: 1px solid var(--secondary-color);
    transition: 0.3s;
    font-size: 16px;
}

.sub-title {
    font-weight: 400;
    letter-spacing: 1.5px;
}

/* About us page */
.about-hero {
    padding: 0 20px;
}

.about-content h4 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Mission and Vision */
.mission-vision h4 {
    font-size: 32px;
    text-transform: uppercase;
}

.mv-content {
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    margin: 10px;
    cursor: pointer;
    color: var(--primary-color);
    transition: 0.3s;
}

.mv-icon img {
    height: 90px;
    padding: 15px;
    margin-bottom: 10px;
}

.mv-header h4 {
    font-weight: 600;
    font-size: 18px;
    padding: 10px 0;
    text-transform: uppercase;
}

.mv-p p {
    font-size: 16px;
    font-weight: 300;
}

/* .mv-content:hover {
    box-shadow: 0px 0px 20px #a8a8a83b;
    border: none;
    transform: scale(1.012);
    transition: 0.3s;
} */

@media (max-width: 640px) {
    .about-content h4 {
        font-size: 36px;
    }
}

/* Core Value */
.core-value-content {
    padding: 25px;
    height: 100%;
    border: 1px solid #ebebeb;
    border-bottom: 1px solid var(--primary-color);
    background-color: var(--off-white);
    cursor: pointer;
    transition: 0.3s;
}
.core-value-content:hover {
    box-shadow: 0px 10px 20px #acb9da3b;
    /* border: none; */
    transform: scale(1.012);
    /* background-color: var(--primary-color); */
    /* color: #ffff; */
    transition: 0.3s;
}
.value-head {
    align-items: center;
}

.value-head h4 {
    font-size: 21px;
    margin-bottom: 20px;
}
/* Our Services */
.nav-tabs {
    background-color: var(--primary-color);
    transition: 0.3s ease-in-out;
    padding: 15px;
    /* justify-content: space-between; */
}
.nav-tabs li {
    padding: 10px 20px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}
.nav-tabs .active {
    background-color: var(--secondary-color);
    transition: 0.3s ease-in-out;
}

.core-value-content .row {
    margin: auto;
}

.value-ico img {
    height: 40px;
}

@media (max-width: 860px) {
    .value-ico {
        margin-bottom: 20px;
    }
    .core-value-content {
        text-align: center;
    }
    .btn-arrow svg {
        display: none;
    }
}

/* SAP page */
.sap-img img {
    padding: 20px;
}

/* SBA Page */
.sub-service-group h5 {
    background-color: var(--main-bg-color);
    padding: 10px 20px;
    color: #fff;
}
.list-group li {
    border: none;
    margin: 3px 0;
    background-color: var(--off-white);
}
.sub-service-group {
    padding: 20px 0;
}

/* Nav tabs 2 */
.nav-tabs-2 {
    transition: 0.3s ease-in-out;
    padding: 15px;
    justify-content: space-between;
}
.nav-tabs-2 li {
    padding: 10px 15px;
    color: #fff;
    /* transition: 0.3s ease-in-out; */
    font-size: 16px;
}
.nav-tabs-2 .active {
    background-color: var(--secondary-color);
    /* transition: 0.3s ease-in-out; */
    /* border-bottom: 2px solid var(--secondary-color); */
}
.industries-sec .row {
    margin: auto;
    width: 100%;
    align-items: center;
    align-content: center;
}
.map-svg img {
    width: 380px;
    text-align: center;
    padding: 20px;
}

.map-svg {
    text-align: center;
}

.tab-content {
    padding: 0px 30px;
}

@media (max-width: 520px) {
    .who-tabs nav ul {
        display: block;
    }
    /* .who-tabs {
        display: flex;
    }
    .tab-content {
        padding: 10px 10px;
    } */
}

/* Solutions */

.service-title {
    background-color: #fff;
    transition: 0.3s;
    margin-top: 20px;
    border-radius: 5px;
    height: 260px;
}

.service-title img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.service-title:hover {
    transition: 0.3s;
    box-shadow: 0px 0px 20px #1a13354d;
    transform: scale(1.032);
    background-color: var(--main-bg-color);
}

.service-title:hover p {
    color: #fff;
    transition: 0.3s;
}

.service-title p {
    font-size: 16px;
    padding: 25px 20px;
    color: var(--primary-color);
    font-weight: 500;
    /* text-transform: uppercase; */
    transition: 0.3s;
}

@media (max-width: 920px) {
    .service-title {
        height: 280px;
    }
}

@media (max-width: 620px) {
    .service-title {
        height: 300px;
    }
}
/* why choose us */

.why-choose ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: -30px;
    top: 7px;
    background-color: var(--primary-color);
}

.why-choose ul li {
    position: relative;
    margin: 10px 0;
    font-size: 16px;
}
/* Testimonials */
.counter h2 {
    font-size: 42px;
    position: relative;
}

.counter {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.counter:hover {
    box-shadow: 0px 0px 20px #a8adb941;
    transition: 0.3s;
    transform: scale(1.035);
}
.stauts {
    display: flex;
}

.counter h2::after {
    content: "+";
    font-weight: 600;
    font-size: 24px;
    position: absolute;
    right: -20px;
    top: 7px;
}

@media (max-width: 620px) {
    .stauts {
        display: block;
    }
    .counter {
        padding: 20px 20px;
        cursor: pointer;
        border-radius: 10px;
        border: 1px solid #ddd;
        transition: 0.3s;
    }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding: 0;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #123a6d;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li + li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;

    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    color: #0b2341;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
    color: var(--secondary-color);
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--secondary-color) 50%, rgba(237, 80, 46, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.why-us .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(237, 80, 46, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
    border-left: 15px solid var(--secondary-color);
    transform: scale(20);
}

.why-us .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

/* Products */

.bus-slider .slide img {
    border-radius: 10px;
    margin-top: 30px;
    padding: 0;
}

@media (max-width: 1024px) {
    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}

.services .icon-box .icon i {
    color: #fff;
    font-size: 28px;
}

.services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: var(--main-bg-color);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
    z-index: 1;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #0b2341;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.services .icon-box:hover .icon {
    background: #fff;
}

.services .icon-box:hover .icon i {
    color: var(--secondary-color);
}

.services .icon-box:hover .icon::before {
    background: var(--main-bg-color);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
    color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.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: #fdedea;
    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: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--secondary-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    padding: 80px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid var(--secondary-color);
    color: #fff;
    background: var(--secondary-color);
}

.cta .cta-btn:hover {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-about h3 {
    margin-bottom: 20px;
    font-size: 44px;
}
.cta-about h4 {
    margin-bottom: 20px;
    font-size: 18px;
}
/* Industries  */

.industry-title {
    background-color: #fff;
    transition: 0.3s;
    margin-top: 20px;
    padding: 30px 20px;
    box-shadow: 0px 0px 20px #7e7e7e1d;
    position: relative;
}
/* 
.industry-title:hover {
    background-color: var(--secondary-color);
    transition: 0.3s;
}

.industry-title:hover a {
    color: #fff;
    transition: 0.3s;
} */

.industry-title a {
    font-size: 14px;
    padding: 0 20px;
    justify-content: space-between;
    font-weight: 600;
    padding: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: 0.3s;
    transition: 0.3s;
}

.industry-title:hover .btn-arrow svg {
    /* width: 50px; */
    transform: rotate(45deg);
    transition: 0.3s;
    transition: 0.5s;
}

.industry-title:hover .btn-arrow svg path {
    /* fill: #fff; */
}

.btn-arrow svg {
    /* transform: rotate(45deg); */
    transition: 0.3s;
    position: absolute;
    right: 30px;
    bottom: 40%;
}

.industry-ico img {
    width: 60px;
}

.industry-ico-inner img {
    width: 45px;
}
/* Clients */
.client-slider img {
    transition: 0.3s;
    cursor: pointer;
    width: 200px;
    /* filter: grayscale(0.8); */
    opacity: 0.5;
}

.client-slider img:hover {
    filter: grayscale(0);
    transition: 0.3s;
    opacity: 1;
    transform: scale(1.17);
}

@media (max-width: 860px) {
    .industry-ico {
        margin-bottom: 20px;
    }
    .industry-title {
        text-align: center;
    }
    .btn-arrow svg {
        display: none;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #0b2341;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: var(--secondary-color);
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #1a5298;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--secondary-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
    color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--secondary-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    margin-bottom: 20px;
    margin: 0 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 450px;
    background-color: var(--off-white);
    /* color: #fff; */
    border-radius: 5px;
    border: 1px solid #dbe3ec;
}

.member-info {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
}
.member-info:hover {
    /* background-color: var(--primary-color); */
    /* color: #fff; */
    transition: 0.3s;
    box-shadow: 0px 0px 20px #a69bcf36;
    transform: scale(1.012);
}
.team .member .member-info-content {
    margin-left: 20px;
}

.team .member .member-info-content h4 {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 18px;
}

.team .member .member-info-content span {
    padding: 0px 0;
    display: block;
    font-size: 16px;
}

.team .member p {
    display: block;
    font-size: 12px;
    text-align: justify;
    line-height: 1.5;
    font-weight: 100;
}

.team .member-img {
    transition: 0.3s;
    width: 100px;
}
.team-slider {
    position: relative;
}

.team-slider ul {
    display: flex;
    width: 100%;
    padding-top: 20px;
    margin: auto;
    align-content: center;
    align-items: center;
    align-content: center;
}

.team-slider {
    padding-top: 20px;
    margin: auto;
    align-items: center;
    align-content: center;
}

.slick-dots {
    justify-content: space-around;
}

.slick-dots li {
    padding: 0 10px;
}

.slick-dots li button {
    border: none;
    padding: 10px 15px;
}

.slick-dots li.slick-active button {
    /* display: none; */
    background-color: var(--primary-color);
    color: #fff;
}
.certified {
    position: relative;
}
.certified .member-info-content::after {
    content: url(../img/sap-badge-2.svg);
    width: 80px;
    position: absolute;
    top: 0px;
    right: 20px;
}
/* .team-slider button {
    position: absolute;
    top: 0;
    padding: 0 10px;
    right: 20px;
} */

@media (max-width: 620px) {
    .team .member {
        margin-bottom: 20px;
        margin: 0 10px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        height: 600px;
        background-color: var(--off-white);
        /* color: #fff; */
        border-radius: 5px;
        border: 1px solid #dbe3ec;
    }

    .slick-dots li {
        display: none;
    }
    .team .member p {
        display: block;
        font-size: 11px;
        text-align: justify;
        line-height: 1.5;
        font-weight: 100;
    }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
    /* box-shadow: 0px 0px 20px #dbebf6; */
    padding: 20px 30px;
    border-radius: 10px;
    height: 100%;
}

.pricing-2 {
    padding: 20px 30px;
    border-radius: 10px;
    height: 100%;
}

.pricing-2 h4 {
    font-size: 21px;
    color: #0b2341;
    font-weight: 500;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.pricing-2 h4::after {
    content: "";
    height: 1px;
    width: 80px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -7px;
    left: 0;
}

.pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
}

.pricing h4 {
    font-size: 21px;
    color: #0b2341;
    font-weight: 500;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.pricing h4::after {
    content: "";
    height: 1px;
    width: 80px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -7px;
    left: 0;
}

.pricing .featured .get-started-btn:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
    color: #669ee5;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
}

.faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
}

.faq .faq-item p {
    font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #0b2341;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: var(--secondary-color);
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fbdad2;
}

.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-crev h2 {
    font-weight: 700;
    text-transform: uppercase;
}

.contact-crev h6 {
    font-weight: 600;
    padding-top: 10px;
}
.contact-crev .text a {
    color: #000;
}

.contact-crev .text li {
    color: #000;
    margin-left: -30px;
    margin-top: 10px;
}

.contact-crev .text li a {
    color: #000;
    margin-left: 20px;
}

.icon-ico {
    margin-top: 10px;
}

.icon-ico i {
    font-size: 16px;
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 10px;
    border-radius: 40px;
}

.contact-crev .text li i {
    background-color: var(--primary-color);
    padding: 8px 10px;
    color: #fff;
    border-radius: 40px;
}

.contact-crev .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

.contact-crev .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact-crev .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact-crev .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact-crev .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact-crev .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact-crev .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;
    animation: animate-loading 1s linear infinite;
}

.contact-crev .php-email-form input,
.contact-crev .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact-crev .php-email-form input:focus,
.contact-crev .php-email-form textarea:focus {
    border-color: var(--secondary-color);
}

.contact-crev .php-email-form input {
    padding: 10px 15px;
}

.contact-crev .php-email-form textarea {
    padding: 12px 15px;
}

.contact-crev .php-email-form button[type="submit"] {
    background: var(--primary-color);
    border: 0;
    padding: 10px 30px;
    border-radius: 4px;
    color: #fff;
    transition: 0.4s;
}

.contact-crev .php-email-form button[type="submit"]:hover {
    background: var(--primary-color);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    /* background: var(--secondary-color); */
    min-height: 40px;
    margin-top: 82px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 74px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0b2341;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 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: #fff;
    content: "/";
}

.social-text li a {
    text-transform: uppercase;
    background-color: #f5f5f5;
    color: var(--primary-color-dark);
    padding: 7px 10px;
    border-radius: 3px;
    font-size: 16px;
    border: 1px solid #ededed;
    transition: 0.3s;
}
/* 
.social-text li a:hover {
    border: 1px solid #ddd;
    transform: translateY(3);
} */

.social-text li {
    transition: 0.3s;
}

.social-text li:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}

/*  */
.inner-main {
    margin-top: 12vh;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    position: relative;
    background-color: #060a2f;
}

footer h6 {
    color: var(--main-bg-color);
    font-size: 20px;
}

footer .text a {
    color: #fff;
}

footer .call-box {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

footer .call-box h2 {
    font-size: 80px;
    line-height: 1;
}

footer .call-box .arrow svg {
    width: 80px;
    height: 80px;
}

footer .social-text li {
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer .social-text li:last-of-type {
    margin-bottom: 0;
}

footer .subscribe .form-group {
    position: relative;
}

footer .subscribe input {
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--secondary-color);
    width: 100%;
    padding: 15px 30px 15px 0;
}

footer .subscribe button {
    color: var(--secondary-color);
    padding: 15px 0;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: 0;
}

footer .copyright p {
    color: #fff;
}

footer .copyright a {
    color: #fff;
}

footer .logo a {
    max-width: 120px;
}

footer .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 70px;
    background-repeat: repeat;
    pointer-events: none;
    opacity: 0.5;
}

.sub-footer {
    background-color: var(--primary-color);
}

.footer-logo img {
    width: 170px;
}

.text a {
    font-size: 16px;
}

.clutch-review {
    /* border-top: 1px solid #ddd; */
    padding-top: 10px;
}

.social-links a i {
    font-size: 18px;
    padding: 4px 7px;
    border-radius: 5px;
    background-color: #efefef;
    color: #000;
    margin: 0 7px;
    transition: 0.3s;
    border: 1px solid #ddd;
}

.social-links-2 {
    margin-left: 50px;
}

.social-links-2 a i {
    font-size: 18px;
    padding: 5px 7px;
    border-radius: 5px;
    color: var(--primary-color);
    margin: 0 7px;
    transition: 0.3s;
    border: 1px solid #ddd;
}

.social-links-2 a:hover i {
    font-size: 18px;
    padding: 5px 7px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #fff;
    margin: 0 7px;
    transition: 0.3s;
    border: 1px solid var(--primary-color);
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}
