html{
  /*overflow-x: hidden;*/
  scroll-behavior: smooth;
}
body{
  padding: 0;
  margin: 0;
  background: #fff;
  color: var(--dark-color);
  font-size: 14px;
  line-height: 1.5;
  font-family: "Inter", serif;
  font-weight: 400;
  /*overflow-x: hidden;*/
}
.overflowon{
  overflow-y: auto;
}
.overflowoff{
  overflow-y: hidden; 
}
*{
  outline: none!important;
  transition: .2s ease-in-out;
}
img{
  max-width: 100%;
  width: 100%;
}
a{
  text-decoration: none!important;
}
.m_on{
  display: none;
}
.displayoff{
  display: none!important;
}

/*color*/
  :root {
    --primary-color: #b9004c;
    --secondary-color: #FFC107;
    --txtcolor1: #212529;
    --txtcolor2: #b9004c;
    --txtcolor3: #FFC107;
    --dark-color: #141414;
    --light-color: #f4f4f4;
    --black: #000000;
    --white: #ffffff;
    --lightgray: #fbfbfb;
    --font-family-Forum: "Forum", serif;
  }
  .primaryBG{
    background: var(--primary-color);
  }
  .secondaryBG{
    background: var(--secondary-color);
  }
  .transparent{
    background: transparent;
  }
  .blackBG{
    background: var(--black);
  }
  .whiteBG{
    background: var(--white);
  }
  .lightgrayBG{
    background: var(--lightgray);
  }
  .blackTXT{
    color: var(--black);
  }
  .whiteTXT{
    color: var(--white);
  }
  .grayTXT{
    color: #979797;
  }
  .txtcolor1{
    color: var(--txtcolor1);
  }
  .txtcolor2{
    color: var(--txtcolor2);
  }
/*end*/

