/********** Template CSS **********/
:root {
    --primary: #af9fff;
    --secondary: #232323;
    --light: #F7F7F7;
    --dark: #404A3D;
    --bs-font-sans-serif: "Open Sans", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #404A3D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

#header-carousel img {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-dark {
    background-color: var(--secondary) !important;
}
a {
    text-decoration: none !important;
}
.bg-primary {
    background-color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--primary) !important;
}

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

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

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}
.text-justify {
    text-align: justify;
}
.btn-second {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-second:hover {
    color: black;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);

}

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

}

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

.btn-secondary:hover {
    color: #ffffff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.navbar .btn-primary-nav {
    color: white;
    font-size: 18px;
    font-weight: 500;
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 5px;
}

.navbar .btn-primary-nav:hover {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);

}

.navbar .btn-secondary-nav {
    color: white;
    font-size: 18px;
    font-weight: 500;
    background-color: var(--secondary);
    border-color: var(--secondary);
    border-radius: 5px;
}

.navbar .btn-secondary-nav:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);

}

.text-align-justify {
    text-align: justify;
}




/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.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-nav .nav-link {
    margin-right: 20px;
    color: var(--dark);
    border: 0px;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

/*
.navbar img{
    width:100px;
}
*/

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.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-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        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;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@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(../images/banner.jpg) center center no-repeat;
    background-size: cover;

}


.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);

}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--secondary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--secondary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
}

.service-text .c-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Vertically centers the icon */
    color: #FFFFFF;
    width: 130px;
    height: 130px;
    margin-top: -70px;
    margin-bottom: 40px;
    border-radius: 140px;
}
.starups .c-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    /* Vertically centers the icon */
    color: #FFFFFF;

}


.service-item .service-text .service-icon img {
    background-size: cover;
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}



/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 0%;
  left: 0%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}

/*====================================
    About Us Page
======================================*/
.font-35 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.5;
    color: #BA96F0;
}

.about-section-one {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.starups {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5% 10%;
}


.starups p {
    text-align: justify;
    margin:0;
}

.starups .rounded-circle {
    width: 75px;
    height: 75px;
    border: 10px;
}

.home-about-img {
    width: 50%;
    background-image: url(../images/about-us.jpg);
    background-size: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    height: 700px;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .about-section-one .starups {
        padding-left: 10%;
    }
}

.about-section-one .starups .about-section-one-details {
    padding-right: 117px;
}

.about-section-one .starups .about-section-one-details span {
    margin-bottom: 22px;
    display: block;
    color: #9fabbe;
}

.about-section-one .starups .about-section-one-details h3 {
    display: block;
    color: #fff;
    margin-bottom: 53px;
}

.about-section-one .starups .about-section-one-details .starups-list ul {
    display: flex;
    margin-bottom: 18px;
}

.about-section-one .starups .about-section-one-details i {
    font-size: 20px;
    color: var(--primary);
}

.about-section-one .starups .about-section-one-details p {
    padding-left: 5px;
    color: #9fabbe;
}

.about-section-one .starups-img {
    width: 50%;
    background-image: url(../images/whatwedo.jpg);
    background-size: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    height: 700px;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-section-one {
        display: block;
    }

    .about-section-one .starups {
        width: 100%;
    }

    .about-section-one .starups .about-section-one-details {
        padding-right: 0px;
    }

    .about-section-one .starups-img {
        width: 100%;
        height: 400px;
    }

    .about-section-one .starups .about-section-one-details p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .about-section-one {
        display: block;
    }

    .about-section-one .starups {
        width: 100%;
    }

    .about-section-one .starups {
        padding: 0 30px;
    }

    .about-section-one .starups .about-section-one-details {
        padding-right: 0px;
        margin-top: 40px;
    }

    .about-section-one .starups-img {
        width: 100%;

        height: 500px;

    }

    .about-section-one .starups .about-section-one-details .font-35 {
        font-size: 21px;
    }

    .about-section-one .starups .about-section-one-details p {
        padding-left: 9px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-section-one .starups {
        padding-left: 8%;
    }

    .about-section-one .starups .about-section-one-details {
        padding-right: 30px;
    }

    .about-section-one .starups .about-section-one-details .font-35 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .about-section-one .starups {
        padding-left: 10%;
        padding-right: 35px;
    }

    .about-section-one .starups .about-section-one-details {
        padding-right: 0px;
    }
}


/*===============================
    Section five
=================================*/
.section-five {
    padding-top: 200px;
    padding-bottom: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-five {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}

@media (max-width: 575px) {
    .section-five {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.section-five h2 {
    position: relative;
    z-index: 2;
}

.section-five.cover-background {
    background-image: url(../images/parallax-bg.jpg);
    position: relative;
    background-size: cover;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.dark-overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.75;
    background: rgba(24, 29, 56, .7);
}




/*=====================================
  FAq Section
======================================*/
.faq-section .accordion-style .card {
    background: transparent;
    box-shadow: none;
    margin-top: 0 !important;
    border: none;
    transition: .3s all ease;
}

.faq-section .accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: none;
}

.faq-section .accordion-style .btn-link {
    color: var(--primary);
    font-size: 16px;
    line-height: 20px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 15px 40px 24px 0px;
    box-shadow: none;
    text-decoration: none;
    margin-bottom: 0;
    cursor: pointer;
}

.faq-section .accordion-style .btn-link:hover {
    text-decoration: none;
}


.faq-section .accordion-style .btn-link:after {
    content: "-";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-section .accordion-style .btn-link.collapsed:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    background: var(--secondary);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 575px) {
    .faq-section .accordion-style .btn-link:after {
        right: -25px;
        width: 40px;
        height: 40px;
    }

    .faq-section .accordion-style .btn-link.collapsed::after {
        right: -25px;
        width: 40px;
        height: 40px;
    }
}

.faq-section .accordion-style .card-body {
    padding: 20px 20px 20px 0;
    text-align: left;
    line-height: 2;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.17)
}

.faq-section .accordion-style .btn-link.collapsed {
    color: #282b2d;
}




.faq-section .accordion-style.style1 .card-body {
    padding: 20px 20px 10px 0;
}

.faq-section .accordion-style.style1 .btn-link {
    padding: 20px 0px 20px 40px;
}

.faq-section .accordion-style.style1 .btn-link:after {
    left: 0px;
    right: inherit;
    top: 20px;
}

.faq-section .accordion-style.style1 .btn-link.collapsed:after {
    left: 0;
    right: inherit;
    top: 20px;
}

@media screen and (max-width: 767px) {
    .faq-section .accordion-style .card-body {
        padding: 15px;
    }
}

.faq-section .nav-tabs {
    border-color: var(--secondary);
}

.faq-section .nav-link {
    color: var(--primary);
}

.faq-section .nav-link:hover {
    border-color: var(--secondary);
    border-bottom: 0;
}

.faq-section .nav-link.active {
    color: var(--secondary);
    border-color: var(--secondary);
    border-bottom: 0;
}



/*** Footer ***/

.footer-section-one {
    padding-top: 70px;
    padding-bottom: 70px;
}

.footer-section-one .btn {
    position: relative;
    border-radius: 5px;
    padding: 11px 25px;
    transition: ease-in 0.3s;
    z-index: 1;
    border: 0;
    overflow: hidden;
    margin: 0;
    text-transform: capitalize;
}

.footer-section-one .btn-secondary {
    color: white;
}

.font-45 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 500;
}

.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

/*Faq page*/
.faqtab .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--primary);
}
