/********** Template CSS **********/
:root {
    --primary: #eca833 ;
    --light: #F1F8FF;
    --dark: #0F172B;
}

/*.ff-secondary {
    font-family: 'Pacifico', cursive;
}*/

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

body {
    margin: 0;
   /* font-family: 'Nunito Sans', sans-serif!important;*/
   font-family: "Poppins", sans-serif!important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000!important;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 17px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 700;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-dark .navbar-brand img {
    max-height: 70px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
   /* max-height: 65px;*/
      max-height: 70px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: #f6f6e9 !important;
        height: 10%
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #eca833 !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/Registration Banner-01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: #F04241;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: #F04241;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* new css start */
 #slider-text{
  padding-top: 40px;
  display: block;
}
#slider-text .col-md-6{
  overflow: hidden;
}

#slider-text h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 3px;
  margin: 30px auto;
  padding-left: 40px;
}
#slider-text h2::after{
  border-top: 2px solid #c7c7c7;
  content: "";
  position: absolute;
  bottom: 35px;
  width: 100%;
  }

#itemslider h4{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin: 10px auto 3px;
}
#itemslider h5{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: bold;
  font-size: 12px;
  margin: 3px auto 2px;
}
#itemslider h6{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;;
  font-size: 10px;
  margin: 2px auto 5px;
}
.badge {
  background: #b20c0c;
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 31px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  border: 2px solid #FFF;
  box-shadow: 0 0 0 1px #b20c0c;
  top: 5px;
  right: 25%;
}
#slider-control img{
  padding-top: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 992px){
#slider-control img {
  padding-top: 70px;
  margin: 0 auto;
}
}

