html{
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body{
  padding: 0;
  margin: 0;
  background: #fffdf3;
  font-size: 16px;
  line-height: 1.5;
  /*overflow-x: hidden;*/
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--dark-color);
}
.overflowon{
  overflow-y: auto;
}
.overflowoff{
  overflow-y: hidden; 
}
*{
  outline: none!important;
  transition: .3s ease-in-out;
}
img{
  max-width: 100%;
}
table{
  width: 100%;
}
a{
  text-decoration: none!important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  /*font-family: 'DM Serif Text', serif;*/
  font-family: 'Cinzel Decorative', cursive;
}
.m_on{
  display: none;
}
.displayoff{
  display: none!important;
}

/*color*/
  :root {
    --primary-color: #6a4291;
    --secondary-color: #F1838E;
    --color3: #636363;
    --txtcolor1:  #6a4291;
    --txtcolor2:  #000;
    --dark-color: #141414;
    --light-color: #f4f4f4;
    --black: #000000;
    --white: #ffffff;
    --lightgray: #fff0f0;
  }
  .transparent{
    background: transparent;
  }
  .primaryBG {
    background: var(--primary-color);
  }
  .secondaryBG {
    background: var(--secondary-color);
  }
  .blackBG{
    background: var(--black);
  }
  .whiteBG{
    background: var(--white);
  }
  .lightgrayBG{
    background: var(--lightgray);
  }
  .bg1{
    background: var(--primary-color);
  }
  .bg2{
    background: var(--secondary-color);
  }
  .blackTXT{
    color: var(--black);
  }
  .whiteTXT{
    color: var(--white);
  }
  .grayTXT{
    color: #979797;
  }
  .txtcolor1{
    color: var(--txtcolor1);
  }
  .txtcolor2{
    color: var(--txtcolor2);
  }
/*end*/

/*Typography*/
  .captext{
    text-transform: uppercase;
  }
  .heading{
    position: relative;
    font-size: 46px;
    margin: 0;
    /*color: var(--primary-color);*/
  }
  .heading b, .heading strong{
    font-weight: 700;
  }
  .heading span{
    /*border-bottom: 2px solid var(--primary-color);*/
    padding: 2px 0;
  }
  .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-size: 30px;
  }
  .heading2 b span{
    padding: 0 10px;
    color: var(--secondary-color);
    font-size: 32px;
  }
  .vewall{
    color: var(--secondary-color);
    padding: 8px 10px;
    border-radius: 50px;
  }
  .vewall i{
    color: #fff;
  }
  .vewall:hover{
    color: #fff;
    background: var(--primary-color);
  }
  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);
  }
  .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;
  }
  .plr_0{
    padding-left: 0;
    padding-right: 0;
  }
  .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;
}
.fa-font:before, .fa-font:after, .fa-font li:before, .fa-font li:after{    
  font: normal normal normal 14px/1 FontAwesome;
  content: none;
}

/*Breadcrumb*/
  .breadcrumb {
    margin-bottom: 20px;
    margin-top: 0px;
    border-radius: 0px;
    font-size: 12px;
  }
/*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;
  }
  .justify-content-center{
    justify-content: center;
  }
/*end*/

