/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img{
  width:100%
}
.vks_header{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    /* position: absolute;
    z-index: 10; */
    background: #ffffff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .12);
}
.vks_header .vks_menu{
    width: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vks_header .vks_menu .logo{
    width: 27%;
    display: block;
}

/* =============main menu============= */

/* Custom wrapper styling */


/* Navbar customization */
.custom-navbar {
    width: 100%;
}

/* Logo */
.vks_menu .logo img {
    max-height: 80px;
    height: auto;
}

/* Menu items */
.custom-menu-class .nav-item {
    position: relative;
    margin-left: 15px;
}

.custom-menu-class .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s;
}

.custom-menu-class .nav-link:hover {
    color: #e60023; /* change hover color */
}

/* Dropdown */
.custom-menu-class .dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-top: 0;
    padding: 0;
}
.custom-menu-class .dropdown-menu .menu-item{
    margin: 0;
}
.custom-menu-class .dropdown-menu .menu-item .dropdown-item {
    color: #333;
    padding: 10px 20px;
    font-size:16px;
    font-weight: 500;
}

.custom-menu-class .dropdown-menu .menu-item .dropdown-item:hover {
    background-color: #bc2049;
    color: #fff;
}

/* Multi-level dropdowns (nested) */
.custom-menu-class .dropdown-submenu {
    position: relative;
}

.custom-menu-class .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
}

/* Mobile */
@media (max-width: 991.98px) {
    .custom-menu-class .nav-item {
        margin-left: 0;
    }

    .custom-menu-class .dropdown-menu {
        position: static !important;
        float: none;
    }

    .custom-menu-class .dropdown-submenu > .dropdown-menu {
        left: 0 !important;
        top: 0;
        margin-left: 0;
    }
}


/* =============main menu============= */







