/* --------------------------- Common CSS Start --------------------------- */
* {
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

:root {
    --font-color: #231b1a;
    --background-color: #f0f7ee;
    --primary-blue: #022048;
    --scondary-blue: #06377b;
    --tertiary-green: #67d659;
    --primary-font: "Poppins", sans-serif;
    --heading-font: "Old Standard TT", serif;
    --background-dark: #020e1d;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

p {
    font-family: var(--primary-font);
    color: var(--font-color);
    font-size: 16px;
    line-height: 2;
}

.font_18 {
    font-size: 18px;
}

.font_22 {
    font-size: 22px;
}

.font_pop {
    font-family: var(--primary-font);
}

.font_old {
    font-family: var(--heading-font);
}

.font_300 {
    font-weight: 300;
}

.font_500 {
    font-weight: 500;
}

.font_700 {
    font-weight: 700;
}

.text_upper {
    text-transform: uppercase;
}

.green_text {
    color: var(--tertiary-green) !important;
}

.white_text {
    color: #ffffff !important;
}

.blue_text {
    color: var(--primary-blue) !important;
}

.section_heading {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-size: 45px;
    font-weight: 700;
}

.sub_heading_30 {
    font-family: var(--heading-font);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.sub_heading_28 {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
}

.sub_heading_26 {
    font-family: var(--primary-font);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

.sub_heading_24 {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
}

.green_btn {
    padding: 22px 47px;
    display: inline-block;
    background-color: rgba(103, 214, 89, 0.16);
    color: #ffffff;
    border: 3px solid #67d659;
    font-family: var(--primary-font);
    font-size: 20px;
    border-radius: 2px;
    transition: all linear 0.2s;
}

.green_btn:hover {
    background-color: var(--tertiary-green);
}

.bold_btn {
    padding: 14px 28px;
    display: inline-block;
    background-color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 2px;
    color: #fff;
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-size: 18px;
    transition: all linear 0.2s;
}

.bold_btn:hover {
    background-color: var(--tertiary-green);
    border: 2px solid var(--tertiary-green);
}

.outline_btn {
    padding: 14px 28px;
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 2px;
    color: var(--primary-blue);
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-size: 18px;
    transition: all linear 0.2s;
}

.outline_btn:hover {
    background-color: var(--primary-blue);
    color: var(--background-color);
}

.green_outline_btn {
    padding: 14px 28px;
    display: inline-block;
    background-color: rgba(103, 214, 89, 0.14);
    border: 2px solid var(--tertiary-green);
    border-radius: 2px;
    color: var(--tertiary-green);
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-size: 18px;
    transition: all linear 0.2s;
}

.green_outline_btn:hover {
    background-color: var(--tertiary-green);
    color: #fff;
}

.mt_20 {
    margin-top: 20px;
}

.mt_25 {
    margin-top: 25px;
}

.mt_30 {
    margin-top: 30px;
}

.mt_35 {
    margin-top: 35px;
}

.mt_40 {
    margin-top: 40px;
}

.mt_45 {
    margin-top: 45px;
}

.mt_55 {
    margin-top: 55px;
}

.mt_75 {
    margin-top: 75px;
}

.mt_80 {
    margin-top: 80px;
}

.mt_85 {
    margin-top: 85px;
}

.mt_100 {
    margin-top: 100px;
}

.mt_150 {
    margin-top: 150px;
}

.mb_24 {
    margin-bottom: 24px;
}

.mb_50 {
    margin-bottom: 50px;
}

.mb_65 {
    margin-bottom: 65px;
}

.mb_85 {
    margin-bottom: 85px;
}

.mb_150 {
    margin-bottom: 150px;
}

/* --------------------------- Common CSS End --------------------------- */

/* --------------------------- Nav Start --------------------------- */
.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: 0.5s ease-in-out;
}

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

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #231b1a;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}

/* when navigation is clicked */
.navbar-toggler .top-bar {
    margin-top: 0px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: rotate(-135deg);
}

/* State when the navbar is collapsed */
.navbar-toggler.collapsed .top-bar {
    margin-top: -20px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    margin-top: 20px;
    transform: rotate(0deg);
}

/* --------------------------------------- */

nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

#hero .navbar {
    background-color: transparent;
    padding: 0;
}

.navbar .navbar-brand {
    width: 20%;
    padding: 0;
}

#hero .navbar-brand .nav_logo {
    width: 122px;
    background-color: #ffffff;
    padding: 30px 15px 25px 15px;
}

#hero .navbar .navbar-brand img {
    width: 93px;
    height: auto;
}

.navbar .navbar-collapse {
    width: 80%;
}

.navbar .nav_middle {
    width: 80%;
    display: flex;
    justify-content: center;
}

.navbar .nav_right {
    width: 20%;
    justify-content: end;
    align-items: center;
}

.nav_others_wrapper {
    display: flex;
}

.nav_others .nav_others_box {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: var(--font-color);
    margin: 1px;
    transition: all linear 0.2s;
}