/*header alert*/
  .alertinfo{
    height: 40px;
    overflow: hidden;
    background: var(--secondary-color);
    top: -5px;
    position: relative;
    color: var(--txtcolor2);
    padding: 0 35px;
  }
  header.alerthas.fixed{
    height: 106px;
  }
  .alerthas .navbar.navbtmenu{
    top: 106px;
  }
  .alertinfo .close{
    position: absolute;
    top: 5px;
    right: 10px;
    color: #b11a1a;
    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;
  }
  @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: 66px;*/
  }
  .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 110px rgb(106 66 145 / 20%);
  }
  .navbar .container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .fixed .navbar.navbtmenu{
    box-shadow: 0 10px 15px rgb(0 0 0 / 6%);
  }
  .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;
  }
  .navbar .brand.wlogo{
    display: block;
  }
  .fixed .navbar .brand.wlogo{
    display: none;
  }
  .navbar .brand.clrlogo{
    display: none;
  }
  .fixed .navbar .brand.clrlogo{
    display: block;
  }
  .navbar-fixed-top .container .row{
    display: flex;
    align-items: center;
  }
  .navbar .navbar-header{
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }
  .navbar .navbar-brand{
    padding: 5px 0;
    margin-left: 0 !important;
  }
  .fxmenu{
    flex-grow: 1;
  }
  .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;
    /*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: #255946;
  }
  .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 .brand{
    max-width: 400px;
    margin: 1px auto;
    max-height: 54px;
    object-position: left;
  }
  .squize.navbar .brand{
    /*max-width: 75px;*/
  }
  .navbar-default .navbar-collapse{
    /*padding: 10px 0;*/
    flex-grow: 1;
    width: 100%;
  }
  #menu-header-menu{
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin: 0;
    border-top: 1px solid rgb(189 189 189 / 50%);
    align-items: center;
  }
  .navbar .menu{
    padding: 0;
    text-align: right;
    margin: 10px 0;
  }
  .navbar .menu.menu-text-left{
    text-align: left;
  }
  .navbar .menu li{
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 7px 5px;
    margin: 5px;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 70px;
    font-family: 'Cinzel Decorative', cursive;
  }
  .navbar .menu li:hover{
    background: var(--primary-color);
  }

  .navbar .menu li.card{
    background: linear-gradient(125.7deg, rgb(49 0 98) 25.43%, rgb(72 28 116) 74.38%);
    text-align: center;
    border: 2px solid rgb(255 255 255);
  }

  @property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  .navbar .menu li.card::after, .navbar .menu li.card::before{
    content: '';
    position: absolute;
    height: calc(100% + 6px);
    width: calc(100% + 10px);
    background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 3px;
    border-radius: 50px;
    animation: 3s spin linear infinite;
  }
  .navbar .menu li.card::before{
    filter: blur(1.5rem);
    opacity: 0.5;
  }
  @keyframes spin{
    from{
      --angle: 0deg;
    }
    to{
      --angle: 360deg;
    }
  }
  /*.navbar .menu li.special{
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(125.7deg, rgb(94 24 163) 25.43%, rgb(133 26 234) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    transition: .2s linear;
    color: #fff;
    z-index: 1;
  }
  .navbar .menu li.special::after, .navbar .menu li.special::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 3px;
    border-radius: 10px;
    animation: 3s spin linear infinite;
  }
  .navbar .menu li.special::before {
    filter: blur(1.5rem);
    opacity: 0.5;
  }*/
  /*.navbar .menu li.special:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: conic-gradient(red, yellow, green);
    z-index: 1;
    border-radius: 50px;
  }
  .navbar .menu li.special:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(125.7deg, rgb(94 24 163) 25.43%, rgb(133 26 234) 74.38%);
    border: 2px solid rgb(255 255 255 / 0%);
    z-index: 2;
    border-radius: 50px;
  }
  .navbar .menu li.special:hover{
    transform: scale(1.05);
  }*/
  .navbar .menu li.callbtn{
    background: rgb(0 0 0 / 11%);
    border: 2px solid #fff;
    padding: 5px 0px;
    animation: phonering-rotate 1s infinite ease-in-out;
  }
  .navbar .menu li.callbtn:hover{
    background: #fff;
    border: 2px solid var(--primary-color);
  }
  .navbar .menu li.callbtn a{
    padding-left: 6px;
  }
  .navbar .menu li.callbtn:hover a{
    color: var(--primary-color);
  }
  .navbar .menu li.callbtn i{
    animation: pulsh 5s infinite;
    padding: 7px 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 5px;
    background: #fff;
    color: var(--primary-color);
  }
  .navbar .menu li a{
    text-decoration: none;
    color: #fff;  
    padding: 7px 12px;
    font-weight: 600;
  }
  .fixed .navbar .menu li a{
    color: #000000;  
  }
  .navbar .menu li:hover a{
    color: #fff;
  }
  .navbar .menu li.special a{
    color: #fff!important;
    opacity: 1;
  }
  .navbar .menu li.special:hover a{
    opacity: 1;
  }
  .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(--primary-color);
    z-index: 9;
    transition: .2s;
    border-radius: 20px;
    box-shadow: 0px 15px 50px rgb(0 0 0 / 20%);
  }
  .navbar .menu li i{
    color: #fff;
  }
  .fixed .navbar .menu li i{
    color: #000000;
  }
  .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: 40px;
  }
  .navbar .menu .sub-menu li{
    display: block;
    text-align: left; 
    margin: 0;
    font-family: 'Poppins';
  }
  .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: #fff;
    letter-spacing: 0;
    width: 100%;
    display: block;
    padding: 2px 10px;
    font-weight: 300;
  }
  .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: 66px;
    box-shadow: none;
    z-index: 9999;
    position: fixed;
    width: 100%;
  }
  .navbar .menu .menu-item.active {
    background: var(--primary-color);
    border-radius: 50px;
  }
  .navbar .menu .menu-item.active a {
    color: #fff;
  }
  .btcats{
    margin: 0;
    color: #000;
    border-top: 1px dashed rgb(169 169 169 / 35%);
  }
  .fixed .btcats{
    background: #fff;
    color: #000;
  }
  .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: #255946;
  }
  .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 0;
    padding: 6px 10px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
  }
  .btcats .menu li:hover{
    background: var(--secondary-color);
  }
  .btcats .menu .sub-menu li:hover{
    background: #f3dbb8;
  }
  .btcats .menu .sub-menu li{
    text-align: left;
    padding: 0;
    font-size: 16px;
  }
  .btcats .menu li a{
    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*/

/*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 / 15%), rgb(0 0 0 / 6%), rgb(0 0 0 / 15%), rgb(0 0 0 / 70%));
    z-index: 1;
  }
  .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;
  }
  .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;
  }
  .showcase{
    border-radius: 0;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
  .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: 130% 130%;
    min-height: calc(100vh - 75px);
    height: 460px;
    width: 100%;
    transition: 3s ease-in-out;
  }
  .showcase .swiper-slide-active .bgimg{
    background-size: 100% 100%;
  }
  .showcase .up_lable{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -40%);
    padding: 15px;
  }
  .showcase .up_lable h1{
    font-size: 80px;
    color: rgb(255 255 255 / 20%);
    font-weight: 700;
    -webkit-text-stroke: .5px #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 p{
    font-size: 18px;
    max-width: 600px;
    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: .3s;
    margin-top: 30px;
    border-radius: 50px;
    box-shadow: 0 15px 20px rgb(34 0 67 / 21%);
  }
  .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(106 66 145), rgb(0 0 0 / 35%), rgb(0 0 0 / 35%), rgb(0 0 0 / 35%), rgb(0 0 0 / 35%));
  }
  .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*/

/*Top info*/
  .client-box{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
  }
  .client-box .icon{
    width: 40px;
  }
  .client-box .m-l-10{
    max-width: calc(100% - 40px);
    font-size: 12px;
  }
  .client-box .m-l-10 .info{
    font-weight: 700;
    font-size: 14px;
  }
  .client-box .m-l-10 .text{
    text-transform: uppercase;
  }
/*end*/

/*About property*/
  .sec-information{
    background: #fffdf3;
    overflow: hidden;
  }
  .sec-information.bg2{
    background: #ffecee;
  }
  .sec-information .sub-heading{
    font-family: 'Inter';
    color: var(--secondary-color);
  }
  .ttl_dgn1{
    position: relative;
  }
  .ttl_dgn1:after{
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: 35px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50px;
  }
  .sec-information .infm-info p{    
    margin-bottom: 13px;
    font-size: 16px;
  }
  .sec-information .btn-theme{
    padding: 12px 20px 12px 53px;
    color: #ffffff;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    box-shadow: 3px 7px 10px 0px rgb(106 66 145 / 44%), 7px 17px 50px 0px rgb(106 66 145 / 28%);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .3s;
    position: relative;
  }
  .sec-information .btn-theme:hover{
    transform: scale(1.1);
    padding: 12px 53px 12px 20px;
  }
  .sec-information .btn-theme i{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--secondary-color);
    font-size: 12px;
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    transition: .7s;
  }
  .sec-information .btn-theme:hover i{
    left: calc(100% - 40px);
    box-shadow: 0px 0px 0px 4px rgb(241 131 142 / 15%), 0px 0px 0px 9px rgb(241 131 142 / 15%), 0px 0px 0px 14px rgb(241 131 142 / 15%);
  }
  .sec-information .infm-info img{
    width: unset;
  }
  .sec-information .swiper-singlegallery{
    overflow: hidden;
  }
  .sec-information .swiper-button-disabled{
    opacity: 0;
  }
  .sec-information .infm-right-img{
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .sec-information .infm-right-img:after, .sec-information .infm-right-img:before{
    content: "";
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    border: 3px solid #fff;
    background: rgb(0 0 0 / 0%);
    z-index: 2;
    opacity: .5;
    transition: 1s;
  }
  .sec-information .infm-right-img:after{
    width: calc(100% + 15px);
  }
  .sec-information .infm-right-img:before{
    height: calc(100% + 15px);
  }
  .sec-information .swiper-slide-active .infm-right-img:after, .sec-information .swiper-slide-active .infm-right-img:before{
    transform:  translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  .sec-information .infm-right-img img{
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
  }
  .sec-information .photo_dgn{
    position: relative;
    text-align: right;
    padding-bottom: 150px;
  }
  .sec-information .photo_dgn .style1{
    width: 85%;
    right: 5%;
    border: 10px solid #fff;
    border-bottom: 20px solid #fff;
    position: relative;
    transform: rotate(3deg);
    box-shadow: -5px 7px 20px rgb(0 0 0 / 21%);
    aspect-ratio: unset;
  }
  .sec-information .photo_dgn .style2{
    width: 50%;
    border: 10px solid #fff;
    border-bottom: 20px solid #fff;
    transform: rotate(-3deg) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: -5px 7px 20px rgb(0 0 0 / 21%);
    aspect-ratio: unset;
  }
  .col_two{
    width: 50%;
  }
  .flatconfig{
    padding: 0;
    list-style: none;
  }
  .flatconfig li{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  .flatconfig .icon{
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    /*overflow: hidden;*/
    border-radius: 50%;
  }
  .flatconfig .icon svg{
    width: 60px;
    height: 60px;
    left: -15px;
    bottom: -2px;
    position: relative;
  }
  .flatconfig .info{
    width: calc(100% - 60px);
  }
  .flatconfig .info h3{
    color: var(--primary-color);
    margin: 10px 0 5px 0;
  }
  .flatconfig .info p{
    font-size: 14px;
    margin: 0;
  }
  .flatconfig li h4{
    width: 100%;
    font-weight: 700;
    font-family: 'Inter';
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0;
  }
  .flatconfig.vt_btns li{
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  .flatconfig li a{
    width: 100%;
    text-align: center;
  }
  .flatconfig li .btn1{
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    background: rgb(0 0 0 / 0%);
    margin: 5px;
    padding: 10px 48px 10px 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-size: 12px;
  }
  .flatconfig li .btn1 i{
    animation: pulsh 5s infinite;
    width: 30px;
    height: 30px;
    line-height: 2.6;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    padding-left: 3px;
  }
  .flatconfig li .btn1:hover{
    background: var(--primary-color);
    color: #fff;
    animation: pulsh 5s infinite;
  }
  .flatconfig li .btn1:hover i{
    animation: none;
    background: var(--secondary-color);
  }
  .sec-information .btn2{
    min-width: 170px;
    padding: 12px 18px;
    background: var(--primary-color);
    color: #fff;
    position: relative;
    left: -10px;
  }
  .sec-information .btn2:hover{
    animation: pulsh 5s infinite;
  }
/*end*/

/*Aminities and specifications*/
  .aminities{
    position: relative;
    overflow: hidden;
  }
  .aminities .nav-tabs{
    border-bottom: 1px solid var(--secondary-color);
    width: 100%;
    background: var(--secondary-color);
    border-radius: 7px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
  }
  .aminities .nav-tabs li{
    width: 50%;
  }
  .aminities .nav-tabs li a{
    color: #fff;
    border: none !important;
    padding: 20px;
    font-family: 'Cinzel Decorative';
    font-weight: 700;
  }
  .aminities .nav-tabs li a:hover{
    background: rgb(0 0 0 / 6%);
    border: none;
  }
  .aminities .nav-tabs li.active a{
    background: var(--primary-color);
    color: #fff;
  }
  .aminities .tab-content{
    
  }
  .aminities .tab-content .tab-pane{
    
  }
  .aminities .tab-content .tab-pane.active{
    
  }
  .aminities .tabinfo{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 30px 0;
    padding: 0;
  }
  .aminities .tabinfo>li{
    position: relative;
    list-style: none;
    padding: 30px 15px;
    background: #fff;
    box-shadow: 3px 15px 40px rgb(106 66 145 / 15%);
    border-radius: 15px;
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .aminities .tabinfo li>img{
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  .aminities .tabinfo li>h4{
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter';
    width: 100%;
  }
  .aminities .tabinfo.spects li:after{
    content: "\f08e";
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 10px;
    color: var(--secondary-color);
    line-height: 1.4;
    font-size: 10px;
  }
  .aminities .tabinfo.spects> li:hover, .aminities .tabinfo.spects> li.active{
    cursor: pointer;
    background: var(--primary-color);
  }
  .aminities .tabinfo.spects>li:hover>h4, .aminities .tabinfo.spects>li.active>h4{
    color: #fff;
  }
  .aminities .tabinfo.spects li:hover:after, .aminities .tabinfo.spects li.active:after{
    color: #fff;
  }
  .aminities .tabinfo.spects> li:hover img, .aminities .tabinfo.spects> li.active img{
    filter: brightness(1.5) hue-rotate(90deg);
  }
  .aminities .tabinfo.aminiti> li:hover{
    background: var(--secondary-color);
  }
  .aminities .tabinfo.aminiti>li:hover>h4{
    color: #fff;
  }
  .aminities .tabinfo.aminiti> li:hover img{
    filter: brightness(1) hue-rotate(40deg);
  }
  .aminities .tabinfo.spects .moreview{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%);
    width: 600px;
    max-width: 90%;
    max-height: 80vh;
    overflow: auto;
    text-align: left;
    background: #fff;
    z-index: 99999;
    box-shadow: 0 5px 55px rgb(0 0 0 / 15%);
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    transition: .6s;
  }
  .aminities .tabinfo.spects .active .moreview{
    transform: translate(-50%, -50%);
    visibility: visible;
    opacity: 1;
  }
  .aminities .tabinfo.spects .moreview .close_opt{
    position: absolute;
    right: 15px;
    top: 7px;
    font-size: 24px;
    transform: rotate(45deg);
    z-index: 2;
    padding: 5px;
    cursor: pointer;
  }
  .aminities .tabinfo.spects .moreview>img{
    margin: 0 auto;
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: none !important;
  }
  .aminities .tabinfo.spects .moreview>h4{
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 22px;
    position: relative;
    margin-bottom: 40px;
  }
  .aminities .tabinfo.spects .moreview>h4:after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 12px);
    width: 30px;
    height: 5px;
    border-radius: 5px;
    background: var(--primary-color);
  }
  .aminities .tabinfo.spects .moreview ul{
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }
  .aminities .tabinfo.spects .moreview li{
    position: relative;
    padding-left: 30px;
    font-family: 'Inter';
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .aminities .tabinfo.spects .moreview li:after{
    content: "\f00c";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-family: FontAwesome;
    font-size: 13px;
    color: var(--secondary-color)!important;
  }
  .overlay{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100vw;
    height: 100vh;
    background: rgb(36 0 71 / 22%);
    backdrop-filter: blur(3px);
    filter: blur(100px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
  }
  .overlay.active{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.0);
    filter: blur(0);
  }
/*end*/

/*Advertising*/
  .advtt{

  }
  .advtt .adimg{
    display: block;
    max-width: 900px;
    margin: 0 auto;
  }
  .advtt .adimg img{
    border-radius: 15px;
    box-shadow: 5px 14px 40px rgb(37 0 74 / 31%);
    transition: .3s;
  }
  .advtt .adimg:hover img{
    transform: scale(1.02);
  }
  .advtt .adimg.hasvideo{
    
  }
  .advtt .btn{
    border: 3px solid var(--secondary-color);
    color: var(--secondary-color);
    background: rgb(0 0 0 / 0%);
    margin: 5px;
    padding: 12px 45px 12px 18px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 200px;
    position: relative;
  }
  .advtt .btn i{
    animation: pulsh 5s infinite;
    width: 30px;
    height: 30px;
    line-height: 2.2;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
  }
  .advtt .btn1{
    
  }
  .advtt .btn2{
    background: var(--secondary-color);
    color: #fff;
  }
  .advtt .btn2 i{
    padding-left: 3px;
    background: var(--primary-color);
  }
/*end*/

/*plans*/
  .plans{

  }
  .plan .sub-heading{
    color: var(--primary-color);
    text-align: center;
  }
  .plan .ttl_dgn1:after{
    left: 50%;
    transform: translateX(-50%);
  }
  .plan a{
    display: block;
    position: relative;
  }
  .plan a i{
    position: absolute;
    z-index: 2;
    right: 15px;
    top: 15px;
    font-size: 20px;
    color: #424242;
    -webkit-text-stroke: .5px rgb(255 255 255 / 62%);
  }
  .plan img{
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    box-shadow: 0 5px 50px rgb(0 0 0 / 15%);
    transition: 1s;
    cursor: pointer;
  }
  .plan img:hover{
    object-position: bottom center;
  }
  .plans .btn{
    min-width: 170px;
    padding: 12px 18px;
    background: var(--primary-color);
    color: #fff;
    position: relative;
    left: -10px;
    animation: pulsh 7s infinite;
  }
  .plans .btn:hover{
    animation: pulsh 3s infinite;
  }
/*end*/

/*Gallery*/
  .gallery{
    overflow: hidden;
  }
  .gallery .heading2{
    color: var(--primary-color);
  }
  .clctn{
    position: relative;
  }
  .clctn .thumb_img{
    width: 100%;
  }
  .clctn .thumb_img img{
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .clctn .item_info{
    position: absolute;
    bottom: -1px;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 60%), rgb(0 0 0 / 50%), rgb(0 0 0 / 0%));
    left: 50%;
    transform: translateX(-50%);
    padding: 30px 0 0px;
    width: 100%;
    box-shadow: 0 15px 40px rgb(0 0 0 / 10%);
  }
  .clctn h4{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    margin: 0.5em auto 0.5em;
    padding: 0 15px;
  }
  .swiper-collections .swiper-slide{
    transition: .4s;
    opacity: .5;
  }
  .swiper-collections .swiper-slide-next{
    transform: scale(1.5);
    z-index: 3;
    opacity: 1;
  }
  .swiper-collections .swiper-slide-next .clctn{
    box-shadow: 0 5px 70px rgb(0 0 0 / 12%);
  }
  .swiper-collections .swiper-button-next, .swiper-collections .swiper-button-prev{
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    width: 44px;
    border-radius: 50%;
  }
  .swiper-collections .swiper-button-next:after, .swiper-collections .swiper-button-prev:after {
    color: #fff;
    font-size: 20px;
  }
  .gallery .btn{
    min-width: 170px;
    padding: 12px 18px;
    background: var(--secondary-color);
    color: #fff;
    position: relative;
    left: -10px;
    animation: pulsh 7s infinite;
  }
  .gallery .btn:hover{
    animation: pulsh 3s infinite;
    background: var(--primary-color);
  }
/*end*/

/*Map info*/
  .map_view{
    background: #fff;
    position: relative;
  }
  .map_view .maincont{
    align-items: stretch;
  }
  .map{
    padding: 0;
  }
  .map iframe{
    position: absolute;
    width: 50vw;
    height: 100%;
    top: 0;
    right: 0;
    background: gray;
  }
  .map_info{
    padding-left: 30px;
  }
  .map_info .sub-heading{
    color: var(--primary-color);
  }
  .map_info .ttl_dgn1:after{
    
  }
  .map_info ul{
    padding: 0;
    margin: 0;
    align-items: flex-start;
    gap: 15px;
  }
  .map_info li{
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
    width: calc(50% - 15px);
  }
  .map_info li .icon{
    width: 70px;
  }
  .map_info li:hover .icon{
    transform: scale(1.2);
  }
  .map_info li .icon img{
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: left center;
  }
  .map_info li .info{
    width: calc(100% - 70px);
  }
  .map_info li .info h4{
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 36px;
    margin: 0;
  }
  .map_info li .info p{
    margin: 0;
    font-size: 14px;
  }
/*end*/

/*Whatsapp and call button*/
  .fxbtn{
    position: fixed;
    z-index: 99;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 30px;
    text-align: center;
    padding: 0px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgb(0 0 0 / 24%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .scrolled .fxbtn{
    bottom: 75px;
  }
  .fxbtn:hover{
    transform: scale(1.1);
  }
  .fxwp{
    color: #ffffff;
    background: #4caf50;
  }
  .fxcall{
    color: var(--primary-color);
    background: #fff;
    bottom: 75px;
  }
  .scrolled .fxcall{
    bottom: 135px;
  }
/*end*/

/*Popup*/
  #popup{
    z-index: 99999;
  }
  .modal-backdrop{
    z-index: 9999;
    backdrop-filter: blur(3px);
    opacity: 1 !important;
    background: rgb(53 0 62 / 20%);
  }
  #popup .modal-dialog{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 90vh;
    max-width: 90%;
    width: 580px;
    border-radius: 0;
    margin: 0;
    overflow: auto;
    box-shadow: 1px 7px 80px rgb(0 0 0 / 24%);
    border: .3px solid #fff;
    background: var(--primary-color);
  }
  #popup .modal-content{
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    width: 100%;
    max-height: unset;
    border: none;
    background: var(--primary-color);
  }
  .popup .modal-header{
    border: none;
    padding-bottom: 0;
    position: sticky;
    top: 0;
  }
  .popup .close{
    color: #fff;
    opacity: 1;
  }
  .popup .modal-body{

  }
  .popupcont{

  }
  .popupcont .pp_hdr{
    position: relative;
    top: -15px;
  }
  .popupcont .pp_hdr img{
    width: 140px;
    margin-bottom: 15px;
  }
  .popupcont .pp_hdr h4{
    color: var(--secondary-color);
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .popupcont .pp_hdr h2{
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: .5px solid rgb(255 255 255 / 34%);
    padding-bottom: 25px;
  }
  .popupcont .enq_form{

  }
  .popupcont .enq_form form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
  }
  .popupcont .enq_form label{
    color: #fff;
    font-weight: 400;
    font-family: 'Cinzel Decorative';
    display: block;
    font-size: 14px;
  }
  .popupcont .enq_form input, .popupcont .enq_form textarea{
    width: 100%;
    max-width: 100%;
    max-height: 70px;
    border: none;
    border-radius: 0;
    padding: 7px 15px;
    margin: 0px 0 20px;
    background: rgb(255 255 255 / 10%);
    border-bottom: 1px dashed #fff;
    color: #fff;
  }
  .popupcont .enq_form .btn{
    padding: 10px 15px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 25px;
    background: var(--secondary-color);
    color: #fff;
    /*animation: pulsh 5s infinite;*/
    transition: .3s;
  }
  .popupcont .enq_form .btn:hover{
    transform: scale(1.02) translateY(-4px);
    box-shadow: 4px 6px 0px rgb(0 0 0 / 30%);
  }
  #loader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255 255 255 / 18%);
    z-index: 2;
    cursor: progress;
    backdrop-filter: blur(2px);
  }

  .spinner {
    border: 5px solid var(--secondary-color);
    border-top: 5px solid #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: loaderspin 2s linear infinite;
    z-index: 2;
  }

  @keyframes loaderspin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
/*end*/

/*Footer*/ 
  .mainfooter{
    background: var(--secondary-color);
  }
  .mainfooter p.identity{
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Poppins';
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    border: none;
  }
  .mainfooter p{
    padding-top: 10px;
    border-top: 1px solid rgb(255 255 255 / 30%);
    font-size: 12px;
    text-align: left;
    color: #4c272b;
  }
  .mainfooter img{
    max-height: 70px;
    object-fit: contain;
    margin: 0;
    width: 120px;
    background: white;
    padding: 5px;
    border-radius: 10px;
  }
  .mainfooter h5{
    font-family: 'Poppins';
    font-size: 12px;
    color: #4c272b;
    margin-bottom: 10px;
  }
  .ftr_form{
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: var(--primary-color);
    padding: 12px 0;
    transition: .3s;
    transform: translateY(200%);
  }
  .scrolled .ftr_form{
    transform: translateY(0%);
  }
  .ftr_form .flxcontrol{
    justify-content: space-between;
    gap: 10px;
  }
  .ftr_form input, .ftr_form select{
    width: 100%;
    background: rgb(0 0 0 / 0%);
    border: none;
    border-bottom: 1px dashed #fff;
    padding: 8px 0;
    color: #fff;
  }
  .ftr_form input:hover, .ftr_form select:hover, .ftr_form input:active, .ftr_form select:active{
    border-bottom: 1px dashed var(--secondary-color);
  }
  .ftr_form input::placeholder, .ftr_form select::placeholder{
    color: rgb(255 255 255 / 100%);
  }
  .ftr_form select option{
    color: #000;
  }
  .ftr_form .btn{
    min-width: 170px;
    padding: 12px 18px;
    background: var(--secondary-color);
    color: #fff;
    position: relative;
    /*animation: pulsh 7s infinite;*/
  }
  
  #loader2 {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255 255 255 / 18%);
    z-index: 2;
    cursor: progress;
    backdrop-filter: blur(2px);
  }

  #loader2 .spinner {
    width: 30px;
    height: 30px;
  }
