/********** Template CSS **********/
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}



/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

/* .navbar .navbar-brand img {
    max-height: 60px;
} */

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #ffffff;
    font-weight: 100;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        /* max-height: 45px; */
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url("https://uk.businessesforsale.com/uk/static/articleimage?articleId=12177&name=image2.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #fc78a7;
    border: 1px solid #ffffff;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 10px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    background: #fff;
}

.footer .copyright a {
    color: #ba4790;
}

.footer .copyright a:hover {
    color: #000;
}



/* ---------------------------------- */

.navbar {
    background: #0f0133;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #0d6efd;
}

.nav-link {
    font-weight: 600;
    margin-left: 20px;
}

.hero {
    padding: 130px 0;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
}

.btn-custom {
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    color: #222;
}

.feature-box {
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    transition: .3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.feature-box i {
    font-size: 45px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ---------------------------- */
.hero-section {
    background: linear-gradient(135deg, #fff, #fff);
    padding: 110px 0;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -220px;
    right: -150px;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.glass-card {
    background: rgb(255 242 249);
    backdrop-filter: blur(12px);
    border: 1px solid rgb(15 1 51);
    border-radius: 20px;
    padding: 35px;
}

.info-section {
    padding: 90px 0;
}

.info-card {

    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
    border-top: 5px solid var(--primary);

}

.info-card:hover {

    transform: translateY(-10px);

}

.icon-box {

    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px;

}

.check-list {

    list-style: none;
    padding: 0;

}

.check-list li {

    padding: 8px 0;
    font-size: 17px;

}

.check-list i {

    color: #198754;
    margin-right: 10px;

}

.tagline {

    font-size: 18px;
    letter-spacing: 1px;
    opacity: .9;

}

.business-card {
    transition: .4s;
    border-radius: 20px;
    overflow: hidden;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, .18) !important;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.income-card {
    border-radius: 20px;
    transition: .35s;
}

.income-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15) !important;
}

.income-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.benefit-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.benefit-box:hover {
    transform: translateY(-10px);
}

.benefit-box i {
    font-size: 45px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.founder-card {
    transition: .35s;
    border-radius: 20px;
    overflow: hidden;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18) !important;
}

.founder-card .card-header {
    font-size: 24px;
    font-weight: 700;
}

.partner-card {

    transition: .35s;

    border-radius: 20px;

}

.partner-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 45px rgba(0, 0, 0, .18) !important;

}

.partner-card i {

    margin-bottom: 20px;

}

.card {

    border-radius: 20px;

}

.app-section {
    padding: 90px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0d6efd;
}

.integration-card {

    border: none;
    border-radius: 20px;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}

.integration-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, .15);

}

.icon-circle {

    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    margin: auto;

}

.feature-box {

    background: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;

}

.feature-box:hover {

    transform: translateY(-8px);

}

.feature-box i {

    font-size: 40px;
    margin-bottom: 15px;
    color: #0d6efd;

}

.dashboard-card {

    border-radius: 20px;
    transition: .35s;

}

.dashboard-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(13, 110, 253, .18) !important;

}

.dashboard-card i {

    margin-bottom: 15px;

}

.card {

    border-radius: 20px;

}

.franchise-card {
    transition: .35s;
    border-radius: 20px;
}

.franchise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, .18) !important;
}

@media (max-width:2560px) {
    .navbar-brand {
        width: 17%;
    }

    .m {
        display: none;
    }
}

@media (max-width:768px) {
    .navbar-toggler-icon {
        background: #fff;
    }

    .d {
        display: none;
    }

    .m {
        display: block;
    }

    .navbar-brand {
        width: 30%;
    }
}

@media (max-width:576px) {
    .navbar-brand {
        width: 50%;
    }
}