@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-white-100: #fff;
    --color-white-200: #f2f2f2;
    --color-white-300: #d9d9d9;
    --color-white-400: #bfbfbf;
    --color-white-500: #a6a6a6;
    --color-white-600: #8c8c8c;
    --color-black-100: #191f24;
    --color-black-200: #151a1e;
    --color-black-300: #111418;
    --color-black-400: #0d0f12;
    --color-black-500: #090a0c;
    --color-black-600: #040506;
    --color-blue-100: #3792fb;
    --color-blue-200: #2081f8;
    --color-blue-300: #0b64f4;
    --color-blue-400: #1450d2;
    --color-blue-500: #1842b4;
    --color-blue-600: #1a3799;
    --text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
    --text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
    --text-base: clamp(1.05rem, calc(0.15vw + 0.8rem), .9rem);
    --text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
    --text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --main-color: #3064cd;
    --sec-color: #50cd27;
    --gradient: linear-gradient(89.97deg, #3064CD -25.24%, #002369 47.52%, #3064CD 138.11%)
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    font-style: normal;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Inter", sans-serif;
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
}



main,
section {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    color: inherit;
    background: none;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.15;
    text-wrap: balance;
    word-wrap: break-word;
}



p,
li {
    text-wrap: pretty;
    line-height: inherit;
    word-wrap: break-word;
}

img,
svg,
picture,
video {
    font-style: italic;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    shape-margin: 1rem;
    vertical-align: middle;
}

img,
svg {
    background-size: cover;
    background-repeat: no-repeat;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.section {
    margin-inline: auto;
    margin-block: 5rem 2rem;
}

.container {
    max-width: 80rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-tiny {
    font-size: var(--text-tiny);
}

.text-small {
    font-size: var(--text-small);
}

.text-base {
    font-size: var(--text-base);
    white-space: normal;
}

.text-medium {
    font-size: var(--text-medium);
}

.text-large {
    font-size: var(--text-large);
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semi {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.btn {
    display: inline-flex;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    align-items: center;
    justify-content: center;
    vertical-align: baseline;
    column-gap: 0.25rem;
    white-space: nowrap;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.25s ease;
}

.btn-default {
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}

.btn-darken {
    color: var(--color-white-100);
    background-color: var(--color-black-500);
    box-shadow: var(--shadow-medium);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: auto;
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-blue-300);
    width: 250px;

    img {
        width: 100%;
        height: auto;
    }
}

.navbar {
    width: 100%;
    height: 4.25rem;
    margin-inline: auto;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    height: 100%;
}

.navbar-block {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    background-color: var(--color-white-100);
    transition: opacity 0.4s ease;
}

.navbar-block.is-active {
    opacity: 1;
    pointer-events: initial;
}

@media screen and (min-width: 62rem) {
    .navbar {
        display: flex;
        justify-content: space-between;
    }

    .navbar-block {
        position: initial;
        height: initial;
        opacity: 1;
        overflow: auto;
        pointer-events: visible;
        background: none;
        transition: none;
    }
}

.menu {
    padding-block: 1rem;
    padding-inline: auto;
    align-items: center;

    .blue_btn {
        min-width: 190px;
        font-weight: 500;
        background-color: var(--sec-color);

        &:hover {
            background-color: var(--main-color);
        }
    }
}

.top-head {
    background-image: var(--gradient);
    color: #fff;
    padding: 5px 0;

    a {
        font-size: 14px;
    }

    i {
        font-size: 16px;
    }
}

.menu-link {
    font-size: var(--text-base);
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    color: var(--main-color);
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--sec-color);
}

@media screen and (min-width: 62rem) {
    .menu {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        column-gap: 1rem;
        height: 100%;
        padding: unset;
    }

    .menu-item {
        display: flex;
        cursor: pointer;
        padding-inline: 0.5rem;
    }

    .menu-link {
        padding: unset;
    }
}

.dropdown-toggle {
    cursor: pointer;
    outline: none;
    user-select: none;
}

.dropdown-toggle i.bx {
    font-size: 1.5rem;
    line-height: inherit;
    transition: rotate 0.4s ease;
}

.dropdown-content {
    height: 0;
    overflow: hidden;
    background-color: var(--color-white-100);
    transition: height 0.5s ease;
}

.dropdown-column,
.dropdown-group,
.dropdown-items {
    display: grid;
}

.dropdown-group {
    padding-bottom: 1rem;
    padding-inline: 1.5rem;
}

.dropdown-title {
    display: flex;
    column-gap: 1rem;
    align-items: center;
    padding-inline: 1rem;
}

.dropdown-icon i.bx {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--main-color);
}

.dropdown-items {
    row-gap: 0.5rem;
    padding-inline: 3.5rem;
    padding-top: 0.35rem;
}

.dropdown-link {
    font-size: var(--text-base);
    font-weight: 400;
    line-height: inherit;
    color: var(--color-black-500);
    transition: color 0.3s ease;
}

.dropdown-show>.dropdown-toggle i.bx {
    rotate: 180deg;
}

.dropdown-block {
    display: flex;
    align-items: flex-start;
    column-gap: 1rem;
    padding-top: 1rem;
    padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
    .dropdown-toggle {
        column-gap: 0.35rem;
        pointer-events: none;
    }

    .dropdown-content {
        position: absolute;
        left: 0;
        right: 0;
        top: 6rem;
        opacity: 0;
        height: max-content;
        pointer-events: none;
        background-color: var(--color-white-100);
        border-top: 2px solid var(--color-white-200);
        box-shadow: var(--shadow-large);
        transition: top 0.4s, opacity 0.3s ease;
    }

    .dropdown-column {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 0;
        max-width: 75rem;
        margin-inline: auto;
    }

    .dropdown-group {
        align-content: baseline;
        row-gap: 1.25rem;
        padding-block: 2.5rem;
    }

    .dropdown-group:first-child,
    .dropdown-group:last-child {
        margin: unset;
    }

    .dropdown-items {
        padding-top: unset;
    }

    .dropdown-block {
        padding-top: unset;
        padding-inline: unset;
    }

    .dropdown:hover>.dropdown-content {
        cursor: initial;
        top: 5.6rem;
        opacity: 1;
        pointer-events: initial;
    }

    .dropdown:hover>.dropdown-toggle i.bx {
        rotate: 180deg;
    }
}

.mt-5 {
    margin-top: 120px;
}

.more-data.mt-5 {
    background-color: #fff;

    .light {
        &:hover {
            background-color: var(--main-color);
            color: #fff;
        }
    }
}

.more-data.mt-5 .light:hover img {
    filter: invert(100%) brightness(200%);
}

.more-data .visible {
    display: none;
}

.card:hover .visible {
    display: block;
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    width: 1.5rem;
    height: 1rem;
    border: none;
    outline: none;
    visibility: visible;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.15px;
    opacity: 1;
    rotate: 0deg;
    border-radius: 0.15rem;
    background-color: var(--color-black-500);
    transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger.is-active>.burger-line:nth-child(1) {
    top: 0.5rem;
    rotate: 135deg;
}

.burger.is-active>.burger-line:nth-child(2) {
    opacity: 0;
}

.burger.is-active>.burger-line:nth-child(3) {
    top: 0.5rem;
    rotate: -135deg;
}

.dropdown-block {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s
}

.dropdown-block:hover {
    box-shadow: var(--shadow-large);
}

.dropdown-column.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dropdown-items li:hover a {
    opacity: .6;
}

footer {
    background-color: #F5F5F5;
    padding: 1rem;
    font-size: var(--text-small);
    color: var(--color-black-100);

    .dropdown-items {
        text-align: left;
        padding-inline: 0rem;

        li a {
            color: var(--color-black-100);
        }
    }

    a {
        color: var(--color-black-100);
        font-weight: 500;
    }

    .dropdown-title {
        padding-inline: 0rem;
        color: var(--main-color);
    }


}



.icon {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
}

.call-to-action {
    background: var(--gradient);
    padding: 3rem 0;
    color: var(--color-white-100);
    text-align: center;

    h2 {
        font-size: 30px;
        font-weight: 600;
        margin: 10px 0;
    }

    p {
        width: 70%;
        margin: auto;
        font-size: var(--text-small);
    }

    .blue_btn {
        background-color: var(--sec-color);
        margin-top: 20px;
    }
}

@media screen and (min-width: 62rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}

/* video_wrap */

.video_wrap {
    width: 100%;
    /* height: 102vh; */
    height: 100%;
}

.service_page .gap {
    align-items: center;
}

.dropdown-icon {
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    background-color: var(--color-blue-300);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;

    img {
        width: 60%;
        height: 100%;
        object-fit: cover;
    }
}

.video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
}

.video_wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.inner_container {
    max-width: 65rem;
}

.content_hero h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 500;
}

