@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300&display=swap');
@import url('https://use.fontawesome.com/releases/v5.0.1/css/all.css');

:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #ca3b0b;
    --second-color: #ff5d06;
    --white-color: #f8f9fa;
    --black-color: black;
    --body-font: 'Nunito Sans';
    --normal-font-size: 16px;
    --z-fixed: 100
}

@-moz-document url-prefix() {

    select,
    option {
        font-family: 'Nunito', sans-serif;
        font-weight: 400 !important;
    }
}

body {
    font-family: var(--body-font) !important;
    color: var(--first-color);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--first-color);
}

.signout-mobile {
    display: none;
}

.header .container .row {
    justify-content: space-between;
}

.form-section .form {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.dropdown-active {
    padding-top: 12px !important;
}


/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/

.section-gallery a {
    text-decoration: none;
}

.gallery .gallery-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

.gallery .gallery-box .icon {
    font-size: 36px;
    padding: 40px 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
}

.gallery .gallery-box h3 {
    color: #444444;
    font-weight: 700;
}

.gallery .gallery-box .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
}

.gallery .gallery-box .read-more i {
    line-height: 0;
    margin-left: 5px;
    font-size: 18px;
}

.gallery .gallery-box.blue {
    border-bottom: 3px solid #1a41aa;
}

.gallery img {
    height: 165px;
    padding: 10px;
}

.gallery .gallery-box.blue .icon {
    color: #1a41aa;
    background: #dbf3fe;
}

.gallery .gallery-box.blue .read-more {
    color: #1a41aa;
}

.gallery .gallery-box.blue:hover {
    background: #1a41aa;
}

.gallery .gallery-box:hover img {
    transition: 0.5s;
    transform: scale(1.1);
    content: url(../images/white.png);
}

.gallery .gallery-box.orange {
    border-bottom: 3px solid #9d0105;
}

.gallery .gallery-box.orange .icon {
    color: #9d0105;
    background: #e7aeb0;
}

.gallery .gallery-box.orange .read-more {
    color: #9d0105;
}

.gallery .gallery-box.orange:hover {
    background: #9d0105;
}

.gallery .gallery-box.green {
    border-bottom: 3px solid #608f69;
}

.gallery .gallery-box.green .icon {
    color: #608f69;
    background: #cffddf;
}

.gallery .gallery-box.green .read-more {
    color: #608f69;
}

.gallery .gallery-box.green:hover {
    background: #608f69;
}

.gallery .gallery-box:hover h3,
.gallery .gallery-box:hover p,
.gallery .gallery-box:hover .read-more {
    color: #fff;
}

.gallery .gallery-box:hover .icon {
    background: #fff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--first-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--first-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.tab {
    overflow: hidden;
}

.tab button {
    width: 100PX;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab button:hover {
    background-color: white;
    color: var(--second-color);
    font-weight: bold;
    border: 1px solid var(--second-color);
    border-bottom: none;
}

.tab button.active {
    border: 1px solid var(--second-color);
    border-bottom: none;
    color: var(--second-color);
    font-weight: bold;
    background: white;
}

.tabcontent {
    display: none;
    padding: 20px 12px;
    border: 1px solid var(--second-color);
    background: white;
}

.notes {
    height: 100%;
    font-size: 13px;
    background-color: white;
    padding: 10px;
    border: 1px solid var(--first-color);
}

.notes .heading {
    padding: 5px;
    background-color: var(--first-color);
    color: white;
    margin-bottom: 15px;
}

.notes li {
    margin: 5px;
}

.notes ol {
    padding-left: 1.5rem;
}

.accept-condition a {
    color: var(--first-color);
    text-decoration: none;
}

.form-reg {
    width: 100%;
    border-radius: 10px;
    padding: 10px 35px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.white-hover:hover {
    background-color: var(--white-color);

}

.btn-group .signup {
    background-color: var(--first-color);
    color: var(--white-color);
}

.btn-group .signup:hover {
    color: var(--white-color);
}

.btn-group .signin {
    background-color: #1f1f24;
    color: var(--white-color);
}

.btn-group .signin:hover {
    color: var(--white-color);
}

.p-nav {
    padding: 13px 13px;
    font-size: var(--normal-font-size);
}

.p-nav-sub {
    padding: 10px 16px !important;
    font-size: var(--normal-font-size);
}

.nav-link {
    color: var(--first-color) !important;
}

.form-control {
    border-radius: 0px !important;
}

.form-select {
    border-radius: 0px !important;
}

.servererror-login-width {
    width: 58%;
    font-size: 14px;
}

.dropdown-menu a {
    color: var(--first-color);
    background-color: var(--white-color);
}

.dropdown-menu a:hover {
    background-color: var(--first-color);
    color: var(--white-color);
}

.dropdown2:hover>.dropdown-menu,
.dropdown2:hover>.dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.1rem;
}

.dropend:hover>.dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
}

