/* ========== PT Serif Font Family ==========  */

@font-face {
    font-family: "PT Serif";
    src: url("../fonts/pt-serif-latin-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "PT Serif";
    src: url("../fonts/pt-serif-latin-400-italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "PT Serif";
    src: url("../fonts/pt-serif-latin-700-normal.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "PT Serif";
    src: url("../fonts/pt-serif-latin-700-italic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
}


/* Extended Latin */

@font-face {
    font-family: "PT Serif";
    src: url("../fonts/pt-serif-latin-ext-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    unicode-range: U+0100-024F;
}

@font-face {
    font-family: "PT Serif";
    src: url("../fonts/pt-serif-latin-ext-700-italic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    unicode-range: U+0100-024F;
}

@font-face {
    font-family: "PT Serif";
    src: url("../fonts/pt-serif-latin-ext-700-normal.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    unicode-range: U+0100-024F;
}


/* ===== Allura Font Family  */

@font-face {
    font-family: "Allura";
    src: url("../fonts/allura_regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

:root {
    --font-family: "PT Serif", serif;
    --font-family_allura: "Allura";
    --background_color: #020202;
    --background_color_6: #0202020F;
    --primary_color: #9a8462;
    --heading_color: #9a8462;
    --body_paragraph_color: #EFECE0;
    --link_color: #9a8462;
    --accent_color: #e2e2e2;
    --gradient_color: linear-gradient(90deg, #634a22 40%, #ffffff 60%);
    --black_color: #000000;
    --black_color_80: #020202CC;
    --white_color: #ffffff;
    --white_color_50: #FFFFFF80;
    --about_card_background: #212121;
    --button_background_color: #f9f9f9;
    --letter_spacing: -0.015em;
    --letter_spacing_paragraph: 0.015em;
    --font-size: 16px;
    --line-height: 1.9;
    --h1_font_size: 32px;
    --small_card_title: 30px;
    --h2_font_size: 24px;
    --accordion_heading_size: 18px;
    --h3_font_size: 20px;
    --h4_font_size: 16px;
    --social_button_size: 14px;
    --heading_line_height: 1.2;
}

h1 {
    font-size: var(--h1_font_size);
    font-family: var(--font-family);
    font-weight: 700;
    line-height: var(--heading_line_height);
    letter-spacing: var(--letter_spacing);
    color: var(--body_paragraph_color);
}

h2 {
    font-size: var(--h2_font_size);
    font-family: var(--font-family);
    font-weight: 700;
    line-height: var(--heading_line_height);
    letter-spacing: var(--letter_spacing);
    color: var(--body_paragraph_color);
}

h3 {
    font-size: var(--h3_font_size);
    font-family: var(--font-family);
    font-weight: 700;
    line-height: var(--heading_line_height);
    letter-spacing: var(--letter_spacing);
    color: var(--body_paragraph_color);
}

h4 {
    font-size: var(--h4_font_size);
    font-family: var(--font-family);
    font-weight: 700;
    line-height: var(--heading_line_height);
    letter-spacing: var(--letter_spacing);
    color: var(--body_paragraph_color);
}

p {
    font-size: var(--font-size);
    font-family: var(--font-family);
    font-weight: 400;
    line-height: var(--line-height);
    letter-spacing: var(--letter_spacing_paragraph);
    color: var(--body_paragraph_color);
}

p.style_text {
    font-size: var(--h2_font_size);
    font-family: var(--font-family_allura);
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0%;
}

a {
    font-size: var(--font-size);
    font-family: var(--font-family);
    font-weight: 400;
    line-height: var(--line-height);
    color: var(--white_color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

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

body {
    background-color: var(--background_color);
    font-family: var(--font-family);
}


/* ========== Header Section Css Start ==========  */

.header_section .navbar-brand img {
    height: 80px;
}

.nav-link {
    padding: 0px !important;
}

.nav-link img {
    height: 30px;
    width: 30px;
}

.side_menu_icon {
    background: none;
    border: none;
    padding: 0px !important;
    margin-left: 20px;
}

.side_menu_icon img {
    height: 34px;
    width: 34px;
}


/* ======== Side Menu Content  */


/* Overlay */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 9998;
}


/* Sidebar */

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90%;
    height: 100vh;
    background: var(--black_color_80);
    z-index: 999999;
    transform: translateX(100%);
    transition: transform .4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}


/* Active State */

.sidebar.active {
    transform: translateX(0);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Close Button */

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 28px;
    height: 28px;
    transition: .3s;
    background-color: transparent;
    border: none;
    z-index: 999999999999;
}

.sidebar-close img {
    width: 100%;
    height: 100%;
}


/* Content */

.sidebar-content {
    padding: 80px 30px 30px;
}

.sidebar-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.sidebar-content ul li {
    text-align: end;
    margin-bottom: 5px;
}

.sidebar-content ul li a {
    text-decoration: none;
    color: var(--primary_color);
    font-size: var(--h2_font_size);
    font-weight: 700;
}

.sidebar-content ul li a:hover {
    color: var(--white_color);
}

.flag-select {
    width: 60px;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    outline: none;
    text-align: end;
}

.not_for_desk {
    display: none;
}


/* ========== Header Section Css End ==========  */


/* ========== Hero Section Css Start ==========  */

.hero_image img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
}

.hero_content {
    padding-top: 40px;
}

.hero_content h1 {
    color: var(--primary_color);
    text-align: center;
    transform: uppercase;
}

.hero_content p {
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--body_paragraph_color);
    text-align: justify;
}


/* ========== Hero Section Css End ==========  */


/* ========== Section Two Css Start ==========  */

.section_two {
    margin-top: 30px;
}

.section_two_image img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}


/* ========== Section Two Css End ==========  */


/* ========== Card Section Css Start ==========  */

.card_section {
    margin-top: 90px;
}

.card_item {
    cursor: pointer;
    text-align: center;
}

.card_item .card_content h3 {
    text-align: center;
    color: var(--white_color);
    margin-top: 15px;
    transition: all 0.3s linear;
}

.card_item .card_item_image img {
    max-width: 100%;
    height: 472px;
    object-fit: cover;
    border-radius: 5px;
}

.card_item:hover .card_content h3 {
    color: var(--primary_color);
}


/* ========== Card Section Css End ==========  */


/* ========== Section Title Css Start ==========  */

.section_title {
    margin-top: 30px;
}

.section_title_content h1 {
    color: var(--heading_color);
    line-height: 38px;
    text-align: center;
}

.section_title_content p {
    color: var(--body_paragraph_color);
    line-height: 30px;
    text-align: center;
    letter-spacing: 0%;
    text-align: justify;
}


/* ========== Section Title Css End ==========  */


/* ========== Button Area Css Start ==========  */

.theme_button {
    display: grid;
    justify-content: center;
    gap: 20px;
    margin-top: 26px;
    margin-bottom: 26px;
}

.white_button {
    padding: 20px 10.5px;
    background-color: var(--button_background_color);
    max-width: 357px;
    width: 357px;
    display: block;
    text-align: center;
    margin: 0 auto;
    border: none;
    transition: all 0.3s linear;
}

.white_button:hover {
    background-color: var(--primary_color);
}

.white_button h2 {
    color: var(--black_color);
    margin-bottom: 0px;
}

.white_button:hover h2 {
    color: var(--black_color);
}

.primary_button {
    padding: 20px 10.5px;
    background-color: var(--primary_color);
    max-width: 357px;
    width: 357px;
    display: block;
    text-align: center;
    margin: 0 auto;
    border: none;
    transition: all 0.3s linear;
}

.primary_button:hover {
    background-color: var(--white_color);
}

.primary_button h2 {
    color: var(--black_color);
    margin-bottom: 0px;
    transition: all 0.3s linear;
}

.primary_button:hover h2 {
    color: var(--black_color);
}


/* ========== Button Area Css End ==========  */


/* ========== About/FAQ Section Css Start ==========  */

.about_faq_section .container {
    background-color: var(--about_card_background);
    padding: 40px;
}

.about_faq_image img {
    width: 100%;
    height: 644px;
    border-radius: 5px;
    object-fit: cover;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("../images/icons/icon-park-solid_down-one.svg");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/icons/icon-park-solid_down-one.svg");
    transform: rotate(-180deg);
}

.about_faq_content h2 {
    color: var(--white_color);
    width: 70%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

.about_faq_content p.style_text {
    margin-bottom: 25px;
    text-align: justify !important;
    color: var(--primary_color) !important;
}

.faq_accordion_area {
    background-color: var(--background_color);
    padding: 15px;
}

.faq_accordion_area .accordion-item .accordion-button {
    font-size: var(--accordion_heading_size);
    color: var(--primary_color);
    font-weight: 700;
    line-height: 24px;
    background-color: var(--about_card_background);
    border: none;
    height: 57px;
}

.faq_accordion_area .accordion-item .accordion-button.collapsed {
    font-size: var(--accordion_heading_size);
    color: var(--body_paragraph_color);
    font-weight: 700;
    line-height: 24px;
    background-color: var(--about_card_background);
    border: none;
    height: 57px;
}

.accordion-item {
    background-color: var(--about_card_background);
    border: none;
    border-radius: 0px !important;
    margin-bottom: 15px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b6fe00;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
}

.accordion-collapse.collapse.show .accordion-body {
    color: var(--primary_color);
}

.accordion-body {
    color: var(--primary_color);
    font-size: var(--font-size);
}

.faq_accordion_area .accordion-button:not(.collapsed)::after {
    background-image: url("../images/icons/icon-park-solid_down-one.svg");
    transform: rotate(-267deg);
}


/* ========== About/FAQ Section Css End ==========  */


/* ========== Page Title Section Css Start ==========  */

.page_title_section .container {
    background: var(--gradient_color);
    text-align: center;
}

.page_title_section .page_title h2 {
    color: var(--black_color);
    margin-bottom: 0px;
    padding: 20px 0px;
}


/* ========== Page Title Section Css End ==========  */


/* ========== Two FAQ Section Css Start ==========  */

.two_faq_section .container {
    background-color: var(--about_card_background);
    padding: 50px 39px;
}

.two_faq_image img {
    width: 100%;
    height: 308px;
    border-radius: 5px;
    object-fit: cover;
}

.two_faq_area .accordion-item .accordion-button.collapsed {
    font-size: var(--accordion_heading_size);
    color: var(--body_paragraph_color);
    font-weight: 700;
    line-height: 24px;
    background-color: var(--background_color);
    border: none;
    padding: 41px 20px 41px 20px;
    height: 142px;
    margin-bottom: 24px;
}

.two_faq_area .accordion-item .accordion-button {
    font-size: var(--accordion_heading_size);
    color: var(--primary_color);
    font-weight: 700;
    line-height: 24px;
    background-color: var(--background_color);
    border: none;
    padding: 41px 20px 41px 20px;
    height: 142px;
    margin-bottom: 0;
}

.two_faq_area .accordion-item {
    background-color: var(--background_color);
    border: none;
    border-radius: 0px !important;
    margin-bottom: 15px;
}

.two_faq_area .accordion-button:not(.collapsed)::after {
    background-image: url("../images/icons/icon-park-solid_down-one.svg");
    transform: rotate(-269deg);
}


/* ========== Two FAQ Section Css End ==========  */


/* ========== Small Card Section Css Start ==========  */

.small_card_section .container {
    background-color: var(--about_card_background);
    padding-top: 20px;
    padding-bottom: 25px;
}

.small_card_item {
    padding: 25px 25px 15px 25px;
    background-color: var(--white_color);
    cursor: pointer;
}

.small_card_item img {
    width: 100%;
    height: 225px;
    border-radius: 5px;
    object-fit: cover;
}

.small_card_item h3 {
    color: var(--background_color);
    font-size: var(--small_card_title);
    line-height: 36px;
    margin-bottom: 0px;
    margin-top: 10px;
    text-align: center;
    transition: all 0.3s linear;
}

.small_card_item:hover h3 {
    color: var(--primary_color);
}

.small_card_with_text {
    padding: 0;
    height: 392px;
    border-radius: 5px;
    background-color: var(--background_color);
    position: relative;
    transition: all 0.3s linear;
}

.small_card_with_text p {
    line-height: 20px;
    color: var(--primary_color);
    text-align: center;
    margin-top: 15px;
}

.small_card_left_card {
    padding-left: 0px;
}

.small_card_right_card {
    padding-right: 0px;
}

.small_card_with_text p.small_card_date {
    line-height: 20px;
    color: var(--primary_color);
    text-align: center;
    margin-bottom: 0px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.small_card_with_text:hover p {
    color: var(--white_color);
}


/* ========== Small Card Section Css End ==========  */


/* ========== Misson Section Css Start ==========  */

.mission_section .container {
    padding: 40px 0 30px 0;
    background-color: var(--about_card_background);
}

.mission_right_image {
    text-align: center;
}

.mission_right_image p {
    padding: 0 50px;
    color: var(--white_color);
}

.mission_right_image img {
	height: 365px;
	width: 80%;
	padding: 0 0;
	margin: 0 auto;
	object-fit: cover;
	border-radius: 5px;
}

.mission_content {
    padding-left: 20px;
}

.mission_content h2 {
    font-size: var(--small_card_title);
    line-height: 36px;
    color: var(--white_color);
}

.mission_content p {
    font-size: var(--font-size);
    line-height: 30px;
    color: var(--primary_color);
    text-align: justify;
}


/* ========== Misson Section Css End ==========  */


/* ========== Main FAQ Section Css Start ==========  */

.main_faq_section .container {
    background-color: var(--about_card_background);
    padding: 0 40px 50px 40px;
}

.main_faq_left img {
    height: 339px;
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.main_faq_title {
    text-align: end;
}

.main_faq_title h2 {
    font-size: var(--small_card_title);
    color: var(--white_color);
    padding: 20px 0;
}

.main_faq_list_area .accordion-item .accordion-button {
    font-size: var(--font-size);
    color: var(--primary_color);
    font-weight: 700;
    line-height: 36px;
    background-color: var(--background_color);
    border: none;
    height: auto;
    padding: 17px 10px;
    letter-spacing: 0px;
}

.main_faq_list_area .accordion-item .accordion-button.collapsed {
    font-size: var(--font-size);
    color: var(--body_paragraph_color);
    font-weight: 700;
    line-height: 36px;
    background-color: var(--background_color);
    border: none;
    height: auto;
    padding: 17px 10px;
    letter-spacing: 0px;
}

.main_faq_list_area .accordion-body {
    color: var(--primary_color);
    font-size: var(--font-size);
}

.main_faq_list_area .accordion-item {
    background-color: var(--background_color);
    border: none;
    border-radius: 0px !important;
    margin-bottom: 25px;
}


/* ========== Main FAQ Section Css End ==========  */


/* ========== Gradient Color One Line Css Start ==========  */

.gradient_color_line {
    background: var(--gradient_color);
    height: 3px;
}


/* ========== Gradient Color One Line Css End ==========  */


/* ========== Footer Section Css Start ==========  */

.footer_section {
    padding: 50px 0;
}

.footer_menu_title h2 {
    font-size: var(--small_card_title);
    line-height: 29px;
    color: var(--primary_color);
    margin-bottom: 25px;
}

ul.footer_menu_link {
    list-style-type: none;
    padding-left: 0px;
}

ul.footer_menu_link li {
    font-size: var(--h3_font_size);
    line-height: 24px;
    height: auto;
}

ul.footer_menu_link li a {
    font-size: var(--h3_font_size);
    color: var(--white_color);
    transition: all 0.3s linear;
}

ul.footer_menu_link li a:hover {
    color: var(--primary_color);
}

.footer_center_content img.footer_center_img {
    width: 100%;
    height: 180px;
    border-radius: 5px;
    object-fit: cover;
}

.footer_social_button {
    display: grid;
    gap: 19px;
    margin-top: 19px;
}

.footer_social_button .social_button {
    font-size: var(--social_button_size);
    line-height: 29px;
    letter-spacing: 0%;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    border: none;
    font-weight: 700;
}

.footer_social_button .green_button {
    background-color: #13eb08;
    color: var(--white_color);
    border: 3px solid var(--white_color);
    border-radius: 3px;
}

.footer_social_button .green_button:hover {
    color: var(--white_color);
    background-color: var(--primary_color);
}

.footer_social_button .white_button_for_social {
    background-color: var(--white_color);
    color: var(--black_color);
}

.footer_social_button .white_button_for_social:hover {
    color: var(--black_color);
    background-color: var(--primary_color);
}


/* ========== Footer Section Css End ==========  */


/* ========== Footer Copyright Section Css Start ==========  */

.footer_copyright_section {
    padding-top: 10px;
    padding-bottom: 150px;
}

.footer_copyright_left ul {
    list-style-type: none;
    display: flex;
    gap: 18px;
    padding-left: 0px;
}

.footer_copyright_left ul li {
    position: relative;
}

.footer_copyright_left ul li:not(:last-child)::before {
    content: " ";
    height: 20px;
    width: 2px;
    background-color: var(--primary_color);
    display: block;
    position: absolute;
    right: -10px;
    top: 54%;
    transform: translateY(-50%);
}

.footer_copyright_left ul li a {
    font-size: var(--h3_font_size);
    color: var(--primary_color);
    font-weight: 700;
}

.footer_copyright_left ul li a:hover {
    color: var(--white_color);
}

.footer_copyright_text p {
    font-size: var(--h3_font_size);
    color: var(--primary_color);
    font-weight: 700;
}


/* ========== Footer Copyright Section Css End ==========  */


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


/* ========== PORTFOLIO PAGE CSS ==========  */


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


/* ========== Portfolio About Section Css Start ==========  */

.portfolio_about_section {
    margin-top: 10px;
}

.portfolio_about_section .container {
    background-color: var(--about_card_background);
}

.portfolio_about_content {
    padding: 20px 10px 40px 10px;
}

.portfolio_about_content h2 {
    color: var(--white_color);
}

.portfolio_about_content p {
    color: var(--white_color);
}

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

.portfolio_about_content .portfoli_about_text_center p {
    color: var(--white_color);
    font-weight: 700;
}

.portfolio_about_content .portfoli_about_text_center a {
    color: var(--white_color);
    font-weight: 700;
}

.portfolio_about_content .portfoli_about_text_center a:hover {
    color: var(--primary_color);
}


/* ========== Portfolio About Section Css End ==========  */


/* ========== Portfolio Items Section Css Start ==========  */

.portfolio_items_section {
    margin-top: 20px;
    padding-bottom: 50px;
}

.portfolio_items_section .container {
    padding-left: 0px;
    padding-right: 0px;
}

.portfolio_items_section .quick-filter-title {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 20px;
    letter-spacing: 0%;
    color: var(--white_color);
}

.portfolio_items_section .filter-bar ul li .nav-link {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 20px;
    letter-spacing: 0%;
    color: var(--white_color);
    background-color: transparent;
    border: none;
}

.portfolio_items_section .filter-bar ul li .nav-link.active {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 20px;
    letter-spacing: 0%;
    color: var(--primary_color);
    background-color: transparent;
    border: none;
}

.portfolio_items_section .filter-bar {
    margin-bottom: 20px;
}

.portfolio_items_section .filter-bar ul {
    gap: 26px;
}

.city-select-wrapper .city-select {
    background-color: transparent;
    padding: 7px 40px 7px 10px;
    border: 1px solid #EFECE0;
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 20px;
    letter-spacing: 0%;
    color: var(--white_color);
}

.form-select:focus {
    border-color: #EFECE0;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}

.form-select {
    background-image: url("../images/icons/icon-park-solid_down-one.svg");
}


/* কার্ডের মেইন কন্টেইনার */

.portfolio_card_item {
    background-color: var(--black_color, #000000);
    overflow: hidden;
}

.portfolio_card_img img {
    width: 100%;
    display: block;
    height: 233px;
    object-fit: cover;
    border-radius: 0px;
}

.portfolio_card_btn {
    width: 100%;
    background-color: var(--about_card_background);
    border: none;
    color: var(--body_paragraph_color, #efece0);
    font-size: var(--accordion_heading_size);
    line-height: 1.4;
    padding: 5px 20px;
    gap: 15px;
    outline: none;
    transition: background-color 0.3s ease;
}

.portfolio_card_btn:hover,
.portfolio_card_btn:focus {
    background-color: var(--about_card_background);
    color: var(--white_color, #ffffff);
}

.arrow-icon {
    font-size: 12px;
    color: var(--white_color, #ffffff);
    transition: transform 0.3s ease;
}

.portfolio_card_btn[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}

.portfolio_card_dropdown_content {
    background-color: var(--about_card_background);
    color: var(--accent_color, #e2e2e2);
    padding: 15px 20px;
    font-size: var(--font-size);
    line-height: 1.6;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ========== Portfolio Items Section Css End ==========  */


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


/* ========== City Guide PAGE CSS ==========  */


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


/* ========== City Guide Items Section Css Start ==========  */

.city_guide_page .container {
    background-color: transparent !important;
    padding-top: 20px;
    padding-bottom: 25px;
}

.city_guide_page .city_guide_card {
    margin-bottom: 40px;
}

.city_guide_card p {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--white_color);
    margin-top: 25px;
}

.city_guide_card ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    padding-left: 0px;
    margin-top: 25px;
}

.city_guide_card ul li {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--white_color);
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
}

.city_guide_card ul li:not(:last-child)::before {
    content: " ";
    width: 5px;
    height: 5px;
    background-color: var(--primary_color);
    display: block;
    border-radius: 100px;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.city_guide_page .portfolio_card_btn {
    width: 100%;
    background-color: var(--about_card_background);
    border: none;
    color: var(--body_paragraph_color, #efece0);
    font-size: var(--accordion_heading_size);
    line-height: 1.4;
    padding: 15px 20px;
    gap: 15px;
    outline: none;
    transition: background-color 0.3s ease;
}

.booking_banner_right_content h3 {
    font-weight: 700;
    font-size: var(--h3_font_size);
    line-height: 29px;
    letter-spacing: 0%;
    color: var(--white_color);
}

.booking_banner_right_content ul {
    padding-left: 0px;
    list-style-type: none;
}

.booking_banner_right_content ul li {
    display: flex;
    gap: 10px;
}

.booking_page_banner {
    margin-top: 40px;
}

.booking_banner_right_content ul li p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--white_color);
    margin-bottom: 0px;
}

.booking_banner_img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.booking_banner_right_bottom {
    margin-top: 50px;
}

.booking_banner_right_bottom p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--white_color);
}

.booking_side_image_content {
    padding-top: 60px;
    padding-right: 30px;
}

.booking_side_image_content_left {
    margin-left: 40px;
}

.booking_side_image_content h3 {
    font-weight: 700;
    font-size: var(--small_card_title);
    line-height: 24px;
    letter-spacing: 0%;
    text-align: right;
    color: var(--primary_color);
}

.booking_side_image_content_left h3 {
    text-align: start !important;
}

.booking_side_image_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: end;
    color: var(--white_color);
    margin-top: 44px;
}

.booking_side_image_content_left p {
    text-align: start !important;
}

.booking_side_image_content ul {
    text-align: end;
    padding-left: 0px;
    list-style-type: none;
}

.booking_side_image_content_left ul {
    text-align: start !important;
    padding-left: 0px;
    list-style-type: none;
}

.booking_side_image_content ul li {
    display: flex;
    gap: 30px;
    justify-content: end;
    margin-bottom: 5px;
}

.booking_side_image_content_left ul li {
    display: flex;
    gap: 30px;
    justify-content: start !important;
    margin-bottom: 5px;
}

.booking_side_image_content ul li p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.booking_side_image_content ul li a {
    color: var(--primary_color);
}

.booking_side_image_content ul li a:hover {
    color: var(--white_color);
}

.booking_side_image_img img {
    width: 100% !important;
    height: 600px !important;
    object-fit: cover;
}

.booking_side_image_card {
    border-top: 4px solid linear-gradient(90deg, #634A22 40%, #FFFFFF 60%);
}

.booking_side_image_card .container {
    background: var(--about_card_background);
}

.booking_page_bottom_section {
    margin-bottom: 66px;
}

.booking_page_bottom_section .container {
    background-color: var(--about_card_background);
    padding-top: 40px;
    padding-bottom: 20px;
}

.booking_page_bottom_content {
    text-align: center;
}

.booking_page_bottom_content p {
    font-weight: 700;
    font-size: var(--social_button_size);
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--white_color);
}

.booking_page_bottom_content img {
    height: 104px;
    object-fit: cover;
    margin-bottom: 30px;
}

/* ========== City Guide Items Section Css End ==========  */

/* ========================================================== */
/* ========== Services Page Start ==========  */
/* ========================================================== */

/* ========== Services Text Section Css Start ==========  */
.services_banner_text {
    margin-top: 30px;
    margin-bottom: 40px;
}

.services_banner_text_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--white_color);
}

.services_card_image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.servce_card_content h2 {
    font-weight: 700;
    font-size: var(--h2_font_size);
    line-height: 29px;
    letter-spacing: 0%;
    color: var(--white_color);
    margin-bottom: 15px;
}

.servce_card_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--white_color);
    text-align: justify;
    margin-bottom: 30px;
}

.servce_card_content a {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--primary_color);
}

.servce_card_content a:hover {
    color: var(--white_color);
}

.services_bottom_content {
    margin-top: 30px;
}

.services_bottom_content h2 {
    font-weight: 700;
    font-size: var(--h2_font_size);
    line-height: 29px;
    letter-spacing: 0%;
    color: var(--white_color);
    margin-bottom: 15px;
}

.services_bottom_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: justify;
    color: var(--white_color);
    text-align: justify;
}

.service_signle_img_and_content img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    margin-bottom: 30px;
    margin-top: 10px;
}

.service_signle_img_and_content h2 {
    font-weight: 700;
    font-size: var(--h2_font_size);
    line-height: 29px;
    letter-spacing: 0%;
    color: var(--body_paragraph_color);
    margin-bottom: 20px;
    margin-top: 20px;
}

.service_signle_img_and_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--body_paragraph_color);
    text-align: justify;
}

/* ========== Services Text Section Css End ==========  */

/* ======================================================  */
/* ========== News And Blogs Section Css Start ==========  */
/* ======================================================  */

/* ========== News And Blogs Section Css Start ==========  */
.news_and_blogs_section {
    margin-top: 10px;
    padding-bottom: 98px;
}

.news_blogs_items {
    background: var(--about_card_background);
    padding: 0px 10px;
    margin-bottom: 20px;
}

.news_blogs_content {
    text-align: center;
}

.news_blogs_content h5 {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 29px;
    text-align: center;
    color: var(--body_paragraph_color);
    margin-bottom: 5px;
}

.news_blogs_content span {
    font-weight: 400;
    font-size: 12px;
    line-height: 29px;
    text-align: center;
    color: var(--body_paragraph_color);
    margin-bottom: 5px;
}

.news_blogs_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: justify;
    color: var(--body_paragraph_color);
}

.news_blogs_image img {
    width: 100%;
    height: 390px !important;
    object-fit: cover;
}

.blog_news_athor_header {
    text-align: center;
}

.blog_news_athor_header h1 {
    font-family: var(--font-family_allura);
    font-weight: 400;
    font-size: var(--small_card_title);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary_color);
    background-color: var(--white_color);
    padding-top: 13.5px;
    padding-bottom: 13.5px;
}

