@font-face {
  font-family: 'Gilroy-ExtraBold';
  src: url('fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),  url('fonts/Gilroy-ExtraBold.otf')  format('opentype'),
       url('fonts/Gilroy-ExtraBold.woff') format('woff'), url('fonts/Gilroy-ExtraBold.ttf')  format('truetype'), url('fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Light';
  src: url('fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),  url('fonts/Gilroy-Light.otf')  format('opentype'),
       url('fonts/Gilroy-Light.woff') format('woff'), url('fonts/Gilroy-Light.ttf')  format('truetype'), url('fonts/Gilroy-Light.svg#Gilroy-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Regular';
  src: url('fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),  url('fonts/Gilroy-Regular.woff') format('woff'), url('fonts/Gilroy-Regular.ttf')  format('truetype'), url('fonts/Gilroy-Regular.svg#Gilroy-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Medium';
  src: url('fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),  url('fonts/Gilroy-Medium.woff') format('woff'), url('fonts/Gilroy-Medium.ttf')  format('truetype'), url('fonts/Gilroy-Medium.svg#Gilroy-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Bold';
  src: url('fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),  url('fonts/Gilroy-Bold.woff') format('woff'), url('fonts/Gilroy-Bold.ttf')  format('truetype'), url('fonts/Gilroy-Bold.svg#Gilroy-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd-Book';
  src: url('fonts/CircularStd-Book.eot') format('embedded-opentype') url('fonts/CircularStd-Book.woff') format('woff'), url('fonts/CircularStd-Book.ttf')  format('truetype'), url('fonts/CircularStd-Book') format('svg');;
  font-weight: normal;
  font-style: normal;
}
.light 
{
  font-family: 'Gilroy-Light';
}
.regular 
{
  font-family: 'Gilroy-Regular';
}
.medium 
{
  font-family: 'Gilroy-Medium';
}
.bold
{
  font-family: 'Gilroy-Bold';
}
html {
  /*scroll-behavior: smooth;*/
}
body
{
  margin: 0;
  padding: 0;
  --theme:#000000;
  --sub: #FBD46D;;
  /*font-family: 'Oswald', sans-serif;*/
}
p 
{
  margin-bottom: 0 !important;
}
header
{
  width: 100%;
  height: 100vh;
  /*background: url('../images/header.jpg');*/
  background-size: cover;
  position: relative;
  /*overflow: hidden;*/
}
.navigation
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: rgba(0,0,0,.5);
}
.logo
{
  float: left;
  padding-top: 10px;
}
.logo a
{
  text-decoration: none;
  color: #fff;
  font-size: 29px;
  line-height: 20px;
   font-family: 'Gilroy-Medium';
}
.logo a:hover
{
  text-decoration: none;
  color: #fff;
}
.menu ul
{
  padding: 0;
  margin: 0;
  float: right;
  position: relative;
}
.menu ul li
{
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.menu ul li .sub_menu 
{
  position: absolute;
  background: #000;
  width: 180px;
}
.menu ul li .sub_menu li 
{
  position: relative;
  display: block;
}
.menu ul li > ul 
{
  display: none;
}
.menu ul li:hover .sub_menu
{
  /*display: block;*/
}
.menu ul li .sub_menu li:hover .inner_sub_menu
{
  /*display: block;*/
}
.menu ul li .sub_menu li .inner_sub_menu
{
  /*display: none;*/
}
.menu ul li .sub_menu li .inner_sub_menu
{
  position: absolute;
  background: #ccc;
  left: 180px;
  top: 0;
  width: 180px;
  transition: .5s ease-in-out 0s;
}
.menu ul li .sub_menu li a
{
  padding: 10px 10px 10px 25px;
}
.menu {
    float: right;
    text-align: center;
    width: 70%;
}
.menu ul li::before
{
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  content: '';
  height: 3px;
  background: var(--sub);
  border-radius: 50px;
  transition: .5s;
}
.menu ul li.active_link::before
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: '';
  height: 3px;
  background: var(--sub);
  border-radius: 50px;
  transition: .5s;
}
.menu ul li:hover::before
{
   width: 100%;
}
.menu ul li a
{
  text-decoration: none;
  color: #fff;
  display: flex;
  font-family: 'Gilroy-Medium';
  text-decoration: none;
  text-transform: capitalize;
  padding: 30px 15px;
  transition: .5s;
  font-size: 17px;
  text-align: left;
}
.menu ul li a:hover
{
  color: var(--sub);
}
.menu_bar
{
  position: fixed;
  top: 15px;
  right: 4%;
  width: 40px;
  height: 50px;
  /*background: yellow;*/
  cursor: pointer;
  z-index: 99;
}
.humberger
{
  background: #FBD46D;;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: .5s;
}
.humberger::before,.humberger::after
{
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: #FBD46D;
  transition: .5s;
}
.humberger::before
{
  top: -14px; 
}
.humberger::after
{
  top: 14px;  
}
.menu_bar.active_icon .humberger
{
  background: rgba(0,0,0,0)
}
.menu_bar.active_icon .humberger::before
{
   transform: rotate(45deg);
   top: 0;
}
.menu_bar.active_icon .humberger::after
{
   transform: rotate(135deg);
   top: 0;
}
.active_link a
{
  color: #FBD46D !important;
}
.mb-0
{
  margin-bottom: 0;
}
.header_content
{
  max-width: 780px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tagline
{
  font-family: Gilroy-Regular ☞;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.header_content h1
{
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  font-size: 92px;
  line-height: 95.5%;
  text-transform: uppercase;
  color: #FFFFFF;
}
.color_text
{
  color: var(--sub);
}
.boldless_text
{
  font-family: 'Gilroy-Regular';
}
.header_description
{
  font-family: Gilroy;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 150.5%;
  text-transform: capitalize;
  color: #FFFFFF;
  text-align: justify;
}
.view_more
{
  text-decoration: none;
  color: #fff;
  font-family: 'Gilroy-Medium';
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 150.5%;
  text-transform: capitalize;
  transition: .5s ease;
  position: relative;
  padding-left: 60px;
}
.view_more::before
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 50px;
  height: 3px;
  background: #fff;
  content: '';
   transition: .5s ease;
}
.view_more:hover
{
  text-decoration: none;
  color: var(--sub);
  padding-left: 0;
}
.view_more:hover:before
{
  color: var(--sub);
  width: 0;
}
.overlay_navigation
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: .5s;
  transform-origin: right;
  transform: translate(-100%);
}
.overlay_navigation::before
{
  position: absolute;
  top: 0;
  left: 0;
  background: var(--sub);
  content: '';
  height: 100%;
  width: 100%;
  transition: 1.5s;
  transform-origin: right;
  transform: translateX(-100%);
}
.overlay_open
{
  transform: translate(0);
}
.overlay_open::before
{
   transform: translateX(100%);
}

.shape
{
  border: 8px solid #FBD46D;
  border-radius: 10px;
  transform: rotate(26.1deg);
  position: absolute;
  width: 83.67px;
  height: 120.44px;
  left: 588.41px;
  top: 146.68px;
}
.shape::before
{
  content:'';
  width: 105.62px;
  height: 152.04px;
  opacity: 0.1;
  border: 8px solid #FBD46D;
  border-radius: 30px;
  transform: rotate(26.1deg);
  position: absolute;
  top: 0;
  left: 0;
}

.shape_1
{
  border: 8px solid #FBD46D;
  border-radius: 10px;
  transform: rotate(26.1deg);
  position: absolute;
  width: 176.66px;
  height: 254.3px;
  left: -44.89px;
  top: 137px;
}
.shape_1::before
{
  opacity: 0.1;
  border: 8px solid #FBD46D;
  border-radius: 10px;
  /*transform: rotate(26.1deg);*/
  position: absolute;
  width: 176.66px;
  height: 254.3px;
  left: -44.89px;
  content:'';
  top: 14px;
}
.shape_3
{
  position: absolute;
  width: 83.67px;
  height: 120.44px;
  left: 303.41px;
  bottom: 27.68px;
  border: 8px solid #FBD46D;
  border-radius: 10px;
  transform: rotate(26.1deg);
}
.shape_3::before
{
  position: absolute;
  width: 105.62px;
  height: 152.04px;
  left: 306.89px;
  top: 698px;
  opacity: 0.1;
  border: 8px solid #FBD46D;
  border-radius: 30px;
  transform: rotate(26.1deg);
  content:'';
}
.shape_4
{
  position: absolute;
  width: 52.58px;
  height: 75.69px;
  left: 768.85px;
  bottom: 28px;
  border: 8px solid #FBD46D;
  border-radius: 10px;
  transform: rotate(26.1deg);
}
.shape_4::before
{
  opacity: 0.5;
  border: 8px solid #FBD46D;
  border-radius: 10px;
  /*transform: rotate(26.1deg);*/
  position: absolute;
  width: 100%;
  height: 100%;
  left: 10px;
  content:'';
  top: 14px;
}
.highlited
{
  padding: 84px 35px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.heading_content p
{
  font-family: 'Gilroy-Regular';
  font-size: 42px;
  line-height: 100%;
  text-transform: capitalize;
  color: #000000;
}
.heading_content h1
{
  font-family: 'Gilroy-Bold';
  font-size: 59px;
  line-height: 100%;
  text-transform: capitalize;
  color: #FBD46D;
}
.highlated_box .highlated_box_header img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlated_box
{
   margin: 0 20px;
   border: none !important;
}
.highlated_box .highlated_box_header
{
  border-radius: 20px !important;
  overflow: hidden;
  position: relative;
  height: 425px;
}
.highlated_box .highlated_box_body h1
{
  font-family: 'Gilroy-Bold';
  font-size: 45px;
  line-height: 100%;
  text-transform: capitalize;
  color: #000000;
}
.highlated_box_body p
{
  font-family: 'Gilroy-Light';
  font-size: 16px;
  line-height: 168%;
  text-transform: capitalize;
  color: #000000;
  text-align: justify;

}
.identity h1
{
  position: absolute;
  bottom: 17px;
  right: 36px;
  font-family: 'Gilroy-Bold';
  font-size: 85px;
  line-height: 100%;
  text-transform: capitalize;
  color: #FBD46D;
}
.highlated_box_body
{
  padding-top: 45px;
}
.padding_top
{
  padding-top: 0 !important;
  padding-bottom: 45px;
}
.m_top
{
  padding-top: 40px;
}
.left_column
{
  padding-left: 0;
  position: relative;
  height: 637px;
  width: 670px;
  float: left;
  margin-right: 25px;
}
.left_column img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.left_column::before
{
  content: '';
  height: 610px;
  width: 610px;
  position: absolute;
  top: -24px;
  left: 0;
  /*background: var(--sub);*/
  z-index: -1;
}
.about_description p
{
  /*float: left;*/
  font-size: 16px;
  line-height: 186%;
  text-transform: capitalize;
  color: #000000;
  line-height: 32px;
  text-align: justify;
}
.about_description
{
  padding: 0 122px 0 24px;
}
.nrml_font
{
  font-family: 'Gilroy-Regular';
}
.about_description .heading_content h1
{
  color: #000;
  font-size: 42px;
  font-family: 'Gilroy-Bold';
}
.about_description .heading_content p
{
  color: var(--sub);
}
.read_more a.read_more_link
{
  background: #000000;
  font-family: 'Gilroy-Bold';
  font-size: 18px;
  line-height: 150.5%;
  text-transform: capitalize;
  color: #FBD46D;
  padding: 12px 35px;
  display: inline-block;
  text-decoration: none;
  transition: .5s;
}
.read_more
{
  padding-top: 35px;
}
.about
{
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.upcoming_movies
{
  width: 100%;
  height: 850px;
  background: #151515;
  position: relative;
  padding: 100px 30px 120px;
}
.upcomong_left_column 
{
  /*padding-right: 50px;*/
  padding-left: 110px;
      position: absolute;
    top: 50%;
    /*left: 50%;*/
    transform: translateY(-50%);
}
.upcomong_left_column h1
{
  color: var(--sub);
  font-family: 'Gilroy-Bold';
  font-size: 100px;
  line-height: 79.5%;
  text-transform: capitalize;
}
.upcomong_left_column h1 span.small_text
{
  font-family: 'Gilroy-Regular';
  display: block;
  font-size: 59px !important;
}
.upcomong_left_column p
{
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  color: #FFFFFF;
  font-family: 'Gilroy-light';
  max-width: 400px;
  padding-top: 30px;
  padding-bottom: 10px;
}
.upcomong_left_column a
{
  color: var(--sub);
}
.upcomong_left_column a::before
{
  background: var(--sub) !important;
}
.up_movie_box
{
  width: 100%;
  height: 604px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /*background: linear-gradient(180deg, rgba(196, 196, 196, 0) 30.5%, #000000 92.96%);*/
}
.up_movie_box img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.up_movie_box:hover img
{
  transform: scale(1.1);
}
.overlay_address h4
{
  font-size: 18px;
  line-height: 14px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: 'Gilroy-Bold';
}
.overlay_address p
{
  font-size: 14px;
  line-height: 11px;
  text-transform: uppercase;
  color: #FBD46D;
  font-family: 'Gilroy-Light';
}
.overlay_content
{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0),rgb(0, 0, 0));
}
.overlay_address
{
  position: absolute;
  bottom: 20px;
  left: 24px;
}
.blank_strip
{
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /*height: 94px;*/
}
.upcoming_movies .owl-dots button
{
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.43)  !important;
  margin-right: 17px;
}
.upcoming_movies .owl-dots button.owl-dot.active
{
  background: #fff !important;
}
.upcoming_movies .owl-dots
{
  bottom: -19.5%;
  position: absolute;
  line-height: 0;
  left: -60%;
}
.upcoming_movies .owl-nav
{
  bottom: -19.5%;
  position: absolute;
  right: 15%;
}
.arrow_icon
{
  color: var(--sub);
  margin-left: 10px;
  font-size: 25px;
  margin-top: 3px;
}
.arrow_icon:focus
{
  outline: none !important;
}
.movies
{
  padding: 85px 0px 70px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.centered_heading h1
{
  font-size: 36px;
  text-transform: uppercase;
  color: #000000;
  font-family: 'Gilroy-Bold';
}
.centered_heading h1 span.bld_txt
{
  font-size: 72px;
  text-transform: uppercase;
  color: #000000;
  font-family: 'Gilroy-Bold';
}
.centered_heading
{
  max-width: 780px;
  margin:auto;
  text-align: center;   
}
.centered_heading p
{
  font-family: 'Gilroy-Light';
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.movie_box
{
  width: 100%;
  /*height: 449px;*/
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.movie_box img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie_box::after
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  transform: translateY(-100%);
  transition: .5s;
  transform-origin: top;
    cursor: pointer;
}
.movie_box:hover::after
{
  transform: translateY(0);
}
.movie_box::before
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: .5s;
  transform-origin: bottom;
}
.movie_box:hover::before
{
  transform: translateY(0);
}
.overlay_mov_content
{
  position: absolute;
  bottom: 20px;
  left: -100%;
  z-index: 9;
  cursor: pointer;
  transition: .5s;
}
.overlay_mov_content h1
{
  font-family: 'Gilroy-Bold';
  text-transform: capitalize;
  color: var(--sub);
  margin-bottom: 0;
  font-size: 25px;
}
.overlay_mov_content p
{
  font-family: 'Gilroy-Regular';
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
}
.movie_box:hover:hover .overlay_mov_content
{
  left: 30px;
}
#movie_carousel
{
  margin-right: 0;
  margin-left: 0;
  padding-top: 67px;
}
.mov_shape
{
  position: absolute;
  width: 133.99px;
  height: 192.87px;
  right: -24px;
  top: 48px;
  border: 8px solid #FBD46D;
  border-radius: 10px;
  transform: rotate(26.1deg);
}
.mov_shape1
{
  position: absolute;
  width: 169.13px;
  height: 243.46px;
  height: 192.87px;
  right: -24px;
  opacity: 0.4;
  border: 8px solid #FBD46D;
  border-radius: 30px;
  transform: rotate(26.1deg);
}
.movie_rd_more
{
  color: var(--theme);
}
.movie_rd_more::before
{
  background: var(--sub) !important;
}
.mrow
{
  width: 100%;
  margin:auto;
  text-align: center;
  padding-top: 58px;
}
.contact_details
{
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
}
.contact_me a
{
  padding: 18px 53px;
  text-decoration: none;
  font-family: 'Gilroy-Bold';
  font-size: 18px;
  line-height: 100%;
  border: 2px solid #FBD46D;
  box-sizing: border-box;
  border-radius: 33.5px;
  /* identical to box height, or 23px */
  position: relative;
  text-align: center;
  text-transform: capitalize;
  transition: .5s;
  overflow: hidden;

  color: #FBD46D;
}
.contact_me a:hover
{
  background: var(--sub);
  color: #000;
  text-decoration: none;
  transform: scale(1.2);
}
.contact_details
{
  max-width: 750px;
  margin: auto;
}
.contact
{
  padding: 73px 30px 83px;
  background: linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)),url('../images/contact.jpg');
  background-size: cover;
  background-position: center;
}
.contact_me
{
  padding-top: 30px;
}
.block_trm
{
  display: block;
}
.contact_details h1
{
  font-family: 'Gilroy-Bold';
  font-size: 48px;
  line-height: 100%;
  /* or 48px */

  text-align: center;
  text-transform: capitalize;

  color: #FFFFFF;
}
footer
{
  background: var(--theme);
  color: #adadad;
  padding: 90px 30px 60px;
}
.footer_col p  
{
  line-height: 29px;
}
.foot_desc
{
  font-size: 16px;
}
.single-footer-contact-info .footer_add_icon {
    color: var(--theme);
    display: table-cell;
}
.footer-contact-list-text {
    display: table-cell;
    padding-left: 10px;
    font-family: 'Gilroy-Regular';
    font-size: 15px;
    /*line-height: 45px;*/
    text-transform: capitalize;
    color: #000000;
}
.single-footer-contact-info {
    margin-bottom: 30px;
}
.footer_col h3
{
  position: relative;
  margin-bottom: 27px;
}
.footer_col h3::after
{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 47px;
  height: 4px;
  background: #000;
}
.footer_menu
{
  padding: 0;
  margin: 0;
}
.footer_menu li
{
  list-style-type: none;
  padding-bottom: 21px;
}
.footer_menu li a
{
  display: block;
  text-decoration: none;
  font-family: 'Gilroy-Regular';
  font-size: 16px;
  line-height: 100%;
  /* identical to box height, or 15px */
  text-transform: capitalize;
  color: #adadad;
  transition: .2s;

}
.footer_menu li a i
{
  padding-right: 7px;
  display: none;
}
.footer_menu li a:hover
{
   /*font-weight: 600;*/
   color: #fff;
}
.footer_title
{
 font-family: 'Gilroy-Medium';
  font-size: 20px;
  line-height: 100%;
  /*text-align: center;*/
  text-transform: capitalize;
  color: #fff;
}
.number
{
   font-family: 'Gilroy-Regular';
  font-style: normal;
  font-weight: bold;
  font-size: 29px;
  line-height: 100%;
  text-align: left;
  text-transform: capitalize;
  color: #adadad;
  padding: 0px 0 24px 0;
}

.footer_social a
{
  text-decoration: none;
  color: #000;
}
.footer_social i
{
  /*width: 40px;*/
  /*height: 40px;*/
  line-height: 36px;
  text-align: center;
  /*border: 2px solid #000000;*/
  box-sizing: border-box;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  color: #adadad;
  transition: .5s;
  padding-right: 11px;
}
.footer_social i:hover
{
  background: #000;
  color: var(--sub);
}
.footer_social
{
  margin: 0;
  padding: 0;
}
.footer_social li
{
  list-style-type: none;
  display: inline-block;
}
.rectangle
{
  background: #FFE193;
  width: 100%;
  height: 165px;
}
.bottom_footer
{
  background: #191919;
  padding: 27px 0;
}
.bottom_footer p
{
  margin-bottom: 0;
  font-family:'Gilroy-Regular';
  font-size: 15px;
  line-height: 100%;
  text-transform: capitalize;
  color: #fff;
}
.design
{
  float: right;
}
.design a
{
  font-family: 'Gilroy-Bold';
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 100%;
  text-transform: capitalize;
  color: #fff;
}

.overlay_navigation ul.overlay_menu
{
  display: flex;
  flex-direction: column;
}
.overlay_navigation ul.overlay_menu li
{
  list-style-type: none;
  position: relative;
  padding-bottom: 15px;
}
.overlay_navigation ul.overlay_menu li .sub_menu
{
  display: none;
}
.overlay_navigation ul.overlay_menu li a
{
  display: block;
  text-decoration: none;
  text-align: center;
  /*position: relative;*/
    color: #fff;
    text-transform: capitalize;
    position: relative;
}
.arrow_icon
{
  position: relative;
}
.arrow_icon::before 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f0d7";

}
.menu ul li a .arrow_icon i 
{

}
.icon_up::before 
{
  content: "\f0d8" !important;
}
.menu ul li a .arrow_icon::before
{
  font-size: 14px;
}
.overlay_navigation ul.overlay_menu li a:hover 
{
  color: var(--sub);
}
.overlay_navigation ul.overlay_menu li a
{

}
.overlay_navigation
{
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    font-size: 2.8em;
    color: #fff;
   font-family: 'Gilroy-Bold';
   z-index: 9999;
}
.overlay_navigation ul.overlay_menu li a::before
{
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: .5s;
  z-index: -1;
  text-align: center;
  opacity: 0;
  font-size: 100px;
  color: var(--sub);
  line-height: 100vh;
}
.overlay_navigation ul.overlay_menu li a:hover::before
{
  opacity: .1;
}
.overlay_navigation ul.overlay_menu li .sub_menu li a 
{
  color: #adadad;
}
.overlay_navigation ul.overlay_menu li .sub_menu li a:hover
{
  color: #fff;
}
.fixed-header
{
  background: var(--theme);
  z-index: 8;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;width: 100%;
}
.movies .owl-dots
{
  display: none;
}
.movies .owl-nav button
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.movies .owl-nav button:nth-child(2)
{
  right: 0;
}
.movies .owl-nav button .mov_arrow_icon
{
  color: #fff;
  font-size: 28px;
}
.mrow
{
  padding-top: 25px;
}
.overlay_navigation ul.overlay_menu
{
  margin: 0;
  padding: 0;
}



/*--------------------ABOUT PAGE------------------*/
.inner_header
{
  width: 100%;
}
.inner_header .inner_heading h1
{
  color: var(--sub);
  font-family: 'Gilroy-Bold';
  font-size: 50px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.inner_heading
{
  width: 100%;
}
.bread_crumbs 
{
  margin: 0;
  padding: 0;
  float: left;
}
.bread_crumbs li
{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-family: 'Gilroy-Medium';
  text-transform: capitalize;
}
.color-thm-gray
{
  padding: 0 3px;
  color: #f1f1f15c !important;
}
.bread_crumbs li a
{
  color: var(--sub);
  /*padding-right: 15px;*/
  font-family: 'Gilroy-Regular';
}
.inner_heading
{
  padding: 170px 0 100px;
}
.abt_page
{
  padding: 50px 30px 0;
}
.small_abt_img
{
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.blg_image
{
  position: relative;
}
.about_description_sec .description p
{
  font-family: 'Gilroy-Regular';
  font-size: 15px;
  line-height: 28px;
  text-align: justify;
}
.counter_box
{
  text-align: center;
}
.counter_box .counter
{
  font-family: 'Gilroy-Bold';
  font-size: 45px;
}
.count_name
{
  font-family: 'Gilroy-Medium';
  font-size: 18px;
}
.abt_hgt
{
  padding-top: 40px;
}

/*--------------movies page---------------*/
.movies_page
{
  padding: 80px 30px 40px;
}
/*.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.upcoming_slideshow .swiper-slide
{
  width: 100% !important;
  height: 400px !important;
}
.swiper-slide img
{
  width: 100%;
}
.swiper-pagination-bullet-active
{
  background: var(--sub) !important;
}
.swiper-pagination-bullet
{
  background: #fff;
}*/
.gallery_box 
{
  border: none !important;
  margin-bottom: 25px;
  cursor: pointer;
  position: relative;
  transition: .5s;
  overflow: hidden;
}
.gallery_box img
{
  transition: .5s;  
}
.gallery_box:hover img
{
  transform: scale(1.1);
}
.gallery_box .card-header
{
  border: none;
  padding: 0;
  width: 100%;
  /*height: 300px;*/
  overflow: hidden;
}
.gallery_box img
{
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
}
.gallery_box_content 
{
  text-align: center;
}
.gallery_box_content  h3
{
  margin-bottom: 0;
  font-family: 'Gilroy-Bold';
  font-size: 22px;
}
.gallery_box_content  p
{
  margin-bottom: 0;
  font-family: 'Gilroy-Regular';
}
.gallery_box_content  h3 a
{
  text-decoration: none;
  color: #000;
  transition: .3s;  
}
.gallery_box_content  h3 a:hover
{
  text-decoration: none;
  color: var(--sub);
}
.filter_links
{
  background: var(--theme);
  padding: 0px;
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
      border-radius: 58px;
}
.filter_links button
{
  background: transparent;
  position: relative;
  color: #fff;
  padding: 12px 15px;
  font-family: 'Gilroy-Regular';
}
.filter_links button.active_class
{
  color: var(--sub);
  font-family: 'Gilroy-Bold';
  text-transform: capitalize;
}
.active_class::before 
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--sub);
  height: 3px;
}
.btn:focus
{
  box-shadow:none !important;
}
.filter_links button:hover
{
  color: var(--sub);
}
.contact_container
{
  /*position: absolute;*/
  /*max-width: 800px;*/
  /*background: #ccc;*/
  /*width: 100%;
  height: 100%;
  top: 0;
  left: 0;*/
  padding: 80px 30px;
}
.contact_container .address_title 
{
  font-size: 45px;
  font-family: 'Gilroy-Bold';
  padding-bottom: 25px;
}
.map
{
  position: relative;
  margin: auto;
  display: none;
}
.map iframe
{
  width: 100%;
  filter: grayscale(1);
}
.name_title
{
  font-size: 20px;
  color: var(--theme);
  font-family: 'Gilroy-Bold';
}
.contact_container .footer-contact-list-text
{
  font-size: 16px;
  font-family: 'Gilroy-Medium';
  text-transform: inherit !important;
} 
.cntct_form label
{
  display: none;
}
.cntct_form ::placeholder
{
    font-family: 'Gilroy-Medium';
}
.submit_btn
{
     background: #000000;
    font-family: 'Gilroy-Medium';
    font-size: 18px;
    line-height: 150.5%;
    text-transform: capitalize;
    color: #FBD46D;
    padding: 12px 28px;
    text-decoration: none;
    transition: .5s;
    border: none;
    margin-top: 25px;
    cursor: pointer;
}
.submit_btn:hover
{
  background: var(--sub);
  color: #000;
}
.contact_input
{
  padding: 15px !important;
}
.hom_counter
{
  padding: 40px 0 40px;
  background: #f3f3f3;
}
.watch_trailer
{
  position: relative;
  overflow: hidden;
}
.watch_trailer
{
  padding: 45px 30px 56px;
}
.watch_trailer  .centered_heading 
{
  margin-bottom: 25px;
}
.column-video
{
  width: 100%;
  /*height: 400px;*/
  overflow: hidden;
  cursor: pointer;
  transition: .5s;
  position: relative;
}
.column-video img 
{
  transition: .5s;
}
.column-video:hover img 
{
  transform: scale(1.1);
}
.overlay_video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,rgba(0,0,0,.85),rgba(36, 36, 36, 0.58));
}
.column-video img
{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.icon
{
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  line-height: 50px;
  text-align: center;
  transition: .5s;
  animation: pulse11 1s infinite;
}
@-webkit-keyframes pulse11 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.6);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.6); 
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255,255,255, 0);
    box-shadow: 0 0 0 15px rgba(255,255,255, 0); 
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0); 
  } 
}

