@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500&family=Marcellus&family=Mulish:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #fff;
    --secondary-color: rgb(86, 109, 122);
    --tertiary-color: #6ea6cf;
    --accent: #fcba63;
    --text-color: #7a7a7a;
    --button-color: #156c5f;
    --skysoft-pink: rgba(244, 132, 128, .90);
    --skysoft-blue: rgba(122, 177, 225, .90);
    --page-content-max-width: 1700px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #e8f0f7;
}

body {
    font-size: 16px;
    line-height: 23px;
    color: var(--text-color);
    font-weight: 400;
    font-family: 'Mulish', sans-serif;
    max-width: var(--page-content-max-width);
    margin: 0 auto;
    background: #e8f0f7;
}

/* generics start */
h1 {
    font-size: 66px;
    line-height: 73px;
    font-weight: 400;
    font-family: 'Marcellus', serif;
}

h2 {
    font-size: 42px;
    line-height: 56px;
    font-weight: 400;
    font-family: 'Marcellus', serif;
}

h3 {
    font-size: 30px;
    line-height: 44px;
    font-weight: 400;
    font-family: 'Marcellus', serif;
    color: var(--secondary-color);
}

h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Marcellus', serif;
    color: var(--secondary-color);
}

h5 {
    font-size: 18px;
    line-height: 22px;
    font-family: 'Marcellus', serif;
    color: var(--secondary-color);
}

.small-text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: var(--accent);
    display: block;
}

.generic-btn a {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    padding: 21px 25px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    background: var(--accent);
    color: var(--primary-color);
}

.padding-top {
    padding-top: 150px;
}

.padding-bottom {
    padding-bottom: 150px;
}

.light-bg {
    background: #fbf7f3;
}


.white-bg {
    background: #fff;
}