/*Footer end*/

/*extra*/
  #ignore {
    display: none!important;
  }
  .blurFadeIn{
    animation-name: blurFadeIn;
    -webkit-animation-name: blurFadeIn;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    opacity: 1;
    animation-delay: var(--d);
    transition: .3s ease-in-out;
  }
  .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;
  }
  .scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    line-height: 25px;
    right: 10px;
    bottom: 100px;
    padding-top: 2px;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .scroll-top-wrapper:hover {
    background-color: black;
  }
  .scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
    opacity: 1;
  }
  .scroll-top-wrapper i.fa {
    line-height: inherit;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
    color: var(--secondary-color);
    font-size: 30px;
  }
/*end*/

/*Animations*/
  /* blur animation */
  @keyframes blurFadeIn {
    0% {
      transform: scale(2.5);
      opacity: 0;
      filter: blur(5px);
    }

    100% {
      transform: scale(1);
      opacity: 1;
      filter: blur(0);
    }
  }
  @-webkit-keyframes blurFadeIn {
    0% {
      transform: scale(2.5);
      opacity: 0;
      filter: blur(5px);
    } 
    100% {
      transform: scale(1);
      opacity: 1;
      filter: blur(0);
    }
  }
  @keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-70%);
    } 
    100% {
      opacity: 1;
      -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 pulsh{
    0%{
      box-shadow: 0 0 0 0 rgb(106 66 145 / 44%), 0 0 0 0 rgb(106 66 145 / 65%);
    }
    40%{
      box-shadow: 0 0 0 50px rgba(99, 69, 238, 0), 0 0 0 0 rgb(106 66 145 / 50%);
    }
    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);
    }
  }
  @keyframes phonering-rotate {
    0% {
      transform: rotate(0);
    }
    10% {
      transform: rotate(-2deg) translateX(1px);
    }
    20% {
      transform: rotate(3deg) translateX(0px);
    }
    30% {
      transform: rotate(-3deg) translateX(0px);
    }
    40% {
      transform: rotate(2deg) translateX(-1px);
    }
    50% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(0);
    }
  }
