html{
    overflow-x: hidden;
}
body{
  padding: 0;
  margin: 0;
  /*background: #fff;
  color: #2c2c2c;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Poppins', sans-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: #d78c0b;
    --secondary-color: #FFC107;
    --txtcolor1: #212529;
    --txtcolor2: #d78c0b;
    --txtcolor3: #FFC107;
    --dark-color: #141414;
    --light-color: #f4f4f4;
    --black: #000000;
    --white: #ffffff;
    --lightgray: #fbfbfb;
  }
  .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: 'Poppins', sans-serif;
  }
  .captext{
    text-transform: uppercase;
  }
  .heading{
    position: relative;
    margin-bottom: 30px;
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
  }
  .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: 'Poppins', sans-serif;
  }
  .heading2 b{
    font-size: 46px;
  }
  .heading2 b span{
    background: var(--secondary-color);
    padding: 0 10px;
  }
  .sectag{
    position: relative;
    color: var(--dark-color);
    font-weight: 500;
    padding-left: 25px;
  }
  .sectag.nodgn, .sectag.hozrdgn{
    padding-left: 0;
  }
  .sectag:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    height: 10px;
    width: 10px;
    border-radius: 100%;
    box-shadow: 1px 3px 12px 3px rgb(215 0 89 / 23%);
    background-color: #0000;
    background-image: linear-gradient(45deg, #b9004c, #db005b, #b9004c);
    animation: pulse 5s infinite;
  }
  .sectag.nodgn:before{
    display: none;
  }
  .sectag.hozrdgn:before{
    top: -15px;
    left: 50%;
    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;
}
.flxcontrol{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb{
  background-color: #13133f;
}

/*Defaut page baanr*/
  .ldsec1{
    position: relative;
    z-index: 1;
    color: var(--dark-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(25 27 37 / 9%);
    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(60vh - 75px);
  }
  .flxcont{
    text-align: center;
  }
  .flxcont h1{
    font-size: 50px;
    font-weight: 700;
    margin-top: 0;
    color: #fff;
  }
  .flxcont .sectag{
    color: #fff;
  }
/*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: 32px;
    height: 32px;
    background: #f2f2f2;
    color: var(--txtcolor2);
    padding: 0px 0 0;
    font-size: 16px;
    border-radius: 50px;
    margin: 0px 5px 5px 0px;
    text-align: center;
    line-height: 1.6;
  }
  .social_md_list li svg {
    fill: var(--primary-color);
    position: relative;
    top: 2px;
  }
  .social_md_list li:hover{
    background: var(--primary-color);
    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);
    }
  }
/*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;
  }
}


/*index page*/
    .header_section{
        padding: 0px 0;
        background: #ffffff;
        box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
    }
    .itemprice_cont{
        border: 5px solid #ffdcd9;
        border-radius: 30px;
        padding: 15px 5px;
        box-shadow: 1px 5px 20px rgb(0 0 0 / 4%);
        background-color: #cf1406;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    .itemprice_cont::after{
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        aspect-ratio: 1/1;
        background: url(images/fl2.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left bottom;
        opacity: .1;
        z-index: -1;
    }  
    .itemprice_cont .mt_15{
        margin-top: 10px;
    }
    .todaydate{
        position: relative;
        z-index: 1;
    }
    .todaydate h2{
        font-weight: 600;
        color: rgb(255 255 255);
        font-size: 14px;
        margin: 0;
    }
    .todaydate h2 .inline{
        width: 20px;
        display: inline-block;
    }
    .todaydate h4{
        color: #d59a24;
        font-size: 20px;
        font-weight: 700;
        margin: 5px 0;
    }
    .sec-cal .items{
        text-align: center;
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0px 0px 7px rgb(255 255 255 / 10%), 
                    0 0px 0px 16px rgb(255 255 255 / 10%), 
                    0 0px 0px 27px rgb(255 255 255 / 10%), 
                    0 0px 0px 43px rgb(255 255 255 / 10%), 
                    0 0px 0px 60px rgb(255 255 255 / 10%), 
                    0 0px 0px 85px rgb(255 255 255 / 10%), 
                    0 0px 0px 120px rgb(255 255 255 / 10%);
    }
    .sec-cal .items .icon img{
        max-width: 30px;
    }
    .sec-cal .items .icon_name{
        margin-bottom: 5px;
    }
    .sec-cal .items .icon_name h4{
        font-weight: 700;
        font-size: 16px;
        margin: 0;
    }
    .sec-cal .gold{
        color: #d59a24;
    }
    .sec-cal .silver{
        color: #8e8e8e;
    }
    .sec-cal .item_ttl h3{
        color: #cf1406;
        font-size: 16px;
        margin: 0;
    }
    .sec-cal .balc{
        text-align: center;
        background: white;
        border-radius: 15px;
        padding: 10px;
        max-width: 180px;
        margin: 0 auto;
        color: #444444;
    }
    .sec-cal .balc p{
        margin: 0;
        font-size: 10px;
    }
    .sec-cal .balc h4{
        font-weight: 700;
        font-size: 18px;
    }
    .sec-cal .balc h5{
        font-size: 14px;
        margin: 0;
    }
    .sec-cal .balc h6{
        font-weight: 600;
        font-size: 12px;
        margin: 0;
        color: #cf1406;
    }
    .itembuy_cont{
        background: #cf1406;
        border: 1px solid #a20e03;
        border-radius: 30px;
        padding: 30px 15px;
        box-shadow: 1px 5px 20px rgb(0 0 0 / 4%);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    .itembuy_cont::after{
        content: "";
        position: absolute;
        right: -50%;
        top: 0;
        width: 100%;
        transform: translate(-50%, -50%);
        aspect-ratio: 1/1;
        background: url(images/fl2.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left bottom;
        opacity: .1;
        z-index: -1;
    }
    .itembuy_cont h2{
        font-size: 20px;
        color: #cf1406;
    }
    .itembuy_cont .mtt_typ{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
        background: white;
        border-radius: 15px;
        padding: 10px;
        box-shadow: 0px 5px 20px rgb(0 0 0 / 1%);
        max-width: 100%;
        margin: 0 auto;
        cursor: pointer;
        border: 1px solid rgb(255 255 255 / 0%);
        overflow: hidden;
    }
    .itembuy_cont .mtt_typ[for="gold"]:hover{
        background: #ffe599;
    }
    .itembuy_cont .mtt_typ[for="silver"]:hover{
        background: #e9e9e9;
    }
    .itembuy_cont .mtt_typ img{
        width: 45px;
        background: #fff;
        border-radius: 50px;
        padding: 5px;
        box-shadow: -1px 3px 12px rgb(0 0 0 / 4%);
    }
    .itembuy_cont .mtt_typ h4{
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        padding: 0 15px;
        width: calc(100% - 72px);
        text-align: center;
    }
    .itembuy_cont .carat{
        justify-content: center;
        margin: 15px 0;
    }
    .itembuy_cont .carat label{
        cursor: pointer;
        margin: 0 10px;
        background: #ff2616;
        border-radius: 50px;
        padding: 15px;
        width: 60px;
        height: 60px;
        display: flex;
        box-shadow: 0px 5px 20px rgb(0 0 0 / 6%);
        max-width: 100px;
        justify-content: center;
        align-items: center;
        border: 1px solid rgb(255 255 255 / 0%);    
        overflow: hidden;
    }
    .itembuy_cont .carat label:hover{
        background: #ffe599;
    }
    .itembuy_cont .carat label:hover h3{
        color: #cf1406;
    }
    .itembuy_cont .carat p{
        background: transparent;
        color: #ffffff;
        box-shadow: none;
        cursor: default;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
        max-width: unset;
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    .itembuy_cont .carat h3{
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }
    .itembuy_cont input[type="radio"]:checked + label,
    .itembuy_cont input[type="radio"]:checked + label[for="gold"]{
        background: linear-gradient(130deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
        background-size: 300%;
        background-position: left;
        transition: 1.5s;
        animation: btnbg 20s infinite linear;
        border: 1px solid #d4bf7f;
    }
    .itembuy_cont input[type="radio"]:checked + label.carat_typ{
        transform: scale(1.3);
    }
    .itembuy_cont input[type="radio"]:checked + label[for="silver"]{
        background: linear-gradient(130deg, #bebebe, #d4d4d4, #909090, #dcdcdc, #909090);
        border: 1px solid #b9b9b9;
    }
    .itembuy_cont input[type="radio"]:checked + label h4{    
        color: #3f2514;
        /*text-shadow: 1px 2px 10px rgb(0 0 0 / 25%);*/
    }
    .itembuy_cont input[type="radio"]:checked + label h3{
        color: #cf1406;
        text-shadow: 1px 2px 10px rgb(0 0 0 / 25%);
    }
    @keyframes btnbg{
        0%{
          background-size: 300%;
          background-position: left;
        }
        40%{
          background-size: 450%;
          background-position: center;
        }
        80%{
          background-size: 300%;
          background-position: right;
        }
        100%{
          background-size: 300%;
          background-position: left;
        }
    }
    .buytyp{
        border-bottom: 1px solid white;
        margin-bottom: 30px;
    }
    .buytyp .buytypopt{
        width: 50%;
        text-align: center;
        color: #f4c566;
        font-weight: 600;
        font-size: 16px;
        position: relative;
        cursor: pointer;
    }
    .buytyp .buytypopt p{
        margin: 0 0 8px 0;
    }
    .buytyp .buytypopt.active{
        color: #fff;
    }
    .buytyp .buytypopt:after{
        content: "";
        width: 0%;
        height: 5px;
        border-radius: 10px;
        background: #fff;
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        visibility: hidden;
        opacity: 0;
        transition: .4s;
    }
    .buytyp .buytypopt.active:after{
        visibility: visible;
        opacity: 1;
        width: 100%;
    }
    .itembuy_cont .buyopt .buyinput{
        text-align: center;
    }
    .itembuy_cont .buyopt .buyinput h4{
        margin: 0 0 5px 0;
        font-size: 16px;
        font-weight: 600;
        color: #f4c566;
    }
    .itembuy_cont .buyopt .buyinput.active h4{
        color: #fff;
    }
    .itembuy_cont .buyopt .buyinput input{
        padding: 12px 15px;
        border-radius: 5px;
        border: 1px solid rgb(255 255 255 / 0%);
        background: #d53124;
        color: #fff;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    .itembuy_cont .buyopt .buyinput.active input{
        border: 0px solid #f4c566;
        background: #fff6db;
        color: #0c0c0c;
    }
    .itembuy_cont .buyopt .buyinput input::placeholder{
        color: #fff;
        opacity: 1; /* Firefox */
    }
    .itembuy_cont .buyopt .buyinput input::-ms-input-placeholder{
        color: #fff;
    }
    .itembuy_cont .buyopt .buyinput.active input::placeholder{
        color: #747474;
        opacity: 1; /* Firefox */
    }
    .itembuy_cont .buyopt .buyinput.active input::-ms-input-placeholder{
        color: #747474;
    }
    .itembuy_cont .buyopt .buylft{
        width: calc(50% - 30px);
    }
    .itembuy_cont .buyopt .buyrgt{
        width: calc(50% - 30px);
    }
    .itembuy_cont .buyopt .buymid{
        width: 50px;
        text-align: center;
    }
    .itembuy_cont .buyopt .buymid svg{
        fill: #fff;
        opacity: 1;
        margin-top: 20px;
    }
    .taxinfo{
        background: rgb(255 255 255 / 12%);
        border-radius: 0px 0px 10px 10px;
        padding: 15px 20px;
        margin-bottom: 15px;
        border-top: 1px solid white;
    }
    .taxinfo p{
        font-size: 14px;
        font-weight: 600;
        color: rgb(255 196 192);
        margin: 0;
    }
    .taxinfo p label{
        min-width: 120px;
    }
    .taxinfo div{
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    }
    .taxinfo div label{
        min-width: 120px;
    }
    .taxinfo_cont .btn-buy{
        padding: 15px 12px;
        background: linear-gradient(130deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
        background-size: 300%;
        background-position: left;
        transition: 1.5s;
        animation: btnbg 5s infinite linear;
        border: 1px solid #d4bf7f;
        border-radius: 10px;
        color: #cf1406;
        font-size: 20px;
        font-weight: 700;
        box-shadow: 2px 2px 0px rgb(192 113 8 / 39%), 4px 4px 0px rgb(192 113 8 / 22%);
        transition: .3s;
    }
    .taxinfo_cont .btn-buy:hover{
        transform: translateY(-6px);
        box-shadow: 4px 4px 0px rgb(192 113 8 / 39%), 8px 8px 0px rgb(192 113 8 / 22%);
    }
    .sip_cont{    
        background: #f4c566;
        border: 5px solid #ffeecc;
        border-radius: 30px;
        padding: 20px 15px 15px 15px;
        box-shadow: 1px 5px 20px rgb(0 0 0 / 4%);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    .sip_cont::after{
        content: "";
        position: absolute;
        left: 50%;
        transform: translate(-50%, 50%);
        bottom: 0;
        width: 100%;
        aspect-ratio: 1/1;
        background: url(images/fl2.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left bottom;
        opacity: .1;
        z-index: -1;
    }
    .sip_cont h2{
        font-size: 20px;
        color: #8f6000;
        margin: 0;
    }
    .sip_cont p{
        margin: 0;
        color: rgb(143 99 13);
        font-size: 12px;
        margin: 5px 0 15px
    }
    .sip_cont .sips{
        justify-content: space-between;
    }
    .sip_cont .sip_plan{
        text-align: center;
        background: #cf1406;
        padding: 15px;
        border-radius: 20px;
        margin: 5px;
        max-width: calc(50% - 10px);
        overflow: hidden;
    }
    .sip_cont .sip_plan h4{
        margin: 0;
        font-weight: 700;
        color: #ffffff;
        font-size: 30px;
    }
    .sip_cont .sip_plan p{
        margin: 0;
        color: #fff;
        font-size: 12px;
    }
    .sip_cont .sip_plan:hover{
        background: #985f1b;
        transform: translateY(-6px);
        box-shadow: 2px 2px 0px rgb(192 113 8 / 20%), 4px 4px 0px rgb(192 113 8 / 30%);
    }
    .mfooter{
        position: fixed;
        width: 100vw;
        bottom: -1px;
        left: 0;
        background: white;
        box-shadow: 0px -5px 15px rgb(0 0 0 / 10%);
        padding: 10px 10px;
        z-index: 9999;
    }
    .mfooter .ftr_bar{
        justify-content: space-evenly;
        width: 100%;
        text-align: center;
    }
    .mfooter .ftr_bar .ft_item{
        padding: 5px 10px;
        background: #fff;
        border-radius: 20px;
        width: 25%;
        max-width: 25%;
    }
    .mfooter .ftr_bar .ft_item.active{
    
    }
    .mfooter .ftr_bar .ft_item .icon{
    
    }
    .mfooter .ftr_bar .ft_item .icon svg{
        fill: #444444;
    }
    .mfooter .ftr_bar .ft_item p{
        margin: 0;
        color: #444444;
        font-size: 10px;
    }  
    .mfooter .ftr_bar .ft_item.active .icon svg{
        fill: #cf1406;
    }
    .mfooter .ftr_bar .ft_item.active p{
        color: #cf1406;
    }
    .bgimg {
      z-index: 1;
    }
    .slidercont{
      position: relative;
      /*height: 400px;*/
      aspect-ratio: 18/9;
      width: 100%;
      margin: 0px auto 0px auto;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 30px;
      overflow: hidden;
    }
    .slidercont:hover{
      box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
    }
    .slidercont img{
      width: 100%;
    }
    .slidercont .plybtns{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      z-index: 2;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      align-content: center;
      background: rgb(0 0 0 / 10%);
    }
    .slidercont .plybtns a:first-child:hover{
      transform: scale(1.05);
    }
    .slidercont .plybtns .playbtn{
      animation: pulse 2s infinite;
      color: var(--white);
      font-size: 32px;
      width: 120px;
      height: 120px;
      background: var(--primary-color);
      border: 8px solid var(--white);
      border-radius: 50%;
      padding-left: 18px;
    }
    .slidercont .plybtns .playbtn:hover{
      border:  0px solid var(--white);
    }
    .slidercont .plybtns .playbtn:hover i{
      transform: scale(2.0);
      text-shadow: 0 10px 16px rgb(0 0 0 / 21%);
    }
    .slidercont .plybtns a span{
      color: var(--white);
      position: absolute;
      width: 150px;
      left: calc(50% + 140px);
      top: 50%;
      transform: translate(-50%, -50%);
    }
    .slidercont .sl_cont{
      position: absolute;
      top: 0;
      left: 0;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 200px);
      max-width: 1200px;
      height: 100%;
      color: #fff;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: center;
      justify-content: flex-start;
      align-items: center;
      text-align: left;
    }
    .slidercont .sl_cont .fullw{
      width: 100%;
    }
    .slidercont .sl_cont h2{
      font-family: 'Kaushan Script', cursive;
      font-size: 50px;
      margin: 0 0 20px 0;
    }
    .slidercont .sl_cont p{
      max-width: 600px;
    }
    .showcase .swiper-slide{
      opacity: .3;
    }
    .showcase .swiper-slide-active{
      opacity: 1;
    }
    .showcase .swiper-container-3d .swiper-slide-shadow-left,
    .showcase .swiper-container-3d .swiper-slide-shadow-right{
      background-image:  none;
    }
    .showcase .swiper-button-prev, 
    .showcase .swiper-button-next{
      width: 70px;
      color: #fff;
    }
    .showcase .swiper-button-prev{
      background-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(255 255 255 / 18%), rgb(255 255 255 / 22%));
      border-radius: 0 20px 20px 0;
      left: 0px;
    }
    .showcase .swiper-button-next{
      background-image: linear-gradient(90deg, rgb(255 255 255 / 22%), rgb(255 255 255 / 18%), rgb(0 0 0 / 0%));
      border-radius: 20px 0 0 20px;
      right: 0px;
    }
    .showcase .swiper-button-prev:hover{
      background-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(255 255 255 / 28%), rgb(255 255 255 / 42%));
    } 
    .showcase .swiper-button-next:hover{
      background-image: linear-gradient(90deg, rgb(255 255 255 / 42%), rgb(255 255 255 / 28%), rgb(0 0 0 / 0%));
    }
    .showcase .swiper-button-next:after, 
    .showcase .swiper-button-prev:after{
      font-size: 26px;
      padding: 5px 10px;
    }
    .showcase .swiper-pagination{
      bottom: 100px;
    }
    .showcase .swiper-pagination-bullet{
      background: var(--white);
      opacity: .3;
    }
    .showcase .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{
      background: var(--white);
      opacity: 1;
    }
    .jewellery .sl_cont img{
      border-radius: 10px;
      overflow: hidden;
    }
    .swiper-button-next, .swiper-button-prev{
      color: #ffffff;
    }
    .swiper-button-next, .swiper-container-rtl .swiper-button-prev{
      right: -7px;
    }
    .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
      left: -7px;
    }
    .workimgs{
      position: relative;
      z-index: 1;
    }
    .workimgs.mt_ct{
      margin-top: 15px;
    }
    .workimgs.flxcontrol{
      justify-content: space-around;
      align-content: space-around;
      align-items: stretch;
    }
    .workimgs .boxes {
      border: 0px solid #fffafa;
      background-color: rgb(207 20 6);
      padding: 30px 20px;
      height: 300px;
      gap: 15px;
      box-shadow: 0 1rem 3rem rgba(33,37,41,.175);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin: 18px 0;
      text-align: center;
    }
    .workimgs .boxes.box-1{
      border-radius: 3px 25% 3px 25%;
      box-shadow: 0 1rem 3rem rgba(33,37,41,.175), 15px 15px 0px #f4c566;
    }
    .workimgs .boxes.box-2{
      border-radius: 25% 3px 25% 3px;
      box-shadow: 0 1rem 3rem rgba(33,37,41,.175), -15px 15px 0px #f4c566;
    }
    .workimgs .boxes.box-3{
      border-radius: 25% 3px 25% 3px;
      box-shadow: 0 1rem 3rem rgba(33,37,41,.175), 15px -15px 0px #f4c566;
    }
    .workimgs .boxes.box-4{
      border-radius: 3px 25% 3px 25%;
      box-shadow: 0 1rem 3rem rgba(33,37,41,.175), -15px -15px 0px #f4c566;
    }
    .workimgs .boxes:hover {
      background: var(--primary-color);
      transform: scale(1.06);
      z-index: 2;
    }
    .workimgs i, .workimgs svg, .workimgs img{
      color: #fff;
      height: 60px;
      width: 60px;
      padding: 10px;
      border-radius: 5px;
      background-color: var(--primary-color);
      object-fit: contain;
      font-size: 63px;
      transition: transform .1s;
    }
    .workimgs h4{
      font-weight: 400;
      text-align: center;
      font-size: 14px;
      color: #ffffff;
      margin: 7px 0 0;
    }
    .workimgs .boxes:hover h4{
      color: #fff;
    }
    .workimgs .boxes:hover i, .workimgs .boxes:hover svg, .workimgs .boxes:hover img{
      transform: scale(1.1);
    }
    .workimgs .boxes:hover p{
      color: #769fe7;
    }
    
    @media (max-width: 767px){
        .slidercont{
          border-radius: 20px;
          /*height: 180px; */
          aspect-ratio: 18/9;
        }
        .showcase .swiper-pagination {
          bottom: 5px;
        }
        .sip_cont h2,
        .itembuy_cont h2,
        .itembuy_cont .mtt_typ h4,
        .taxinfo div,
        .taxinfo_cont .btn-buy{
          font-size: 18px;
        }
        .sec-cal .item_ttl h3,
        .sec-cal .balc h4,
        .itembuy_cont .carat h3,
        .itembuy_cont .carat p,
        .todaydate h4{
          font-size: 13px;
        }
        .sec-cal .balc h5,
        .sec-cal .balc h6,
        .taxinfo p{
          font-size: 11px;
        }
        .sip_cont p{
          font-size: 10px;
        }
        .itembuy_cont .carat label{
          width: 45px;
          height: 45px;
        }
        .swiper-button-next:after, 
        .swiper-button-prev:after{
          font-size: 25px;
          background: rgb(255 255 255 / 16%);
          padding: 10px 18px;
          border-radius: 50px;
          backdrop-filter: blur(2px);
        }
        .workimgs .flxcontrol{
          justify-content: space-between;
        }
        .workimgs .boxes.col-6{
          max-width: calc(50% - 18px);
        }
        .workimgs .boxes{
          padding: 10px 8px;
          height: 140px;
          text-align: center;
          gap: 5px;
        }
    }
    @media (max-width: 370px){
        .itembuy_cont .mtt_typ img{
          display: none;
        }
        .itembuy_cont .mtt_typ h4{
          width: 100%;
          padding: 0;
        }
        .sec-cal .items .icon img{
          width: 75%;
        }
    }
/*end*/

/*Digital Gold Schem*/
    .schemes img{
        border-radius: 10px;
    }
    .btn-scheme{
        padding: 15px 12px;
        background: #cf1406;
        transition: 1.5s;
        border: 1px solid #d4bf7f;
        border-radius: 10px;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        box-shadow: 2px 2px 0px rgb(192 113 8 / 39%), 4px 4px 0px rgb(192 113 8 / 22%);
    }
/*end*/

/*Passbook & Redeem History*/
  .redeem_history{
    color: gray;
  }
  .redeem_history h5{
    color: #644510;
    font-weight: 600;
    text-align: center;
  }
  .redeem_history .bdr_b:last-child{
    border: none;
  }
  .redeem_history .tbl{
    overflow-x: auto;
  }
  .redeem_history .tbl .table{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  .redeem_history .tbl thead th{
    color: #ffffff;
    background: #cf1406;
  }
  .redeem_history .tbl tbody tr{
    font-size: 12px;
  }
  .redeem_history .tbl tbody tr span{
    font-weight: 600;
    display: block;
    text-align: right;
  }
  .redeem_history .tbl tbody tr small{
    color: #cf1406;
    background: #ffeeed;
    padding: 2px 10px;
    display: inline-block;
    margin-right: 0;
    border-radius: 5px;
    border: 1px solid #cf1406;
  }
  .redeem{
    border: 5px solid #ffdcd9;
    border-radius: 15px;
    padding: 15px 5px;
    box-shadow: 1px 5px 20px rgb(0 0 0 / 4%);
    background-color: #cf1406;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .redeem:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1/1;
    background: url(images/fl2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: .1;
    z-index: -1;
  }
  .redeem h5{
    color: white;
    font-weight: 600;
  }
  .redeem p{
    font-size: 14px;
    max-width: 90%;
    margin: 0 auto;
    color: #ffc434;
  }
  .table-success, .table-success > th, .table-success > td{
    background-color: #e5ffeb;
    color: #007c05;
  }
  .table-danger, .table-danger > th, .table-danger > td{
    background-color: #ffe8eb;
    color: #ef1b0b;
  }
/*end*/

/*SIP*/
  .sips_slider input[type="range"] {
    /*-webkit-appearance: none;
    appearance: none;*/
    width: 100%;
    height: 10px;
    background: #cf1406;
    outline: none;
    border-radius: 15px;
    filter: hue-rotate(149deg);
  }    
  .sips_slider input[type='range']::-webkit-slider-runnable-track {
    /*height: 20px;
    -webkit-appearance: none;
    color: #000;
    margin-top: -15px;*/
  }    
  .sips_slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
  }
  .sips_slider .slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: bold;
  }
  .sips_slider .slider-labels span {
    /*flex: 1;
    text-align: center;*/
  }
  .sips_amount{
    justify-content: space-between;
    align-items: stretch;
  }
  .sips_amount h6{
    width: 100%;
    color: #8f6000;
  }
  .sips_amount input{
    width: calc(100% - 120px);
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgb(255 255 255 / 0%);
    background: #ffffff;
    color: #0c0c0c;
    max-width: 250px;
    text-align: center;
  }
  .sips_amount input[name="recurring"]{
    width: 115px;
    background: #e0a632;
    font-weight: bold;
    color: #644506;
  }
  .btn-sip{
    padding: 15px 12px;
    background: #cf1406;
    transition: 1.5s;
    border: 1px solid #d4bf7f;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 2px 2px 0px rgb(192 113 8 / 39%), 4px 4px 0px rgb(192 113 8 / 22%);
  }
  .sip_history{
    color: gray;
  }
  .sip_history h5{
    color: #644510;
    font-weight: 600;
    text-align: center;
  }
  .sip_history .redeemed{
    position: relative;
    padding-bottom: 15px;
  }
  .sip_history .redeemed:after{
    content: "";
    width: 100%;
    height: calc(100% + 5px);
    left: 0;
    top: -8px;
    position: absolute;
    background: rgb(255 0 0 / 14%);
    border-radius: 5px;
  }
  .sip_history .redeemed:before{
    content: attr(data-content);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 2px;
    display: block;
    background: #cf1406;
    color: white;
    padding: 2px 15px;
    font-size: 11px;
    border-radius: 0 0 5px 5px;
  }
  .sip_history .bdr_b{
    margin-bottom: 10px;
  }
  .sip_history .bdr_b:last-child{
    border-bottom: none;
    margin-bottom: 30px;
  }
  .sip_history h6{
    justify-content: space-between;
    margin: 0;
  }  
  .sip_history h6 span:first-child{
    font-size: 18px;
    font-weight: 600;
    color: #000;
  }
  .sip_history .sipinfo{
    justify-content: space-between;
  }
  .sip_history .sipinfo p{
    font-size: 11px;
    margin: 5px 0;
  }
  .sip_history .mocunt{
    margin-bottom: 15px;
    gap: 9px;
  }
  .sip_history .mocunt span{
    width: 18px;
    height: 18px;
    background: gainsboro;
    border-radius: 5px;
    position: relative;
  }
  .sip_history .mocunt span.done{
    background: #53cc81;
  }
  .sip_history .mocunt span:after{
    content: "M";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: gray;
  }
  .sip_history .mocunt span.done:after{
    color: #fff;
  }
/*end*/

/*Login*/
    .logscrn{
      position: fixed;
      left: 0;
      top: 0;
      z-index: 1;
      width: 100%;
      height: auto;
    }
    .brand{
      max-width: 160px;
    }
    .bgimg {
      z-index: 1;
    }
    .bgimg img{
      max-height: 300px;
      object-fit: contain;
    }
    .showcase .swiper-pagination{
      bottom: 100px;
    }
    .showcase .swiper-pagination-bullet{
      background: var(--primary-color);
      opacity: .3;
    }
    .showcase .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{
      background: var(--primary-color);
      opacity: 1;
    }
    .swiper-button-next, .swiper-button-prev{
      color: #ffffff;
    }
    .swiper-button-next, .swiper-container-rtl .swiper-button-prev{
      right: -7px;
    }
    .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
      left: -7px;
    }
    .log_form{
      position: absolute;
      z-index: 99;
      background: #ffe0bc;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
      border-top-left-radius: 50px;
      border-top-right-radius: 50px;
      box-shadow: 0 -5px 150px rgb(28 0 0 / 15%), 0 -2px 15px rgb(0 0 0 / 14%);
      padding: 50px 25px 20px 25px;
      overflow: hidden;
    }
    .accessform{      
      position: relative;
      height: 0;
      visibility: hidden;
      opacity: 0;
      transition: .3s;
    }
    .accessform.active{
      height: auto;
      visibility: visible;
      opacity: 1;
    }
    .accessform h3{
      text-align: center;
      margin: 0px 0 20px 0;
      color: #e00606;
    }
    .accessform input{
      width: 100%;
      padding: 20px 20px;
      font-size: 14px;
      border: none;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    .accessform .otp{
      text-align: center;
    }
    .accessform .otp:focus{
      /*letter-spacing: 40px;*/
    }
    .accessform .otp:active{
      /*letter-spacing: 40px;*/
    }
    .accessform .otp_btn{
      margin-bottom: 15px;
      background: #000;
      border-color: #000;
      color: #fff !important;
      border-radius: 10px;
    }
    .accessform .acc_btn{
      width: 100%;
      padding: 15px;
      font-size: 16px;
      background: #e00606;
      border-color: #e00606;
      margin-bottom: 10px;
      text-align: center;
      border-radius: 10px;
    }
    .accessform .acc_btn:hover{
      background: #b10909;
      border-color: #b10909;
    }
    .accessform .log_btn{
      
    }
    .accessform .reg_btn{
      
    }
    .accessform p{
      text-align: center;
      padding: 15px 0 0px 0;
    }
    .accessform p .alt_opts{
      color: #e00606;
      font-weight: 600;
      text-decoration: underline !important;
    }
    
    @media (max-width: 767px){
        .showcase .swiper-pagination {
          bottom: 5px;
        }
    }
/*end*/