.carousel-showmanymoveone .carousel-control {
  width: 3%;
  background-image: none;
}
.carousel-showmanymoveone .carousel-control.left {
  margin-left: 12px;
    margin-top: 105px;
}
}
.carousel-showmanymoveone .carousel-control.right {
  margin-left: 12px;
    margin-top: 105px;
}
.carousel-showmanymoveone .cloneditem-1,
.carousel-showmanymoveone .cloneditem-2,
.carousel-showmanymoveone .cloneditem-3,
.carousel-showmanymoveone .cloneditem-4,
.carousel-showmanymoveone .cloneditem-5 {
  display: none;
}
@media all and (min-width: 768px) {
  .carousel-showmanymoveone .carousel-inner > .active.left,
  .carousel-showmanymoveone .carousel-inner > .prev {
    left: -50%;
  }
  .carousel-showmanymoveone .carousel-inner > .active.right,
  .carousel-showmanymoveone .carousel-inner > .next {
    left: 50%;
  }
  .carousel-showmanymoveone .carousel-inner > .left,
  .carousel-showmanymoveone .carousel-inner > .prev.right,
  .carousel-showmanymoveone .carousel-inner > .active {
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner .cloneditem-1 {
    display: block;
  }
}
@media all and (min-width: 768px) and (transform-3d), all and (min-width: 768px) and (-webkit-transform-3d) {
  .carousel-showmanymoveone .carousel-inner > .item.active.right,
  .carousel-showmanymoveone .carousel-inner > .item.next {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.active.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev.right,
  .carousel-showmanymoveone .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
@media all and (min-width: 992px) {
  .carousel-showmanymoveone .carousel-inner > .active.left,
  .carousel-showmanymoveone .carousel-inner > .prev {
    left: -16.666%;
  }
  .carousel-showmanymoveone .carousel-inner > .active.right,
  .carousel-showmanymoveone .carousel-inner > .next {
    left: 16.666%;
  }
  .carousel-showmanymoveone .carousel-inner > .left,
  .carousel-showmanymoveone .carousel-inner > .prev.right,
  .carousel-showmanymoveone .carousel-inner > .active {
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner .cloneditem-2,
  .carousel-showmanymoveone .carousel-inner .cloneditem-3,
  .carousel-showmanymoveone .carousel-inner .cloneditem-4,
  .carousel-showmanymoveone .carousel-inner .cloneditem-5,
  .carousel-showmanymoveone .carousel-inner .cloneditem-6  {
    display: block;
  }
}
@media all and (min-width: 992px) and (transform-3d), all and (min-width: 992px) and (-webkit-transform-3d) {
  .carousel-showmanymoveone .carousel-inner > .item.active.right,
  .carousel-showmanymoveone .carousel-inner > .item.next {
    -webkit-transform: translate3d(16.666%, 0, 0);
    transform: translate3d(16.666%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.active.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-16.666%, 0, 0);
    transform: translate3d(-16.666%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev.right,
  .carousel-showmanymoveone .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

    .elementor-shape .elementor-shape-fill {
    fill: #fff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.elementor-8 .elementor-element.elementor-element-b8cda1c > .elementor-shape-top svg {
    width: calc(100% + 1.3px);
    height: 85px;
}
.elementor .elementor-background-overlay, .elementor .elementor-background-slideshow {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.elementor-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 70%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-70%);
}
.elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}
.elementor-8 .elementor-element.elementor-element-b8cda1c:not
(.elementor-motion-effects-element-type-background), .elementor-8 
.elementor-element.elementor-element-b8cda1c > .elementor-motion-effects-container > 
.elementor-motion-effects-layer {
    background-color: var( --e-global-color-b2f2f9c );
}
.elementor-8 .elementor-element.elementor-element-17879c1 .elementor-heading-title {
    color: var( --e-global-color-secondary );
    font-family: var( --e-global-typography-81fbadd-font-family ), Sans-serif;
    font-size: var( --e-global-typography-81fbadd-font-size );
    font-weight: var( --e-global-typography-81fbadd-font-weight );
    line-height: var( --e-global-typography-81fbadd-line-height );
    letter-spacing: var( --e-global-typography-81fbadd-letter-spacing );
    word-spacing: var( --e-global-typography-81fbadd-word-spacing );
}




.bg-transparent {
   background-color: #fde0a1!important;
}
.p-4 {
    padding: 50px 24px 50px 38px!important;
}

.brands-con{
  background-color: #fcf9ef!important;
  padding: 30px 30px 30px 30px!important;
}
.brand-image{
padding: 70px 8px 30px 11px!important;
margin: 20px;
}
.brand-col{
  margin-left: 20px;
  border-radius: 10px;
}

.hover-2 {
  background: linear-gradient(#fcf9ef 0 0) no-repeat calc(200% - var(--p, 0%))
    100% / 200% var(--p, 0.08em);
  transition: 0.3s var(--t, 0s),
    background-position 0.3s calc(0.3s - var(--t, 0s));
}
.hover-2:hover {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
}

 .card-block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
      .white-section {
    background:#eca83396;
}

.mb-50 {
    margin-bottom: 50px !important;
}
.parallax-card-up-icon {
    height: 105px;
    width: 105px;
    background: #fff;
    margin: -55px auto 10px;
    border-radius: 50%;
    position: relative;
}
.card-title {
    margin-bottom: 0.75rem;
    color: #000;
}
.services_restro{
  /*width: 25%!important;*/
    /*margin-top: 18px!important;*/
    padding: 12px;
    border-radius: 10px;
     background-color: #fff;
}
.form_vendor{

    background-color: #f6f6e9;
    padding: 25px;
    border-radius: 10px;
    border: double;
}

/* RESET */




/* Style for slider-box DONT TOUCH IT*/
.slider-box{
  width:100%;
  background-color:#eee;
  position:relative;
  min-height:300px;
  z-index:0;
  overflow:hidden;
  height: 80vh;
}

.slider-content, .slider-content .slider-item{
  position:absolute;
  top:0;
  width:100%;
  height:100%;
}

.slider-content .slider-item{
/*  Offset (effet slide in/out) to off set left:0; */
  left:5%;
}

.slider-content .slider-item{
  visibility:hidden;
  opacity:0;
  transition:all 0.5s ease-in-out;
}

.slider-content .slider-item.active{
  visibility:visible;
  opacity:1;
  left:0;
}

.slider-pagin{
  position:absolute;
  bottom:0;
  left:50%;
  transform:translate(-50%, 0);
}

.slider-pagin ul{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 0;
}

.slider-pagin ul li{
  padding-bottom:0;
  transition:all 0.2s ease-in-out;
}

.slider-pagin ul li+li{
  margin-left:2px;
}

.slider-pagin ul li a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:10px;
  height:10px;
  border-radius:50%;
  background-color:#000;
  border:2px solid #FFF;
  text-decoration:none;
  color:#FFF;
  transition:all 0.2s ease-in-out;
}

.slider-pagin ul li.active a, .slider-pagin ul li a:hover, .slider-pagin ul li a:focus{
  background-color:#FFF;
  border:2px solid #000;
}

.slider-pagin ul li.active{
  padding-bottom:5px;
}

.slider-fillbar{
  position:absolute;
  bottom:0;
  left:0;
  width:0;/* must be 0, only othe values to preview */
  height:3px;
  background-color:rgba(0,0,0,0.25);
}

.slider-background{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-repeat:none;
  background-position:center;
  z-index:-1;
}

/* Your slider box style */
.slider-content .slider-item{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:2em;
  color:#FFF;
  font-size:3rem;
}
.sub-brand {
    background-color: rgb(236 168 51 / 81%);;
    padding-top: 15px;
    padding-bottom: 15px;
    background-image: url(../img/ban1.png);
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
}

.sub_brand_one{
  background: white;
    padding: 40px;
    border-radius: 10px;
    margin-left: 85px;
    height: 100px;

}
.sub_brand_two{
  background: white;
    padding: 40px;
    border-radius: 10px;
    margin-left: 15px;
    height: 100px;

}
.sub_brand_three{
  background: white;
    padding: 40px;
    border-radius: 10px;
    margin-left: 15px;
    height: 100px;

}
.sub_brand_four{
  background: white;
    padding: 40px;
    border-radius: 10px;
    margin-left: 15px;
    height: 100px;

}
.sub_brand_five{
  background: white;
    padding: 40px;
    border-radius: 10px;
    margin-left: 15px;
    height: 100px;

}




.container-brands{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-around;
}

.container-brands .card{
    position: relative;
    cursor: pointer;
}

.container-brands .card .face{
    width: 300px;
    height: 340px;
    transition: 0.5s;
}


@media only screen and (max-width: 768px) {
    #first {
        order: 1;
    }
    #second {
        order: 2;
    }
    #third {
        order: 3;
    }
    #fourth {
        order: 4;
    }
    #five {
        order: 5;
    }
}


