/*=======================================================*/

/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet');

/*====================
2. Theme variables
======================*/

:root {
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Ubuntu', sans-serif;
    --theme-color: #1d5560;
    --theme-color2: #73c6ce;
    --theme-color-light: rgb(17, 110, 99, 0.09);
    --theme-bg-light: #F2F3F5;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #1d5560;
    --color-light: #73c6ce;
    --hero-overlay-color: #000000;
    --slider-arrow-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #1d5560;
    --footer-bg2: #73c6ce;
    --footer-text-color: #F5FAFF;
}




*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
    font-family: var(--heading-font);
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.abt_right img {
    max-width: 100%;
    height: auto;
}

/*====================
3. Theme button
======================*/

.theme-btn {
    font-size: 14px;
    color: var(--color-white);
    padding: 14px 20px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px 50px 50px 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color2);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--theme-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.theme-btn:hover {
    color: var(--color-white);
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn span {
    margin-right: 5px;
}

.theme-btn2 {
    background: var(--color-white);
    color: var(--color-dark);
}

.theme-btn2::before {
    background: var(--theme-color);
}

.theme-btn2:hover {
    color: var(--color-white);
}


/*====================
4. Container
======================*/

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1200px;
    }
}

/*====================
5. Navbar css
======================*/

body.modal-open {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}


.login-img img {
    height: 230px;
    object-fit: cover;
}

.bbbbbb {
    border: 1px solid #ccc;
    padding: 14px;
    border-radius: 30px;
}

button.btn-close.cross_btn:hover {
    border: 0px;
    background-color: #73c6ce;
}

/* Optional: Highlight active tab with dark blue background */
.main-tabs-container .nav-tabs .nav-link.active {
    background-color: #1d5560;
    color: #fff !important;
}

.main-tabs-container .nav-tabs .nav-item .nav-link {
    color: var(--theme-color);
}


form.loginForm input {
    border-radius: 30px !important;
    padding: 10px 12px;
    background-color: #f5f5f5;
    border: 0px;
    box-shadow: 0px 6px 13px -9px #b1b1b1;
}

form.signupForm input {
    border-radius: 30px !important;
    padding: 10px 12px;
    background-color: #f5f5f5;
    border: 0px;
    box-shadow: 0px 6px 13px -9px #b1b1b1;
}

input#rememberMe {
    border-radius: 4px !important;
    margin-right: 5px;
    padding: 6px;
    border: 2px solid #c5c5c5;
}

input#rememberMe {
    margin-top: 6px;
}

.form-check label {
    font-size: 12px;
}

.check_box a {
    font-size: 12px;
}

.formHeading p {
    font-size: 12px;
}

form.signupForm input::placeholder {
    color: #bbbbbb;
}

form.loginForm input::placeholder {
    color: #bbbbbb;
}

.inputBox i {
    color: #bbbbbb !important;
}

button.loginbtnModal {
    background-color: var(--theme-color);
    width: 60%;
    border-radius: 30px;
    padding: 10px 12px;
}

button.loginbtnModal:hover {
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
}

button.signupbtnModal {
    background-color: var(--theme-color);
    width: 60%;
    border-radius: 30px;
    padding: 10px 12px;
}

button.signupbtnModal:hover {
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
}

.agree_box p {
    font-size: 12px;
}

/* .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
} */
body {
    padding-top: 70px;
}


.navbar.home.fixed-top {
    /* background: var(--theme-color) !important; */
    box-shadow: var(--box-shadow2);
    /* animation: slide-down 0.6s; */
    padding: 0px;
}


.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f107";
    border: none;
    font-size: 14px;
}

@media all and (max-width: 1199px) {
    .nav-right {
        margin-left: 25px !important;
    }

    .navbar .nav-right-btn {
        margin: 0px 20px 0px 10px;
    }
}

/* No less than 320px, no greater than767px */
@media (min-width:320px) and (max-width:440px) {
    .navbar-brand img {
        width: 76px !important;
    }

    .navbar .nav-right-btn {
        margin: 0px 10px 0px 5px;
    }

    .nav-right-btn .card_btn a {
        font-size: 12px;
        padding: 5px 11px;
    }

    .navbar-brand {
        padding-left: 0px;
        margin-right: 0px;
    }

    button.loginbtnModal,
    button.signupbtnModal {
        width: 100%;
    }
}

@media all and (min-width: 992px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed;
        z-index: 999;
    }

    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 20px 0 20px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--color-dark);
        text-transform: capitalize;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        border: none;
        left: -15px;
        border-radius: 0px;
        border-top: 4px solid var(--theme-color2);
        background: var(--theme-color);
        width: 220px;
        box-shadow: var(--box-shadow);
    }

    .navbar .nav-item .dropdown-menu li {
        border-bottom: 1px solid var(--border-white-color);
    }

    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding: 8px 25px;
        font-weight: 500;
        color: var(--color-white);
        position: relative;
        overflow: hidden;
        text-transform: capitalize;
        transition: all .3s ease-in-out;
    }

    .dropdown-menu a.active {
        background-color: var(--theme-color2) !important;
        color: white !important;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: transparent;
        color: var(--theme-color2);
        padding-left: 32px;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "//";
        position: absolute;
        left: 15px;
        top: 8px;
        color: var(--theme-color2);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible;
    }

    .navbar .nav-item .nav-link {
        position: relative;
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color2);
        font-weight: 600;
    }

    .navbar-dark.fixed-top .navbar-nav .nav-link.active {
        color: var(--theme-color2) !important;
        font-weight: 600 !important;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .navbar #main_nav {
        justify-content: flex-end;
    }

    /* nav right */
    .nav-right-btn .card_btn a {
        box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
        display: inline-block;
        border-radius: 30px;
        color: #fff;
        text-align: center;
        font-size: 16px;
        padding: 8px 18px;
        transition: all 0.3s;
        background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
        border: 0;
    }

    .nav-right-btn .card_btn i {
        transform: none;
        transition: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-left: 45px;
    }

    .navbar-brand img {
        width: 120px;
    }

}

/******** mobile menu **********/
nav.navbar.navbar-expand-lg {
    background: #fff;
    padding-top: 0px;
    padding-bottom: 0px;
}

.mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed;
        z-index: 999;
    }

    /* .navbar-brand {
        padding-left: 10px;
    } */

    .navbar-brand img {
        width: 120px;
    }

    .navbar-collapse {
        max-height: 330px;
        overflow-x: hidden;
        overflow-y: scroll;
        padding: 0 20px;
        background-color: var(--color-white);
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
    }

    ul.navbar-nav {
        width: 100%;
        display: inline-block;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        transition: var(--transition);
        padding-left: 10px;
    }

    .navbar-nav li.nav-item {
        border-bottom: 1px solid #73c6ce40;
    }

    /* .navbar .nav-item .nav-link.active {
        color: #fff;
        background-color: var(--color-dark);
    } */
    .dropdown-menu a.active {
        background-color: var(--theme-color2) !important;
        color: white !important;
    }


    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color) !important;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-right .nav-right-link {
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-dark);
    }

    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }

    .search-area.open {
        top: 50px !important;
    }

    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--color-dark);
        font-weight: 500;
    }

    .navbar .dropdown-menu {
        border-radius: 0px;
    }

    .nav-right {
        display: none;
    }

    .pt-search-form {
        left: 15px !important;
        width: 290px !important;
        top: 46px !important;
    }

    .pt-menu-search-block {
        margin: 0px !important;
    }

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none;
        border: none;
        box-shadow: none;
    }

    .navbar-nav .nav-link.active {
        color: var(--theme-color2);
    }

}

.bbbbbb {
    border: 1px solid #ccc;
    padding: 10px 12px;
    border-radius: 30px;
}

.login-img {
    text-align: center;
}

.login-img img {
    height: 230px;
    object-fit: cover;
}

/* search form css  */
.pt-menu-search-block {
    margin: 0 20px 0 0;
}

.pt-menu-search-block a {
    color: #000;
    font-size: 20px;
    width: 18px;
    display: inline-block;
}

.pt-search-form {
    display: none;
    /* Initially hidden */
    position: absolute;
    left: -136px;
    width: 350px;
    z-index: 999;
    display: none;
    background: #fff;
    top: 40px;
    transform: translateX(-50%);
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1000;
}


