@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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


/* Global CSS Start */
html {
    font-size: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Raleway", sans-serif;
    padding: 0;
    margin: 0;
    word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    line-height: 1;
}

p {
    line-height: 1.3;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

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

ul li {
    line-height: 1.2;
    margin-bottom: 3px;
}

a {
    display: inline-block;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
}

button,
textarea,
input {
    font-family: "Raleway", sans-serif;
}

input {
    font-family: "Raleway", sans-serif;
}


.container {
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 0.9375rem;
}


.py-7 {
    padding: 4.375rem 0;
}

.pt-7 {
    padding-top: 4.375rem;
}

.pb-7 {
    padding-bottom: 4.375rem;
}

.py-8 {
    padding: 5rem 0;
}

.pt-8 {
    padding-top: 5rem;
}

.pb-8 {
    padding-bottom: 5rem;
}


.py-10 {
    padding: 6.25rem 0;
}

.pb-10 {
    padding-bottom: 6.25rem;
}

.pt-10 {
    padding-top: 6.25rem;
}

.inline-flex {
    display: inline-flex;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

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

.wrap {
    flex-wrap: wrap;
}

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

.text-right {
    text-align: right;
}

.m-0-auto {
    margin: 0 auto
}

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

.bg_center_contain {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.align-end {
    align-items: flex-end;
}

.bg-0-0 {
    background-position: 0% 0%;
}

/* Global CSS End */




/* Website Scrollbar CSS  */
::-webkit-scrollbar {
    width: 0.9375rem;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #E66A31;
    border-radius: 0.625rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #e66a31;
}

/* Website Scrollbar CSS  */

/* Section Heading CSS Start */
.section_heading {
    color: #2c3e50;
    font-size: 2.5rem;
    line-height: 1.3;
}

span.theme {
    color: #e66a31;
}

span.theme_bold {
    color: #e66a31;
    font-weight: 600;
}

.bg_light {
    background-color: #f5f5f7;
}

.bg_dark {
    background-color: #111111;
}

.text_white {
    color: #fff;
}

.text_theme {
    color: #e66a31;
}

.aoshide {
    overflow: hidden;
}

/* Section Heading CSS End */

/* Butn CSS Start */
.butn {
    padding: 0.625rem 1.5625rem;
    font-weight: 500;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    border: 2px solid #fff;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    border-radius: 1.875rem;
}

.butn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: inherit;
}

.butn:hover {
    color: #000;
}

.butn:hover:after {
    top: 0;
    height: 100%;
}

.butn:active {
    top: 2px;
}

/* Butn CSS Start */


/* Header CSS Start */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    padding: 0.9375rem 0px;
    background-color: #111111;
}

.sticky-header.fixed_header {
    background-color: #222222;

}

.main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9375rem 0;
}

.navigation-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-container {
    text-align: center;
    vertical-align: middle;
    display: inline-block;
}

.brand-container a,
.footer_logo a {
    background-image: url(../images/logo.svg);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    height: 3.75rem;
    width: 14.75rem;
}

.menu-toggle-btn {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    text-align: right;
    cursor: pointer;
    margin: auto 0;
    z-index: 60;
    background-image: url("../images/menu.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.navigation-menu {
    display: flex;
    margin-left: auto;
}

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

.navigation-menu ul li a {
    padding: 0.625rem;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: normal;
    position: relative;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
}


.navigation-menu ul li a:hover {
    color: #E66A31;
}

.navigation-menu ul li a.active {
    color: #E66A31;
}

.navigation-menu ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 1.5px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #E66A31;
    transform-origin: center;
    transition: all 0.3s ease-out;
}

.navigation-menu ul li a.active::after {
    transform: scaleX(0.9);
    background: #E66A31;
    transform-origin: center;
}

.navigation-menu ul li a:hover::after {
    transform: scaleX(0.9);
}

.menu-close-btn {
    display: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/close.png);
}

