/* Fonts */
.marcellus-regular {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}

.lexend {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}






:root {
    --default-font: "Lexend", sans-serif;
    --heading-font: "Marcellus", serif;
    --nav-font: "Marcellus", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #7977ff;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #292929;
    /* Color for headings, subheadings and title throughout the website */
    --heading-para: #3a3a3a;
    --para-color: #4a4a4a;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --subheader-color: #141414;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */

}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

.theme-color-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(89%) saturate(1747%) hue-rotate(195deg) brightness(97%) contrast(101%);
}

.icon-white {
    filter: brightness(0) invert(1);
    /* turns white */
}

/* Small solid dot */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--default-color);
    /* golden */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Outline circle */
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border: 2px solid var(--default-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

a {
    position: relative;
    overflow: hidden;
    /* keep effect inside link */
    cursor: pointer;
}

.wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 150, 255, 0.3);
    transform: scale(0);
    animation: waveAnim 0.8s ease-out forwards;
    pointer-events: none;
}

@keyframes waveAnim {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }

    50% {
        transform: scale(2);
        opacity: 0.3;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--para-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--subheader-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5
 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
    transition: all ease-in-out 0.3s 0s;
}





/*** Spinner Start ***/
/*** 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;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-theme {
    background-color: var(--default-color);
}

.btn-square {
    width: 28px;
    height: 28px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

.gap-section {
    padding: 100px 0 100px;
}
/* 
section {
    overflow: hidden;
} */

/* Header  */

.header-top {
    background-color: var(--default-color);
}

.header-top .top-contact ul li a {
    font-size: 13px;
}

.header-top .top-contact ul li a span .fas,
.header-top .top-contact ul li a span .fab {
    color: var(--default-color);
    font-size: 13px;
}

.header-top .top-contact ul li a:hover span .fas,
.header-top .top-contact ul li a:hover span .fab,
.header-top .top-contact ul li a:hover span {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.header-block {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1200;
}

.main-menu-header {
    padding: 14px 20px;
    border-radius: 55px;
    background-color: #ffffffe6;
    transition: all 0.3s ease-in-out 0s;
}

.header-bottom {
    margin-top: 20px;
    transition: all 0.3s ease-in-out 0s;
}

.header-bottom.fixed-top {
    background: #fff !important;
    z-index: 102020;
    margin: 0;
    top: 0;
}

.header-bottom.fixed-top .main-menu-header {
    padding: 10px 15px;
}

.navbar-brand {
    line-height: 0;
}

.carousel-caption-content p {
    font-weight: 300;
}

.main-content {
    margin-top: 60px;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}
.sub-header{
    color: var(--default-color);
}
.section-title .subheading {
    position: relative;
    display: inline-block;
    color: var(--heading-color);
    font-family: var(--default-font);
}

.section-title h2 {
    color: var(--default-color);
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;

}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--heading-color);
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
}

.sub-title span::before {
    content: "";
    width: 15px;
    position: absolute;
    top: 13px;
    border: 1px solid var(--default-color) !important;
    left: -14px;
}

.sub-title span::after {
    content: "";
    width: 10px;
    position: absolute;
    top: 13px;
    right: -9px;
    border: 1px solid var(--default-color) !important;
}

h4.sub-title span {
    font-size: 28px;
    color: var(--default-color);
    top: 4px;
    display: inline-block;
    line-height: 0;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

/* Home Service */
.service {
    background-color: #f8f6ff;
}

@media (max-width: 576px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin: 0 20px;
    padding: 0px 0;
    color: var(--heading-color) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}
.navbar .nav-item .dropdown-menu{
    width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    padding: 16px 5px;
    border-radius: 4px;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}


.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 26px;
    transition: .5s;
    margin-left: 0px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}
.appoint-btn:hover{
    background-color: var(--heading-color);
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
    top: 40px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    /* .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
        transition: all 0.3s ease-in-out 0s;
    } */


    .sticky-top.navbar-light {
        position: fixed;
        margin: 0;
        border-radius: 0;
        padding: 10px 25px;

    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

.dropdown-menu li.dropdown a{
    line-height: 2;
    padding: 6px 15px;
    font-weight: 300;
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }

}

.header-carousel .header-carousel-item,

.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 0px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: start;
    background: rgba(2, 0, 37, 0.5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 50%;

}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 2.5%;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
}

.header-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: var(--default-color);
    display: block;
    margin: 5px 0px;
    border-radius: 50%;
    opacity: 0.5;

}