.btn_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}



.hero {
    position: relative;
    margin-top: 100px;
}

.btn_grid .btn a {
    display: flex;
    justify-content: start;
    align-items: center;
    grid-area: 10px;
    gap: 6px;
}


.btn_grid .btn .inner_icon {
    width: .6rem;
    fill: var(--main-color);
}

.btn_grid .btn {
    background-color: var(--color-white-100);
    padding: 10px 20px;
    border: none;
    border-radius: 90px;
    font-size: 14px;
    cursor: pointer;
    color: var(--main-color);
    border: 0.8px solid var(--main-color);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn_grid .btn:hover {
    background-color: var(--sec-color);
    color: var(--color-white-100);
    border-color: var(--sec-color);
}


.btn_grid .btn:hover svg {
    fill: var(--color-white-100);
}

.content_hero {
    position: absolute;
    top: 0;
    margin: auto 0;
    left: 7%;
    z-index: 2;
    color: var(--color-white-100);
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;

    p {
        margin: 10px 0 20px 0px;
    }
}

.btn_grid .btn:last-child {
    background-color: var(--sec-color);
    color: var(--color-white-100);
    border-color: var(--sec-color);
}

.booking svg {
    fill: var(--color-white-100);
}

.btn_grid .btn:last-child:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn_grid .btn:last-child:hover svg {
    fill: var(--color-white-100);
}

.list_grid {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.list_item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;

    p {
        font-size: 15px;
        margin: 0 0;
    }

    i {
        color: var(--sec-color);
    }
}

.img-container-f {
    width: 100%;
    height: 410px;

    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.visit_info {
    background: var(--gradient);
    color: var(--color-white-100);

    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        align-items: center;
    }

    .dropdown-title {
        padding-inline: 0;
        column-gap: .5em;

        i {
            color: var(--sec-color);
        }
    }

    .dropdown-group {
        position: relative;
    }

    .font-medium {
        font-size: 22px;
    }

    a,
    p {
        padding-inline: 22px;
        margin-top: -16px;
        font-size: 15px;
    }
}

.visit_info .dropdown-group::after {
    content: '';
    position: absolute;
    width: 1.5px;
    height: 120px;
    background: #fff;
    top: 10px;
    right: 0px;
}

.visit_info .dropdown-group:last-child:after {
    display: none;
}

.book_now {
    background-color: var(--sec-color);
    padding: 10px 20px;
    border: none;
    border-radius: 90px;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-white-100);
    text-align: center;
    border: 0.8px solid var(--main-color);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner_icon {
    width: .7rem;
    fill: var(--color-white-100);
}

.padding {
    padding: 1.5rem;
}

.facilities {
    padding: 70px 0;
    background-color: #F5F5F5;
    margin-bottom: 70px;


    .grid-2 {
        box-shadow: 0px 4px 5px 4px rgba(0, 0, 0, 0.1);
        border-radius: 30px;
        background-color: #fff;
    }

    .padding {
        margin-top: 59px;
        margin-bottom: 83.5px;
    }

    .inner-icon span {
        font-size: 14px;
    }

    .flex {
        position: relative;
    }

    p {
        font-size: var(--text-small);
        margin: 10px 0;
    }

    a {
        font-size: 14px;

        &:hover {
            color: var(--sec-color);
        }

    }

    img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 30px 0 0 0;
    }

    .bg-dark {
        background-image: var(--gradient);
        color: var(--color-white-100);
        padding: 1.5rem;
        border-radius: 0 0 0 30px;
    }

    .bg {
        background-color: rgb(28, 42, 58);
        color: var(--color-white-100);
        padding: 3.51rem 1.5rem;
        border-radius: 0 0 30px 0;
    }

}