@keyframes pulse11 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.6);
    box-shadow: 0 0 0 0 rgba(255,225505,255, 0.6); 
    border-radius: 50%;
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255,255,255, 0);
    box-shadow: 0 0 0 15px rgba(255,255,255, 0); 
    border-radius: 50%;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0); 
    border-radius: 50%;
  } 
}
.icon:hover
{
  background: var(--sub);
}
.icon:hover a
{
  color: #000;
}
.icon a
{
  color: var(--theme);
}
.vdo_ovly_content
{
  position: absolute;
  bottom: 20px;
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  width: 100%;
  text-align: center;
}
.vdo_ovly_content h1
{
  font-size: 24px;
  font-family: 'Gilroy-Medium';
  text-transform: capitalize;
  color: #fff;
    text-align: center;
}
.upcoming_movie_banner
{
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,.5);
  color: #fff;
}
.upcoming_slideshow
{
  padding-top: 30px;
}
.upcoming_slideshow .centered_heading
{
  padding: 20px 0;
}
.image_gal_bx_cnnt
{
  padding: 15px !important;
}
.image_box .card-header
{
  height: 300px;
  overflow: hidden;
  border: none;
}
.image_box .card-header img
{
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}
.image_box
{
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 25px;
  cursor: pointer;
  position:relative;
  overflow: hidden;
}
/*.image_box::before
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    transform: translateY(100%);
    transition: .5s;
    transform-origin: bottom;
}
.image_box:hover::before
{
  transform: translateY(0);
}
.image_box::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    transform: translateX(100%);
    transition: .5s;
    transform-origin: top;
}*/
.image_box:hover::after
{
  transform: translateX(0);
}
.card-header:first-child
{
   border-radius: 0 !important;
}
.Gallery_page
{
  padding: 65px 30px;
}
.our_work_container ul li a
{
  padding: 15px;
}
.tab-content
{
  padding: 30px 0;
}
.our_work_container ul li a
{
   font-size: 18px;
   font-family: 'Gilroy-Bold';
   /*text-transform: uppercase;*/
   text-decoration: none;
   color: #000;
    padding: 15px;
}
.nav-tabs
{
  border-bottom: none !important;
}
.our_work_container a.active.show
{
  background: var(--sub);
  color: #000;
}
.icon_imgbox
{
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #000;
  z-index: 99;
   position: absolute;
   bottom: 20px;
   right: 20px;
   color: var(--sub);
   transition: .5s;
}
.icon_imgbox:hover
{
  background: var(--sub);
  color: #000 !important;
}
.icon_imgbox:hover a
{
    color: #000 !important;
}
.overlay_img_box a
{
  text-decoration: none;
  color: var(--sub);
}
.overlay_img_box
{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%,-50%);
}