.header-carousel .owl-dots .owl-dot.active span {
    background-color: var(--background-color);
    opacity: 0.8;
}

/*** Carousel Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    padding-bottom: 60px;
}

.service-content-inner .service-icon {
    position: absolute;
    top: -39px;
    background: #0d6efd;
    border-radius: 50%;
    padding: 15px;
    left: 0px;
    width: 72px;
    right: 0;
    margin: auto;
    z-index: 1000;
    transition: all 0.3s ease-in-out 0s;
}



.service-link a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.service-link {
    top: 5px;
    right: 5px;
    z-index: 20;
    transition: all 0.3s ease-in-out 0s;
}

.service .service-item:hover .service-img .service-link a {
    background-color: var(--default-color);
    transform: scale(1.1);
}

.service-content-inner .service-icon img {
    filter: brightness(0) invert(1);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;

}

/* .service .service-item:hover .service-img::before {
    height: 100%;
    background: var(--default-color);
    opacity: 0.5;
} */

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    width: 94%;
    margin: auto;
    left: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 8px 12px rgba(0, 0, 0, .08);
    height: 90px;
    transition: height 0.25s ease-in;
}

.service .service-item:hover .service-content {
    height: 250px;
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 22%;
    /* adjust size */
    height: 17%;
    background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400' preserveAspectRatio='none'> <path fill='%23f8f6ff' d='M0,0 C80,50 150,150 180,250 C220,400 450,350 600,380 L600,0 Z'/> </svg>") no-repeat center/cover;
}





.service .service-item .service-content .service-content-inner p {
    opacity: 0;
    transition: all ease-in-out 0.3s 0s;
}

.service-item:hover .service-content .service-content-inner p {
    opacity: 1;
    color: #fff;
}

.service .service-item:hover .service-content-inner .service-icon {
    background-color: #fff;

}

.service .service-item:hover .service-content-inner .service-icon img {
    filter: none;
}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    transition: 0.5s;
    z-index: -1;
}

.service .service-item:hover .service-content::before {
    background: var(--default-color);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner h5 {
    color: #fff;
}

.service .service-item:hover .service-link {
    transform: rotate(320deg);
}

/*** Service End ***/

/*** Expertise Start ***/

.expertise-block-bg {
    background-image: url(../img/why-choose-bg.png);
    left: 0;
    top: 0;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}

section.expertise-block {
    background-color: #0f7bfd;
    max-height: 730px;
}

.expertise-overlap-right img.overlap-image {
    max-width: none;
    height: 100%;
    object-fit: cover;
    border-radius: 150px 0 0 0;
    min-height: 600px;
    min-width: 100%;
}

.expertise-overlap-right {
    z-index: 1;
}

.expertise-overlap-right::after {
    content: "";
    width: 250px;
    height: 159px;
    position: absolute;
    background-image: url(../img/corner.png);
    top: 0;
    left: -125px;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
}

.expertise-content {
    position: relative;
    z-index: 10;
}

.espertise-box-icon img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(9%) saturate(2302%) hue-rotate(201deg) brightness(106%) contrast(102%);
}

.espertise-box-icon::after {
    position: absolute;
    content: "";
    background-color: var(--default-color);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 25px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}

.espertise-box:hover .espertise-box-icon::after {
    height: 100%;
}

.espertise-box:hover .espertise-box-icon img {
    filter: brightness(0) invert(1);
    /* turns white */
}

.espertise-box-container {
    background: #fff;
    padding: 0 25px;
    border-radius: 30px;
}

.espertise-box-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.espertise-box-container .espertise-box-top .espertise-box-icon {
    min-width: 72px;
    max-height: 72px;
    background: var(--heading-color);
    padding: 17px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 2;
    width: 72px;
}

.espertise-box p {
    margin: 0;
}

.espertise-box-title h6 {
    font-size: 22px;
    margin-left: 15px;
}

.expertise-counter {
       width: 220px;
    height: 188px;
    background: var(--default-color);
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 18px;

}

.expertise-counter:hover .experties-counter-inner {
    animation: spinLR 2s linear infinite;
}

@keyframes spinLR {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.expertise-counter .experties-counter-inner {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
}

.experties-counter-inner .counter-text p {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
    color: var(--default-color)
}

.experties-counter-inner h5 {
    font-size: 18px;
}

.espertise-box {
    width: 205px;
    margin: auto;
}

.others-content h4 {
    font-family: var(--default-font);
}









/*** Expertise End ***/

/*** about-home Start ***/
.about-home .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about-home .about-img .about-img-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 10px solid;
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;
    width: 250px;
    height: 250px;
}