.line::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #fff;
    top: 0;
}

.mt {
    margin-top: 25px;
}

.call {
    width: 50px;
    height: 50px;
    background: var(--sec-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.facilities .flex:hover svg {
    fill: var(--sec-color) !important;
}

.sub_text {
    font-size: 13px;
}

.service {
    h2 {
        margin-top: 10px;
        font-size: 40px;
    }

    p {
        font-size: var(--text-small);
        margin: 20px 0;
    }

    h3 {
        font-size: 20px;
    }
}

.icon_box {
    background: var(--main-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    min-width: 085px;
    height: 85px;

    img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }
}

.justify {
    align-items: center;
}


.gap .imgs {
    height: 500px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.line-bottom {
    margin: 30px 0 0 0;

    p {
        margin: 6px 0;
        font-size: 15px;
    }
}

.border {
    border: .5px solid var(--color-white-500);
    margin: 35px 0;
}

.btnk.book_now {
    color: #fff !important;
}

.btnk.book_now:hover a {
    color: #fff;
}

.gap {
    column-gap: 40px;
}

.blue_btn {
    background-color: var(--main-color);
    padding: 10px 20px;
    border: none;
    border-radius: 90px;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-white-100);
    text-align: center;
    width: 160px;
    border: 0.8px solid var(--main-color);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;

    &:hover {
        background-color: var(--sec-color);
    }
}

.center {
    justify-content: center;
}

h2 {
    font-size: 40px;
}

.brands {
    background-image: var(--gradient);
    color: var(--color-white-100);
    padding: 2.5rem 0;
    margin: 80px 0;
}

.count {
    padding: 0 .5rem;
}

.item .count::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 120px;
    background: #fff;
    top: 0px;
    right: 0px;
}

.item .count.last::after {
    display: none;
}



.text {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
}

.other {
    img {
        border-radius: 20px;
        min-height: 450px;
    }

    .content {
        margin-top: 2rem;
    }

    p {
        font-size: var(--text-small);
        margin: 20px 0;
        line-height: 30px;
    }
}

.denties_list {
    text-align: center;
    margin: 80px 0;
    padding-bottom: 10px;

    .text {
        max-width: 50rem;
        margin: 10px auto;
    }
}

.quots {
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-large);
    border-radius: 10px;
    padding: 1.5rem;

    .text {
        font-size: 14px;
        font-weight: 500;
    }
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dentist_card {
    position: relative;
}

.dentist_card .img {
    width: 100%;
    height: 280px;
    object-fit: cover;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }
}

.dentist_card h3 {
    font-size: 18px;
    text-align: center;
    color: var(--main-color);
    font-weight: 600;
}

.dentist_card p {
    font-size: 13px;

}

.doc_info {
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-large);
    padding: 1rem;
    border-radius: 25px;
    width: 80%;
    margin: 0 auto;
    margin-top: -30px;
    z-index: 1;
    position: inherit;
}

.near p {
    font-size: var(--text-small);
    margin: 20px 0;
}

.near_card .icon {
    width: 45px;
    height: 45px;
    background-color: var(--main-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }
}

.info h3 {
    font-size: 20px;
    margin: 5px 0;
}