.mov_shape3 {
    position: absolute;
    width: 169.13px;
    height: 243.46px;
    left: 35%;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    transform: rotate(26.1deg);
    top: 30%;
}
.mov_shape3::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left:15px;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    /*transform: rotate(26.1deg);*/
    top: 25px;
    content: '';
}
.mov_shape4 {
    position: absolute;
    width: 169.13px;
    height: 243.46px;
    right: 5%;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    transform: rotate(26.1deg);
    top: 10%;
}
.mov_shape4::before {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 25px;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    top: 25px;
    content: '';
}
.mov_shape5 {
    position: absolute;
    width: 169.13px;
    height: 243.46px;
    left: 0%;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    transform: rotate(26.1deg);
    bottom: 0%;
}
.mov_shape5::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 15px;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    bottom: 25px;
    content: '';
}

.mov_shape6 {
    position: absolute;
    width: 169.13px;
    height: 243.46px;
    right: 0%;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    transform: rotate(26.1deg);
    bottom: 0%;
}
.mov_shape6::before {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 15px;
    opacity: 0.4;
    border: 8px solid #FBD46D;
    border-radius: 30px;
    bottom: 25px;
    content: '';
}

.delay0
{
  animation-delay: .1s;
}
.delay1
{
  animation-delay: .3s;
}
.delay2
{
  animation-delay: .5s;
}
.delay3
{
  animation-delay: .7s;
}
.delay4
{
  animation-delay: .9s;
}
.delay5
{
  animation-delay: 1.1s;
}
.delay6
{
  animation-delay: 1.2s;
}
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset  0 0 0 2px var(--sub);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: '↑';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--sub);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  content: '↑';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, #da2c4d, #f8ab37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path { 
  fill: none; 
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 4;
  box-sizing:border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}