/*end*/

@media (max-width: 992px){
  .m_off9{
    display: none;
  }

  /*Header*/
    header {
      /*height: 80px;*/
    }
    .navbar{
      padding: 7px 0 7px;
      background: var(--primary-color);
    }
    .navbar .container{
      display: block;
    }
    .navbar .navbar-header{
      display: block;
    }
    .fxmenu{
      width: 100%;
    }
    .fxmenu .menu{
      width: 100%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: nowrap;
      margin-bottom: 0;
    }
    #menu-header-menu{
      display: block;
    }
    .navbar .brand {
      object-fit: contain;
      object-position: left;
      max-width: 250px;
      margin: 0;
      height: 40px;
    }
    .navbar.navbtmenu{

    }
    .navbar-toggle {
      /*margin-top: 20px;*/
    }   
    .navbar-default .navbar-toggle{
      margin: 10px 5px 0 0;
    }
    .navbar-default .navbar-collapse{
      margin-top: 15px;
      margin-left: 0;
    }
    .navbar .menu li{
      display: block;
    } 
    .navbar .menu li .navcticn{
      position: absolute;
      padding: 4px 10px;
    }
    .navbar .menu li.subscribebtn{
      margin-bottom: 25px;
    }
    .navbar .menu .sub-menu{
      position: relative;
      top: 0!important;
      width: 100%;
      padding: 5px;
      background: transparent;
    }
    .navbar .menu li:hover:after {
      display: none;
    }
    .navbar .menu .sub-menu li{
      background: rgb(255 255 255 / 11%);
      margin-top: 10px;
    }
    .navbar .menu .sub-menu li a{
      color: white;
    }    
    .navbar .menu li .sub-menu.active{
      display: block!important;
    }
  /*end*/

  .showcase .uspline{
    font-size: 36px;
  }
}