/*Typography*/
  h1, h2, h3{
    font-family: "Forum", serif;
  }
  .captext{
    text-transform: uppercase;
  }
  .heading{
    position: relative;
    margin-bottom: 30px;
    font-family: "Forum", serif;
    font-weight: normal;
    font-size: 80px;
  }
  .heading b, .heading strong{
    font-weight: 700;
  }
  .bttmline:after{
    content: "";
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    max-width: 30%;
    height: 4px;
    border-radius: 5px;
    background: var(--primary-color);
  }
  .heading2{
    /*padding: 0 15px;*/
    font-family: "Inter", serif;
  }
  .heading2 b{
    font-size: 46px;
  }
  .heading2 b span{
    background: var(--secondary-color);
    padding: 0 10px;
  }
  .sectag{
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 35px;
  }
  .sectag.nodgn, .sectag.hozrdgn{
    padding-left: 0;
  }
  .sectag:after{
    content: "";
    position: relative;
    display: inline-block;
    margin-left: 10px;
    height: 15px;
    width: 100px;
    background-image: url(../img/separator.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .sectag.nodgn:after{
    display: none;
  }
  .sectag.hozrdgn:after{
    position: absolute;
    margin-left: 0px;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
  }
  hr{
    border-top: 1px solid #e2e2e2;  
  }
  .bdr_t{
    border-top: 1px solid #e2e2e2;
  }
  .bdr_b{
    border-bottom: 1px solid #e2e2e2;
  }
/*end*/

/*Buttons*/
  .hoverbtn:hover{
    transform: scale(1.1);
    box-shadow: 1px 7px 15px rgba(0, 0, 0, 0.3);
  }
  .btn-gradient{
    position: relative;
    background: transparent;
    color: #fff!important;
    z-index: 1;
    overflow: hidden;
    border: none!important;
    font-size: 16px;
    padding: 12px 24px;
  }
  .btn-gradient:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 205%;
    height: 100%;
    background: linear-gradient(45deg, #b9004c, #db005b, #b9004c);
    z-index: -1;
    transition: .3s;
  }
  .btn-gradient:hover:after{
    transform: translateX(-45%);
  }
  .hovwhiteTXT:hover{
    color: white!important;
  }
  .hovblackTXT:hover{
    color: black!important;
  }
  .btn-shadow{
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  }
  .btn-round{
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn-hover-big:hover{
    transform: scale(1.02);
  }
/*end*/

/*Padding and margines*/
  .paddZero{
    padding: 0!important;
  }
  .pddlr_0{
    padding-left: 0;
    padding-right: 0;
  }
  .pdd20{
    padding: 20px;
  }
  .pdd30{
    padding: 30px;
  }
  .pdd50{
    padding: 50px;
  }
  .pddt_30{
    padding-top: 30px;
  }
  .pddb_30{
    padding-bottom: 30px;
  }
  .pddt_50{
    padding-top: 50px;
  }
  .pddb_50{
    padding-bottom: 50px;
  }
  .pddt_70{
    padding-top: 70px;
  }
  .pddb_70{
    padding-bottom: 70px;
  }
  .m_0{
    margin: 0!important;
  }
  .mt_0{
    margin-top: 0!important;
  }
  .mb_0{
    margin-bottom: 0!important;
  }
  .mt_30{
    margin-top: 30px;
  }
  .mt_50{
    margin-top: 50px;
  }
  .mt_70{
    margin-top: 70px;
  }
  .mb_30{
    margin-bottom: 30px;
  }
  .mb_50{
    margin-bottom: 50px;
  }
  .mb_70{
    margin-bottom: 70px;
  }
/*end*/

.floatL{
  float: left;
}
.floatR{
  float: right;
}
.relative{
  position: relative;
}
.round-15{
  border-radius: 15px;
  overflow: hidden;
}
.round-10{
  border-radius: 10px;
  overflow: hidden;
}
.round-5{
  border-radius: 5px;
  overflow: hidden;
}

/*Breadcrumb*/
  .breadcrumb {
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 0px;
    font-size: 12px;
    background: var(--primary-color);
    display: none!important;
  }
  .breadcrumb a{
    color: #fff;
    font-weight: 500;
  }
/*end*/

/*flex items*/  
  .flxcontrol{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
  }
  .align-items-start{
    align-items: flex-start;
  }
  .flx-reverse{
    flex-direction: row-reverse;
  }
/*end*/

/*header alert*/
  .alertinfo{
    min-height: 40px;
    overflow: hidden;
    background: var(--primary-color);
    top: -5px;
    position: relative;
    color: var(--txtcolor3);
    padding: 0 35px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  header.alerthas.fixed{
  height: 106px;
  }
  .alerthas .navbar.navbtmenu{
    top: 106px;
  }
  .alertinfo .close{
    position: absolute;
    top: 5px;
    right: 10px;
    color: var(--black);
    opacity: 1;
    background: rgb(255 255 255 / 21%);
    width: 20px;
    height: 20px;
    text-shadow: none;
    font-size: 15px;
    padding: 3px 0;
    border-radius: 50%;
    cursor: pointer;
  }
  .alertinfo  p{
    margin: 0;
  }
  @media (max-width: 767px){
    .alertinfo *{
      font-size: 112%;
    }
    .alerthas .navbar.navbtmenu{
      top: 88px;
    }
  }
/*end*/

/*Loader*/
  .preloader-wrapper{    
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  .preloader .ldr_prt{
    height: 100vh;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.2s ease-in-out;
  }
  .preloader .cntr{
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100vh);
    max-width: 500px;
    width: 90%;
    transition: 1s;
    z-index: 1;
    text-align: center;
  }
  .preloader .cntr:after{
    content: "";
    width: 100%;
    left: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    opacity: 1;
    animation: show 4s infinite;
    z-index: 1;
  }  
  .preloader .cntr p{
    color: #737373;
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.4;
  }
  .preloader .ldr{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .preloader .ldr .fa{
    color: var(--secondary-color);
  }
  .preloader .ldr .ldrtxt{
    font-size: 16px;
    font-weight: 500;
    padding-left: 12px;
    margin: 10px auto;
    color: #bfbfbf;
  }
  @keyframes show {
    0% {
      opacity: .7;
      /*backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);*/
      transform: translateX(0%);
    } 
    100% {
      opacity: .4;
      /*backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);*/
      transform: translateX(110%);
    }
  }
  @-webkit-keyframes show {
    0% {
      opacity: .7;
      /*backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);*/
      transform: translateX(0%);
    } 
    100% {
      opacity: .4;
      /*backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);*/
      transform: translateX(110%);
    }
  }
  .preloader-wrapper.active{
    opacity: 1;
    visibility: visible;
    z-index: 999999;
  }
  .preloader-wrapper.active .preloader .cntr{
    transform: translate(-50%, -50%);
  }
  .preloader .lft{
    transform: translateX(-220%);
  }
  .preloader .rgt{
    transform: translateX(220%);
  }
  .preloader-wrapper.active .preloader .lft{
    transform: translateX(0);
  }
  .preloader-wrapper.active .preloader .rgt{
    transform: translateX(0);
  }
/*end*/

/*Heading*/
  header{
    /*height: 82px;*/
  }
  .navbar {
    margin-bottom: 0;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    background: rgb(0 0 0 / 0%);
    backdrop-filter: blur(2px);
    z-index: 9999;
    border: 0;
    padding: 5px 0 5px;
    font-size: 12px !important;
    font-weight: normal;
    line-height: 1.4 !important;
    border-radius: 0;
    /*box-shadow: 0 0 25px rgb(0 0 0 / 0.2);*/
    min-height: unset;
  }
  .fixed .navbar{
    background: #fff;
    box-shadow: 0 0 25px rgb(0 0 0 / 20%);
  }
  .fixed .navbar.navbtmenu{
    box-shadow: 0 10px 15px rgb(0 0 0 / 6%);
    top: 83px;
  }
  .ripped-paper{
    /*position: relative;*/
  }
  .ripped-paper:after{
    content: "";
    width: 100%;
    height: 16px;
    position: absolute;
    bottom: -15px;
    left: 0;
    background-image: url(../img/ripped-paper-top.png);
    background-position: center center;
    background-size: auto;
    z-index: -1;
    display: none;
  }
  .fixed .ripped-paper:before{
    content: "";
    width: 100%;
    height: 35px;
    position: absolute;
    bottom: -36px;
    left: 0;
    background: linear-gradient(rgb(0 0 0 / 10%), rgb(0 0 0 / 2%), rgb(0 0 0 / 0%));
    background-position: center center;
    background-size: auto;
    z-index: -1;
    display: none;
  }
  .wlogo{
    display: unset;
  }
  .fixed .wlogo{
    display: none;
  }
  .clrlogo{
    display: none;
  }
  .fixed .clrlogo{
    display: unset;
    width: 280px;
    max-width: 60%;
  }
  .navbar-fixed-top .container .row{
    display: flex;
    align-items: center;
  }
  .navbar .navbar-header{
    margin-left: 0;
    margin-right: 0;
  }
  .navbar .navbar-brand{
    height: unset;
    padding: 5px 0;
  }
  .navbar-nav li a:hover, .navbar-nav li.active a {
    color: #f4511e !important;
    background-color: #fff !important;
  }
  .navbar-default .navbar-toggle {
    border-color: transparent;
    color: #fff !important;
    display: inline-block;
    float: unset;
    margin: 0 5px 0 0;
    background: transparent!important;
  }
  .navbar-default .navbar-toggle .icon-bar{
    background: #fff;
    transition: .3s;
    border-radius: 5px;
  }
  .fixed .navbar-default .navbar-toggle .icon-bar{
    background: #141414;
  }
  .navbar-default .navbar-toggle .two{
    width: 19px;
  }
  .navbar-default .navbar-toggle .three{
    width: 16px;
  }
  .navbar-default .navbar-toggle.active .one{
    width: 22px;
  }
  .navbar-default .navbar-toggle.active .three{
    width: 22px;
  }
  .navbar-default .navbar-toggle.active .two{
    width: 22px;
  }
  .navbar-default .mainmenu{
    display: inline-block;
    padding: 0;
    margin: 0;
  }
  .navbar-default .mainmenu li{
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 7px 8px;
    margin: 0 5px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 2px;
    cursor: pointer;
    color: #255946;
  }
  .fixed .navbar-default .mainmenu li{
    color: black;
  }
  .navbar-default .mainmenu li img{
    max-width: 18px;
    filter: invert(1) brightness(100);
  }
  .fixed .navbar-default .mainmenu li img{
    filter: none;
  }
  .navbar-default .mainmenu li:hover{
    /*opacity: 1;*/
  }
  .mainmenu li .sminfo {
    position: absolute;
    top: 5px;
    right: 1px;
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 0;
    border-radius: 100%;
    line-height: 8px;
    width: 15px;
    height: 15px;
    text-align: center;
    font-size: 12px;
  }
  .navbar .navbar-brand{
    float: unset;
  }
  .navbar .brand{
    max-width: unset;
    /* width: 130px; */
    margin: 1px auto;
    max-height: 120px;
    object-fit: contain;
  }
  .squize.navbar .brand{
    /*max-width: 75px;*/
  }
  .navbar-default .navbar-collapse{
    /*padding: 10px 0;*/
  }
  .navbar .menu{
    padding: 0;
    text-align: right;
    margin: 10px 0 0;
  }
  .navbar .menu.menu-text-left{
    text-align: left;
  }
  .navbar .menu li{
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 7px 8px;
    margin: 5px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 2px;
  }
  .navbar .menu li:hover{

  }
  .navbar .menu li a{
    text-decoration: none;
    color: #6e7673;  
    padding: 12px;
    font-weight: 400;
  }
  .fixed .navbar .menu li a, .fixed .btcats .menu li .navcticn{
    color: #141414;  
  }
  .navbar .menu li:hover a, .btcats .menu li:hover .navcticn {
    color: #141414;
  }
  .menu-item-has-children:after{
    content: "\f107";
    position: relative;
    right: 10px;
    top: 0px;
    color: #000;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    display: none;
  }
  .navbar .menu li:hover:after{
    color: var(--red);
  }
  .navbar .menu .sub-menu{
    padding: 0;
    position: absolute;
    max-height: 500px;
    overflow-y: auto;
    width: 200px;
    left: 0;
    top: 100px;
    display: none;
    background: var(--dark-color);
    z-index: 9;
    transition: .2s;
    border-radius: 0;
    box-shadow: 0px 15px 50px rgb(0 0 0 / 20%);
  }
  .navbar .menu .col2 .sub-menu{
    width: auto;
    list-style: none;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding-left: 0;
  }
  .navbar .menu li:hover > .sub-menu{
    display: block;
    top: 36px;
    /*border-top-left-radius: 0;
    border-top-right-radius: 0;*/
  }
  .navbar .menu .sub-menu li{
    display: block;
    text-align: left; 
    margin: 0;
  }
  .navbar .menu .col2 .sub-menu li{
    min-width: 150px;
  }
  .navbar .menu .sub-menu li:hover{
    background: rgb(255 255 255 / 12%);
  }
  .navbar .menu .sub-menu li a{
    color: #676767;
    font-size: 14px;
    letter-spacing: 0;
    width: 100%;
    display: block;
    padding: 2px 10px;
  }
  .navbar .menu .sub-menu li:hover a{
    color: #fff;
  }
  .navbar .menu .sub-menu .sub-menu{
    width: 250px;
    right: 50%;
    top: 0;
    background: #e5f4ff;
    z-index: -1;
    border-radius: 10px 0px 10px 10px;
  }
  .navbar .menu .sub-menu .sub-menu li a{
    color: black;
  }
  .navbar .menu .sub-menu .sub-menu li:hover a{
    color: #0043ff;
  }
  .navbar .menu .sub-menu li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    right: 100%;
    top: 0;
    z-index: 2;
  }
  .navbar .menu .sub-menu li.menu-item-has-children:hover{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .navbar .menu .sub-menu li.menu-item-has-children:after{
    color: var(--purple);
    position: absolute;
    width: 10px;
    top: 50%;
    left: 90%;
    transform: translateY(-50%) rotate(90deg);
    transition: .2s;
  }
  .navbar .menu .sub-menu li.menu-item-has-children:hover:after{
    left: 0;
  }
  .navbar.navbtmenu{
    padding: 0;
    top: 132px;
    box-shadow: none;
    z-index: 9999;
    position: fixed;
    width: 100%;
  }
  .menucont .menu > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    display: block;
    height: 5px;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .menucont .menu > li:hover > a:before, .menucont .menu > li.current > a:before, .menucont .menu > li.current-menu-item > a:before {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .menucont .menu > li.current > a, .menucont .menu > li.current-menu-item > a {
    color: var(--primary-color);
  }
  .menucont .menu .sub-menu li > a{
    padding-top: 12px!important;
    padding-bottom: 12px!important;
  }
  .menucont .menu .sub-menu li > a:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    margin-top: -4px;
    height: 8px;
    width: 8px;
    border: 1px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
  }
  .navbar .menu .sub-menu li:hover{
    padding-left: 15px;
  }
  .menucont .menu .sub-menu li:hover > a:before{
    opacity: 1;
    visibility: visible;
  }
  .btcats{
    margin: 0;
    color: #000;
    border-top: 1px dashed rgb(169 169 169 / 35%);
  }
  .fixed .btcats{
    background: #fff;
    color: #141414;
  }
  .btcats .menucont{
    position: relative;
    padding: 0;
  }
  .btcats .menucont ul{
    margin-bottom: 0;
    /*border-top: 1px solid rgb(255 255 255 / 38%);*/
  }
  .srchopen{
    margin: 7px 0;
    padding: 3px 7px;
    background: #fff;
    border: none;
    background: transparent;
  }
  .srchopen i{
    color: #fff;
    font-size: 16px;
  }
  .fixed .srchopen i{
    color: var(--dark-color);
  }
  .srchopen form:hover i{
    color: var(--dark-color)!important;
  }
  .h_search form{
    position: relative;
  }
  .h_search form input{
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    background: #f4f4f4;
    padding: 7px 30px 7px 10px;
    border: none;
    border-radius: 3px;
    color: #000;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
    font-size: 16px;
  }
  .h_search form button{
    position: relative;
    color: #000;
    font-size: 20px;
    background: #0000;
    border: none;
    z-index: 9;
  }
  .h_search form:hover input,
  .h_search form.active input{
    visibility: visible;
    opacity: 1;    
    width: 250px;
  }
  .h_search form:hover button,
  .h_search form.active button{
    color: var(--red);
  }
  .btcats .menu{
    margin: 0;
    text-align: center;
  }
  .btcats .menu li{
    margin: 5px 5px;
    padding: 6px 5px;
    text-align: center;
    font-size: 14px;
    border-radius: 0px;
  }
  .btcats .menu li:hover{

  }
  .btcats .menu .sub-menu li:hover{
    background: #000;
  }
  .btcats .menu .sub-menu li{
    text-align: left;
    padding: 0;
    font-size: 16px;
  }
  .btcats .menu li a, .btcats .menu li .navcticn {
    color: #fff;
  }
  .btcats .menu .sub-menu li a{
    padding: 7px 10px;
  }
  .btcats .menu-item-has-children:after{
    color: #fff;
  }
  .btcats .menu li:hover:after{
    color: #fff;
  }
  /* width */
  .btcats .sub-menu::-webkit-scrollbar {
    width: 5px;
  }
  /* Track */
  .btcats .sub-menu::-webkit-scrollbar-track {
    background: #fff;
  }
  /* Handle */
  .btcats .sub-menu::-webkit-scrollbar-thumb {
    background: #ff3636; 
  }
  /* Handle on hover */
  .btcats .sub-menu::-webkit-scrollbar-thumb:hover {
    background: #ff3636; 
  }
/*End*/

/*Defaut page baanr*/
  .ldsec1{
    position: relative;
    z-index: 1;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(25 27 37 / 70%);
    background-blend-mode: overlay;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
  .flx{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: calc(55vh - 75px);
    margin-top: 200px;
  }
  .flxcont{
    text-align: center;
  }
  .flxcont h1{
    color: #fff;
  }
/*end*/

/*section top and bottom design*/
  .sec_bt_dgs, .sec_tp_dgs{
    position: relative;
    z-index: 1;
  }
  .sec_bt_dgs:after, .sec_tp_dgs:before{
    content: "";
    position: absolute;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 60px;
    z-index: 2;
    display: none;
  }
  .sec_bt_dgs:after{
    bottom: 0;
    background-image: url(../img/ripoff.png);
  }
  .sec_tp_dgs:before{
    top: 0;
    background-image: url(../img/ripoff_flip.png);
  }
/*end*/

/*Video Banner*/
  .sec-video{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    z-index: 1;
  }
  .sec-video:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 35%), rgb(0 0 0 / 35%), rgb(0 0 0 / 35%), rgb(0 0 0 / 70%));
    z-index: 1;
  }
  .vid_info{
    z-index: 2;
    position: absolute;
    color: #fff;
    max-width: 90%;
    width: 900px;
    padding: 10px 3%;
    left: 50%;
    top: 55%;
    transform: translateX(-50%) translateY(-50%);
    max-height: 65vh;
    overflow: auto;
  }
  .vid_info h2{
    color: var(--txtcolor1);
    font-size: 80px;
    font-weight: 700;
	margin-top: 0;
  }
  .vid_info h4{

  }
  .vid_info p{
    
  }
  /* width */
  .vid_info::-webkit-scrollbar {
    width: 7px;
  }

  /* Track */
  .vid_info::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(255 255 255 / 25%); 
    border-radius: 7px;
  }
   
  /* Handle */
  .vid_info::-webkit-scrollbar-thumb {
    background: rgb(255 255 255 / 25%); 
    border-radius: 7px;
  }

  /* Handle on hover */
  .vid_info::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color); 
  }
  .video-cont{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100vh;
    transform: translate(-50%, -50%);
  }
  .video-cont video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mute-button{
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 10%);
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
  }
  .mute-button:hover{
    transform: scale(1.05);
  }
  .fa-volume-off:after{
    content: "";
    width: 1px;
    height: 16px;
    background: #fff;
    box-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
    position: absolute;
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .scrollicon{
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
	display: none;
  }
  .scrollicon img{
    width: 60px;
    opacity: .8;
  }
  .bounce {
    animation: bounce 5s ease infinite;
  }
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0%);
    }
    40% {
      transform: translateY(-30%);
    }
    60% {
      transform: translateY(-15%);
    }
  }