.menu_dropdown {
    width: 100%;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.menu_dropdown ul {
    list-style-type: none;
    display: block;
    margin: 0;
    padding: 1rem 0;
    position: absolute;
    width: 100%;
    min-width: 25rem;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E66A31;
    border-radius: 1.25rem;
    z-index: 999;
    max-height: 0;
    transition: all 0.8s ease;
    opacity: 0;
    visibility: hidden;
    text-align: left;
}

.menu_dropdown.open ul {
    max-height: 62.5rem;
    opacity: 1;
    visibility: visible;
}

.menu_dropdown ul li a {
    color: #ffff;
}

.menu_dropdown a {
    display: block;
    padding: 0 0 0 0.625rem;
    text-decoration: none;
    color: #fff;

}

.menu_dropdown ul li a {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.menu_dropdown ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 1.5px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    transform-origin: center;
    transition: all 0.3s ease-out;
}

.menu_dropdown ul li a.active::after {
    transform: scaleX(0.9);
    background: #fff;
    transform-origin: center;
}

li.list-dropdown .menu_dropdown ul li a {
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
}

.menu_dropdown ul li a:hover::after {
    transform: scaleX(0.9);
}


.menu_dropdown ul li a:hover {
    color: #fff;
}

.menu_dropdown.hover>a svg {
    fill: #fff;
    width: 15px;
    height: 15px;
    margin-top: -5px;
}

.navigation-menu ul li a.active svg {
    fill: #e66a31;
}

/* Header CSS End */

/* Banner CSS Start */
.hotel-search-form {
    max-width: 100%;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgb(0 0 0 / 0.1);
}

.hotel-search-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.hotel-search-form input {
    width: 100%;
    padding: 12px 10px;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: #747270;
    min-height: 50px;
}

.guest-room-input {
    position: relative;
}

.guest-room-input input {
    width: 100%;
    cursor: pointer;
    background: #fff;
}

.dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 16px;
    box-shadow: 0 3px 12px rgb(0 0 0 / 0.1);
    z-index: 1000;
    display: none;
    width: 100%;
    background: #fff;
}

.dropdown.visible {
    display: block;
}

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

.dropdown-row:last-child {
    margin-bottom: 0;
}

.dropdown-row label {
    font-weight: 600;
}

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

.counter-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #999;
    background: #fff;
    color: #333;
    font-size: 20px;
    line-height: 1;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.counter-controls button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.counter-value {
    min-width: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.search-button {
    width: 100%;
    padding: 12px;
    background: #E66A31;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 50px;
}

.hotel-search-form .row {
    align-items: center;
}


.hotel-search-form .row .col-lg-3,
.hotel-search-form .row .col-lg-2 {
    padding: 0;
    padding-left: 10px;
}

section.home_banner.mb-5 {
    margin-top: 100px;
}


.container-scroller {
    display: flex;
    align-items: stretch;
    /* padding: 0 24px; */
    gap: 1.5rem;
    border: 1px solid white;
}

.scroller {
    flex: 1;
    max-height: 25rem;
    overflow: hidden;
    position: relative;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    flex-direction: column;
    height: max-content;
    animation: scroll var(--_animation-duration, 30s) var(--_animation-direction, forwards) linear infinite;
}

.scroller__inner.reverse {
    --_animation-direction: reverse;
}



.home_banner_wrap {
    padding-top: 1.25rem;
}

@keyframes scroll {
    to {
        transform: translateY(calc(-50% - 0.5rem));
    }
}

.home_banner_content {
    padding-top: 6.25rem;
}


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

.home_bnr_txt {
    line-height: 1.3;
}

/* Image text Section start */

.before_after_banner p {
    font-size: 1.2rem;
}

.img_part {
    height: 100%;
    width: 100%;
    border-radius: 40px;
}

.text_part {
    padding: 5rem 1.875rem;
}

.text_part h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.text_part p {
    font-size: 1.1rem;
    line-height: 1.4;
}

.text_part h3 {
    font-size: 2rem;
    font-weight: 600;
}

.text_part p a {
    color: #E66A31;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Image text Section start */

/* Home Featured CSS Start */
.featured_card {
    background: #111111;
    padding: 1.875rem;
    border-radius: 2.5rem;
    height: 100%;
    width: 100%;
}

.featured_img {
    height: 12.75rem;
    width: 100%;
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 20px;
}

.featured_img_inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}

.featured_text h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured_text p {
    color: #fff;
    font-size: 1.1rem;
}


.slick-slide {
    margin: 0 1.25rem;
}

.star-rating {
    font-size: 1.5rem;
    cursor: pointer;
}

.slick-list.draggable {
    width: 100%;
}

.slick-slide {
    height: inherit;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit;
}

/* Ensure parent is relative */
.popular-areas-warp {
    position: relative;
}

/* Position slick arrows */
.home_featured_slider .slick-prev,
.home_featured_slider .slick-next {
    position: absolute;
    bottom: -50px;
    z-index: 2;
    width: 3.75rem;
    height: 3.75rem;
    background: #fff;
    color: #333;
    border-radius: 50%;
    border: 1px solid #e66a31;
    display: flex;
    align-items: center;
    justify-content: center;
}


.home_featured_slider .slick-prev {
    right: 130px;
    left: auto;
    top: 110%;
}

.home_featured_slider .slick-next {
    right: 50px;
    top: 110%;
}

.home_featured_slider .slick-prev:before,
.home_featured_slider .slick-next:before {
    font-family: 'slick';
    font-size: 35px;
    line-height: 1;
    opacity: .75;
    color: #e66a31;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home_featured_slider .slick-prev:before {
    content: '←';
}

.home_featured_slider .slick-next:before {
    content: '→';
}

.home_featured_sec {
    padding: 80px 0 120px 0;
    overflow: hidden;
}

.home_featured_sec .section_heading {
    margin-left: 20px;
}

.highlighted_txt {
    background-color: #111111;
    padding: .625rem 1.875rem;
    border-radius: 40px;
    color: #fff;
    font-size: 1.2rem;
    max-width: max-content;
    margin: 0 auto;
}

/* Home Featured CSS End*/


/* Home Why Us CSS Start */
.feature-card {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(30, 34, 90, 0.07);
    padding: 28px 22px 22px 22px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    transition: box-shadow 0.2s;
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 4px 24px rgba(30, 34, 90, 0.13);
}

.feature-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 18px;
}