.info p {
    font-size: 15px;
}

.bg-darks {
    background-image: linear-gradient(#edebeb, var(--color-white-200));
    padding: 4rem 0 4rem 0;

    h2 {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: center;
    }
}

.near.bg-darks img {
    border-radius: 30px;
    max-width: 100%;
    min-height: 400px;
    max-height: 400px;
}

.blog {


    h2 {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: var(--text-small);
        margin-bottom: 15px;
    }

    .card {
        box-shadow: var(--shadow-large);
        border-radius: 20px;
        background-color: rgb(238, 239, 244);
        cursor: pointer;
        min-height: 530px !important;
    }

    .img_container {
        width: 100%;
        height: 300px;
        overflow: hidden;
        position: relative;
    }

    img {
        border-radius: 20px 20px 0 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: all 1s ease-in-out;
    }

    .content {
        padding: 1.3rem 1.3rem .3rem 1.3rem;
    }

    a {
        white-space: normal;
    }
}

.blog .card:hover img {
    transform: scale(1.2);
}

.date {
    font-size: var(--text-tiny);
    margin: 10px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    .card {
        min-height: 200px;
    }
}

.faq {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 80px 0;

    h3 {
        font-size: 28px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    img {
        border-radius: 30px;
    }
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--sec-color);
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--color-dark-100);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--sec-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--sec-color);
    border: 1px solid var(--sec-color);
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: var(--sec-color);
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 11em!important;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}


/* .faq-accordion {
    background-color: var(--main-color);
    border-radius: 20px;
    padding: 1.5rem;
    color: var(--color-white-100);
} */


.site-logo {
    width: 218.33px !important;
    margin-right: 50px;
}

.btn {
    border-radius: 5px;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    cursor: pointer;
}


.c-container {
    margin: auto;
    width: 93%;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: none;
    border-width: 2px;
    border-color: #fff;
    font-weight: 500;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.btn {
    border-radius: 5px;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    cursor: pointer;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: var(--text-dark);
}

/* common css up */

.testimonial p {
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 35px;
}

.testimonial .name {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 35px;
    text-align: left;
}

.testimonial .designation {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #fff;
    opacity: 0.65;
}

.unt {
    margin-bottom: 20px;
    margin-top: 60px;
}

.hero-text {
    font-size: 30px;
    letter-spacing: 0.02em;
    color: #fff;
}

.gallery-thumbs {
    height: 100%;
}

.gallery-thumbs .swiper-wrapper {
    align-items: center;
}

.gallery-thumbs .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px !important;
    height: 330px;
    position: relative;
}

.gallery-thumbs .swiper-slide img {
    filter: contrast(0.5) blur(1px);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-thumbs .swiper-slide-active img {
    filter: contrast(1) blur(0px) !important;
}

.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.flex-row .flex-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.gallery-thumbs .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.testimonial-section .quote {
    width: 100%;
    height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
}

.swiper-container.testimonial {
    height: 100vh;
}

.testimonial-section .user-saying {
    background: #002369;
    width: 60%;
    color: #fff;
    height: 600px;
}

.testi-user-img {
    width: 40%;
}

.service .small {
    font-weight: 500;
    margin-bottom: -10px;
}

.small {
    font-weight: 500;
    color: var(--color-blue-300);
}

.testimonial-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.testimonial-section .quote p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.quote-icon {
    width: 38px;
    display: block;
    margin-bottom: 30px;
}

.swiper-container-vertical>.swiper-pagination-bullets {
    top: 250px !important;
}

.spacer {
    margin-bottom: 80px;
}

.appointment {
    margin-top: 150px;
    margin-bottom: 100px;

    .grid-appointment {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 3fr;
        gap: 50px
    }

    .card {
        border: 1px solid var(--color-white-600);
        border-radius: 20px;
        padding: 1.2rem;
        background-color: var(--color-white-100);

        .icon {
            background-color: var(--sec-color);
            width: 40px;
            height: 40px;
            margin: 5px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;

            i {
                color: var(--color-white-100);
            }
        }

        .title {
            font-size: 17px;
            font-weight: 500;
        }
    }

    h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .service-section {
        border: 1px solid var(--color-white-600);
        border-radius: 20px;
        padding: 1.2rem;
        background-color: var(--color-white-100);


        .ser-card {
            border: 1px solid var(--main-color);
            margin: 5px 0;
            max-width: 95%;
            padding: .8rem;
            border-radius: 10px;
            cursor: pointer;

            &:hover {
                background-color: var(--sec-color);
                color: var(--color-white-100);
                border-color: var(--sec-color);
            }

            .title {
                font-size: 20px;
                font-weight: 500;
            }
        }

        .serv-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background-color: var(--color-blue-300);
            box-shadow: var(--shadow-medium);
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid var(--main-color);

            img {
                width: 30px;
                height: 30px;
            }
        }
    }
}


.containers {
    display: flex;
    gap: 20px;
}

.calendar h2 {
    font-size: 18px;
    margin: 10px 0;
}

