/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : piyush Tapaniya | +91 83060 05795                                                       * 
* Support    : piyush.tapaniya90@gmail.com                                                             * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/

/*================================================
[  Table of contents  ]
================================================== 
:: general css Style
   :: google font
   :: basic style     
   :: headings
   :: button style
   :: helper classes 
   :: section title
   :: box border
   :: custome class 
:: scrollbar CSS
:: back to top CSS
:: loader CSS
:: animations 
==================================================
[ End table content ]
================================================*/

@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/

/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color: #db5274;
    --secondary-color: #a1216a;

    --bg-gradient-1: linear-gradient(33deg,rgba(27,1,2,1),var(--primary-color));
    --bg-gradient-text: linear-gradient(90deg, rgba(241, 241, 243, 1) 30%, rgba(140, 140, 141, 1) 50%, rgba(241, 241, 243, 1) 70%);
    --border-color: linear-gradient(90deg,rgba(214,203,172,1),rgba(162,139,57,1) 50%,rgba(214,203,172,1));
} 


/* :: basic style  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
} 

body {
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    background-color: #F9F9F9;
    color: #7d7d7d;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Albert Sans", sans-serif;
    color: #000;
}

p {
    font-size: 16px; 
    color: #7d7d7d;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none;
    outline: 0;
}

iframe {
    width: 100%;
    border: 0px;
}

/* :: Form */
textarea {
    resize: none;
}

/* select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
} 
/* :: headings */

/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1,
    .banner-content h1 {
        font-size: 52px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1,
    .banner-content h1 {
        font-size: 42px !important;
    }
}

@media only screen and (max-width: 767px) {
    h1,
    .banner-content h1 {
        font-size: 42px !important;
    }
}

@media only screen and (max-width: 576px) {
    h1,
    .banner-content h1 {
        font-size: 25px !important;
    }
}

/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2,
    .banner-content h2 {
        font-size: 42px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2,
    .banner-content h2  {
        font-size: 32px !important;
    }
}