/*[class^="swiper-button-"] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}



.swiper-container {
  width: 80%;
  height: 100vh;
  float: left;
  -webkit-transition: opacity .6s ease, -webkit-transform .3s ease;
  transition: opacity .6s ease, -webkit-transform .3s ease;
  transition: opacity .6s ease, transform .3s ease;
  transition: opacity .6s ease, transform .3s ease, -webkit-transform .3s ease;
}
.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: .4;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}
.swiper-container.nav-slider .swiper-slide .content .title {
  font-size: 20px;
   font-family: 'Gilroy-Medium';
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide .slide-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.swiper-slide .entity-img {
  display: none;
}
.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #fff;
}
.swiper-slide .content .title {
  font-size: 2.6em;
  margin-bottom: 30px;
 font-family: 'Gilroy-Medium';
 text-transform: uppercase;
}
.swiper-slide .content .caption {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: opacity .3s ease, -webkit-transform .7s ease;
  transition: opacity .3s ease, -webkit-transform .7s ease;
  transition: opacity .3s ease, transform .7s ease;
  transition: opacity .3s ease, transform .7s ease, -webkit-transform .7s ease;
}
.swiper-slide .content .caption.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

[class^="swiper-button-"] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
}

.swiper-button-prev {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.swiper-button-next {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
*/