.container-brands .card .face.face1{
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(200px);
    height: 400px;
    border-radius: 30px;

}

.container-brands .card:hover .face.face1{
    background: #fff;
    transform: translateY(0);
}

.container .card .face.face1 .content{
    opacity: 0.2;
    transition: 0.5s;
}

.container-brands .card:hover .face.face1 .content{
    opacity: 1;
}

.container-brands .card .face.face1 .content img{
  max-width: 90%;
    margin-left: 10px;
}

.container-brands .card .face.face1 .content h3{
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}

.container-brands .card .face.face2{
    position: relative;
    background:rgb(62 35 20);
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    padding: 20px;
    box-sizing: border-box;
 /*   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);*/
    transform: translateY(-200px);
    color: #000;
    border-radius: 30px;
    color: #fff;
}

.container-brands .card:hover .face.face2{
    transform: translateY(0);
}

.container-brands .card .face.face2 .content p{
    margin: 0;
    padding: 0;
}

.container-brands .card .face.face2 .content a{
    margin: 15px 0 0;
    display:  inline-block;
    text-decoration: none;
    font-weight: 900;
    color: #333;
    padding: 5px;
    border: 1px solid #333;
}

.container-brands .card .face.face2 .content a:hover{
    background: #333;
    color: #fff;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
   background-color: #fff0!important;
    background-clip: border-box;
    border: 0px solid rgba(0,0,0,0.125)!important;
    border-radius: 2px;
    border-radius: 30px;
}
.border-right {
    border-right: 1px solid #dee2e6!important;
}

.destination-item img {
  transition: .5s;
}

.destination-item:hover img {
  transform: scale(1.3);
}

.destination-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 /* background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);*/
  transition: .5s;
  z-index: 1;
}

.destination-item:hover .destination-overlay {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-width: 30px;
  border-radius: 30px;
}

.service-item {
  transition: .5s;
}

.service-item:hover {
  box-shadow: 0 0 30px #CCCCCC;
}

.service-item i {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e4484e;
  background: #FFFFFF;
  color: #e4484e;
  transition: .5s;
  border-radius: 30px;
}

.service-item:hover i {
  background: #e4484e;
  color: #FFFFFF;
}

.package-item {
  transition: .5s;
}

.package-item:hover {
  box-shadow: 0 0 30px #CCCCCC;
}

.bg-registration {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg), no-repeat center center;
  background-size: cover;
}

.team-item {
  transition: .5s;
}

#gallery {
  padding-top: 40px;
  @media screen and (min-width: 991px) {
    padding: 60px 30px 0 30px;
  }
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  img {
    width: 100%;
  }
}
.img-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  i {
    color: #fff;
    font-size: 3em;
  }
}

#overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  // Removes blue highlight
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none; 
  user-select: none; 
  img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
    @media screen and (min-width:768px) {
        width: 60%;
    }
    @media screen and (min-width:1200px) {
        width: 50%;
    }
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}