/* generics end */
/* header style */
.container-fluid {
    width: 100%;
    max-width: var(--page-content-max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 15.3%;
}

.header-main-con {
    background: #566d7a;
    background: linear-gradient(135deg, rgba(86, 109, 122, 0.95) 0%, rgba(95, 138, 163, 0.95) 50%, rgba(110, 166, 207, 0.95) 100%);
    --header-menu-font-size: 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    max-width: var(--page-content-max-width);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-main-con .navbar-brand {
    transition: all 0.3s ease;
}

.header-main-con .navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    padding: 12px 0;
    overflow: hidden;
    top: 25px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.header-main-con .navbar-light .navbar-nav .nav-item.active,
.header-main-con .navbar-light .navbar-nav .active>.nav-link {
    color: var(--accent);
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    padding: 12px 20px;
    color: var(--secondary-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
    color: var(--accent) !important;
    background: #f8f9fa;
    padding-left: 25px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover::before {
    width: 100%;
}

.header-main-con .navbar-light .navbar-nav .nav-link {
    color: var(--primary-color);
    font-size: var(--header-menu-font-size);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.header-main-con .navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.header-main-con .navbar-light .navbar-nav .nav-link:hover {
    color: var(--accent);
}

.header-main-con .navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.header-main-con .navbar-light .navbar-nav .home-link-btn {
    padding: 7px 14px;
    border-radius: 6px;
    background: var(--accent);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.header-main-con .navbar-light .navbar-nav .home-link-btn::after {
    display: none;
}

.header-main-con .navbar-light .navbar-nav .home-link-btn:hover {
    color: var(--primary-color);
    filter: brightness(0.95);
}

.header-main-con .navbar-light .navbar-nav .home-link-btn i,
.header-main-con .navbar-light .navbar-nav .home-link-btn span {
    color: inherit;
}

.header-main-con .dropdown-item.active,
.header-main-con .dropdown-item:active {
    color: var(--primary-color) !important;
    text-decoration: none;
    background-color: var(--accent);
    border-radius: 6px;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--accent);
}

.header-main-con .navbar-nav {
    gap: 12px;
    margin-right: 16px;
}

.header-main-con .navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.header-main-con .navbar-nav .nav-item:nth-child(1),
.header-main-con .navbar-nav .nav-item:nth-child(2),
.header-main-con .navbar-nav .nav-item:nth-child(3),
.header-main-con .navbar-nav .nav-item:nth-child(4) {
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.header-main-con .navbar-nav .nav-item:last-child {
    gap: 0;
    margin-right: 0;
}

.header-main-con .navbar-light .navbar-nav .nav-item.dropdown>.nav-link::after {
    display: none;
}

.header-main-con .navbar-light .navbar-nav .nav-item.dropdown>.nav-link:hover {
    color: var(--accent);
}

.header-main-con .phone-txt span {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.header-main-con .phone figure {
    margin-right: 7px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--accent);
    transition: all 0.3s ease;
}

.header-main-con .phone:hover .phone figure {
    transform: scale(1.1);
}

.cart-box {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.cart-box a {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.cart-box a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-box a:first-child {
    margin-right: 23px;
}

.header-main-con .phone-txt a {
    font-size: var(--header-menu-font-size);
    font-weight: 800;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.header-main-con .phone-txt a:hover {
    color: var(--accent);
}

.header-contact .phone {
    padding-left: 23px;
    margin-right: 15px;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header-main-con .header-contact {
    padding: 0 18px;
    margin-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header-main-con .header-contact .phone-txt a {
    font-size: var(--header-menu-font-size);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-book-btn {
    margin-left: 14px;
}

.header-book-btn a {
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--accent);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-book-btn a:hover {
    color: var(--primary-color);
    filter: brightness(0.95);
}

.cart-box a i {
    color: var(--primary-color);
    font-size: 22px;
}

.navbar-collapse {
    margin-right: 10px;
}

.languages {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.languages .lang-globe {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 16px;
}

.languages a {
    color: var(--primary-color);
    font-size: var(--header-menu-font-size);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0 4px;
}

.languages a:hover {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* header style */
/* banner style */
.banner-main-section {
    background: url(../images/header.png) no-repeat top;
    height: 1050px;
    position: relative;
    background-size: cover;
    overflow: hidden;
}

.banner-main-section::after {
    content: "";
    background: rgba(110, 166, 207, .90);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner-txt-section span,
.banner-txt-section h1,
.banner-txt-section p {
    color: var(--primary-color);
}

.banner-btns a {
    transition: .4s ease-in-out;
}

.banner-btns.generic-btn a:last-child {
    margin-left: 10px;
    padding: 21px 43px;
    color: var(--secondary-color);
    background: var(--primary-color);
}

.banner-btns.generic-btn a:first-child:hover {
    color: var(--primary-color);
    background: var(--button-color);
}

.banner-btns.generic-btn a:last-child:hover {
    color: var(--primary-color);
    background: var(--accent);
}

.banner-inner-con {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 50% 46%;
    gap: 40px;
    align-items: center;
}

.banner-images-con {
    position: relative;
}

.banner-images-con figure {
    border-radius: 38px;
    overflow: hidden;
    width: fit-content;
    position: absolute;
}

.banner-images-con figure:first-child img {
    width: 467px;
    height: 467px;
    object-fit: cover;
}

.banner-images-con figure:nth-child(2) img {
    width: 348px;
    height: 348px;
    object-fit: cover;
}

.banner-images-con figure:last-child img {
    width: auto;
    height: auto;
    max-width: 400px;
    max-height: 500px;
    object-fit: contain;
}

.banner-images-con figure:first-child {
    top: 50%;
    right: 132px;
    transform: translateY(-51%);
}

.banner-images-con figure:nth-child(2) {
    right: -251px;
    top: -410px;
}

.banner-images-con figure:last-child {
    top: -33px;
    right: -313px;
    overflow: visible;
}

.banner-images-con::before {
    content: "";
    width: 88px;
    height: 84px;
    border-radius: 15px;
    background: var(--skysoft-blue);
    position: absolute;
    right: 132px;
    bottom: 262px;
}

.banner-images-con::after {
    content: "";
    width: 88px;
    height: 84px;
    border-radius: 15px;
    background: var(--skysoft-pink);
    position: absolute;
    right: 512px;
    bottom: -339px;
}

/* Keep hero visuals fixed once viewport is wider than desktop breakpoints. */
@media only screen and (min-width: 1801px) {
    .banner-images-con figure:first-child img {
        width: 367px;
        height: 367px;
    }

    .banner-images-con figure:nth-child(2) img {
        width: 268px;
        height: 268px;
    }

    .banner-images-con figure:last-child img {
        width: 298px;
        height: 298px;
        max-width: none;
        max-height: none;
    }

    .banner-images-con figure:first-child {
        right: 67px;
    }

    .banner-images-con figure:nth-child(2) {
        right: -221px;
        top: -320px;
    }

    .banner-images-con figure:last-child {
        top: -32px;
        right: -250px;
    }

    .banner-images-con::before {
        right: 67px;
        bottom: 207px;
    }

    .banner-images-con::after {
        right: 347px;
        bottom: -283px;
    }
}

.banner-txt-section span::before {
    content: "";
    width: 53px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banner-txt-section span {
    padding-left: 65px;
    display: block;
    margin-bottom: 12px;
}

.banner-txt-section p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 33px;
}

.banner-txt-section h1 {
    margin-bottom: 10px;
}

.social-links {
    z-index: 3;
    position: absolute;
    left: 68px;
    top: 50%;
    transform: translateY(-46%);
}

.social-links ul li {
    margin-bottom: 15px;
}

.social-links ul li a {
    color: var(--primary-color);
    width: 46px;
    height: 46px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--skysoft-pink);
    transition: .4s ease-in-out;
}

.social-links ul li a:hover {
    transform: translateY(-6px);
    background: var(--accent);
}

/* banner style */
/* service section style */


.service-slider .type-img figure img {
    width: auto;
}

.generic-title {
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.generic-title .small-text {
    margin-bottom: 7px;
}


.service-slider .owl-nav .owl-prev span,
.service-slider .owl-nav .owl-next span,
.service-slider .owl-dots {
    display: none;
}

.service-slider .owl-nav .owl-prev,
.service-slider .owl-nav .owl-next {
    width: 19px;
    height: 34px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
}

.service-slider .owl-nav .owl-prev:hover,
.service-slider .owl-nav .owl-next:hover {
    opacity: 1;
}

.service-slider .owl-nav .owl-prev {
    background: url(../images/slider-left-img.png) no-repeat !important;
    left: -70px;
}

.service-slider .owl-nav .owl-next {
    background: url(../images/slider-right-img.png) no-repeat !important;
    right: -70px;
}

.service-slider .owl-nav .owl-prev:focus,
.service-slider .owl-nav .owl-next:focus {
    outline: none;
}

/* service section style */
/* about section style */

.about-btns {
    margin-bottom: 20px;
}

.about-btns.generic-btn a:last-child {
    color: var(--secondary-color);
    background: var(--primary-color);
}

.about-inner-con {
    display: grid;
    gap: 62px;
    grid-template-columns: 42.1% 43%;
    align-items: center;
}

.about-txt-con {
    margin-top: -10px;
}

.about-txt-con ul {
    display: grid;
    gap: 10px;
    grid-template-columns: 48% 48%;
    margin-bottom: 37px;
}

.about-txt-con ul li {
    position: relative;
    padding-left: 30px;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-txt-con ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-weight: 900;
    left: 0;
    top: 0;
    color: var(--accent);
}

.kenji-feature-item-title {
    position: relative;
    padding-left: 30px;
}

.kenji-feature-item-title::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.about-txt-con .generic-title {
    margin-bottom: 14px;
}

.about-video-box {
    position: relative;
    bottom: 171px;
    left: -69px;
    display: inline-block;
}

.about-video-box.kenji-features-video {
    position: static;
    bottom: auto;
    left: auto;
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.about-video-box>figure {
    width: 300px;
    border-radius: 20px;
    border: 10px solid var(--tertiary-color);
}

.about-video-box>figure img {
    width: 100%;
    border-radius: 8px;
}

.about-txt-con p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
}

.about-custom-video-box {
    position: relative;
    margin-top: 20px;
    display: inline-flex;
}

.about-custom-video-box>figure {
    width: 300px;
    border-radius: 20px;
    border: 10px solid var(--secondary-color);
}

.about-custom-video-box>figure img {
    width: 100%;
    border-radius: 8px;
}

/* about section style */
/* about video section */
#fade1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .80;
    z-index: 1001;
    display: none;
    position: fixed;
    filter: alpha(opacity=80);
    background-color: black;
}

#fade2 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .80;
    z-index: 1001;
    display: none;
    position: fixed;
    filter: alpha(opacity=80);
    background-color: black;
}

#light video,
#light2 video {
    width: 100%;
}

#light2,
#light {
    top: 50%;
    left: 50%;
    display: none;
    z-index: 1002;
    position: fixed;
    margin-top: 0;
    transform: translate(-50%, -50%);
}

#light {
    width: 30%;
}

#light2 {
    width: 30%;
}

/* Kenji Page Video Lightbox */
#light-kenji {
    top: 50%;
    left: 50%;
    display: none;
    z-index: 1002;
    position: fixed;
    transform: translate(-50%, -50%);
    width: 50%;
}

#light-kenji video {
    width: 100%;
    height: 500px;
}

#fade-kenji {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .80;
    z-index: 1001;
    display: none;
    position: fixed;
    filter: alpha(opacity=80);
    background-color: black;
}

#boxclose,
#boxclose2 {
    top: -10px;
    width: 40px;
    right: -10px;
    height: 40px;
    padding: 7px 10px 10px;
    display: flex;
    align-items: center;
    z-index: 1002;
    cursor: pointer;
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    position: absolute;
    border-radius: 50%;
    justify-content: center;
    color: var(--white-color);
    background: var(--accent);
}

.boxclose:before {
    content: "x";
    color: var(--primary-color);
    font-size: 22px;
}

#fade1:hover~#boxclose,
#fade2:hover~#boxclose2 {
    display: none;
}

.test:hover~.test2 {
    display: none;
}

.about-video-box .btn-outer {
    position: absolute;
    top: 40%;
    left: -60px;
    transform: translateY(-50%);
}

.about-video-box .btn-outer-kenji {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}


.about-video-box .btn-outer a,.about-video-box .btn-outer-kenji a {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 100%;
    border: 8px solid var(--tertiary-color);
}
.about-custom-video-box .btn-outer {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.about-custom-video-box .btn-outer a {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 100%;
    border: 8px solid var(--secondary-color);
}

/* about video section */
/* contact section style */

.contact-form {
    width: 516px;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.contact-form span {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 13px;
}

.contact-form p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 33px;
}

.contact-form span,
.contact-form h2,
.contact-form p,
.form-box ul li input::placeholder {
    color: var(--primary-color);
}

.contact-form ul li span {
    font-size: 14px;
    margin: 8px 0 0;
    display: inline-block;
}















/* project section style */

















/* project section style end */
/* counter section style start */








/* counter section style end */
/* process section style start */
.process-inner-con {
    display: grid;
    gap: 64px;
    grid-template-columns: 51.5% 44%;
}

.process-left-sec figure {
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
}

.process-left-sec figure img {
    display: block;
    width: 100%;
    height: auto;
}

.process-right-sec ul li figure {
    margin-bottom: 0;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--primary-color);
    border: 1px dashed var(--accent);
    position: relative;
    z-index: 2;
}

.process-text-con {
    display: table-cell;
}

.process-text-con p {
    margin-bottom: 0;
}

.process-right-sec ul li {
    margin-bottom: 47px;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-right: 20px;
}

.process-right-sec ul li:last-child {
    margin-bottom: 42px;
}

.process-img-sec {
    float: left;
    position: relative;
}

.process-img-sec::after {
    content: "";
    width: 1px;
    height: 100%;
    border-right: 1px dashed var(--accent);
    position: absolute;
    left: 50%;
    top: 100%;
}

.process-right-sec ul li:last-child .process-img-sec::after {
    display: none;
}

.process-right-sec .generic-btn a {
    transition: .4s ease-in-out;
    background: var(--accent);
    color: var(--primary-color);
}

.process-right-sec .generic-btn a:hover {
    transform: translateY(-8px);

    background: var(--accent);
    color: var(--primary-color);
}

.process-right-sec .generic-btn {
    margin-left: 10px;
}

.process-right-sec .generic-title {
    margin-top: -10px;
    margin-bottom: 35px;
}

/* process section style end */
/* partner logo section style start */
.partner-logos-main-sec .carousel-item figure img {
    width: 100%;
}

.partner-logos-main-sec .carousel-item p {
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 33px;
    font-weight: 400;
    font-family: 'Marcellus', serif;
    margin-bottom: 0;
}

.partner-img-details figure {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
    display: inline-flex;
    min-height: 175px;

    img {
        margin: auto;
    }
}

.partner-img-details {
    overflow: hidden;
    margin-bottom: 23px;
    display: inline-block;
}

.partner-imgs {
    padding: 13px 13px 30px;
    border-radius: 15px;
    background: var(--primary-color);
}

.partner-imgs>figure {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 57px;
    transition: .4s ease-in-out;
}

.partner-imgs:hover>figure {
    transform: translateY(8px);
}

.partner-imgs>figure img {
    height: 196px;
    object-fit: cover;
}

.partner-imgs h4 {
    margin-bottom: 5px;
}

.partner-imgs a,
.partner-imgs a i {
    color: var(--button-color);
    font-weight: 700;
    font-size: 14px;
}

.partner-imgs a:hover,
.partner-imgs a:hover i {
    color: var(--accent);
}

/* partner logo section style end */
/* product section style */














/* about section style */
/* team section style start */
.team-inner-section {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 30px;
}

.member-img-details figure {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
    display: inline-block;
}

.member-detail-box {
    padding: 53px 22px 57px;
    border-radius: 10px;
    background: var(--primary-color);
    width: 88%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: -350px;
    transform: translateX(-50%);
    transition: .4s ease-in-out;
}

.member-detail-box ul li i {
    transition: .4s ease-in-out;
    color: var(--text-color);
}

.member-detail-box ul li a:hover i {
    color: var(--accent);
}

.member-detail-box ul li {
    margin: 0 7px;
}

.member-detail-box .generic-btn a {
    font-size: 14px;
    line-height: 28px;
    padding: 8px 19px;
    transition: .4s ease-in-out;
}

.member-detail-box .generic-btn a:hover {
    background: var(--button-color);
}

.member-img-details {
    overflow: hidden;
    margin-bottom: 23px;
    display: inline-block;
}

.member-img-details:hover .member-detail-box {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.member-con span {
    font-size: 14px;
}

.member-con h4 {
    margin-bottom: 2px;
}

.member-detail-box ul {
    margin-bottom: 10px;
}

/* team section style end */
/* testimonial style start */
.testimonial-main-sec .carousel-item figure img {
    width: 100%;
}

.testimonial-main-sec .carousel-item p {
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 33px;
    font-weight: 400;
    font-family: 'Marcellus', serif;
    margin-bottom: 0;
}

.testimonial-inner-sec {
    width: 1060px;
    margin: 0 auto;
}

.testimonial-inner-sec .carousel-item {
    padding: 40px 40px;
}

.testimonial-inner-sec .review-details-box {
    padding: 50px 60px;
    box-shadow: 6px 6px 83px 20px rgb(0 0 0 / 2%);
    min-height: 244px;
}

.testimonial-inner-sec .carousel-control-next {
    background-image: url(../images/slider-right-img.png);
    right: -25px;
}

.testimonial-inner-sec .carousel-control-prev {
    background-image: url(../images/slider-left-img.png);
    left: -25px;
}

.testimonial-inner-sec .carousel-control-next,
.testimonial-inner-sec .carousel-control-prev {
    width: 19px;
    height: 34px;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
}

.testimonial-inner-sec .carousel-inner {
    padding-bottom: 180px;
}

.testimonial-inner-sec .carousel-indicators li {
    width: 55px;
    height: 55px;
    /* border-radius: 100%; */
    transition: .4s ease-in-out;
    opacity: .6;
    margin: 0 4px;
    position: relative;
}

.testimonial-inner-sec .carousel-indicators li.active {
    opacity: 1;
    scale: 1.5;
    margin: 0 20px;
    background-size: cover;
}

.testimonial-inner-sec .carousel-indicators li:first-child {
    background: url(../images/logos/insel-small.png) no-repeat;
}

.testimonial-inner-sec .carousel-indicators li:nth-child(2) {
    background: url(../images/logos/bfh-small.png) no-repeat;
}

.testimonial-inner-sec .carousel-indicators li:nth-child(3) {
    background: url(../images/logos/usb-small.png) no-repeat;
}

.testimonial-inner-sec .carousel-indicators li:nth-child(4) {
    background: url(../images/logos/insel-small.png) no-repeat;
}

.testimonial-inner-sec .carousel-indicators {
    bottom: 93px;
}

.customer-status {
    position: absolute;
    left: 51%;
    transform: translateX(-50%);
    bottom: -153px;
}

.review-details-box figure {
    margin-bottom: 22px;
}

/* carousel fade css */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}


/* testimonial style end */
/* blog section style start */






















/* blog section style end */
/* footer section style start */
.footer-main-section {
    /*      background: var(--tertiary-color); 
    border-bottom: 1px solid var(--button-color); */
    background: #566d7a;
    background: linear-gradient(135deg, rgba(86, 109, 122, 0.95) 0%, rgba(95, 138, 163, 0.95) 50%, rgba(110, 166, 207, 0.95) 100%);

}

.footer-logo-con .social-links ul li {
    margin: 0 4px;
}

.footer-logo-con .social-links ul li:first-child {
    margin-left: 0;
}

.footer-logo-con .social-links ul li:last-child {
    margin-right: 0;
}

.footer-logo-con .social-links {
    position: unset;
    transform: unset;
}

.footer-logo-con .social-links ul li a {
    background: var(--skysoft-pink);
    transition: .3s ease-in-out;
}

.footer-logo-con .social-links ul li a:hover {
    background: var(--accent);
}

.footer-main-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.footer-boxes {
    color: var(--primary-color);
    padding-right: 45px;
}

.footer-main-section::after {
    content: "";
    background: url(../images/footer-shape-img.png) no-repeat center;
    margin-top: 30px;
    width: 301px;
    height: 285px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-text-boxes ul li a,
.footer-logo-con p,
.footer-text-boxes ul li a i {
    font-size: 14px;
    line-height: 25px;
}

.footer-text-boxes ul li a,
.footer-text-boxes h4,
.footer-text-boxes ul li a i,
.footer-text-boxes ul li {
    color: var(--primary-color);
}

.footer-inner-sec {
    display: grid;
    gap: 30px;
    /* grid-template-columns: 29% 13.3% 18.6% 20%; */
    grid-template-columns: 50% 50%;
    justify-content: center;
}

.footer-text-boxes ul li a:hover {
    color: var(--accent);
}

.footer-logo-con figure {
    margin-bottom: 20px;

    img {
        width: 50%;
        height: auto;
    }
}

.footer-logo-con p {
    margin-bottom: 22px;
}

.footer-text-boxes ul li {
    padding-left: 20px;
    margin-bottom: 7px;
}

.footer-text-boxes ul li i {
    position: absolute;
    left: 0;
}

.footer-text-boxes {
    padding-left: 22px;
    margin-top: -4px;
}

.footer-text-boxes h4 {
    margin-bottom: 12px;
}

.footer-text-boxes:last-child ul li {
    padding-left: 26px;
}

.footer-text-boxes:last-child ul li {
    padding-left: 27px;
    margin-bottom: 13px;
    font-size: 14px;
}

.footer-text-boxes:last-child ul li:last-child i {
    top: 6px;
}

.footer-text-boxes:last-child h4 {
    margin-bottom: 14px;
}

.footer-text-boxes:last-child ul li:last-child br {
    display: none;
}

.copy-right-sec {
    padding: 25px 25px;
    /*     background: var(--tertiary-color); */
    background: #566d7a;
}

.copy-right-sec p {
    font-size: 12px;
    color: var(--primary-color);
}

/* footer section style end */
/* index02 styling start */









/* index2 banner style start */














/* index2 banner style end */
/* index2 service section style start */















/* index2 service section style end */
/* index2 about section style start */











/* index2 about section style end */
/* index2 contact section style start */




/* index2 contact section style end */
/* before after section style start */






/* before after section style end */
/* dentist section style start */



















/* dentist section style end */
/* inquiry section style start */





















/* inquiry section style end */
/* patient reviews style start */

















/* patient reviews style end */
/* index2 blog section style start */












/* index2 blog section style end */
/* index2 map section start */
.index2-map-section iframe,
.index2-map-section video {
    width: 100%;
}

/* index2 map section end */
/* index2 footer section start */


/* index2 footer section end */
/* index02 styling end */
/* index3 page styling start */
/* index3 header styling start */

/* index3 header styling end */
/* index3 banner sttyling start */

















/* index3 banner styling end */
/* index3 service styling start */









/* index3 service styling end */
/* index3 about styling start */








/* index3 about styling end */
/* index3 doctors team styling start */














/* index3 doctors team styling end */
/* index3 contact section styloing start */



















/* index3 contact section styloing end */
/* index3 testimonial section start */
















/* index3 testimonial section end */
/* index3 plan section style start */
.plans-inner-con .generic-btn a {
    padding: 18px 40px 17px 41px;
    transition: .3s ease-in-out;
}

.plans-inner-con .generic-btn a:hover {
    background: var(--button-color);
}


.plan-box {
    border-radius: 15px;
    padding: 54px 43px 59px 40px;
    box-shadow: 6px 6px 83px 20px rgb(0 0 0 / 3%);
    border: 1px solid var(--primary-color);
}

.plan-box:hover {
    cursor: pointer;
    border-color: var(--button-color);
}

.plan-box h4 {
    margin-bottom: 6px;
}

.plan-box .price {
    font-size: 42px;
    line-height: 56px;
    color: var(--secondary-color);
    font-weight: 400;
    font-family: 'Marcellus', serif;
    display: flex;
    gap: 8px;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 38px;
    border-bottom: 1px solid #e0e0e0;
}

.plan-box .price span {
    font-size: 16px;
    line-height: 47px;
    color: var(--accent);
    font-weight: 400;
    font-family: 'Marcellus', serif;
}

.plan-box p {
    margin-bottom: 23px;
}

.plan-box ul {
    margin-bottom: 38px;
}

.plan-box ul li {
    padding-left: 31px;
    color: var(--secondary-color);
    margin-bottom: 11px;
}

.plan-box ul li:last-child {
    margin-bottom: 0;
}

.plan-box ul li i {
    position: absolute;
    left: 1px;
    top: 2px;
    font-size: 18px;
    color: var(--button-color);
}

.plans-inner-con {
    display: grid;
    gap: 29px;
    grid-template-columns: 50% 50%;
    width: fit-content;
    margin: 0 auto;
}

/* index3 plan section style end */
/* index3 plan section style start */










/* index3 plan section style end */
/* index3 blog section style start */









/* index3 blog section style end */
/* index3 page styling end */
/* about us page styling start */
/* about us banner styling */
.sub-banner-section {
    background: url(../images/about-banner-img.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 640px;
}

.sub-banner-inner-con {
    margin-top: 15px;
}

.sub-banner-inner-con h1,
.sub-banner-inner-con p {
    color: var(--primary-color);
}

.sub-banner-inner-con h1 {
    margin-bottom: 17px;
}

.sub-banner-inner-con p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 33px;
}

.sub-banner-inner-con .breadcrumb a {
    color: var(--primary-color);
    font-size: 16px;
}

.sub-banner-inner-con .breadcrumb a:hover {
    color: var(--accent);
}


.sub-banner-inner-con .breadcrumb {
    font-size: 16px;
    background: transparent;
    border: 1px solid rgb(255, 255, 255, 30%);
    padding: 14px 29px 14px 28px;
}

/* about us banner styling */
/* about sec styling start */
.about-us-about .about-inner-con {
    gap: 65px;
    grid-template-columns: 45.6% 45%;
}

.about-us-about .about-img-con figure {
    width: 507px;
    height: 555px;
    overflow: hidden;
    border-radius: 25px;
}

img.about-us-about-img {
    width: 100%;
}

.about-special-txt h4 {
    font-style: italic;
    margin-bottom: 0;
    color: var(--primary-color);
}

.about-special-txt {
    position: absolute;
    left: -85px;
    bottom: 70px;
    width: 291px;
    color: var(--primary-color);
    background-color: var(--skysoft-pink);
    padding: 29px 25px 28px 30px;
    border-radius: 25px;
}

.about-special-txt figure {
    margin-bottom: 11px;
}

.about-us-about .about-txt-con .generic-btn a {
    padding: 21px 40px;
}

.about-us-about .about-txt-con p {
    margin-bottom: 10px;
}

.about-us-about .about-txt-con ul {
    margin-top: 25px;
    gap: 10px 0;
}

/* about sec styling end */
/* about us page contact section style start */




/* about us page contact section style end */
/* about us page styling end */
/* service page styling start */
.service-banner {
    background: url(../images/service-banner-img.jpg) no-repeat center;
    background-size: cover;
    height: 640px;
}

/* service page styling end */
/* project page styling start */





/* project page styling end */
/* contact page styling start */


























/* contact page styling end */
/* faq page styling start */





/* faq page styling end */
/* 404 page styling start */
.not-found-con h2 {
    font-size: 110px;
    line-height: 110px;
    color: var(--secondary-color);
}

.not-found-con span {
    font-size: 18px;
    line-height: 28px;
    color: var(--accent);
    margin-bottom: 10px;
}

.not-found-con p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
}

.not-found-con .submit-btn a {
    font-size: 16px;
    padding: 18px 20px;
    display: inline-block;
    color: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    background: var(--accent);
    transition: .3s ease-in-out;
}

.not-found-con .submit-btn a:hover {
    background: var(--button-color);
}

/* 404 page styling end */
/* Preloader -------------------------------------------------------*/
/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/
/* bottom to top button */
#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover {
    cursor: pointer;
}

#button {
    display: inline-block;
    background-color: var(--skysoft-pink);
    width: 82px;
    height: 82px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 57px;
    right: 113px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 26px;
    line-height: 50px;
    color: #fff;
    font-weight: 600;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(238, 137, 97, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(238, 137, 97, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(238, 137, 97, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(238, 137, 97, .01)
    }
}

/* bottom to top button */
/* top to bottom btn */





@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/* top to bottom btn */