/*.slideshow_inner {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
  margin: 0px auto;
}
.slideshow_inner * {
  outline: none;
}
.slideshow_inner .slider {
}
.slideshow_inner .slider-track {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.slideshow_inner .item {
  height: 100%;
  position: relative;
  z-index: 1;
}
.slideshow_inner .item img {
  width: 100%;
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.2);
}
.slideshow_inner .item.slick-active img {
  transform: scale(1);
}*/

.column_left p
{
  letter-spacing: 2px;
  color: #9e9e9e;
}
.column_right
{
  font-size: 16px;
  line-height: 30px;
}
.blog
{
  padding: 30px 30px 100px;
}
.blog_card .card-body
{
  padding:30px 30px 40px;
}
.blog_card .card-body h3
{
  font-size: 22px;
  line-height: 30px;
}
.blog_card .card-body p
{
  font-size: 16px;
  text-align: justify;
  line-height: 28px;
  padding-top: 8px;
}
.blog_card
{
  border: none !important;
  background: #fafafa !important;
  border-radius: 0 !important;
}
.blog_card .card-header
{
  overflow: hidden;
  cursor: pointer;
}
.blog_card .card-header img 
{
  transition: .5s;
}
.blog_card .card-header:hover img
{
  transform: scale(1.1);
}
.date_sec
{
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
}
.date_sec p 
{
  font-size: 14px;
  display: flex;
  align-items: center;
}
.date_sec p i 
{
  font-size: 12px;
  padding-right: 5px;
}
.blog_row
{
  margin-top: 40px;
}