.search-form {
    position: relative;
}


/* Show the search form when toggled */
.pt-search-form.show {
    display: block;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}



.search-submit {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #1d5560;
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: #fff !important;
    line-height: 38px;
    height: 40px;
    width: 40px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
    content: "\f002";
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-size: 20px;
}

.search-form label {
    color: #000;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

/* Ensure the search icon is properly positioned */
.pt-menu-search-block {
    position: relative;
}

/* Hide search form by default */
.pt-search-form {
    display: none;
    position: absolute;
    top: 40px;
    background: white;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 100;
}

/* Style the search icon */
.pt-menu-search-block {
    position: relative;
    display: inline-block;
}

.pt-menu-search-block a {
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.pt-menu-search-block a:hover {
    color: #73c6ce;
}

/* Style the search input */
.pt-search-form input.search-field {
    padding: 5px !important;
    border: 1px solid #ccc;
    border-radius: 3px !important;
    width: 82%;
}

/* Style the submit button */
.pt-search-form .search-submit {
    background: #1d5560;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.pt-search-form .search-submit:hover {
    background: #73c6ce;
}


/************ media queries **************/
/* No less than 320px, no greater than767px */
@media (min-width:320px) and (max-width:767px) {
    .pt-search-form {
        width: 230px;
        padding: 5px;
        top: 50px;
        left: -82px;
    }

    .pt-menu-search-block {
        margin-left: auto !important;
        margin-right: 20px !important;
    }

}

/************ media queries **************/
/* No less than 768px, no greater than 1279px */
@media (min-width:768px) and (max-width:1279px) {
    .pt-menu-search-block {
        margin-left: auto !important;
        margin-right: 20px !important;
    }

}

/*====================
6. Hero css 
======================*/



.hero-section {
    position: relative;
}

.hero-single {
    /* padding-top: 150px;
    padding-bottom: 240px; */
    height: 650px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-single::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: rgba(11, 28, 57, .7);
    z-index: -1;
}

.hero-single .hero-content {
    height: 100%;
}

.hero-single .hero-content .hero-title {
    color: var(--color-white);
    font-size: 67px;
    font-weight: 800;
    margin: 20px 0;
    text-transform: capitalize;
}

/* .hero-title {
    max-height: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-content p {
    max-height: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
} */



.hero-single .hero-content .hero-sub-title {
    display: inline-block;
    color: var(--theme-color2);
    font-size: 20px;
    font-weight: 800;
    position: relative;
    background-color: rgb(255 255 255 / 10%);
    padding: 5px 30px 5px;
    border-radius: 0px 20px 20px 0px;
}

.hero-single .hero-content p {
    color: var(--color-white);
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
    gap: 1rem;
    display: flex;
    margin-top: 35px;
    justify-content: start;
}

.hero-single .hero-img::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--theme-color);
    right: 100px;
    bottom: 0px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
}

.hero-single .hero-img {
    position: absolute;
    right: 100px;
    bottom: 120px;
    width: 50%;
    z-index: -1;
}

.hero-slider.owl-theme .owl-nav {
    margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
    color: var(--color-white);
    font-size: 25px;
    margin: 0;
    padding: 0;
    background: var(--slider-arrow-bg);
    display: inline-block;
    cursor: pointer;
    height: 55px;
    width: 55px;
    line-height: 55px;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
    display: none;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--color-white);
    color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
    left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev,
    .hero-slider.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 30px !important;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev {
        left: unset;
        right: 120px;
    }

    .hero-slider.owl-theme .owl-nav .owl-next {
        right: 40px;
    }

}

@media all and (max-width: 991px) {

    .hero-single .hero-content .hero-title {
        font-size: 28px;
    }

    .hero-single .hero-content p {
        line-height: 1.8;
        font-size: 16px;
    }

    /* .hero-single {
        padding-top: 80px;
        padding-bottom: 110px;
    } */

    .hero-single .hero-img {
        position: relative;
        width: 100%;
        right: unset;
        bottom: unset;
        margin-top: 50px;
    }

    .hero-single .hero-img::before {
        width: 250px;
        height: 250px;
    }

}

@media all and (max-width: 991px) {
    .hero-single {
        height: 460px;
    }


}

@media all and (max-width: 767px) {

    .hero-single .hero-content .hero-sub-title {
        font-size: 18px;
    }

    .hero-single .hero-content .hero-btn {
        gap: 1rem;
    }

}



/*====================
7. About css 
======================*/

.py-60 {
    padding: 60px 0;
}


.abt_main {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}

/* .abt_left .abt_subhead:before {
    content: "";
    width: 25px;
    position: absolute;
    background: #73c6ce;
    height: 3px;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
} */

.abt_left .abt_subhead {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    display: inline-block;
    position: relative;
    background-image: linear-gradient(to right, #1d5560, #73c6ce);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt_video {
    position: relative;
}

.abt_video img {
    position: relative;
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
}

.about-one__video-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-one__video-popup a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #73c6ce;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
}

.about-one__list__item i {
    color: #73c6ce;
    font-size: 14px;
    margin-right: 10px;
}

.icon-polygon::before {
    position: absolute;
    top: 17px;
    left: 21px;
    align-items: center;
    align-content: center;
    color: #73c6ce;
}

.about-one__video {
    position: relative;
}



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

.about-one__client__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-one__client__thumb img:first-child {
    margin-left: 0;
}

.about-one__client__thumb img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -20px;
}

.about-one__client__star {
    font-size: 16px;
    color: var(--base, #DF9E42);
    letter-spacing: 0.1px;
    margin-bottom: 0;
}

.about-one__client__star {
    font-size: 16px;
    color: var(--base, #DF9E42);
    letter-spacing: 0.1px;
    margin-bottom: 0;
}

.about-one__client__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--text, #757F95);
}

.about-three__left {
    position: relative;
}

.about-three__thumb {
    position: relative;
    z-index: 1;
    margin-left: 47px;
    margin-right: 30px;
}

.about-three__thumb img.abt_doc_img {
    border-radius: 10px;
    max-width: 100%;
}

.about-three__thumb__small {
    position: absolute;
    right: 0;
    bottom: 40%;
    border-radius: 100px 100px 20px 20px;
    border: 12px solid #fff;
    filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.1));
}

.about-three__thumb__small img {
    border-radius: 100px 100px 20px 20px;
}

.about-three__thumb__box {
    width: 80px;
    height: 226px;
    background-color: #e4f3f5;
    position: absolute;
    left: -30px;
    top: 30px;
    border-radius: 87.5px;
    z-index: -1;
    animation: topToBottom 3s ease-in-out infinite;
}

.about-three__thumb::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 191px;
    left: -50px;
    top: 20px;
    z-index: -1;
    border: 3px solid #d5e6e9;
    border-radius: 87.5px;
    background-color: transparent;
    animation: topToBottom 3s ease-in-out infinite;
}

.about-three__thumb::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 280px;
    right: 50px;
    bottom: 30px;
    z-index: -1;
    border: 3px solid #d5e6e9;
    border-radius: 87.5px;
    background-color: transparent;
    animation: topToBottom 3s ease-in-out infinite;
    animation-delay: 1s;
}

.about-three__funfact {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 30px;
    bottom: 50px;
}

.about-three__funfact__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: -1;
}