.calendar {
    width: 100%;
    background: #fff;
    border: 1px solid var(--color-white-600);
    border-radius: 10px;

    button {
        width: 30px;
        height: 30px;
        background-color: var(--);
    }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.day-name {
    font-weight: bold;
    padding: 10px;
    background: var(--color-white-200);
    border: 1px solid var(--color-white-600);
}

.day {
    padding: 10px;
    cursor: pointer;
    border: .5px solid var(--color-white-600);
}

.day:hover {
    background: var(--sec-color);
    color: var(--color-white-100);
}

@media (max-width: 480px) {
    .calendar {
        border-radius: 5px;
        width: 83vw;
    }

    .time-picker {
        width: 100% !important;
    }

    .calendar-header {
        padding: 0.5rem;
        font-size: 12px;
    }

    .calendar-days {
        grid-template-columns: repeat(7, minmax(12px, 1fr));
    }

    .day-name,
    .day {
        padding: 6px;
        font-size: 12px;
    }
}

/* .today {
    background: var(--sec-color);
    font-weight: bold;
    color: var(--color-white-100);
} */

.disabled {
    color: var(--color-white-200);
    pointer-events: none;
}

.time-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    max-height: 390px;
    overflow-y: auto;
}

.time-slot {
    padding: 10px;
    background: var(--color-white-200);
    border-radius: 5px;
    cursor: pointer;
}

.time-slot:hover {
    background: var(--sec-color);
    color: var(--color-white-100);
}

.selected {
    background: var(--sec-color) !important;
    color: var(--color-white-100);
}

.form-group {
    label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    input,
    textarea {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid var(--color-white-600);
        margin-bottom: 15px;
    }

}

.step {
    display: none;
}

.step.active {
    display: block;
}

.next,
.prev {
    margin-top: 20px;
    padding: 10px;
    cursor: pointer;
    background-color: var(--sec-color);
    color: #fff;
    border: none;
    min-width: 150px;
    min-height: 40px;
    font-size: var(--text-small);
    border-radius: 50px;
}

.prev {
    background-color: transparent;
    border: 1px solid var(--sec-color);
    color: var(--sec-color);
}

.next:hover {
    background-color: #3eae19;
    color: #fff;
}

.prev:hover {
    background-color: var(--sec-color);
    color: #fff;
}

.tab.active {
    padding: .5rem 1rem;
    background: #50cd274f;
    border-radius: 10px;
}

.list-serv .tab {
    pointer-events: none;
    /* Disable clicks by default */
}

.list-serv .tab.active {
    pointer-events: auto;
    /* Enable clicks for active tab */
}


button[type='submit'] {
    background-color: var(--sec-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: var(--text-small);
    border-radius: 50px;
}

.tab {
    padding: .5rem 1rem;
    cursor: pointer;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #333;
    color: white;
    z-index: 1000;
    opacity: 0.9;
}

.error {
    color: red;
    font-size: 14px;
}

.toast.success {
    background-color: #4CAF50;
}

.toast.error {
    background-color: #f44336;
}

.contact-page {
    margin-top: 140px;

    textarea {
        min-height: 300px;
    }

    h1 {
        font-size: 55px;
        margin-bottom: 15px;
    }

    p {
        font-size: 16px;
        margin: 10px 0;
    }

    .top {
        margin-bottom: 30px;
    }

    .icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--main-color);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;


        i {
            color: #fff;
        }
    }

    h3 {
        margin: 10px 0 5px 0;
        font-size: 20px;
        font-weight: 500;
    }

    a {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .list {
        margin: 20px 0;
    }

    .bg {
        background-color: rgb(28, 42, 58);
        color: var(--color-white-100);
        padding: 2rem;
        border-radius: 30px 30px 0 0;
    }

    img {
        border-radius: 0 0 30px 30px;
    }

    .card {
        padding: 2rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
        margin: 30px 0;
        border-radius: 30px 30px;

    }

    .img_container {
        width: 100%;
        height: 300px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0 0 30px 30px;
        }
    }
}

.service_page {
    background-color: #F5F5F5;
    padding: 70px 0;
    margin-top: 100px;

    .content {
        h2 {
            font-size: 55px;
        }

        p {
            font-size: 18px;
            margin: 20px 0;
        }
    }

    .img-container {
        width: 100%;
        height: 400px;
        object-fit: cover;

        img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            border-radius: 30px;
        }
    }
}

.second {
    margin: 70px 0;

    h4 {
        font-size: 28px;
        font-weight: 500;
        text-align: center;
    }

    .text {
        font-size: 16px;
        margin: 15px 0;
        text-align: center;
    }

    img {
        border-radius: 0px 30px 30px 0;
    }

    .blue_btn {
        background-color: var(--sec-color);
        margin-top: 50px;
    }
}

.gird-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.dark-blue {
    background-color: var(--main-color);
    color: var(--color-white-100);
    padding: 2rem;
    border-radius: 30px 0px 0 30px;

    h3 {
        font-size: 35px;
        margin-bottom: 10px;
    }

    p {
        font-size: 16px;
    }

    li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    h5 {
        font-size: 18px;
        margin: 15px 0;
    }

}

.width {
    width: 100%;

    p {
        width: 80%;
        text-align: center;
        margin: 20px auto;
    }
}