.blog_row .slick-dots li {
    display: inline-block !important;
    margin: 0 15px;
}
.blog_row .slick-dots button {
    width: 9px;
    height: 9px;
    line-height: 6px;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    position: relative;
    background: #703314;
    border: none;
}
.overlay_video a,
.overlay_video a:hover
{
  color: #000;
}
.slick-prev,
.slick-next
{
  position: absolute;
  bottom: -50px;
  width: 35px;
  left: 15px;
  height: 35px;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
  transition: .5s;
  z-index: 2;
}
.slick-next 
{
  margin-left: 45px;
}
.slick-prev:hover,
.slick-next:hover
{
  background: #000;
  color: var(--sub);
}

.banner_social_meida
{
  position: absolute;
  bottom: 20px;
  z-index: 2;
  left: 20px;
}
.banner_social_meida ul li 
{
  display: block;
  padding-bottom: 10px;
}
.banner_social_meida ul li i 
{
  background: #000;
  color: var(--sub);
  width: 40px;
  height: 40px;
  padding-right: 0;
  line-height: 40px;
}
.banner_social_meida ul li:hover i
{
  background: var(--sub);
  color: #000;
  border-color: var(--sub);
}

.ads_items
{
  position: relative;
  cursor: pointer;
}
.ads_overlay_box1
{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.84);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.ads_overlay_box_inner
{
    position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  vertical-align: middle;
  padding: 10px 15px 10px 35px;
}
.ads-two__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .5s;
}
.ads_items:hover .ads-two__content
{
  opacity: 1;
}
.ads-two__content .vdo_img svg {
    width: 60px;
    height: 60px;
}
.ads_items:hover .ads_overlay_box1
{
    -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}