.p-9{
  padding: 30px;
}
/*.banner{
    position: relative;

    min-height: 500px;
 
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
      background: url(../img/ban.jpg);
}*/
.banner {
    position: relative;
    min-height: 451px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    
    background-image: url(../img/ban2.jpg); 
    background: cover;
    margin-top: -42px;
    
}
.banner-video {
    position: relative;
  overflow: hidden;
 
  min-height: 401px;
   background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    height: 402px;
    margin-top: -42px;
}
.card-text {
    
    color: #000!important;
}
.banner-registraion{
   position: relative;
    height: 100%;
  /*  padding-top: 80px;
    padding-bottom: 65px;*/
    min-height: 150px;
  
  /*  background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/ban.jpg);*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
      background: url(../img/RegistrationBanner.jpg);
      width: 100%;
}


h5, .h5 {
    font-size: 1.10rem!important;
}

.mome-bt{
  margin-bottom: -95px;
}

.mome-bt-row{
  margin-bottom: -128px;
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  
}
.img-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  i {
    color: #fff;
    font-size: 3em;
  }
}

#overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none; 
  user-select: none; }
  img{
    margin: 0;
    width: 40%;
    height: auto;
    object-fit: contain;
    padding: 3%;
    @media screen and (min-width:768px) {
        width: 100%;
    }
    @media screen and (min-width:1200px) {
        width: 50%;
    }
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}
.img-gallery{
  width: 100%;
}
.text-primary {
    color: #0F172B !important;
}
.fw-normal {
    font-weight: 800 !important;
}

.border-primary {
    border-color: #F04241 !important;
}

/*.services .titlepage {
     text-align: left;
}

.services {
     background-color: #fff;
     padding: 90px 0 0px 0;
}

.services .services_box {
     text-align: center;
     background-color: #f6f6f6;
     padding: 80px 0;
     margin-bottom: 30px;
     border-radius: 10px;
     transition: ease-in all 0.5s;
}

.services .services_box i {
     background-color: #fff;
     height: 143px;
     width: 143px;
     border-radius: 70px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     margin: auto;
}

.services .services_box h3 {
     color: #02246a;
     font-size: 25px;
     line-height: 20px;
     font-weight: 500;
     margin-top: 40px !important;
     transition: ease-in all 0.5s;
     margin: auto;
}

.right_irro i {
     width: 50px !important;
     height: 30px !important;
     margin-top: 40px !important;
     border-radius: 0 !important;
     color: #fff;
     opacity: 0;
     transition: ease-in all 0.5s;
}

#serv_hover:hover.services_box {
     cursor: pointer;
     box-shadow: 0px 0px 30px rgba(57, 56, 56, 0.2);
     background-color: #fff;
     border-top: #f8c659 solid 6px;
     transition: ease-in all 0.5s;
}

#serv_hover:hover.services_box h3 {
     color: #f8c659;
     transition: ease-in all 0.5s;
}

#serv_hover:hover .right_irro i {
     opacity: 1;
     transition: ease-in all 0.5s;
}

.margin_bottom1 {
     margin-bottom: 60px;
}

.services .read_more {
     margin: 0 auto;
     display: block;
     margin-top: 50px;
     background-color: transparent;
     border: #48ca95 solid 2px;
     color: #48ca95 !important;
     max-width: 232px;
     padding: 15px 0;
}

.services .read_more:hover {
     background: #48ca95;
     color: #000 !important;
}*/

.form-mano{
  margin-top: 150px;
}
/* new css end */
@media screen and (max-width:733px) {
.container-brands{
   
    display: block;

}}
@media screen and (max-width:768px) {
/*.container-brands{
   
    display: block;

}*/
.py-5 {
   /* padding-top: 0rem !important;*/
    padding-bottom: 0rem;
   
}


.banner {
    position: relative;
    min-height: 260px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    background-image: url(../img/ban2.jpg);
    background: cover;
}
.mobile {display: none;}
.form-mano{
  margin-top: 0px;
}
.banner-registraion {
    position: relative;
    /* height: 100%; */
    min-height: 173px;
    /* background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/ban.jpg); */
    background-position: center center;
    background-repeat: no-repeat!important;
    background: url(../img/RegistrationBanner.jpg);
    width: 100%;
    background-size: 340%!important;
}
}


.brand-mob{
  background-color: #fff!important;
}
.brand-mob-co{
  margin-top: 12px;
}
.brand-mob-img{
  width:80%;
  margin-left: 22px;
}
.desktop {display: block;}
.mobile-mob {display: none;}
.off-mll{
  margin-bottom: 30px;
}
@media screen and (max-width: 591px) {

.desktop {display: none;}
.mobile-mob {display: block;}
/*.about-mob{
  margin-top: -80px!important;
}*/
.off-mll{
  margin-bottom: 30px;
  margin-top: 30px;
}

}
.video-wi{
  width: 100%
}


.gallery-title
{
    font-size: 36px;
    color: #42B32F;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}
.filter-button
{
    font-size: 18px;
    border: 1px solid  #eca833;
    border-radius: 5px;
    text-align: center;
    color: #0F172B;
    margin-bottom: 30px;

}
.filter-button:hover
{
    font-size: 18px;
    border: 1px solid #eca833;
    border-radius: 5px;
    text-align: center;
    color:#fff;
    background-color: #eca833;

}
.btn-default:active .filter-button:active
{
    background-color:#eca833;
    color: white;
}

.port-image
{
    width: 100%;
}

.gallery_product
{
    margin-bottom: 30px;
}

 .gl-mano{
        text-align: center;
    border: #000;
    background:#eca833;
  /*  width: 108%;*/
    padding: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
   
       }
        .gl-mano-1{
        text-align: center;
    border: #000;
    background:#eca833;
 /*   width: 108%;*/
    padding: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
  /*  margin-left: 12px;
  */
       }
        .gl-mano-2{
        text-align: center;
    border: #000;
    background:#eca833;
  /*  width: 108%;*/
    padding: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
  /*  margin-left: 20px;*/
  
       }
       .gl-mano:hover{
        
            border-bottom: 2px solid #eca833;
              border-left: 2px solid #eca833;
               border-right: 2px solid #eca833;
            background-color: #fff;
            color: #000;
        }
        .gl-mano-1:hover{
        
            border-bottom: 2px solid #eca833;
              border-left: 2px solid #eca833;
               border-right: 2px solid #eca833;
            background-color: #fff;
            color: #000;
        }
        .gl-mano-2:hover{
        
            border-bottom: 2px solid #eca833;
              border-left: 2px solid #eca833;
               border-right: 2px solid #eca833;
            background-color: #fff;
            color: #000;
        }

.modal-dialog {
    max-width: 650px !important;
    margin: 1.75rem auto;
}

@media screen and (max-width: 591px) {
  .modal-dialog {
    max-width: 350px !important;
    margin: 0px 8px 9px 10px;
}
img {
    margin: 0;
    width: 70%;
    height: auto;
    object-fit: contain;
    padding: 3%;
    @media screen and (min-width: 768px) {;
    width: 100%;
    }: ;
    @media screen and (min-width: 1200px) {;
    width: 50%;
    }: ;
}
}

.carousel-control-next-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
   
    width: 31%;
    border-radius: 5px;
  
}
.carousel-control-prev-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e);
 
   width: 31%;
    border-radius: 5px;
}
.carousel-control-next {
    right: -45px;
}
.carousel-control-prev {
    left: -45px;
}

