/* @import url("responsive.css"); */


@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
    /* box-sizing:border-box; */
    padding:0;
    /* margin:0; */
}
body{
    /* font-family: "Poppins", sans-serif; */
}

a, a:hover, a:active{
    text-decoration: none;
    color: inherit;
    box-shadow: none;
    outline: none;
}
h1,h2,h3,h4,h5,h6,p{
    /* margin-bottom: 0; */
}
.green{
    color: #5ACC81;
}
.bg-yellow{
    background-color: #FFC011;
}
.text-yellow{
    color: #FFC011;
}
.sec_title{
    font-size: 50px;
    line-height: 85px;
    font-weight: 700;
    color: #000;
    font-family: 'Inter', sans-serif;
}





/* header section css  */
.navbar-expand-lg .navbar-nav .nav-link{
    margin-top: 0;
    padding: 5px 15px;
    /* margin-right: 10px; */
}
.main_head{
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.main_head .main_logo{
    display: inline-block;
}
.main_head .main_logo img{
    width: 135px;
}
.main_head .main_nav .nav-link{
    font-size: 14px;
    font-weight: 600;
    color: #1B1B1B;
    transition: all 0.3s ease-in-out;
}
.main_head .main_nav .nav-link:hover{
    color: #1B1B1B;
    /* border-bottom: 3px solid #0B36CD; */
    background: #39b54a;
    color: #fff!important;
    border-radius: 25px;
}
.main_head .navbar-toggler{
    padding: 0!important;
    outline: none!important;
    box-shadow: none!important;
    border: none!important;
}
.main_head .navbar-toggler i{
    color: #014770;
}
.cartbtn {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00456D;
    border-radius: 10px;
    position: relative;
}
.cartbtn i{
    position: relative;
    font-size: 24px;
    color: #fff;
    right: 3px;
    top: 3px;
}
.cartbtn span{
        position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #FFC700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
/* --------------------------------- */


/* Pulse Button css  */
.pulse-button {
  /* Button default styles, customize them to match your button */
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  
  /* Apply the pulse animation */
  animation: pulse 1s infinite;
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* --------------------------------- */




/* hero section css  */
.hero_wrap{
    background-image: url(../images/hero_bg.jpg);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 30px;
    z-index: 1;
}
.hero_head h1{
    font-size: 50px;
    color: #000;
    line-height: 85px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.hero_text h4{
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Inter", sans-serif;
}
.hero_btn{
    position: relative;
    display: inline-block;
    background-color: #ff000d;
    color: #fff;
    font-size: 31px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
    text-align: center;
    padding: 10px 35px;
    border-radius: 35px;
    transition: all 0.3s ease-in-out;
}
.hero_btn:hover, .hero_btn:focus{
    background-color: #1B1B1B;
    color: #fff;
}
/* --------------------------------- */



/* Explore sec */
.category_box h5{
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    font-family: 'Inter', sans-serif;
}
.category_btn{
    width: 100%;
    height: calc(100% - 55px);
    background: #0037A2;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
/* --------------------------------- */



/* Featured product css  */
.featured_text h4{
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    font-family: 'Inter', sans-serif;
}
.featured_text p{
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Inter', sans-serif;
}
.featured_text ul li{
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Inter', sans-serif;
    padding-left: 25px;
    position: relative;
    list-style: none;
}
.featured_text ul li::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/check.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}
.featured_text ul li + li{
    margin-top: 15px;
}
.product_btn{
    width: 150px;
    display: inline-block;
    padding-bottom: 5px;
    color: #FFB000;
    border-bottom: 1px solid #FFB000;
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.product_btn:hover{
    color: #fff;
    border-color: #fff;
}
/* --------------------------------- */



/* Footer Sec CSS */
.footer_sec{
    position: relative;
    padding: 60px 0 0;
    background-color: #2A45A3;
    margin-top: 2rem;
}
.footer_contact{
    border-top: 1px solid #C5C5C5;
    /* background-color: #FFDF88; */
    /* margin-top: 50px; */
    padding: 20px 0px;
}
.footer_contact .contact_icon{
    /* width: 60px; */
    /* height: 60px; */
    border: 2px solid #fff;
    border-radius: 100%;
    padding: 12px;
    /* text-align: center; */
    /* justify-content: center; */
}
.footer_contact .contact_icon img{
    width: 20px;
}
.footer_contact h6{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Inter', sans-serif;
}
.footer_contact h6 a{
    word-break: break-all;
}
.footer_links .list-inline-item:not(:last-child){
    margin-right: 1rem !important;
}
.footer_links a{
    font-size: 15px;
    line-height: 20px;
    color: #000;
    text-underline-offset: 4px;
}
.footer_sec p{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 20px;
}
.copyright_sec{
    border-top: 2px solid #000;
    background-color: #000;
    padding: 1rem;
}
.list-inline .list-inline-item{
    display:block;
}
.footer_cards{
    margin-bottom: 30px;
}
.footer_logo{
    margin: 60px 20px 60px 0px;
}
/* --------------------------------- */







/* top rated product css  */

.top_rate_sec{
    padding: 0 0 60px;
    position: relative;
}
.tpr_head{
    background-color: #014770;
    /* padding: 15px 40px; */
    display: inline-block;
    border-bottom-right-radius: 30px;
}
.tpr_head h2{
    font-size: 49px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    padding: 31px;
    margin-bottom: 0px;
}
.tpr_content{
    border: 1px solid #000;
}
.tpr_inner{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    /* gap: 10px; */
    padding: 25px 15px 15px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}
.tpr_content .col-md-6:nth-child(even) .tpr_inner{
    border-right: 0px;
}
.tpr_content .col-md-6:nth-child(5) .tpr_inner, .tpr_content .col-md-6:nth-child(6) .tpr_inner{
    border-bottom: 0 ;
}
.tpr_inner .tpri_img{
    width: 43%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tpr_inner .tpri_img img{
    width: 100%;
    padding: 0px;
}
.tpr_inner .tpri_cntn{
    width: 55%;
}
.tpr_inner .tpri_cntn h3.tpr_pr_name{
    font-weight: 800;
    font-size: 27px;
    margin-bottom: 18px;
    color: #000 !important;
}

.tpr_inner ul.tpr_pr_list li{
    font-size: 12px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.tpr_inner ul.tpr_pr_list li i{
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #014770;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 5px;
    font-size: 12px;
}
.tpr_inner .tpri_cntn p.tpr_pr_des{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    line-height: 19px;
    height: 52px;
}
.tpr_inner .tpri_cntn .tpr_pr_prc{
    font-size: 24px;
    font-weight: bold;
    padding: 10px 0px;
    margin-bottom: 0px !important;
}
.tpr_inner .tpri_cntn .tpr_pr_cart_btn{
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    background-color: #ffc700;
    border-radius: 20px;
    padding: 8px 25px;
    transition: all 0.3s;
    font-family: "Montserrat", sans-serif;
    color: #000;
    border: none;
    cursor: pointer;
    margin-bottom: 7px;
}
.tpr_inner .tpri_cntn .tpr_pr_cart_btn:hover{
    background-color: #3ed20b;
    color: #fff;
}
.tpr_inner .tpri_cntn .tpr_pr_lm{
    display: block;
    text-decoration: underline;
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/* --------------------------------- */

/* product carrousal css start */

.tec_carousal_sec{
    padding-bottom: 100px;
}
.tec_carousal_sec .sec_head h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 60px;
    color: #000;
    margin-bottom: 25px;
}
.tec_box{
    background-color: #B3C8D4;
    border-radius: 20px;
    padding: 10px 7px 10px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tec_img {
    width: 126px;
    height: 126px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 7px;
}
.tec_img a{
    display: inline-block;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.tec_img a img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.tec_name{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 10px !important;
    font-weight: bold !important;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.tec_name:hover{
    color: #ffff;
}
.tec_price{
    font-size: 12px;
    line-height: 25px;
    color: #000;
    font-weight: bold !important;
}
.tec_btn{
    font-size: 12px;
    font-weight: bold;
    padding: 5px 15px;
    background-color: #FFC700;
    color: #fff;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.tec_btn:hover{
    color: #fff;
}
.tec_lm{
    display: block;
    font-size: 13px;
    text-decoration: underline;
    color: #fff;
    line-height: 30px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.tec_lm:hover{
    text-decoration: underline;
    color: #fff;
}


/* --------------------------------- */

/* tech gadget css start */

.tech_gad_sec{
    padding-bottom: 80px;
}
.tg_box{
    background-color: #B3C8D4;
    border-radius: 30px;
    padding: 10px 15px 5px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tg_img{
    width: 165px;
    height: 165px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 10px;
    display: flex;
  align-items: center;
  justify-content: center;
}
.tg_img a{
    display: inline-block;
    cursor: pointer;
}
.tg_img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tg_name{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    min-height: 26px;
    margin-bottom: 0!important;
}
.tg_name:hover{
    color: #ffff;
}
.tg_price{
    font-size: 13px;
    line-height: 16px;
    color: #000;
    margin-bottom: 10px;
}
.tg_btn{
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    background-color: #FFC700;
    color: #fff;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.tg_btn:hover{
    color: #fff;
}
.tg_lm{
    display: block;
    font-size: 14px;
    text-decoration: underline;
    color: #fff;
    line-height: 30px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.tg_lm:hover{
    text-decoration: underline;
    color: #fff;
}

/* --------------------------------- */

 /* reward section css */

.rewd_sec{
    padding-bottom: 30px;
}
 .rewd_sec .rewds_inner{
     border: 1px solid #000;
     border-radius: 30px;
     padding: 30px 20px;
     position: relative;
 }
 .rewdt_img {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
}
.rewdt_contn h2{
    font-size: 36px;
    font-weight: 700;
    line-height: 60px;
    color: #000;
    margin-bottom: 12px;
}
.rewdt_contn .rewdt_para{
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    margin-bottom: 35px;
}
.rewdt_contn h6{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;color: #000;
}
.rewdt_contn ul{
    padding-left: 10px;
}
.rewdt_contn ul li img{
    width: 20px;
    margin-right: 4px;
}
.rewdt_contn ul li{
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 400;
    color: #000;
}
rewdt_contn .rewdt_extra{
    font-size: 20px;
}
.rewd_top {
    padding-bottom: 70px;
}
.rewdb_box {
    background: #EBEBEB;
    border: 1px solid #757575;
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
    text-align: center;
}
.rewdb_head {
    display: flex;
}
.rewd_img {
    margin-top: -15px;
    margin-left: -15px;
    margin-right: 15px;
}
.rewd_img img{
    width: 80px;
}
.rewd_cntn h5{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 3px;
    text-align: left;
    color: #000;
    font-family: roboto;
}
.rewd_cntn p{
    font-size: 14px;
    text-align: left;
    color: #000;
    margin-bottom: 0px;
    font-family: roboto;
}
.rewdb_head{
    margin-bottom: 10px;
}
.rewdb_body ul li img{
    width: 14px;
    margin-right: 10px;
}
.rewdb_body ul li{
    font-size: 15px;
    margin-bottom: 3px;
    font-weight: 400;
    text-align: left;
    color: #000;
}
.rewd_btn{
    display: inline-block;
    background-color: #FFC700;
    font-size: 14px;
    padding: 9px 48px;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    margin: 10px auto 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.rewd_btn:hover{
    color: #000;
}

.list-unstyled{
    margin-bottom: 0px !important;
}
 /* --------------------------------- */

 /* reward section css */

.main_footer{
    background: #E9E9E9;
    padding: 70px 0 40px;
}
.ft_head{
    font-size: 15px;
    font-weight: 700;
    color: #3E3E3E;
    text-decoration: underline;
    margin-bottom: 25px;
}
.ft_list ul li a{
    font-size: 14px;
    color: #3E3E3E;
    margin-bottom: 6px;
    display: inline-block;
    font-weight: 400;
}
/* .ft_list .ft_head{
    margin-bottom: 30px;
} */
.ft_disclose p{
    font-size: 13px;
    line-height: 21px;
    color: #3E3E3E;
}
.ft_contact .ft_logo img{
    width: 65%;
    margin-bottom: 20px;
}
.ft_cnt_box .ft_mail, .ft_cnt_box .ft_number {
    display: inline-block;
    width: 100%;
}
.ft_cnt_box i{
    color: #3E3E3E;
    font-size: 14px;
    margin-right: 12px;
}
.ft_mail, .ft_number{
    font-size: 14px;
    margin-bottom: 10px;
    color: #3E3E3E;
    font-weight: 500;
}
.ft_ad{
    margin-bottom: 20px;
    display: flex;
}
.ft_ad i{
    font-size: 14px;
    margin-right: 12px;
    position: relative;
    top: 3px;
}
.ft_ad h6{
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #3E3E3E;
    margin-top: 0;
}
.ft_ad p{
    font-size: 14px;
    font-weight: 500;
    color: #3E3E3E;
    margin-bottom: 0;
}
.ft_text p{
    font-size: 12px;
    font-weight: 400;
    color: #3E3E3E;
}
.ft_top{
    padding-bottom: 50px;
}
.ft_btm{
    padding: 20px 0;
    background-color: #00456D;
}
.ft_btm p{
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}
.tec_carousal_inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.tec_carousal_inner .tg-carousel{
    overflow: hidden;
    border-radius: 65px;
}
.tec_carousal_inner .owl-theme .custom-nav {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
}
.tec_carousal_inner .owl-theme .custom-nav .owl-prev, .tec_carousal_inner .owl-theme .custom-nav .owl-next {
  position: absolute;
  height: 100px;
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}
.tec_carousal_inner .owl-theme .custom-nav .owl-prev i, .tec_carousal_inner .owl-theme .custom-nav .owl-next i {
  font-size: 60px;
  color: #FFC700;
}
.tec_carousal_inner .owl-theme .custom-nav .owl-prev {
  left: -40px;
}
.tec_carousal_inner .owl-theme .custom-nav .owl-next {
  right: -40px;
}

.tpr_pr_list{margin-bottom:20px};
.tpr_pr_des{margin-bottom:18px}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #014770;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #ededed;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}




  /* --------------------------------- */

  @media only screen and (max-width: 1400px){

    .tg_name {
    font-size: 13px;
}

  }

@media only screen and (max-width: 1200px){

    .tec_name {
    font-size: 12px;
}

.tec_price {
    font-size: 11px;
}

.tec_btn {
    font-size: 10px;
}

.tec_lm {
    font-size: 10px;
}

.tg_name {
    font-size: 14px;
}

.tg_btn {
    font-size: 11px;
}

.tg_lm {
    font-size: 14px;
}


}

@media only screen and (max-width: 768px){

 .tec_carousal_inner .tg-carousel {
    overflow: visible;
}

.tec_carousal_inner .owl-theme .custom-nav .owl-prev i, .tec_carousal_inner .owl-theme .custom-nav .owl-next i {
    font-size: 40px;
}

.tec_carousal_inner .owl-theme .custom-nav .owl-next {
    right: -25px;
}

.tec_carousal_inner .owl-theme .custom-nav .owl-prev {
    left: -26px;
}


}

@media only screen and (max-width: 992px){

    .tec_name {
    font-size: 12px;
}

.tec_price {
    font-size: 11px;
}

.tec_btn {
    font-size: 9px;
}

.tec_lm {
    font-size: 10px;
}

}

@media only screen and (max-width: 576px){

.tec_carousal_inner .owl-theme .custom-nav .owl-prev {
    left: -11px;
}

.tec_carousal_inner .owl-theme .custom-nav .owl-next {
    right: -11px;
}

}
.head_hmbg{
    background-color: #00456d;
    padding: 12px 0;
}
.head_hmbg .bred_style{
    margin-bottom: 0!important;
}
.head_hmbg .bred_style li a {
   color: #fff!important;
   display: inline-block;
   margin-right: 10px;
   position: relative;
}
.head_hmbg .bred_style li > a::after{
    content: ">";
    margin-left: 7px;

}
.head_hmbg .bred_style li{
    color: #ffc700;
    list-style-type: none;
    display: inline-block;
}

/* .pr_seach_box .container{
    border-bottom: 1px solid #00000029;
} */
small.total_item_count {
    font-size: 14px;
    padding: 10px;
    background: #000000;
    border-radius: 10px;
    color: #ffffff;
}
.plan.activeeee{
    border: 3px solid #ffce24;
    /* background: #fbf5dd; */
}
.pr_dl {
    display: flex;
    justify-content: center;
    align-items: center;
}
.delete-div a i{
    color: red;
}

.edd-member-term{
    background-color: #e3f2ff;
    padding: 38px 30px;
    border-radius: 0px;
    margin: 40px 0px;
    color: #000;
    font-size: 12px;
    line-height: 22px;
    text-align: left;
    font-weight: normal;
}

.tpr_pr_list li img{
    padding-right: 4px;
    height: 21px;
    width: 25px;
}




@media screen and (max-width: 1399px){
    .sec_title{
        font-size: 40px;
        line-height: 75px;
    }
    .hero_head h1 {
        font-size: 40px;
        line-height: 75px;
    }
    .hero_text h4 {
        font-size: 22px;
    }
    .hero_btn {
        font-size: 28px;
        padding: 12px 30px;
    }
    .category_box h5{
        font-size: 22px;
    }
    .footer_links a{
        font-size: 13px;
    }
    .footer_links .list-inline-item:not(:last-child) {
        margin-right: 0.5rem !important;
    }
}


@media screen and (max-width: 991px){
    .container{
        max-width: 100%;
    }
    .sec_title{
        font-size: 35px;
        line-height: 75px;
    }
    .hero_head h1 {
        font-size: 35px;
        line-height: 75px;
    }
    .hero_sec .container{
        padding: 0;
    }
    .hero_wrap {
        background-position: -10px center;
        padding: 30px 30px 50px;
        height: 400px;
    }
    .hero_text h4 {
        line-height: 35px;
    }
    .hero_btn {
        font-size: 30px;
        padding: 15px 40px;
        border-radius: 10px;
    }
    .category_box h5{
        font-size: 20px;
    }
    .category_btn{
        height: calc(100% - 50px);
        font-size: 30px;
        font-weight: 600;
    }
    .footer_links .list-inline-item:not(:last-child) {
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 767px){
    .category_btn{
        width: 145px;
        height: 145px;
        font-size: 22px;
    }
    .footer_sec {
        margin-top: 1rem;
        padding: 20px 0px 0px;
    }
    .footer_contact {
        /* margin-top: -200px; */
    }
    .footer_links li{
        display: block;
    }
    .footer_links a {
        font-size: 15px;
    }
    .footer_links .list-inline-item:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: 0.75rem !important;
    }
}


/*laptop view*/
@media screen and (min-width: 992px){
    .tpr_inner{height: 23rem;}
    .tpr_inner .tpri_cntn p.tpr_pr_des{height: 70px !important;}
    .rewdb_body{margin-top: -15px !important;}
    .es-footer-3 li a{margin-left: 25px;}

    /* .tec_carousal_inner .owl-theme .custom-nav .owl-prev i, .tec_carousal_inner .owl-theme .custom-nav .owl-next i{
        top: 80%;position: relative;
    } */
    .navbar{padding: 15px 0px !important;}
    .jet-img{
        margin-top: 18px;
    }

}



/*tablet*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .panel-footer .text-right{font-size: 11px;}
    .rewdt_contn h2{font-size: 22px !important;margin-bottom: 0px !important;}
    .rewdt_contn .rewdt_para{font-size: 16px !important;margin-bottom: 25px !important;}
    .rewdt_contn h6{font-size: 15px !important;}
    .rewdt_contn ul li{font-size: 12px !important;}
    .sec-cancel{width: 95%  !important;}
    .tpr_head h2{font-size: 30px !important;}
    /* .navbar{padding:0px !important;} */
    .rewdb_body ul li{
        margin-bottom: -32px;
    }
}



/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .navbar{padding:4px !important;}
    .rewdb_body ul li{
        margin-bottom: -24px;
    }
    .category_box h5{
        font-size: 18px;
    }
}



/*mobile view*/
@media screen and (max-width: 575px){
    .heading_sec {
        border-radius: 5px !important;
    }
    .sec_title{
        font-size: 30px;
        line-height: 75px;
    }
    .hero_sec .container{
        padding: 0;
    }
    .hero_wrap {
        background-position: -10px center;
        padding: 30px 30px 50px;
        height: 600px;
    }
    .hero_text h4 {
        font-size: 20px;
        line-height: 25px;
    }
    .hero_btn {
        font-size: 25px;
        padding: 12px 30px;
        border-radius: 10px;
    }
    .category_box h5{
        font-size: 16px;
    }


    .hero_cntn p{text-align: center;font-size: 20px;}
    .hero_head h1{font-size: 20px; line-height: 60px;}
    .tpr_head{margin-left: -1px;width: 84%;}
    .tpr_head h2{padding: 10px;font-size: 21px;}
    .tpr_content{border: none !important;}
    .tpr_inner{padding: 10px 0px !important;}
    .top_rate_sec .container{padding: 0px !important;}
    .tpr_inner .tpri_cntn h3.tpr_pr_name{font-size: 17px !important;}
    .tpr_inner .tpri_cntn p.tpr_pr_des{width: 99% !important;height: auto;margin-bottom: 0px !important;}
    .tpr_inner .tpri_cntn{width: 57% !important;}
    /* .tpr_pr_list li img{width: 8%;} */
    .tpr_pr_list{height: auto;}
    .rewdt_contn h2{font-size: 26px !important;}
    .rewdb_box{margin-left: auto;margin-right: auto;width: 80%;}
    .rewd_sec .rewds_inner{padding:0px !important;}
    .upper_hero .hero_head h1{font-size: 35px !important;}
    .cart-dropdown-item-wraper{left: 25% !important;width:300px !important;}
    div.gta-shop-product{padding: 0px !important;}
    .contact-box{padding: 0px !important;width:auto !important;margin: 0px !important;}
    .contact-form{padding:20px !important;}
    .contact-box h4{font-size: 16px !important;line-height: 29px !important;}
    .rewdb_body ul li{margin-bottom: -23px;}
  .table thead tr th{
      font-size: 13px;font-weight: normal;text-align: center;
  }
}
.cart-abc{
    margin-top: 0;
    margin-left: -5px;
    /* filter: brightness(0) invert(1); */
    /* height: 40px; */
    width: 38%;
}

h6.tg_price{
    font-weight: bold !important;
}
.rewd_btn{
    margin: 26px auto 0 !important;
}
.cart-mobile{
    display: inline-block;
    font-family: "Poppins", sans-serif;
    padding: 15px 19px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #014770;
    width: 100%;
}

.cart-mobile1{
    display: inline-block;
    font-family: "Poppins", sans-serif;
    padding: 15px 19px;
    font-size: 11px;
    font-weight: bold;
    color: #000000;
    background: #ffc700;
    width: 100%;
}

/* .cart-table{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} */
/*----srt css-----------*/
.mt_3{
    margin-top: 30px;
}
.mt_2{
    margin-top: 20px;
}
.mt_4{
    margin-top: 40px;
}
.mt_8{
    margin-top: 80px;
}
/*------modal css-------*/
/********Modal**********/
div#success-alert {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    background: #28a745;
    color: #fff;
    text-align: center;
    font-family: 'Sansation';
    text-transform: capitalize;
    font-size: 15px;
    z-index: 1;
    opacity: 0;
}

#success-alert .close {
    float: right;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    border: none !important;
    background-color: transparent !important;
    color: #fff;
    text-shadow: none;
    filter: alpha(opacity=20);
    opacity: 1;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 27px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #01a500;
}

input:focus + .slider {
    box-shadow: 0 0 1px #01a500;
}

input:checked + .slider:before {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.subscribe-btn p {
    padding: 1px 0 0 12px;
    color: #000000;
    font-weight: 600;
}

.subscribe-btn {
    display: inline-flex;
}

.bill-frm input[type=checkbox], .bill-frm input[type=radio] {
    opacity: 1 !important;
    margin-left: 1px!important;
    float: left;
    /* clear: both; */
    /* position: absolute; */
    left: 0;
    z-index: 0;
}

.bill-frm input[type=checkbox]+label:before, .bill-frm input[type=radio]+label:before, .bill-frm input[type=checkbox]+label:after {
    display: none;
}

.bill-frm label {
    text-align: left;
    color: #fff !important;
}

.d-flex.justify-content-between.order-summary-total.pt-1 {
    clear: both;
}

.seal {
    margin-top: 20px;
}

.promocode-sec {
    width: 90%;
    padding: 34px 25px;
    background-color: #f8c66e;
    border: 2px solid #f8c66e;
    border-radius: 5px;
    display: flex;
}

/* .form-control-2 {
    display: flex;
    width: 50%;
    height: 43px;
    padding: 6px 12px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    font-family: 'Sarabun';
} */

/* .site-button-2 {
    background: #eb4a3a !important;
    color: #fff;
    margin-bottom: 0px;
    letter-spacing: 0;
    font-family: 'Mulish' !important;
    font-size: 14px;
    border: 2px solid #eb4a3a;
    padding: 10px;
    border-radius: 4px;
} */

.mem-area {
    width: 75%;
    margin: 0 auto;
}

.mem-banner {
    background-size: cover;
    height: 390px;
    border-radius: 15px;
}

.mem-banner h2 {
    color: #fff;
    font-family: Montserrat;
    font-weight: 600;
    padding: 10% 0px 0 70px;
    width: 300px;
    font-size: 38px;
    letter-spacing: 1px;
}

.mem-banner p {
    color: #fff;
    font-family: Montserrat;
    font-size: 16px;
    padding: 0 0 0 70px;
    width: 350px;
}

.mem-r-btn a {
    background: #C8A1E0;
    color: #443d3d;
    font-weight: 800;
    border-radius: 7px;
    padding: 14px 40px;
    text-transform: uppercase;
    font-family: Montserrat;
}

.mem-r-btn a:hover, .mem-r-btn a:focus {
    text-decoration: none;
    background: #04283d;
    color: #fff;
}

.mem-r-btn {
    margin-left: 70px;
    margin-top: 30px;
}

.mem-body {
    padding: 40px 70px;
}

.mem-body h4 {
    font-size: 29px;
    font-family: montserrat;
    text-align: center;
    letter-spacing: 0;
    font-weight: 600;
    color: #000;
    line-height: 36px;
    margin: 30px 0 30px;
}

.mem-body p {
    display: flex;
    color: #000;
    font-family: montserrat;
    margin: 18px 0 0 0;
    font-size: 15px;
}

.mem-body p img {
    float: left;
    width: 69px;
    margin: -10px 12px 0 0;
}

ul.mem-tier {
    text-align: center;
}

ul.mem-tier li {
    display: inline-block;
    width: 30%;
    box-shadow: 0px 0px 15px 0px #00000040;
    border-radius: 10px;
    margin-right: 20px;
    margin-bottom: 50px;
    position: relative;
}

.tier-each h2 {
    color: #04283d;
    font-family: montserrat;
    font-weight: 700;
    font-size: 25px;
    margin: 20px 0 0;
    padding: 0;
}

.tier-each h4 {
    color: #484848;
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-family: Roboto;
}

ul.mem-tier li p {
    margin: 0;
    padding: 0 !important;
    display: block;
    text-align: left;
    margin-left: 46px;
    font-size: 13px;
}

ul.mem-tier li::before p {
    position: absolute;
    content: '';
    background: #000;
    width: 6px;
    height: 6px;
    left: -14px;
    top: 8px;
}

.tier-each ul {
    margin: 10px 0 20px;
}

.tier-each ul > li::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    left: -13px;
    top: 10px;
}

.tier-each ul > li {
    box-shadow: none;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 0 50px;
    text-align: left;
    position: relative;
    font-family: Roboto;
    line-height: 29px;
}

.tier-each a {
    display: block;
    background: #04283d;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Sansation';
    padding: 10px;
    margin: 0 27px 20px;
    border-radius: 6px;
}

.tier-each a:hover, .tier-each a:focus {
    text-decoration: none;
    background: #000;
    color: #fff;
}

.mem-body h6 {
    font-size: 13px;
    line-height: 18px;
    font-family: 'Sansation';
    background: #f2f2f2;
    padding: 30px;
}

ul.color-v {
    display: flex;
    clear: both;
}

ul.color-v img {
    width: 60px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

ul.color-v {
    display: flex;
}

.in-color-v {
    margin: 20px 0 0 0;
}

.mem-tier li.active {
    border: 3px solid #04283d;
}

.mem-tier li.active a {
    background: #04283d;
}

.linka {
    color: blue;
    text-decoration: underline;
}

.click-bump-wrap {
    /* background-color: #f4efe6;
    padding: 10px; */
    margin-bottom: 50px;
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

.click-bump select {
    width: 300px;
}

.click-bump {
        /* background-color: #f2f7ba; */
    /* padding: 0 12px 20px; */
    /* border: 2px dashed #e51010; */
    border-radius: 12px;
    margin-bottom: 20px;
}

.click-bump label {
    padding-left: 20px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.click-bump input {
    left: 0px;
    top: 19px;
}

.click-bump h3 {
    font-size: 20px;
    font-weight: 600;
}

.click-bump p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.click-bump ul li img {
    width: 17px;
}

.click-bump ul li {
    line-height: 24px;
    font-size: 13px;
}

::selection {
    color: #fff !important; 
    background: #11574a !important;
    /* -webkit-text-fill-color: #000000 !important; */
}

.cart-pg-btn {
    width: 100%;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    padding: 15px 40px;
    font-size: 16px;
    color: #000000;
    background: #ffc700;
}

.pt_left h5 {
    color: #fff;
}

.panel-body {
    padding-bottom: 15px;
    /* border-bottom: 1px solid #00456d52; */
    margin-bottom: 15px;
}

.prio_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.prio_box .pull-righ {
    text-align: right;
}

.pull-right {
    display: flex;
}

.pull-right .pull-left {
    width: 100%;
}

.extra-cell {
    margin-left: 15px;
    
}

/*laptop view*/
@media screen and (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        /* margin-top:24px; */
    }
    .jet-img{margin-top: 18px !important;}
    .rewdt_contn{padding-left:20px;}
    .rewd_cntn{margin-top:-7px !important;}
    .rewdb_body ul li{
        font-size: 15px;
    margin-bottom: -21px !important;
    font-weight: 400;
    text-align: left;
    color: #000;
    margin-left: -19px !important;
    /* height: 20px; */
    }
}

.rewdb_body ul li img{
    width: 20%;
    margin-right: -10px;
}


.eddy-slct {
    height: 54px;
    color: #000;
    font-size: 14px;
    /* opacity: 0.5; */
    /* background: #e5e5e5; */
    border: 1px solid #888888;
    border-radius: 0px !important;
}

.form-select{
    background-color: #168b2a !important;
    color: #fff;
}

.jet-img{
    height: 65% !important;
    width: 65% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /* margin-top: 18px; */
    padding: 0px !important;
}

.rewdt_extra{
    color: #000 !important;
    font-size: 21px;
    width: 72%;
    line-height: 33px !important;
    padding-top: 10px;
}
 
.main_head .main_nav .nav-link{
    font-weight: 500 !important;
    font-family: 'Poppins',sans-serif;
}
.nav-item{
    list-style: none;
}

.fda-discla{
        display: flex;
    align-items: normal;
    justify-content: space-between;
}
div.fda-discla h4 {
    color: #fff;
    font-size: 27px;
    font-weight: bold;
}

div.fda-discla p {
    color: #fff !important;
    font-size: 14px;
    width: 100%;
    line-height: 24px;
}
.elite-edge-footerlogo{
    background: #2a45a3;
    text-align: center;
    padding-bottom: 20px;
}

/*laptop view*/
@media screen and (min-width: 992px){
    .elite-edge-footerlogo{display: none;}
    .es-footer-4 {text-align: center;}
}



/*tablet*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .elite-edge-footerlogo{display: none;}
    .es-footer-4 img{display: none;}
}



/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .fda-discla{flex-direction: column;}
    .elite-edge-footerlogo img{width:55% !important;}
    .elite-edge-footer1{background: #2a45a3;padding: 10px 0px;}
    .es-footer-4 img{display: none;}
}



/*mobile view*/
@media screen and (max-width: 575px){
    .fda-discla{flex-direction: column;}
    .elite-edge-footerlogo img{width:75% !important;}
    .es-footer-4 img{display: none;}
}



.es-footer-1{
    background: radial-gradient(159.11% 454.01% at 47.6% 45.27%, #000000 0%, #666666 100%); 
    padding:60px 0px;   
}



/* footer */
.es-footer-2 img{
    width: 10%;
}
.es-footer-2{
    display: flex;
    align-items: center;
    padding: 10px 0px;
}
.es-footer-2 p{
    color: #fff;
    margin-bottom: 0px !important;
}
.es-footer-3{
    list-style-type: none;
    margin-top: 10px;
    padding-left: 0px;
}
.es-footer-3 li{
    color: #fff;
    font-family: "Montserrat", serif;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
}
.es-footer-3 li a{
    color: #fff !important;
    text-decoration: underline !important;
    font-family: "Montserrat", serif !important;
}
.es-footer-4 img{
    width: 50%;
    margin-top: -10px;
}
.es-footer-4 p{
    color: #fff;
    text-align: left;
    font-size: 13px;
    padding: 15px 0px;
}
.es-footer-5 h4{
    color: #fff;
    text-decoration: underline;
    font-size: 17px;
    padding-bottom: 10px;
}
.es-footer-5 img{
    width: 100%;
    padding: 6px;
    background: #fff;
    border-radius: 5px;
}
.es-footer-line{
    padding-bottom: 20px;
    border-bottom: solid 2px #fff;
}
.dynamic-btn-1{
        padding: 10px;
    border: 2px solid #020202 !important;
    outline: 0;
    background-color: #fff !important;
    /* height: 3rem; */
    border-radius: 5px;
    box-sizing: border-box;
    min-width: 15.625rem;
}