.ads_items .as_item_image 
{
  transition: .5s;
  overflow: hidden;
}
.ads_items .as_item_image  img 
{
  transition: .5s;
}
.ads_items:hover .as_item_image img 
{
  transform: scale(1.1);
}
.vdo_img svg 
{
  width: 40px;
  height: 40px;
}
.post_vd_cont h3 
{
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}
.post_vd_cont p 
{
  font-size: 13px;
  margin-bottom: 0;
}
.image_watch
{
  display: flex;
  padding-top: 0px;
}
.post_vd_cont
{
  color: #000;
}
.ads-two__content h3
{
  color: #000;
}
.as_item_image
{
  position: relative;
}
.ads_details
{
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}
.tabs_ul
{
  background: #f1f1f1;
  padding: 6px !important;
  width: 345px;
  border-radius: 30px;
  margin: auto;
}
.tabs_ul li  
{
  
  width: 50%;
  text-align: center;
  font-size: 15px;
  border-radius: 30px;
}
.tabs_ul li a.active {
    background: #000;
}
.tabs_ul li a.active   
{
  color: var(--sub);
}
.tabs_ul li a 
{
  color: #000;
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  letter-spacing: .5px;
  border-radius: 30px;
}
.tabs_ul li a:hover
{
  text-decoration: none;
}
.ads_items
{
  margin-bottom: 25px;
}