.modal-content {
 background-color: #222222!important;
  
}
.close-snn{
  background: none;
    border: 1px solid #fff;
    color: #fff;
    margin-left: 95%;
    width: 7%;
    font-size: 35px;
    border: 2px;
    padding: -11px;
    padding-bottom: -21px;
    margin-top: -17px;
}
.ifamemano{
 
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 410px) and (min-width: 320px) {
  .g-5, .gx-5 {
    --bs-gutter-x: 0.25rem;
}
.about-mob {
    margin-top: -118px!important;
}
.carousel-control-prev {
    left: -30px;
}
.carousel-control-next {
    right: -30px;
}
.ifamemano{
 
  height: 100%;
  width: 100%;
}
.back-to-top { bottom: 145px;}

.testimonial-carousel .owl-dots {
   padding: 13px;
}
.row>* {
   
    padding-right: calc(var(--bs-gutter-x) / 05);
    padding-left: calc(var(--bs-gutter-x) / 05);
   }
   .form_vendor {padding: 10px;}
}

@media screen and (max-width: 490px) and (min-width: 411px)  {
.about-mob {
    margin-top: -110px!important;
}
.ifamemano{
 
  height: 100%;
  width: 100%;
}
.carousel-control-prev {
    left: -30px;
}
.carousel-control-next {
    right: -30px;
}
.modal-content {
margin-left: 55px;
}

.back-to-top { bottom: 90px;}
.testimonial-carousel .owl-dots {
   padding: 13px;
}
.row>* {
   
    padding-right: calc(var(--bs-gutter-x) / 05);
    padding-left: calc(var(--bs-gutter-x) / 05);
   }
   .form_vendor {padding: 10px;}
}
@media screen and (max-width: 570px) and (min-width: 491px)  {
  .back-to-top { bottom: 90px;}
  .testimonial-carousel .owl-dots {
   padding: 13px;
}
}