/*end*/

/*Banner section*/
  .section-1{  
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100vh;
    z-index: 0;
  }
  .showcase{
    border-radius: 0;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100vh - 0px);
  }
  .showcase .uspline{
    text-align: center;
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-size: 54px;
    margin: 0;
    padding: 10px;
    border-top: 2px dotted #fff;
    border-bottom: 2px dotted #fff;
  }
  .showcase .bgimg{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(100vh - 0px);
    height: 500px;
    width: 100%;
  }
  .showcase .up_lable{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -40%);
    padding: 15px;
  }
  .showcase .up_lable h1{
    font-size: 58px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
    text-transform: capitalize;
  }
  .showcase .up_lable h1 span{
    color: var(--txtcolor1);;
  }
  .showcase .up_lable p{
    font-size: 18px;
    max-width: 300px;
    margin: 15px auto 0 auto;
  }
  .showcase .up_lable .readfull{
    color: #000;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 13px 28px 13px 28px;
    transition: opacity 1s 1.5s ease, background .7s, color .7s;
    margin-top: 30px;
    border-radius: 50px;
  }
  .showcase .up_lable .readfull:hover{
    background: #fff;
    color: black;
  }
  .showcase .slidoverlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 55%), rgb(0 0 0 / 45%), rgb(0 0 0 / 45%));
  }
  .showcase .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: .4;
  }
  .showcase .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
  .showcase .swiper-button-prev:after,
  .showcase .swiper-button-next:after{
    font-size: 14px;
    color: #fff;
    text-transform: uppercase!important;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    transform: rotate(90deg);
  }
  .showcase .swiper-button-prev:before,
  .showcase .swiper-button-next:before{
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 2px;
    background: white;
  }
  .showcase .swiper-button-prev:before{
    left: 105%;
  }
  .showcase .swiper-button-next:before{
    left: -5%;
  }
  .section-1 .swiper-pagination1{
    bottom: 75px;
  }
  .section-1 .showcase .swiper-pagination-bullet-active{
    background: #0000;
    opacity: 1;
    border: 2px solid #fff;
    width: 12px;
    height: 12px;
  }