.innergrid {
    .card {
        background-color: #EEEFF4;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 15px;


        h4 {
            font-size: 25px;
            margin-bottom: 15px;
        }

        p {
            font-size: 16px;
        }
    }

    .img-container {
        width: 100%;
        height: 420px;

        img {
            width: 100%;
            height: 100%;
            border-radius: 15px;
            object-fit: cover;
        }
    }
}

.spacer.mt.mt {
    margin-top: 70px;
}

.mt-3 {
    margin-top: 70px;
}

.full .blue_btn {
    min-width: 330px;
    font-weight: 600;
    font-size: 18px;
}

.more-data {
    background-color: #F5F5F5;
    padding: 2.5rem 0;

    .w-60 {
        text-align: center;
        margin-bottom: 40px;

        h2 {
            margin-bottom: 10px;
        }
    }

    .light,
    .dark {
        padding: 1.5rem;
        margin-bottom: 20px;
        border-radius: 10px;
        width: 100%;
        min-height: 180px;

        h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        p {
            font-size: 16px;
        }

        ul {
            margin: 0;
            padding: 0;
            list-style: none;

            li {
                margin-bottom: 10px;
                font-size: 14px;
            }
        }

        .icon {
            width: 70px;
            height: 30px;
            margin-top: 20px;

            img {
                margin-top: 20px;
                border-radius: 0 0 0 0 !important;
            }
        }
    }

    .light {
        background-color: #EEEFF4;
    }

    .dark {
        background-color: var(--main-color);
        color: var(--color-white-100);
    }
}


.more-data {
    .gird-2 {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .dark-blue {
        border-radius: 0 30px 30px 0;
    }

    img {
        /* margin-top: 20px; */
        border-radius: 30px 0 0 30px;
    }

    .blue_btn {
        background-color: var(--sec-color);
        margin-top: 30px;
    }
}



.gird-2 {
    margin: 30px 0;
}

.about-page {
    margin-top: 100px;

    h1 {
        font-size: 55px;
        margin: 20px 0;
    }

    p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .img-container {
        width: 100%;
        height: 90vh;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
        }
    }
}

.about {
    background-color: #F5F5F5;
    padding: 3rem 0;
    margin: 60px 0;

    h2 {
        margin-bottom: 20px;
    }

    p {
        font-size: 16px;
    }

    .img-container {
        width: 100%;
        height: 500px;
        object-fit: cover;

        img {
            width: 100%;
            height: 100%;
            border-radius: 30px;
        }
    }

    .mt {
        p {
            font-size: 18px;
            font-weight: 500;
        }
    }


}

.img_container {
    width: 100%;
    height: 100%;
    object-fit: cover;

    img {
        width: 100%;
        height: 100%;
        border-radius: 30px;
    }
}

.mt-2 {
    margin-top: 30px;
}

.social-icon {
    margin-top: -15px;
    font-size: 22px;

    i {
        color: var(--main-color);

        &:hover {
            color: var(--sec-color);
        }
    }
}

.service-list {
    .img {
        width: 100%;
        height: 300px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }
    }

    .light {
        width: 93%;
        margin: 0 auto;
        min-height: 30px !important;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
        margin-top: -25px;
        z-index: 1;
        position: relative;
        padding: 1rem;
        text-align: center;
    }

    .icon {
        width: 100% !important;
    }
}

.hover {
    height: 55px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.card:hover .light {
    height: 300px;
    background-color: var(--main-color);
    color: #fff;
}

.abouts {
    margin-top: 100px;
    background-color: #0b64f425;
    padding: 4rem;

    .grid-2 {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
    }

    .img-c {
        width: 100%;
        max-height: 500px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }
    }

    .small {
        font-size: 16px;
        font-weight: 600;
    }
}

.contents {
    width: 70%;
    margin: 0 auto;
    padding: 5rem 0 0 0;

    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    p {
        font-size: 16px;
    }
}

.value {
    margin: 80px 0;

    .icon {
        width: 70px;
        height: 70px;
        margin-top: 20px;
    }

    .gird-2 {
        margin: 0 0;
    }

    .light {
        min-height: 450px;
        background-color: var(--main-color);
        color: #fff;

        &:hover {
            background-color: #0f3a91;
        }
    }

    .dark-blue {
        &:hover {
            background-color: #0f3a91;
        }
    }

    .dark {
        padding: 0;
        background-color: transparent;
        width: 100%;
        height: 450px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }
    }
}


.img {
    width: 150px;
    height: 100px;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.slider-brand {
    background-image: none !important;
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    padding: 30px 0;

    h4 {
        color: #000;
        font-size: 30px;
    }

    .wid {
        min-width: 300px;
    }

    .grid-2 {
        align-items: center;
    }
}

.owl-dot {
    display: none !important;
}

.sub_text {
    margin-bottom: 10px;
}

.more-data .light,
.more-data .dark {
    position: relative;
}

.more-data .light .icon,
.more-data .dark .icon {
    position: absolute;
    bottom: 43px;
    left: 20px;
}

.service-list .light .icon,
.service-list .dark .icon {
    left: 0;
    margin-top: 0;
}

.service-list .blue_btn {
    margin-top: 0;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke: #fff;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    transition: stroke-dashoffset 0.2s linear;
}

.blog-list {
    margin-top: 130px;
    margin-bottom: 50px;

    .card {
        position: relative;
        box-shadow: 0 0 0 1px #f5f5f5 inset;
        border-radius: 20px;
        border: .5px solid #ccc;
        height: 590px;

        h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        p {
            font-size: 15px;
            margin-bottom: 30px;
        }
    }

    .img_thumb {
        width: 100%;
        height: 300px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
        }

    }

    .category {
        background-color: var(--sec-color);
        color: #fff;
        font-size: 14px;
        width: fit-content;
        padding: 3px 10px;
        font-weight: 600;
        border-radius: 20px;
        position: absolute;
        top: 15px;
        left: 20px;
        z-index: 1;
    }

    .blue_btn {
        padding: 5px;
        width: 120px;
        margin-bottom: 10px;
    }

    .inner {
        padding: .5rem 1rem 1rem 1rem;
    }
}