.nav_others:hover .nav_others_box {
    background-color: var(--tertiary-green);
}

#hero .nav_others .nav_others_box {
    background-color: #ffffff;
}

#hero .nav_others:hover .nav_others_box {
    background-color: var(--tertiary-green);
}

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

.navbar .nav_middle .nav-item .nav-link {
    font-family: var(--primary-font);
    font-size: 16px;
    color: var(--font-color);
    margin: 0 10px;
    text-transform: uppercase;
    padding: 2px 12px;
    transition: all linear 0.2s;
}

.navbar .nav_middle .nav-item .nav-link:hover {
    background-color: rgba(103, 214, 89, 0.3);
}

#hero .navbar .nav_middle .nav-item .nav-link {
    color: #ffffff;
}

.navbar-nav .nav_search {
    font-size: 20px;
    margin-right: 30px;
    color: var(--font-color);
    transition: all linear 0.2s;
}

.navbar-nav .nav_search:hover {
    color: var(--tertiary-green);
}

#hero .navbar-nav .nav_search {
    color: #ffffff;
}

#hero .navbar-nav .nav_search:hover {
    color: var(--tertiary-green);
}

.navbar .dropdown-menu .dropdown-item {
    text-align: right;
    padding: 7px 20px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 50px;
}

.nav_right .form_groups {
    width: 100%;
    display: flex;
    border: 1px solid #022048;
}

.nav_right label {
    width: 10%;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.nav_right label:hover i {
    color: var(--tertiary-green);
}

.nav_right label i {
    color: #fff;
    font-size: 30px;
}

.nav_right input {
    border: none;
    outline: none;
    width: 90%;
    padding: 8px 16px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: rgba(103, 214, 89, 0.3);
}

.sm_dropdown {
    display: none;
}

nav .modal-backdrop.show {
    opacity: 0.9;
}

nav .modal .modal_top {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
}

nav .modal .modal-content {
    min-height: 450px;
}

nav .modal .modal-body {
    padding: 20px 80px;
}

nav .modal .form_group {
    display: flex;
    justify-content: space-between;
}

nav .modal .form_group input {
    border: 1px solid #022048;
    height: 60px;
    width: 85%;
    margin-right: 30px;
}

nav .modal .form_group button {
    width: 15%;
    height: 62px;
    background-color: #022048;
    color: #fff;
    transition: all linear .2s;
    border: none;
}

nav .modal .form_group button:hover {
    background-color: #52ac47;
}

/* --------------------------- Nav End --------------------------- */

/* --------------------------- Hero Start --------------------------- */
#hero {
    position: relative;
    height: 850px;
    width: 100%;
}

#hero .hero_slider .hero_box .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#hero .hero_slider {
    width: 100%;
    height: 850px;
    position: absolute;
    top: 0;
    left: 0;
}

#hero .hero_slider .hero_box {
    width: 100%;
    height: 850px;
}

#hero .hero_slider .hero_box img {
    width: 100%;
    height: 850px;
    object-fit: cover;
    object-position: center;
}

#hero .hero_details {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 50px;
}

#hero .hero_details h1 {
    margin-top: 27px;
    font-size: 80px;
}

#hero .hero_details h2 {
    font-size: 35px;
}

#hero .hero_details p {
    padding-top: 44px;
    width: 559px;
    margin: 0 auto;
}

#hero .hero_details .green_btn {
    margin-top: 83px;
}

#hero .slick-dots {
    display: flex;
    position: absolute;
    left: 70px;
    bottom: 10px;
}

#hero .slick-dots li {
    margin: 5px;
}

#hero .slick-dots li button {
    font-size: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: transparent;
    outline: none;
    border: 3px solid rgba(181, 216, 171, 0.55);
}

#hero .slick-dots .slick-active button {
    background-color: rgba(103, 214, 89, 0.16);
}

#hero .down_arrow {
    position: absolute;
    bottom: 10px;
    right: 70px;
}

#hero .down_arrow a i {
    color: #f0f7ee;
}

/* --------------------------- Hero End --------------------------- */

/* --------------------------- Why DSC Start --------------------------- */
#why_dsc .why_dsc_wrapper {
    margin-top: 134px;
    overflow-x: clip;
}

#why_dsc .why_dsc_wrapper .dsc_text {
    margin-top: 35px;
    position: relative;
    z-index: 101;
}

#why_dsc .why_dsc_wrapper .dsc_text .paragraph {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#why_dsc .why_dsc_wrapper .dsc_main_img {
    height: 777px;
    width: 100%;
    position: relative;
    z-index: 100;
}

#why_dsc .why_dsc_wrapper .dsc_main_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 100;
    border-radius: 2px;
}

#why_dsc .why_dsc_wrapper .dsc_main_img .dsc_bg_img {
    width: 595px;
    height: 1071px;
    position: absolute;
    top: -134px;
    right: -190px;
    z-index: 98;
}

#why_dsc .why_dsc_wrapper .dsc_main_img .dsc_bg_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