.about-home .about-img .about-experience {
    position: absolute;
    top: 110px;
    left: -95px;
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;

}

/*** about-home End ***/

/*** Feature Start ***/

.feature {
      background: #fafaff;
    background: -webkit-linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    background: -moz-linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    background: linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FAFAFF", endColorstr="#EBEBFF", GradientType=0);
}

.feature-box {
    margin-top: 0;
    position: relative;
    top: 0;
    transition: all 0.3s ease-in-out 0s;
}

.feature-box:hover {
    top: -10px;
}

.blue-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(89%) saturate(1747%) hue-rotate(195deg) brightness(97%) contrast(101%);
    transition: all 0.3s ease-in-out 0s;
}

.feature-box .feature-icon {
    background: #f6f7ff;
    width: 100px;
    margin: 15px auto;
    padding: 10px 0;
    border-radius: 0 30px 0 30px;
    transition: all 0.3s ease-in-out 0s;
}

.feature-box:hover .feature-icon {
    background: var(--default-color);
    border-radius: 30px 0 30px 0;
}

.feature-box .feature-icon img {
    max-height: 60px;
    width: auto;
    display: block;
    margin: auto;
    transition: all 0.3s ease-in-out 0s;
}

.feature-box::after {
    width: 100%;
    height: 100%;
    content: "";
    bottom: -100%;
    left: 0;
    border: 2px solid var(--default-color);
    position: absolute;
    transition: all 0.3s ease-in-out 0s;
}

.feature-box:hover::after {
    bottom: 0;
}

.feature-box:hover .feature-icon img {
    filter: brightness(0) invert(1);
    /* turns white */
}




.feature-content p.mb-0 {
    line-height: 1.6;
}

/*** Feature End ***/


/*** Three Steps ***/

.step-icon {
    background: var(--default-color);
    width: 72px;
    height: 72px;
    margin-right: 15px;
    padding: 10px;
    border-radius: 15px 3px 15px 3px;
}

.stem-top .step-icon img {
    width: 100%;
}

.stem-top h5 {
    color: var(--default-color);
    font-family: var(--default-font);
}

.step-item {
    min-height: 295px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.steps-block {
    max-width: 1080px;
    margin: auto;
    padding-bottom: 30px;
}

.steps-block div:nth-child(2) .step-item {
    background-color: var(--default-color) !important;
    transform: scale(1.15);
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.steps-block div:nth-child(2) .step-item .stem-top .step-icon {
    background-color: var(--background-color) !important;
}

.steps-block div:nth-child(2) .step-item .stem-top .step-icon img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(89%) saturate(1747%) hue-rotate(195deg) brightness(97%) contrast(101%);
}

.steps-block div:nth-child(2) .step-item .stem-top h5,
.steps-block div:nth-child(2) .step-item .step-content p {
    color: var(--background-color);
}



/*** Three Steps End ***/
 /* Solution Block start */
.solutions-block {
    background: linear-gradient(#f4f1ff, rgba(255, 255, 255, 0.774)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.recent-client-header h3 {
    margin-bottom: 50px;
    font-size: 26px;
    color: var(--default-color);
    font-weight: 900;
}

.recent-client-header {
    max-width: 550px;
    margin: auto;
}
.recent-client-slider{
  max-width: 550px;
    margin: auto;
}
.recent-client-box {  
    background:var(--default-color);
    padding: 30px;
    border-radius:0 30px 30px 0 ;
    position: relative;
    margin-bottom: 65px;
}
.recent-client-box img {
    border-radius: 30px;
}
.recent-client-box .recent-client-text {
    background: #fff;
    width: 75%;
    padding: 20px;
    position: absolute;
    bottom: -50px;
    left: 14px;
    border-radius: 5px 30px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, .1);
}
.recent-client-box .recent-client-text h6 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1;
    font-weight: 700;
    color: var(--default-color);
}
.recent-client-slider .owl-dots {
       position: absolute;
    top: -37px;
    padding: 17px 29px 2px 34px;
    background: #7977ff;
    border-radius: 3px 6px 0 0;
}
.recent-client-slider .owl-dots .owl-dot span{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 0 5px;
    background-color:var(--default-color);
    border: 2px solid var(--background-color);
    opacity: 0.4;
}
.recent-client-slider .owl-dots .owl-dot.active span{
opacity: 1;
}