.news_blogs_side_items {
    background-color: var(--white_color);
    padding: 20px 14.5px;
    text-align: center;
}

.news_blogs_side_items img {
    width: 100%;
    height: 396px;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 22px;
}

.news_blogs_side_items h5 {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--background_color);
    padding: 0px 35px;
    margin-bottom: 25px;
}

.news_blogs_side_items a {
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary_color);
    padding: 0px 35px;
}

.border_bottom_three {
    width: 90%;
    height: 3px;
    background-color: var(--primary_color);
    margin-top: 22px;
    margin: 22px auto 0 auto;
}

.single_news_card_section {
    padding-top: 97px;
    margin-bottom: 81px;
}

.single_blogs_card_section {
    padding-top: 0px;
    margin-bottom: 81px;
}

.single_news_section .container {
    background-color: var(--about_card_background);
}

.single_blogs_card_section .container {
    padding-top: 97px;
    background-color: var(--white_color);
}

.single_blog_section .container {
    background-color: var(--white_color);
}

.single_news_image img {
    width: 100%;
    height: 967px;
}

.single_news_content {
    padding: 30px 10px;
    text-align: center;
}

.single_news_content h2 {
    font-weight: 700;
    font-size: var(--h2_font_size);
    line-height: 29px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary_color);
}

.single_news_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: justify;
    color: var(--body_paragraph_color);
}

.single_blog_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: justify;
    color: var(--background_color);
}

.single_news_card_items {
    position: relative;
}

.single_news_card_items img {
    height: 442px;
    width: 100%;
    object-fit: cover;

}

.single_news_card_over_content {
    background-color: var(--background_color_6);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 5px 5px 15px 5px;
    text-align: center;
}

.single_news_card_items .single_news_card_over_content {
    background-color: var(--white_color_50);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 5px 5px 15px 5px;
    text-align: center;
}

.single_news_card_over_content p {
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary_color);
    margin-bottom: 15px;
}

.single_news_card_over_content a {
    font-weight: 700;
    font-size: var(--accordion_heading_size);
    line-height: 29px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary_color);
}

.single_news_card_over_content a:hover {
    color: var(--background_color);
}

.soicial_primary_button {
    background-color: var(--primary_color) !important;
    color: var(--background_color);
}

.soicial_primary_button:hover {
    background-color: var(--white_color) !important;
    color: var(--background_color);
}

/* ========== News And Blogs Section Css End ==========  */