#why_dsc .why_dsc_wrapper .dsc_main_img .dsc_bg_img .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(2, 14, 29, 0.75);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 101;
}

#why_dsc .why_dsc_wrapper .why_dsc_data .data_box {
    display: flex;
}

#why_dsc .why_dsc_wrapper .why_dsc_data .data_box .data_img {
    width: 96px;
    height: 96px;
}

#why_dsc .why_dsc_wrapper .why_dsc_data .data_box .data_img img {
    width: 100%;
    display: block;
}

#why_dsc .why_dsc_wrapper .why_dsc_data {
    background-color: #ffffff;
    padding: 60px 61px;
    border-radius: 2px;
    display: flex;
    gap: 104px;
    position: absolute;
    bottom: -330px;
    left: 0;
    z-index: 101;
}

#why_dsc .why_dsc_wrapper .why_dsc_data .data_box .data_info {
    margin-left: 25px;
}

#why_dsc .why_dsc_wrapper .why_dsc_data .data_box .data_info p {
    margin-bottom: 0;
}

#why_dsc .why_dsc_wrapper .why_dsc_data .data_box .data_info .font_22 {
    color: rgba(35, 27, 26, 0.7);
}

/* --------------------------- Why DSC End --------------------------- */

/* --------------------------- Features Start --------------------------- */
#features {
    margin-top: 310px;
}

#features .features_img {
    height: 777px;
    width: 100%;
}

#features .features_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

#features .features_list .feature_main {
    display: flex;
}

#features .features_list .feature_main .feature_wrapper {
    width: 50%;
}

#features .features_list .feature_main .feature_img {
    width: 33px;
}

#features .features_list .feature_main .feature_box {
    display: flex;
    margin-bottom: 30px;
}

#features .features_list .feature_main .feature_img img {
    width: 100%;
    display: block;
}

#features .features_list .feature_main .feature_name {
    font-size: 18px;
    color: #000000;
    margin-left: 15px;
}

/* --------------------------- Features End --------------------------- */

/* --------------------------- Venue Start --------------------------- */
#venues {
    margin-top: 153px;
}

#venues .venues_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#venues .venues_main {
    margin-top: 72px;
    display: flex;
}

#venues .venues_main .venue_box {
    width: 33.33%;
    display: flex;
    flex-direction: column-reverse;
}

#venues .venues_main .venue_box .venue_img_small {
    width: 100%;
    height: 496px;
    position: relative;
}

#venues .venues_main .venue_box .venue_img_big {
    width: 100%;
    height: 640px;
    position: relative;
}

#venues .venues_main .venue_box .venue_img_small img,
#venues .venues_main .venue_box .venue_img_big img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#venues .venues_main .venue_box:nth-child(2n + 1) {
    flex-direction: column;
}

#venues .venues_main .venue_box .overlay {
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(0deg, #000000 0%, #02204873 100%) 0% 0% no-repeat padding-box;
    opacity: 0.88;
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: all linear 0.2s;
}

#venues .venues_main .venue_box .overlay:hover {
    background: transparent linear-gradient(0deg, #000000cf 0%, #08080894 32%, #54545400 100%) 0% 0% no-repeat padding-box;
}

#venues .venues_main .venue_box .overlay .sub_heading_26 {
    opacity: 0.7;
    transition: all linear 0.2s;
}

#venues .venues_main .venue_box .overlay:hover .sub_heading_26 {
    opacity: 1;
}

#venues .venues_main .venue_box .overlay p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    margin-top: 20px;
    opacity: 0.7;
    transition: all linear 0.2s;
}

#venues .venues_main .venue_box .overlay:hover p {
    opacity: 1;
}

#venues .venues_main .venue_box .overlay .overlay_btn {
    font-family: var(--primary-font);
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.36px;
    padding: 2px 6px;
    background-color: var(--background-color);
    opacity: 0.6;
    display: inline-block;
    margin-top: 16px;
    transition: all linear 0.2s;
}

#venues .venues_main .venue_box .overlay .overlay_btn:hover {
    background-color: #fff;
}

#venues .venues_main .venue_box .overlay:hover .overlay_btn {
    opacity: 1;
}

/* --------------------------- Venue End --------------------------- */

/* --------------------------- Bird eye view Start --------------------------- */
#video_view {
    margin-top: 146px;
    overflow-x: clip;
}

#video_view .video_view_wrapper .video_text {
    margin-top: 161px;
    position: relative;
    z-index: 101;
}

#video_view .video_view_wrapper .video_text .paragraph {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#video_view .video_view_wrapper .video_main_img {
    height: 777px;
    width: 100%;
    position: relative;
    z-index: 100;
}

#video_view .video_view_wrapper .video_main_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 100;
    border-radius: 2px;
}

#video_view .video_view_wrapper .video_main_img .play_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    cursor: pointer;
}

#video_view .video_view_wrapper .video_main_img .play_icon #Ellipse_5 {
    transition: all linear 0.2s;
}