/*** Appointment Start ***/

.appointment .appointment-form {
    background: #fafaff;
    background: -webkit-linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    background: -moz-linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    background: linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FAFAFF", endColorstr="#EBEBFF", GradientType=0);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
.get-one-box {
    background: #f4f6ff;
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.get-one-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: var(--default-color);
  background-position: center bottom;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.get-one-box:hover::before {
  transform: scaleY(1);
}


.get-one-box .get-one-icon img {
    max-width: 36px;
}
.get-one-box:hover .get-one-icon img {
 filter: brightness(0) saturate(100%) invert(35%) sepia(89%) saturate(1747%) hue-rotate(195deg) brightness(97%) contrast(101%);
}
.get-one-box .get-one-icon {
    width: 62px;
    background:var(--default-color);
    height: 62px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: all  0.3s ease-in-out 0s;
}
.get-one-box:hover .get-one-icon{
    background-color: var(--background-color);
}

.get-one-box .get-para {
    margin-left: 83px;
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 1;
    transition: opacity 500ms, visibility 500ms, transform 500ms;
    margin-right: 10px;
}
.get-one-box .get-para p{
    margin: 0;
    font-size: 14px;
    color: #fff;
}
.get-one-box .get-header{
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
    transition: opacity 500ms, visibility 500ms, transform 500ms;
}
.get-one-box:hover .get-header {
    transform: translateY(100px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 500ms, visibility 500ms, transform 500ms;
}

.get-one-box:hover .get-para {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.get-one__points-text-box {
    position: absolute;
    left: 94px;
    right: 40px;
    top: 15px;
    
}














/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;


}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--default-color);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*** Youtube Video End ***/
/*** Appointment End ***/




/*** testimonial Start ***/
.testimonial {
    background: #fafaff;
    background: -webkit-linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    background: -moz-linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    background: linear-gradient(270deg, rgba(250, 250, 255, 1) 0%, rgba(237, 237, 255, 1) 51%, rgba(235, 235, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FAFAFF", endColorstr="#EBEBFF", GradientType=0);
}


.rating-text{
    font-size: 18px;
}
ul.star-list li {
    background-color: #ececff;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--default-color);
    font-size: 13px;
}
.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
       width: 100%;
    max-width: 178px;
    border-radius: 10px;
    overflow: hidden;
}
.quote-icon {
       position: absolute;
    bottom: -25px;
    left: -93px;
    color: var(--default-color);
    font-size: 82px;
    right: 0;
    text-align: center;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    display: block;
    opacity: 0.6;
}
.testminials-content h5 span {
    font-size: 16px;
    margin-left: 30px;
    color: var(--heading-color);
}
.testminials-content h5 {
    color: var(--default-color);
    font-size: 26px;
}
.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
   bottom: 0%;
    right: 70px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    bottom: 0%;
    right: 0px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }

}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}
 .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }

/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}



.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: #f0ebff;
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.blog-content-top {
      background: #fff;
    width: 92%;
    margin: auto;
    padding: 0 40px 15px 40px;
    position: relative;
    margin-top: -40px;
    border-radius: 10px;
}
.blog-athor {
        width: 52px;
    height: 52px;
    border: 1px solid var(--default-color);
    overflow: hidden;
    border-radius: 50%;
}
.profile-image-info {
    position: relative;
    top: -27px;
    height: 65px;
}
.profile-image-info p {
    font-size: 14px;
    font-weight: 300;
    margin-top: 6px;
}
p.mb-0.date-publish {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--default-color);
    padding: 10px;
    border-radius: 7px;
    text-align: center;
    color: #fff;
}
.comment-blogs {
    padding: 5px 30px;
}
a.btn-arrow {
    font-size: 28px;
}

/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(167, 136, 255, 0.9), rgba(69, 66, 255, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 1600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}



/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(249, 247, 255, 0.8), rgba(242, 242, 255, 0.8)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}

/*** copyright end ***/