.feature-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.feature-card-desc {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.5;
}

.home_why_us_sec .row {
    max-width: 1100px;
    margin: 0 auto;
}

.why_us_card {
    background-color: #fff;
    padding: 1.875rem;
    border-radius: 2.5rem;
    width: 100%;
    height: 100%;
}

.why_us_card-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.why_us_img {
    height: 12.5rem;
    width: 100%;
}

.why_us_card_img_outer {
    padding: 0 2.5rem;
}

/* Home Why Us CSS Start */



/* Home Start Search Start */
.home_start_sec .featured_card {
    background: #111111;
    padding: 1rem;
    display: block;
}

.home_start_sec .featured_text h3 {
    color: #e66a31;
    font-size: 1.3rem;
    text-align: center;
}

.featured_img {
    height: 20.75rem;
}

/* Home Start Search End */



/* footer start  */
.site-footer {
    padding: 84px 0 10px;
    background: #111111;
    color: #fff;
}

.footer-logo p {
    font-size: 1.2rem;
    color: #ffffffdb;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.footer-logo a {
    background-image: url("../images/logo.svg");
    width: 14.75rem;
    height: 3.75rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.9375rem;
}

.footer-top h4 {
    font-size: 1.8rem;
    margin-bottom: 1.875rem;
    color: #e66a31;
}

.footer-links {
    padding-left: 3.75rem;
}

.footer-links li a,
.footer-contact li {
    color: #ffffffdb;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.24px;
    margin-bottom: 15px;
    transition: all 0.2s linear;
}

.footer-links li a:hover,
.footer-contact li:hover {
    color: #e66a31;
}

.footer-contact li i {
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(255 255 255 / 80%);
    padding-top: 10px;
    margin-top: 35px;
}

.footer-bottom p {
    color: #fff;
}

.social-icons ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 230px;
}

.social-icons li a {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* font-size: 22px; */
    transition: all 0.2s linear;
    padding: 11px;
}

.social-icons li a:hover {
    transform: translateY(-4px);
    border-color: #e66a31;
}

.social-icons li a svg {
    height: 100%;
    width: 100%;
    fill: #fff;
    transition: 0.2s all ease-in-out;
}

.social-icons li a:hover svg {
    fill: #e66a31;
}

.ssl_logo {
    height: 3.75rem;
    width: 8.75rem;
}

.ssl_logo_inner {
    height: 3.75rem;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.footer-contact ul li a {
    color: #e66a31;
    transition: 0.2s all ease-in-out;
}

.footer-contact ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* footer end  */



/* Loader CSS Start */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0e13;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.spinner {
    border: 8px solid #fff;
    border-top: 8px solid #e66a31;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.content {
    display: block;
    text-align: center;
    padding: 20px;
}

.loader_img {
    margin-top: 2.125rem;
    width: 10rem;
    height: 3.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Loader CSS End*/



/* Hotels Full Details Pages CSS Start */
.hotel_desc_name_link {
    color: #222222;
    display: block;
}

.hotels_name_img {
    height: 100%;
    overflow: hidden;
}

.hotels_full_review_section {
    padding: 6.25rem 0;
    margin-top: 5rem;
}

.hotels_rating_spec_txt {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hotels_full_review_wrap {
    width: 100%;
}

.hotels_rating_spec_txt h3 {
    color: #fff;
}

.hotels_rating_spec_txt ul li p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.625rem;
}

.hotels_rating_spec_txt ul li {
    list-style-type: disc;
    margin-left: 1.875rem;
}

.hotel_desc_card ul li {
    list-style-type: disc;
    margin-left: 1.25rem;
    margin-bottom: 0;
}

.hotels_rating_spec_txt ul li::marker {
    color: #e66a31;
    font-size: 1.1rem;
}

.hotel_full_img_outer {
    height: 25rem;
    width: 100%;
    overflow: hidden;
    border-radius: 2.5rem;
}

.hotel_full_img {
    height: 100%;
    width: 100%;
    border-radius: 2.5rem;
}

.no_padding {
    padding: 0;
}

.no_padding_left {
    padding-left: 0;
}

.hotels_name_img>p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #484747;
    margin-bottom: 20px;
}

.hotel_desc_card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 2.5rem;
    height: 100%;
}