#video_view .video_view_wrapper .video_main_img .play_icon:hover #Ellipse_5 {
    fill: var(--primary-blue);
    opacity: 1;
}

#video_view .video_view_wrapper .dsc_bg_img {
    width: 595px;
    height: 1071px;
    position: absolute;
    top: -147px;
    right: -190px;
    z-index: 98;
}

#video_view .video_view_wrapper .dsc_bg_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

#video_view .video_view_wrapper .dsc_bg_img .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(2, 14, 29, 0.75);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 101;
}

/* --------------------------- Bird eye view End --------------------------- */

/* --------------------------- Different Start --------------------------- */
#different {
    margin-top: 296px;
}

#different .different_wrapper .different_main {
    margin-top: 138px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#different .different_wrapper .different_main .different_box {
    width: 33.33%;
    text-align: center;
    margin-bottom: 141px;
    padding: 0 40px;
    box-sizing: border-box;
}

#different .different_wrapper .different_main .different_box .different_icon img {
    height: 88px;
    width: auto;
}

#different .different_wrapper .different_main h6 {
    margin-top: 30px;
    color: var(--primary-blue);
}

#different .different_wrapper .different_main p {
    margin-top: 35px;
    font-size: 16px;
    color: var(--font-color);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --------------------------- Different end --------------------------- */

/* --------------------------- Future Projects start --------------------------- */
#future_projects {
    margin-top: 33px;
}

#future_projects .future_projects_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#future_projects .future_projects_main {
    margin-top: 72px;
    display: flex;
}

#future_projects .future_projects_main .future_projects_box {
    width: 33.33%;
    display: flex;
    flex-direction: column-reverse;
}

#future_projects .future_projects_main .future_projects_box .future_projects_img_small {
    width: 100%;
    height: 496px;
    position: relative;
}

#future_projects .future_projects_main .future_projects_box .future_projects_img_big {
    width: 100%;
    height: 640px;
    position: relative;
}

#future_projects .future_projects_main .future_projects_box .future_projects_img_small img,
#future_projects .future_projects_main .future_projects_box .future_projects_img_big img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#future_projects .future_projects_main .future_projects_box:nth-child(2n + 1) {
    flex-direction: column;
}

#future_projects .future_projects_main .future_projects_box .overlay {
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(0deg, #000000 0%, #02204873 100%) 0% 0% no-repeat padding-box;
    opacity: 0.88;
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: all linear 0.2s;
}

#future_projects .future_projects_main .future_projects_box .overlay:hover {
    background: transparent linear-gradient(0deg, #000000cf 0%, #08080894 32%, #54545400 100%) 0% 0% no-repeat padding-box;
}

#future_projects .future_projects_main .future_projects_box.overlay .sub_heading_26 {
    opacity: 0.7;
    transition: all linear 0.2s;
}

#future_projects .future_projects_main .future_projects_box .overlay:hover .sub_heading_26 {
    opacity: 1;
}

#future_projects .future_projects_main .future_projects_box .overlay p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    margin-top: 20px;
    opacity: 0.7;
    transition: all linear 0.2s;
}

#future_projects .future_projects_main .future_projects_box .overlay .overlay_btn {
    font-family: var(--primary-font);
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.36px;
    padding: 2px 6px;
    background-color: var(--background-color);
    opacity: 0.6;
    display: inline-block;
    margin-top: 16px;
    transition: all linear 0.2s;
}

/* --------------------------- Future Projects end --------------------------- */

/* --------------------------- News & Events Start --------------------------- */
.home_news_events {
    margin-top: 178px;
}

#news_events .news_events_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#news_events .new_event_main {
    margin-top: 68px;
}

#news_events .new_event_main .news_event_box {
    background-color: #fff;
}

#news_events .new_event_img {
    height: 317px;
    width: 100%;
    position: relative;
}

#news_events .new_event_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#news_events .new_event_img .new_event_date {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: #fff;
    padding: 20px 16px;
}

#news_events .new_event_img .new_event_date .date_text {
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;
}

#news_events .new_event_main .news_event_box .new_events_info {
    padding: 35px 24px 30px 24px;
}

#news_events .new_event_main .news_event_box .new_events_info p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_events_title {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 29px;
}

.news_events_title a {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 29px;
    display: inline-block;
    transition: all linear 0.2s;
}

.news_events_title a:hover {
    color: #52ac47;
}

.news_events_title i {
    color: var(--tertiary-green);
    font-size: 24px;
}

/* --------------------------- News & Events End --------------------------- */

/* --------------------------- map start --------------------------- */
#map {
    margin-top: 179px;
}

#map iframe {
    width: 100%;
    height: 650px;
    margin-top: 68px;
}

/* --------------------------- map End --------------------------- */

/* --------------------------- reserve venue start --------------------------- */
#reserve_venue {
    background-color: var(--primary-blue);
    text-align: center;
    padding: 107px 0 97px 0;
}

#reserve_venue .section_heading {
    color: #fff;
    padding-bottom: 49px;
    width: 784px;
    margin: 0 auto;
}