/* ---------------------------About Us Page-------------------------------------- */
.banner-overlay.position-absolute {
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
.bg-breadcrumb .breadcrumb-item {
    color: hsl(213, 100%, 85%);
}

/* About Block */
.about-pg-box.get-one-box{
    max-width: 300px;
}
.about-pg-box.get-one-box .get-one-icon p.counter {
    font-size: 20px;
    color: #fff;
    margin: 0;
}
.about-pg-box.get-one-box:hover .get-one-icon p.counter {
    color: var(--default-color);
}
.about-pg-box.get-one-box:hover  .get-header{
    transform: translateY(0%);
      opacity: 1;
    visibility: visible;
}
.about-pg-box.get-one-box:hover  .get-header h6{
    color: #fff;
      
}



/*** Team Start ***/
.team-block{
        background: linear-gradient(270deg, rgb(250, 250, 255) 0%, rgb(237, 237, 255) 51%, rgb(235, 235, 255) 100%);
}
.team-img{
    transition: all 0.3s ease-in-out 0s;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}
.team-item-box:hover .team-img{
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}
.team-item-box::after{
    width: 100%;
    content: "";
    height: 100%;
    border: 1px solid var(--default-color);
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    transition: all 0.3s ease-in-out 0s;
}
.team-item-box:hover::after{
    width: 90%;
    margin-top: 5%;
    height: 90%;
    background-color: #1c013318;
}
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}
.team-item-box .team-content.text-center {
    background: #fff;
    padding: 25px 0;
    width: 99%;
    margin: auto;    
    position: relative;
    z-index: 10;
    bottom: 1px;
    transition: all 0.3s ease-in-out 0s;
    bottom: 1px;
}
.team-item-box:hover .team-content.text-center{
 bottom: 33px;
 width: 89%;
}
.team-item-box .team-icon {
    position: absolute;
    width: 170px;
    z-index: 0;
    bottom: 0;
    padding: 10px;
    border-radius: 6px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease-in-out 0s;
}

.team-item-box .team-icon a {
    background-color: var(--default-color);
    color: #fff;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 5px;
}
.team-item-box:hover .team-icon{
bottom: -20px;
}
/*** Team End ***/

/* Mission */
.vission-box .feature-content h3{
color: var(--default-color);
}
.vission-box .feature-icon{
    min-width: 100px;
    margin: 0 !important;
}

/* Profile Block */
.profile-user {
    border: 1px solid var(--default-color);
    padding: 15px;
    max-width: 290px;
    transition: all 0.3s ease-in-out 0s;
    margin: auto;
}
.profile-user h5 {
    color: var(--default-color);
    margin: 15px 0 0 0;
}
.profile-user:hover{
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}
/* Achievement block */
.achievement{
    background-image: linear-gradient(#f4f1ff, rgba(255, 255, 255, 0.774)), url(../img/achivment.jpg);
        background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


/* -----------------------Service Page------------------------------- */
.service-list-box {
    background: #f8f7ff;
    overflow: hidden;
}
.service-list-box .service-content{
    padding: 20px;
    position: relative;
    z-index: 10;
}
.service-list-box .service-content::after{
    width: 100%;
    height: 100%;
    background-color: var(--default-color);
    bottom: -100%;
    left: 0;
    content: "";
    position: absolute;
    transition: all 0.1s ease-in-out 0s;
    z-index: -1;
}
.service-list-box:hover .service-content::after{
bottom: 0;
}
.service-list-box .service-content h5{
    color: var(--default-color);
    font-size: 26px;
    margin: 15px 0 20px 0;
     transition: all 0.3s ease-in-out 0s;
}
.service-list-box:hover .service-content p{
 transition: all 0.3s ease-in-out 0s;    
}
.service-list-box:hover .service-content h5, .service-list-box:hover .service-content p{
    color: #fff;
}
.service-list-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 19%;
    height: 13%;
 background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400' preserveAspectRatio='none'> <path fill='%23fff' d='M0,0 C80,50 150,150 180,250 C220,400 450,350 600,380 L600,0 Z'/> </svg>") no-repeat center/cover;
}
.readmore .btn-theme {
    width: 46px;
    height: 46px;
    font-size: 22px;
     transition: all 0.3s ease-in-out 0s;    
}

.readmore {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 10;
}
.service-list-box:hover  .readmore .btn-theme{
    transform: rotate(-30deg);
}
.readmore .btn-theme:hover{
    background-color: var(--heading-color);
}
.service-list-box  .service-image img{
 transition: all 0.3s ease-in-out 0s;       
}
.service-list-box:hover  .service-image img{
    transform: scale(1.1);
}

/* Feature Block */
.feature-item:hover .feature-icon {
    color: #fff;
}

.feature .feature-item {
    position: relative;
    background: var(--background-color);
    transition: 0.5s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--default-color);
}