/*end*/

/*Higlight Section*/
  .highlights{

  }
  .highlights .flxcontrol{

  }
  .ht_card{
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
    position: relative;
    background: var(--primary-color);
    z-index: 1;
    padding: 20px;
    color: #fff;
  }
  .ht_card.even{
    background: var(--secondary-color);
  }
  .ht_card:hover, .ht_card.active{
    background: #000;
  }
  .ht_card::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  /*background: #000;*/
    opacity: 1;
    z-index: -2;
  }
  .ht_card>img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }
  .ht_card:hover > img, .ht_card.active > img{
    visibility: visible;
    opacity: .5;
  }
  .ht_card .crd_no{
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 15px;
    border-bottom-left-radius: 15px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
  }
  .ht_card.even .crd_no{
    background: var(--primary-color);
  }
  .ht_card .crd_icon{
    width: 150px;
    height: 150px;
  }
  .ht_card:hover .crd_icon{
    width: 70px;
    height: 70px;
  }
  .ht_card.active .crd_icon{
    display: none;
  }
  .ht_card .crd_icon img{
    width: 100%;
    object-fit: contain;
    object-position: left;
  }
  .ht_card .crd_info{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 20px;
  }
  .ht_card .crd_info h2{
    font-weight: 700;
    margin-bottom: 30px;
  }
  .ht_card .crd_info p{
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    margin-bottom: 20px;
  }
  .ht_card:hover .crd_info p, .ht_card.active .crd_info p{
    display: -webkit-box;
    visibility: visible;
    opacity: 1;
  }
  .ht_card .btn{
    background: rgb(255 255 255 / 0%);
    border-bottom: 1px dashed #fff;
    border-radius: 0;
    color: #fff;
    padding: 8px 0;
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  .ht_card .btn span{
    transform: rotate(49deg);
    position: relative;
    display: inline-block;
    padding: 5px;
    font-size: 18px;
    top: 1px;
  }
  .ht_card:hover .btn, .ht_card.active .btn{
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .ht_card .btn:hover span{
    transform: rotate(0deg);
    top: 0px;
  }
/*end*/

/*About Section*/
  .sec-abt{
    position: relative;
    /*overflow: hidden;*/
  }
  .sec-abt:after{
    content: "";
    width: 160px;
    max-width: 40%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: -2%;
    left: 0%;
    background-image: url(../img/china-rose.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    animation: bounce-x 10s linear infinite;
  }
  .sec-abt:before{
    content: "";
    width: 200px;
    max-width: 40%;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 4%;
    right: 2%;
    background-image: url(../img/stons.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    animation: bounce-y 10s linear infinite;
  }
  .sec-abt .habtinfo .heading{
    color: var(--primary-color);
  }
  .sec-abt .habtimg img{
    width: 500px;
    border-radius: 25px;
    box-shadow: 3px 5px 40px rgb(0 0 0 / 20%);
  }
  .sec-abt .habtinfo ul{
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .sec-abt .habtinfo ul li{
    display: flex;
    margin-right: 10px;
    margin-bottom: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
  }
  .sec-abt .habtinfo ul li .icon{
    display: inline-block;
    width: 70px;
    height: 70px;
    padding: 7px;
    border-radius: 50px;
    position: relative;
  }
  .sec-abt .habtinfo ul li .icon::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: .2;
    z-index: -1;
  }
  .sec-abt .habtinfo ul li span{
    margin-left: 7px;
  }
  .sec-abt .habtinfo ul li span strong{
    display: block;
    font-size: 30px;
    color: var(--txtcolor2);
  }
  .sec-abt .habtinfo .readfull{
    font-size: 15px;
    background: var(--primary-color);
    color: #fff;
    min-width: 140px;
    margin-bottom: 30px;
  }
  .quot{
    position: relative;
    max-width: 650px;
    margin: 0 auto;
  }
  .quot:after, .quot:before{
    content: "";
    background-image: url(../img/quotepenicon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 51px;
    height: 36px;
    position: absolute;
  }
  .quot:after{
    left: 0;
    top: 0;
  }
  .quot:before{
    right: 0;
    bottom: 30px;
    transform: rotate(-180deg);
  }
  .quot h3{
    padding: 0 55px;
  }
  .quot .qtauth{
    text-align: right;
    padding-right: 110px;
    margin-top: 20px;
  }
  .quot .qtauth span{
    position: relative;
  }
  .quot .qtauth span:after{
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    background: #000000;
  }
/*end*/

/*Workshop Section*/
  .workshops{
    background-color: #f8f9fa;
    overflow: hidden;
  }
  .workshops .flxcontrol{

  }
  .wks_card{
    border: none;
    position: relative;
    display: block;
    background: #fff;
    padding: 30px 30px;
    box-shadow: 0 2px 70px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align: center;
  }
  .wks_card .w_thumb{
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 3/2;
    box-shadow: 0 5px 15px rgb(0 0 0 / 12%);
  }
  .wks_card .w_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
  }
  .wks_card:hover .w_thumb img{
    transform: scale(1.05);
  }
  .wks_card .w_icon{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 70px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    z-index: 2;
    position: relative;
  }
  .wks_card .w_icon img{
    width: 60%;
    height: 60%;
    object-fit: contain;
  }
  .wks_card .w_info{
    
  }
  .wks_card .w_info h3{
    font-weight: 600;
    font-size: 24px;
    display: block;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  .wks_card:hover .w_info h3{
    color: var(--secondary-color);
  }
  .wks_card .w_info p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    color: #727272;
  }
  .wks_card .w_info .btn{
    border: none;
    background: rgb(0 0 0 / 0%);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 0;
  }
  .wks_card .w_info .btn:hover{
    color: var(--primary-color);
  }
/*end*/

/*Coaches Section*/
  .swiper-coaches{
    overflow: hidden;
  }
  .coache{
    width: 100%;
    position: relative;
  }
  .coache .ch_thumb{
    width: 100%;
    aspect-ratio: 2/2.5;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
  }
  .coache .ch_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: .7s;
  }
  .coache:hover .ch_thumb img{
    transform: scale(1.1);
  }
  .coache .ch_thumb a{
    font-size: 12px;
    border-bottom: 1px dashed var(--secondary-color);
    color: #fff;
    font-weight: 600;
    visibility: hidden;
    opacity: 0;
    display: flex;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(30 56 136 / 89%);
    border: none;
    scale: 0;
    transition: .5s;
    border-radius: 100%;
  }
  .coache:hover .ch_thumb a{
    visibility: visible;
    opacity: 1;
    display: flex;
    scale: 1;
    z-index: 2;
    border-radius: 5px;
  }
  .coache .ch_info{
    width: 80%;
    margin: -30px auto 0 auto;
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .coache .ch_info h4{
    font-weight: 600;
    color: var(--txtcolor1);
    margin-top: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
  }
  .coache .ch_info p{
    color: #686868;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    margin: 0;
  }
/*end*/

/*FAQ Section*/
  .faqs .hding_info>p{
    color: #949faf;
  }
  .faq_info .panel{
    border: none;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 0 3px rgb(30 41 59 / 15%);
    color: #949faf;
  }
  .faq_info .panel-heading{
    padding: 0;
    background: transparent;
  }
  .faq_info .panel-heading h4{
    
  }
  .faq_info .panel-heading h4 a{
    position: relative;
    display: block;
    padding: 22px;
    font-size: 20px;
    color: var(--txtcolor3);
    background: #fff;
    font-weight: 500;
    font-family: "Fraunces", serif;
    box-shadow: 0 0 3px rgb(30 41 59 / 15%);
  }
  .faq_info .panel-heading h4 a[aria-expanded="true"]{
    color: var(--txtcolor1);
  }
  .faq_info .panel-heading h4 a:after{
    content: "\f107";
    font-family: FontAwesome;
    font-size: 20px;
    color: var(--txtcolor3);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .faq_info .panel-heading h4 a[aria-expanded="true"]:after{
    content: "\f106";
    color: var(--txtcolor1);
  }
  .faq_info .panel-body{
    border: none!important;
    padding: 25px;
  }
/*end*/

/*Food Options*/
  .menu_opt{
    display: none;
    width: 100%;
    position: fixed;
    z-index: 9999;
    bottom: 0;
    background: var(--dark-color);
    padding: 5px;
    justify-content: space-around;    
    border-top: 1px solid rgb(255 255 255 / 15%);
  }
  .menu_opt a{
    display: block;
    width: calc(50% - 5px);
    text-align: center;
    padding: 10px;
    background: var(--primary-color);
    color: var(--dark-color);
    cursor: pointer;
  }
  .menu_opt a i{
    padding: 0 5px;
  }
/*end*/

/*Footer*/
  footer{
    background: #fff7e2;
    overflow: hidden;
    color: #000000;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }
  .footer::before{
    background-image: url(../img/footer_bg.png);    
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 268px;
    height: 533px;
    bottom: 0;
    left: -2%;
    pointer-events: none;
    animation: bounce-x 10s linear infinite;
  }
  .footer::after{
    background-image: url(../img/rose.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 250px;
    height: 350px;
    bottom: 0;
    right: 0;
    pointer-events: none;
    animation: bounce-y 10s linear infinite; 
    z-index: 1;
    opacity: .07;
  }
  .fpoints{

  }
  .fpoints h3{
    font-weight: 400;
  }
  .fpoints ul{
    padding: 0;
    list-style: none;
  }
  .fpoints ul li{
    margin-top: 15px;
    color: #fff;
  }
  .fpoints ul li a{
    color: #e29723;
    font-weight: 500;
  }
  .fpoints ul li:hover a{
    color: #000;
  }
  .cpyrgt_row{
    position: relative;
    z-index: 1;
    border-top: 1px dashed rgb(0 0 0 / 21%);
  }
  .cpyrgt_row::before{
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    /*background: var(--primary-color);*/
    z-index: -1;
  }
  .cpyrgt_row p{
    margin: 30px 0;
    /*color: #fff;*/
  }
  .cpyrgt_row p a{
    color: inherit;
  }
/*end*/

/*My account*/
  .woocommerce-MyAccount-navigation ul {
    white-space: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 0;
    background: #ededed;
    border-radius: 5px;
  }
  .woocommerce-MyAccount-navigation ul li {
    list-style: none;
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
  }
  .woocommerce-MyAccount-navigation ul li a {
    color: #000;
  }
  .woocommerce-MyAccount-navigation ul li.is-active {
    background: var(--primary-color);
    border-radius: 3px;
  }
  .woocommerce-MyAccount-navigation ul li.is-active a {
    color: white;
  }
  .woocommerce form .form-row .input-checkbox {
    margin: 5px 0px 0px 0;
    transform: scale(1.2);
  }
  .woocommerce-terms-and-conditions-checkbox-text {
    display: inline-block;
    padding-left: 20px;
    line-height: 1.4;
  }
  .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 2px solid var(--secondary-color);
    border-radius: 0px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
  #customer_login .u-column1 h2, #customer_login .u-column2 h2{
    text-align: center;
    font-size: 18px;
  }
  #customer_login .woocommerce-form button[type="submit"]{
    width: 100%;
    padding: 12px 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
  }
  .woocommerce #customer_login form label{
    font-weight: normal;
    font-size: 14px;
    color: var(--primary-color);
  }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content{
    width: 100%;
    float: unset;
  }
  .woocommerce-account .woocommerce-MyAccount-content{
    padding: 10px;
  }
  .checkout.woocommerce-checkout img{
    background: white!important;
  }
/*End*/

/*social media icons*/
  .social_md_list ul{
    padding: 0;
    margin: 0;
  }
  .social_md_list li{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 0 0;
    font-size: 20px;
    border-radius: 10px;
    margin: 0px 5px 5px 0px;
    text-align: center;
    line-height: 1.6;
  }
  .social_md_list li svg {
    fill: #fff;
    position: relative;
    top: 4px;
  }
  .social_md_list li:hover{
    background: var(--txtcolor3);
    color: #fff;  
    transform: scale(1.2);
  }
  .social_md_list li:hover svg {
    fill: #fff;
  }
/*social media icons*/

/*extra*/
  .slideanim {
    opacity: 0;
    visibility:hidden;
    transition: .3s ease-in-out;
  }
  .slidelrmain {
    opacity: 0;
    visibility:hidden;
    transition: .3s ease-in-out;
  }
  .sliderlmain {
    opacity: 0;
    visibility:hidden;
    transition: .3s ease-in-out;
  }
  .slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    opacity: 1;
    animation-delay: var(--d);
    transition: .3s ease-in-out;
  }
  .slidelr {
    animation-name: slidelr;
    -webkit-animation-name: slidelr;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
  }
  .sliderl {
    animation-name: sliderl;
    -webkit-animation-name: sliderl;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
  }
/*end*/

/*Animations*/
  @keyframes slide {
    0% {
      visibility:hidden;
      transform: translateY(70%);
    } 
    100% {
      visibility: visible;
      transform: translateY(0%);
    }
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      visibility:hidden;
      -webkit-transform: translateY(-70%);
    } 
    100% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateY(0%);
    }
  }
  @keyframes slidelr {
    0% {
      opacity: 0;
      transform: translateX(-70%);
    } 
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @-webkit-keyframes slidelr {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateX(0%);
    }
  }
  @keyframes sliderl {
    0% {
      opacity: 0;
      transform: translateX(70%);
    } 
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @-webkit-keyframes sliderl {
    0% {
      opacity: 0;
      -webkit-transform: translateX(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateX(0%);
    }
  }
  /*pulsh effect*/
  @keyframes pulse{
    0%{
      box-shadow: 0 0 0 0 rgb(185 0 76 / 33%), 0 0 0 0 rgb(185 0 76 / 63%);
    }
    40%{
      box-shadow: 0 0 0 50px rgba(99, 69, 238,0), 0 0 0 0 rgb(185 0 76 / 47%);
    }
    80%{
      box-shadow: 0 0 0 50px rgba(99, 69, 238,0), 0 0 0 30px rgba(99, 69, 238,0);
    }
    100%{
      box-shadow: 0 0 0 0 rgba(99, 69, 238,0), 0 0 0 30px rgba(99, 69, 238,0);
    }
  }
  /* grow effect */
  @keyframes grow{
    0%{
      transform: translate(-50%, -50%) scale(1.0);
    }
    40%{
      transform: translate(-50%, -50%) scale(1.1);
    }
    80%{
      transform: translate(-50%, -50%) scale(0.8);
    }
    100%{
      transform: translate(-50%, -50%) scale(1.0);
    }
  }
  /* bounce-y */
  @keyframes bounce-y{
    0%{
      transform: translateY(0);
    }
    50%{
      transform: translateY(-30px);
    }
    100%{
      transform: translateY(0);
    }
  }
  /* bounce-x */
  @keyframes bounce-x{
    0%{
      transform: translateX(0);
    }
    50%{
      transform: translateX(30px);
    }
    100%{
      transform: translateX(0);
    }
  }
/*end*/

@media (max-width: 991px){
  body{
    overflow-x: hidden;
  }
  /*end*/
}

@media (max-width: 767px){
  body{
    font-size: 14px;
  }
  .m_off{
    display: none!important;
  }
  .m_on{
    display: block!important;
  }
  header{
    /*height: 68px;*/
  }
  .navbar{
    backdrop-filter: blur(5px);
  }
  .navbar .brand{    
    width: 180px;
    height: 71px;
  }
  .navbar.navbtmenu{
    top: 132px;
    /*background: rgb(0 0 0 / 50%);*/
    backdrop-filter: blur(5px);
  }
  .btcats .menu{
    /*white-space: nowrap;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;*/
  }
  .btcats .menu li{
    display: block;
  }
  .navbar .menu .sub-menu{
    position: relative;
    top: 0;
    width: 100%;
    text-align: center;
  }
  .navbar .menu li:hover > .sub-menu{
    top: 0;
  }
  .btcats .menu li .navcticn{
    padding: 10px 5px;
    margin-left: 5px;
  }

  .flxcont h1{
    font-size: 38px;
  }
  .flx {
    min-height: calc(28vh - 75px);
    margin-top: 160px;
  }
  .vid_info h2{
	font-size: 54px;
  }
  .scrollicon{
    bottom: 55px;
  }
  .mute-button{
    bottom: 62px;
  }
  .section-1{
    height: auto;
  }
  .showcase, .showcase .bgimg {
    min-height: calc(40vh - 0px);
    height: 400px;
  }
  .showcase .up_lable h1{
    font-size: 34px;
    -webkit-line-clamp: 4;
  }
  .showcase .up_lable p{
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .ht_card{
    margin-bottom: 30px;
  }

  .sec-abt:before{
    top: 40%;
  }
  .sec-abt:after{
    left: unset;
    right: 0;
  }

  .contact-us .contmap{
    padding-bottom: 100%;
  }

  .menu_opt{
    display: flex;
    background: #fff;
    box-shadow: 0 -10px 20px rgb(0 0 0 / 20%);
  }

  .footer {
    padding-bottom: 40px;
  }
  .fpoints{
    text-align: center;
  }
  .fpoints ul li{
    display: inline-block;
    padding: 5px 10px;
  }
  .footer::after{
    width: 140px;
    height: 180px;
    background-size: cover;
    bottom: unset;
    top: 0;
  }
}