#reserve_venue p {
    color: #fff;
    width: 909px;
    margin: 0 auto;
    padding-bottom: 52px;
}

/* --------------------------- reserve venue end --------------------------- */
#return-to-top {
    opacity: 1;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(103, 214, 89, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 2px;
    text-decoration: none;
    display: none;
    z-index: 100000;
    text-align: center;
}

#return-to-top i {
    color: var(--primary-blue);
    font-size: 30px;
    line-height: 47px;
}

#return-to-top:hover {
    background-color: var(--tertiary-green);
}

footer {
    padding-top: 111px;
    background-color: #fff;
}

.footer_main {
    display: flex;
    margin-bottom: 85px;
}

.footer_left {
    margin-left: 44px;
    width: 448px;
}

.footer_right {
    margin-left: 68px;
    width: 448px;
    margin-top: 50px;
}

footer .footer_logo {
    height: 99px;
}

footer .footer_logo img {
    height: 100%;
    width: auto;
    display: block;
}

footer .footer_title {
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 400;
    margin-top: 57px;
    margin-bottom: 24px;
}

footer .footer_social ul {
    display: flex;
    gap: 47px;
    padding-left: 0;
}

footer .footer_social ul li a i {
    font-size: 24px;
    color: var(--primary-blue);
    transition: all linear 0.2s;
}

footer .footer_social ul li a:hover i {
    color: var(--tertiary-green);
}

footer .footer_contact {
    display: flex;
    align-items: center;
    margin-bottom: 42px;
}

footer .footer_contact a {
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--font-color);
    transition: all linear 0.2s;
}

footer .footer_contact a:hover {
    color: var(--tertiary-green);
}

footer .footer_contact .footer_address {
    width: 240px;
}

footer .footer_contact i {
    margin-right: 32px;
    font-size: 22px;
    color: var(--primary-blue);
}

footer .footer_links {
    margin-bottom: 80px;
}

footer .footer_links ul {
    padding-left: 0;
    display: flex;
    justify-content: center;
}

footer .footer_links ul li {
    padding: 0 30px;
    position: relative;
}

footer .footer_links ul li::after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #000000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
}

footer .footer_links ul li:last-child::after {
    display: none;
}

footer .footer_links ul li a {
    color: var(--primary-blue);
    transition: all linear 0.3s;
}

footer .footer_links ul li a:hover {
    color: var(--tertiary-green);
}

footer .footer_copy {
    background-color: var(--font-color);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 39px 10px;
}

/* --------------------------- Footer end --------------------------- */

/* ==================== About DSC Page Start ==================== */
.navbar {
    background-color: #fff;
    padding: 13px 0;
}

.navbar .navbar-brand img {
    width: 70px;
    height: auto;
}

#about_us .about_text p {
    display: -webkit-box;
    -webkit-line-clamp: 14;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#about_us .about_img {
    height: 384px;
}

#about_us .about_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#main_venue {
    background-color: var(--background-dark);
    padding-top: 100px;
    padding-bottom: 85px;
    box-sizing: border-box;
}

.main_venue_wrapper .slick-list {
    margin: 0 -40px;
}

.main_venue_wrapper .main_venue_item {
    margin: 0 40px;
    text-align: center;
    padding-bottom: 100px;
}

.main_venue_wrapper .main_venue_item .main_venue_img {
    width: 100%;
    height: 390px;
}

.main_venue_wrapper .main_venue_item .main_venue_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 14px;
    padding-left: 0;
}

.slick-dots li button {
    font-size: 0px;
    width: 33px;
    height: 4px;
    background-color: rgba(212, 212, 212, 0.7);
    border: none;
    outline: none;
}

.slick-dots .slick-active button {
    background-color: var(--tertiary-green);
}

#about_feature h3 {
    margin-top: 296px;
    text-align: center;
}

#about_feature .about_feature_box {
    display: flex;
    align-items: center;
    margin-bottom: 43px;
}

#about_feature .about_feature_box p {
    margin-bottom: 0;
}

#about_feature .about_feature_img {
    width: 33px;
    margin-right: 22px;
}

#about_feature .about_feature_img img {
    width: 100%;
    display: block;
}

#about_feature .btn_box {
    text-align: center;
}

/* ==================== About DSC Page End ==================== */

/* ==================== All venue Start ==================== */
#all_venue {
    margin-bottom: 65px;
}

#all_venue .section_heading {
    text-align: center;
}

#all_venue .nav-pills {
    justify-content: center;
}

#all_venue .nav-pills .nav-item .nav-link {
    padding: 4px 16px;
    border-radius: 2;
    color: var(--primary-blue);
    background-color: #fff;
    font-family: var(--primary-font);
    margin: 0 11px;
}

#all_venue .nav-pills .nav-item .nav-link.active {
    background-color: var(--primary-blue);
    color: #fff;
}

#all_venue .all_venue_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -40px;
}