@media only screen and (max-width: 767px) {
    h2,
    .banner-content h2  {
        font-size: 32px !important; 
    }
}
@media only screen and (max-width: 576px) { 
    .banner-content h2  {
        font-size: 22px !important; 
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3,
    .banner-content h3  {
        font-size: 28px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3,
    .banner-content h3 {
        font-size: 26px !important;
    }
}

@media only screen and (max-width: 767px) {
    h3,
    .banner-content h3 {
        font-size: 24px !important;
    }
}
@media only screen and (max-width: 576px) { 
    .banner-content h3  {
        font-size: 18px !important; 
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}

.owl-dots {
    text-align: center;
}
.owl-dots button {
    height: 12px;
    width: 12px;
    background: #dcdcdc !important;
    display: inline-block;
    margin: 0 4px;
    border-radius: 15px;
}
.owl-dots button.active{
    background: var(--primary-color) !important;
}


 
 

/* :: helper */
.text-gray {
    color: #000 !important;
}

.text-white {
    color: #ffffff !important;
}


.text-black {
    color: #000000 !important;
}

.primary-color {
    color: var(--primary-color) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-color {
    background-color: var(--primary-color) !important;
}

.bg-01 {
    background-color: #000 !important;
}

.bg-02 {
    background-color: #f1f1f1 !important;
}

.text-secondary{
    color: var(--secondary-color) !important;
}

.bg-gradient-1{
    background-image: var(--bg-gradient-1);
} 
.bg-gradient-text {
    background-image: var(--bg-gradient-text);
    background-clip: text; 
    color: transparent;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}

/* :: form */
.form-control {
    height: 46px;
}

.form-control:focus {
    background-color: transparent;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px 25px;
    color: #000;
    height: 185px;
    background: transparent;
    color: #ffffff;
    resize: none;
    border-radius: 0px;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: #ff0000 !important;
}

/*radio button stype*/ 
[type="radio"]:checked,
[type="radio"]:not(:checked) {position: absolute; left: -9999px; }
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {position: relative; padding-left: 24px; cursor: pointer; display: inline-block;}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {content: ''; position: absolute; left: 1px; top: 4px; width: 18px; height: 18px; border: 1px solid #c1c1c1; border-radius: 100%; background: #fff; }
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {content: ''; width: 12px; height: 12px; background: var(--primary-color); position: absolute; top: 7px; left: 4px; border-radius: 100%; -webkit-transition: all 0.2s ease; transition: all 0.2s ease; }
[type="radio"]:not(:checked) + label:after {opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
[type="radio"]:checked + label:after {opacity: 1; -webkit-transform: scale(1); transform: scale(1); }


/*-------------------------------------------------
:: button 
-------------------------------------------------*/
 
.btns {
    background-color: var(--primary-color);
    padding: 14px 25px;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
}
 
.btns:hover,
.btns:focus{
    color: #fff;
}

.btns-secondary{
    padding: 14px 20px;
    border-radius: 7px;
    background-color: var(--secondary-color); 
}

/*-------------------------------------------------
:: main-area
-------------------------------------------------*/
.main-area{
    position: relative;
    background-repeat: repeat;
    background-size: cover;
    background-position: top;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/*-------------------------------------------------
:: banner-area
-------------------------------------------------*/
.banner-area {
    position: relative;
    z-index: 1;  
}

.m-banner{
    display: none !important;
}

.banner-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
} 

/* input effect */
.input-container {
    position: relative;
    border: 1px solid #CBD5DD; 
    border-radius: 8px;  
}

.input-error {
    border: 1px solid red;
}

.input {
    box-sizing: border-box; 
    font-size: 16px;
    height: 50px !important;
    outline: 0;
    padding: 12px;
    width: 100%;
    border: none !important;  
    border-radius: 8px;  
    background: transparent;
    color: #000;    
}

textarea.input {
    height: 100px !important;
}

.input-error-text {
    color: red;
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: -18px;
}

 

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
input[type="time"]::-webkit-inner-spin-button {
    filter: invert(1);
}

.placeholder {
    color: #B1B1B1;
    left: 12px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 18px;
    margin: 0;
    background-color: #fff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
}

.input:focus~.placeholder,
.input:not(:placeholder-shown)~.placeholder {
    transform: translateY(-26px) translateX(-22px) scale(0.75);
    padding: 0 10px;
    left: 30px;
    background: #fff;
    font-size: 16px;
}

.input[type="date"] {
    color-scheme: dark;
}
.form-check-input[type=checkbox] {  
    box-shadow: none;
}
.form-check-input:checked[type=checkbox] {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color);
    color: #fff;
} 

.register-wapper{
    background-color: #fff; 
    margin: 0 auto;
        padding: 25px;
    border-radius: 15px;
    box-shadow: 4px 9px 50px #DFDFDF;
}
.otp-number {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}
.otp-number input {
    width: 100%;
    border: none;
    background: transparent;
    border-bottom: 2px solid #BEC4CA;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #6D6D6D;
}


/* ------------------------------------------ 
                account 
------------------------------------------ */
.account-area {
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.account-left {
    padding: 45px 100px;
    width: 50%; 
    overflow: auto;
    z-index: 2; 
}
.account-right {
    height: 100%;
    width: 50%;
    flex: 1;
    background: linear-gradient(86.76deg, #34A5F8 21.85%, #6AC0FF 132.65%);
    position: relative;
}
.account-title h1{
    font-size: 42px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}
.account-title p{  
    color: #000; 
}
.account-content-bottom {
    padding-bottom: 50px;
}
.account-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: space-between;
    height: 100%;
    max-width: 520px;
    margin: 0 auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.account-left::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.account-left{
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
 

.account-right .account-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
        padding: 15px;
}
.account-otp{
    display: none;
    position: relative;
}
.otp-error{
    position: relative;
    margin-bottom: 20px;
    text-align: end;
}
.otp-error .input-error-text{
    position: relative;
    bottom: 0;
}

.account-tabs{
    margin-bottom: 30px;
}
.account-tabs ul {
    display: flex;
    gap: 40px;
}
.account-tabs ul li a {
    color: #92929D;
    position: relative;
}
.account-tabs ul li a.active {
    color: #11142D;    
}
.account-tabs ul li a.active::after {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
    background: #FFB82F;
}


.contact-info ul li {display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 15px;}
.contact-info i {color: #700D10; font-size: 30px; margin-right: 16px; }
.contact-info .address-info {color: #000; }


.help-desk-area{
    margin-bottom: 212px;
}
.help-desk-wapper{
    background-color: #fff;
    max-width: 767px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 45px;
}
.footer-social ul{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.help-desk-content p {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 16px;
}

.help-desk-box {
    display: flex;
    align-items: center;
    gap: 30px;
}
.help-desk-image {
    width: 250px;
}
.help-desk-content {
    flex: 1;
}

.terms-content p{
    margin-bottom: 10px; 
}

.terms-content ul{
    padding-left: 25px;
}
.terms-content ul li {
    list-style: auto;
}
.terms-content ol{
    padding-left: 25px;
}
.terms-content ol li {
    list-style: circle;
}



.redeem-box {
    display: flex;
    align-items: center;
    gap: 30px;
}
.redeem-image {
    width: 40%;
}
.redeem-box img {
    max-width: 250px;
}
.redeem-content {
    flex: 1;
}

.redeem-content p{
    margin-top: 10px;
}

.redeem-box.redeem-register {
    flex-direction: row-reverse;
}
.redeem-box.redeem-claim .redeem-image {
    text-align: right;
}

.voucher-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem; 
}
.voucher-item {
    background: #DFDFDF;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.voucher-item.active{
    background-color: #000;
}

.voucher-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 15px;
}


.voucher-otp-wapper{
    background-color: #fff;
    max-width: 767px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 45px;
}

.voucher-otp-area{
    display: none;
}

.voucher-otp-area.active{
    display: block;
}



.mic-item {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 4px 9px 50px #DFDFDF;
}
.mic-icon{
    margin-bottom: 40px;
}
.mic-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}


.register-tabs .nav-item {
    width: calc(50% - .5rem);
    text-align: center;
}

.register-tabs .nav-tabs {
    border-bottom: none;
}
.register-tabs .nav-link{
    border: none;
    box-shadow: none;    
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.register-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
    opacity: 1;
    border: none;
    box-shadow: none;
}
.register-tabs .nav-link.active svg{
    stroke: #fff;
}


.coupon-area{
    background-color: #f5c8e2;
}
.coupon-icon {
    height: 64px;
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(184, 0, 6, 0.1);
    border-radius: 15px;
    margin: 0 auto 25px auto;
}

.coupon-requirements-item {
    display: flex;
    gap: 20px;
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}
.coupon-requirements-content {
    flex: 1;
}
.coupon-requirements-content ul{
    padding-left: 20px;
}
.coupon-requirements-content ul li {
    list-style: circle;
    font-size: 14px;
}
.coupon-requirements-content p{
    font-size: 14px;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}
.accordion-item:first-of-type { 
    border-radius: 0;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #db5274; 
}
.accordion-button:not(.collapsed)::after {
    transition: all 0.5s;
    filter: brightness(0) invert(1);
}

.banner-slider .banner-item img{
    border-radius: 15px;
}