@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
	margin:0;
	padding:0;
}.order-1 ,.order-2{
    order: unset !important;
}
@font-face {
    font-family: 'Carelia Upright';
    src: url('fonts/Carelia-Upright.woff2'),
		url('fonts/Carelia-Upright.woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis_1920';
    src: url('fonts/Metropolis1920.woff2') format('woff2'),
        url('fonts/Metropolis1920.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MoonTime';
    src: url(fonts/FontsFree-Net-MoonTime-Regular.ttf);
}
html,body{
	overflow-x:hidden;
}

a {text-decoration: none !important;}
body{
	background: url('images/bg.jpg');
	overflow-x: hidden;
}

/* ############## Loader CSS #################  */

.loading-text {
    color: #fff;
    font-size: 90px;
    text-align: center;
    font-family: 'Metropolis_1920';
}
.pace {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: 99999999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    overflow: hidden;
    /*background: #ccc;*/
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .pace .pace-progress {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 100%;
    position: fixed;
    z-index: 99999999999999;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
   /* background: #212529;*/
  }
  
  .pace.pace-inactive {
    width: 100vw;
    opacity: 0;
  }
  .pace.pace-inactive .pace-progress {
    max-width: 100vw;
  }
  
  #preloader {
      width: 100%;
      height: 100vh;
      overflow: hidden;
      position: fixed;
      z-index: 999999;
      top: 0;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  #preloader:after, #preloader:before {
      content: '';
      position: fixed;
      left: 0;
      height: 50.1vh;
      opacity: 1;
      background-color: #000000;
      width: 100%;
      -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
      transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
  .loading-text2, .loading-text {
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 10px;
      position: absolute;
      top: 45%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  } 
  .loading-text {
    top: 50% !important;
    z-index: 8;
    color: #f1e2ca;
    text-shadow: 5px 6px 25px #e5a500;
    text-align: center;
     line-height: .9;
    transition: .4s;letter-spacing: 0;
  } 
  
  span.s-txt {
    font-size: 70px;
    float: left;
    width: 100%;
}
  
  #preloader:before {
      top: 0;
  } #preloader:after {
      bottom: 0;
  }
  #preloader.isdone {
      visibility: hidden;
      -webkit-transition-delay: 1.5s;
      transition-delay: 1.5s;
  }
  
  #preloader2.isdone:after, #preloader2.isdone:before, #preloader.isdone:after, #preloader.isdone:before {
      height: 0;
      -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
      transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
      -webkit-transition-delay: 1s;
      transition-delay: 3s;
  }


  .pulse {
    animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
        filter: drop-shadow(0 0 0px #e1ad28);
    }
    100% {
        filter: drop-shadow(0 0 40px #e1ad28);
    }
  }
  
  @keyframes glowEffect {
  0% {
    color: #f1e2ca;
    filter: none;
  }
  50% {
    color: #fdeb98 !important;
    filter: drop-shadow(0px 0px 6px #e5a500);
  }
  100% {
    color: #fdeb98;
    filter: none;
  }
}
  
  .is-done .loading-text img{
	  display:none;
  }
  
  /* .pulse2 {
    animation: glowEffect 4s infinite;
  } */
  
  @keyframes pulse-animation2 {
    0% {
		color: #fdeb98 !important;
		filter: drop-shadow(0px 0px 6px #e5a500);
    }
    100% {
filter: drop-shadow(0px 0px 6px #e5a500);    }
  }
  
  
  
  
  
/* ############### End Here ##################### */

.loading-text img {
    max-width: 70%;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999999;
    opacity: 1; /* Initially set opacity to 1 for the fade-in effect */
    transition: opacity 2s ease-out; /* Add a transition for opacity changes */
}

#cdcd{
    transition: opacity 2s ease;
}
#loader2{
    transition: opacity 2s ease;
}
html body section.second-loader{
    background-color: #000 !important;
}
/*##################################### LOADER-CSS-START #####################################*/
section.first-loader, section.second-loader {background-color: #653d28 !important; height: 100vh; width: 100%; display: flex; justify-content: center; align-items: center;position: fixed;
    z-index: 9999;}
.first-loader-content h2 {font-size: 100px; font-family: 'Metropolis_1920'; color: #fff; text-shadow: 10px 10px 20px #D48A0D; filter: drop-shadow(0px 0px 6px #e5a500); 
    text-align: center; line-height: 1; margin-bottom: 0;}

.second-loader-content p, .second-loader-content h5 {font-size: 35px; color: #fff; width: 100%; max-width: 910px; margin: auto; text-align: center; font-style: italic; font-family: 'Arapey', serif;}

@media (min-width:320px) and (max-width:767px) {
    .first-loader-content h2 {font-size: 40px;}
    .second-loader-content p, .second-loader-content h5 {font-size: 18px; max-width: 480px; padding: 0 20px;}
}
@media (min-width:768px) and (max-width:991px) {
    .first-loader-content h2 {font-size: 60px;}
    .second-loader-content p, .second-loader-content h5 {font-size: 25px; max-width: 650px;}
    .banner-text.remini-text-banner:before {   top: -102px !important;  }
}
@media (min-width:992px) and (max-width:1399px) {
    .first-loader-content h2 {font-size: 80px;}
    .second-loader-content p, .second-loader-content h5 {font-size: 30px; width: 100%; max-width: 800px;}
}
/*##################################### LOADER-CSS-END #####################################*/

/*##################################### HEADER-CSS-START #####################################*/
.remini-home-dropdowon button.trans-bg {
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.remini-home-dropdowon .dropdown-menu, .remini-home-dropdowon .dropdown-menu.show {
    background-color: #653d28 !important;
}
.remini-home-dropdowon .dropdown {margin-right: 20px;}
.remini-home-dropdowon .dropdown-menu a.dropdown-item {
    color: #fff;
    text-align: center !important;
    padding: 11px 0px !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    text-shadow: none !important;
    filter: none !important;
    line-height: 18px !important;
}
.remini-home-dropdowon .dropdown-menu a.dropdown-item:hover {
    background-color: #502c19 !important;
}
.remini-home-dropdowon button.trans-bg:focus {box-shadow: none !important;}




.header-top.black.sticky {
    background-color: #653d28e3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: .4s;
}

.header-top, .part1 {padding: 50px;}
.logo {
    width: 100%;
    max-width: 119px;
    text-align: center;
    margin-top: 5px;
}

.logo a, .logo a:hover {
    font-family: 'Metropolis_1920';
    font-size: 22px;
    color: #f1e2ca;
    text-shadow: 5px 6px 25px #e5a500;
    text-align: center;
    line-height: .8;
    transition: .4s;
}
.parent-menu .list-inline li.login-menu a {
    font-family: 'Metropolis_1920';
    font-size: 28px;
    color: #f1e2ca;
    text-shadow: 5px 6px 25px #e5a500;
    margin-right: 50px;
    transition: .4s;
}
.parent-menu .list-inline li.login-menu a:hover, .logo a:hover, .slide-menu-link li a:hover, .sidenav-new-menu .new-menu-logo a:hover {
    color: #fdeb98 !important;
    filter: drop-shadow(0px 0px 6px #e5a500);
}
/* .header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 90px;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    z-index: 9999;
    background-color: transparent;
} */
.parent-menu ul li.single-star img {
    width: 100%;
    max-width: 40px;
    transition: .4s;
}
.parent-menu ul li.single-star img:hover {
    filter: drop-shadow(0px 0px 6px #e5a500);
}
header.header-top {
    background-color: #653d28;
}
.logo img {
    height: 70px;
    margin-top: 10px;
    max-width: 300px;
}
.parent-menu {
    margin: 0;
    padding: 0;
    text-align: right;
    position: relative;
    vertical-align: middle;
}
.parent-menu .list-inline {
    padding: 5px 0;
}
.parent-menu .list-inline li {
    vertical-align: revert;
}
.parent-menu .list-inline li {
    margin: 0 0px 0 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.parent-menu .list-inline li a {
    margin: 0;
    padding: 0 0px;
    min-height: 40px;
    line-height: 40px;
    display: block;
    font-family: 'MoonTime';
    text-shadow: 10px 10px 20px #D48A0D;
    filter: drop-shadow(0px 0px 6px #e5a500);
}
.parent-menu .list-inline li a h5 {
    color: #fff;
    font-weight: 400;
    margin-top: 5px;
    text-align: center;
    font-family: 'MoonTime' !important;
    margin-bottom: 0px !important;
}
.login-a li > a {
    font-size: 16px;
    color: #fdb413;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 18px;
}
.parent-menu .list-inline li.last {
    margin-right: 0;
}
.parent-menu .list-inline li.last a {
    padding-top: 0px !important;
}
.parent-menu .list-inline .menu-bars {
    background: url(../images/menubar.png) no-repeat;
    width: 21px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
}

@media (min-width:320px) and (max-width:767px) {
	
	section.top-banner .container-fluid {
    padding: 0;
}
.stars-image.star-size img {
    width: 60%;
}
	section.video-section.pt-5.mt-5 {
    min-height: 350px;
}
	/* header.header-top {position: fixed; top: 0;	left: 0; right: 0; z-index: 999;} */
	header.header-top .padding-m {padding: 0 5px;}
	.header-top, .part1 {padding: 50px 10px;}
	.logo a, .logo a:hover {font-size: 22px;}
	.logo a, .logo a:hover {font-size: 18px;}
	.parent-menu .list-inline li.login-menu a {font-size: 22px;margin-right: 10px;min-height: 0 !important;line-height: unset !important;}
	.parent-menu .list-inline li a {min-height: unset; line-height: unset;}
	.parent-menu ul li.single-star img {max-width: 32px;}
	.logo {max-width: 98px;}
	.slide-menu-link li a {font-size: 40px !important; line-height: 1;}
	.sidenav-new-menu .new-menu-logo a {font-size: 25px !important;}
	.sidenav-new-menu .new-menu-logo {position: absolute !important; right: 20px !important;}
	#mySidenav2.width-menu {width: 100% !important;}
    .parent-menu .list-inline li a h5 {font-size: 12px;}
    .stars-image {position: absolute; right: -370px; top: 80px;}
}

@media (min-width:768px) and (max-width:991px) {
	.header-top, .part1 {padding: 50px 0;}
	header.header-top {padding: 0 10px;}
	.parent-menu .list-inline li.login-menu a {font-size: 28px;margin-right: 30px;}
	.logo a, .logo a:hover {font-size: 22px;}
	.sidenav-new-menu .new-menu-logo {position: absolute !important; right: 40px !important;}
	.sidenav-new-menu .new-menu-logo a {font-size: 35px !important;}
	.slide-menu-link li a {font-size: 45px !important;}
	#mySidenav2.width-menu {width: 100% !important;}
    .parent-menu .list-inline li a h5 {font-size: 14px;}
    .parent-menu ul li.single-star img {max-width: 40px;}
    .parent-menu .list-inline {padding: 8px 0;}
}

/*------ SIDEBAR-CSS ------*/
.remini-side-moon {
    position: absolute;
    z-index: -1;
}.remini-side-moon img {
    width: 75%;
}
@media  (max-width:767px) {
    .remini-side-moon img {
        width: 100%;
    }
}
@media  (min-width:1800px) {
    .remini-side-moon img {
        width: 60%;
    }
}
@media screen and (max-height: 768px) {
	.sidenav-new-menu {min-height: auto;}
}
.sidenav-new-menu .menu-conatainer {
    padding: 20px 20px 100px 100px;
    position: relative;
    height: 100%;
}
.default-menu {
	background-color: #623f3b;
}
.width-menu {
    width: 70% !important;
}
.sidenav-new-menu {
    height: 100%;
    min-height: 830px;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 999999;
}
.sidenav-new-menu .closebtn {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    height: 100%;
    width: 50px;
    background-color: #ffffff;
    color: #000000;
    padding: 70px 5px;
    font-size: 18px;
    font-weight: 500;
    z-index: 99;
    letter-spacing: 1px;
}
.sidenav-new-menu a {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.sidenav-new-menu .closebtn span {
    transform: rotate(270deg);
    display: block;
    text-transform: uppercase;
}
.sidenav-new-menu .closebtn span {
    transform: rotate(270deg);
    display: block;
    text-transform: uppercase;
}
.sidenav-new-menu .new-menu-logo {
    position: absolute;
    top: 30px;
    right: 100px;
}
.sidenav-new-menu .new-menu-logo a {
    font-family: 'Metropolis_1920';
    font-size: 40px;
    color: #e7cfa6;
    text-shadow: 5px 6px 25px #e5a500;
    text-align: center;
    line-height: 1;
    transition: .4s;
}
.new-menu-logo a {
    height: auto;
    margin-top: 0;
    max-width: 300px;
    padding: 0 !important;
    margin: 0;
    margin-bottom: 0;
}
.new-menu-logo a img {
    width: 100%;
}
.menu-top-bottom {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    justify-content: center;
    align-items: center;
}
ul.slide-menu-link {
    height: auto;
    min-height: auto;
    float: left;
    width: 100%;
}
li {
    line-height: 18px;
}
@media screen and (max-height: 768px) {
	.slide-menu-link li a {
		font-size: 46px;
		line-height: 46px;
	}
}
.slide-menu-link li {
    list-style: none;
    margin-bottom: 20px;
}
.slide-menu-link li:last-child {
    margin-bottom: 0px;
}
.slide-menu-link li a {
    display: inline-block;
    font-family: 'Metropolis_1920';
    font-size: 50px;
    color: #f5d6a1;
    text-shadow: 5px 6px 25px #e5a500;
    transition: .4s;
    line-height: normal;
	height:80px;
}
@media screen and (max-height: 768px) {
	.slide-menu-link-bottom {
		padding-bottom: 8px;
	}
}
@media screen and (max-height: 768px) {
	.slide-menu-link-bottom li a {
		font-size: 18px;
		line-height: 24px;
	}
}
.slide-menu-link-bottom li a {
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    padding: 0;
    line-height: 32px;
}
#cd-shadow-layer {
    position: fixed;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.9);
    cursor: pointer;
    z-index: 2;
    display: none;
    z-index: 99999;
}
.sidenav-new-menu.width-menu .logo-nav {
    position: absolute;
    top: -30px;
    right: 50px;
    margin: 0px 0 0 0;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    width: 240px;
}
.stars-image {
    position: absolute;
    right: -170px;
    top: 60px;
    z-index: -2;
}

.stars-image img {
    width: 80%;
}
@media (min-width:991px) and (max-width:1199px) {
	.header-top, .part1 {
    	padding: 25px;
	}
	.sidenav-new-menu .new-menu-logo a {
		font-size: 32px !important;
	}
	.slide-menu-link li a {
		font-size: 50px !important;
	}
}
/*##################################### HEADER-CSS-END #####################################*/

/*##################################### HOME-PAGE-CSS-START #####################################*/
.top-banner{
	/*background: url('images/bg-2.png');*/
	width:100%;
	height:100vh;
	background-size:cover;
	min-height:1080px;
	position:relative;
}
/* section.top-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 500px;
    background: url(images/shape-Vector.svg);
    height: 100%;
    max-height: 500px;
    background-size: contain;
    right: -30px;
    background-repeat: no-repeat;
    bottom: 0;
    z-index: -1;
} */
section.top-banner::after {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 700px;
    background: url(images/rembanner-new.png);
    height: 100%;
    max-height: 700px;
    background-size: contain;
    right: -250px;
    background-repeat: no-repeat;
    bottom: 0px;
    z-index: 1;
}
.container-fluid.glitter-img{
    padding-right:0px;
}
@media (min-width:1600px) {
    section.top-banner::after {position: absolute; max-width: 800px; max-height: 800px; right: -140px;}
}
.top-banner h1{
	font-family: 'Metropolis_1920';
    line-height: 1;
    font-size: 108px;
	text-align:center;
	color:#fff;
    text-shadow: -6px 6px 111px #cf7b10;
    filter: drop-shadow(0px 0px 6px #cf7b10);
    width: 100%;
}
section.top-banner .remini-text-banner {
    position: absolute;
    top: 50px;
    left: 60px;
}
.banner-text {
    position: absolute;
    top: 210px;
    left: -50px;
}
.banner-text h3.remini-text-home {
    margin: 30px 0 0 0;
    font-family: 'MoonTime';
    text-shadow: -6px 6px 111px #cf7b10;
    filter: drop-shadow(0px 0px 6px #cf7b10);
    text-transform: none;
    font-weight: 500;
    font-size: 80px;
}
.banner-text h3 {
    font-size: 40px;
    line-height: .8;
    font-weight: 700;
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    margin-left: 0;
    text-shadow: 1px 1px black;
    text-transform: uppercase;
    margin: 90px 0 0 335px;
}
.set-pos{
	display: flex;
    align-items: center;
    justify-content: center;
}

.objects{
	position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
	z-index: 2;
}
.objects-l{
    right: unset;
    left: 0;
}
.main-heading{
	font-family: 'Metropolis_1920';
	font-size: 109px;
	text-align:left;
	color:#fff;
	text-shadow:-6px 6px 111px #e1ad28;
	width:100%;
	position:relative;
	z-index:3;
	
}
.main-heading:after{
	content:'';
	position:absolute;
}

.part1{
	/*background: url('images/p-bg.webp');*/
	width:100%;
	height:100vh;
	background-size:cover;
	min-height:1080px;
	position:relative;
}

.part1 p{
	font-size:38.8px;
}
img.img-fluid.remini-new-home {
    position: absolute;
    top: 130px;
    left: 280px;
    z-index: 9;
    width: 50%;
}
img.img-fluid.remini-new-home-two {
    position: absolute;
    top: 60px;
    right: 400px;
    z-index: 9;
    width: 50%;
}
section.part1.slide3 img.img-fluid.set-car.remini-car-home {
    width: 350px;
    bottom: -170px;
}
img.img-fluid.set-car.remini-car-home {
    position: absolute;
    left: 120px;
    bottom: -140px;
    width: 410px;
    z-index: 3;
}
img.img-fluid.remini-new-home-three {
    position: absolute;
    left: 280px;
    top: 150px;
    z-index: 9;
    width: 50%;
}
img.img-fluid.remini-new-home-four {
    position: absolute;
    top: 70px;
    left: 330px;
    z-index: 9;
    width: 42%;
}

img.img-fluid.remini-new-home-six {
    position: absolute;
    top: 80px;
    right: 430px;
    z-index: 9;
    width: 30%;
}
img.img-fluid.remini-bg-home {
    bottom: -140px;
    width: 360px;
    left: 130px;
}
img.img-fluid.remini-new-home-seven {
    position: absolute;
    right: 180px;
    top: -120px;
    z-index: 9;
    width: 90%;
}
img.img-fluid.up-side.remini-plug-img {
    position: absolute;
    right: -50px;
}
img.img-fluid.up-side.remini-contact {
    width: 100%;
}
img.img-fluid.remini-new-home-eight {
    position: absolute;
    right: 180px;
    top: 60px;
    z-index: 9;
    width: 80%;
}
h1.main-heading.contact-after::after {
    content: unset !important;
}
.remini-contact-details h3 {
    font-size: 36px;
    font-weight: 700;
    color: #6f4833;
    margin-right: 15px;
    margin-bottom: 0;
}
.remini-contact-details h5, .remini-contact-details h5 a {
    font-size: 32px;
    color: #000;
    margin-bottom: 0;
}
.shape1:after{
	content: '';
    position: absolute;
    width: 75%;
    background: url(images/shape.svg);
    height: 100%;
    background-size: contain;
    left: 0;
    background-repeat: no-repeat;
    top: 50px;
    z-index: 0;
    right: 0;
    margin: 0 auto;
}

img.img-fluid.up-side {
    width: 90%;
    z-index: 2;
    position: relative;
}
.part1:before{
	content: '';
    position: absolute;
    width: 100%;
    background: url(images/star.png);
    height: 100%;
    background-size: contain;
    left: 0;
    background-repeat: no-repeat;
    top: -40px;
    z-index: 0;
}
/* .part1::after {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 320px;
    background: url(images/Bottom.png);
    height: 100%;
    background-size: contain;
    left: -60px;
    background-repeat: no-repeat;
    bottom: 100px;
    z-index: 1;
}
.before-img::before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 320px;
    background: url(images/Top.png);
    height: 100%;
    background-size: contain;
    right: -60px;
    background-repeat: no-repeat;
    top: 40px;
    z-index: 1;
} */
.main-heading:after {
    content: '';
    position: absolute;
    width: 100%;
    background: url(images/heading_shape.svg);
    height: 35px;
    background-size: contain;
    left: 30px;
    background-repeat: no-repeat;
    bottom: -50px;
}
.part1 p.mt-5.mt-20{
	margin-top:65px !important;
}
section.part1 img.img-fluid.set-mic.remini-mic {
    left: 0 !important;
}
.set-mic{
position: absolute;
    bottom: 0;
    left: 150px;
    right: 0;
    margin: 0 auto;
    width: 130px;
	z-index:3;
}

.set-car {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 410px;
    z-index: 3;
}


/*.slide3{
	background: url('images/slide3.webp') !important;
	background-size:100% 100% !important;
}
.slide4{
	background: url('images/slide4.webp') !important;
	background-size:100% 100% !important;
}
.slide5{
	background: url('images/Slide5.webp') !important;
	background-size:100% 100% !important;
}
.slide6{
	background: url('images/Slide6.webp') !important;
	background-size:100% 100% !important;
}

.slide7{
	background: url('images/slide7.webp') !important;
	background-size:100% 100% !important;
}
.slide8{
	background: url('images/Slide8.webp') !important;
	background-size:100% 100% !important;
}
.slide9{
	background: url('images/Slide9.webp') !important;
	background-size:100% 100% !important;
}
.slide10{
	background: url('images/slide10.webp') !important;
	background-size:100% 100% !important;
}
.slide11{
	background: url('images/slide11.webp') !important;
	background-size:100% 100% !important;
}*/
h1.main-heading.mt-5.mb-5.text-center.no-b.large {
    font-size: 160px;
}
.no-b:after{
	display:none !important
}
.team h3 {
    font-size: 20px;
}
.team p {
  font-size: 16px !important;
    font-weight: 500;
    padding: 0 4px;
}
.bottom-align{
	align-items: flex-end;
    display: flex;
    justify-content: center;
}
.slide10 h2 {
    font-size: 80px;
    color: #000;
    font-weight: 800;
}
.slide10 p.mt-4 {
    font-size: 22px;
    margin-top: 10px !important;
}

.r-110{
	padding-right:110px !important;
}

.slide3 .container-fluid.h-100,
.slide8 .container-fluid.h-100{
	padding-right:0 !important;
 }
 h1.main-heading.mt-5.mb-5.no-b.small {
    font-size: 65px;
}
 
img.img-fluid.abs {
	width: 100%;
    position: absolute;
}
.rocket-image {
    position: absolute;
    right: -145px;
}
.rocket-image img {
    width: 100%;
    max-width: 694px;
}

/*####################### FOOTER-CSS #######################*/
.info.shape2 {
    z-index: 3;
}
.info {
    position: relative;
    float: left;
    width: 100%;
}
.shape2 {
    background: url(images/y-shape.png);
    width: 100%;
    /* height: 100%; */
    background-size: 100% 100%;
    float: left;
    position: relative;
    padding-bottom: 90px;
}
.shape2 {
    padding-top: 90px;
}
@media (min-width: 1500px) {
.container-lg {
    max-width: 89% !important;
}
}
@media screen and (min-width: 1500px) {
.p-0.col-md-4 img {
    width: 285px;
}
}
@media (max-width: 1500px) {
    ul.social li {
    width: 40px !important;
    height: 40px !important;
}
	.p-0.col-md-4 img {
		width: 230px;
	}
}
@media screen and (max-width: 1199px) and (min-width: 1024px) {
	.p-0.col-md-4 img {
		width: 190px;
	}
}
@media screen and (max-width: 1023px) and (min-width: 900px) {
	.p-0.col-md-4 img {
		width: 170px;
	}
}
@media screen and (max-width: 991px) and (min-width: 576px) {
	.p-0.col-md-4 img {
		width: 130px;
	}
}
@media (max-width: 1500px) {
	.shape2 .img-fluid {
		max-width: 80%;
		height: auto;
		width: 60%;
	}
}

.bring-top {
    position: relative;
    z-index: 2;
}
.footer {
    /* background: url(../img/bg.png); */
    width: 100%;
    min-height: 790px;
    float: left;
    background-size: 100% 100%;
	background: #653d28;
}
.push-top {
    margin-top: -120px;
}
@media (max-width: 1500px) {
	.push-top {
		margin-top: -90px;
	}
}
@media screen and (max-width: 1199px) and (min-width: 1024px) {
	.push-top {
		margin-top: -75px;
	}
	ul.social li {
		margin-right: -1px !important;  
	}
}
@media screen and (max-width: 1023px) and (min-width: 900px) {
	.push-top {
		margin-top: -60px;
	}
}
@media screen and (max-width: 991px) and (min-width: 576px) {
	.push-top {
		margin-top: -20px;
	}
}
@media screen and (max-width: 575px) and (min-width: 320px) {
	.push-top {
		margin-top: -10px;
	}
	section.info.shape2 h1 {
		font-size: 28px;
	}	
	.row.text-center.push-top {
		justify-content: center;
	}
}

.txt {
    position: relative;
}
span.shape3 {
    position: relative;
    width: 400px;
    margin: 0 auto;
    text-align: center;
    display: block;
}
span.shape3 img {
    position: relative;
    z-index: 1;
    height: 560px;
}
span.shape3 img {
    position: relative;
    z-index: 1;
    height: 480px;
    top: 50px;
    right: 0;
    left: 0;
    text-align: center;
}
.shape3:after {
    content: "";
    background: url(../img/ft-map.png);
    width: 400px;
    height: 400px;
    background-size: 100% 100%;
    float: left;
    position: absolute;
    left: 0px;
    z-index: 0;
    top: 130px;
}
.shape3:after {
    background: url('images/ft-layer.png') !important;
    background-size: 100% 100% !important;
}
.remini-footer h3.remini-f-text {
    font-size: 70px;
    color: #ffff;
    text-shadow: 10px 10px 20px #d48a0da3;
    filter: drop-shadow(0px 0px 6px #e5a500);
    font-family: 'MoonTime' !important;
}
.footer h3 {
    word-spacing: 10px;
}
ul.social {
    color: #fff;
    list-style: none;
    display: inline;
    position: relative;
    top: 51px;
}
ul.social li {
    display: inline-block;
    text-align: right;
    background: #a27c61;
    width: 50px;
    height: 50px;
    border-radius: 15px 0px 15px 0px;
    margin-right: 15px;
    text-align: center;
    line-height: 50px;
}
ul.social li {
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
ul.social li:hover {
    transform: scale(1.15);
    transition: 0.5s ease-in-out;
}
ul.social li a, ul.social li a i {
    color: #fff !important;
    font-size: 14px;
}
@media (max-width: 1500px) {
	ul.social li {margin-right: 9px;}
}

ul.social li a {
    color: #fff;
    font-size: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bdr-top {
    border-top: 1px solid #a27c61 !important;
    padding-top: 20px;
}
ul.ft-menu {
    color: #fff;
    list-style: none;
    display: inline;
}
ul.ft-menu li {
    display: inline-block;
    text-align: right;
}
ul.ft-menu li a {
    color: #fff;
    font-size: 14px;
}
.txt:before {
    content: 'REMINISCENCE';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    font-size: 180px;
    color: rgba(255,255,255,0.0);
    top: 180px;
    font-family: 'Metropolis_1920';
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}
section.part1.slide10 {height: fit-content;	max-height: fit-content;}
html,body{overflow-x:hidden;}
.main-heading{font-size:85px;}
.part1 { min-height: 900px;max-height: 900px;}
.part1 p{font-size:26px;}
.row.pt-5.h-100 { align-items: center; justify-content: center;}
.objects { width: 25%;}
.objects-l { width: 45%;}
section.top-banner { height: fit-content; min-height: fit-content;}
img.img-fluid.abs { position: absolute; height: 100%; width: 100%; object-fit: cover;}
.set-car { bottom: -110px; width:360px;}
.glitter-img::after {
    content: '';
    position: absolute;
    width: 100%;
    background: url(images/glitters.png);
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0px;
    bottom: -270px;
    z-index: -1;
}

section.new-quote-section {
    background-image: url(images/sec-section.webp);
    height: 700px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}
.new-quote-text p {
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    width: 100%;
    max-width: 910px;
    margin: auto;
    text-align: center;
    font-style: italic;
    font-family: 'Arapey', serif;
    text-shadow: 1px 1px 10px #ffffffb0;
}



/*#################### MEDIA-QUERY-START ####################*/
@media screen and (max-width: 1440px) and (min-width: 992px) {
	html body .txt:before {letter-spacing: 1rem !important;}
	.txt:before {font-size: 140px; top: 210px;}
}
@media screen and (max-width: 991px) and (min-width: 768px) {
	.txt:before {font-size: 110px; top: 240px;}
	ul.social li {margin-right: 2px;}
	ul.social li {width: 30px; height: 30px; border-radius: 6px 0px 6px 0px;}
}
@media screen and (max-width: 767px) and (min-width: 576px) {
	.txt:before {font-size: 100px; top: 240px;}
    .banner-text.remini-text-banner:before{
        top: -68px !important;
    }
}	

@media screen and (max-width: 575px) and (min-width: 320px) {
	.txt:before {display: none;}
}

@media screen and (max-width: 479px) and (min-width: 320px) {
	.shape3:after {width: 350px; height: 350px;}
    section.top-banner img.img-fluid.w-100.remini-img-home {width: 500px !important; height: 230px; object-fit: cover; object-position: left; zoom: 150%;}
}
@media screen and (max-width: 767px) and (min-width: 480px) {
    section.top-banner img.img-fluid.w-100.remini-img-home {width: 500px !important; height: 300px; object-fit: cover; object-position: left; zoom: 130%;}
}
@media screen and (max-width: 575px) and (min-width: 320px) {
	span.shape3 img {position: relative; z-index: 1; height: auto; width: 250px; height: 460px; object-fit: contain; object-position: center center;}
	footer ul.social li {width: 30px !important; height: 30px !important; margin-right: 0px; line-height: 25px;	margin-bottom: 15px !important;	border-radius: 6px 0px 6px 0px !important;}
}
@media screen and (max-width: 767px) and (min-width: 320px) {
	.shape3:after {width: 350px; height: 350px;}
	footer ul.social {display: block; width: 50%; margin: 0 auto; top: 20px; text-align: center;}
	.footer {min-height: 900px;}
	.shape2 {padding-top: 10px !important;}
	.f-14 {text-align: center;}
	ul.ft-menu {text-align: center!important; width: 100%;display: inline-block;}
}
@media screen and (max-width: 390px) and (min-width: 320px) {
	footer ul.social {width: 47% !important;}	
}
@media screen and (max-width: 479px) and (min-width: 360px) {
	span.shape3 {width: 350px;}
}
@media (min-width:1041px) and (max-width:1399px) {
	section.top-banner::before {max-width: 230px; max-height: 230px; right: 120px; bottom: -30px;}
}

@media (max-width:767px) {
	
	html body .frame-count h4 {font-size: 60px;}
    html body .stars-image.star-size {
        position: absolute;
        right: -380px;
        top: 10px;
        z-index: -2;
    }
	
	html body .stars-image {
    position: absolute;
    right: -170px;
    top: 310px;
    z-index: -2;
}
	.sidenav-new-menu .menu-conatainer {
    padding: 90px 20px 100px 70px;
    position: relative;
    height: 100%;
}
	.main-heading:after{width:70%;}
	.objects-l {left: -40px;}
	.objects {right: -20px;}
	html,body{overflow-x:hidden;} 
	section.top-banner::before {max-width: 200px; max-height: 200px; right: 70px; bottom: 0px;}
	.part1::after {content: '';	display: none;}
	.before-img::before {content: ''; max-width: 150px; right: -30px; top: 0;}
	.top-banner h1 {font-size: 45px !important;}
	img.img-fluid.w-100.d-md-none.d-block {
        width: 500px !important;
        height: 220px;
    }
	.main-heading {font-size: 35px !important;}
	.part1 p {font-size: 16px !important;}
	.container-fluid.h-100 {padding: 0 10px 0 10px !important;}
	.set-mic {position: absolute; bottom: -30px; right: 60px; width: 50px;}
	img.img-fluid.up-side {width: 100%; max-width: 250px;}
	.part1 {min-height: auto !important; max-height: fit-content !important; height: auto !important;}
    section.part1.slide3 img.img-fluid.set-car.remini-car-home {bottom: -100px !important;}
	.set-car {bottom: -80px !important; width: 220px !important; margin: auto;}
	.shape1:after {content: '';	width: 45%;	top: 40px;}
	h1.main-heading.no-b.small {font-size: 26px !important;}
	.spc-mobile {margin-bottom: 60px !important;}
	.slide10 h2 {font-size: 32px;}
	.rocket-image {position: absolute; right: -5px;}
	.rocket-image img {max-width: 200px;}
	.main-heading:after {position: absolute; left: 10px;}
    section.top-banner .remini-text-banner {position: absolute; top: 50px; left: 30px;}
    .banner-text {position: absolute; top: 60px; left: -30px;}
    .banner-text h3.remini-text-home {font-size: 33px; margin: 20px 0 0 0; width: 100%; line-height: 20px; white-space: nowrap;}
    .banner-text h3 {font-size: 16px; text-shadow: 1px 1px black; margin: 15px 0px 0px 130px; width: 54%; line-height: 20px;}
    section.top-banner::after {position: absolute; max-width: 320px; max-height: 380px; right: -80px; bottom: -20px;}
    .part1:before {position: absolute; top: 30px;}
    section.top-banner {margin-bottom: 20px;min-height: 490px;}
    .glitter-img::after {left: 0; bottom: -80px;}
    section.new-quote-section {height: 400px;}
    .new-quote-text p {font-size: 20px; max-width: 570px;}
    .remini-contact-details h3 {font-size: 22px;}
    .remini-contact-details h5 a {font-size: 20px; margin-top: 5px;}
    .remini-footer h3.remini-f-text {font-size: 40px;}
    img.img-fluid.remini-new-home {
        position: absolute;
        top: 90px;
        left: 150px;
        z-index: 9;
        width: 100%;
        max-width: 150px;
    }
    img.img-fluid.remini-new-home-two {
        position: absolute;
        top: 60px;
        right: unset;
        left: 50px;
        z-index: 9;
        width: 100%;
        max-width: 150px;
    }
    img.img-fluid.remini-new-home-three {
        position: absolute;
        left: unset;
        right: 50px;
        top: 90px;
        z-index: 9;
        width: 100%;
        max-width: 150px;
    }
    img.img-fluid.remini-new-home-four {
        position: absolute;
        top: 50px;
        left: unset;
        right: 70px;
        z-index: 9;
        width: 100%;
        max-width: 100px;
    }
    img.img-fluid.up-side.remini-plug-img {
        position: unset;
        right: 0;
    }
    img.img-fluid.remini-new-home-six {
        position: absolute;
        top: 80px;
        right: unset;
        left: 50px;
        z-index: 9;
        width: 100%;
        max-width: 90px;
    }
    img.img-fluid.remini-new-home-seven {
        position: absolute;
        right: unset;
        left: 10px;
        top: -10px;
        z-index: 9;
        width: 100%;
        max-width: 200px;
    }
    img.img-fluid.remini-new-home-eight {
        position: absolute;
        right: 140px;
        top: 80px;
        z-index: 9;
        width: 100%;
        max-width: 200px;
    }
    .f-w-70 {
        width: 90% !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    section.top-banner .remini-text-banner {position: absolute; top: 70px; left: 25px;}
    .col-sm-10 offset-md-1 offset-sm-1{
        margin-left: 6% !important;
    }
    .banner-text h3.remini-text-home{ font-size: 56px; margin-top: 30px;}
	html,body{overflow-x:hidden;} 
	.part1::after {content: '';	display: none;}
	.before-img::before {content: ''; max-width: 250px;}
	.top-banner h1 {font-size: 60px !important;}
    .set-pos {justify-content: left;    }
	.main-heading {font-size: 55px !important;}
	.part1 p {font-size: 20px !important;}
	.container-fluid.h-100 {padding: 0 30px 0 30px !important;}
	.set-mic {position: absolute; bottom: -50px; right: 0; width: 70px;}
	img.img-fluid.up-side {width: 100%; max-width: 350px;}
	.part1 {min-height: auto !important; max-height: fit-content !important; height: auto !important;}
    section.part1 img.img-fluid.set-car.remini-car-home {bottom: -110px !important;}
	.set-car {bottom: -80px !important; width: 220px !important; margin: auto;}
	.shape1:after {content: '';	width: 45%;	top: 40px;}
	h1.main-heading.no-b.small {font-size: 55px !important;}
	.spc-mobile {margin-bottom: 60px !important;}
	.slide10 h2 {font-size: 60px;}
	section.top-banner::before {content: ''; max-width: 250px; max-height: 250px; right: 20px; bottom: 0px;}
	.rocket-image {right: -20px;}
    img.img-fluid.remini-rocket {max-width: 300px;}
	.rocket-image img {max-width: 440px;}
    .banner-text {position: absolute; top: 120px; left: -50px;}
    .banner-text h3 {font-size: 22px; margin: 60px 0 0 190px;}
    section.top-banner::after {max-width: 400px; max-height: 400px; right: -140px;}
    .glitter-img::after {left: -10px; bottom: -130px;}
    section.new-quote-section {height: 500px;}
    .new-quote-text p {font-size: 25px; max-width: 650px;}
    .remini-contact-details h3 {font-size: 28px;}
    .remini-contact-details h5 a {font-size: 22px;}
    .remini-footer h3.remini-f-text {font-size: 45px;}
    img.img-fluid.remini-new-home {
        position: absolute;
        top: 100px;
        left: unset;
        right: 220px;
        z-index: 9;
        width: 100%;
        max-width: 200px;
    }
    img.img-fluid.remini-new-home-two {
        position: absolute;
        top: 60px;
        right: 460px;
        z-index: 9;
        width: 100%;
        max-width: 200px;
    }
    img.img-fluid.remini-new-home-three {
        position: absolute;
        left: unset;
        right: 220px;
        top: 140px;
        z-index: 9;
        width: 100%;
        max-width: 160px;
    }
    img.img-fluid.remini-new-home-four {
        position: absolute;
        top: 60px;
        left: unset;
        right: 200px;
        z-index: 9;
        width: 100%;
        max-width: 150px;
    }
    img.img-fluid.up-side.remini-plug-img {
        position: unset;
        right: 0;
    }
    img.img-fluid.remini-new-home-six {
        position: absolute;
        top: 120px;
        right: unset;
        left: 200px;
        z-index: 9;
        width: 100%;
        max-width: 110px;
    }
    img.img-fluid.remini-new-home-seven {
        position: absolute;
        right: unset;
        left: 100px;
        top: -40px;
        z-index: 9;
        width: 100%;
        max-width: 300px;
    }
    img.img-fluid.remini-new-home-eight {
        position: absolute;
        right: unset;
        left: 140px;
        z-index: 9;
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 576px){
section.top-banner::after {
    position: absolute;
    max-width: 240px;
    max-height: 240px;
    right: -80px;
    bottom: -20px;
}
.sec-head{
    font-size: 8vw !important;
}
.banner-text.remini-text-banner:before{
    top: -70px !important;
}
.guitar-image.position-relative img.img-fluid {
    padding-top: 120px;
}
.frame-abs {
    top: 13% !important;
}

#sample-video .close.close-but-edit {
    right: 30px !important;
}
}
@media (min-width:992px) and (max-width:1199px) {
    section.top-banner .remini-text-banner {position: absolute; top: 80px; left: 30px;}
    #pricing-section h1.main-heading.small.f-size-small {font-size: 45px !important;}
	.main-heading {font-size: 55px !important;}	
	.part1 {min-height: fit-content !important;	height: fit-content !important;	max-height: fit-content !important;}
	.before-img::before, .part1::after {right: -30px; max-width: 200px;}
	.part1::after {left: -20px; bottom: 60px;}
    .objects-l {width: 40%;}
    ul.social li {margin-right: 5px; width: 40px; height: 40px;}
    .slide10 h2 {font-size: 60px;}
    .part1 p {font-size: 22px;}
    .rocket-image img {max-width: 500px;}
    .banner-text {position: absolute; top: 140px; left: -80px;}
    .top-banner h1 {font-size: 80px;}
    .banner-text h3 {font-size: 28px; margin: 90px 0 0 275px;}
    section.top-banner::before {max-width: 350px; max-height: 350px; right: 0px; bottom: -30px;}
    section.top-banner::after {max-width: 470px; max-height: 520px; right: -140px;}
    img.img-fluid.up-side {width: 85%;}
    .set-mic {width: 80px;}
    .set-car {width: 200px;}
    .set-car {bottom: -50px;}
    .glitter-img::after {left: -50px; bottom: -150px;}
    .remini-contact-details h3 {font-size: 28px;}
    .remini-contact-details h5 a {font-size: 24px;}
    .remini-footer h3.remini-f-text {font-size: 60px;}
    section.part1.slide3 img.img-fluid.set-car.remini-car-home {
        position: absolute;
        left: 120px;
        bottom: -110px;
        width: 230px;
        z-index: 3;
    }

    img.img-fluid.remini-new-home {
        position: absolute;
        top: 100px;
        left: 160px;
        z-index: 9;
        width: 50%;
    }
    img.img-fluid.remini-new-home-two {
        position: absolute;
        top: 60px;
        right: 270px;
        z-index: 9;
        width: 50%;
    }
    img.img-fluid.remini-new-home-three {
        position: absolute;
        left: 190px;
        top: 150px;
        z-index: 9;
        width: 50%;
    }
    img.img-fluid.remini-new-home-four {
        position: absolute;
        top: 60px;
        left: 250px;
        z-index: 9;
        width: 35%;
    }
    img.img-fluid.up-side.remini-plug-img {
        position: absolute;
        right: -50px;
        top: -170px;
    }
    img.img-fluid.remini-new-home-six {
        position: absolute;
        top: 80px;
        right: 310px;
        z-index: 9;
        width: 30%;
    }
    img.img-fluid.remini-new-home-seven {
        position: absolute;
        right: 180px;
        top: -50px;
        z-index: 9;
        width: 70%;
    }
    img.img-fluid.remini-new-home-eight {
        position: absolute;
        right: 140px;
        top: 80px;
        z-index: 9;
        width: 70%;
    }
}
@media (min-width:1200px) and (max-width:1350px) {
    h1.main-heading.font-small {font-size: 55px;}
    #pricing-section h1.main-heading.small.f-size-small {font-size: 50px !important;}
    h2.f-small {font-size: 65px;}
    .main-heading {font-size: 65px;}
    img.img-fluid.remini-new-home {
        position: absolute;
        top: 130px;
        left: 190px;
        z-index: 9;
        width: 50%;
    }
    img.img-fluid.remini-new-home-two {
        position: absolute;
        top: 60px;
        right: 300px;
        z-index: 9;
        width: 50%;
    }
    img.img-fluid.remini-new-home-three {
        position: absolute;
        left: 230px;
        top: 150px;
        z-index: 9;
        width: 50%;
    }
    img.img-fluid.remini-new-home-four {
        position: absolute;
        top: 80px;
        left: 310px;
        z-index: 9;
        width: 38%;
    }
    img.img-fluid.remini-new-home-six {
        position: absolute;
        top: 80px;
        right: 340px;
        z-index: 9;
        width: 30%;
    }
    img.img-fluid.remini-new-home-seven {
        position: absolute;
        right: 210px;
        top: -30px;
        z-index: 9;
        width: 70%;
    }
    img.img-fluid.remini-new-home-eight {
        position: absolute;
        right: 150px;
        top: 60px;
        z-index: 9;
        width: 80%;
    }

}
@media (min-width:1200px) and (max-width:1399px) {
    .banner-text {left: 0px;}
    .top-banner h1 {font-size: 103px;}
    .banner-text h3 {font-size: 32px; margin: 90px 0 0 275px;}
    section.top-banner::before {max-width: 350px; max-height: 350px; right: 0px; bottom: -30px;}
    /* section.top-banner::after {max-width: 550px; max-height: 550px; right: -60px;} */
    .glitter-img::after {left: -50px; bottom: -220px;}
}
@media (min-width:1500px) {
    .objects-l {width: 100%; max-width: 700px;}
    section.top-banner .remini-text-banner {position: absolute; top: 270px; left: 60px;}
    .banner-text {position: absolute; top: 270px; left: -20px;}
}
@media (min-width:1500px) {
    img.img-fluid.remini-new-home {
        left: 300px;
    }
    img.img-fluid.remini-new-home-two {
        right: 440px;
    }
    img.img-fluid.remini-new-home-three {
        left: 300px;
    }
    img.img-fluid.remini-new-home-four {
        top: 100px;
        left: 360px;
        width: 40%;
    }
    img.img-fluid.remini-new-home-six {
        right: 490px;
    }
    img.img-fluid.remini-new-home-seven {
        right: 250px;
        top: -100px;
        width: 80%;
    }
}
@media (min-width:1800px) {
    img.img-fluid.remini-new-home {
        top: 180px;
        left: 330px;
    }
    img.img-fluid.remini-new-home-two {
        right: 500px;
    }
    img.img-fluid.remini-new-home-three {
        left: 360px;
    }  
    img.img-fluid.remini-new-home-four {
        top: 130px;
        left: 430px;
        width: 40%;
    }
    img.img-fluid.remini-new-home-six {
        right: 570px;
    }
    img.img-fluid.remini-new-home-seven {
        right: 350px;
        top: -130px;
        width: 80%;
    }
}
@media (min-width:1350px) and (max-width:1499px) {
    h1.main-heading.font-small {font-size: 60px !important;}
}
/*#################### MEDIA-QUERY-END ####################*/

/*##################################### HOME-PAGE-CSS-END #####################################*/

/*##################################### FACULTY-PAGE-CSS-START #####################################*/
.fit-main {
   /* position: absolute;*/
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.fit-main-bg img, .fit-main img {
    width: 100%;
}
.banner-heading {
    position: absolute;
    top: 60px;
    right: 60px;
}
.banner-heading h2 {
    font-size: 140px;
    font-family: 'Metropolis_1920';
    color: #fff;
    text-shadow: 10px 10px 20px #D48A0D;
    filter: drop-shadow(0px 0px 6px #e5a500);
	text-align: end;
	line-height: 1;
	margin-bottom: 20px;
}
.banner-heading h3 {
    font-size: 55px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    margin-left: 310px;
    text-shadow: 3px 3px black;
}
.tv-image {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 99;
}
.tv-image img {
    width: 75%;
}
.frame-heading h2 {
    font-size: 100px;
    color: #ffff;
    font-family: 'Carelia Upright';
}
.small-line {
	margin-top: -12px;
}
.small-line img {
    margin: 0 100px;
}
.frame-image {
    margin: 0px 7px;
}
.frame-count h4 {
    font-size: 30px;
    color: #fff;
	font-family: 'Carelia Upright';
}
.frame-content p {
    font-size: 17px;
    line-height: 26px;
    color: #fff;
    text-align: center;
    margin-top: 10px;
	font-family: 'Carelia Upright';
}
.f-bg {
    background: url(images/patch.png);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
}
.image-top-line img.single-line {
    width: 92%;
    margin: auto;
    display: block;
}
img.self-loading {
    width: 100px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 100px;
    object-fit: contain;
    background: rgba(123,68,187,0.75);
    border-radius: 10px;
    transform: translate(0px, 200px);
    padding: 0 35px;
}
html body .close {
    font-size: 60px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9999;
    transition: .4s;
}
html body .close:hover {
    color: #D48A0D;
    text-decoration: none;
    filter: drop-shadow(0px 0px 6px #e5a500);
}
.frame-icons {
    margin-bottom: 5px;
}
.frame-icons button:focus {
    box-shadow: none !important;
}
.modal-content.bg-remove {
    background-color: transparent !important;
	border: 0 !important;
}
img.img-fluid.t-icon {
    width: 25px;
    margin-right: 4px;
}
.openmodal-play {
	cursor: pointer;
}
.frame-main::before {
    content: '';
    background-image: url(images/small-line.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    max-height: 70px;
    width: 100%;
    max-width: 70px;
    position: absolute;
    bottom: 0;
    left: -100px;
}
.frame-img img.img-fluid.openmodal-play.sample-img-frame, .img-overlay.faculty-img-overlay {
    height: 170px;
    width: 170px;
    margin: auto;
    display: block;
}
.frame-img {cursor: pointer;}
.img-overlay {
    background-color: #e5a50036;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .4s;
}
.frame-img:hover .img-overlay {
    opacity: 1;
}
section.fitness-section.facu.glliters::after {
    content: '';
    position: absolute;
    width: 100%;
    background: url(images/glitters.png);
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0px;
    bottom: -200px;
    z-index: 0;
}

@media (min-width:320px) and (max-width:767px) {
	.banner-heading h2 {font-size: 60px; margin-bottom: 10px !important;}
    .video-tv img {width: 50%;}
	.banner-heading {position: absolute; top: 20px; right: 20px;}
	.banner-heading h3 {font-size: 20px; margin-left: 150px;}
	.tv-image {position: absolute; bottom: 90px;}
	.tv-image img {width: 65%;}
	.frame-heading h2 {font-size: 55px; line-height: 1;}
	.image-top-line {display: none;}
	.frame-count h4 {text-align: center;}
	.frame-image img.openmodal-play {width: 100%;}
	.frame-main::before {max-height: 50px; max-width: 50px; position: absolute; bottom: 0; left: -25px;}
	.frame-image {margin: 0px 20px 40px 20px;}
    section.fitness-section.facu.glliters::after {left: 0px; bottom: -250px;}
    .frame-img img.img-fluid.openmodal-play.sample-img-frame, .img-overlay.faculty-img-overlay {height: 100%; width: 100%;}
}
@media (min-width:768px) and (max-width:991px) {
	.stars-image img {width: 80%; zoom: 0.75;}
	.tv-image img {width: 65%;}
	.banner-heading h2 {font-size: 70px;}
	.banner-heading h3 {font-size: 35px;}
	.frame-heading h2 {font-size: 65px;}
	.frame-count h4 {font-size: 22px;}
	img.img-fluid.t-icon {width: 20px; margin-right: 2px;}
	.frame-image {margin: 0px 5px;}
	.small-line img {margin: 0 60px; max-width: 13px; width: 100%;}
	.frame-content p {font-size: 10px; line-height: revert-layer;}
	.small-line {margin-top: -8px;}
	.frame-main::before {max-height: 50px; max-width: 50px;	position: absolute;	bottom: 40px; left: -40px;}
    .container.start-before::before {left: 50px; top: 10px;}
    section.fitness-section.facu.glliters::after {left: 0px; bottom: -140px;}
    .frame-img img.img-fluid.openmodal-play.sample-img-frame, .img-overlay.faculty-img-overlay {height: 120px; width: 120px;}
}
@media (min-width:992px) and (max-width:1199px) {
    .stars-image img {width: 80%; zoom: 0.75;}
	.banner-heading h2 {font-size: 90px;}
	.banner-heading h3 {font-size: 48px;}
	.small-line img {margin: 0 85px;}
	.frame-main::before {left: -50px;}
    .frame-img img.img-fluid.openmodal-play.sample-img-frame, .img-overlay.faculty-img-overlay {height: 140px; width: 140px;}
}
/*##################################### FACULTY-PAGE-CSS-END #####################################*/

/*##################################### SAMPLE-VIDEO-PAGE-CSS-START #####################################*/
.faculty-lady {
    position: absolute;
    top: 0;
    left: 140px;
    z-index: 9;
}
.faculty-lady img {
    width: 80%;
}
.banner-heading.faculty-head {
    position: absolute;
    top: 70px;
}
.suitcase-image {
    position: absolute;
    bottom: 70px;
    right: 0px;
    z-index: 2;
}
.suitcase-image img {
    width: 85%;
}
.frame-heading.experience-head h2 {
    text-shadow: 10px 10px 20px #D48A0D;
    filter: drop-shadow(0px 0px 6px #e5a500);
    font-family: 'MoonTime';
}
.video-heading {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    text-align: center;
}
.video-heading h2 {
    font-size: 150px;
    font-family: 'MoonTime';
    color: #fff;
    text-shadow: 10px 10px 20px #D48A0D;
    filter: drop-shadow(0px 0px 6px #e5a500);
    line-height: 1;
}
.video-tv {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    text-align: center;
}
.video-tv img {
    width: 40%;
}
.small-line.video-line img {
    margin: 0 45px;
}
.frame-count.color h4, .frame-content.color p {
    color: #605048;
}
.frame-main.no-before::before {
    display: none;
}
.container.start-before::before {
    content: '';
    position: absolute;
    width: 100%;
    background: url(images/star.png);
    height: 100%;
    background-size: contain;
    left: 50px;
    background-repeat: no-repeat;
    top: -90px;
    z-index: -1;
}
section.frame-section.experience-b-a::before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 170px;
    background: url(images/flower-2.png);
    height: 100%;
    max-height: 170px;
    background-size: contain;
    left: 0px;
    background-repeat: no-repeat;
    bottom: -90px;
    z-index: 0;
    opacity: 50%;
}
section.frame-section.experience-b-a::after {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 180px;
    background: url(images/flower-1.png);
    height: 100%;
    max-height: 180px;
    background-size: contain;
    right: 30px;
    background-repeat: no-repeat;
    top: -20px;
    z-index: 0;
}

section.frame-section.experience-b-a {
    padding-top: 50px !important;
}

@media (min-width:320px) and (max-width:767px) {
	html body .order-1{order:1 !important;}
html body .order-2{order:2 !important;}
.banner-heading.faculty-head {
    top: 40px;
    width: 100%;
    left: 0;
}
.faculty-lady {
    top: 185px;
    left: 0;
    right: 0;
}
    .faculty-lady img {
        width: 60%;
        margin: 0 auto;
        display: block;
        height: 100%;
        max-height: 300px;
    }
    section.fitness-section.facu {
    min-height: 430px;
}
    .suitcase-image {bottom: 10px; right: 0px; width: 27%;}
    .suitcase-image img {width: 85%;}
    .video-heading {top: 20px;}
    .video-heading h2 {font-size: 75px;}

    .video-tv {bottom: 10px;}
    section.frame-section.experience-b-a::after {max-width: 80px; max-height: 80px; right: 10px; top: 30px;}
    section.frame-section.experience-b-a::before {max-width: 80px; max-height: 80px; left: 10px; bottom: -20px;}
    section.frame-section.experience-b-a.float-sample {
        padding-top: 50px !important;
        display: block;
        margin: auto;
        float: left;
        width: 100%;
    }
}
@media (min-width:478px) and (max-width:767px) {
    .video-heading h2 {font-size: 60px;}
    .video-tv {bottom: 30px;}
    .frame-heading.experience-head h2 {font-size: 60px;}
}   
@media (min-width:768px) and (max-width:991px) {
    .faculty-lady img {width: 40%;}
    .faculty-lady {top: 20px; left: 60px;}
    .suitcase-image {bottom: 20px; right: -180px;}
    .suitcase-image img {width: 45%;}
    .video-heading {top: 50px;}
    .video-heading h2 {font-size: 100px;}
    .video-tv {bottom: 60px;}
    section.frame-section.experience-b-a::after {max-width: 100px; max-height: 100px;}
    section.frame-section.experience-b-a::before {max-width: 100px; max-height: 100px;}

}
@media (min-width:992px) and (max-width:1199px) {
    .faculty-lady {top: 40px;}
    .faculty-lady img {width: 50%;}
    .suitcase-image {bottom: 30px; right: -130px;}
    .suitcase-image img {width: 55%;}
    .video-heading {top: 50px;}
    .video-heading h2 {font-size: 100px;}
    section.frame-section.experience-b-a::after {max-width: 150px; max-height: 150px; right: 0px; top: -20px;}
    .container.start-before::before {top: 90px;}
    section.frame-section.experience-b-a::before {max-width: 150px; max-height: 150px; left: 0px; bottom: 0px;}
    .frame-heading h2 {font-size: 75px;}
    .col-sm-10.offset-md-1.offset-sm-1 {
        margin-left:0px !important;
    }

    .banner-text.remini-text-banner:before {   top: -142px !important; }
}
@media (min-width:1200px) and (max-width:1349px) {
    .faculty-lady {top: -10px; left: 60px;}
    .faculty-lady img {width: 70%;}
    .suitcase-image {bottom: 60px; right: -40px;}
    .suitcase-image img {width: 75%;}
    .video-heading {top: 100px;}
    .video-heading {top: 70px;}
    .frame-heading h2 {font-size: 80px;}
}
/* @media (max-width: 1699px) {
    .video-heading {top: 50px;}
    .video-heading h2 {font-size: 90px;}
    .video-tv {bottom: 70px;}
} */
/*##################################### SAMPLE-VIDEO-PAGE-CSS-END #####################################*/

section.fitness-section.facu.glliters {
    float: left;
    position: relative;
}section.video-section.pt-md-5.mt-5 {
    position: relative;
    float: left;
    width: 100%;
}

.innerloader .loading-text {top: 37% !important;}
.innerloader img.img-fluid { max-width: 100%;}
.innerloader .loading-text { color: #000; font-family: 'Poppins', sans-serif; font-size: 20px; letter-spacing: 10px;text-shadow: none;}

.innerloader:after, .innerloader:before { background-color: #f1f1f1 !important;}

.hvr:before {
    content: '';
    width: 60%;
    height: 77%;
    background: #f2c57b;
    position: absolute;
    filter: blur(31px);
    z-index: -1;
    opacity: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 470px;
}
.hvr:hover:before{
	opacity: 0.25;
}

.response{
	display:none;
}



@media(max-width:1299px){
	.kids-bg a.orange-tooltip.action.downloadVideo { margin-right: 0 !important;font-size: 17px; line-height: 18px;}
	section.new-kk.info2.new-top.kk-btm-100.flt.no-btm {    padding-top: 120px;}
    .kids-bg .vd-title { padding-right: 0;}
	p.text-white.mt-5.mb-5.p-font-size-16 {    margin-bottom: 0 !important;}
    section.new-kk.info2.new-top.left-img-side.kk-btm-100.response-bg.p33 {   min-height: auto;}
	section.new-kk.info2.new-top.left-img-side.kk-btm-100.response-bg.p22 {		margin-bottom: 0 !important;		min-height: auto;	}
	.response-bg{ background:transparent !important;	}
	.response {display: block;	width: 400px;object-fit: cover;min-width: 400px;}
	.teen .kk-btm-100 {	padding-bottom: 0px !important;	margin-bottom: 120px !important;	}
	.main-head { font-size: 48px;}
	section.new-kk.info2.new-top.kk-btm-100.flt.s-bg ,
	section.new-kk.info2.new-top.left-img-side.kk-btm-100.response-bg { padding-top: 120px;}
	.teen .w-90 { height: 30px; margin-top: 10px;}
	.user-r { max-width: 170px !important; top: -10px;}
	.teen ul.nav.navbar-nav.navbar-right li {display: block !important;}
	section.new-kk.info2.new-top.left-img-side.kk-btm-100.response-bg.p33 { margin-bottom: 120px !important;}
	.row.align-items-start.mt-md-5 { margin-top: 0 !important;}
	.kids-bg .txt-ornage { font-size: 20px;}
	.kids-bg .vd-title { font-size: 29px;}
}


@media(max-width:995px){
	.kids-bg ul.nav.navbar-nav.navbar-right li.last {display: block;}
	.top--10 {top: -20px !important;}
}
@media(max-width:918px){
	
	.kids-bg .row.w-100 { width: 100% !important; margin: 0 auto;}
	.kids-bg .outer { flex-direction: column !important; row-gap: 20px; width: 100%;}
	.kids-bg .video-box { width: 100%; margin: 0 auto; max-width:380px;}
	.kids-bg .vd-title { font-size: 29px;}
	.kids-bg a.orange-tooltip.action.downloadVideo { margin-right: 0 !important; font-size: 16px; line-height: 18px; width: 230px; float: left !important;display: flex;align-items: center;}
}
@media(max-width:767px){
	.annual .outer { flex-direction: column; row-gap: 20px;}
    .banner-text.remini-text-banner:before{
        right: -5px !important;
    }
}

@media (min-width:320px) and (max-width:991px){
	
	.annual h3.vd-title { font-size: 33px;}
	.annual a.orange-tooltip.action.downloadVideo { font-size: 24px; line-height: 29px;}
	section.new-kk.info2.new-top.flt.mt-0.pt-0.kk-btm-100 { padding-bottom: 0 !important;}
	.response{display:block;width: 360px; }
	section.teen-slider { height: 500px;}
	section.new-kk.info2.new-top.kk-btm-100.flt.no-btm img.border-bottom-control.user-r { top: 130px;width:190px}
	.teen .col-lg-7.col-sm-12.push-30-k.screen-top { text-align: center; align-items: center; display: flex; justify-content: center; margin-top: 0px; margin-bottom: 30px; }
	.teen .offset-lg-2.col-lg-4.col-sm-12.push-30-k.screen-top { order: 1; display: flex; align-items: center; justify-content: center;margin-top: 0px; margin-bottom: 60px;	}
	.teen .col-lg-6.col-sm-12.wow.fadeInUp.text-white.kk-who.animated { order: 2;}
	.teen ul.nav.navbar-nav.navbar-right li {display: block !important;}
	.user-r { max-width: 120px !important; top: -20px !important;}
	section.teen-slider { height: 500px;}
	
}



@media (min-width:320px) and (max-width:575px){
	
	
	.annual .outer { align-items: center;}
	.annual .video-text-back.p-0 { float: left; width: 100%;}
	.annual .frame-heading.pt-5.text-center.mb-5 { margin-bottom: 90px !important;}
	.annual .frame-heading h2 { font-size: 46px;}
	.annual ul.act { align-items: center; justify-content: center;}
	
	.annual h3.vd-title { font-size: 27px; max-width: 100%; width: 100vw;margin-bottom: 30px;text-align: center;}
	.annual a.orange-tooltip.action.downloadVideo {font-size: 20px; line-height: 29px;width: 320px;}
	.kids-bg a.orange-tooltip.action.downloadVideo { margin-right: 0 !important; font-size: 16px; line-height: 18px; width: 230px; float: left !important;}
	.kids-bg .w-100 { width: 100% !important; margin: 0 auto !important;}
	.kids-bg .col-lg-6.col-md-6.col-sm-6.cols-grid-4.mt-40.default.vid_744576311.not-ceti { padding: 0;}
	.kids-bg .outer { flex-direction: column !important; row-gap: 20px; width: 100%;}
	.kids-bg .video-box { width: 100%; margin: 0 auto; max-width:380px;}
	.kids-bg .vd-title { font-size: 29px;}
	
	section.new-kk.info2.new-top.left-img-side.kk-btm-100.response-bg.p33 { padding-top: 80px !important;}
	section.new-kk.info2.new-top.kk-btm-100.flt.s-bg, section.new-kk.info2.new-top.left-img-side.kk-btm-100.response-bg { padding-top: 0px !important;	}
	section.new-kk.info2.new-top.kk-btm-100.flt.no-btm .col-md-3.col-sm-3 { position: unset; }
	section.new-kk.info2.new-top.kk-btm-100.flt.no-btm .row{ position:relative; }
	.teen p.text-white.mt-5.mb-5.p-font-size-16 {margin-top: 0 !important;}
	.user-r { max-width: 120px !important; top: -20px !important;}
	ul.nav.navbar-nav.navbar-right .dropdown {display: none;}
	.top--10 {top: -20px !important;}
	.teen .w-90 { height: 10px; margin-top: 10px;	}
	.teen .p-font-size-16 { font-size: 15px;}
	.teen .col-lg-7.col-sm-12.push-30-k.screen-top { margin-bottom: 50px !important; margin-top: 120px;}
	.teen .offset-lg-2.col-lg-4.col-sm-12.push-30-k.screen-top { margin-bottom: 50px !important; margin-top: 0px;}
	.teen .container.container-lg { padding: 0 25px;}
	.teen section.new-kk.info2.new-top.left-img-side.kk-btm-100.response-bg.p33 .col-lg-7.col-sm-12.push-30-k.screen-top {margin-top: 40px;	}
	section.new-kk.info2.new-top.kk-btm-100.flt.s-bg { padding-top: 120px !important;}
	
	
	
}


	.inner_header_css .nav.navbar-nav.navbar-right {
		background: none !important;
		margin-right: 14px;
		margin-top: 0px;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		position: relative;
		align-items: center;
	}
	.inner_header_css .navbar-nav>li {
		float: left;
		margin-left: 27px;
		margin-top: 3px;
		padding: 14px 0;
	}
	.inner_header_css button.dropdown-toggle.trans-bg {
		background: transparent;
		border: none !important;
		padding: 10px 20px;
		border-radius: 10px;
	}
	.inner_header_css ul.nav.navbar-nav.navbar-right .dropdown-item {
		text-align: center !important;
		padding: 11px 0px !important;
		color: #ffffff !important;
	}.inner_header_css .txt-sml p {
		color: #fff;
		font-size: 12px;
		font-weight: 400;margin-bottom:0;
	}
	.inner_header_css .jwel {
		right: 0px;
		width: 46.85px !important;
		z-index: 11;
	}
	.inner_header_css .dropdown-menu.show {
		background: #91634b !important;
		color: #fff !important;
	}
	.inner_header_css .show > .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem rgb(110 73 53);}
	.inner_header_css .show > .btn-secondary.dropdown-toggle { color: #fff; background-color: #653d28; border-color: #4e555b;}
	
	.inner_header_css .dropdown-item:hover, 
	.inner_header_css .dropdown-item:focus { color: #fff; background-color: #653d28;}
	
	 @font-face {
		font-family: 'Conv_American_Captain';
		src: url('fonts/AmericanCaptain.eot');
		src: local('Ã¢ËœÂº'), url('fonts/AmericanCaptain.woff') format('woff'), url('fonts/AmericanCaptain.ttf') format('truetype'), url('fonts/AmericanCaptain.svg') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	.inner_left_menu ul.slide-menu-link li a:hover {
		color: #ffff !important;
	}
	.inner_left_menu ul.slide-menu-link li a {
		color: rgba(255,255,255,0.0) !important;
		filter: none !important;
		text-shadow: none !important;
		font-size: 50px;
		line-height: 80px !important;
	}
	.inner_left_menu .slide-menu-link li a {
		color: #ffffff;
		text-transform: uppercase;
		display: inline-block;
		font-family: 'Conv_American_Captain' !important;
		font-size: 55px;
		line-height: 11vh !important;
		font-weight: 500;
		letter-spacing: 3.4px;
		white-space: nowrap;
		padding: 0;
		/* letter-spacing: 2px; */
		font-size: 60px;
		-webkit-text-stroke-width: 1px;
		-webkit-text-stroke-color: white;
		color: rgba(255,255,255,0.0);
	}
	.inner_left_menu div#mySidenav2:before {
		width: 0;
		height: 0;
		border-top: 50px solid transparent;
		border-right: 100px solid rgba(255,255,255,0.3);
		border-bottom: 50px solid transparent;
		content: '';
		position: absolute;
		right: 5%;
		bottom: 30px;
	}
	.inner_left_menu .sidenav-new-menu .menu-conatainer {
    padding: 70px 20px 10px 100px !important;
    position: relative;
    height: 90%;
}.inner_left_menu .menu-conatainer:before {
    content: "";
    position: absolute;
    top: 260px;
    width: 210px;
    height: 210px;
    background: transparent;
    right: -90px;
    border: 10px solid rgba(255,255,255,0.25);
    transform: rotate(45deg);
    box-shadow: 12px 0 54px 6px rgb(255 255 255 / 25%);
}.inner_left_menu .new-menu-logo img {
    width: 240px !important;
}.inner_left_menu .menu-top-bottom {
    justify-content: center !important;
}
.inner_left_menu div#mySidenav2:after {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    content: '';
    position: absolute;
    right: 25%;
    top: 30%;
    display: block !important;
}
.inner_left_menu .menu-conatainer:after {
    content: "";
    position: absolute;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: transparent;
    right: 430px;
    border: 10px solid rgba(255,255,255,0.25);
    transform: rotate(45deg);
    box-shadow: 12px 0 54px 6px rgb(255 255 255 / 25%);
}
html body .inner_left_menu .sidenav-new-menu {
    overflow-y: hidden;
    overflow-x: hidden;
}
.inner_left_menu .stars-image {
    display: none;
}


.login-after-cir::after {
    top: 20% !important;
}
.login-right-spc li:last-child {
    margin-bottom: 20px !important;
}
@media (min-width:1250px) {
    ul.slide-menu-link.login-flex-menu {
        display: flex;
    }
    .login-right-spc {
        margin-right: 150px;
    }
}
.banner-text.remini-text-banner:before{
    content: '';
    position: absolute;
    width: 100%;
    max-width: 530px;
    background: url(images/logoback.png);
    height: 530px;
    max-height: 600px;
    background-size: contain;
    right: -15px;
    background-repeat: no-repeat;
    bottom: 0;
    z-index: -1;
    top: -115px;
}
.sec-head{
    font-family: 'Metropolis_1920';
    line-height: 1;
    font-size: 4.5vw;
    color: #fff;
    text-shadow: -6px 6px 111px #cf7b10;
    filter: drop-shadow(0px 0px 6px #cf7b10);
}
.sec-head.small-h{
    font-size: 62px !important;
}
.shadow-dark{
    text-shadow: -6px 6px 111px #cf7b10;
    filter: drop-shadow(0px 0px 6px #cf7b10);
}
.before-line:before{
    content: '';
    position: absolute;
    width: 100%;
    background: url(images/line1.png);
    height: 31%;
    background-size: contain;
    left: 0;
    background-repeat: no-repeat;
    top: -10px;
    z-index: -1;

}
.before-line:after{
    content: '';
    position: absolute;
    width: 100%;
    background: url(images/line2.png);
    height: 23%;
    background-size: contain;
    left: 0;
    background-repeat: no-repeat;
    top: auto;
    z-index: -1;
    bottom: 0px;

}
.f-w-70{
width: 70%;
}
.video-frame img{
position: relative;
}
.frame-abs{
    position: absolute;
    width: 19%;
    left: 38%;
    top: 27%;
}
.frame-abs img{
    width: 100% !important; 
}
.frame-abs img:hover{
   filter: brightness(0.9);
}




#sample-video .close.close-but-edit {
    color: #fff;
    border-radius: 50%;
    border: 1px solid;
    top: 300% !important;
    z-index: 9;
    right: 3px;
    font-size: 31px;
    width: 30px;
    height: 30px;
    text-align: center;
    font-weight: 200;
    line-height: 0;
}
.transparent-modal .modal-header .close {
    top: 180% !important;
    background: #000 !important;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0px !important;
}.transparent-modal .modal-content {
    background: transparent !important;
    border: 0;
}div#sample-video {
    z-index: 99999999;
}
.transparent-modal .modal-header {
    position: relative;
    border: 0;
}
#sample-video .close.close-but-edit span{
    display: block;
    height: 6px;
}