#all_venue .all_venue_wrapper .all_venue_box {
    width: 50%;
    padding: 0 40px;
    text-align: center;
}

#all_venue .all_venue_wrapper .all_venue_box .all_venue_img {
    height: 390px;
}

#all_venue .all_venue_wrapper .all_venue_box .all_venue_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#all_venue .all_venue_wrapper .all_venue_box .sub_heading_30 {
    color: var(--primary-blue);
}

#all_venue .all_venue_wrapper .all_venue_box p {
    padding: 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== All venue End ==================== */

/* ==================== Venue Deatils Start ==================== */
#venue_deatils .venue_info p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-right: 80px;
}

#venue_deatils .veanue_features ul {
    list-style: url(../images/icons/check-mark.png);
}

#venue_deatils .veanue_features ul li {
    margin-bottom: 12px;
}

#venue_deatils .venue_data {
    padding: 72px 52px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 2px;
    display: flex;
    gap: 100px;
    flex-direction: column;
}

#venue_deatils .venue_data .venue_data_part {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 73px;
}

#venue_deatils .venue_data .venue_data_part .venue_data_box {
    display: flex;
    gap: 16px;
    align-items: center;
}

#venue_deatils .venue_data .venue_data_part .venue_data_box .venue_data_img img {
    width: 96px;
    display: block;
}


#venue_deatils .venue_data .venue_data_part .venue_data_box p {
    color: rgba(35, 27, 26, 0.69);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0;
}

#venue_deatils .venue_data .venue_data_part .venue_data_box .data .number {
    font-family: var(--heading-font);
    font-size: 40px;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.4;
}

#venue_deatils .venue_data .venue_data_part .venue_data_box .data p span {
    font-family: var(--primary-font);
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-left: 10px;
}

#venue_glance {
    background-color: #020e1d;
    padding: 100px 0 85px 0;
    box-sizing: border-box;
}

#venue_glance .venue_glance_slider .venue_glance_img {
    width: 100%;
    height: 390px;
    margin: 40px;
    margin-bottom: 100px;
}

#venue_glance .venue_glance_slider .venue_glance_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#venue_glance .venue_glance_slider .slick-list {
    margin: 0 -40px;
}

#reserve_this_venue {
    background-color: #fff;
    text-align: center;
    padding: 107px 0 97px 0;
}

#reserve_this_venue .section_heading {
    padding-bottom: 49px;
    width: 784px;
    margin: 0 auto;
}

#reserve_this_venue p {
    width: 909px;
    margin: 0 auto;
    padding-bottom: 52px;
}

#more_venue {
    padding: 150px 0;
    box-sizing: border-box;
}

#more_venue .more_venue_top {
    display: flex;
    justify-content: space-between;
}

#more_venue .more_venue_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -40px;
    padding-top: 45px;
}

#more_venue .more_venue_wrapper .more_venue_item {
    width: 50%;
    padding: 0 40px;
    text-align: center;
}

#more_venue .more_venue_wrapper .more_venue_item .main_venue_img {
    height: 390px;
}

#more_venue .more_venue_wrapper .more_venue_item .main_venue_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#more_venue .more_venue_wrapper .more_venue_item p {
    padding: 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Venue Deatils End ==================== */

/* ==================== Facilities Start ==================== */
#our_facilities .facility_top_img,
#all_facilities .facility_img {
    height: 400px;
}

#our_facilities .facility_top_img img,
#all_facilities .facility_img img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#our_facilities p {
    display: -webkit-box;
    -webkit-line-clamp: 13;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#all_facilities .facility_text p {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Facilities End ==================== */

/* ==================== Pricing Start ==================== */
#pricing .pricing_main {
    display: flex;
}

#pricing .pricing_main .pricing_category {
    width: 25%;
}

#pricing .pricing_main .price_details {
    width: 75%;
    padding-left: 100px;
    box-sizing: border-box;
}

#pricing .pricing_main .price_details .price_wrapper {
    display: flex;
}

#pricing .pricing_main .pricing_category p {
    font-weight: 500;
}

#pricing .nav-pills .nav-link {
    background-color: transparent;
    color: var(--primary-blue);
    font-size: 28px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-blue);
    border-radius: 0;
}

#pricing .nav-pills .nav-link.active {
    color: var(--tertiary-green);
}

#pricing .price_details .price_text {
    width: 60%;
}

#pricing .price_details .price_info {
    width: 40%;
    margin-left: 100px;
    background-color: #fff;
    padding: 44px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 73px;
}

#pricing .price_details .price_info .price_data_box {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    align-items: center;
}

#pricing .price_details .price_info .price_data_box .price_data_img img {
    width: 96px;
    display: block;
}

#pricing .price_details .price_info .price_data_box .data .number {
    font-family: var(--heading-font);
    font-size: 40px;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.4;
}

#pricing .price_details .price_info .price_data_box p {
    color: rgba(35, 27, 26, 0.69);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==================== Pricing End ==================== */

/* ==================== Venue Pricing Start ==================== */
#venue_pricing h1 {
    text-align: center;
}