.slideshow {
  display: flex;
  height: 80vh;
  width: 80vw;
  max-width: 1240px;
  min-height: 400px;
  max-height: 700px;
  position: relative;
  background-color: #fff;
  padding: 20px;
}
.slideshow__gallery {
  height: 100%;
  width: calc(80% - 20px);
  margin-right: 20px;
}
.slideshow__gallery-wrap {
  will-change: transform;
  transition-timing-function: cubic-bezier(0, 0, 0.3, 0.98);
  transform: translate3d(0, 0, 0);
}
.slideshow__gallery-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 32px;
  color: #fff;
  letter-spacing: 3.2px;
  transform: translate3d(0, 0, 0);
  will-change: font-size;
  transition: font-size 0.3s ease;
}
.slideshow__gallery-slide.active {
  font-size: 36px;
}
.slideshow__thumbs {
  height: 100%;
  width: 20%;
}
.slideshow__thumbs-wrap {
  will-change: transform;
  transition-timing-function: cubic-bezier(0, 0, 0.3, 0.98);
  transform: translate3d(0, 0, 0);
}
.slideshow__thumbs-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  will-change: font-size;
  transition: font-size 0.3s ease;
}
.slideshow__thumbs-slide.active {
  font-size: 26px;
}

.close_btn i 
{
 color: #fff;
 font-size: 32px;
 transition: .5s;
}
.close_btn
{
  position: absolute;
  top: 10px;
  right: 22px;
  cursor: pointer;
}
.close_btn:hover i
{
  color: var(--sub);
}



@media (min-width: 1500px)
{
  .container {
    max-width: 1300px !important;
  }
}










.swiper-container {
overflow: hidden;
width: 100%;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 480px) {
.swiper-container {
min-height: 320px;
}
}
.swiper-container-wrapper {
display: flex;
flex-flow: column nowrap;
height: 100vh;
width: 100%;
}
@media (min-width: 480px) {
.swiper-container-wrapper {
flex-flow: row nowrap;
}
}

.swiper-button-next, .swiper-button-prev {
color: #000;
}

.swiper-slide {
text-align: center;
background-size: cover;
background-position: center;
background-color: #fff;
/* Center slide text vertically */
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
/* Slide content */
}
.swiper-slide .description,
.swiper-slide .title {
display: block;
opacity: 0;
transition: 0.5s ease 0.5s;
}
.swiper-slide-active .description,
.swiper-slide-active .title {
opacity: 1;
}
.swiper-slide-active .title {
margin-bottom: 0.5rem;
font-size: 24px;
color: #000;
transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-active .description {
font-size: 16px;
color: #777;
transition: opacity 0.5s ease 0.75s;
}

.gallery-top {
  position: relative;
  width: 100%;
  height: 75vh;
}
@media (min-width: 480px) {
.gallery-top {
  width: 80%;
  height: 100vh;
  margin-right: 10px !important;
  }
}

.gallery-thumbs {
  width: 100%;
  height: 25vh;
  padding-top: 10px;
}
@media (min-width: 480px) {
.gallery-thumbs {
    width: 20%;
    height: 100vh;
    padding: 0;
  }
}
.gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 480px) {
.gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  opacity: 0.75;
  cursor: pointer;
}
@media (min-width: 480px) {
  .gallery-thumbs .swiper-slide {
  flex-flow: column nowrap;
  width: 100%;
  }
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.blog_card img 
{
  width: 100%;
}

.heading_content
{
  margin-bottom: 25px;
}