.feature .feature-item .feature-icon {
    display: flex;
    border-radius: 50%;
    transition: 0.5s;
    color: var(--background-color);
    background: var(--default-color);
    max-width: 84px;
    height: 84px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
    color: var(--default-color);
    background: var(--background-color);
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature-item  h5 {
    color: var(--default-color);
    position: relative;
    z-index: 2;
}
.feature-item:hover  h5 {
color: var(--background-color);
}

/* ----------------------------Blog Listing------------------ */
.blog-sidepanel {
    background: #faf9ff;
    padding: 15px;
    border: 1px solid #f0ebff;
}
input.search-field.form-control {
    border-color: var(--default-color);
    border-radius: 3px;
}
input.search-submit.form-control {
    position: absolute;
    width: 100px;
    background:var(--default-color);
    color: #fff;
    text-align: center;
    top: -1px;
    right: 0;
    border-radius: 0;
    border-width: 2px;
    border-color:var(--default-color);
}
.recent-post ul {
    margin: 20px 0 0 0;
    list-style: none;
    padding: 0px 2px 0 0;
}

.recent-post ul li a {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 1.4;
}
.recent-post ul li a:hover{
    color: var(--default-color);
}

.recent-post ul li {
    background: #fff;
    padding: 10px 10px 10px 30px;
    margin-bottom: 15px;
    position: relative;
}
.recent-post ul li::after{
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--default-color);
}

.list-theme-style li{
    padding-left: 40px;
    margin-bottom: 10px;
    color: #818181;
    position: relative;
}
.list-theme-style li::after{
    content: "";
        width: 8px;
    height: 8px;
    position: absolute;
    left: 20px;
    top: 6px;
    border-radius: 50%;
    background-color: var(--default-color);
}
.process-block{
    background-color: #f6f3ff;
}
.process-icon {
    background: var(--default-color);
    width: 92px;
    height: 92px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto 20px;
    border-radius: 1px 25px;
    transition: all 0.3s ease-in-out 0s;
  
}
.process-box:hover .process-icon{
     border-radius: 20px 5px;
}
span.process-no {
    position: absolute;
    background: #424242;
    width: 32px;
    height: 32px;
    line-height: 2;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    color: #fff;
}
.process-icon img {
    width: 52px;
        filter: brightness(0) invert(1);
}
.process-box h4{
    color: var(--default-color);
}
.duration-details{
    background-color: #eef5ff;
    border-left: 10px solid var(--default-color);
    padding: 25px 70px 25px 30px;
}
.faq-block{
   background: linear-gradient(rgba(0, 2, 97, 0.9), rgba(13, 3, 70, 0.9)), url(../img/therapy-11.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
}
#accordion-faq .accordion-button:not(.collapsed) {
    background-color: var(--default-color);
}
#accordion-faq .accordion-button:not(.collapsed) {
   color: #fff;
}
#accordion-faq .accordion-header button{
    font-size: 18px;
    font-family: var(--default-font);
    color: var(--default-color);
}
#accordion-faq .accordion-item:first-of-type>.accordion-header .accordion-button{
    border-radius: 0px  !important;
}
#accordion-faq .accordion-item:first-of-type, #accordion-faq .accordion-item:last-of-type {
      border-radius: 0px  !important;
      border: 0;
}
.contact-form{
    margin-top: 100px;
}
input.form-submit.form-control{
    background-color: var(--default-color);
    color: #fff;
}
.banner-top img{
    width: 100%;
}

/* Menu Icon */
#nav-icon2 {
  width: 40px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}



#nav-icon2 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 50%;
  background: var(--default-color);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon2 {
    top: -15px;
    display: none;
}
#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 12px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 24px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 0px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 0px;
  top: 22px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 22px;
}


/* -----service-slider dots---------- */

.service-slider .owl-dots, .feature-slider .owl-dots, .slider-achievement .owl-dots{
    text-align: center;
}
.service-slider .owl-dots .owl-dot span, .feature-slider .owl-dots .owl-dot span, .slider-achievement .owl-dots .owl-dot span{
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--default-color);
    margin: 0 5px;
    border-radius: 50%;
    opacity: 0.5;
}
.service-slider .owl-dots .owl-dot.active span, .feature-slider .owl-dots .owl-dot.active span, .slider-achievement .owl-dots .owl-dot.active span{
    opacity: 1;
}
.contact-icon-box{
    width: 72px;
    height: 72px;
    border-radius: 50%;
    min-width: 72px;
}