#venue_pricing .venue_pricing_main .nav-pills .venue_pills {
    width: 100%;
    display: flex;
    justify-content: center;
}

#venue_pricing .venue_pricing_main .nav-pills .venue_pills .nav-link {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-blue);
    background-color: #fff;
    padding: 4px 16px;
    border-radius: 0;
    margin: 0 11px;
}

#venue_pricing .venue_pricing_main .nav-pills .venue_pills .nav-link.active {
    color: #fff;
    background-color: var(--primary-blue);
}

#venue_pricing .venue_pricing_main .venue_pricing_box {
    background-color: #fff;
    border-radius: 2;
    text-align: center;
    -webkit-box-shadow: 0px 0px 15px -14px rgba(0, 0, 0, 0.65);
    -moz-box-shadow: 0px 0px 15px -14px rgba(0, 0, 0, 0.65);
    box-shadow: 0px 0px 15px -14px rgba(0, 0, 0, 0.65);
    margin-bottom: 90px;
}

#venue_pricing .venue_pricing_main .venue_pricing_box .venue_pricing_img {
    height: 283px;
}

#venue_pricing .venue_pricing_main .venue_pricing_box .venue_pricing_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#venue_pricing .venue_pricing_main .venue_pricing_box .venue_pricing_details {
    padding: 30px 25px 25px 25px;
}

#venue_pricing .venue_pricing_main .venue_pricing_box .venue_pricing_details .venue_pricing_info span {
    font-weight: 600;
}

#venue_pricing .venue_pricing_main .venue_pricing_box .venue_pricing_details .btn_group {
    display: flex;
    justify-content: space-between;
}

/* ==================== Venue Pricing End ==================== */

/* ==================== contact Start ==================== */
#contact .map iframe {
    width: 100%;
    height: 550px;
}

#contact .contact_person {
    margin-bottom: 90px;
}

#contact .contact_person_info h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

#contact .contact_person_info p {
    margin-bottom: 10px;
}

#contact .contact_person_info a {
    color: var(--primary-blue);
    transition: all linear 0.2s;
    font-weight: 500;
}

#contact .contact_person_info a:hover {
    color: var(--tertiary-green);
}

#contact .contact_form .form_group {
    margin-bottom: 35px;
}

#contact .contact_form .form_group label {
    display: block;
    font-family: var(--primary-font);
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
}

#contact .contact_form .form_group input,
#contact .contact_form .form_group textarea {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(2, 32, 72, 0.2);
    border-radius: 2px;
    padding: 24px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

#contact .contact_form button {
    margin-top: 15px;
}

/* ==================== contact End ==================== */

/* ==================== Dinning Start ==================== */
#dinning {
    padding: 150px 0;
    box-sizing: border-box;
}

#dinning .dinning_venue_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -40px;
    padding-top: 45px;
}

#dinning .dinning_venue_wrapper .dinning_venue_item {
    width: 50%;
    padding: 0 40px;
    text-align: center;
}

#dinning .dinning_venue_wrapper .dinning_venue_item .dinning_venue_img {
    height: 390px;
}

#dinning .dinning_venue_wrapper .dinning_venue_item .dinning_venue_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#dinning .dinning_venue_wrapper .dinning_venue_item p {
    padding: 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Dinning End ==================== */

/* ==================== Dinning venue Start ==================== */
#dinning_menu .dinning_menu_top {
    display: flex;
    justify-content: space-between;
}

#dinning_menu .dinning_menu_box .dinning_menu_img {
    height: 283px;
}

#dinning_menu .dinning_menu_box .dinning_menu_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#dinning_menu .dinning_menu_box .dinning_menu_time {
    text-align: center;
    margin-top: 28px;
}

#dinning_menu .dinning_menu_time .modal .modal-content {
    padding: 30px 40px;
}

#dinning_menu .dinning_menu_time .modal .modal-content .btn_box_top {
    text-align: right;
    margin-bottom: 40px;
}

#dinning_menu .dinning_menu_time .modal .modal-content .btn_box_bottom {
    text-align: right;
    margin-top: 40px;
}

#dinning_menu .dinning_menu_time .modal .modal-content .menu_table_top {
    display: flex;
    justify-content: space-between;
}

.table-striped>tbody>tr:nth-of-type(2n + 1)>* {
    --bs-table-accent-bg: #f0f7ee !important;
}

#dinning_menu .dinning_menu_time table {
    margin-top: 30px;
}

#dinning_menu .dinning_menu_time table tr {
    border: transparent !important;
}

/* ==================== Dinning venue End ==================== */

/* ==================== Virtual Tour Start ==================== */
#virtual_tour .virtual_tour_main iframe {
    width: 100%;
    height: 640px;
    margin-bottom: 150px;
}

/* ==================== Virtual Tour End ==================== */

/* ==================== All news blogs Start ==================== */
#latest .latest_main .latest_img {
    width: 100%;
    height: 525px;
    position: relative;
}

