@import url('https://fonts.googleapis.com/css2?family=Sofia&display=swap');
/*-------------------------------------------------------------
  Nice Number CSS
---------------------------------------------------------------*/
.nice-number {
    display: inline-flex;
    justify-content: stretch;
  }

  .nice-number input {
    vertical-align: middle;
    -moz-appearance: textfield;
    box-sizing: content-box;
    margin: 0;
    text-align: center;
  }

  .nice-number input::-webkit-inner-spin-button,
  .nice-number input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
/*-------------------------------------------------------------
  End Nice Number
---------------------------------------------------------------*/
.mb-30{
    margin-bottom: 30px;
}

.site-logo h3{
    /*font-family: 'Sofia', cursive;*/
    font-family: Baskerville Old Face;
    letter-spacing: 3px;
}
.text-center{
    text-align: center;
}
.containerCC {
    width: 80%;
    /*padding-right: 50px;*/
    /*padding-left: 50px;*/
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1200px){
    .containerCC{
        /*max-width: 1400px;*/
    }
}
.gift-name{
    font-family: var(--ltn__body-font);
    font-size: 24px;
}
.gift-img img{
    width:100%;
    border-radius: 12px;
}
.selectedcard{
    box-shadow: 5px 3px 9px 3px #d5d5d5;
    width:100%
}
.ani_category_manage_data{
    margin-left: 10% !important;
    margin-right: 10% !important;
    padding-left: 6px !important; 
    padding-right: 6px !important;
    border-radius:10px !important;
    box-shadow: 0 10px 16px rgba(0,0,0,.26) !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
}
#order-product-details-frm hr{
    border-top: 2px solid var(--border-color-9);
    margin-top: 17px;
    margin-bottom: 30px;
}

#order-product-details-frm label{
    font-family: var(--ltn__heading-font);
    color: var(--ltn__primary-color);
}
#order-product-details-frm input,textarea{
    font-family: var(--ltn__heading-font) !important;
}
#order-product-details-frm input[type="number"][disabled]{
    background-color: var(--white);
    font-family: var(--ltn__heading-font) !important;

}

.Drange{
    font-weight: 600;
    color: rgb(104, 104, 104);
}
.nice-numbers button {
    border-radius: 100%;
    padding:1%;
    /*padding-bottom: 19px;*/
    width: 30px;
    height: 30px;
    border: none;
    background: var(--ltn__primary-color);
    color: #fff;
    outline: none;
    font-weight: 600;
}
.nice-numbers button:hover {
    background: var(--ltn__secondary-color);
}
.nice-numbers input {
    width: 40px;
    height: 10px;
    font-size: 15px;
    margin: 0 10px !important;
    padding: 10px;
    border: none;
    outline: none;
    pointer-events: none !important;
}
.form-control:disabled, .form-control[readonly]{
    background-color: #fff !important;
}
.f-30{
    font-size: 30px !important;
}
.input-error{
    border: 1px solid var(--danger-color) !important;
}
.heading{
    font-family: var(--ltn__heading-font);
    
}
.heading.Drange{
    font-size: 12px;
}

/* Card */
.form {
    position: relative;
    width: 100%;
    /* height: 3rem; */
    /* margin-bottom: 25px; */
}

.form__input:focus~.form__label,
.form__input:not(:placeholder-shown).form__input:not(:focus)~.form__label {
    top: -0.5rem;
    font-size: 0.8rem;
    left: 0.8rem;
    color: #001e38;
}

.ccicon {
    height: 45px;
    position: absolute;
    right: 3px;
    /* top: calc(54% - 12px); */
    bottom: 13%;
    width: 63px;
    border-radius: 5px;
}

/* //checkbox */

.cbx input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin: 2px;
}

.cbx input[type="checkbox"]:focus {
    outline: 0;
}

.cbx {
    /* border: 2px solid #f00; */
    /* position: absolute; */
    /* width: 100%; */
    height: 100%;
    top: calc(50vh - 12px);
    left: calc(50vw - 12px);
    margin: -2px;
}

.cbx input {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #bfbfc0;
    border-radius: 50%;
}

.cbx label {
    width: 24px;
    height: 24px;
    background: none;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 1px;
    -webkit-filter: url("#goo");
    filter: url("#goo");
    transform: trasnlate3d(0, 0, 0);
    pointer-events: none;
}

.cbx svg {
    position: absolute;
    top: 11px;
    left: 5px;
    z-index: 1;
    pointer-events: none;
}

.cbx svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
    transition: stroke-dashoffset 0.3s ease;
    transition-delay: 0.2s;
}

.cbx input:checked+label {
    animation: splash 0.6s ease forwards;
}

.cbx input:checked+label+svg path {
    stroke-dashoffset: 0;
}

