@import '../fonts/fonts.css';

/* ========== Root ========== */
:root {
    --black: #000;
    --white: #fff;
    --transparent: #0000;
    --red: #f00;
    --primary: #064071;
    --success: #C5FF97;
    --info: #53E1CD;
    --dark-info: #1DC2AB;
    --secondary: #757575;

    /* Font Sizes */
    --fs-300: 300px;
    --fs-290: 290px;
    --fs-250: 250px;
    --fs-200: 200px;
    --fs-60: 60px;
    --fs-40: 40px;
    --fs-34: 34px;
    --fs-30: 30px;
    --fs-24: 24px;
    --fs-22: 22px;
    --fs-20: 20px;
    --fs-18: 18px;
    --fs-16: 16px;
    --fs-12: 12px;
}

/* ========== Common Start ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-display: swap;
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding-left: 0 !important;
}

:focus {
    outline: 0;
    box-shadow: none !important;
}

.container-fluid {
    max-width: calc(1520px + 40px);
    padding-inline: 20px;
    margin: 0 auto;
}

.container-fluid-lg {
    max-width: calc(1720px + 40px);
    padding-inline: 20px;
    margin: 0 auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Text Color */
.text-primary {
    color: var(--primary);
}

/* Tooltip */
.tooltip-inner {
    font-size: 12px;
    line-height: 15px;
}

/* Button Start */
.btn {
    padding: 15px 26px;
    border: 0;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 0;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    z-index: 1;
    display: block;
}

.btn[disabled] {
    opacity: 0.5;
}

.btn-primary {
    background-color: var(--info);
    color: var(--black);
    position: relative;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:focus-visible,
.btn-primary:focus-within,
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: var(--info) !important;
    color: var(--black) !important;
    box-shadow: none;
}

.btn-primary::before {
    position: absolute;
    content: "";
    width: 26px;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="27" height="50" viewBox="0 0 27 50" fill="none"><path d="M23.5 29.5C27 26.5 27 23 23.5 20L1.48892e-06 0L1.48892e-06 4.95882L0 45.0412L1.48892e-06 50L23.5 29.5Z" fill="url(%23paint0_linear_1_1867)"/><defs><linearGradient id="paint0_linear_1_1867" x1="1" y1="22" x2="26" y2="22" gradientUnits="userSpaceOnUse"><stop stop-color="%2353E1CD"/><stop offset="1" stop-color="%231DC2AB"/></linearGradient></defs></svg>') no-repeat center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn-primary:hover:before {
    left: calc(100% - 26px);
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    cursor: not-allowed !important;
    pointer-events: all;
}

/* Button End */

/* Fancybox Start */
.fancybox__container {
    z-index: 99999 !important;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

/* Fancybox End */

/* Plus Start */
.plus {
    padding: 40px 0;
}

.plus .h {
    width: 120px;
    height: 40px;
    background-color: var(--white);
    position: relative;
}

.plus .v {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 120px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: var(--white);
}

.plus .v::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: var(--info);
}

/* Plus End */

/* ========== Common End ========== */