#latest .latest_main .latest_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#latest .latest_main .latest_img .new_event_date {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: #fff;
    padding: 20px 16px;
}

#latest .latest_main .latest_img .new_event_date .date_text {
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;
}

#latest .latest_main .new_events_info {
    padding: 40px 24px 30px 24px;
    background-color: #fff;
}

#latest .latest_main .new_events_info p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination_main .pagination {
    justify-content: right;
}

.pagination_main .pagination .page-item .page-link {
    padding: 12px 24px;
    border-radius: none;
    background-color: #fff;
    margin: 0 12px;
    border: none;
    color: var(--primary-blue);
    font-size: 20px;
    transition: all linear 0.2s;
}

.pagination_main .pagination .page-item .page-link:hover {
    background-color: var(--tertiary-green);
}

.pagination_main .pagination .page-item .page-link.active {
    background-color: var(--primary-blue);
    color: #fff;
}

/* ==================== All news blogs End ==================== */

/* ==================== News Events Blog Details Start ==================== */
#news_events_blog_details .news_events_blog_details_main .news_events_blog_details_img {
    width: 100%;
    height: 525px;
    position: relative;
}

#news_events_blog_details .news_events_blog_details_main .news_events_blog_details_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#news_events_blog_details .news_events_blog_details_main .news_events_blog_details_img .new_event_date {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: #fff;
    padding: 20px 16px;
}

#news_events_blog_details .news_events_blog_details_main .news_events_blog_details_img .new_event_date .date_text {
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;
}

.news_events_blog_gallery_img {
    height: 317px;
    width: 100%;
}

.news_events_blog_gallery_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ==================== News Events Blog Details End ==================== */

/* ==================== All Events Start ==================== */
#upcoming_event .upcoming_event_main {
    display: flex;
    background-color: #fff;
}

#upcoming_event .upcoming_event_main .upcoming_event_left {
    width: 65%;
}

#upcoming_event .upcoming_event_main .upcoming_event_right {
    width: 35%;
    padding: 30px 24px 24px 24px;
}

#upcoming_event .upcoming_event_main .upcoming_event_left .upcoming_event_img {
    min-height: 525px;
    height: 100%;
    position: relative;
}

#upcoming_event .upcoming_event_main .upcoming_event_left .upcoming_event_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#upcoming_event .upcoming_event_main .upcoming_event_left .upcoming_event_img .new_event_date {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: #fff;
    padding: 20px 16px;
}

#upcoming_event .upcoming_event_main .upcoming_event_left .upcoming_event_img .new_event_date .date_text {
    font-family: var(--heading-font);
    font-size: 27px;
    font-weight: 700;
}

#upcoming_event .upcoming_event_main .upcoming_event_right p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#upcoming_event .upcoming_event_main .upcoming_event_right .schedule {
    display: flex;
    gap: 35px;
}

#upcoming_event .upcoming_event_main .upcoming_event_right .btn_box a {
    margin-right: 24px;
}

/* ==================== All Events End ==================== */

/* ==================== Gallery Start ==================== */
#gallery .gallery_img {
    height: 350px;
    margin-bottom: 24px;
    position: relative;
}

#gallery .gallery_img img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.mfp-bg {
    z-index: 99999;
}

.mfp-wrap {
    z-index: 99999;
}

#gallery .gallery_img .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 228px;
    background: transparent linear-gradient(0deg, #022048 0%, #00060e00 100%) 0% 0% no-repeat padding-box;
    transition: all linear 0.1s;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#gallery .gallery_img .overlay p {
    color: #fff;
}

#gallery .gallery_img:hover .overlay {
    visibility: hidden;
    opacity: 0;
}

/* ==================== Gallery End ==================== */

/* ==================== Single Details Start ==================== */
.details_img img {
    float: right;
    margin: 10px 0 25px 70px;
    width: 50%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.details_text {
    text-align: justify;
    min-height: 420px;
}

.no_data {
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 600;
    color: orangered;
    text-align: center;
}

/* ==================== Single Details End ==================== */

.gallery_folder {
    margin-bottom: 24px;
    position: relative;
}

#gallery_main_page img {
    display: block;
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#gallery_main_page .gallery_folder .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 228px;
    background: transparent linear-gradient(0deg, #022048 0%, #00060e00 100%) 0% 0% no-repeat padding-box;
    transition: all linear 0.1s;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#gallery_main_page .gallery_folder .overlay p {
    color: #fff;
}

#gallery_main_page .gallery_folder span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all linear .2s;
}

#gallery_main_page .gallery_folder span a {
    display: inline-block;
    padding: 8px 20px;
        border-radius: 30px;
        background-color: #022048;
    color: #fff;
    transition: all linear .3s;
}

#gallery_main_page .gallery_folder span a:hover{
    color: #52ac47;
}

#gallery_main_page .gallery_folder:hover .overlay {
    visibility: hidden;
    opacity: 0;
}

#gallery_main_page .gallery_folder:hover span {
    opacity: 1;
}