@media screen and (max-width: 767px){
.banner {
  min-height: 244px;
  margin-top: 0px;
   
}
.banner-video {
   min-height: 416px;
   height: 416px;

}

.mome-bt{
  margin-bottom: 0px;
}

.mome-bt-row{
  margin-bottom: 0px;
}
}

@media screen and (max-width: 767px) and (min-width: 734px) {

.tab-mano{
margin-top: 85px!important;
}

}
@media screen and (max-width: 1024px) and (min-width: 592px) {

.mobile-mob {display: block;}
.desktop {
    display: none;
}

.brand-mob-img {
    width: 50%;
    margin-left: 22%;
}
.testimonial-carousel .owl-dots {
    padding: 16px;
}
 .wi-ind{
    width: 30%;
  }
}

@media screen and (max-width: 1024px) and (min-width: 734px) {
  .tav-m{
    height: 498px;
    margin-top: 19px;
  }
  .of-ind{
    margin-top: 25px;
  }
  .wi-ind{
    width: 30%;
  }


  .brand-mob-img {
    width: 75%;
   margin-left: 10%;}


  
}
@media screen and (max-width: 991px) and (min-width: 768px) {

.col-md-3{flex:0 0 auto;width:33%}
}



@media screen and (max-width: 1199px) and (min-width: 991px) {
.banner-video {
   min-height: 353px!important;
    height: 3px!important;
}

.banner {
 
    min-height: 353px!important;
   
}
.navbar-dark .navbar-nav .nav-link {
  font-size: 0.80rem;
}
.navbar-dark .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    /* max-height: 65px; */
    max-height: 34px;
}
.navbar-dark {
    
    height: 14%;
}
}

.heading {
    margin-top: 0px;
}
.separator {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.separator:after,
.separator:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #0b0861;
    top: 50%;
}

.separator img {
    color: #0b0861;
}

.separator:after {
    right: 140%;
}

.separator:before {
    left: 140%;
}

.amazing_feature {
padding-top:80px;
padding-bottom:50px;
}

/*.single_featureee {
    background: #F04241 none repeat scroll 0 0;
    box-shadow: 0 2px 30px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    padding: 20px 20px 20px 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    height: 212px;
    width: 100%;
    color: #fff;
}

.single_feature {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 2px 30px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    padding: 20px 20px 20px 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    height: 212px;
    width: 100%;
}
.single_feature:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:#F04241;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.single_featureee:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:#fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.single_feature:hover, .single_feature:focus, .single_feature:active {
  color: white;
}
.single_feature:hover:before, .single_feature:focus:before, .single_feature:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.feature_icon{}


.single_feature img {
    border: 1px solid #e8e8e9;
 
    float: left;
  
    margin-right: 15px;
   
}

.single_featureee img {
    border: 1px solid #e8e8e9;
    float: left;
    margin-right: 15px;
   
}

.single_feature:hover img{
  background: #fff;border: 1px solid #fff;color:#0b0861;
}
.single_feature h3 {
  text-transform: capitalize;
  font-size: 21px;
  font-weight:400;
  margin-top:0px;
  overflow: hidden;
}
.single_featureee h3 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight:400;
  margin-top:0px;
  overflow: hidden;
  color: #fff;
}
.single_feature:hover h3{color:#fff;}
.single_feature span {
border-bottom: 1px dashed #ccc;
display: block;
margin: 15px auto 10px;
width: 80px;
}

.single_featureee span {
border-bottom: 1px dashed #ccc;
display: block;
margin: 15px auto 10px;
width: 80px;
}

.single_featureee p { margin-bottom: 0 ;overflow: hidden;}

.single_feature p { margin-bottom: 0 ;overflow: hidden;}*/



.promo-item {
    background-color: transparent;
    padding: 40px;
    border-radius: 2px;
    transition: all .3s ease-in-out;
}


.promo-item img {
   margin-bottom: 15px;
    display: inline-block;
    width: 85px;
    height: 85px;
    line-height: 80px;
    text-align: center;
    border: 2px dashed #f04443;
    border-radius: 50%;
   
}

.promo-item .img-top {
      margin-bottom: 15px;
    display: inline-block;
    width: 85px;
    height: 85px;
    line-height: 80px;
    text-align: center;
    border: 2px dashed #f04443;
    border-radius: 50%;
   display: none;
    }
    .promo-item:hover .img-top {
        display: inline!important;
    }
/*.img-span{
   background-image: url('../img/service/cake (1).png')!important;

}*/