/* ========== Header Start ========== */
.header {
    z-index: 9;
    position: fixed;
    padding: 0 20px;
    width: 100%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.header .header-container {
    margin: 0 auto;
    max-width: 1760px;
    width: 100%;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header .brand-logo {
    display: block;
}

/* ========== Header End ========== */

/* ========== Menu Start ========== */
.menu {
    z-index: 9;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    padding: 20px 60px;
    border-radius: 80px;
    background: rgba(197, 255, 151, 0.60);
    backdrop-filter: blur(5px);
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.menu.hide {
    bottom: -80px;
}

.menu ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.menu ul li {
    padding: 0 20px;
}

.menu ul li:first-child {
    padding-left: 0;
}

.menu ul li:last-child {
    padding-right: 0;
}

.menu ul li a {
    text-wrap: nowrap;
    color: var(--black);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.menu ul li a:hover,
.menu ul li a:focus,
.menu ul li a:active,
.menu ul li a.active {
    color: var(--primary);
}

.menu ul li .active::before {
    position: absolute;
    content: "";
    top: -6px;
    left: -10px;
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="13" viewBox="0 0 12 13" fill="none"><path d="M0 6.84V5.52H11.76V6.84H0ZM5.19 0H6.57V12.36H5.19V0Z" fill="%23064071"/></svg>');
}

/* ========== Menu End ========== */

/* ========== Home Banner Start ========== */
.home-banner {
    position: relative;
    padding-top: 208px;
    padding-bottom: 55px;
    overflow: hidden;
}

.home-banner .circle-shade {
    position: absolute;
    width: 415px;
    height: 415px;
    top: -208px;
    left: -208px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-banner .dna-right {
    position: absolute;
    top: -2px;
    right: -78px;
}

.home-banner .dna-left {
    position: absolute;
    top: -226px;
    left: -230px;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}

.home-banner .content {
    position: relative;
    z-index: 2;
}

.home-banner .content .title * {
    max-width: 660px;
    color: var(--black);
    font-size: var(--fs-60);
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.home-banner .content .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -7px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.home-banner .content .title span::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.home-banner .content .disc * {
    max-width: 520px;
    margin-left: 88px;
    color: var(--secondary);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 30px;
}

.home-banner .content .banner-video {
    margin-bottom: 120px;
}

.home-banner .content .banner-video a {
    display: flex;
    align-items: center;
    margin-left: 88px;
    width: fit-content;
}

.home-banner .content .banner-video .video-box {
    width: 46px;
    height: 46px;
    display: block;
    background-color: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    /* margin-left: 88px; */
}

.home-banner .content .banner-video .video-box::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-color: var(--transparent);
    border: 1px solid var(--primary);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    animation: scaleBanerrVideo 1s ease-in-out infinite;
    -webkit-animation: scaleBanerrVideo 1s ease-in-out infinite;
}

@keyframes scaleBanerrVideo {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.35);
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1.35);
        -moz-transform: translate(-50%, -50%) scale(1.35);
        -ms-transform: translate(-50%, -50%) scale(1.35);
        -o-transform: translate(-50%, -50%) scale(1.35);
    }
}

.home-banner .content .banner-video .watch-video * {
    color: var(--black);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 0;
    padding: 9px 0;
    border-bottom: 1px solid var(--primary);
}

.home-banner .large-title {
    margin: 0 auto;
    max-width: 1720px;
    background: linear-gradient(98deg, var(--success) 8.57%, var(--primary) 78.08%);
    position: relative;
}

.home-banner .large-title .title * {
    margin-left: -22px;
    font-size: var(--fs-300);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    letter-spacing: -30px;
    opacity: 0.15;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-banner .large-title .image {
    position: absolute;
    right: 80px;
    bottom: 0;
}

.home-banner .large-title .plus {
    position: absolute;
    right: 0px;
    bottom: 0;
}

/* ========== Home Banner End ========== */

/* ========== Services Start ========== */
.services {
    padding-block: 55px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.services .large-title {
    position: relative;
    z-index: 1;
    margin-top: -260px;
}

.services .large-title * {
    text-align: center;
    font-size: var(--fs-290);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    opacity: 0.1;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services .top-shade {
    position: absolute;
    top: 84px;
    right: -185px;
    width: 337px;
    height: 337px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.services .heading {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.services .heading .title * {
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.services .heading .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.services .heading .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.services .heading .disc * {
    max-width: 750px;
    color: var(--secondary);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 20px;
}

.services .heading .action {
    margin-bottom: 60px;
    display: flex;
    gap: 20px;
}

.services .skeleton {
    width: 100%;
    position: relative;
}

.services .skeleton .center-shade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 337px;
    height: 337px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.services .skeleton .dna-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.services .skeleton .skeleton-image {
    position: relative;
    z-index: 2;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.services .skeleton .skeleton-part .circle {
    width: 20px;
    height: 20px;
    background-color: var(--red);
    filter: blur(4px);
    -webkit-filter: blur(4px);
    opacity: 1;
    animation: circleAnimate 4s ease-in-out infinite;
    -webkit-animation: circleAnimate 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes circleAnimate {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.services .skeleton .skeleton-part .content {
    cursor: pointer;
    position: absolute;
    width: 44px;
    height: 44px;
    padding: 8px;
    background-color: var(--success);
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    outline: 1px solid var(--primary);
    outline-offset: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.services .skeleton .skeleton-part .content .number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 23px;
    height: 23px;
    background-color: var(--info);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--black);
    text-align: center;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

/* skeleton-part1 */
.services .skeleton .skeleton-part1 {
    position: absolute;
    top: 123px;
    right: 289px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.services .skeleton .skeleton-part1 .content {
    top: 50%;
    left: calc(100% + 200px);
}

.services .skeleton .skeleton-part1 .content::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 1px;
    background-color: var(--primary);
    right: calc(100% + 6px);
    top: 50%;
}

model-viewer {
    width: 100%;
    height: 550px;
    background: rgba(0, 0, 0, 1);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background-color: #eee;
}

/* skeleton-part1 */

/* skeleton-part2 */
.services .skeleton .skeleton-part2 {
    position: absolute;
    top: 280px;
    right: 288px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.services .skeleton .skeleton-part2 .content {
    top: 50%;
    left: calc(100% + 250px);
}

.services .skeleton .skeleton-part2 .content::before {
    position: absolute;
    content: "";
    width: 250px;
    height: 1px;
    background-color: var(--primary);
    right: calc(100% + 6px);
    top: 50%;
}

/* skeleton-part2 */

/* skeleton-part3 */
.services .skeleton .skeleton-part3 {
    position: absolute;
    top: 250px;
    left: 150px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.services .skeleton .skeleton-part3 .content {
    top: 50%;
    right: calc(100% + 100px);
}

.services .skeleton .skeleton-part3 .content::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background-color: var(--primary);
    left: calc(100% + 6px);
    top: 50%;
}

/* skeleton-part3 */

/* skeleton-part4 */
.services .skeleton .skeleton-part4 {
    position: absolute;
    top: 450px;
    left: 270px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.services .skeleton .skeleton-part4 .content {
    top: 50%;
    right: calc(100% + 320px);
}

.services .skeleton .skeleton-part4 .content::before {
    position: absolute;
    content: "";
    width: 320px;
    height: 1px;
    background-color: var(--primary);
    left: calc(100% + 6px);
    top: 50%;
}

/* skeleton-part4 */

/* skeleton-part5 */
.services .skeleton .skeleton-part5 {
    position: absolute;
    top: 540px;
    right: 240px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.services .skeleton .skeleton-part5 .content {
    top: 50%;
    left: calc(100% + 100px);
}

.services .skeleton .skeleton-part5 .content::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background-color: var(--primary);
    right: calc(100% + 6px);
    top: 50%;
}

/* skeleton-part5 */

/* skeleton-part6 */
.services .skeleton .skeleton-part6 {
    position: absolute;
    top: 655px;
    left: 225px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.services .skeleton .skeleton-part6 .content {
    top: 50%;
    right: calc(100% + 120px);
}

.services .skeleton .skeleton-part6 .content::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 1px;
    background-color: var(--primary);
    left: calc(100% + 6px);
    top: 50%;
}

/* skeleton-part6 */

.services .skeleton-modal .modal-title {
    color: var(--black);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.services .skeleton-modal .btn-close {
    background-color: var(--success);
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 8px;
}

.services .skeleton-modal .modal-dialog {
    max-width: 440px;
}

.services .skeleton-modal .modal-content {
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.services .skeleton-modal .modal-body {
    padding: 20px;
}


.services .skeleton-modal .main-slider {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    position: relative;
}

.services .skeleton-modal .main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.services .skeleton-modal .thumb-slider-container {
    position: relative;
    padding: 0 15px;
}

.services .skeleton-modal .thumb-slider {
    height: 100px;
    margin-top: 10px;
}

.services .skeleton-modal .thumb-slider .swiper-slide {
    width: 87px;
    height: 87px;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
    border: 1px solid var(--transparent);
}

.services .skeleton-modal .thumb-slider .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid var(--black);
}

.services .skeleton-modal .thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.services .skeleton-modal .thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.services .skeleton-modal .swiper-button-prev {
    left: 0;
}

.services .skeleton-modal .swiper-button-next {
    right: 0;
}

.services .skeleton-modal .swiper-button-next,
.services .skeleton-modal .swiper-button-prev {
    color: #333;
}

.services .skeleton-modal .swiper-button-next,
.services .skeleton-modal .swiper-button-prev {
    padding: 8px;
    z-index: 2;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.services .skeleton-modal .swiper-button-next:hover,
.services .skeleton-modal .swiper-button-prev:hover {
    background-color: var(--info);
}

.services .skeleton-modal .swiper-button-next::after,
.services .skeleton-modal .swiper-button-prev::after {
    display: none;
}

.services .skeleton-modal .swiper-button-next.swiper-button-disabled,
.services .skeleton-modal .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.services .skeleton-modal .swiper-button-next.swiper-button-disabled svg,
.services .skeleton-modal .swiper-button-prev.swiper-button-disabled svg {
    opacity: 0.3;
}

.services .skeleton-modal .modal-body .title * {
    margin-top: 24px;
    color: var(--black);
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 10px;
}

.services .skeleton-modal .modal-body .doctors-list {
    overflow: auto;
    max-height: 200px;
}

.services .skeleton-modal .modal-body .doctors-list ul {
    margin-bottom: 0;
}

.services .skeleton-modal .modal-body .doctors-list .doctor {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.services .skeleton-modal .modal-body .doctors-list li:last-child .doctor {
    margin-bottom: 0;
}

.services .skeleton-modal .modal-body .doctors-list .doctor .image {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.services .skeleton-modal .modal-body .doctors-list .doctor .image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.services .skeleton-modal .modal-body .doctors-list .doctor .doctor-details p:first-child {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 5px;
}

.services .skeleton-modal .modal-body .doctors-list .doctor .doctor-details p:last-child {
    color: var(--secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    margin-bottom: 0;
}

.services .skeleton-modal .modal-footer {
    border: 0;
    padding-top: 0 !important;
    padding: 20px;
}

/* ========== Services End ========== */

/* ========== Emergency Start ========== */
.emergency {
    padding: 55px 0;
    position: relative;
}

.emergency .top-shade {
    position: absolute;
    top: -254px;
    left: -262px;
    width: 337px;
    height: 337px;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.emergency .emergency-card {
    position: relative;
    overflow: hidden;
    padding: 134px 20px 124px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.emergency .emergency-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.05;
    z-index: -1;
}

.emergency .emergency-card .title * {
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
    width: fit-content;
}

.emergency .emergency-card .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.emergency .emergency-card .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.emergency .emergency-card .disc * {
    color: var(--secondary);
    text-align: center;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 38px;
}

.emergency .emergency-card .contact {
    margin-bottom: 38px;
}

.emergency .emergency-card .contact ul {
    display: flex;
    align-items: center;
}

.emergency .emergency-card .contact ul li {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.emergency .emergency-card .contact ul li:last-child {
    padding-right: 0px;
    margin-right: 0px;
    border-right: 0px;
}

.emergency .emergency-card .contact ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--black);
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.emergency .emergency-card .contact ul li a:hover {
    color: var(--primary);
}

.emergency .emergency-card .contact ul li a svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}


.emergency .large-title {
    position: relative;
    z-index: 1;
    margin-top: -245px;
}

.emergency .large-title * {
    text-align: center;
    font-size: var(--fs-250);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    opacity: 0.1;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.emergency .emergency-card {
    position: relative;
    padding: 134px 20px 124px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
}

.emergency .emergency-card .boy-run {
    max-width: 647px;
    position: absolute;
    bottom: 0;
    right: -100px;
    z-index: -1;
}

.emergency .emergency-card .plus {
    position: absolute;
    right: 0px;
    bottom: 0;
}


/* ========== Emergency End ========== */


/* ========== Online Consultation Start ========== */
.online-consultation {
    padding: 55px 0;
    position: relative;
    overflow-x: clip;
}

.online-consultation .dna-right {
    position: absolute;
    top: -120px;
    right: -78px;
    z-index: -1;
}

.online-consultation .circle-shade {
    position: absolute;
    top: 0;
    right: 154px;
    width: 337px;
    height: 337px;
    border-radius: 337px;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    z-index: -1;
}

.online-consultation .large-title {
    position: relative;
    z-index: -1;
    margin-top: -240px;
}

.online-consultation .large-title * {
    text-align: center;
    font-size: var(--fs-290);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    opacity: 0.1;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.online-consultation .title * {
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 5;
    width: fit-content;
}

.online-consultation .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.online-consultation .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.online-consultation .online-container {
    display: flex;
    /* align-items: center; */
    gap: 40px;
}

.online-consultation .video-container {
    max-width: 850px;
    width: 100%;
    position: relative;
}

.online-consultation .video-container .call-hang {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.online-consultation .video-container .call-hang::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(6, 64, 113, 0.40);
    filter: blur(100px);
    -webkit-filter: blur(100px);
    animation: moveShadeHang 2s infinite ease-in-out;
    -webkit-animation: moveShadeHang 2s infinite ease-in-out;
}

@keyframes moveShadeHang {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.online-consultation .video-container .call-hang::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(197, 255, 151, 0.6);
    filter: blur(100px);
    -webkit-filter: blur(100px);
    animation: moveShadeHang 2s infinite ease-in-out;
    -webkit-animation: moveShadeHang 2s infinite ease-in-out;
}


.online-consultation .video-container .camera-off {
    display: none;
}

.online-consultation .video-container.camOff .camera-off {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: red;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6"><path stroke-linecap="round" stroke-linejoin="round" d="m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M12 18.75H4.5a2.25 2.25 0 0 1-2.25-2.25V9m12.841 9.091L16.5 19.5m-1.409-1.409c.407-.407.659-.97.659-1.591v-9a2.25 2.25 0 0 0-2.25-2.25h-9c-.621 0-1.184.252-1.591.659m12.182 12.182L2.909 5.909M1.5 4.5l1.409 1.409" stroke="white" /></svg>') no-repeat center;
    background-size: 80px;
    background-color: #4C7597;

}

.online-consultation .video-container.camOff .doctors-video .camera-off {
    background-size: 40px;
}

.online-consultation .video-container .patient-video {
    width: 100%;
    height: 460px;
    position: relative;
}

.online-consultation .video-container .patient-video * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.online-consultation .video-container .patient-video .record {
    z-index: 1;
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 92px;
    width: fit-content;
    height: fit-content;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.online-consultation .video-container .patient-video .record .red {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    outline: 2px solid red;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
    animation: blinkRec 4s ease-in-out infinite;
    -webkit-animation: blinkRec 4s ease-in-out infinite;
}

@keyframes blinkRec {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.online-consultation .video-container .patient-video .record .red::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: red;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.online-consultation .video-container .patient-video .record .time {
    color: var(--white);
    font-size: var(--fs-12);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.online-consultation .video-container.unmute .mute {
    display: none !important;
}

.online-consultation .video-container .patient-video .mute {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.online-consultation .video-container .patient-video .name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: fit-content;
    height: fit-content;
    padding: 4px 10px !important;
    background-color: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: var(--white);
    font-size: var(--fs-12);
}

.online-consultation .video-container .doctors-video {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.online-consultation .video-container .doctors-video .doctor {
    width: 100%;
    height: 180px;
    position: relative;
}

.online-consultation .video-container .doctors-video .doctor * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.online-consultation .video-container .doctors-video .mute {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.online-consultation .video-container .doctors-video .name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: fit-content;
    height: fit-content;
    padding: 4px 10px !important;
    background-color: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: var(--white);
    font-size: var(--fs-12);
}

.online-consultation .video-container .video-tools {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.online-consultation .video-container .video-tools .time {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.online-consultation .video-container .video-tools .action {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.online-consultation .video-container .video-tools .action a {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.online-consultation .video-container .video-tools .action a:hover,
.online-consultation .video-container .video-tools .action a.active {
    background-color: var(--info);
}

.online-consultation .video-container .video-tools .action a.hang {
    background-color: #FF1925;
}

.online-consultation .content {
    width: 100%;
}

.online-consultation .content h6 {
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    padding-top: 16px;
}

.online-consultation .content h6:first-child {
    padding-top: 0;
}

.online-consultation .content p {
    color: var(--black);
    font-size: 16px;
    margin-bottom: 8px;
}

.online-consultation .content .action {
    margin-top: 40px;
    width: fit-content;
}

/* ========== Online Consultation End ========== */


/* ========== Upcoming Doctor Availability Start ========== */
.availability-doctor {
    padding: 55px 0;
    position: relative;
}

.availability-doctor .availability-container {
    padding: 50px 50px 0px;
    background: linear-gradient(180deg, #C5FF97 -35.12%, #064071 101.63%);
    position: relative;
    overflow: hidden;
}

.availability-doctor .dna-left {
    position: absolute;
    top: -137px;
    left: -307px;
    z-index: 0;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}

.availability-doctor .large-title {
    position: relative;
    z-index: 0;
    margin-top: -130px;
    margin-bottom: -50px;
}

.availability-doctor .large-title * {
    text-align: center;
    font-size: var(--fs-250);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    opacity: 0.1;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.availability-doctor .title * {
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 5;
    width: fit-content;
}

.availability-doctor .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%23064071"/></svg>');
}

.availability-doctor .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.availability-doctor .date-slider-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.availability-doctor .date-slider {
    padding: 20px 0;
    max-width: 890px;
    margin: 0;
}

.availability-doctor .swiper-button {
    opacity: 1;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.availability-doctor .swiper-button:hover {
    opacity: 0.6;
}

.availability-doctor .swiper-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.availability-doctor .date-slider .swiper-slide {
    width: fit-content;
    overflow: visible;
}

.availability-doctor .date-slider .date-card {
    cursor: pointer;
    min-width: 90px;
    height: 104px;
    background-color: var(--primary);
    border-radius: 8px;
    border: 1px solid var(--primary);
    color: var(--white);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}

.availability-doctor .date-slider .date-card.active {
    background-color: var(--success);
    border: 1px solid var(--primary);
    color: var(--black);
}

.availability-doctor .date-slider .date-card .date {
    color: inherit;
    font-family: "DM Sans", sans-serif;
    font-size: var(--fs-34);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.02px;
    margin-bottom: 0;
}

.availability-doctor .date-slider .date-card .month-year {
    color: inherit;
    opacity: 0.8;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.12px;
    margin-bottom: 0;
}

.availability-doctor .availability-doctor-list {
    max-width: 1262px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.availability-doctor .availability-doctor-list .doctor {
    padding: 25px 30px;
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.availability-doctor .availability-doctor-list .doctor:last-child {
    border-bottom: 0px;
}

.availability-doctor .availability-doctor-list .doctor>* {
    flex: 1 0 0;
}

.availability-doctor .availability-doctor-list .doctor .category * {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 0;
}

.availability-doctor .availability-doctor-list .doctor .avb-doctors {
    border-inline: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
}

.availability-doctor .availability-doctor-list .doctor .avb-doctors .available-title * {
    opacity: 0.5;
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    margin-bottom: 8px;
}

.availability-doctor .availability-doctor-list .doctor .avb-doctors .list * {
    cursor: pointer;
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    max-width: 220px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 0;
}

.availability-doctor .availability-doctor-list .doctor .action * {
    width: fit-content;
    margin-left: auto;
}

.availability-doctor .plus {
    position: absolute;
    left: 0px;
    bottom: 0;
}


/* ========== Upcoming Doctor Availability End ========== */

/* ========== Patient Reviews Start ========== */
.patient-reviews {
    padding: 55px 0;
    position: relative;
    overflow-x: clip;
}

.patient-reviews .dna-right {
    position: absolute;
    top: -250px;
    right: -100px;
    z-index: -1;
}

.patient-reviews .circle-shade {
    position: absolute;
    width: 415px;
    height: 415px;
    top: -100px;
    right: -210px;
    border-radius: 50%;
    z-index: -1;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.patient-reviews .review-content .title * {
    margin-left: 40px;
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 25px;
    position: relative;
    z-index: 5;
    width: fit-content;
}

.patient-reviews .review-content .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.patient-reviews .review-content .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.patient-reviews .review-content .disc * {
    max-width: 650px;
    color: var(--secondary);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 45px;
}

.patient-reviews .review-content .patient-disc {
    display: flex;
    gap: 20px;
}

.patient-reviews .review-content .patient-image {
    width: 70px;
    height: 70px;
}

.patient-reviews .review-content .patient-image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.patient-reviews .review-content .patient-content {
    max-width: 440px;
}

.patient-reviews .review-content .patient-content .star {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.patient-reviews .review-content .patient-content .name * {
    color: var(--black);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 4px;
}

.patient-reviews .review-content .patient-content .date * {
    color: var(--primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    margin-bottom: 16px;
}

.patient-reviews .review-content .patient-content .illness * {
    color: var(--secondary);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

.patient-reviews .review-slider-tools {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.patient-reviews .review-slider-tools>* {
    width: 50px;
    height: 50px;
    padding: 10px;
    background-color: var(--info);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.patient-reviews .review-slider-tools>*:hover {
    opacity: 0.6;
}

.patient-reviews .large-title {
    position: relative;
    z-index: -1;
    margin-top: -200px;
}

.patient-reviews .large-title * {
    text-align: center;
    font-size: var(--fs-290);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    opacity: 0.1;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== Patient Reviews End ========== */

/* ========== Meet Team Start ========== */
.meet-team {
    padding: 55px 0;
    position: relative;
}

.meet-team .team-container {
    display: flex;
    align-items: end;
}

.meet-team .team-container .doctor-image {
    width: calc(100% - 700px);
    position: relative;
    overflow-x: clip;
    display: flex;
    align-items: end;
    justify-content: center;
}

.meet-team .team-container .doctor-image .secondSwiper {
    position: relative;
    z-index: 2;
}

.meet-team .team-container .doctor-image::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 408px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.meet-team .team-container .doctor-image .docImg {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: center;
}

.meet-team .team-container .doctor-image .plus {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
}

.meet-team .team-container .doctor-image .large-title {
    position: absolute;
    bottom: -50px;
    left: -20px;
    width: 100%;
    height: auto;
    z-index: 1;
}

.meet-team .team-container .doctor-image .large-title * {
    text-align: center;
    font-size: var(--fs-290);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    opacity: 0.1;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.meet-team .team-container .doctor-container {
    max-width: 700px;
    width: 100%;
    flex-shrink: 0;
}

.meet-team .team-container .doctor-container .title * {
    text-align: end;
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
    width: fit-content;
    margin-left: auto;
}

.meet-team .team-container .doctor-container .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.meet-team .team-container .doctor-container .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.meet-team .team-container .doctor-container .disc * {
    color: var(--secondary);
    text-align: end;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 40px;
}

.meet-team .team-container .doctor-container .doctor-content {
    position: relative;
    width: 100%;
    padding: 64px 100px;
    background: linear-gradient(270deg, var(--success) -24.31%, var(--primary) 100%);
}

.meet-team .team-container .doctor-container .doctor-content {
    width: 100%;
    padding: 64px 100px;
    background: linear-gradient(270deg, var(--success) -24.31%, var(--primary) 100%);
}

.meet-team .team-container .doctor-container .doctor-content .name * {
    color: var(--white);
    text-align: right;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 16px;
}

.meet-team .team-container .doctor-container .doctor-content .degi * {
    color: var(--white);
    text-align: right;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 300;
    margin-bottom: 8px;
}

.meet-team .team-container .doctor-container .doctor-content .position * {
    color: var(--white);
    text-align: right;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.meet-team .team-container .doctor-container .doctor-content .disc * {
    color: var(--white);
    text-align: right;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 12px;
}

.meet-team .team-container .doctor-container .doctor-content .disc *:last-child {
    margin-bottom: 0;
}

.meet-team .team-container .ourTeam-Tools:hover {
    opacity: 0.8;
}

.meet-team .team-container .ourTeam-prev {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    width: 50px;
    height: 50px;
    background-color: var(--info);
    display: flex;
    align-items: center;
    justify-content: center;
}


.meet-team .team-container .ourTeam-next {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 50px;
    height: 50px;
    background-color: var(--dark-info);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========== Meet Team End ========== */

/* ========== Home Blog Start ========== */
.home-blog {
    padding: 55px 0;
    position: relative;
    overflow: visible;
    overflow-x: clip;
}

.home-blog .all-action {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.home-blog .top-shade {
    position: absolute;
    top: 84px;
    right: -185px;
    width: 337px;
    height: 337px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-blog .center-shade {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 337px;
    height: 337px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.home-blog .large-title {
    position: relative;
    z-index: -1;
    margin-top: -140px;
}

.home-blog .large-title * {
    text-align: center;
    font-size: var(--fs-250);
    font-style: normal;
    font-weight: 500;
    line-height: 300px;
    opacity: 0.1;
    background: var(--Black-gradiant-Text, linear-gradient(180deg, #000 12.17%, rgba(0, 0, 0, 0.00) 115%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-blog .heading .title * {
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin: 0 auto 50px;
    position: relative;
    /* z-index: 1; */
    width: fit-content;
}

.home-blog .heading .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.home-blog .heading .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.home-blog .blogSearch {
    display: flex;
    align-items: center;
    justify-content: end;
}

.home-blog .blogSearch input {
    max-width: 300px;
    width: 100%;
    color: var(--black);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    padding: 15px 45px 15px 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(5px);
    margin-bottom: 30px;
    margin-left: auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.home-blog #noResultsMessage {
    text-align: center;
    color: var(--primary) !important;
    font-size: var(--fs-20);
    font-style: normal;
    line-height: 32px;
    margin-bottom: 30px;
}

.home-blog .row {
    row-gap: 24px;
}

.home-blog .card {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 24px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 100%;
}

.home-blog .card .image {
    width: 100%;
    height: 300px;
}

.home-blog .card .image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-blog .card .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.home-blog .card .blog-date {
    width: 80px;
    height: 90px;
    background-color: var(--success);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -45px;
    margin-left: 20px;
    margin-bottom: 30px;
}

.home-blog .card .blog-date p {
    color: var(--black);
    text-align: center;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.home-blog .card .blog-date strong {
    font-size: var(--fs-40);
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 4px;
}

.home-blog .card .blog-title * {
    color: var(--primary);
    font-size: var(--fs-24);
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.home-blog .card .blog-title a:hover {
    color: var(--info);
}

.home-blog .card .blog-disc * {
    color: var(--secondary);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 34px;
}

.home-blog .card .blog-action {
    margin-top: auto;
}

.home-blog .card .blog-action * {
    color: var(--primary);
    text-align: center;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-decoration: underline !important;
    text-underline-offset: 6px;
    text-decoration-color: var(--info) !important;
    -moz-text-decoration-color: var(--info) !important;
}

.home-blog .card .blog-action *:hover {
    color: var(--info);
    text-align: center;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

/* ========== Home Blog End ========== */

/* ========== Home Contact Start ========== */
.home-contact {
    position: relative;
    padding: 55px 0;
}

.home-contact .card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    border-radius: 20px;
    background: var(--white);
    border: 0;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.home-contact .back-shade {
    mix-blend-mode: multiply;
    z-index: -1;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.home-contact .card .card-detail {
    padding: 60px;
    max-width: 684px;
    position: relative;
    height: auto;
}

.home-contact .card .card-detail::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: url('../images/svgs/contact-dash.svg') repeat-y top;
    background-size: contain;
}

.home-contact .card .card-detail .today-date p {
    color: var(--secondary);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 65px;
}

.home-contact .card .card-detail .today-date p strong {
    color: var(--black);
    font-weight: 500;
}

.home-contact .card .card-detail .title * {
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 45px;
    position: relative;
    z-index: 5;
    width: fit-content;
    margin-left: 0;
}

.home-contact .card .card-detail .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.home-contact .card .card-detail .title strong {
    position: relative;
}

.home-contact .card .card-detail .title strong::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.home-contact .card .card-detail .disc * {
    color: var(--secondary);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 50px;
}

.home-contact .card .card-detail .barcode {
    max-width: 200px;
    width: 100%;
    height: 30px;
    /* background-color: var(--black); */
}

.home-contact .card .card-detail .barcode svg {
    max-width: 250px;
}

.home-contact .card .card-detail .barcode text {
    display: none !important;
}

.home-contact .card .card-form {
    width: 100%;
    padding: 60px;
}

.home-contact .card .card-form .form-inputGroup {
    position: relative;
}

.home-contact .card .card-form .form-group {
    margin-bottom: 30px;
}

.home-contact .card .card-form .form-control {
    width: 100%;
    color: var(--black);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    padding: 15px 45px 15px 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.home-contact .card .card-form textarea.form-control {
    height: 130px;
    overflow: auto;
}

.home-contact .card .card-form .form-control[readonly],
.home-contact .card .card-form .form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
    cursor: not-allowed;
}

.home-contact .card .card-form .formIcon {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    right: 15px;
}

.home-contact .card .card-form #note-select,
.home-contact .card .card-form #note-change {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.home-contact .card .card-form #note-select::before,
.home-contact .card .card-form #note-change::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM11 15H13V17H11V15ZM11 7H13V13H11V7Z" fill="%23FF0000"/></svg>');
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-contact .card .card-form #note-select a,
.home-contact .card .card-form #note-change a {
    color: var(--primary);
    text-decoration-line: underline !important;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    -moz-text-decoration-line: underline !important;
}

.home-contact .card .card-form #note-select a:hover .home-contact .card .card-form #note-change a:hover {
    color: var(--info);
}

.home-contact .card .card-form .success-message {
    background-color: rgba(197, 255, 151, 0.60);
    border-radius: 4px;
    padding: 8px 12px;
    color: var(--black);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

/* ========== Home Contact End ========== */

/* ========== Footer Start ========== */
.footer {
    margin-top: 100px;
}

.footer .logo-image {
    padding: 0 50px;
    text-align: center;
    margin-bottom: -128px;
}

.footer .footer-container {
    position: relative;
    width: 100%;
    background-color: var(--white);
    border-radius: 50px 50px 0 0;
    -webkit-border-radius: 50px 50px 0 0;
    -moz-border-radius: 50px 50px 0 0;
    -ms-border-radius: 50px 50px 0 0;
    -o-border-radius: 50px 50px 0 0;
}

.footer .footer-container::before {
    position: absolute;
    content: "";
    top: -160px;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg, #FFF 0%, #C5FF97 100%);
    z-index: -1;
}

.footer .footer-container .footer-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.footer .footer-container .footer-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.footer .footer-container .footer-row .footer-column {
    display: block;
    flex-grow: 1;
    width: 100%;
    padding: 54px 20px;
}

.footer .footer-container .footer-row .footer-column a {
    display: inline-block;
    width: fit-content;
}

.footer .footer-container .footer-row:first-child .footer-column {
    text-align: center;
}

.footer .footer-container .footer-row .footer-column:first-child,
.footer .footer-container .footer-row .footer-column:nth-child(2) {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.footer .footer-container .footer-row .footer-column .data * {
    margin-bottom: 0;
    color: var(--black);
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
}

.footer .footer-container .footer-row .footer-column .data a:hover * {
    color: var(--primary);
}

.footer .footer-container .footer-row .footer-column .data *:first-child {
    margin-bottom: 6px;
}

.footer .footer-container .footer-row .footer-column .data *:last-child {
    margin-bottom: 0px;
}

.footer .footer-container .footer-row .footer-column .data strong {
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.footer .footer-container .footer-row .footer-column .data.page-link a {
    color: var(--primary);
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

/* ========== Footer End ========== */

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Blog List Page Start ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
.list-page {
    margin-top: 130px;
}

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Blog List Page End ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Blog Details Page Start ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
.blog-details-page {
    margin-top: 130px;
}

.blog-details-page .large-title {
    position: relative;
    z-index: 1;
    margin-top: -220px;
}

.blog-details-page .plus {
    position: absolute;
    right: 0px;
    bottom: 0;
}

.blog-details-page .heading {
    max-width: 850px;
    margin: 0 auto;
}

.blog-details-page .heading .title * {
    margin-bottom: 16px;
}

.blog-details-page .heading .title *::after {
    display: none;
}

.blog-details-page .heading .date p {
    font-size: var(--fs-16);
    color: rgba(0, 0, 0, 0.30);
    margin-bottom: 40px;
}

.blog-details-page .heading .date p span {
    font-size: var(--fs-16);
    color: var(--secondary);
    opacity: 0.6;
}

.blog-details-page .heading .date p strong {
    color: var(--primary);
    font-weight: 500;
}

.blog-details-page .blog-image {
    max-width: 1100px;
    width: 100%;
    height: 550px;
    margin: 0 auto 40px;
    position: relative;
}

.blog-details-page .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-page .blog-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-page .typography-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-details-page .action {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}


/* Pdf View */
.blog-details-page #pdf-container {
    width: 100%;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    position: relative;
    text-align: center;
    height: 550px;
    overflow: auto;
}

.blog-details-page canvas {
    display: block;
    margin: 0 auto;
}

.blog-details-page .controls {
    padding: 20px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    align-items: center;
}

.blog-details-page .controls .pdf-slide {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-page .controls .zoom-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-page .controls .zoom-tools>*,
.blog-details-page .controls .pdf-slide>* {
    border: 0;
}

.blog-details-page .controls button {
    padding: 6px 12px;
}

.blog-details-page #page-info {
    color: var(--secondary);
}

.blog-details-page #loading-message {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    color: #555;
}

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Blog Details Page End ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== 404 Page Start ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
.page404 {
    margin-top: 150px;
    overflow: visible;
    overflow-x: clip;
}

.page404 .heading {
    position: relative;
    z-index: 3;
}

.page404 .large-title {
    margin-top: -145px;
}

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== 404 Page End ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Typography Page Start ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */

.typography {
    margin-top: 150px;
    overflow: visible;
    overflow-x: clip;
}

.typography .heading {
    position: relative;
    z-index: 3;
}

.typography .heading .title * {
    margin-bottom: 80px;
}

.typography .large-title {
    font-size: var(--fs-200);
    margin-top: -145px;
}

.typography .large-title * {
    font-size: var(--fs-250);
}

.typography-wrapper {
    position: relative;
    z-index: 2;
}

.typography-wrapper h1,
.typography-wrapper h2,
.typography-wrapper h3,
.typography-wrapper h4,
.typography-wrapper h5 {
    color: var(--black);
    font-weight: 500;
    margin-bottom: 16px;
}

.typography-wrapper h1 {
    font-size: var(--fs-60);
}

.typography-wrapper h2 {
    font-size: var(--fs-40);
}

.typography-wrapper h3 {
    font-size: var(--fs-34);
}

.typography-wrapper h4 {
    font-size: var(--fs-30);
}

.typography-wrapper h5 {
    font-size: var(--fs-24);
}

.typography-wrapper h6 {
    font-size: var(--fs-20);
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 600;
}

.typography-wrapper p {
    font-size: var(--fs-18);
    margin-bottom: 16px;
    color: var(--secondary);
}

.typography-wrapper ul {
    list-style-type: disc;
    padding-left: 14px !important;
    margin-bottom: 16px;
}

.typography-wrapper ol {
    padding-left: 18px !important;
    margin-bottom: 16px;
}

.typography-wrapper ul li,
.typography-wrapper ol li {
    color: var(--secondary);
    margin-bottom: 10px;
}

.typography-wrapper ul li:has(> ul),
.typography-wrapper ul li:has(> ol) {
    list-style-type: none;
}

.typography-wrapper ul ul,
.typography-wrapper ol li ul {
    list-style-type: circle;
    padding-left: 20px;
    margin-top: 8px;
}

.typography-wrapper ol li ul li {
    color: var(--secondary);
    margin-bottom: 10px;
}

.typography-wrapper strong,
.typography-wrapper em {
    color: var(--primary);
    font-weight: 700;
}

.typography-wrapper a {
    text-decoration: underline !important;
    text-underline-offset: 3px;
    color: var(--primary);
}

.typography-wrapper a:hover {
    color: var(--dark-info);
}

.typography-wrapper blockquote {
    font-style: italic;
    color: var(--secondary);
    border-left: 4px solid var(--primary);
    background-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    padding: 16px;
    margin: 16px 0;
}

.typography-wrapper code {
    padding: 2px 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95em;
    border-radius: 4px;
    color: var(--primary);
}

.typography-wrapper pre {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 16px;
    overflow: auto;
    font-family: 'Outfit', sans-serif;
    border-radius: 6px;
    font-size: 0.95em;
    position: relative;
    color: var(--black);
    backdrop-filter: blur(5px);
}

.typography-wrapper ul.checklist li {
    list-style: none;
    position: relative;
    padding-left: 24px;
}

.typography-wrapper ul.checklist li::before {
    content: 'âœ”';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.typography-wrapper hr {
    border-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
    margin: 20px 0;
}

.typography-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: var(--fs-16);
}

.typography-wrapper th,
.typography-wrapper td {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    text-align: left;
}

.typography-wrapper th {
    background-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    font-weight: 600;
    font-size: var(--fs-18);
    color: var(--black);
}

.typography-wrapper td {
    background-color: var(--white);
    font-weight: 400;
    font-size: var(--fs-16);
    color: var(--secondary);
}

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Typography Page End ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Sidebar Setting Start ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
.sidebar-setting {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px;
    right: 10px;
    z-index: 9;
    background-color: var(--primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sidebar-setting img {
    animation: rotateCog 10s infinite linear;
    -webkit-animation: rotateCog 10s infinite linear;
}

@keyframes rotateCog {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(365deg);
        -webkit-transform: rotate(365deg);
        -moz-transform: rotate(365deg);
        -ms-transform: rotate(365deg);
        -o-transform: rotate(365deg);
    }
}

.sidebar-setting-card .box {
    width: 100%;
    padding: 16px 16px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    border-radius: 6px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer !important;
}

.sidebar-setting-card .box.active {
    background-color: var(--primary);
    color: var(--white);
}

.sidebar-setting-card .subbox {
    width: calc(100% - 32px);
    padding: 16px 16px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    border-radius: 6px;
    margin: -8px auto 16px;
    display: flex;
    align-items: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.05);
}

.sidebar-setting-card .subbox input {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary) 30%, rgba(6, 64, 133, 0.2) 30%);
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
}

.sidebar-setting-card .subbox input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    margin-top: -2px;
    transition: background 0.3s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.sidebar-setting-card .subbox input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.sidebar-setting-card .subbox input:active::-webkit-slider-thumb {
    background: var(--primary);
}

.sidebar-setting-card .subbox input:active::-moz-range-thumb {
    background: var(--primary);
}

.sidebar-setting-card .box svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Sidebar Setting End ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Developer Start ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
.developer {
    margin-top: 130px;
    padding: 100px 0;
    position: relative;
    overflow-x: clip;
}

.developer .heading {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.developer .heading .title * {
    color: var(--black);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin: 0 auto 50px;
    position: relative;
    /* z-index: 1; */
    width: fit-content;
}

.developer .heading .title>*::before {
    position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    top: -12px;
    left: -18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M0 16.0485V12.9515H28V16.0485H0ZM12.3571 0H15.6429V29H12.3571V0Z" fill="%2353E1CD"/></svg>');
}

.developer .heading .title *::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--success);
    z-index: -1;
}

.developer .heading .disc {
    margin-bottom: 50px;
}

.developer .heading .disc * {
    color: var(--secondary);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
    margin-bottom: 10px;
}

.developer .top-shade {
    position: absolute;
    top: 84px;
    right: -185px;
    width: 337px;
    height: 337px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.developer .center-shade {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 337px;
    height: 337px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.40);
    filter: blur(200px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.developer .card {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 30px;
    flex-direction: row;
    margin-bottom: 30px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.developer .card .image {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.developer .card .image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.developer .card .details .title * {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--fs-24);
    margin-bottom: 16px;
}

.developer .card .details .disc * {
    color: var(--secondary);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 300;
}

.developer .card .details .disc a {
    color: var(--primary);
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* ========== Developer End ========== */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
/* @#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@ */
