/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */

body {
    background: #fff;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #6e84bb !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: #cfcd2c !important;
    border: 1px solid #cfcd2c;
}

.btn.btn-secondary {
    background: transparent;
    color: #6e84bb;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: #cfcd2c !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #6e84bb;
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid #cfcd2c !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid #6e84bb !important;
}

.section-title h1 {
    font-weight: bold;
    color: #6e84bb;
}

.section-title p {
    font-size: 18px;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #7f99da;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid #cfcd2c !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid #6e84bb !important;
}

/*** Navbar Start ***/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: white;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

#header.header-inner-pages {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#header .logo a {
    color: #556270;
}

#header .logo img {
    max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #556270;
    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 .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #cfcd2c;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #6e84bb;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    font-weight: 400;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #cfcd2c;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
}

.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: #cfcd2c;
}

.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 (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #556270;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(63, 73, 83, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #cfcd2c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #cfcd2c;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    /* background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png); */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

/*** Single Page Hero Header End ***/

.hero-slider {
    position: relative;
    top: 40px;
    height: 90vh;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: clamp(16px, 6vw, 64px);
    max-width: 900px;
}

.cta {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    background: #ff7a59;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}


.dots {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    display: none;

    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all .25s;
}

.dot.active {
    width: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
}

/* small decorative image on right (optional) */
.hero-visual {
    /* margin-right: 30px; */
    margin-left: 50px;
    width: 450px;
    max-width: 40%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

@media (max-width:980px) {
    .hero-visual {
        display: none;
    }

    .hero-slider {
        position: relative;
        top: 40px;
        height: 60vh;
        overflow: hidden;
    }
}

.btn.prev,
.btn.next {
    display: none !important;
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    width: 100%;
    overflow: hidden;
    /* Prevent horizontal scroll */
}

.carousel-header .carousel-inner,
.carousel-header .carousel-item {
    width: 100%;
    height: 100vh;
    /* Full viewport height */
}

.carousel-header .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Makes the image cover the container */
}


.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}

/*** Carousel Hero Header End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: #6e84bb;
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

/* .service .service-item .service-inner .service-title .service-content a {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
} */

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/


/***** why choose us ****/

.why .cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.why .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.why .card .icon {
    font-size: 40px;
    color: #6e84bb;
    margin-bottom: 20px;
}

.why .card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #6e84bb;
}

.why .card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why .cards {
        flex-direction: column;
        align-items: center;
    }
}

/***** end why choose us ****/


/***** start testimonial ****/

.slider {
    width: 100%;
    max-width: 1350px;
    overflow: hidden;
    position: relative;

}

.testimonial-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-slide {
    flex: 0 0 calc(100% / 3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

@media (max-width: 900px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

.testimonial-box {
    background: #f9fbff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: left;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.testimonial-box::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 40px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: #f9fbff transparent transparent transparent;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3b3d50;
    margin-bottom: 15px;
}

.stars {
    color: #fbc02d;
    font-size: 16px;
}

.profile {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.profile .name {
    font-weight: bold;
    font-size: 16px;
    color: #2b2d42;
}

.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0ea5a4;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.slider .prev {
    display: none;
}

.slider .next {
    display: none;
}

/*** testimonial end ***/

/* start room card */

.card {
    /* display: flex; */
    /* background: #fff;
    border-radius: 8px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6e84bb;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.card-title {
    color: #6e84bb;
}

.room-info ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.room-info ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.room-info ul li::before {
    content: "✔";
    color: #6e84bb;
    margin-right: 8px;
}

.room-info a {
    text-decoration: none;
    color: #6e84bb;
    font-weight: bold;
    font-size: 18px;
}

.room-info a:hover {
    color: #cfcd2c;
    /* text-decoration: underline; */
}

/* end room card */

/* start room detail */

.gallery-container {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
}

/* Main image */
.main-image img {
    width: 1280px;
    height: 720px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Thumbnails overlay */
.thumbnails {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.thumbnails img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.thumbnails img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (max-width: 768px) {
    .thumbnails {
        flex-direction: row;
        bottom: 15px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .thumbnails img {
        width: 70px;
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .gallery-container {
        padding: 5px;
    }

    .gallery-container,
    .main-image img {
        width: 100%;
        height: 40vh;
    }

    .thumbnails img {
        width: 45px;
        height: 45px;
    }

    .room-description {
        padding: 10px;
    }
}

/* Room description */
.room-description {
    /* padding: 40px; */
    font-size: 20px;
    /* line-height: 1.6; */
    color: #555;
}

/* Right side booking form */
.booking-form {
    flex: 1 1 35%;
    background: teal;
    color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.booking-form h3 {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    font-size: 18px;
    letter-spacing: 1px;
}

.booking-form label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    margin-top: 15px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    margin-bottom: 10px;
    font-size: 14px;
}

/* .booking-form input, */
.booking-form input,
.booking-form select {
    color: #fff;
    background-color: teal;
    border: 1px solid #f9fbff;
}

.booking-form button {
    width: 100%;
    padding: 12px;
    background: #6e84bb;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    margin-top: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.booking-form button:hover {
    background: #cfcd2c;
}

/* end room detail */

/*** Gallery Start ***/

.gallery .gallery-item {
    overflow: hidden;
    border-radius: 5px;
    height: 100%;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    height: 100%;
    /* width: 30%; */
}

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


/*** Gallery End ***/

/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: #2f3953;
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: #2f3953 !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: #2f3953 !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #2f3953;
}

.footer h4 {
    color: #cfcd2c;
}

.footer .footer-item a {
    line-height: 30px;
    color: #fff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: #cfcd2c;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #2f3953 !important;
}

/*** copyright end ***/