.submit-btn {
    background-color: var(--first-color) !important;
    color: var(--white-color) !important;
}

.error {
    border-color: red !important;
    color: red;
}

.login-bg-inp {
    width: 100%;
    border-radius: 10px 0px 0px 10px;
    padding: 26px 50px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.login-bg {
    width: 100%;
    border-radius: 10px 0px 0px 10px;
    /* padding: 0px 50px; */
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.alignment {
    text-align: -webkit-center;
}

.login-text {
    text-align: left;
}

.log-img {
    background-color: var(--second-color);
}

.form-bg {
    background: #efefef;
    border-radius: 5px;
    padding: 50px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.login-bg-img {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    height: 400px;
}

.login-image {
    border-radius: 0px 10px 10px 0px;

}

.login-img {
    height: 400px;
    border-radius: 0px 10px 10px 0px;

}

.header-bottom {
    background-color: #F03C02;
    color: white !important;
    padding: 15px !important;
    font-size: 12px;
}

.header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bottom a {
    color: white !important;
}

.navbar a {
    color: var(--first-color);
    text-decoration: none;
}

.navbar>ul>li>a:hover {
    color: var(--first-color) !important;
    text-decoration: none;
}

nav#navbar {
    justify-content: end;
}

.section-about {
    display: flex;

}

.title-heading h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 70px;
    height: 3px;
    background: var(--first-color);
}

.section-header h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 70px;
    height: 3px;
    background: var(--first-color);
}

.section-about p b {
    color: var(--first-color);
}

.section-about .about {
    padding: 2rem 2rem;
    background-color: white;
    border-radius: 10px 0px 0px 10px;
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
}

.section-about .img {
    /* text-align-last: end; */
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
}

.section-about img {
    height: 20rem;
    border-radius: 0px 10px 10px 0px;
}