.hotel_rooms_icon_outer {
    overflow: hidden;
    height: 5rem;
    width: 100%;
}

.hotels_rooms_sec {
    height: 100%;
}

.hotel_rooms_icon {
    height: 100%;
    width: 5rem;
}

.row.hotel_middle_row {
    padding: 2rem;
    border-radius: 2.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.hotels_full_review_section p {
    line-height: 1.5;
}

.hotels_full_review_wrap .row {
    max-width: 100%;
    margin: 0 auto;
}

.hotel_outer_linking_btn {
    border: 1px solid #e66a31;
    overflow: hidden;
}

.hotel_outer_linking_btn:hover {
    border-color: #fff;
}

.hotel_final_verdict {
    padding: 1.25rem;
}

.hotel_desc_card ul li::marker {
    color: #e66a31;
}

.hotel_desc_card ul.inner_ul li {
    list-style-type: disc;
    margin-left: 2.5rem;
}

.hotel_desc_card ul.inner_ul li::marker {
    list-style-type: disc;
    margin-left: 2.5rem;
    color: #000;
}

.rounded {
    border-radius: 2.5rem !important;
}

.review_rating_txt.mb-3 {
    padding: 0.625rem 1.875rem;
    background: #e66a31;
    display: inline-block;
    color: #fff;
    border-radius: 40px;
}

.hotel_desc_card h2 {
    font-size: 1.8rem;
    line-height: 1.3;
}

.hotel_desc_card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.hotels_rating_spec_txt h4 {
    color: #e66a31;
    font-size: 1.4rem;
}

.hotels_name_img h2 {
    font-size: 2rem;
    color: #e66a31;
    line-height: 1.3;
}

.hotel_final_verdict p a {
    color: #e66a31;
}

.hotel_desc_card p {
    margin-bottom: 10px;
    font-weight: 500;
}

.hotels_rating_spec_txt h3 {
    color: #e66a31;
}

/* Hotels Full Details Pages CSS End */

/* Other Pages CSS Start */
.banner-bg {
    width: 100%;
    height: 43.75rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
    bottom: auto;
    left: 0%;
    right: 0%;
    display: flex;
    align-items: center;
    margin-top: 56px;
    z-index: 1;
    background-color: rgba(0 0 0/60%);
    background-blend-mode: multiply;
}

.banner-bg .container {
    position: relative;
}

.banner-bg span {
    background-color: #e66a31;
    color: #fff;
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: .75rem;
    letter-spacing: 1px;
    border-radius: 40px;
    display: none;
}

.top-heading {
    font-size: 2.8rem;
    font-style: normal;
    line-height: 130%;
}

.top-heading.guide_heading {
    font-size: 2.1rem;
}

.banner-bg.guides_banner {
    height: 35rem;
}

.guides_content_sec .text_part h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.guides_content_sec .text_part.less_padding {
    padding: 2rem 0;
}

.guides_content_sec .text_part p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.guides_content_sec .text_part ul li {
    list-style-type: disc;
    margin-left: 1rem;
}

.guides_content_sec .text_part p a {
    font-weight: 700;
}

.final_verdict_reviews p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.final_verdict_reviews p strong {
    color: #e66a31;
}

.final_verdict_reviews ul li {
    list-style-type: disc;
    margin-left: 1rem;
}

.final_verdict_reviews ul li::marker {
    color: #e66a31;
}

/* Other Pages CSS End*/


/* Contact Page CSS Start */


.contact_card {
    max-width: 500px;
    background: #fff;
    color: #111111;
    border-radius: 2.5rem;
    padding: 2.5rem 1.25rem;
}

.contact_wrap {
    max-width: 81.25rem;
    margin: 0 auto;
    margin-top: -80px;
    position: relative;
    border-radius: 2.5rem;
    z-index: 99;
    padding: 2.5rem;
}

.form_container,
.contact_form_content {
    width: 100%;
}

#contact input,
#contact textarea,
#contact select {
    width: 100%;
    border: 1px solid transparent;
    background: #FFF;
    margin: 0 0 5px;
    padding: 0.625rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
}