@media (max-width: 767px){
  body{
    font-size: 14px;
  }
  .m_off{
    display: none!important;
  }
  .m_on{
    display: block!important;
  }

  .heading{
    font-size: 28px;
  }

  .breadcrumb{
    margin-top: 0;
  }

  /* Video banner */
    .sec-video{
      position: relative;
      overflow: hidden;
      min-height: unset; 
      aspect-ratio: 4 / 3;
      width: 100%;
      z-index: 1;
      margin-top: 110px;
    }
    .video-cont{
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100%;
      height: 100%;
      transform: translate(-100%, -50%);
    }
    #background-video{
      height: 100%;
    }
    .scrollicon{
      display: none;
    }
  /*end*/

  /*banner*/
    .section-1{  

    }
    .showcase{

    }
    .showcase .bgimg{
      min-height: calc(40vh - 50px);
      height: calc(50vh - 50px);
      background-position: center;
    }
    .showcase .up_lable{
      padding: 0 40px;
    }
    .showcase .up_lable h1{
      font-size: 25px;
      margin-bottom: 5px;
      -webkit-line-clamp: 3;
    }
    .showcase .up_lable p{
      font-size: 12px;
    }
    .section-graph.pddt_70{
      padding-top: 0;
    }
    .section-graph.pddt_70 .pddt_70.pddb_70 {
      padding-top: 20px;
      padding-bottom: 30px;
      text-align: center;
    }
    .tp_post li .thumb{
      height: 86px;
    }
    .showcase .uspline{
      font-size: 22px;
      top: 70px;
      padding: 5px 10px;
    }
    .showcase .up_lable .readfull{
      font-size: 12px;
      padding: 8px 20px 8px 20px;
      margin-top: 15px;
    }
    .showcase .swiper-button-prev:after,
    .showcase .swiper-button-next:after{
      width: 30px;
      height: 20px;
    }
    .section-1 .swiper-button-prev{
      left: 0;
    }
    .section-1 .swiper-button-next{
      right: 0;
    }
  /*end*/

  /* Top info */
    .topinfo{
      position: relative;
    }
    .topinfo:after, .topinfo:before{
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      opacity: .3;
    }
    .topinfo:after{
      width: 90%;
      height: 1px;
    }
    .topinfo:before{
      width: 1px;
      height: 90%;
    }
  /* end */

  /* Collections */
    .gallery .swiper-slide-next{
      transform: scale(0);
      z-index: 1;
      opacity: .5;
    }
    .gallery .swiper-slide-active{
      transform: scale(1.1);
      z-index: 3;
      opacity: 1;
    }
    .gallery .swiper-slide-next .clctn{
      box-shadow: none;
    }
    .gallery .swiper-slide-active .clctn{
      box-shadow: 0 5px 70px rgb(0 0 0 / 12%);
    }
  /*end*/

  /* map info */
    .map iframe{
      position: relative;
      width: 100%;
      min-height: 50vh;
    }
    .map_info li{
      width: 100%;
    }
  /* end */

  /*Whatsapp and call button*/
    .scrolled .fxbtn{
      bottom: 15px;
    }
    .scrolled .fxcall{
      bottom: 75px;
    }
  /*end*/

  /*Footer*/
    .ftr_form{
      position: relative;
    }
  /*end*/
}

@media (min-width: 1300px){
  /*.container{
    width: 1432px;
    max-width: 100%;
  }*/
  .navbar-default .navbar-toggle[aria-expanded="true"]{
    /*margin: 18px 0 18px 0;
    transform: translateX(-245px);
    position: fixed;
    right: 0;*/
  }
}