.btn-read-more {
    text-decoration: none;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: var(--first-color);
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.btn-read-more span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

.btn-read-more:hover i {
    color: white;
}

.btn-read-more:hover {
    color: white;
}

.header {
    position: sticky;
    top: 0;
    background: white;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid #fff;
    box-shadow: 0px 0px 9px -1px #111;
}

header .container {
    justify-content: space-between;
}

.header {
    justify-content: center;
}

/* responsive  */
@media only screen and (max-width: 600px) {
    .section-about {
        display: block;
    }

    .section-about .about {
        border-radius: 10px 10px 0px 0px;
    }

    .section-about img {
        height: auto;
        border-radius: 0px 0px 10px 10px;
        width: 99%;
    }

    .section-about .about {
        padding: 1rem;
    }

    .login-bg-inp {
        width: 100% !important;
        border-radius: 5px 5px 0px 0px !important;
        align-self: center;
    }

    .servererror-login-width {
        width: 100%;

    }

    .login-flex {
        display: flex !important;
        flex-direction: column !important;
    }

    .login-img {
        height: 100%;
        width: 100% !important;
        border-radius: 0px 0px 5px 5px !important;
    }

    .login-bg-img {
        width: 100%;
        align-self: center;
    }

    .footer {
        display: flex;
        padding: 25px 0;
        flex-direction: column;
    }

    .bfooter {
        display: flex;
        background-color: #0a0a0a;
        color: var(--white-color);
        justify-content: center;
        padding: 8px 40px;
        flex-direction: column;
    }
}

@media (max-width: 1199px) {
    .p-nav {
        padding: 11px 4px;
    }

    .col-md-6.menu-view {
        width: 40% !important;
    }

    .col-md-2.profile-view {
        width: 25% !important;
        display: none;
    }

    .signout-mobile {
        display: block;
    }

    .activity {
        padding: 10px !important;
    }

    .activity-1 {
        padding: 24px 10px;
    }

    .activity-1 img {
        height: 319px !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 380px) {

    nav img {
        width: 16rem;
    }
}

@media (max-width: 380px) {

    nav img {
        width: 16rem;
    }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .user-nav .btngroup-mobile {
        display: none;
    }

    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px;

    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        /* font-family: var(--font-secondary); */
        /* font-size: 16px; */
        /* font-weight: 600; */
        /* color: #7f7f90; */
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--first-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    /* .navbar>ul>li>a:active {} */

    /* .navbar .dropdown .nav-item:active {
        background-color: var(--first-color);
    } */

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar .dropdown li .active,
    .navbar .dropdown li:hover {
        background-color: var(--first-color);
        color: white;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        /* left: 28px; */
        top: calc(100% + 30px);
        margin: 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        text-transform: none;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--white-color);
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .action .menu {
        right: 0 !important;
    }

    .notes {
        margin-top: 20px;
    }

    .header .btngroup-desktop {
        display: none;
    }

    .header-img {
        height: 77px;
    }

    header .container {
        justify-content: space-between;
    }

    .navbar {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 375px;
        border-left: 1px solid #666;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.8);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar li:hover>a {
        color: var(--second-color);
    }

    .navbar .active,
    .navbar .active:focus {
        color: var(--first-color);
        font-weight: bold;
        border-color: var(--first-color);
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #eee;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: var(--first-color);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin: 0 10px 0 20px;
    }

    .mobile-nav-hide {
        color: var(--first-color);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.8);
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
    height: 100%;
    background-color: var(--first-color);
    padding: 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
    width: 100%;
    background-color: var(--second-color);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item p a {
    color: white;
    text-decoration: none;
}

.contact .info-item:hover i {
    background: #fff;
    color: var(--first-color);
}

.contact .php-email-form {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 0 10px 10px 0;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form button[type=submit] {
    background: var(--first-color);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form a.btn {
    background: var(--first-color);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form a.btn:hover {
    background: var(--first-color);
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-img {
    position: relative;
    text-align: center;
    color: white;
    background-size: cover;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
    border-radius: 8px;
    overflow: hidden;
}

.services .img img {
    transition: 0.6s;
}

.services .details {
    padding: 50px 30px 10px 30px;
    margin: -74px 20px 0 20px;
    transition: all ease-in-out 0.3s;
    background: black;
    position: relative;
    background: white;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(72, 86, 100, 0.1);
}

.services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--first-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    border: 6px solid white;
}

.services .details h3 {
    color: black;
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.services .details p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover .details h3 {
    color: var(--first-color);
}

.service-item .read-more {
    color: black;
    text-decoration: none;
}

.services .service-item:hover .details .icon {
    background: white;
    border: 2px solid var(--first-color);
}

.services .service-item:hover .details .icon i {
    color: var(--first-color);
}

.services .service-item:hover .img img {
    transform: scale(1.2);
}

a.stretched-link {
    text-decoration: none;
}

.details.position-relative {
    border-bottom: solid 3px transparent;
}

.services .service-item:hover .details.position-relative {
    transform: translateY(-5px);
    border-bottom: solid 3px var(--first-color);
}

/*--------------------------------------------------------------
# Utsav Photos
--------------------------------------------------------------*/

.services .details-1 {
    padding: 10px 30px;
    transition: all ease-in-out 0.3s;
    background: black;
    position: relative;
    background: white;
    text-align: center;
    box-shadow: 0px 0 25px rgba(72, 86, 100, 0.1);
    border: solid 1px #80808052;
}

.services .details-1 .icon {
    display: none !important;
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--first-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    border: 6px solid white;
}

.services .details-1 h3 {
    color: black;
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.services .details-1 p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover .details-1 h3 {
    color: var(--first-color);
}

.services .service-item:hover .details-1 .icon {
    background: white;
    border: 2px solid var(--first-color);
}

.services .service-item:hover .details-1 .icon i {
    color: var(--first-color);
}

/* .details-1.position-relative {
    border-bottom: solid 3px transparent;
} */

.services .service-item:hover .details-1.position-relative {
    transform: translateY(-5px);
    border-bottom: solid 1px var(--first-color);
}

.services .img-1 {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.services .service-item:hover .img-1 img {
    transform: scale(1.2);
}

.services .img-1 img {
    transition: 0.6s;
}

/* balkrishna */
.btn-download {
    text-decoration: none;
    line-height: 0;
    padding: 15px 15px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: var(--first-color);
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
    width: 200px;
}

.btn-download span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-download i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

/* .btn-download:hover i {
    transform: translateY(5px);
} */
/* .btn-download:hover i {
    color: white;
} */

.btn-download:hover {
    color: white;
}

.col-xl-8.col-md-6.aos-init.aos-animate {
    align-self: center;
}

.pdf-section {
    box-shadow: 0px 5px 25px rgb(65 84 241 / 30%);
    padding: 50px 50px;
    border-radius: 8px;
}

/* # Our trustee Section --------------------------------------------------------------*/

.services .trustee-item {
    padding: 30px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
    text-align: -webkit-center;
    box-shadow: 0px 0 26px rgb(0 66 111 / 16%);
}

.services .trustee-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .trustee-item .icon i {
    color: black;
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .trustee-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #eeeeee;
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
}

.services .trustee-item h3 {
    color: var(--first-color);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #eeeeee;
    transition: 0.3s;
}

.services .trustee-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .trustee-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: var(--first-color);
}

/*
.services .trustee-item:hover .icon:before {
    background: var(--first-color);
} */

.services .trustee-item:hover h3 {
    border-color: var(--first-color);
}

.services .trustee-item i {
    color: var(--first-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 0px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #fff;
    border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--first-color);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }

    .enter-backend {
        display: block !important;
        text-align: center !important;
        padding: 1rem !important;
    }

    .enter-backend .enter-btn {
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.team .member img {
    border-radius: 10px;
    overflow: hidden;
}

.team .member .member-content {
    padding: 0 20px 30px 20px;
}

.team .member h4 {
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 20px;
}

.team .member span {
    display: block;
    font-size: 15px;
    color: black;
    font-weight: 900;
    padding-top: 15px;
}

.team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #6c757d;
}

.team .member .social {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.team .member .social a {
    color: #a2a2a2;
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbbbbb;
}

.team .member .social a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .member h6 {
    font-family: sans-serif;
    font-size: 14px;
    font-style: italic;
    color: grey;
}

@media(min-width:768px) {
    .carousel-item img {
        height: 302px;
    }
}

/* activities */
.activity {
    background: white;
    box-shadow: 0px 2px 37px rgb(0 0 0 / 20%);
    padding: 40px;
    border-radius: 10px;
}

.activity-1 {
    background: white;
    box-shadow: 0px 2px 37px rgb(0 0 0 / 20%);
    padding: 19px 10px;
    border-radius: 10px;
    text-align: center;
}

.activity-1 img {
    height: 366px;
    border-radius: 10px;
}

.quote-icon-left {
    color: var(--first-color);
    font-size: 26px;
    line-height: 0;
    display: inline-block;
    left: -5px;
    position: relative;
}

.quote-icon-right {
    color: var(--first-color);
    font-size: 26px;
    line-height: 0;
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.check-icon {
    color: var(--first-color) !important;
    font-size: 23px !important;
}

.activity h4 {
    font-size: 20px;
    font-weight: bold;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.about .call-us {
    left: 10%;
    right: 10%;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
}

.about .call-us h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about .call-us p {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--color-primary);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(0, 131, 116, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.about .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.about-content p b {
    color: var(--first-color);
}

/* .swami-img {
    border-radius: 10px;
} */

section#about {
    background: white;
    box-shadow: 0px 2px 25px rgb(0 0 0 / 24%);
    border-radius: 10px;
    padding: 30px;
}

img.img-fluid.rounded-4.swami-img {
    border: solid 2px #000;
    border-radius: 10px;
}

img.img-fluid.rounded-4.swami-sadguru {
    border: solid 2px #000;
    border-radius: 10px;
}

img.img-fluid.rounded-4.swami-img-1 {
    display: none;
}

/* header button */
.sign button.btn.btn-danger.sign-up {
    background: #000;
    border: #000;
}

.sign button.btn.btn-danger.sign-in {
    background: var(--first-color);
    border: var(--first-color);
}

.sign-btn button.btn.btn-danger {
    display: none;
}

.bottom-btn {
    display: none;
}

@media(max-width:767px) {
    .bottom-btn {
        overflow: hidden;
        display: block;
        position: fixed;
        bottom: 0;
        width: 99%;
        z-index: 999;
    }

    .bottom-btn button.btn.btn-danger.sign-up {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        width: 50%;
        border-radius: 0px;
        background-color: #000;
        border: #000;
    }

    .bottom-btn button.btn.btn-danger.sign-in {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        width: 50%;
        border-radius: 0px;
        background-color: var(--first-color);
        border: var(--first-color);
    }

    .sign button.btn.btn-danger.sign-up {
        display: none;
    }

    .sign button.btn.btn-danger.sign-in {
        display: none;
    }

    .sign-btn button.btn.btn-danger {
        display: block;
    }

    .sign-btn button.btn.btn-danger.sign-up {
        background: var(--first-color);
        border: var(--first-color);
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        width: 50%;
        border-radius: 0px;
    }

    .sign-btn button.btn.btn-danger.sign-in {
        background: #000;
        border: #000;
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        width: 50%;
        border-radius: 0px;
    }

    .back-to-top {
        bottom: 60px;
    }

    .form-img.info-container.form-img.d-flex.flex-column.align-items-center.justify-content-center {
        height: 318px;
    }

    img.img-fluid.rounded-4.swami-sadguru {
        display: none;
    }

    img.img-fluid.rounded-4.swami-img-1 {
        display: block;
        border: solid 2px #000;
        border-radius: 10px;
    }

    .suratkar {
        text-align: center;
    }

    a.view-pdf {
        display: none !important;
    }

    .login-image {
        height: 310px;

    }

    .logo-view {
        width: 70% !important;
    }

    .col-md-6.menu-view {
        width: 15% !important;
    }

    .col-md-2.profile-view {
        width: 15% !important;
    }

    .signout-mobile {
        display: block;
    }
}

@media(max-width:1280px) {
    .menu-view {
        width: 45% !important;
    }

    .profile-view {
        width: 25% !important;
        display: none;
    }

    .signout-mobile {
        display: block;
    }
}

/* Celender */
#calendar {
    /* width: 700px; */
    margin: 0 auto;
}

.response {
    height: 60px;
}

.success {
    background: #cdf3cd;
    padding: 10px 60px;
    border: #c3e6c3 1px solid;
    display: inline-block;
}

.details-section {
    background-color: rgba(195, 202, 216, .3);
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

button#button-addon2 {
    background-color: var(--first-color);
    color: white;
    border: solid 1px var(--first-color);
    border-radius: 0px 5px 5px 0px;
}

button.button-addon {
    background-color: var(--first-color);
    color: white;
    border: solid 1px var(--first-color);
    border-radius: 0px 5px 5px 0px;
}

button.button-addon:hover {
    background-color: var(--first-color);
}

button.btn.submit-btn.m-0.login-submit {
    width: 100%;
    border-radius: 26px;
}


.action {
    text-align: -webkit-right;
}

.action .profile {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.action .profile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #bcbdbf;
    border-radius: 50px;
}

.action .menu {
    position: absolute;
    top: 120px;
    /* right: 100px; */
    padding: 10px 20px;
    background: #fff;
    width: 200px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
    border-radius: 15px;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}

.action .menu.active {
    top: 80px;
    visibility: visible;
    opacity: 1;
}

.action .menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
}

.action .menu h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
    font-weight: 500;
    color: #555;
    line-height: 1.5em;
}

.action .menu h3 span {
    font-size: 14px;
    color: #cecece;
    font-weight: 300;
}

.action .menu ul li {
    list-style: none;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.action .menu ul li img {
    max-width: 20px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.5s;
}

.action .menu ul li:hover img {
    opacity: 1;
}

.action .menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.5s;
}

.action .menu ul li:hover a {
    color: var(--first-color);
}

.register {
    font-family: sans-serif;
    font-size: 15px;
}

#eventModal h5 {
    color: var(--first-color);
    font-weight: 600;
    margin-bottom: 10px;
}

#eventModal h6 {
    color: var(--first-color);
    font-weight: 600;
}

#eventModal img {
    height: 150px;
    border-radius: 5px;
    margin-bottom: 15px;
}

#eventModal .popup-close {
    width: -webkit-fill-available;
}

.news-events span {
    color: var(--first-color);
}

p.description {
    overflow-wrap: break-word;
}

.col-md-4.home-marquee {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

/* lightbox */
.box-container {
    display: inline-block;
    margin: 0;
    padding: 0;
    /* margin-top: 1.4em; */
    width: 100%;
}

.box {
    list-style-type: none;
    float: left;
    opacity: 0;
    /* transform: translate3d(0, 40px, 0); */
    transition: opacity 0.2s, transform 0.35s;
}

.box.show {
    opacity: 1;

}

.box .inner {
    padding: 10px;
    position: relative;
}

.box a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.box img {
    width: calc(100% + 50px);
    max-width: calc(100% + 0px);
    height:250px;
}

.box a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s;
}

.three-cols .box {
    width: 100%;
}

.four-cols .box {
    width: 25%;
}

.four-cols .box:nth-child(4n+0) {
    margin-right: 0;
}

.four-cols .box:nth-child(4n+1) {
    clear: both;
    margin-left: 0;
}

.options-list {
    width: 700px;
    margin: 0 auto;
    border: 1px solid #ececec;
    border-radius: 2px;
}

.options-list .option {
    overflow: hidden;
    border-bottom: 1px solid #ececec;
}

.options-list .option .name {
    font-weight: 600;
    display: inline-block;
    width: 23%;
    float: left;
    text-align: left;
    padding: 14px 17px;
    color: #000;
    font-size: 0.89em;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif !important;
}

.options-list .option .value {
    display: inline-block;
    width: 65%;
    float: left;
    padding: 14px 17px;
    text-align: left;
    line-height: 1.7em;
    font-size: 0.89em;
    border-left: 1px solid #eee;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif !important;
}

.options-list .option .type {
    color: #ed7205;
    font-weight: 600;
}

.params-list {
    margin-bottom: 11em;
}

.option-code {
    width: 700px;
    margin: 0 auto;
    border: 1px solid #ececec;
    border-radius: 2px;
    padding-left: 20px;
    padding-top: 0;
    margin-bottom: 48px;
}

.inline-inner {
    padding: 40px;
}

.inline-close-btn {
    background: #FFC107;
    width: 200px;
    display: block;
    margin: auto;
    height: 53px;
    text-align: center;
    line-height: 53px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 5px;
    border: 2px solid #eee;
}

.inline-close-btn:hover {
    border-color: #000;
}

@media (min-width: 390px) {
    .three-cols .box {
        width: 50%;
    }
}


@media (min-width: 576px) {
    .intro h1 {
        font-size: 4.3em;
    }

    .intro {
        max-height: 70vh;
        min-height: 640px;
        padding-top: 0px;
    }

    .intro h1,
    .tagline {
        text-align: left;
    }

    .tagline {
        font-size: 100%;
    }

    .three-cols .box {
        width: 33.3%;
    }

    .three-cols .box:nth-child(3n+0) {
        margin-right: 0;
    }

    .three-cols .box:nth-child(3n+1) {
        margin-left: 0;
    }

    .mcbutton {
        width: auto;
    }
}


@media (min-width: 992px) {
    .box:hover img {
        transform: translate3d(0, 0, 0);
        transition: opacity 0.35s, transform 0.35s;
    }

    .box:hover a::before {
        opacity: 0.3;
        transition: opacity 0.5s;
    }
}

.field-icon {
    float: right;
    margin-right: 10px;
    margin-top: -26px;
    position: relative;
    z-index: 2;
}

#yearlyTab #note {
    color: var(--first-color);
}

div#ui-datepicker-div {
    z-index: 999 !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background-color: var(--first-color) !important;
    color: white !important;
}

.ui-datepicker .ui-state-active {
    border: 1px solid #c5c5c5 !important;
    background: #f7f6fb !important;
    font-weight: normal;
    color: black !important;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
    border: 1px solid var(--first-color) !important;
    background: var(--first-color) !important;
    color: white !important;
}

.ui-datepicker .ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: none !important;
    background: #f7f6fb !important;
    font-weight: normal;
    color: black !important;
}

.section-header h2 {
    font-size: 26px;
}

.user-profile-details {
    border: 1px solid var(--first-color);
}

.about-text {
    background: white;
    box-shadow: 0px 2px 37px rgb(0 0 0 / 20%);
    padding: 50px 51px;
    border-radius: 10px;
}

.about-img {
    background: white;
    box-shadow: 0px 2px 37px rgb(0 0 0 / 20%);
    padding: 8px 20px;
    border-radius: 10px;
    text-align: center;
}

.about-img img {
    height: 286px;
    border-radius: 10px;
}

@media(max-width:768px) {
    .about-img img {
        height: 258px;
    }

    .about-img {
        margin-top: 10px;
    }

    .about-text {
        padding: 38px 23px;
    }

    .activity-1 img {
        height: 292px !important;
        border-radius: 10px;
    }

    .activity {
        padding: 20px !important;
    }

    .activity-1 {
        padding: 18px 10px !important;
        margin-top: 10px;
    }

    .col-md.select-dates {
        margin-left: 0px !important;
        margin-top: 10px !important;
    }

}

@media(max-width:991px) {
    .activity-1 {
        padding: 46px 10px;
    }

    .activity-1 img {
        height: 297px !important;
        border-radius: 10px !important;
    }
}

.col-md.select-dates {
    margin-left: 10px;
    margin-top: 43px;
}

.about-text p b {
    color: var(--first-color);
}

.fc-row.fc-week.ui-widget-content {
    height: 55px !important;
}

.fc-scroller.fc-day-grid-container {
    height: 336px !important;
}

/* .form-e-donation .btn {
    background: var(--first-color);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
} */
.disclaimer h5 {
    font-weight: bold;
    font-size: 17px;
    color: var(--first-color);
}

.loader {
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.loader div {
    height: 30px;
    width: 30px;
    position: absolute;
    animation: move 4s infinite;
}

.loader div:nth-child(1) {
    background-color: rgb(158, 136, 246);
    box-shadow: rgb(158, 136, 246) 0px 7px 29px 0px;
    transform: translate(-30px, -30px);
    animation-delay: -1s;
}

.loader div:nth-child(2) {
    background-color: rgb(97, 183, 253);
    box-shadow: rgb(97, 183, 253) 0px 7px 29px 0px;
    transform: translate(30px, -30px);
    animation-delay: -2s;
}

.loader div:nth-child(3) {
    background-color: rgb(95, 249, 175);
    box-shadow: rgb(95, 249, 175) 0px 7px 29px 0px;
    transform: translate(30px, 30px);
    animation-delay: -3s;
}

.loader div:nth-child(4) {
    background-color: rgb(243, 171, 89);
    box-shadow: rgb(243, 171, 89) 0px 7px 29px 0px;
    transform: translate(-30px, 30px);
    animation-delay: -4s;
}

@keyframes move {
    0% {
        transform: translate(-30px, -30px);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(30px, 30px);
    }

    75% {
        transform: translate(-30px, 30px);
    }

    100% {
        transform: translate(-30px, -30px);
    }
}

.book-list .tile {
    background-color: indianred;
}

.book-list .tile .text-icon {
    font-family: emoji;
    text-align: center;
    height: 50px;
    width: 50px;
    padding: 9px;
    border-radius: 50px;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    background-color: white;
}

.book-list .tile .row {
    align-items: center;
}

/* Booking List Styles */

.bookings-list {
    margin: 1rem;
}

.bookings-list li {
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    margin-bottom: 1rem;
    padding: 1rem;
}

.booking-icon {
    border-radius: 50px;
    text-align: center;
    margin-right: 1rem;
    background: darkgray;
    height: 50px;
    width: 50px;
    align-self: center;
    padding: 14px;
}

.booking-icon img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.booking-details h2 {
    margin-top: 0;
}

.booking-details p {
    margin: 0;
}

.booking-details a {
    display: block;
    margin-top: 1rem;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .bookings-list li {
        flex-direction: column;
    }

    .booking-icon {
        margin: 0 auto 1rem;
    }

    .booking-details {
        text-align: center;
    }
}

.dropdown .header_img {
    height: 50px;
    width: 50px;
    padding: 8px;
    background-color: var(--white-color);
    border: 1px solid var(--first-color);
    border-radius: 50px;
    cursor: pointer;
}

.enter-backend {
    display: flex;
    box-shadow: 0px 2px 37px rgb(0 0 0 / 20%);
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    box-shadow: 0px 2px 37px rgb(0 0 0 / 20%);
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    padding-left: 5rem;
}

.enter-backend .enter-img img {
    border-radius: 0px 10px 10px 0px;
}

.add-more-member {
    padding: 25px;
    position: relative;
    background: white;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 50px rgba(72, 86, 100, 0.1);
    color: var(--first-color);
    height: 100%;
    line-height: 100px;
    font-size: 35px;
}

@media (max-width:768px) {
    .add-more-member {
        /* margin-top: 10px; */
    }
}

.member-edit-icon {
    color: var(--first-color);
}

.gbox {
    padding: 10px;
    cursor: pointer;
}

.sign-out {
    background-color: var(--first-color) !important;
}