.blog-details {
    margin-top: 130px;

    .img_thumb {
        width: 100%;
        height: 100%;
        margin-bottom: 30px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }

    .category {
        background-color: var(--sec-color);
        color: #fff;
        font-size: 14px;
        width: fit-content;
        padding: 3px 10px;
        font-weight: 600;
        border-radius: 20px;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .flex {
        margin-bottom: 20px;
    }

    ul li {
        padding: 3px 0;

        a {
            text-decoration: none;
            font-weight: 500;
        }
    }

    .recent-post {
        margin-top: 20px;

        .recent-thum {
            width: 100px;
            height: auto;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 15px;
            }
        }
    }
}


@media screen and (max-width: 600px) {
    #blog-posts {
        grid-template-columns: 1fr;
    }
      .value .light {
        min-height: 530px!important;
          
      }

.accordion button{
        padding-right: 25px!important;
}
    .blog-details .grid-2 {
        grid-template-columns: 1fr !important;
    }

    video {
        display: none;
    }

    .date_time .containers {
        display: block;
    }

    .visit_info .dropdown-column {
        padding: 20px;
    }

    .hero {
        margin-top: 0px;
        position: relative;
        width: 100%;
        height: 100% !important;
        overflow:
            hidden;

    }

    .appointment {
        .grid-appointment {
            grid-template-columns: 1fr
        }

        /* .col:first-child {
            order: 2;
        }

        .col:last-child {
            order: 1;
        } */
    }



    .contents {
        width: 90%;
        margin: 0 auto;
        padding: 2rem 0 0 0;

        h2 {
            font-size: 20px;
            margin-bottom: 30px;
        }
    }


    .dropdown-block {
        margin-bottom: 30px !important;
    }

    .dropdown-group {
        padding-bottom: 0rem;
    }

    .add {
        display: none;
    }

    .video_wrap {
        min-height: 100vh;
        max-height: fit-content;
    }

    .video_wrap::before {
        background-color: var(--main-color);
        z-index: 1;
    }

    .content_hero h1 {
        font-size: 35px;
    }

    .doc_info {
        padding: .5rem;
    }

    .dentist_card h3 {
        font-size: 14px;
    }

    .content_hero {
        top: 7rem;
        left: 0;
    }

    .list_grid {
        display: block;
    }

    .visit_info {

        a,
        p {

            margin-top: auto
        }

        .grid-4 {
            grid-template-columns: 1fr;
        }
    }

    .grid-5 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .facilities .padding {
        padding: 1.5rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .facilities {
        img {
            border-radius: 30px 30px 0 0;
        }

        .flex.mt {
            display: inline;
        }

        .line {
            display: none;
        }

        .btnk {
            margin-bottom: 20px;
        }

        .bg-dark {
            border-radius: 0 0 30px 30px;
        }

        .bg {
            border-radius: 30px;
        }
    }

    h2 {
        font-size: 32px !important;
    }

    .grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    button {
        white-space: normal;
    }

    .faq {
        height: fit-content !important;
        padding: 2rem 0;
    }

    .call-to-action {
        p {
            width: 100%;
            margin: auto;
            font-size: var(--text-small);
        }
    }

    .dropdown-column.grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    footer .dropdown-group {
        padding-inline: 0;
    }

    .gird-2 {
        grid-template-columns: 1fr;
    }

    .dark-blue {
        border-radius: 20px 20px 0 0;
    }

    .second {
        img {
            border-radius: 0 0 20px 20px;
        }
    }

    .service_page {
        .img-container {
            margin-top: 40px;
            height: fit-content;
        }
    }

    .more-data {
        .gird-2 {
            grid-template-columns: 1fr;
        }

        .dark-blue {
            border-radius: 0 0 30px 30px;
        }

        img {
            border-radius: 30px 30px 0 0;
        }
    }

    .width {
        width: 100%;

        p {
            width: 100%;
            margin-bottom: 20px;
        }
    }

    .top-head {
        background-image: var(--gradient);
        color: #fff;
        padding: 5px 0;

        a {
            font-size: 11px;
        }

        i {
            font-size: 11px;
        }
    }

    .video_wrap {
        img {
            height: 100vh;
        }
    }

    .testimonial-section .quote {
        width: 100%;
        height: 500px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 30px;
        padding-right: 30px;
    }

    .testimonial-section .user-saying {
        background: var(--main-color);
        width: 100%;
        color: #fff;
        height: 500px;
    }

    .testi-user-img {
        display: none;
    }

    .social-icon {
        margin-top: 0;
    }
}