.food-icon {
    font-family: food-icon!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


    .promo-item:hover {
    background-color: #fff;
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
}

.promo-item.active {
    background-color: #fff;
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
}
.promo-item {
    background-color: transparent;
    padding: 40px;
    border-radius: 2px;
    transition: all .3s ease-in-out;
}

.promo-item:hover img {
    background-color:  #f04443;
    color: #fff;
    display: none;
}

.food-2 {
    background-image: url(../img/1.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    position: absolute;
    width: 40%;
    height: 80%;
    left: 0;
    bottom: 0;
    left: -3%;
    bottom: 0;
    /* top: 10%; */
    z-index: -1;
}

.food-1 {
    background-image: url(../img/2.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    position: absolute;
    width: 40%;
    height: 80%;
    right: 0;
    /* top: 0; */
    right: -2%;
    /* top: 10%; */
    z-index: -1;
    bottom: 0;
}

.pos-rel {
    position: relative;
}

/*.food-4 {
    background-image: url(../img/1.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    right: -14%;
    top: 470%;
    z-index: -1;
}*/


/*@media screen and (min-width: 1206px) and (max-width: 1233px) {
.video-top {
  
    background-color: #000;
    height: 385px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1234px) and (max-width: 1260px) {
.video-top {
  
    background-color: #000;
    height: 402px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1261px) and (max-width: 1290px) {
.video-top {
  
    background-color: #000;
    height: 402px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1291px) and (max-width: 1310px) {
.video-top {
  
    background-color: #000;
    height: 406px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1311px) and (max-width: 1431px) {
.video-top {
    margin-top: -55px!important;
    background-color: #000;
    height: 410px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1432px) and (max-width: 1499px) {
.video-top {

     margin-top: -60px!important;
    background-color: #000;
    height: 415px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1500px) and (max-width: 1599px) {
.video-top {
    margin-top: -60px!important;
    background-color: #000;
    height: 486px!important;
}

}
*/
@media screen and (min-width: 768px) and (max-width: 1024px) {

.mome-bt {
    margin-bottom: 0px;
}

}

@media screen and (min-width: 992px) and (max-width: 1221px) {

.navbar-dark .navbar-nav .nav-link {
   margin-left: 12px;
    
}
}

/*@media screen and (min-width: 1240px) and (max-width: 1265px) {
.banner-video {
    position: relative;
    overflow: hidden;
    min-height: 395px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    height: 395px;
    margin-top: -35px;
}
.banner {
    position: relative;
    min-height: 465px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    background-image: url(../img/ban2.jpg);
    background: cover;
    margin-top: -46px;
}
}*/


/*@media screen and (min-width: 1285px) and (max-width: 1399px) {


.banner-video {
    position: relative;
    overflow: hidden;
    min-height: 408px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    height: 408px;
    margin-top: -46px;
}
}*/

/*@media screen and (min-width: 1400px) and (max-width: 1600px) {

.banner-video {
    position: relative;
    overflow: hidden;
    min-height: 436px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    height: 436px;
    margin-top: -57px;
}
}*/

/*@media screen and (min-width: 1700px) and (max-width: 2400px) {



.banner-video {
    position: relative;
    overflow: hidden;
    min-height: 553px!important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    height: 553px!important;
    margin-top: -103px!important;
}
.banner {
    position: relative;
    min-height: 507px!important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    background-image: url(../img/ban2.jpg);
    background: cover;
    margin-top: -42px!important;
}

  }*/

  @media screen and (min-width: 310px) and (max-width: 991px) {


    .food-2 {
    display: none;
}

.food-1 {
   display: none;
}



}

.banner_new{
  position: relative;
   background-image: url(../img/ban2.jpg)!important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%!important;
    
    background: cover;
   

}
.banner-video-new{

}



.split {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  top: -44!important;
  overflow: hidden;
 
}

.left {
    left: 0px;
    background-image: url(../img/ban2.jpg)!important;
    background-repeat: no-repeat;
    background-size: contain;
  /*  height: 453px;*/
}


.right {
    left: 6px;
    background-repeat: no-repeat;
    background-size: contain;
   /* height: 405px;*/
    position: relative;
    overflow: hidden;
}

.video-mobile{
display: block;
}
.video-desktop{
display: none;
}

.video-top {
    margin-top: -49px;
    background-color: #000;
    height: 410px;
    overflow-y: hidden!important;
    overflow-x: hidden!important;
}
select{
    width: 100%;
    outline: none;
    border: 1px solid #fff;
    padding: 15px 15px 15px 10px;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
    cursor: pointer;
}

select:focus,
select:hover{
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.329);
}


 @media screen and (min-width: 310px) and (max-width: 767px){
  .video-mobile{
display: none;
}
.video-desktop{
display: block;
}

 }

@media screen and (min-width: 310px) and (max-width: 991px){

 .video-top{
  margin-top: 0px;
}
}

@media (min-width: 1200px){
h1, .h1 {
    font-size: 2rem;
}
}

@media screen and (min-width: 768px) and (max-width: 772px) {
.video-top {
  
    background-color: #000;
    height: 249px!important;
     overflow-y: hidden!important;
}

}

@media screen and (min-width: 773px) and (max-width: 776px) {
.video-top {
  
    background-color: #000;
    height: 251px!important;
        overflow-y: hidden!important;
}

}
@media screen and (min-width: 777px) and (max-width: 785px) {
.video-top {
  
    background-color: #000;
    height: 252px!important;
        overflow-y: hidden!important;
}

}
@media screen and (min-width: 786px) and (max-width: 799px) {
.video-top {
  
    background-color: #000;
    height: 259px!important;
      overflow-y: hidden!important;
}

}
@media screen and (min-width: 800px) and (max-width: 810px) {
.video-top {
  
    background-color: #000;
    height: 263px!important;
    overflow-y: hidden!important;
}

}
@media screen and (min-width: 811px) and (max-width: 821px) {
.video-top {
  
    background-color: #000;
    height: 262px!important;
     overflow-y: hidden!important;
}

}
@media screen and (min-width: 822px) and (max-width: 831px) {
.video-top {
  
    background-color: #000;
    height: 262px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 832px) and (max-width: 850px) {
.video-top {
  
    background-color: #000;
    height: 264px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 851px) and (max-width: 900px) {
.video-top {
  
    background-color: #000;
    height: 266px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 901px) and (max-width: 949px) {
.video-top {
  
    background-color: #000;
    height: 270px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 950px) and (max-width: 991px) {
.video-top {
  
    background-color: #000;
    height: 275px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 992px) and (max-width: 1011px) {
.video-top {
  
    background-color: #000;
    height: 280px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1012px) and (max-width: 1060px) {
.video-top {
  
    background-color: #000;
    height: 305px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1061px) and (max-width: 1199px) {
.video-top {
  
    background-color: #000;
    height: 343px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1200px) and (max-width: 1204px) {
.video-top {
  
    background-color: #000;
    height: 375px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1205px) and (max-width: 1210px) {
.video-top {
  
    background-color: #000;
    height: 391px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1211px) and (max-width: 1220px) {
.video-top {
  
    background-color: #000;
    height: 392px!important;
   overflow-y: hidden!important;
}

}


/*.video-top {
    margin-top: -56px;
    background-color: #000;
    height: 410px;
}

*/

@media screen and (min-width: 1221px) and (max-width: 1233px) {
.video-top {
  height: 396px!important;
}

}
@media screen and (min-width: 1234px) and (max-width: 1260px) {
.video-top {
  height: 400px!important;
   
}

}
@media screen and (min-width: 1261px) and (max-width: 1290px) {
.video-top {
  height: 408px!important;
  margin-top: -50px!important;
   
}

}
@media screen and (min-width: 1291px) and (max-width: 1310px) {
.video-top {
  
  height: 406px!important;
  margin-top: -51px!important;
}

}
@media screen and (min-width: 1311px) and (max-width: 1431px) {
.video-top {
    margin-top: -55px!important;
    background-color: #000;
    height: 410px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1432px) and (max-width: 1499px) {
.video-top {

     margin-top: -60px!important;
    background-color: #000;
    height: 408px!important;
   overflow-y: hidden!important;
}

}
@media screen and (min-width: 1500px) and (max-width: 1599px) {
.video-top {
    margin-top: -60px!important;
    background-color: #000;
    height: 425px!important;
}

}
@media screen and (min-width: 1600px) and (max-width: 1699px) {
.video-top {
    margin-top: -65px!important;
   
}

}
@media screen and (min-width: 1700px) and (max-width: 1850px) {
.video-top {
    margin-top: -70px!important;
   
}

}

@media screen and (min-width: 1851px) and (max-width: 1949px) {
.video-top {
    margin-top: -80px!important;
   
}

}

@media screen and (min-width: 1851px) and (max-width: 2000px) {
.video-top {
    margin-top: -85px!important;
   
}

}
@media screen and (min-width: 2001px) and (max-width: 2500px) {
.video-top {
    margin-top: -90px!important;
   
}

}