/* =============main slider============= */
.main_slider{
}
.main_slider .owl-carousel.owl-drag .owl-item.active .item .slide_frame .slide_bg img{
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) rotate(1deg);
    transform: scale(1.1, 1.1) rotate(1deg);
    -webkit-transition: all 3s;
    transition: all 3s;
}
.main_slider .slide_frame{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.main_slider .slide_frame .slide_bg{}
.main_slider .slide_frame .slide_bg img{}
.main_slider .slide_frame .slide_info{
    position: absolute;
    bottom: 30%;
    left: 60px;
    right: 0;
    display: block;
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
.main_slider .slide_frame .slide_info h2{
    font-size: 36px;
    color: #fff;
    font-weight: 800;
    margin: 0;
}
.main_slider .slide_frame .slide_info p{
    font-size: 16px;
    color: #fff;
    margin: 0;
}
.main_slider .slide_frame .slide_info a.page_link{
    width: 200px;
    display: block;
    color: #8e1b3c;
    border: 1px #fff solid;
    text-align: center;
    padding: 4px 0;
    background: #fff;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
}


.main_slider .slide_frame .slide_info a.page_link:hover, .main_slider .slide_frame .slide_info a.page_link:active{
    color: #f06c8d;
    border: 1px #fbbfce solid;
    transition: 0.8s;
}
.main_slider .home_slider{
    position: relative;
}
.main_slider .home_slider .owl-dots{
    position: absolute;
    right: 40px;
    bottom: 40px;
}
.main_slider .home_slider .owl-dots span{}
.main_slider .home_slider .owl-dots .owl-dot.active span{
    background: #fff;
    width: 30px;
}
    
/* =============main slider end============= */
/* =============banner slider start============= */


.btn.hover-border-1::before,
.btn.hover-border-1::after {
  width: 10%; height: 25%;
  transition: 0.35s;
}
.btn.hover-border-1::before {
  top: 0; left: 0;
  border-left: 1px solid rgb(28, 31, 30);
  border-top: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-1::after {
  bottom: 0; right: 0;
  border-right: 1px solid rgb(28, 31, 30);
  border-bottom: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-1:hover::before,
.btn.hover-border-1:hover::after {
  width: 99%;
  height: 98%;
}
/* =============banner slider end============= */
/* =============venue list============= */
.vks_venue{
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

.vks_venue .head_title{
    width: 60%;
}
.vks_venue .head_title h3{
    font-size: 14px;
    margin: 0;
    color: #000000;
}
.vks_venue .head_title h2{
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    color: #3e3e3e;
}
.vks_venue .head_text{
    width: 40%;
}
.vks_venue .head_text p{}
.vks_venue .venue_frame{
    box-shadow: 0 2px 8px #00000026;
    border-radius: .5rem;
    transition: box-shadow .2s;
    cursor: pointer;
    margin: 0;
}
.vks_venue .venue_frame .venue_bg{overflow: hidden;border-radius: 4px;position: relative;}
.vks_venue .venue_frame .venue_bg img{}

.vks_venue .venue_frame .venue_bg .venue_rate{
    position: absolute;
    bottom: 10px;
    z-index: 100;
    right: 10px;
    background: #ffc835;
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0px 0px 2px #00000026;
}
.vks_venue .venue_frame .venue_bg .venue_rate i{
    color: #ffffff;
}
.vks_venue .venue_frame:hover .venue_bg img{
    opacity: .6;
    -webkit-transform: scale(1.1, 1.1) rotate(1deg);
    transform: scale(1.1, 1.1) rotate(1deg);
    -webkit-transition: all 3s;
    transition: all 3s;
}
.vks_venue .venue_frame .venue_info{
    padding: 14px 20px;
    width: 100%;
    margin: 0 auto;
}
.vks_venue .venue_frame .venue_info .venue_name{}
.vks_venue .venue_frame .venue_info .venue_name h2{
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #000000;
}
.vks_venue .venue_frame .venue_info .venue_detail{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px auto;
}
.vks_venue .venue_frame .venue_info .venue_detail .location{
    font-size: 14px;
    color: #000;
}
.vks_venue .venue_frame .venue_info .venue_detail .location i{
    color: #158b1c;
}
.vks_venue .venue_frame .venue_info .venue_detail .capacity{
    font-size: 12px;
    color: #404040;
    background: #ecececba;
    padding: 0 6px;
    border-radius: 4px;
}
.vks_venue .venue_frame .venue_info .venue_detail .capacity i{
    color: #158b1c;
}
.vks_venue .venue_frame .venue_info .venue_action_cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
}
.vks_venue .venue_frame .venue_info .venue_action_cta a.whatsapp_tap{
    background: #00b853;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding: 3px 1px 0 1px;
}
.vks_venue .venue_frame .venue_info .venue_action_cta a.whatsapp_tap:hover{
    background: #03a84e;
}
.vks_venue .venue_frame .venue_info .venue_action_cta a.whatsapp_tap i{}
.vks_venue .venue_frame .venue_info .venue_action_cta a.venue_quote{
    font-size: 14px;
    color: #ff6a8f;
    font-weight: 400;
    width: 47%;
    display: block;
    background: #fbbfce75;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    padding: 3px 0;
}
.vks_venue .venue_frame .venue_info .venue_action_cta a.venue_quote:hover{
    color: #f06c8d;
    border: 1px #fbbfce solid;
    background: #fff;
    
}
.vks_venue .venue_slider{
    position: relative;
    margin-top: 16px;
}
.vks_venue .venue_slider .owl-nav{
    position: absolute;
    top: -45px;
    right: 0;
    margin: 0;
}
.vks_venue .venue_slider .owl-nav .owl-prev{
    width: 30px;
    background: #e3dddf;
}
.vks_venue .venue_slider .owl-nav .owl-prev span{
}
.vks_venue .venue_slider .owl-nav .owl-next{
    width: 30px;
    background: #e3dddf;
}
.vks_venue .venue_slider .owl-nav .owl-next span{}


/* =============venue list end============= */
/* =============experience start============= */
.vks_experience{
    width: 100%;
    background: #e7e7e740;
    padding: 40px 0;
    margin: 0 auto;
}
.vks_experience .experience_title{
    text-align: center;
    padding: 40px 0;
}
.vks_experience .experience_title h3{
    margin: 0;
    font-size: 19px;
}
.vks_experience .experience_title h2{
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
    color: #3e3e3e;
}
.vks_experience .experience_title h2 span{
    font-weight: 700;
    color: #dbc880;
}
.vks_experience .experience_title p{}
.vks_experience .experience_part{
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    background: #fff;
    transition: all ease 0.5s;
    margin-bottom: 25px;
}
.vks_experience .experience_part .experience_img{
    overflow:hidden
}
.vks_experience .experience_part .experience_img img{}
.vks_experience .experience_part:hover .experience_img img{opacity: .6;
    -webkit-transform: scale(1.1, 1.1) rotate(1deg);
    transform: scale(1.1, 1.1) rotate(1deg);
    -webkit-transition: all 3s;
    transition: all 3s;}
.vks_experience .experience_part .experience_text{
    padding: 10px 20px;
}
.vks_experience .experience_part .experience_text h3{
    font-size: 19px;
    color: #080808;
    transition: all ease 0.5s;
}
.vks_experience .experience_part .experience_text p{
    padding-bottom: 5px;
    font-size: 14px;
}
/* =============experience end============= */




.side_links{
    position: fixed;
    right: -20px;
    bottom: 30%;
    z-index: 1000;
}
.side_links ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.side_links ul li{
    list-style: none;
    border: 1px #f06c8d solid;
    width: max-content;
    padding: 8px 10px;
    background: #fff;
    margin-bottom: 9px;
}
.side_links ul li a{
    color: #f06c8d;
    text-decoration: none;
    font-size: 14px;
}
.side_links ul li.text_verti{
    transform: rotate(90deg);
    display: inline-block;
    margin: 0;
    margin-bottom: 54px;
    padding: 4px 15px;
}
.side_links ul li a i{
    font-size: 14px;
}


.hotel_profile{
    width: 100%;
    padding: 40px 0;
}
.hotel_profile .profile_title{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}
.hotel_profile .profile_title h2{
    font-size: 36px;
    font-weight: bold;
    color: #3e3e3e;
}
.hotel_profile .profile_title p{}
.hotel_profile .property_profile{
    position: relative;
}
.hotel_profile .property_profile .owl-nav{
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    top: 40%;
    align-items: center;
    margin: 0;
}
.hotel_profile .property_profile .owl-nav .owl-prev{
    width: 40px;
    height: 40px;
    background: #fff;
    margin-left: 30px;
}
.hotel_profile .property_profile .owl-nav .owl-prev span{
    font-size: 26px;
}
.hotel_profile .property_profile .owl-nav .owl-next{
    width: 40px;
    height: 40px;
    background: #fff;
    margin-right: 30px;
}
.hotel_profile .property_profile .owl-nav .owl-next span{
     font-size: 26px;
}


.moment{
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
}
.moment .moment_title{
    text-align: center;
    padding: 30px 0;
}
.moment .moment_title h2{
    font-size: 36px;
    font-weight: bold;
}
.moment .moment_inn{}
.moment .moment_inn .moment_colum{}
.moment .moment_inn .moment_colum .moment_wrap{}
.moment .moment_inn .moment_colum .moment_wrap .momont_frame{
    position: relative;
    min-height: 274px;
    margin-bottom: 30px;
    overflow: hidden;
}
.moment .moment_inn .moment_colum .moment_wrap .momont_frame.tall_frame{
    max-height: 584px;
}
.moment .moment_inn .moment_colum .moment_wrap .momont_frame::before{
   content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid red;
    opacity: .5;
    z-index: 1;
    border-color: #ffffff !important;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.moment .moment_inn .moment_colum .moment_wrap .momont_frame:hover::before{
    border-width: 3px;
    background-color: rgba(0, 0, 0, .6);
}
.moment .moment_inn .moment_colum .moment_wrap .momont_frame:hover img{
    opacity: .6;
    -webkit-transform: scale(1.1, 1.1) rotate(1deg);
    transform: scale(1.1, 1.1) rotate(1deg);
    -webkit-transition: all 3s;
    transition: all 3s;
}
.moment .moment_inn .moment_colum .moment_wrap .momont_frame img{}
.moment .moment_inn .moment_colum .moment_wrap .caption{
    position: absolute;
    bottom: 0;
    padding: 40px;
    z-index: 2;
    -webkit-transition: all 720ms cubic-bezier(0.52, 0.01, 0.16, 1);
    transition: all 720ms cubic-bezier(0.52, 0.01, 0.16, 1);
}

.moment .moment_inn .moment_colum .moment_wrap .caption h3{
    font-size: 24px;
    font-weight: 100;
    line-height: 30px;
    color: #fff;
}
.moment .moment_inn .moment_colum .moment_wrap .caption p{
    font-size: 12px;
    color: #fff;
    line-height: 19px;
}

.room_category{
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}
.room_category .category_title{
    text-align: center;
}
.room_category .category_title h2{
    font-size: 36px;
    font-weight: bold;
}


.weddings_complete{
    width: 100%;
    padding: 50px 0;
    margin: 0 auto;
}
.weddings_complete .weddings_head{
    text-align: center;
    margin-bottom: 30px;
}
.weddings_complete .weddings_head h2{
    font-size: 36px;
    font-weight: bold;
}
.weddings_complete .weddings_head p{}
.weddings_complete .wedding_inn{
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px #00000026;
    border-radius: .5rem;
    overflow: hidden;
    display: block;
    cursor: pointer;
}
.weddings_complete .wedding_inn .wedding_tile{}
.weddings_complete .wedding_inn .wedding_tile img{}
.weddings_complete .wedding_inn .wedding_thumbnail{
    display: flex;
    justify-content: space-between;
    margin: 2px 0;
}
.weddings_complete .wedding_inn .wedding_thumbnail img{
    width: 33%;
}
.weddings_complete .wedding_inn .wedding_title{
    padding: 10px 15px;
}
.weddings_complete .wedding_inn .wedding_title h3{
    font-size: 18px;
}
.weddings_complete .wedding_inn .wedding_title p{
    margin: 0;
    font-size: 14px;
}


.locations{
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}
.locations .location_head{}
.locations .location_head h2{
    font-size: 23px;
    font-weight: bold;
    color: #000;
}
.locations a.location_inn{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    background: #fff;
    /* transition: all ease 0.5s; */
    padding: 0;
    justify-content: flex-start;
    align-items: center;: 10px 0;
    margin: 20px 0;
    border-radius: 4px;
}
.locations a.location_inn p{font-size: 16px;font-weight: 400;margin: 0;padding: 10px 0;}
/* .locations a.location_inn:hover{
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    background: #fde2e9;
    /* transition: all ease 0.5s; */
    padding: 10px 10px;
    justify-content: flex-start;
    align-items: center;: 10px 0;
    margin: 20px 0;
    border-radius: 4px;
} */
.locations a.location_inn p{
    font-size: 17px;
    font-weight: bold;
    color: #000;
    margin: 0;
    text-align: center;
}
/* .locations a.location_inn:hover p{
    color: #8e1b3c;
} */
.locations a.location_inn img{
    width: 100%;
    /* height: 165px; */
    object-fit: cover;
    margin-right: 0;
    border-radius: 4px;
}
/*.locations a.location_inn:hover img{
     opacity: 1; 
    -webkit-transform: scale(1.1, 1.1) rotate(0deg); 
    transform: scale(1.1, 1.1) rotate(0deg); 
   -webkit-transition: all 3s;
     transition: all 3s;
    } */
.locations .venue_locations{
    position: relative;
}
.locations .venue_locations .owl-nav{
    position: absolute;
    top: -22px;
    display: flex;
    justify-content: space-between;
    width: 110px;
    right: 20px;
    margin: 0;
}
.locations .venue_locations .owl-dots{
    position: absolute;
    top: -15px;
    display: flex;
    right: 50px;
    }
.locations .venue_locations .owl-dots .owl-dot span{
    background: #fce1e8;
}
.locations .venue_locations .owl-dots .owl-dot.active span, .locations .venue_locations .owl-dots .owl-dot:hover span{
    background: #8e1b3c;
}
.locations .venue_locations .owl-nav .owl-prev{}
.locations .venue_locations .owl-nav [class*='owl-']:hover {
    /* background: transparent; */
    background: #fce1e8;
    color: #8e1b3c;
    width:25px;
}
.locations .venue_locations .owl-nav .owl-prev span{}
.locations .venue_locations .owl-nav .owl-next{}
.locations .venue_locations .owl-nav .owl-next span{}



.inner_pages{
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
}
.inner_pages .inner_links{}
.inner_pages .inner_links h2{}
.inner_pages .inner_link_list{}
.inner_pages .inner_link_list p{}
.inner_pages .inner_link_list p a{
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
}
.inner_pages .inner_link_list ul{
    display: flex;
    justify-content: normal;
    /* margin: 0; */
    /* padding: 0; */
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.inner_pages .inner_link_list ul li{
    margin-right: 33px;
}
.inner_pages .inner_link_list ul li a{
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

/* Footer */
.vks_footer {
  background: #8e1b3c;
  color: #fff;
  width: 100%;
  padding: 10px 0;
  margin: 0 auto;
}
.vks_footer .footer_menu, .vks_footer .footer_widget {
    padding: 40px 0;
}
.vks_footer .footer_menu h3, .vks_footer .footer_widget h3{
    font-size: 20px;
}
.vks_footer .footer_menu ul, .vks_footer .footer_widget ul{
    margin: 0;
    padding: 0;
}
.vks_footer .footer_menu ul li, .vks_footer .footer_widget ul li{
    list-style: none;
    margin-right: 30px;
}
.vks_footer .footer_menu ul li a, .vks_footer .footer_widget ul li a{
    color: #fff;
    text-decoration: none;
}
.vks_footer .footer_menu .social_links{
    width: 100%;
    margin-top: 10px;
}
.vks_footer .footer_menu .social_links h2{
    font-size: 20px;
}
.vks_footer .footer_menu .social_links ul{
    display: flex;
}
.vks_footer .footer_menu .social_links ul li{margin-right: 10px;}
.vks_footer .footer_menu .social_links ul li p{
}
.vks_footer .footer_menu .social_links ul li a{
    color: #fff;
    text-decoration: none;
}

.vks_footer .vks_rights{
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.vks_footer .vks_rights p{
    margin: 0;
}



/* blog css stylesheet */

.blog-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.blog-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.blog-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}
.blog-excerpt {
  color: #555;
  font-size: 14px;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #e91e63;
  font-weight: 600;
  font-size: 14px;
}

/* blog css stylesheet end*/
/* single css stylesheet */
.single-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.single-meta {
  color: #999;
  font-size: 14px;
}
.single-thumb img {
  border-radius: 10px;
  max-height: 400px;
  object-fit: cover;
}
.single-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}
.single-content p {
  margin-bottom: 1.2rem;
}
.post-categories, .post-tags {
  font-size: 14px;
  color: #666;
}
.post-navigation a {
  background: #e91e63;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}
.post-navigation a:hover {
  background: #c2185b;
}

/* single css stylesheet end*/
/* detail page css stylesheet*/
.venue_detail_page{
    width: 100%;
    margin: 0 auto;
    padding: 0 0;
}

.venue_detail_page .venue_main{
    width: 100%;
    padding: 0;
    box-shadow: 0px 1px 10px #a9a9a9c4;
}
.venue_detail_page .venue_main .venue_image{}
.venue_detail_page .venue_main .venue_image img{}
.venue_detail_page .venue_main .venue_detail_info{
    width: 100%;
    padding: 21px 20px;
}
.venue_detail_page .venue_main .venue_detail_info .venue_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.venue_detail_page .venue_main .venue_detail_info .venue_info .venue_name{
    width: 80%;
    margin-right: auto;
    text-align: left;
}
.venue_detail_page .venue_main .venue_detail_info .venue_info .venue_name h1{
    font-size: 26px;
    color: #c52247;
}
.venue_detail_page .venue_main .venue_detail_info .venue_location{
    font-size: 16px;
    font-weight: 500;
}
.venue_detail_page .venue_main .venue_detail_info .venue_location i{
    color: #198754;
}
.venue_detail_page .venue_main .venue_detail_info .venue_content{
    margin-top: 15px;
}
.venue_detail_page .venue_main .venue_detail_info .venue_content p{}
.venue_detail_page .venue_main .venue_detail_info .venue_content h2,
h3,
h4,
h5,
h6{
    
font-size: 20px;
}
/* detail page css stylesheet end*/
/* location_archive page css stylesheet*/
.location_archive{}
.location_archive .location_title{}
.location_archive .location_title h1{}
.location_archive .location_title p{}
.location_archive .venue_list{}
.location_archive .venue_list .venue_frame{}
.location_archive .venue_list .venue_frame .venue_bg{
    overflow: hidden;
}
.location_archive .venue_list .venue_frame .venue_bg .img-fluid{
     -webkit-transition: all 1.2s;
    transition: all 1.2s;
}
.location_archive .venue_list .venue_frame:hover .venue_bg .img-fluid{
    -webkit-transform: scale(1.1, 1.1) rotate(1deg);
    transform: scale(1.1, 1.1) rotate(1deg);
    -webkit-transition: all 3s;
    transition: all 3s;
}
.location_archive .venue_list .venue_frame .venue_info{}
.location_archive .venue_list .venue_frame .venue_info h2{
    font-size: 18px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.location_archive .venue_list .venue_frame .venue_info .venue_add{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.location_archive .venue_list .venue_frame .venue_info .venue_add .location{
    font-size: 14px;
    color: #848484;
}
.location_archive .venue_list .venue_frame .venue_info .venue_add .location i{
    color: #198754;
}
.location_archive .venue_list .venue_frame .venue_info .venue_add a.venue_quote{
    background: #bc2049;
    border: #bc2049;
    margin: 0 !important;
}
.location_archive .venue_list .venue_frame .venue_info a.venue_quote:hover{
    background: #fa3367;
    border: #fa3367;
}
/* location_archive page css stylesheet end*/
/* pagination page css stylesheet*/
.pagination{}
.pagination .page-item{}
.pagination .page-item .page-link{
    border: 1px #bc2049 solid;
    color: #bc2049;
}
.pagination .page-item .page-link.current{
    background-color: #bc2049;
    color: #fff;
}

/* pagination page css stylesheet end*/

/* filter css stylesheet*/
.filter_section{}
.filter_section {}
/* filtercss stylesheet end*/