.about-three__funfact__icon {
    font-size: 50px;
    text-align: center;
    color: var(--white, #fff);
    line-height: 0;
    margin-bottom: 22px;
}


.about-three__funfact__number {
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 117%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #fff);
    gap: 5px;
    margin-bottom: 8px;
}

.about-three__funfact__text {
    margin-top: -5px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    text-align: center;
}

.about-three__funfact::after {
    content: "";
    position: absolute;
    bottom: -29.555px;
    left: 0;
    height: 30px;
    width: 47.5555px;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    background-color: #1d5560;
    z-index: -3;
}

.theme_btn a {
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
    display: inline-block;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 8px 18px;
    transition: all 0.3s;
    background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
}

.theme_btn i {
    margin-left: 10px;
    transform: rotate(-35deg);
    transition: var(--transition2);
}

.theme_btn:hover i {
    transform: rotate(0);
}

.left-column {
    background-image: url('../img/abt_maintwo.jpg');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.right-column {
    background-color: var(--color-dark);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.right-column ul {
    list-style-type: disc;
}

.right-column ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.right-column ul li i {
    color: var(--color-light);
}

.right-column h5 {
    color: var(--color-light);
}

.card.right_cards {
    border-radius: 30px;
    box-shadow: 0px 5px 21px -6px #73c6ce4f;
}

.card.card_trnsprt {
    padding: 30px;
}

/* No less than 320px, no greater than 767px */
@media (min-width:320px) and (max-width:767px) {
    .card.card_trnsprt {
        padding: 0px;
    }
}

/* No less than 320px, no greater than 767px */
@media (min-width:320px) and (max-width:767px) {
    .card.card_trnsprt {
        padding: 0px;
    }
}

.info-box {
    /* background-color: #ffffff; */
    /* min-height: 100px; */
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.info-box.bg-alt {
    background-color: #f8f9fa;
    /* light gray */
}

.info-box i {
    color: #1d5560;
    /* light gray */
}

.right_cards h3 {
    color: var(--color-dark);
    font-family: var(--heading-font);
}

.right_cards ul li span {
    color: var(--body-text-color);
}

.right_cards ul li i {
    color: var(--color-dark);
}

.equal-height {
    min-height: 550px;
    /*  adjust this value as per your content */
}



@media (min-width:320px) and (max-width:767px) {
    h2 {
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .abt_left .abt_subhead {
        margin-bottom: 0px;
    }

    .about-three__thumb {
        margin-left: 18px;
        margin-right: 18px;
    }

    .about-three__funfact {
        padding: 10px;
        bottom: 32px;
    }

    .about-three__funfact::after {
        width: 20.5555px;
    }

    .about-three__thumb::after {
        display: none;
    }

    .about-three__thumb::before {
        display: none;
    }

    .about-three__thumb__box {
        display: none;
    }

    .about-three__thumb__small {
        right: -18px;
        bottom: 54%;
        width: 48%;
        height: 48%;
    }

    .about-three__thumb__small img {
        width: 100%;
        height: 100%;
    }

    .py-120 {
        padding: 60px 0;
    }

    .about-one__client__item {
        display: block;
        margin-bottom: 10px;
    }

    .about_client {
        display: block !important;
    }

}

@media (min-width:768px) and (max-width:1279px) {
    .py-120 {
        padding: 60px 0;
    }

    .about-three__thumb__small {
        right: 76px;
    }

    .about-three__thumb::before {
        right: 163px;
    }
}



/*====================
8. counter css
======================*/

section.counter_section {
    padding: 60px 0px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter_section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 77%);
    z-index: 0;
}

.counter-box:hover i {
    transform: translateY(-10px);
    transition: var(--transition2);
}

.pb-60 {
    padding-bottom: 60px;
}

.counter_head span {
    color: #73c6ce !important;
    font-size: 25px;
}


.counter-box {
    position: relative;
}


.counter-box .counter-number {
    position: relative;
    top: 0px;
    font-size: 52px;
    line-height: 1.2em;
    margin-bottom: 15px;
    color: #fff;
}

.counter-box i {
    font-size: 55px;
    color: #73c6ce;
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px dashed;
    margin-bottom: 20px;
    transition: var(--transition2);
}

.counter-box .separator {
    position: relative;
    height: 48px;
    width: 100%;
    background: url('./../img/separator.png') center top no-repeat;
}

.counter-box .counter-text {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #ffffff;
    line-height: 1em;
}

.counter_title {
    position: relative;
    z-index: 1;
}

.counter_title p {
    color: #fff;
    z-index: 1;
}


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

.card_btn_box a.card_btn {
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 8px 18px;
    transition: all 0.3s;
    background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
    float: right;
}

/*====================
9. full width slider css
======================*/


#full-width-slider {
    max-width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 100px;
}

/* Ensure inner container also has border-radius */
#full-width-slider .carousel-inner {
    border-radius: 100px;
    overflow: hidden;
}

/* Ensure images fit properly */
#full-width-slider .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: fill;
    border-radius: 100px;
    /* Apply border-radius */
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    border: 0;
}

.pb-120 {
    padding-bottom: 120px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    #full-width-slider {
        height: auto;
    }

    #full-width-slider .carousel-item img {
        height: auto;
    }
}

/* No less than 320px, no greater than 767px */
@media (min-width:320px) and (max-width:767px) {
    #full-width-slider {
        border-radius: 50px;
    }

    #full-width-slider .carousel-inner {
        border-radius: 50px;
    }

    #full-width-slider .carousel-item img {
        border-radius: 50px;
    }

    .full_slider.pb-120 {
        padding-bottom: 50px;
    }
}



/*====================
10. speaker webinar css
======================*/


.pt-120 {
    padding-top: 120px;
}

.ourSpeakers {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}


.ourSpeakers:hover::after,
.ourSpeakers:hover::before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.ourSpeakers img {
    width: 100%;
    display: block;
}

.ourSpeakers .caption {
    position: absolute;
    bottom: 0;
    background: #ffffffbd;
    width: 100%;
    padding: 25px 20px;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.ourSpeakers:hover .caption {
    transform: translateY(100%);
    opacity: 0;
}

.ourSpeakers .superTitle {
    text-transform: uppercase;
    font-size: 10px;
    color: #6a11cb;
    margin-bottom: 2px;
    letter-spacing: 1.5px;
    text-align: left;
    line-height: 10px;
    font-weight: 600;
}

.ourSpeakers h3 {
    font-weight: bold;
    text-transform: capitalize;
    display: inline-block;
    font-size: 20px;
    margin-bottom: 0;
}

.ourSpeakers h3::after {
    content: '';
    clear: both;
    width: 100%;
    display: block;
    border-bottom: 2px solid #73c6ce;
    margin-top: 3px;
}

/* Initially hide overlay */
.ourSpeakers .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1d5560d5 0%, #73c6ceb6 100%);
    padding: 30px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    align-content: center;
}

/* Show overlay on hover */
.ourSpeakers:hover .overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.ourSpeakers .overlay h3::after {
    border-color: #fff;
}


.ourSpeakers .overlay .superTitle {
    color: #fff;
}

.ourSpeakers .overlay .subTitle {
    color: #fff;
    margin-top: 5px;
    text-align: left;
}

.ourSpeakers .subTitle {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 0;
}

/* No less than 320px, no greater than 767px */
@media (min-width:320px) and (max-width:767px) {
    .webinar-slider .owl-dots {
        display: none;
    }

    .sec-title {
        padding-bottom: 0px !important;
        text-align: left !important;
    }

    section.full_slider {
        padding-bottom: 40px;
    }

}

/*====================
11. webinars css
======================*/