#contact textarea {
    resize: none;
    height: auto;
}

#contact input:focus,
#contact textarea:focus {
    outline: 0;
    border: 1px solid #1c1c1a;
}

fieldset {
    border: medium none !important;
    margin: 0 0 0.625rem;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

.contact-btn {
    color: #fff;
    border-color: #fff;
}

.contact-btn:hover {
    border-color: #000;
}

.form_container {
    color: #fff;
}

.contact_form_content p {
    font-size: 1.1rem;
}

.contact_form_content p a {
    color: #e66a31;
    font-weight: 500;
}

.form_container h2 {
    color: #e66a31;
}

/* Contact Page CSS End */

/* About Page CSS Start */
.about_cards_rap {
    max-width: 75rem;
    margin: 0 auto;
}

.about_cards {
    height: 100%;
    width: 100%;
    padding: 1.875rem;
    border-radius: 2.5rem;
    transition: 0.2s all linear;
}

.about_cards_image {
    height: 15.625rem;
    width: 100%;
    overflow: hidden;
    border-radius: 2.5rem;
}

.about_cards_image_inner {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2.5rem;
}

.about_cards_text p a {
    color: #e66a31;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.about_cards_text p {
    line-height: 1.5;
    margin-bottom: 5px;
}

.about_cards_text ul li {
    list-style-type: disc;
    margin-left: 1rem;
}

.about_icon_cards {
    background: #fff;
    padding: 1.875rem;
    border-radius: 2.5rem;
    height: 100%;
    transition: 0.2s all ease-in-out;
    height: 100%;
}

.about_cards_sec2 {
    background-color: #111111;
}

.about_cards_sec2 .row {
    max-width: 1000px;
    margin: 0 auto;
}

.about_cards_icon {
    height: 4.375rem;
    margin-bottom: 20px;
    width: 4.375rem;
}

.about_cards_icon_inner {
    height: 100%;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Page CSS End */


/* Footer Pages CSS Start*/
.footer-pages-wrap {
    max-width: 81.25rem;
    margin: 0 auto;
    padding: 3.125rem 1.875rem;
    border-radius: 20px;
    margin-top: -5rem;
    position: relative;
    background-color: #111111;
    z-index: 99;
}

footer.footer.pt-80.main-scroll {
    box-shadow: rgba(255, 255, 255) 0px 3px 8px;
    margin-top: 60px;
}

.footer-pages-content-grp {
    margin-bottom: 1.2rem;
    border-radius: 0.625rem;
}

.footer-pages-content-grp:last-child {
    margin-bottom: 0px;
}

.footer-pages-content-grp h3 {
    font-size: 1.7rem;
    margin-bottom: 0.9375rem;
    color: #e66a31;
    line-height: 1.4;
}

.footer-pages-content-grp strong {
    font-size: 1.125rem;
}

.footer-pages-content-grp p {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.footer-pages-content-grp ul {
    list-style: none;
    padding-left: 1.25rem;
}

.footer-pages-content-grp ul li {
    list-style-type: disc;
}

.footer-pages-content-grp ul li::marker {
    color: #e66a31;
}

.footer-pages-content-grp p a {
    color: #fff;
    display: inline-block;
    transition: 0.4s all ease-in-out;
    text-underline-offset: 4px;
    font-weight: 600;
}

.footer-pages-content-grp p a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #818181;
}

th,
td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #818181;
}

th {
    background-color: #E66A31;
    color: #fff;
}

tr:hover {
    background-color: #f1f1f1;
}

.table_wrap {
    max-width: 600px;
}

/* Footer Pages CSS End*/



/* Language Dropdown CSS */
.language_dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    border-radius: 8px;
    display: inline-block;
    padding: 8px;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    right: 0;
    background-color: #111111;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    top: 100%;
    display: none;
    border: 2px solid #e66a31;
}


.site-header .dropdown-toggle.show {
    color: #333;
}

.dropdown_img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dropdown-toggle::after {
    display: none;
}

.language_dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-item {
    padding: 8px 12px;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content !important;
    white-space: wrap;
    transition: none;
}

.dropdown-item:hover {
    background-color: #111111 !important;
}

.dropdown-item span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Language Dropdown CSS */