.cbx input:checked #guidelines {
    color: #001e38 !important;
}
.cbx input:checked #guidelinesMob {
    color: #001e38 !important;
}
@-moz-keyframes splash {
    40% {
        background: #001e38;
        box-shadow: 0 -18px 0 -8px #001e38, 16px -8px 0 -8px #001e38, 16px 8px 0 -8px #001e38, 0 18px 0 -8px #001e38, -16px 8px 0 -8px #001e38, -16px -8px 0 -8px #001e38;
    }

    100% {
        background: #001e38;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-webkit-keyframes splash {
    40% {
        background: #001e38;
        box-shadow: 0 -18px 0 -8px #001e38, 16px -8px 0 -8px #001e38, 16px 8px 0 -8px #001e38, 0 18px 0 -8px #001e38, -16px 8px 0 -8px #001e38, -16px -8px 0 -8px #001e38;
    }

    100% {
        background: #001e38;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-o-keyframes splash {
    40% {
        background: #001e38;
        box-shadow: 0 -18px 0 -8px #001e38, 16px -8px 0 -8px #001e38, 16px 8px 0 -8px #001e38, 0 18px 0 -8px #001e38, -16px 8px 0 -8px #001e38, -16px -8px 0 -8px #001e38;
    }

    100% {
        background: #001e38;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@keyframes splash {
    40% {
        background: #001e38;
        box-shadow: 0 -18px 0 -8px #001e38, 16px -8px 0 -8px #001e38, 16px 8px 0 -8px #001e38, 0 18px 0 -8px #001e38, -16px 8px 0 -8px #001e38, -16px -8px 0 -8px #001e38;
    }

    100% {
        background: #001e38;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

.rbiguide {
    display: flex;
    padding: 7px 0 7px 0;
}
.rbiguide_ {
    display: flex;
    margin: -15px 0 0 0;

}
.rbiError{
    margin-top: -16px;
    padding-bottom: 10px;
}
.accepted_Cards{
    cursor: pointer;
}
.accepted_Cards span{
    color: #001e38;
}
.content {
    margin: 0 0 0 15px;
}

.card-strip {
    padding-bottom: 15px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.cards-strip {
    width: 56%;
}

.cardcomp {
    width: 100%;
    opacity: 0.9;
}
.all_cards{
    padding: 16px 0 16px 0;
}
.upiformat{
    color: rgb(116, 116, 116);
}
#upi_frm .content label{
    font-size: 14px;
}
.all_cards .card{
    padding: 0 !important;
    border-radius: 5px;
}
.all_cards .card:hover{
    padding: 0 !important;
    box-shadow: 2px 2px 7px 0px rgb(255 142 182 / 29%);
    -webkit-box-shadow: 2px 2px 7px 0px rgb(255 142 182 / 29%);
    -moz-box-shadow: 2px 2px 7px 0px rgb(255 142 182 / 29%);
    cursor: pointer;
}
#QRcode .card-subtitle{
    font-size: 14px;
    font-weight: 500;
}
@keyframes ldio-feixkfwu1dq {
    0% { transform: rotate(0deg) }
    50% { transform: rotate(180deg) }
    100% { transform: rotate(360deg) }
  }
  .ldio-feixkfwu1dq div {
    position: absolute;
    animation: ldio-feixkfwu1dq 1s linear infinite;
    width: 72px;
    height: 72px;
    top: 64px;
    left: 64px;
    border-radius: 50%;
    box-shadow: 0 3.4000000000000004px 0 0 #ff8eb5;
    transform-origin: 36px 37.7px;
  }
  .loadingio-spinner-eclipse-t3aisipc6bo {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    background: none;
  }
  .ldio-feixkfwu1dq {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; /* see note above */
  }
  .ldio-feixkfwu1dq div { box-sizing: content-box; }

  .set_time{
    font-weight: 700;
    font-size: 19px;
    color: #001e38;
  }

  .set_time .countdown{
    color: #ff8eb5;
  }
.swal2-styled{
    font-size: 12px !important;
}

/*
|| Ani css code 
320px — 480px: Mobile devices
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more —  Extra large screens, TV

*/
/*
header css 
*/
 .fa {
 
  font-size: 15px;
  width: 40px;
  text-align: center;
  text-decoration: none;
  margin: 2px 2px;
}
.fa-facebook {
 
  color: white;
}

 .upper-nav {
    background-color: #001e38;;
    color: white;
    padding: 10px 0px;
}
.upper-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
    padding:0px;
}
.header_middle{
       width:30%;
   }
   .header_middle1{
       width:30%;
       padding:0px;
   }
    .header_middle_2{
       width:40% ;
       justify-content: center !important;
   
    display: flex !important;

   }
   .logo_content{
       margin:0px;
   }
   
   /*customer profile css code*/
   .singleline{
     border: 1px solid;
    margin-top: 15px;
    margin-bottom: 15px
 }  
 .profilecard{
     position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem
 }
 .profilecard-header{
 padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    font-size:14px;
    font-weight:500;
 }
 .profilecard-body{
 flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    font-size:12px;
 }
 .profile-btn{
     font-weight: 700;
    font-size: 12px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color:#001E38;
    cursor: pointer;
    color:white;
    float:right;
    border:0px #001E38 solid;
    border-radius:20px;
 }
 .profile-btn:hover{
   /*border: #FF8EB5 solid;*/
   background-color:#FF8EB5;
   
 }
 .form-row-profile{
 width: 100%;
    display: flex;
 }
 .profile-contact-form-box {
    padding: 5px 0px 5px;
    position: relative;
    z-index: 1;
}
.profile-form{
background-color: var(--white);
    border: 1px solid !important;
    border-color: var(--border-color-9) !important;
    height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px;
    font-size: 16px;
    color: var(--ltn__paragraph-color);
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0;
    padding-right: 40px;
}
.profile-form:focus{
    border:1px solid gray !important;
}

   /*my account code css*/
   
   .acc_card-header{
 padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    
    display:block !important;
 }
 .acc_content{
     padding:10px 10px !important;
    font-size:12px !important;
     padding: 0.75rem 1.25rem;
    /*font-weight:500; */
 }
 .acc_card-body{
 flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    font-size:12px;
 }
  .account_btn{
     font-weight: 700;
    font-size: 12px;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color:#001E38;
    cursor: pointer;
    color:white;
    float:right;
    /*border:2px #001E38 solid;*/
    border-radius:20px;
 }
 .account_btn:hover{
   /*border: #FF8EB5 solid;*/
   background-color:#FF8EB5;
   
 }
 .acc_status{
color: white;
    padding: 0.5rem 2rem;
    text-transform: uppercase;
    background-color:#001E38;
    font-weight: 500;
    border-radius: 4px;
}

@media (min-width: 200px) and (max-width: 1199px) {
   .site-logo-data{
       /*margin-top:10px;*/
   } 
   .gc_product_card_border{
    padding-left: 10px;
    padding-right: 10px;
}
.containerCC {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
   .ani_header-option{
      margin:0px !important; 
      justify-content: right !important;
   }
   .ani_user-menu{
       display:none;
   }
   .mail{
       font-size:10px;
   }
   .mobile_header_container{
       padding:0;
   }
   .mobile_icon{
       font-size: 10px;
       text-align:right;
    padding: 0px !important;
    margin: 0px;
    width:26px;
   }
   .mobile_upper-nav{
       padding: 5px 5px;
   }
   .header_middle{
       width:50%;
   }
   .header_middle1{
       width:50%;
   }
   .header_middle_2{
       width:0%;
       display:contents !important;
   }
   
   /*my account code*/
   .acc_status{
   color: white;
    background: #001E38;
    padding: 0.5rem 1rem !important;
    font-weight: 500;
    border-radius: 4px;
    font-size: 8px;
    float:left;
    text-transform: uppercase;
   }
   .account_btn
   {
       padding: 0.5rem 1rem !important;
    text-transform: uppercase;
    background-color: #001E38;
    cursor: pointer;
    color: white;
    font-size: 8px !important;
    float: right;
    /* border: 2px #001E38 solid; */
    border-radius: 4px !important;
    font-weight: 500;
   }
   .account_order_id{
       text-align:left !important;
   }
   .account_data_time{
       text-align:left !important;
   }
}
@media (min-width: 481px) and (max-width: 768px) {}
@media (min-width: 769px) and (max-width: 1024px) {}
@media (min-width: 1025px) and (max-width: 1200px) {}
@media (min-width: 1201px)  {}

/*owl craousel css*/

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins&family=Roboto:wght@400;500;700&family=Sofia&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

::placeholder {
    font-size: 14px;
    text-transform: capitalize;
}

/* font-family: 'Sofia', cursive; */
table {
    border-collapse: collapse;
    width: 100%;
}

td {
    text-align: left;
    padding: 8px;
}

input,
select {
    width: 100%;
    padding: 7px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}

button {
    padding: 5px 20px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: capitalize;
}

button>a {
    color: #fff;
}

a {
    text-decoration: none;
    color: #000000;
}



/*header .lower-nav .logo-container img {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*}*/

/*header .lower-nav .logo-container .logo-text {*/
/*    font-family: 'Sofia', cursive;*/
/*    font-size: 28px;*/
/*    font-weight: bold;*/
/*    color: #637afa;*/
/*}*/

/*header .lower-nav .middle ul li {*/
/*    list-style: none;*/
/*    float: left;*/
/*    margin: 0px 5px;*/
/*    font-weight: 500;*/
/*}*/

/*header .lower-nav .middle ul li a {*/
/*    transition: all .1s ease;*/
/*    padding: 20px 10px;*/
/*}*/

/*header .lower-nav .middle ul li a i {*/
/*    font-size: 12px;*/
/*}*/

/*header .lower-nav .middle ul li a:hover {*/
/*    color: #637afa;*/
/*    border-bottom: 2px #637afa solid;*/
/*    border-width: 3px;*/
/*}*/

/*header .lower-nav .right-nav span {*/
/*    margin: 0px 8px;*/
/*    cursor: pointer;*/
/*    font-size: 18px;*/
/*    color: #637afa;*/
/*}*/

/*header .lower-nav .right-nav span i {*/
/*    transition: .2s all ease;*/
/*}*/

/*header .lower-nav .right-nav span i:hover {*/
/*    color: #637afa;*/
/*}*/

.banner-container .owl-theme .item {
    /*height: 70vh;*/
}

.banner-container1 .owl-theme .item {
    height: auto;
}
.banner-container1 .owl-theme .item img {
    /*height: 100%;*/
}
.banner-container .owl-theme .item img {
    /*height: 100%;*/
}

.hover-card-section {
    margin: 20px 0px 10px 0px !important;
    font-family: 'Roboto', sans-serif !important;
}

.hover-card-section .container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
    /* border: 1px red solid; */
}

.hover-card-section .container .hover-card {
    width: 20%;
    transition: .3s all ease-in-out;
    margin: 0px 2px;
    color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 20px 10px;
    cursor: pointer;
    height: 290px;
}

.hover-card-section .container .hover-card:first-child {
    background-color: #637afa;
    width:25%;
    /*width: 45%;*/
}

.hover-card-section .container .hover-card:nth-child(2) {
    background-color: #eb049e;
    width:25%;
}

.hover-card-section .container .hover-card:nth-child(3) {
    background-color: #9156ff;
    width:25%;
}


.hover-card-section .container .hover-card:nth-child(4) {
    background-color: #c95efa;
    width:25%;
}


.hover-card-section .container .hover-card:hover {
    width: 45%;
}

/* .hover-card-section .container .hover-card:hover .hover-card-section .container .hover-card:first-child {
    width: 20%;
} */

.hover-card-section .hover-card .card-heading-container .heading {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    color:white;
}

.hover-card-section .hover-card .hover-card-image-container {
    width: 25%;
    margin: 20px 0px;
}

.hover-card-section .hover-card .hover-card-image-container img {
    width: 100%;
}

.hover-card-section .hover-card .hover-card-extra-content {
    margin: 10px 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

/* .category-card-section {
    border: 1px red solid;
} */

.another-category-card-section {
    margin: 20px 0px 10px 0px;
}

.another-category-card-section .container {
    width: 100%;
    margin: auto;
}

.another-category-card-section .container .another-category-card {
    border: 1px lightgray solid;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 10px 0px;
}

.another-category-card-section .container .another-category-card .category-card-content-container {
    width: 28%;
}

.another-category-card-section .container .another-category-card .category-card-content-container .heading {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
    font-family: 'Roboto', sans-serif;
}

.another-category-card-section .container .another-category-card .category-card-content-container .content {
    margin: 0px 0px 10px 0px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

.another-category-card-section .container .another-category-card .category-card-content-container a {
    font-size: 15px;
    font-weight: bold;
    color: #637afa;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.1px;
}

.another-category-card-section .container .another-category-card .category-icons-container {
    display: flex;
    width: 68%;
}

.another-category-card-section .container .another-category-card .category-icons-container .category-icons {
    width: 19%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px lightgray solid;
    padding: 10px 0px;
    border-radius: 10px;
    margin-right: 1%;
}

.another-category-card-section .container .another-category-card .category-icons-container .carousel-category-icons {
    width: 100%;
    text-align: center;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
    border: 1px lightgray solid;
    padding: 25px 21px;
    border-radius: 10px;
}

.another-category-card-section .container .another-category-card .category-icons-container .category-icons .icons-container,
.another-category-card-section .container .another-category-card .category-icons-container .carousel-category-icons .icons-container {
    height: 35px;
    width: 35px;
}

.another-category-card-section .container .another-category-card .category-icons-container .category-icons .icons-container img,
.another-category-card-section .container .another-category-card .category-icons-container .carousel-category-icons .icons-container img {
    width: 100%;
}


.another-category-card-section .container .another-category-card .category-icons-container .category-icons h5,
.another-category-card-section .container .another-category-card .category-icons-container .carousel-category-icons h5 {
    font-size: 14px;
    color: #363434;
    margin-top: 10px;
}

.gift-cards-carousel .container {
    width: 80%;
    margin: auto;
}

.gift-cards-carousel .owl-theme .gift-card {
    height: 20vh;
}

.gift-cards-carousel .owl-theme .gift-card img {
    height: 100%;
}

.mobile-app-section {
    margin: 20px 0px 10px 0px;
}

.mobile-app-section .container .mobileapp {
    width: 100%;
    margin: auto;
   background: #05214c26;
 
   
    
}
.mobile-app-section .container .mobileapp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px lightgray solid;
    padding: 30px 0px 30px 20px;
    border-radius: 10px; 
}


.mobile-app-section .container .mobileapp .left-side {
    width: 49%;
}

.mobile-app-section .container .mobileapp .left-side .heading {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    letter-spacing: 1.2px;
    margin: 10px 0px 20px 0px;
    color:#001e38;
}

.mobile-app-section .container .mobileapp .left-side .content {
    /* color: #ffffff; */
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin: 30px 0px 10px 0px;
}

.mobile-app-section .container .mobileapp  .left-side .img-container {
    display: flex;
    width: 100%;
    /*margin-top: 30px;*/
}

.mobile-app-section .container .mobileapp  .left-side .img-container .store-container {
    width: 40%;
}

.mobile-app-section .container .mobileapp  .left-side .img-container .store-container:nth-child(2) {
    margin-left: 20px;
}

.mobile-app-section .container .mobileapp   .left-side .img-container .store-container a {
    display: flex;
    justify-content: center;
    padding: 10px;
    align-items: center;
    border-radius: 10px;
    /*background-color: #99cefa;*/
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.mobile-app-section .container .mobileapp  .left-side .img-container .store-container a img {
    width: 100%;
    /*margin-left: 15px;*/
}

.mobile-app-section  .container  .right-side {
    width: 49%;
}

.mobile-app-section .container .mobileapp   .right-side .img-container {
    width: 100%;
}

.mobile-app-section .container .mobileapp   .right-side .img-container img {
    width: 100%;
}

.gift-card-section {
    margin-top: 40px;
}

.gift-card-section .container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}

.gift-card-section .container .left-side {
    width: 21%;
}

.gift-card-section .container .left-side .filter-container {
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 6%);
    padding: 20px;
    border-radius: 10px;
}

.gift-card-section .container .left-side .filter-heading {
    font-size: 30px;
    font-weight: bold;
    color: #637afa;
    text-align: center;
}

.gift-card-section .container .left-side .filter-container ul {
    list-style-type: none;
    margin-top: 30px;
}

.gift-card-section .container .left-side .filter-container ul li {
    margin-top: 10px;
    border-bottom: 1px #ebebeb solid;
    padding: 10px;
}

.gift-card-section .container .left-side .filter-container ul li:last-child {
    border: none;
}

.gift-card-section .container .left-side .filter-container ul li a {
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gift-card-section .container .right-side {
    width: 75%;
}

.gift-card-section .container .right-side .cards-container {
    display: flex;
    flex-wrap: wrap;
}

.gift-card-section .container .right-side .cards-container .card {
    width: 210px;
    border: 1px #f0f0f0 solid;
    text-align: center;
    margin: 0px 17px 20px 0px;
}

.gift-card-section .container .right-side .cards-container .card .card-img {
    height: 125px;
}

.gift-card-section .container .right-side .cards-container .card .card-img img {
    height: 100%;
    width: 100%;
}

.gift-card-section .container .right-side .cards-container .card .card-heading {
    font-size: 15px;
    /* font-weight: 600; */
    font-family: 'Roboto', sans-serif;
    margin: 5px 0px;
}

.gift-card-section .container .right-side .cards-container .card .card-heading .heading {
    color: #637afa;
}


/* GIFT CARD ORDER PAGE STYLING START */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    label input {
        -webkit-appearance: none;
        -webkit-appearance: but;
        -moz-appearance: none;
        background: #fff;
        border: 2px solid #637afa;
        padding: 2px;
        border-radius: 50%;
        cursor: pointer;
        height: 20px;
        outline: none;
        transition: background 0.2s ease-out, border-color 0.2s ease-out;
        width: 20px;
        position: relative;
    }

    label input::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 40%;
        width: 40%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: white;
        border: 1px white solid;
    }

    label input:checked {
        background: #637afa;
        border-color: #637afa;
    }
}

.gift-card-order .page-heading {
    width: 90%;
    margin: auto;
    padding-top: 20px;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #637afa;
}

.gift-card-order .page-heading i {
    margin-right: 10px;
}

.gift-card-order .container-full {
    background: #ebebeb7c;
    padding: 20px 0px;
}

.gift-card-order .container-full .details-container {
    width: 90%;
    margin: auto;
}

.gift-card-order .container-full .details-container .basic-details {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}

.gift-card-order .container-full .details-container .basic-details .details-left {
    width: 30%;
}

.gift-card-order .container-full .details-container .basic-details .details-left .gc-type .type {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 25px;
}

.gift-card-order .container-full .details-container .basic-details .details-left .gc-type .validity {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #535151;
    font-size: 14px;
}

.gift-card-order .container-full .details-container .basic-details .details-left .gc-type-img {
    width: 100%;
}

.gift-card-order .container-full .details-container .basic-details .details-left .gc-type-img img {
    width: 100%;
}

.gift-card-order .container-full .details-container .basic-details .details-middle {
    width: 30%;
}

.gift-card-order .container-full .details-container .basic-details .details-middle .denomination label {
    font-weight: bold;
    font-family: 'poppins', serif;
}

.gift-card-order .container-full .details-container .basic-details .details-middle .denomination input {
    display: block;
    width: 100%;
    padding: 7px;
    border: none;
    outline: none;
    border-bottom: 1px gray solid;
    background: #ebebeb7c;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}

.gift-card-order .container-full .details-container .basic-details .details-middle .delivery-options {
    margin-top: 40px;
}

.gift-card-order .container-full .details-container .basic-details .details-middle .delivery-options .heading {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 9px;
}

.gift-card-order .container-full .details-container .basic-details .details-middle .delivery-options label {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: fit-content;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}

.gift-card-order .container-full .details-container .basic-details .details-middle .delivery-options label input {
    margin-right: 5px;
}

.gift-card-order .container-full .details-container .basic-details .details-right {
    width: 30%;
}

.gift-card-order .container-full .details-container .basic-details .details-right .heading {
    position: relative;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'poppins', serif;
}

.gift-card-order .container-full .details-container .basic-details .details-right .heading::after {
    content: "";
    position: absolute;
    background-color: gray;
    top: 50%;
    width: 80%;
    margin-left: 10px;
    height: 2px;
}

.gift-card-order .container-full .details-container .basic-details .details-right .content {
    font-size: 15px;
    text-align: justify;
    font-family: "poppins";
}

.gift-card-order .container {
    width: 90%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.gift-card-order .container .delivery-mode {
    width: 100%;
}

.gift-card-order .container .delivery-mode .modes .heading {
    font-size: 15px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.gift-card-order .container .delivery-mode .modes .modes-container {
    display: flex;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.gift-card-order .container .delivery-mode .modes label {
    display: flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}

.gift-card-order .container .delivery-mode .modes label input {
    margin-right: 5px;
}

.gift-card-order .container .delivery-mode .mode-specific-form .heading {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.gift-card-order .container .delivery-mode .mode-specific-form .form {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin-top: 10px;
}

.gift-card-order .container .delivery-mode .mode-specific-form .form .form-input {
    width: 30%;
    margin-bottom: 10px;
    margin-right: 30px;
}

.gift-card-order .container .delivery-mode .mode-specific-form .form .form-input input {
    height: 35px;
    width: 100%;
    margin-top: 5px;
    border: none;
    border-bottom: 1px gray solid;
    outline: none;
}

.gift-card-order .container .delivery-mode .mode-specific-form .form .block-form-input {
    width: 50%;
    margin-bottom: 10px;
}

.gift-card-order .container .delivery-mode .mode-specific-form .form .block-form-input textarea {
    height: 80px;
    width: 100%;
    margin-top: 5px;
    border: none;
    border-bottom: 1px gray solid;
    outline: none;
}

.gift-card-order .container .self-mode {
    margin: 20px 0px 30px 0px;
    font-family: 'Poppins', sans-serif;
    /* border: 1px red solid; */
}

.gift-card-order .container .self-mode .heading-container {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
}

.gift-card-order .container .self-mode .card-container {
    display: flex;
    justify-content: space-between;
}

.gift-card-order .container .self-mode .card-container .card {
    width: 30%;
    /* background: #637afa; */
    /* color: white; */
    border: 1px solid #637afa;
    padding: 20px;
    border-radius: 10px;
}

.gift-card-order .container .self-mode .card-container .card .card-img {
    margin-bottom: 20px;
    text-align: center;
    height: 100px;
}

.gift-card-order .container .self-mode .card-container .card .card-img img {
    height: 100%;
    /* border: 1px green solid; */
}

.gift-card-order .container .self-mode .card-container .card .card-content {
    margin: 10px 0px;
    text-align: justify;
    
}
.hover-card-extra-content .card-content{
    color:white;
    
}
.gift-card-order .container .left-side,
.gift-card-order .container .right-side {
    width: 49%;
}

.gift-card-order .gift-card-preview {
    border: 3px #d3d3d3 dotted;
    border-radius: 5px;
    padding: 10px 5px;
}

.gift-card-order .gift-card-preview .gift-card-img {
    width: 98%;
    text-align: center;
    margin: auto;
}

.gift-card-order .gift-card-preview .gift-card-img img {
    width: 100%;
}

.gift-card-order .gift-card-preview .rest-details {
    margin: 15px;
}

.gift-card-order .gift-card-preview .rest-details .receiver-name {
    font-size: 17px;
    font-weight: bold;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    margin: 5px 0px;
}

.gift-card-order .gift-card-preview .rest-details .receiver-greeting {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #818181;
    margin: 5px 0px;
}

.gift-card-order .gift-card-preview .rest-details .receiver-message {
    font-weight: bold;
    font-style: italic;
    font-size: 17px;
    letter-spacing: 1.1px;
    margin: 5px 0px;
    font-family: 'Poppins', sans-serif;
}

.gift-card-order .gift-card-preview .category-preview {
    display: flex;
    justify-content: space-between;
}

.gift-card-order .gift-card-preview .category-preview .category-img-container {
    width: 49%;
}

.gift-card-order .gift-card-preview .category-preview .gc-details {
    width: 40%;
}


.gift-card-order .gift-card-preview .category-preview .category-img-container img {
    width: 100%;
}

.gift-card-order .gift-card-preview .category-preview .gc-details .gc-amount {
    font-weight: bold;
    font-family: "poppins";
    font-size: 20px;
    margin-bottom: 10px;
}

.gift-card-order .gift-card-preview .category-preview .gc-details .gc-details-head {
    font-size: 21px;
    font-weight: bold;
    margin-top: 10px;
}

.gift-card-order .gift-card-preview .category-preview .gc-details .gc-number,
.gift-card-order .gift-card-preview .category-preview .gc-details .gc-pin {
    font-weight: bold;
    font-size: 18px;
}

.gift-card-order .gift-card-preview .category-preview .gc-details .gc-validity {
    margin-top: 10px;
    color: #ff0000;
}

.gift-card-order .container .right-side .gc-type-category-top {
    margin-bottom: 30px;
    border-bottom: 2px lightgray dotted;
    padding-bottom: 20px;
}

.gift-card-order .container .right-side .gc-type-category-top .category-item button {
    width: 100%;
    padding: 15px 10px;
    outline: none;
    border: none;
    font-family: "poppins";
    cursor: grab;
    transition: .3s all ease-in-out;
}

.gift-card-order .container .right-side .gc-type-category-top .category-item .btn-active {
    background-color: #637afa;
    color: #fff;
    transition: .3s all ease-in-out;
}

.gift-card-order .container .right-side .gc-type-category-bottom {
    position: relative;
}

.gift-card-order .container .right-side .gc-type-category-bottom .absolute-gc-sub-category {
    width: 100%;
    display: none;
}

.gift-card-order .container .right-side .gc-type-category-bottom .active-subcategory {
    display: flex;
    flex-wrap: wrap;
}

.gift-card-order .container .right-side .gc-type-category-bottom .active-subcategory .sub-cat-img {
    width: 23%;
    cursor: pointer;
    margin-right: 2%;
    margin-bottom: 20px;
    border: 1px lightgray solid;
}

.gift-card-order .container .right-side .gc-type-category-bottom .active-subcategory .sub-cat-img img {
    width: 100%;
    height: 100%;
}

.description-section {
    margin-top: 20px;
    padding-bottom: 20px;
}

#gift-card-order-page .description-section .container {
    width: 90%;
}

.description-section .container {
    width: 80%;
    margin: auto;
    border: 1px lightgray solid;
    padding: 20px;
    border-radius: 10px;
}

.description-section .container .tabs-container {
    margin-bottom: 20px;
}

.description-section .container .tabs-container .tab-list {
    display: flex;
    list-style-type: none;
    border-bottom: 1px lightgray solid;
}

.description-section .container .tabs-container .tab-list .tab-heading {
    margin-right: 10px;
    padding: 10px;
    cursor: pointer;
    background: #ebebeb;
}

.description-section .container .tabs-container .tab-list .active-tab-heading {
    position: relative;
    background-color: #637afa;
    color: #fff;
}

.description-section .container .tabs-content {
    position: relative;
}

.description-section .container .tabs-content .tab {
    text-align: justify;
}

.description-section .container .tabs-content .active-tab {
    display: block;
}

/* GIFT CARD ORDER PAGE STYLE END*/

/* Recharge Page Styling Start */
.recharge-section {
    margin-top: 10px;
}

.recharge-section .container {
    width: 80%;
    margin: auto;
}

.recharge-section .recharge-options .recharge-list {
    list-style: none;
}

.recharge-section .recharge-options .recharge-list-item {
    padding: 15px 0px;
    text-align: center;
    transition: .3s all ease-in;
    font-size: 14px;
    cursor: pointer;
}

.recharge-section .recharge-options .recharge-list-item:hover {
    background: #637afa;
    color: #fff;
}

.recharge-section .recharge-forms .form-container {
    display: flex;
    justify-content: space-between;
    border: 1px lightgray solid;
    border-radius: 0px 0px 10px 10px;
}

.recharge-section .recharge-forms .form-container .left-side {
    width: 35%;
    padding: 20px;
}

.recharge-section .recharge-forms .form-container .left-side .form-heading {
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
}

.recharge-section .recharge-forms .form-container .left-side form {
    margin-top: 20px;
}

.recharge-section .recharge-forms .form-container .left-side form .form-input {
    border: 1px lightgray solid;
    margin: 10px 0px;
    padding: 5px 20px;
}

.recharge-section .recharge-forms .form-container .left-side form .radio-form-input {
    display: flex;
    margin-bottom: 15px;
}

.recharge-section .recharge-forms .form-container .left-side form .radio-form-input label {
    display: flex;
    align-items: center;
    margin-right: 30px;
    font-size: 14px;
}

.recharge-section .recharge-forms .form-container .left-side form .radio-form-input label input {
    margin-right: 5px;
}

.recharge-section .recharge-forms .form-container .left-side form .flex-form-input {
    margin: 10px 0px;
    display: flex;
}

.recharge-section .recharge-forms .form-container .left-side form button {
    width: 100%;
    background: #637afa;
    color: #fff;
    padding: 10px;
    font-size: 17px;
}

.recharge-section .recharge-forms .form-container .right-side {
    width: 65%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recharge-section .recharge-forms .form-container .right-side .recharge-offer {
    text-align: center;
}

.recharge-section .recharge-forms .form-container .right-side .recharge-offer .offer-img {
    width: 100%;
}

.recharge-section .recharge-forms .form-container .right-side .recharge-offer .offer-img img {
    width: 100%;
}


/* Recharge Page Styling End */

/* recharge summary start */
.recharge-order-summary {
    margin: 20px 0px;
}

.recharge-order-summary .container {
    width: 80%;
    margin: auto;
    padding: 20px;
    /* border: 1px lightgray solid; */
    border-radius: 10px;
}

.recharge-order-summary .stepper {
    position: relative;
}

.recharge-order-summary .stepper::after {
    content: " ";
    position: absolute;
    left: 0%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: lightgray;
    z-index: -1;
}

.recharge-order-summary .stepper .stepper-list {
    display: flex;
    list-style-type: none;
    justify-content: space-between;
}

.recharge-order-summary .stepper .stepper-list .stepper-list-item {
    border: 1px lightgray solid;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 11;
    background-color: #fff;
}

.recharge-order-summary .stepper .stepper-list .complete-step {
    border: 1px green solid;
    color: green;
    font-size: 12px;
}

.recharge-order-summary .stepper .stepper-list .progress-step {
    border: 1px rgba(255, 60, 0, 0.664) solid;
    color: rgba(255, 60, 0, 0.664);
    font-size: 12px;
}

.recharge-order-summary .recharge-summary-container {
    margin: 50px auto;
    text-align: center;
}

.recharge-order-summary .recharge-summary-container .heading {
    color: #637afa;
    font-weight: bold;
    font-size: 30px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card {
    width: 48%;
    margin: 25px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 6%);
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .card-heading {
    color: #637afa;
    margin-bottom: 20px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-table-container {
    margin-top: 20px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-key {
    font-weight: bold;
    font-size: 15px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-value {
    text-align: right;
    font-size: 15px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-table tr:nth-child(even) {
    background-color: #D6EEEE;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container {
    margin: 10px 0px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container>button {
    margin: 10px 0px;
    padding: 15px 0px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container .apply-code-btn {
    border: none;
    color: #637afa;
    font-size: 18px;
    padding: 10px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container .apply-code {
    max-height: 0;
    overflow: hidden;
    transition: all .5s cubic-bezier(0, 1, 0, 1);
    background: #ebebeb7c;
    padding: 0px 10px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container .show-coupon-container {
    height: auto;
    max-height: 990px;
    transition: all .5s cubic-bezier(1, 0, 1, 0);
    padding: 20px 10px;
}


.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container .apply-code .coupon-heading {
    font-size: 20px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container .apply-code .coupon-code-input {
    display: flex;
    border: 1px lightgray solid;
    margin-top: 10px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container .apply-code .coupon-code-input>button {
    background: #637afa;
    color: #ffffff;
    padding: 10px 40px;
}

.recharge-order-summary .recharge-summary-container .recharge-summary-card .recharge-summary-btn-container .make-payment-btn {
    background: #637afa;
    color: #fff;
    width: 100%;
}

.recharge-order-summary .payment-form-container {
    margin: 50px auto;
}

.recharge-order-summary .payment-form-container .heading {
    color: #637afa;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}

.recharge-order-summary .payment-form-container .payment-card {
    background: #ffffff;
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 6%);
    width: 70%;
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
}

.recharge-order-summary .payment-form-container .payment-card .left-side-options {
    padding: 20px;
    width: 30%;
    /* border-right: 1px lightgray solid; */
    position: relative;
}

.recharge-order-summary .payment-form-container .payment-card .left-side-options::after {
    content: " ";
    position: absolute;
    height: 90%;
    width: 2px;
    background: #dbdada;
    top: 5%;
    right: 10px;
}

.recharge-order-summary .payment-form-container .payment-card .left-side-options ul {
    list-style-type: none;
}

.recharge-order-summary .payment-form-container .payment-card .left-side-options ul li {
    margin: 10px 0px;
    padding: 10px 15px;
    position: relative;
    cursor: pointer;
}

.recharge-order-summary .payment-form-container .payment-card .left-side-options ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #637afa;
    height: 100%;
    width: 5px;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form {
    padding: 20px;
    width: 60%;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form label {
    font-size: 15px;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form input {
    border: 1px lightgray solid;
    margin-top: 3px;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form select {
    border: 1px lightgray solid;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form .form-heading {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form .payment-form-input {
    margin-top: 10px;
    padding: 0px 10px;
    /* border: 1px red solid; */
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form .payment-form-input-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0px 10px;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form .payment-form-input-flex .form-input {
    width: 48%;
}

.recharge-order-summary .payment-form-container .payment-card .right-side-payment-form .payment-form-input button {
    background: #637afa;
    color: #fff;
    width: 100%;
    padding: 15px 0px;
    margin-top: 10px;
}

/* recharge summary end */

/* Refer and Earn Start */

.refer-nd-earn .container {
    width: 80%;
    margin: 20px auto;
    border: 1px lightgray solid;
    padding: 20px;
    border-radius: 10px;
}

.refer-nd-earn .heading-container {
    text-align: center;
}

.refer-nd-earn .heading-container .heading {
    font-size: 33px;
    font-weight: bold;
    color: #637afa;
    text-transform: capitalize;
}

.refer-nd-earn .heading-container .content {
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 8px;
}

.refer-nd-earn .refer-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.refer-nd-earn .refer-steps .step-item {
    width: 30%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.refer-nd-earn .refer-steps .step-item .step-heading {
    font-weight: bold;
    font-size: 18px;
    color: #637afa;
    margin: 10px 0px;
    text-transform: capitalize;
}

.refer-nd-earn .refer-steps .step-item .step-info {
    font-size: 15px;
    color: #444444;
}

.refer-nd-earn .refer-steps .step-item .step-img {
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.refer-nd-earn .refer-steps .step-item .step-img .img-bg {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 33px;
    color: #637afa;
}

.refer-nd-earn .button-container {
    text-align: center;
    margin-top: 20px;
}

.refer-nd-earn .button-container button {
    background: #637afa;
    color: #fff;
    padding: 15px 40px;
}

/* Refer and Earn End */

/* FOOTER STYLING START */
.footer {
    background-color: #637afa;
    margin-top: 40px;
}

.footer .container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.footer .container .footer-part {
    width: 24%;
}

.footer .container .footer-part:nth-child(2) {
    width: 35%;
    display: flex;
    justify-content: space-between;
}

.footer .container .footer-part:nth-child(3) .little-about-company {
    font-size: 15px;
}

.footer .container .footer-part .footer-logo-container {
    width: 100%;
    margin: 20px 0px 0px 0px;
}

.footer .container .footer-part .footer-logo-container img {
    width: 80%;
}

.footer .container .footer-part .little-about-company {
    color: #ffffff;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    margin: 20px 0px;
}

.footer .container .footer-part ul {
    list-style-type: none;
    margin: 20px 0px;
}

.footer .container .footer-part ul li {
    margin-bottom: 10px;
}

.footer .container .footer-part ul li a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}

/* FOOTER STYLING END */


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {

    header .upper-nav .container .left-side {
        font-size: 14px;
        letter-spacing: 1px;
    }

    header .lower-nav .logo-container .logo-text {
        font-size: 26px;
    }

    header .lower-nav .middle {
        display: none;
    }

    header .lower-nav .middle ul li a i {
        font-size: 11px;
    }

    .banner-container .owl-theme .item {
        /*height: 30vh;*/
    }

    .hover-card-section .container {
        justify-content: start;
        width: 90%;
    }

    .hover-card-section .container .hover-card {
        width: 22%;
        padding: 10px;
        height: auto;
    }

    .hover-card-section .container .hover-card:first-child {
        background-color: #637afa;
        width: 35%;
    }

    .hover-card-section .container .hover-card:hover {
        width: 35%;
    }

    .hover-card-section .hover-card .card-heading-container .heading {
        font-size: 22px;
    }

    .hover-card-section .hover-card .hover-card-extra-content {
        font-size: 14px;
        text-align: justify;
    }

    /* another category */

    .another-category-card-section {
        margin: 20px 0px 10px 0px;
    }

    .another-category-card-section .container {
        width: 90%;
    }

    .another-category-card-section .container .another-category-card {
        flex-direction: column;
    }

    .another-category-card-section .container .another-category-card .category-card-content-container {
        width: 95%;
        margin: 20px 0px;
    }

    .another-category-card-section .container .another-category-card .category-card-content-container .heading {
        font-size: 22px;
    }

    .another-category-card-section .container .another-category-card .category-icons-container {
        width: 95%;
    }


    .mobile-app-section .container .mobileapp {
        width: 90%;
        flex-direction: column-reverse;
    }

    .mobile-app-section .container .mobileapp .left-side {
        width: 100%;
    }

    .mobile-app-section .container .mobileapp .left-side .heading {
        font-size: 37px;
        margin: 15px 0px 20px 0px;
    }


    .mobile-app-section .container .mobileapp .left-side .img-container .store-container {
        width: 35%;
    }

    .mobile-app-section .container .mobileapp  .right-side {
        width: 100%;
    }


    .gift-card-section {
        margin-top: 40px;
    }

    .gift-card-section .container {
        display: flex;
        justify-content: space-between;
        width: 90%;
        margin: auto;
    }

    .gift-card-section .container .left-side {
        display: none;
    }


    .gift-card-section .container .right-side {
        width: 100%;
    }

    .gift-card-section .container .right-side .cards-container {
        justify-content: space-between;
    }

    .gift-card-section .container .right-side .cards-container .card {
        width: 30%;
        margin: 0px 0px 20px 0px;
    }


    /* GIFT CARD ORDER PAGE STYLING START */
    /*@supports (-webkit-appearance: none) or (-moz-appearance: none) {*/
    /*    label input {*/
    /*        height: 18px;*/
    /*        width: 18px;*/
    /*    }*/
    /*}*/

    .gift-card-order .container-full .details-container .basic-details {
        flex-wrap: wrap;
        align-items: center;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left {
        width: 48%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type .type {
        margin-bottom: 10px;
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        font-size: 25px;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type .validity {
        margin-bottom: 10px;
        font-family: 'Poppins', sans-serif;
        color: #535151;
        font-size: 14px;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type-img {
        width: 100%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type-img img {
        width: 100%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-middle {
        width: 47%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-right {
        width: 100%;
        margin-top: 23px;
    }

    .gift-card-order .container-full .details-container .basic-details .details-right .heading {
        margin-bottom: 10px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .heading {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form {
        justify-content: space-between;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form .form-input {
        width: 45%;
        margin-bottom: 10px;
        margin-right: 30px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form .block-form-input {
        width: 45%;
        margin-bottom: 10px;
        margin-right: 30px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form .block-form-input textarea {
        height: 35px;
        width: 100%;
    }


    .gift-card-order .preview-section {
        flex-direction: column-reverse;
    }

    .gift-card-order .container .left-side,
    .gift-card-order .container .right-side {
        width: 100%;
    }

    .gift-card-order .gift-card-preview {
        border: 3px #d3d3d3 dotted;
        border-radius: 5px;
        padding: 10px 5px;
    }

    .gift-card-order .gift-card-preview .gift-card-img {
        width: 80%;
    }

    .gift-card-order .gift-card-preview .rest-details {
        margin: 15px;
    }

    .gift-card-order .gift-card-preview .category-preview {
        margin: 15px;
    }

    .gift-card-order .gift-card-preview .category-preview .category-img-container {
        width: 49%;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details {
        width: 40%;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-amount {
        font-size: 18px;
        margin-left: 20px;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-details-head {
        font-size: 19px;
        margin-left: 20px;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-number,
    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-pin {
        margin-left: 20px;
        font-size: 16px;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-validity {
        margin-left: 20px;
    }

    .gift-card-order .container .right-side .gc-type-category-top {
        margin-top: 30px;
    }

    #gift-card-order-page .description-section .container {
        width: 90%;
    }

    .description-section .container {
        width: 90%;
    }

    .description-section .container .tabs-container .tab-list .tab-heading {
        font-size: 15px;
    }

    .description-section .container .tabs-content .tab {
        font-size: 15px;
    }


    /* Recharge Page Styling Start */

    .recharge-section .container {
        width: 90%;
    }

    .recharge-section .recharge-forms .form-container {
        flex-direction: column-reverse;
        border-radius: 0px 0px 10px 10px;

    }

    .recharge-section .recharge-forms .form-container .left-side {
        width: 100%;
        padding: 20px;
    }

    .recharge-section .recharge-forms .form-container .left-side .form-heading {
        font-weight: bold;
        font-size: 20px;
        text-transform: capitalize;
    }

    .recharge-section .recharge-forms .form-container .right-side {
        width: 100%;
    }

    .recharge-order-summary {
        margin: 20px 0px;
    }

    .recharge-order-summary .container {
        width: 90%;
    }

    .recharge-order-summary .recharge-summary-container .recharge-summary-card {
        width: 70%;
    }

    .recharge-order-summary .payment-form-container .heading {
        font-size: 28px;
    }

    .recharge-order-summary .payment-form-container .payment-card {
        width: 100%;
    }

    /* Refer and Earn Start */

    .refer-nd-earn .container {
        width: 90%;
    }

    .refer-nd-earn .refer-steps .step-item .step-img .img-bg {
        height: 80px;
        width: 80px;
        font-size: 30px;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {

    ::placeholder {
        font-size: 13px;
    }

    select,
    option {
        font-size: 13px;
        color: gray;
        background: transparent;
    }

    .banner-container .owl-theme .item {
        /*height: 30vh;*/
    }

    .hover-card-section .container {
        flex-direction: column;
        width: 95%;
    }

    .hover-card-section {
        display: none;
    }

    .hover-card-section .container .hover-card {
        width: 100%;
        margin: 5px 0px;
    }

    .hover-card-section .container .hover-card:first-child {
        width: 100%;
    }

    .hover-card-section .hover-card .card-heading-container .heading {
        font-size: 20px;
    }

    .hover-card-section .hover-card .hover-card-image-container {
        width: 15%;
    }

    .hover-card-section .hover-card .hover-card-extra-content {
        font-size: 14px;
    }

    /* another category */

    .another-category-card-section {
        margin: 20px 0px 10px 0px;
    }

    .another-category-card-section .container {
        width: 95%;
    }

    .another-category-card-section .container .another-category-card {
        flex-direction: column;
        padding: 10px;
    }

    .another-category-card-section .container .another-category-card .category-card-content-container {
        width: 95%;
        margin: 5px 0px 15px;
    }

    .another-category-card-section .container .another-category-card .category-card-content-container .heading {
        font-size: 22px;
    }

    .another-category-card-section .container .another-category-card .category-icons-container {
        width: 95%;
    }

    .mobile-app-section .container .mobileapp {
        width: 95%;
        padding: 15px;
    }

    .mobile-app-section .container .mobileapp  .left-side .heading {
        font-size: 28px;
        letter-spacing: 1px;
        margin: 10px 0px 10px 0px;
    }

    .mobile-app-section .container .mobileapp .left-side .content {
        margin: 10px 0px 10px 0px;
    }


    .mobile-app-section .container .mobileapp .left-side .img-container {
        justify-content: space-between;
        /*margin-top: 20px;*/
    }

    .mobile-app-section .container .mobileapp .left-side .img-container .store-container:nth-child(2) {
        margin-left: 5px;
    }

    .mobile-app-section .container .mobileapp .left-side .img-container .store-container {
        width: 47%;
    }

    .mobile-app-section .container .mobileapp .left-side .img-container .store-container a {
        font-size: 14px;
    }

    .gift-card-section {
        margin-top: 20px;
    }

    .gift-card-section .container {
        width: 95%;
    }

    .gift-card-section .container .right-side .cards-container .card {
        width: 48%;
    }

    .gift-card-section .container .right-side .cards-container .card .card-heading {
        font-size: 16px;
        font-weight: 100;
    }


    /* GIFT CARD ORDER PAGE STYLING START */
    /*@supports (-webkit-appearance: none) or (-moz-appearance: none) {*/
    /*    label input {*/
    /*        height: 18px;*/
    /*        width: 18px;*/
    /*    }*/
    /*}*/

    .gift-card-order .container-full .details-container .basic-details {
        flex-direction: column;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left {
        width: 100%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type .type {
        margin-bottom: 10px;
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        font-size: 25px;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type .validity {
        margin-bottom: 10px;
        font-family: 'Poppins', sans-serif;
        color: #535151;
        font-size: 14px;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type-img {
        width: 100%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-left .gc-type-img img {
        width: 100%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-middle {
        width: 100%;
    }

    .gift-card-order .container-full .details-container .basic-details .details-right {
        width: 100%;
        margin-top: 23px;
    }

    .gift-card-order .container-full .details-container .basic-details .details-right .heading {
        margin-bottom: 10px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .heading {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form {
        justify-content: space-between;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form .form-input {
        width: 100%;
        margin-right: 0px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form .block-form-input {
        width: 100%;
        margin-right: 0px;
    }

    .gift-card-order .container .delivery-mode .mode-specific-form .form .block-form-input textarea {
        height: 35px;
        width: 100%;
    }

    .gift-card-order .container .self-mode {
        margin: 20px 0px 30px 0px;
        font-family: 'Poppins', sans-serif;
    }

    .gift-card-order .container .self-mode .heading-container {
        text-align: center;
        font-weight: bold;
        font-size: 25px;
        margin-bottom: 20px;
    }

    .gift-card-order .container .self-mode .card-container {
        flex-direction: column;
    }

    .gift-card-order .container .self-mode .card-container .card {
        width: 100%;
        margin: 10px 0px;
        padding: 10px;
    }

    .gift-card-order .container .left-side,
    .gift-card-order .container .right-side {
        width: 100%;
    }

    .gift-card-order .gift-card-preview {
        border: 3px #d3d3d3 dotted;
        border-radius: 5px;
        padding: 10px 5px;
    }

    .gift-card-order .gift-card-preview .gift-card-img {
        width: 80%;
    }

    .gift-card-order .gift-card-preview .rest-details .receiver-name {
        font-size: 15px;
    }

    .gift-card-order .gift-card-preview .rest-details .receiver-message {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .gift-card-order .gift-card-preview .category-preview {
        margin: 15px;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-amount {
        font-size: 16px;
        margin-left: 5px;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-details-head {
        font-size: 17px;
        margin-left: 5px;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-number,
    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-pin {
        margin-left: 5px;
        font-size: 15px;
    }

    .gift-card-order .gift-card-preview .category-preview .gc-details .gc-validity {
        margin-left: 5px;
        font-size: 14px;
    }

    .description-section .container {
        width: 95%;
        padding: 15px;
    }

    .description-section .container .tabs-container .tab-list .tab-heading {
        font-size: 12px;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Recharge Page Styling Start */
    .recharge-section .container {
        width: 95%;
    }

    .recharge-section .recharge-forms .form-container {
        flex-direction: column-reverse;
        border-radius: 10px;
    }

    .recharge-section .recharge-forms .form-container .left-side {
        width: 100%;
        padding: 0px 10px;
    }

    .recharge-section .recharge-forms .form-container .left-side form {
        margin-top: 15px;
    }

    .recharge-section .recharge-forms .form-container .left-side form .form-input {
        padding: 5px 10px;
    }

    .recharge-section .recharge-forms .form-container .left-side form .radio-form-input label {
        display: flex;
        align-items: center;
        margin-right: 30px;
        font-size: 14px;
    }

    .recharge-section .recharge-forms .form-container .left-side form .radio-form-input label input {
        margin-right: 5px;
    }

    .recharge-section .recharge-forms .form-container .left-side form .flex-form-input {
        margin: 10px 0px;
        display: flex;
    }

    .recharge-section .recharge-forms .form-container .left-side form button {
        width: 100%;
        background: #637afa;
        color: #fff;
        padding: 10px;
        font-size: 14px;
    }

    .recharge-section .recharge-forms .form-container .left-side .form-heading {
        font-size: 16px;
    }

    .recharge-section .recharge-forms .form-container .right-side {
        width: 100%;
        padding: 10px;
    }

    .recharge-section .recharge-forms .form-container .right-side .recharge-offer .offer-img {
        height: 180px;
    }

    .recharge-section .recharge-forms .form-container .right-side .recharge-offer .offer-img img {
        width: 100%;
        height: 100%;
    }

    .recharge-order-summary {
        margin: 20px 0px;
    }

    .recharge-order-summary .container {
        width: 90%;
    }

    .recharge-order-summary .recharge-summary-container .recharge-summary-card {
        width: 70%;
    }

    .recharge-order-summary .payment-form-container .heading {
        font-size: 28px;
    }

    .recharge-order-summary .payment-form-container .payment-card {
        width: 100%;
    }


    .refer-nd-earn .container {
        width: 95%;
        padding: 15px;
    }

    .refer-nd-earn .heading-container .heading {
        font-size: 26px;
    }

    .refer-nd-earn .heading-container .content {
        margin-top: 3px;
    }

    .refer-nd-earn .refer-steps {
        flex-direction: column;
    }

    .refer-nd-earn .refer-steps .step-item {
        width: 100%;
        margin: 5px 0;
    }

    .refer-nd-earn .refer-steps .step-item .step-heading {
        font-size: 18px;
        margin: 5px 0px;
    }

    .refer-nd-earn .refer-steps .step-item .step-img {
        display: flex;
        justify-content: center;
    }

    .refer-nd-earn .refer-steps .step-item .step-img .img-bg {
        height: 70px;
        width: 70px;
        background: transparent;
        border: 1px #637afa solid;
        font-size: 25px;
    }
    .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0em !important;
    vertical-align: 0em !important;
    content: "";
    border-top: 0em solid !important;
    border-right: 0em solid transparent !important;
    border-bottom: 0;
    border-left: 0em solid transparent !important;
}
.ltn__shop-options ul li {
    list-style: none;
    margin-top: 0;
    line-height: 25px !important;
}
.gf_dropdown_content{
    display:block !important;
}
.giftcardbottom_margin {
    width: 100%;
    margin-bottom: 10px !important;
    background-size: 100% 100%;
    margin-top: 10px !important;
}

.gf_dropdown_content_system{
  display:none !important; 
 
}
.gf_dropdown_content_system_left{
    display:none !important;
  
}
.gf_container{
  width: 30% !important;
    padding-left: 0% !important;
}
.headerbtngiftcard1{
   background: #423a3a96;
    width: 100% !important;
    border-radius: 3px !important;
    text-align: center;
    font-size: 5vw !important; 
    margin-bottom: 3px !important;
    line-height: 7vw !important;
    
}
.headerbtngiftcard2{
    background: #423a3a96;
    width: 100% !important;
    border-radius: 3px !important;
    text-align: center;
    font-size: 10px !important;
}
.gcd_col{
justify-content: center;
    display: flex;
    margin-left: 15px;
    margin-right: 15px;
}
.gf_width{
    width: 100%;
    margin-top: -19% !important;
    position: absolute;
}

}
  
                                           /*//end media query*/
                                           
.rech_container{
    width:100%;
    padding-left:2.8%;
    padding-right:2.8%;
    /*padding-bottom:4%;*/
  
} 
.rech_data{
    width:100%;
   background:#001e38; 
  
   border-radius:10px;
   height:400px;
   
}
                                           
.container1{
    display:flex;
    
}
.socal_icon{
    display: flex;
     align-items: center;
}
.container1 .left-side{
    width:50%;
    display:flex;
    justify-content:left;
}
.container1 .right-side{
    width:50%;
    display:flex;
    justify-content:right;
}
.gf_dropdown_content_system{
    display:flex;
     justify-content:right;
     
}
.gf_dropdown_content_system_left{
    display:flex;
     justify-content:left;
     
}
.headerbtngiftcard1{
background: #423a3a96;
    width: 44%;
    border-radius: 11px;
    text-align: center;
    font-size:3vw;
    font-weight:500;
    margin-bottom:11px;
    line-height: 4vw;
}
.headerbtngiftcard2{
background: #423a3a96;
    width: 44%;
    border-radius: 11px;
    text-align: center;
    font-size:1.6vw;
}

.giftcardbottom_margin{
   width: 100%;
    margin-bottom: 20px;
    background-size: 100% 100%;
    margin-top:20px;
   
}
.gc_default-select{
border-radius: 10px !important;
    border: 2px solid #ededed !important;
    height: 40px !important;
    line-height: 35px !important;
    
}

.gc_bottom_text_product_info{
    padding-top:10px !important;
    padding-bottom:10px !important;
    font-weight:300 !important;
    
}
.gc_product_img{
    border-radius: 15px;
    border:1px solid lightgray;
}
.gc_product_border{
border-radius: 15px;
}

.gc_product_card_border{
    padding-left: 10px;
    padding-right: 10px;
}


/*modal design*/
.modal-dialog {
     margin-top: 0px; 
}
.modal-content {
    border-radius: 0.3rem !important;
    padding:20px;
}
.modal-body {
    padding: 15px !important;
}
.modal-footer{
    padding-right:0px;
    padding-bottom:0px;
}
.dropdown-menu
{
    display:none !important;
}
.dropdown-menu.show {
  display:block !important;  
}

.gf_background_image{
    
width:100%;

}
.gf_width{
    width:100%;
   margin-top: -16%;
    position: absolute;
    
}
  .gf_container{
    width: 43%;
    padding-left: 6%;
   
}
.gf_dropdown_right{
    text-align:right;
    padding-left:23px !important;
    padding-top:0px !important;
    padding-bottom:0px !important;
    font-weight:400;
    font-family: 'Poppins', sans-serif;
}

.gf_dropdown_left{
    text-align:left;
    width:30px;
}
.gf_dropdown_content{
    display:none;
}
.gift_category{
border: 1px solid rgba(0,0,0,.15);
    align-items: center;
    display: flex;
   

    width: 33%;
    border-radius: 10px;
    height: 40px;
}

/*about privacy faq css code*/
@media only screen and (max-width: 600px) {
   .ani_about_p{
    width:100%;
  /*height:400px;*/
    background: #f9f9f9;
    display:flex;
    flex-direction: column-reverse;
   padding: 80px 15px 60px 15px !important; 
} 
  .ani_about_b_p{
    width:100% !important;
} 
 .ani_aboutimg{
    width:100% !important;
    height: 33%;
    
}
.ani_aboutus_p{
   width:100% !important;
    /*padding-left: 7%;*/
    font-size: 15px !important;
    padding-top: 1% !important;
    font-weight: 700;
   

}

}

/*about css*/


/*end about css*/
.ani_about_p{
    width:100%;
  /*height:400px;*/
    background: #f9f9f9;
    display:flex;
    justify-content:center;
}
.ani_aboutus_p{
    width:50%;
    /*padding-left: 7%;*/
    font-size: 2.5vw;
    padding-top: 11%;
    font-weight: 700;

}
.ani_aboutcontent{
    
    /*padding-left: 7%;*/
    /*padding-right: 7%;*/

}
.ani_aboutimg{
    width:45%;
    align-items:center;
    display: flex;
    justify-content: center;
    
}
.ani_about_b_p{
    width:45%;
}
.about_btn{
    /*padding-left:7%;*/
}
.about_btn1{
background: #001e38;
    border-radius: 0px;
    font-size: 1.5vw;
    border-radius:10px;
}
.about_btn1:hover{
    background:var(--ltn__secondary-color);
}
.para_content{
    line-height:1.3;
    /*margin-bottom:12px;*/
    text-align:justify;
    font-family: 'Lora';
    font-weight: 500;

    
}
.content_privacy{
    padding-left:4%;
}