.speakers-section {
    padding: 60px 0 60px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.anim-icons.full-width {
    max-width: 100%;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.sec-title {
    position: relative;
}

.sec-title .sub-title {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    position: relative;
    background-image: linear-gradient(to right, #1d5560, #73c6ce);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-title h2 {
    display: block;
    font-size: 45px;
    line-height: 48px;
    color: #1d5560;
    font-weight: 700;
}

.speaker-block {
    position: relative;
    margin-bottom: 40px;
}

.speaker-block .inner-box {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.speaker-block .image-box {
    position: relative;
    padding: 17px 22px 0 0;
}

.speaker-block .image-box:before {
    position: absolute;
    left: 40px;
    right: 0;
    top: 0;
    bottom: 17px;
    border: 3px solid #dddddd;
    border-radius: 0 0 250px 250px;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .inner-box:hover .image-box:before {
    border: 3px solid #73c6ce;
    opacity: 1;
}

.speaker-block .image {
    position: relative;
    border: 5px solid #ffffff;
    -webkit-box-shadow: 0 14px 20px rgba(0, 0, 0, .20);
    box-shadow: 0 14px 20px rgba(0, 0, 0, .20);
    border-radius: 0 0 250px 250px;
    overflow: hidden;
    margin-bottom: 0;
}

.speaker-block .image img {
    width: 280px;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    height: 290px;
    object-fit: fill;
}

.speaker-block .plus-icon {
    position: absolute;
    right: 25px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #73c6ce;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .social-links {
    position: absolute;
    right: 30px;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    border-radius: 50px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.speaker-block .social-links a {
    position: relative;
    margin: 5px 0;
    height: 40px;
    width: 40px;
    display: block;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    color: #1d5560;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.speaker-block .inner-box:hover .social-links {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.speaker-block .social-links a:hover {
    color: #ffffff;
    background-color: #1d5560;
}

.speaker-block .info-box {
    position: relative;
    padding-top: 25px;
}

.speaker-block h4 {
    display: block;
    font-size: 24px;
    color: #1d5560;
    font-family: var(--heading-font);
}

.speaker-block h4 a {
    color: #1d5560;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-transform: uppercase;
}

.speaker-block .designation {
    font-size: 14px;
    color: #555555;
}

/* No less than 320px, no greater than 767px */
@media (min-width:320px) and (max-width:767px) {
    .speakers-section {
        padding-bottom: 10px;
    }

    .card_btn_box {
        display: grid;
        justify-content: flex-start;
    }

}

/* No less than 768px, no greater than 991px */
@media (min-width:768px) and (max-width:991px) {
    .card_btn_box {
        display: grid;
        justify-content: flex-start;
    }

    .post-slide .post-img img {
        height: 108px !important;
    }

}

/* No less than 992px, no greater than 1279px */
@media (min-width:992px) and (max-width:1279px) {

    .post-slide .post-img img {
        height: 155px !important;
    }

}

/*====================
12. testimonial css 
======================*/

.testimonial_section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.pt-50 {
    padding-top: 3rem !important;
}


.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    margin-bottom: 0;
}

.feature-item {
    padding: 25px 25px;
    text-align: center;
    position: relative;
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: var(--box-shadow); */
    border: 1px solid #73c6ce54;
    transition: var(--transition);
    z-index: 1;
}

.slider-bttn {
    width: 30%;
}

.slider-bttn {
    position: relative;
    display: inline-block;
    border-radius: 30px;
    background-color: #fcfcfc;
    color: #1d5560;
    text-align: center;
    font-size: 18px;
    padding: 14px 20px;
    transition: all 0.3s;
    padding-right: 40px;
    margin: 20px 5px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
}

.slider-bttn .btn-icon {
    background-color: #1d5560;
    width: 92px;
    height: 61px;
    float: right;
    position: absolute;
    border-radius: 30px 30px 30px 0;
    right: 0px;
    top: 0px;
    transition: all 0.3s;
}

.slider-bttn:hover {
    color: #fff !important;
}

.slider-bttn:hover .btn-icon {
    width: 100%;
    border-radius: 30px;
}

.name-description {
    position: relative;
    z-index: 9999;
}

.slider-bttn .btn-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 60px solid #fcfcfc;
    border-right: 40px solid transparent;
    position: absolute;
    top: 0px;
    left: 0px;
}

.slider-bttn:hover .btn-icon::after {
    display: none;
    opacity: 0.1;
}

.testimonial-area2 .owl-carousel .owl-stage-outer {
    padding: 30px 0px;
}

.video-content {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.design-one__thumb__item img {
    border-radius: 20px;
}

.design-one__thumb {
    position: relative;
}

.design-one__thumb:after {
    content: '';
    position: absolute;
    width: 64px;
    height: 355px;
    border: 3px solid #73c6ce7a;
    left: 15px;
    top: 50px;
    border-radius: 53px;
    z-index: -1;
}

.design-one__thumb:before {
    content: '';
    position: absolute;
    width: 64px;
    height: 255px;
    right: 18px;
    bottom: 30px;
    border-radius: 77px;
    background-color: #73c6ce73;
    z-index: -1;
}

/* No less than 400px, no greater than 900px */
@media (min-width:320px) and (max-width:767px) {
    .design-one__thumb__item {
        margin-top: 20px;
    }

    .video-content .sec-title {
        padding-bottom: 0px !important;
    }

}


/* .testimonial-area2 {
    margin-top: -120px;
} */

.feature-icon {
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-icon img {
    width: 80px !important;
    margin: 0px auto;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.card_btn a {
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
    display: inline-block;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 8px 18px;
    transition: all 0.3s;
    background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
    border: 0;
}

.card_btn i {
    margin-left: 10px;
    transform: rotate(-35deg);
    transition: var(--transition2);
}

.card_btn:hover i {
    transform: rotate(0);
}

@media (min-width:320px) and (max-width:767px) {
    .design-one__thumb__item img {
        width: 100%;
    }

    .design-one__thumb:after {
        display: none;
    }

    .design-one__thumb:before {
        display: none;
    }
}

@media (min-width:768px) and (max-width:1279px) {
    .design-one__thumb:before {
        right: 74px;
    }

    .design-one__thumb:after {
        left: 74px;
    }

    .testimonials-three {
        padding: 60px 0px !important;
    }

    .testimonials-card__content {
        display: block !important;
        margin-right: 0 !important;
    }
}

/*==============
13. Slider nav css 
================*/
.department-slider .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.department-slider .owl-dots .owl-dot.active span {
    background-color: var(--theme-color2);
    width: 20px;
}

.department-slider .owl-dots .owl-dot span {
    background: var(--theme-color2);
    border-radius: 50px;
    margin: 5px;
    width: 8px;
    height: 8px;
    display: inline-block;
    transition: var(--transition);
}

.testimonial-area2 .department-slider .owl-nav {
    display: none;
}


/*=======================
14. Testimonial three css
=========================*/

.testimonials-three {
    padding: 60px 0px;
    position: relative;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (min-width:320px) and (max-width:767px) {
    .testimonials-three {
        padding: 60px 0px;
    }

    .testimonials-card__content {
        align-items: center;
        margin-right: 0;
    }

    .testimonials-card::after {
        display: none;
    }

    .testimonials-card {
        border: 1px solid #d1d1d1;
        border-radius: 14px;
    }

    .testimonials-card__content {
        display: block !important;
        margin-right: 0px !important;
    }

    .testimonials-three {
        padding: 0px 0px 20px 0px;
    }

    .card_btn a {
        font-size: 16px;
        padding: 10px 16px;
    }

    .testimonials-card {
        min-height: 350px !important;
    }

    .testimonials-two__carousel {
        padding-top: 40px;
    }
}

@media (min-width:768px) and (max-width:1279px) {

    .testimonials-card::after {
        display: none;
    }

    .testimonials-card {
        border: 1px solid #d1d1d1;
        border-radius: 14px;
    }

    .testimonials-card__content {
        display: block !important;
        margin-right: 0px !important;
    }

    .testimonials-card {
        min-height: 390px !important;
    }


}

.sec-title {
    padding-bottom: 55px;
}

.testimonials-card {
    padding: 30px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border: 2px solid #ededed;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .testimonials-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: 2px solid #ededed;
    border-radius: 20px;
} */

.testimonials-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.testimonials-card__image {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-card__image img {
    object-fit: cover;
    width: 100%;
}

/* .testimonials-card__top__video a {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4EDE4;
    font-size: 20px;
    line-height: 1;
} */

.testimonials-card__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 30px;
    padding-bottom: 0;
    color: var(--text, #7E7C76);
}

.testimonials-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 150px;
}

.testimonials-card__author__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    text-transform: capitalize;
    color: var(--text-dark, #2E2A20);
    padding-bottom: 0;
    margin-bottom: 4px;
}

.testimonials-card__author__dec {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 138%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--text, #7E7C76);
    display: block;
}

.testimonials-card__rating {
    color: var(--base, #DF9E42);
    letter-spacing: 0.1em;
}

.testimonials-card__rating i:last-child {
    color: var(--text, #7E7C76);
}

.testimonials-card__quite {
    position: absolute;
    bottom: 20px;
    right: 30px;
    line-height: 0;
    font-size: 60px;
    color: var(--theme-color2);
    transition: all 0.4s ease-in-out;
}

.blog-area {
    position: relative;
}

.blog-item-info .author {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blog-item-info .author {
    top: -20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-right: 10px;
    background: #1d5560;
    border-radius: 30px 10px 10px 30px;
    margin-bottom: 0px;
}

.blog-item-info .author .thumb {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
    margin-right: 15px;
}

.blog-item-info .author .thumb {
    margin-right: 10px;
}

.blog-item-info .author .thumb img {
    width: 100%;
}

.blog-item-info .author .name {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.blog-item-info .post-info {
    position: relative;
}

.blog-item-img img {
    border-radius: 30px;
}

.blog-item-info .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #808080;
    font-weight: 400;
    margin-right: 25px;
}

.blog-item-info h4 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.4em;
    color: #081245;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.blog-item-info .post-info li span {
    margin-right: 10px;
    color: var(--theme-color2);
}

.blog-item-info h4:hover {
    color: var(--theme-color2);
}

.mt-60 {
    margin-top: 60px;
}

.blog-item .blog-item-img a img {
    border-radius: 7px;
}

.blog-item .blog-item-img img {
    width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
    border-radius: 46px;
    transition: all 0.4s ease-in-out;
}

.blog-item-img {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0px 11px 22px -9px #73c6ce66;
}

.blog-item-img:hover:after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

.blog-item-img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

@media (min-width:320px) and (max-width:767px) {
    .blog-area {
        padding-bottom: 0px;
    }
}

/*===================
 15. Single blog css 
 ====================*/

/* modal on share button */
.share_button {
    background-color: transparent;
    border: 0px;
    color: var(--color-dark);
    transition: var(--transition);
}

.share_button:hover {
    border: 0px;
    background-color: transparent;
    color: var(--color-light);
    transition: var(--transition);
}

.custom-social-modal .modal-content {
    text-align: center;
}

.custom-social-modal .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

.custom-social-modal .social-icons a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    text-align: left;
    line-height: 1.2;
}

.resp-sharing-button {
    color: #fff !important;
}

.resp-sharing-button {
    border-radius: 5px;
    transition: 25ms ease-out;
    padding: 0.5em 0.75em;
    /* font-family: poppins; */
}

.resp-sharing-button--facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.resp-sharing-button--linkedin {
    background-color: #0077b5;
    border-color: #0077b5;
}

.resp-sharing-button--whatsapp {
    background-color: #25D366;
    border-color: #25D366;
}

.resp-sharing-button--instagram {
    background-color: #E1306C;
}


.custom-social-modal .social-icons i {
    font-size: 20px;
    color: #fff;
    margin-right: 5px;
}

@media (min-width:320px) and (max-width:1024px) {
    .custom-social-modal .social-icons {
        flex-wrap: wrap;
    }

    .custom-social-modal .social-icons {
        width: 100%;
    }
}

@media (min-width:320px) and (max-width:767px) {
    .custom-social-modal .social-icons a {
        width: 100%;
    }

    .blog-details-title {
        font-size: 20px !important;
    }

    .blog-details p {
        margin-bottom: 10px;
    }

    .blog-details h3 {
        margin-bottom: 10px;
    }
}

.blog-single-content img {
    border-radius: 20px;
}

.blog-thumb-img {
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-meta .blog-meta-left ul li {
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--theme-color2);
}

.blog-meta a {
    color: var(--body-text-color);
    font-weight: 500;
}

.blog-meta a:hover {
    color: var(--theme-color);
}

.blog-details-title {
    font-size: 34px;
    color: var(--color-dark);
}

.blockqoute {
    background: var(--theme-bg-light);
    border-left: 5px solid var(--theme-color2);
    padding: 30px;
    font-size: 17px;
    font-style: italic;
    margin: 20px 0;
    border-radius: 50px 50px 50px 0;
}

.blockqoute-author {
    margin-top: 20px;
    padding-left: 60px;
    position: relative;
    color: var(--color-dark);
}

.blockqoute-author::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background: var(--theme-color2);
    left: 0;
    top: 10px;
}

.blog-details-tags {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details-tags h5 {
    color: var(--color-dark);
}

.blog-details-tags ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-tags ul a {
    background: var(--theme-bg-light);
    color: var(--color-dark);
    padding: 6px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.blog-details-tags ul a:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: var(--color-white);
    border-radius: 50px 50px 50px 0;
    box-shadow: var(--box-shadow);
    margin: 50px 0;
    padding: 20px;
}

.blog-author-img {
    width: 320px;
}

.blog-author-img img {
    border-radius: 40px 40px 40px 0;
}

.author-name {
    font-size: 22px;
    color: var(--theme-color);
    margin: 8px 0;
}

.author-info {
    padding: 0 20px;
}

.author-social {
    margin-top: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    line-height: 31px;
    text-align: center;
    border: 2px solid var(--theme-color);
    border-radius: 50px;
    margin-right: 5px;
    color: var(--theme-color);
    transition: var(--transition);
}

.author-social a:hover {
    color: var(--color-white);
    background: var(--theme-color);
}

.blog-comments {
    margin-bottom: 50px;
}

.blog-comments h3 {
    color: var(--color-dark);
}

.blog-comments-wrapper {
    margin: 30px 0;
}

.blog-comments-single {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin-top: 50px;
}

.blog-comments-single img {
    border-radius: 50%;
}

.blog-comments-content {
    padding: 0 0 0 20px;
}

.blog-comments-content span {
    font-size: 14px;
    color: var(--theme-color2);
    font-weight: 500;
}

.blog-comments-content a {
    font-weight: 500;
    margin-top: 5px;
    color: var(--theme-color2);
}

.blog-comments-content a:hover {
    color: var(--theme-color);
}

.blog-comments-content h5 {
    color: var(--color-dark);
}

.blog-comments-reply {
    margin-left: 50px;
}

.blog-comments-form {
    padding: 30px;
    margin-top: 50px;
    border-radius: 20px;
    background: var(--theme-bg-light);
}

.blog-comments-form h3 {
    margin-bottom: 20px;
}

.blog-comments-form .form-group {
    margin-bottom: 20px;
}

.blog-comments-form .form-control {
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: none;
    transition: var(--transition);
}

.blog-comments-form .form-control:focus {
    border-color: var(--theme-color2);
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}



@media all and (max-width: 767px) {
    .blog-meta {
        /* flex-direction: column; */
        font-size: 15px;
    }

    .blog-meta .blog-meta-left ul {
        gap: 10px;
    }

    .blog-details-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .author-info {
        margin-top: 25px;
    }

    .blog-comments-single {
        flex-direction: column;
        text-align: center;
        padding: 30px 0px;
        box-shadow: var(--box-shadow);
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .blog-comments-single img {
        margin: 0 auto 20px auto;
    }

    .blog-comments-reply {
        margin-left: 0px;
    }

    section.webinar_section {
        padding-top: 60px;
    }
}


/*=====================
16. Webinar single css 
=======================*/

.course-details-img {
    position: relative;
}

.course-details-img .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.course-details img {
    border-radius: 20px;
    width: 100%;
}

.course-single-info .single-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.course-single-info .author img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.course-single-info .single-info i {
    width: 50px;
    height: 50px;
    line-height: 45px;
    border-radius: 100%;
    font-size: 29px;
    color: var(--theme-color2);
    border: 2px solid var(--theme-color2);
    font-size: 20px;
    text-align: center;
}

.course-single-info .single-info-content {
    margin-top: 5px;
}

.course-single-info .single-info h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 600;
}

.course-single-list i {
    color: var(--theme-color2);
    margin-right: 12px;
}

.course-feature-list a {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    color: var(--color-dark);
    border-bottom: 1px solid var(--border-info-color);
}

.course-feature-list a:last-child {
    border-bottom: none;
}

.course-feature-list a span {
    float: right;
}

.course-feature-list a i {
    color: var(--theme-color2);
    width: 24px;
}

.course-single-sidebar .theme-btn {
    width: 100%;
    margin-top: 30px;
}

.course-single-sidebar .theme-btn::before {
    width: 350px;
    height: 350px;
}

/*============
17. Modal css
==============*/
.contact-form .form-group {
    margin-bottom: 25px;
}

.card_btn button {
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
    display: inline-block;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 8px 18px;
    transition: all 0.3s;
    background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
    border: 0;
}

.card_btn button:hover {
    border: 0;
}


/*=======================
18. Widget sidebar css
=========================*/

.widget {
    background: var(--theme-bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.widget .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 22px;
    color: var(--color-dark);
}

.widget .widget-title::before {
    position: absolute;
    content: '';
    width: 100px;
    border-bottom: 3px solid var(--theme-color2);
    bottom: 0;
    left: 0;
}

.widget .widget-title::after {
    position: absolute;
    content: '';
    width: 30px;
    border-bottom: 3px solid var(--theme-color2);
    bottom: 0;
    left: 22px;
}

.widget .search-form .form-control {
    padding: 12px 15px 12px 15px;
    border-radius: 8px;
    box-shadow: none;
}

.widget .search-form {
    position: relative;
}

.widget .search-form .form-control:focus {
    border-color: var(--theme-color);
}

.widget .search-form button {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    padding: 8px 18px 6px 18px;
    background: transparent;
    border: none;
    color: var(--theme-color2);
}

.widget .category-list a {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid #ced4da;
    transition: var(--transition);
}

.widget .category-list a:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.widget .category-list a:hover {
    padding-left: 10px;
    color: var(--theme-color2);
}

.widget .category-list a i {
    margin-right: 5px;
    color: var(--theme-color2);
}

.widget .category-list a span {
    float: right;
}

.widget .recent-post-single {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}

.widget .recent-post-img {
    margin-right: 20px;
}

.widget .recent-post-img img {
    width: 120px;
    border-radius: 10px;
}

.widget .recent-post-bio h6 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.widget .recent-post-bio span {
    font-size: 14px;
    color: var(--theme-color2);
    font-weight: 500;
}

.widget .recent-post-bio span i {
    margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
    color: var(--theme-color2);
}

.widget .social-share-link a {
    width: 35px;
    height: 35px;
    line-height: 31px;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    text-align: center;
    margin-right: 5px;
    border-radius: 50px;
    transition: var(--transition);
}

.widget .social-share-link a:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.widget .tag-list a {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 10px;
    display: inline-block;
    transition: var(--transition);
}

.widget .tag-list a:hover {
    background-color: var(--theme-color2);
    color: var(--color-white);
}

/*=====================
19. Faculty single css
=======================*/

.nav-tabs-right .nav-link {
    background: #f8f9fa;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    border: none;
    padding: 12px;
}

.nav-tabs-right .nav-link.active {
    background: #1d5560;
    color: #fff !important;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
}


.nav-tabs-right .nav-link:hover {
    background: #1d5560;
    color: #fff;
}

.view_blog,
.view_webinar,
.view_certificate {
    background: transparent;
    border-bottom: 2px solid #1d5560;
    border-radius: 0px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: #1d5560;
    padding: 4px 8px;
}

.view_blog:hover,
.view_webinar:hover,
.view_certificate:hover {
    background: #1d5560;
    border-radius: 0px;
    border: 0;
    color: #fff;
    padding: 4px 8px;
    border-bottom: 2px solid #1d5560;
}

.view_blog i,
.view_webinar i,
.view_certificate i {
    margin-left: 5px;
}

.webinar_right .card_btn_box a.card_btn {
    font-size: 16px;
    padding: 8px 12px;
}

.blog_right .card_btn a {
    font-size: 16px;
    padding: 8px 12px;
}

.blog_right .blog-item-info h4 {
    font-size: 18px;
    line-height: 1.2;
}

.blog_right .blog-item-info .post-info li {
    font-size: 14px;
}

.faculty_cover img {
    border-radius: 20px;
}

/* .faculty_banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-radius: 20px;
} */

/* Certificate Modal Specific Styles */
.certificate-modal .modal-content {
    border-radius: 12px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); */
    background-color: #00000017;
    border: 1px solid #ffffff17;
}

.certificate-modal .modal-header {
    border-bottom: 0px;
}

/* Close Button Styling */
.certificate-modal .modal-header .btn-close {
    outline: none;
    box-shadow: none;
    background-color: #fff;
}

/* Certificate Image Styling */
.certificate-img {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

h5#certificateModalTitle {
    color: #fff;
    text-transform: capitalize;
}

.certificate-img:hover {
    transform: scale(1.05);
}

/* Certificate Modal Image Styling */
.certificate-modal-img {
    max-height: 80vh;
    width: auto;
}

@media (min-width:768px) and (max-width:1279px) {
    .blog_right .blog-item-info h4 {
        height: 60px;
    }

    /* .faculty_banner {
        height: 96px;
    } */
}

@media (min-width:320px) and (max-width:767px) {
    .faculty_banner img {
        height: 150px !important;
    }

    #doctorTabs li.nav-item {
        display: contents;
    }

    .nav-tabs-right .nav-link {
        margin-bottom: 10px;
    }
}

/*========================
20. Edit profile page css 
==========================*/
.profile_cvr img {
    border-radius: 20px;
}

select#selectOption {
    box-shadow: none;
    color: #757f95 !important;
}

.toolbar select {
    box-shadow: none;
}

.wrap {
    width: 100%;
    min-width: 562px;
    margin: 60px auto 0;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: none;
    padding: 10px;
}

.toolbar {
    width: 100%;
    margin: 0 auto 10px;
}

.toolbar button {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: none;
    border: none;
    box-sizing: border-box;
    padding: 0;
    font-size: 20px;
    color: #a6a6a6;
    cursor: pointer;
    outline: none;
}

button:hover {
    border: 1px solid #a6a6a6;
    color: #777;
}

#bold,
#italic,
#underline {
    font-size: 18px;
}

#underline,
#align-right {
    margin-right: 17px;
}

#align-left {
    margin-left: 17px;
}

select {
    height: 24px;
    font-size: 15px;
    font-weight: bold;
    color: #444;
    background: #fcfcfc;
    border: 1px solid #a6a6a6;
    border-radius: 3px;
    margin: 0;
    outline: none;
    cursor: pointer;
}

select>option {
    font-size: 15px;
    background: #fafafa;
}

#fonts {
    width: 150px;
    padding: 10px;
    border-radius: 6px;
    margin-right: 8px;
}

.sp-replacer {
    background: #fcfcfc;
    padding: 1px 2px 1px 3px;
    border-radius: 3px;
    border-color: #a6a6a6;
    margin-top: -1px;
}

.sp-replacer:hover {
    border-color: #a6a6a6;
    color: inherit;
}

.sp-preview {
    width: 15px;
    height: 15px;
    border: none;
    margin-top: 2px;
    margin-right: 3px;
}

.sp-preview-inner,
.sp-alpha-inner,
.sp-thumb-inner {
    border-radius: 3px;
}

.editor {
    position: relative;
    width: 100%;
    height: 60vh;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 3px;
    box-shadow: none;
    box-sizing: border-box;
    overflow: hidden;
    word-break: break-all;
    outline: none;
}

select#size {
    width: 60px;
    padding: 10px;
    border-radius: 6px;
    color: #757f95 !important;
}

button.edit_form_submit {
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
    display: inline-block;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 8px 16px;
    transition: all 0.3s;
    background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
    border: 0;
    width: 20%;
    height: auto;
}

#fonts {
    width: 150px;
    padding: 10px;
    border-radius: 6px;
    margin-right: 8px;
    color: #757f95 !important;
}

@media (min-width:320px) and (max-width:767px) {
    button.edit_form_submit {
        width: 100%;
    }
}


/*===============
21. FAQ page css 
=================*/
button.accordion-button.collapsed {
    color: #1d5560;
    margin-bottom: 10px;
}

button.accordion-button:hover {
    color: #fff;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #73c6ce21;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.accordion-button::after {
    content: "\f107";
    /* Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: auto;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    content: "\f106";
    /* Font Awesome up arrow */
    transform: rotate(0deg);
    /* Optional: Adjust rotation if needed */
}

.accordion-button::after {
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion-item {
    border: 0px;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button:hover {
    z-index: 2;
    border: 0;
    background: #1d5560;
    color: #fff;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #1d5560;
}

.accordion-body {
    border: 1px solid #73c6ce57;
    border-radius: 4px;
    margin-bottom: 10px;
}





/*=============
22. Footer css 
===============*/
.footer-area {
    background: var(--footer-bg);
    position: relative;
    z-index: 1;
    padding: 90px 0px 20px 0px;
    background-position: center center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-widget-box img {
    height: 56px;
    width: 120px;
    object-fit: cover;
}

.footer-area .overlay {
    background-color: #1d5560;
    opacity: 0.95;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.item--inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.item--inner .item--icon {
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    min-height: 44px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
    margin-right: 15px;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color2);
    color: #fff;
}

.item--icon {
    line-height: 1;
    text-align: center;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_meta .item--title {
    font-size: 18px;
    color: #fff;
}

.item_meta a.btn-author {
    color: #B9B2B2;
    font-size: 16px;
    font-weight: 400;
}

/* .pb-70 {
    padding-bottom: 70px;
} */


.footer-widget-title span {
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.footer-widget-title span::before {
    content: "";
    width: 71px;
    height: 1px;
    display: block;
    background-color: #73c6ce;
    position: absolute;
    bottom: 5px;
    left: 0px;
}

.footer-widget-title span::after {
    content: "";
    width: 39px;
    height: 1px;
    display: block;
    background-color: #73c6ce;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition);
    display: flex;
    align-items: start;
}

ul.footer-list li a i.fa-solid.fa-feather-pointed {
    margin-right: 8px;
    color: #73c6ce;
}


.trending_post .inner-item {
    display: flex;
}

.inner_item {
    display: flex;
}

.inner_item .item_featured img {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 20px;
}

.item_meta .item_title {
    color: #FFFFFF;
    line-height: 1.8;
}

.item_meta .item_date {
    color: #DADADA;
    font-size: 14px;
}

.copyright {
    position: relative;
}

.copyright .copyright-wrapper {
    padding: 25px 0;
    border-top: 1px solid var(--border-white-color);
}

.copyright .copyright-text {
    color: var(--footer-text-color);
    margin-bottom: 0px;
    font-size: 16px;
}

.copyright .copyright-text a {
    color: var(--theme-color2);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end;
}

.footer-social li a i {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 10px 10px 10px 10px;
    background: var(--color-white);
    color: var(--theme-color2);
    transition: var(--transition);
}

.item_title a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition2);
}

.item_title a:hover {
    color: var(--theme-color2);
    transition: var(--transition2);
}

.footer-list li a:hover {
    color: var(--theme-color2);
    transition: var(--transition2);
}

@media (min-width:768px) and (max-width:1279px) {
    .footer-area {
        padding: 50px 0px 50px 0px;
    }

    .footer-widget-wrapper.pb-70 {
        padding-bottom: 20px;
    }
}

@media (min-width:320px) and (max-width:767px) {
    .footer-widget-wrapper.pb-70 {
        padding-bottom: 20px;
    }
}


/*=====================
About us page css 
=======================*/

/*==================
23. page header css 
====================*/
.page-header {
    background-color: #1d5560d6;
    position: relative;
    padding-top: 30px;
    padding-bottom: 40px;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.page-header__title {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 57px;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
}

.breadcrumb__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.breadcrumb__list li {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.breadcrumb__list li a {
    color: inherit;
    display: inline-flex;
    line-height: 1em;
}

.breadcrumb__list li i {
    margin-right: 10px;
    font-size: 13px;
}

.breadcrumb__list li:not(:last-of-type)::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    position: relative;
    top: 1px;
    font-weight: 900;
    font-size: 14px;
    margin-left: 10px;
    margin-right: 10px;
}

.breadcrumb__list li span {
    color: #73c6ce;
}

/*==========================
 24. Terms and condition css 
 ===========================*/

.contact-touch-content {
    background-color: #73c6ce29;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 16px;
    align-items: center;
    position: relative;
}

span.contact-touch-icon {
    margin-right: 15px;
}

.terms-content:first-child {
    margin-top: -3px;
}

.terms-content:not(:last-child) {
    margin-bottom: 54px;
}

.terms-content h3 {
    margin-bottom: 23px;
    position: relative;
    font-size: 28px;
}

/*======================
25. Contact us page css 
========================*/
.extra-bg {
    background-color: #1d5560;
}


.dominant-color {
    color: #1d5560d6;
}

.height-88 {
    height: 58px;
}

.width-88 {
    width: 58px;
}

.contact-touch-icon i {
    color: #fff;
}

.lh-1 {
    line-height: 1 !important;
}

.width-calc-88 {
    width: calc(100% - 88px);
}

.font-20 {
    font-size: 20px;
}

.meb-8 {
    margin-bottom: 8px;
}

.ul-mtm20 {
    margin-top: -9px;
}

.ul-mtm20 {
    display: flex;
    flex-wrap: wrap;
}

.contact-touch-content:hover::before {
    top: auto;
    height: 100%;
    bottom: 0;
}

.contact-touch-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: 0;
    width: 100%;
    height: 0;
    border-radius: 16px;
    background: #1d5560;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.contact-touch-content:hover .contact-touch-info h6 {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.contact-touch-content:hover .contact-touch-info span,
.contact-touch-content:hover .contact-touch-info span a {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.contact-touch-content:hover span.extra-bg {
    background-color: #fff;
    transition: all 0.4s ease-in-out;
}

.contact-touch-content:hover span i {
    color: #1d5560;
    transition: all 0.4s ease-in-out;
}

.contact-details-box {
    padding-left: 40px;
}

form.contact_form_main input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
form.contact_form_main textarea,
form select {
    background-color: #73c6ce29;
    padding: 20px 20px 20px 20px;
    width: 100%;
    height: 62px;
    border-radius: 16px 16px 16px 16px;
    color: #000000;
    border-style: none;
    line-height: 1.6em;
    font-weight: 400;
    font-size: 16px;
    box-shadow: none !important;
}

form.contact_form_main .form-box textarea::-webkit-input-placeholder {
    color: #777 !important;
}

form.contact_form_review input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
form textarea,
form select {
    background-color: #73c6ce29;
    padding: 20px 20px 20px 20px;
    width: 100%;
    height: 62px;
    border-radius: 16px 16px 16px 16px;
    color: #fff;
    border-style: none;
    line-height: 1.6em;
    font-weight: 400;
    font-size: 16px;
    box-shadow: none !important;
}

form.contact_form_review .form-box textarea::-webkit-input-placeholder {
    color: #fff !important;
    opacity: 0.7;
}

form textarea:focus,
form input:focus,
form select:focus {
    outline: 0;
}

.btn-icon {
    border-radius: 50px;
    padding: 17px 30px 17px 30px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
    margin: 24px 0px 0px 0px;
    font-weight: 600;
    background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
    color: #fff;
    border: 0;
}

.btn-icon:hover {
    color: #fff;
}


.btn-icon i {
    margin-left: 10px;
    transform: rotate(-35deg);
    transition: var(--transition2);
}

.btn-icon:hover i {
    transform: rotate(0);
}

.form-box .form-control {
    background-color: #73c6ce29;
    padding: 20px 20px 20px 20px;
    width: 100%;
    height: 62px;
    border-radius: 16px 16px 16px 16px;
    color: #000000;
    border-style: none;
    line-height: 1.6em;
    font-weight: 400;
    font-size: 16px;
}

@media (min-width:320px) and (max-width:767px) {
    .contact-details-box {
        padding-left: 0px;
    }
}

@media (min-width:768px) and (max-width:1279px) {
    .contact-details-box {
        padding-left: 0px;
    }
}


/*=====================
26. reviews page css 
=======================*/

.review_page form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
form textarea,
form select {
    box-shadow: 4px 4px 60px 8px rgba(0, 0, 0, 0.2);
}

.review_page form input::placeholder,
form select,
form textarea::placeholder {
    color: #fff !important;
}

.category_select option:first-child {
    color: white;
    background-color: #3367fb;
}

.category_select option {
    color: black;
    background-color: white;
}

.review_page {
    background: linear-gradient(to right, #1d5560 0%, #73c6ce 100%);
}

.review_box {
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 4px 4px 60px 8px rgba(0, 0, 0, 0.2);
}

.rating {
    font-size: 2rem;
    color: #FFBD13;
    display: flex !important;
    flex-direction: row-reverse !important;
    /* To maintain right-to-left order */
    justify-content: center !important;
}

.star-label {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}



/* When a radio input is checked, style all previous stars */
.star-radio:checked~.star-label i {
    color: #FFD700;
    /* Make selected stars solid */
}

.rating .star {
    cursor: pointer;
}

.rating .star.active {
    opacity: 0;
    animation: animate .5s calc(var(--i) * .1s) ease-in-out forwards;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.rating .star:hover {
    transform: scale(1.1);
}

@media (min-width:320px) and (max-width:767px) {
    .btn-icon:hover {
        border: 0px;
    }

    .review_box h3 {
        font-size: 23px;
    }
}

@media (min-width:768px) and (max-width:1279px) {
    .btn-icon:hover {
        border: 0px;
    }
}

@media (min-width:320px) and (max-width:767px) {
    .review_box {
        padding: 20px;
    }

    /* privacy policy css */
    .terms-content h3 {
        font-size: 23px;
    }

    .terms-content ul {
        padding: 0px 25px;
    }
}

.terms-content ul li {
    list-style: circle;
}


/*===================
27. Faculty page css 
=====================*/

.doc_details {
    padding: 40px;
    border-radius: 0px 0px 30px 30px;
}

.profile_img {
    text-align: center;
}

.edit_profile_banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-radius: 20px;
}

.profile_img img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #73c6ce;
    padding: 4px;
    margin-bottom: 10px;
}

/*==========================
 28. doctor details sidebar css 
 ===========================*/
/* Scoped Container */
.col-md-3.doctor-sidebar {
    max-width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

/* .doctor-sidebar {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
} */

.doc_details_box {
    background: #73c6ce2e;
    padding: 20px;
    border-radius: 20px;
}


/* List Styles */
.doctor-sidebar .doc_details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.doctor-sidebar .doc_details li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.doctor-sidebar .doc_details li span {
    font-weight: bold;
    min-width: 46%;
    color: #333;
}

.doctor-sidebar .doc_details li p {
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    color: #555;
    padding-left: 5px;
}

/* Remove Border for Last Item */
.doctor-sidebar .doc_details li:last-child {
    border-bottom: none;
}

/* Responsive */
@media screen and (max-width: 480px) {


    .doctor-sidebar .doc_details li {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .doctor-sidebar .doc_details li span {
        margin-bottom: 5px;
    }
}



/* New Responsive Fixes */
@media (max-width: 992px) {
    .doctor-sidebar {
        /* Custom class added */
        width: 100%;
        /* Small screens pe full width */
    }

    .doctor_info_box {
        text-align: center;
    }

    .profile_img img {
        max-width: 100%;
    }


}


@media (min-width:320px) and (max-width:767px) {
    .footer-area {
        padding: 40px 0px 60px 0px;
    }

    .footer-social {
        justify-content: start;
        margin-top: 20px;
    }

    h4.footer-widget-title {
        margin-top: 30px;
    }

    .footer-widget-title span {
        margin-bottom: 8px;
    }

    .footer-widget-box {
        padding: 0px !important;
    }
}

/*========================
 29. User profile page css
 ========================= */
.nav-tabs.nav-tabs-right .nav-item {
    flex: 1;
    text-align: center;
}

.edit_logout_box {
    text-align: center;
}

a.btn.edit_profile_btn {
    border: 1px solid #1d5560;
    color: #1d5560;
}

a.btn.edit_profile_btn:hover {
    background-color: var(--color-light);
    color: #1d5560;
}

a.btn.logout_button {
    background-color: #1d5560;
    color: #fff;
    border: 1px solid #1d5560;
}

a.btn.logout_button:hover {
    color: var(--color-light);
}

.trash_btn {
    color: #1d556057;
}

h5.certi_title {
    text-transform: capitalize;
}



/* lightbox gallery profile page(tabs page)  */
.lightbox-gallery-modal .modal-content {
    background-color: #ffffff00;
    border: 0;
    border-radius: 0;
}

.lightbox-gallery-modal button.btn-close {
    border: 1px solid #fff;
    color: #fff;
    opacity: 0.5;
}

.lightbox-gallery-modal .modal-header {
    border: 0px;
}

.lightbox-gallery-modal .modal-xl {
    --bs-modal-width: 700px;
}

.lightbox-gallery-modal .ratio-16x9 {
    --bs-aspect-ratio: 57.25%;
}

.lightbox-gallery-modal .carousel-control-prev {
    left: -50px;
}

.lightbox-gallery-modal .carousel-control-prev:hover,
.carousel-control-next:hover {
    border: none;
}

.lightbox-gallery-modal .carousel-control-next {
    right: -50px;
}

.lightbox-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.lightbox-gallery-modal .carousel-item img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

@media (min-width:320px) and (max-width:767px) {
    .lightbox-gallery-modal .carousel-control-prev {
        left: -25px;
    }

    .lightbox-gallery-modal .carousel-control-next {
        right: -25px;
    }

}

/*==========================
30. Mobile sticky menu footer
============================*/
.sticky-footer {
    display: none;
}

/* No less than 320px, no greater than 1279px */
@media (min-width:320px) and (max-width:1279px) {
    .sticky-footer {
        height: 58px;
        background: #fff;
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        z-index: 3;
        display: flex;
        box-shadow: 0px 0px 14px 0px #73c6ce6e;
    }

    .one-fourth {
        width: 25%;
        float: left;
        color: #1d5560;
        text-align: center;
        height: 58px;
        cursor: pointer;
    }

    .one-fourth i {
        width: 25px;
        height: 25px;
        margin: auto;
        margin-top: 11px;
    }

    .one-fourth p {
        font-size: 10px;
        margin-top: 3px;
    }
}

/* webinar slider css */


#news-slider {
    margin-top: 40px;
}

.post-slide {
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
}

.post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px 15px 8px 15px;
    margin-left: -10px;
}

.post-slide .post-img img {
    width: 100%;
    height: 250px;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
    object-fit: fill;
}

.post-slide:hover .post-img img {
    transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(45deg, rgb(29 85 96 / 30%) 0%, rgb(115 198 206 / 72%) 100%);
    transition: all 0.50s linear;
}

.post-slide:hover .over-layer {
    opacity: 1;
    text-decoration: none;
}

.post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
}

.post-slide .post-content {
    background: #fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
}

.post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: var(--theme-color);
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    font-family: var(--heading-font);
}

.webinar_section .post-slide .post-title a {
    height: 48px;
}

.post-slide .post-title a:hover {
    text-decoration: none;
    color: var(--theme-color2);
}

.post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
}

.post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
}

.post-slide .post-date i {
    font-size: 20px;
    margin-right: 8px;
    color: #CFDACE;
}

.post-slide .read-more {
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}

.post-slide .read-more:hover {
    background: #3498db;
    text-decoration: none;
    color: #fff;
}

.webinar-slider .owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

.webinar-slider .owl-controls .owl-buttons .owl-prev {
    background: #fff;
    position: absolute;
    top: -13%;
    left: 15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.webinar-slider .owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.webinar-slider .owl-controls .owl-buttons .owl-prev:after,
.webinar-slider .owl-controls .owl-buttons .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: #333;
    font-size: 30px;
}

.webinar-slider .owl-controls .owl-buttons .owl-next:after {
    content: "\f105";
}

@media only screen and (max-width:1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}

/* No less than 320px, no greater than 767px */
@media (min-width:320px) and (max-width:767px) {
    #news-slider {
        margin-top: 20px;
    }

    .card_btn_box a.card_btn {
        font-size: 16px;
        padding: 8px 10px;
    }

    .pb-60 {
        padding-bottom: 0px;
    }
}


/***********************
 team page css starts 
 ***********************/
.speaker-detail-section {
    position: relative;
    padding: 60px 0;
}

.speaker-details {
    position: relative;
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 30px;
}

.speaker-details .name {
    font-size: 30px;
    line-height: 1em;
    color: #1d5560;
    font-weight: 600;
    margin-bottom: 10px;
}

.speaker-info-list li p {
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    color: #555;
    padding-left: 5px;
}

.speaker-details .name a {
    color: #1d5560;
}

.speaker-details .designation {
    font-size: 14px;
    color: #ffba00;
}

.speaker-info-list {
    margin-top: 40px;
}

.speaker-info-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 18px;
    color: #555555;
}

.speaker-info-list li strong {
    display: block;
    font-weight: 600;
    color: #1d5560;
    min-width: 140px;
}

.speaker-detail-section .info-column h3 {
    font-size: 30px;
    line-height: 1.2em;
    color: #1d5560;
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-detail-section .info-column p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.team-social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: start;
}

.team-social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid rgba(10, 3, 31, 0.16);
    text-align: center;
    color: var(--header);
}

.team-social-icon a:hover {
    background-color: var(--theme-color);
    color: var(--color-white);
}

.motivation_box {
    position: relative;
    padding-top: 2.5rem;
    /* Extra top padding for the icon */
}

.motivation_box::before {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -35px;
    left: -14px;
    font-size: 46px;
    color: #000;
    opacity: 0.1;
    pointer-events: none;
}



/* No less than 320px, no greater than767px */
@media (min-width:320px) and (max-width:440px) {
    .speaker-details {
        padding-left: 0px;
    }
}