.policy {
    margin-top: 150px;
    margin-bottom: 100px;

    .width-6 {
        width: 60%;
        margin: auto;
    }

    h2 {
        font-size: 40px;
        margin-bottom: 20px;
        text-align: center;
    }

    .centers {
        text-align: center;
        margin-bottom: 20px;
    }
}


.accordion .accordion-item {
    border-bottom: 1px solid #000;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--sec-color);
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 98%;
    padding: 1em 0;
    color: #000;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--sec-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--sec-color);
    border: 1px solid var(--sec-color);
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: var(--sec-color);
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}


.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 1em 0;
}


.text-center {
    text-align: center;
    margin-bottom: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    .light {
        min-height: 350px;
        max-height: 350px;
    }

    .dark {
        min-height: 350px;
        max-height: 350px;
    }
}




@media screen and (max-width: 600px) {
    video {
        display: none;
    }

    .gap-100 {
        display: block;
    }

    .bg {
        margin-top: 30px;
    }

    .contact-page {
        & .card {
            padding: 1rem 1rem;
        }
    }

    .none {
        display: none;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .abouts {
        .grid-2 {
            grid-template-columns: 1fr;
        }
    }

    .abouts {
        padding: 4rem 10px;
    }

    .appointment {
        .grid-appointment {
            grid-template-columns: 1fr
        }

        /* .col:first-child {
            order: 2;
        }

        .col:last-child {
            order: 1;
        } */
    }



    .contents {
        width: 90%;
        margin: 0 auto;
        padding: 2rem 0 0 0;

        h2 {
            font-size: 20px;
            margin-bottom: 30px;
        }
    }


    .dropdown-block {
        margin-bottom: 30px !important;
    }

    .dropdown-group {
        padding-bottom: 0rem;
    }

    .add {
        display: none;
    }

    .width-6 {
        width: 95% !important;
    }

    .video_wrap {
        min-height: 100vh;
        max-height: fit-content;
    }

    .video_wrap::before {
        background-color: var(--main-color);
        z-index: 1;
    }

    .content_hero h1 {
        font-size: 35px;
    }

    .doc_info {
        padding: .5rem;
    }

    .dentist_card h3 {
        font-size: 14px;
    }

    .content_hero {
        top: 3rem;
        left: 0;
        background-color: var(--main-color);
    }

    .list_grid {
        display: block;
    }

    .visit_info {

        a,
        p {

            margin-top: auto
        }

        .grid-4 {
            grid-template-columns: 1fr;
        }
    }

    .grid-5 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .facilities .padding {
        padding: 1.5rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .facilities {
        img {
            border-radius: 30px 30px 0 0;
        }

        .flex.mt {
            display: inline;
        }

        .line {
            display: none;
        }

        .btnk {
            margin-bottom: 20px;
        }

        .bg-dark {
            border-radius: 0 0 30px 30px;
        }

        .bg {
            border-radius: 30px;
        }
    }

    h2 {
        font-size: 32px;
    }

    .grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    button {
        white-space: normal;
    }

    .faq {
        height: fit-content !important;
        padding: 2rem 0;
    }

    .call-to-action {
        p {
            width: 100%;
            margin: auto;
            font-size: var(--text-small);
        }
    }

    .dropdown-column.grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    footer .dropdown-group {
        padding-inline: 0;
    }

    .gird-2 {
        grid-template-columns: 1fr;
    }

    .dark-blue {
        border-radius: 20px 20px 0 0;
    }

    .second {
        img {
            border-radius: 0 0 20px 20px;
        }
    }

    .service_page {
        .img-container {
            margin-top: 40px;
            height: fit-content;
        }
    }

    .more-data {
        .gird-2 {
            grid-template-columns: 1fr;
        }

        .dark-blue {
            border-radius: 0 0 30px 30px;
        }

        img {
            border-radius: 30px 30px 0 0;
        }
    }

    .width {
        width: 100%;

        p {
            width: 100%;
            margin-bottom: 20px;
        }
    }

    .top-head {
        background-image: var(--gradient);
        color: #fff;
        padding: 5px 0;

        a {
            font-size: 11px;
        }

        i {
            font-size: 11px;
        }
    }

    .video_wrap {
        img {
            height: 100vh;
        }
    }

    .testimonial-section .quote {
        width: 100%;
        height: 500px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 30px;
        padding-right: 30px;
    }

    .testimonial-section .user-saying {
        background: var(--main-color);
        width: 100%;
        color: #fff;
        height: 500px;
    }

    .testi-user-img {
        display: none;
    }

    .social-icon {
        margin-top: 0;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video_wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlider 20s infinite;
}

.video_wrap img:nth-child(1) {
    animation-delay: 0s;
}

.video_wrap img:nth-child(2) {
    animation-delay: 5s;
}

.video_wrap img:nth-child(3) {
    animation-delay: 10s;
}

.video_wrap img:nth-child(4) {
    animation-delay: 15s;
}

@keyframes fadeSlider {

    0%,
    20% {
        opacity: 1;
    }

    /* Show the image */
    25%,
    100% {
        opacity: 0;
    }

    /* Hide after 5s */
}

.gap-100 {
    column-gap: 100px;
}