@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;400;600;700&display=swap');
input:focus {
    box-shadow: none;
    outline: none;
}
body {
    font-family: 'Signika Negative', sans-serif;
}
a,
a:hover {
    text-decoration: none;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fs-10 {
    font-size: 10px;
}
.fs-11 {
    font-size: 11px;
}
.fs-12 {
    font-size: 12px;
}
.fs-13 {
    font-size: 13px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-19 {
    font-size: 19px;
}
.fs-20 {
    font-size: 20px;
}
.fs-21 {
    font-size: 21px;
}
.fs-22 {
    font-size: 22px;
}
.fs-23 {
    font-size: 23px;
}
.fs-24 {
    font-size: 24px;
}
.fs-25 {
    font-size: 25px;
}
.fs-26 {
    font-size: 26px;
}
.fs-27 {
    font-size: 27px;
}
.fs-28 {
    font-size: 28px;
}
.fs-29 {
    font-size: 29px;
}
.fs-30 {
    font-size: 30px;
}
.fs-31 {
    font-size: 31px;
}
.fs-32 {
    font-size: 32px;
}
.fs-33 {
    font-size: 33px;
}
.fs-34 {
    font-size: 34px;
}
.fs-35 {
    font-size: 35px;
}
.fs-36 {
    font-size: 36px;
}
.fs-37 {
    font-size: 37px;
}
.fs-38 {
    font-size: 38px;
}
.fs-39 {
    font-size: 39px;
}
.fs-40 {
    font-size: 40px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    position: relative;
}
 
select {
  background: #fff url('../images/select-down.png') no-repeat 98% center !important; 
}


.btn-primary {
    background-color: #a27a2c !important;
    border-color: #a27a2c !important;
}

.bg-light {
    background-color: #f4f5f6 !important;
}
.bg-primary {
    background-color: #070e44 !important;
}
.bg-secondary {
    background-color: #e2c68e !important;
}
.text-primary {
    color: #421c52 !important;
}
.text-secondary {
    color: #070e44 !important;
}
.text-danger {
    color: #df2111 !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

.copy_text {
    border-top: 2px solid #c5c5c5;
} 

header {
    border-bottom: 1px solid #fff;
}
.loginSec {
    background: #2f294e url("../images/loginbg.jpg") bottom center no-repeat;
    height: 100vh;
    background-size: cover;
    overflow: hidden;
}
.bannerInsignia{
    background: #070e44;
}
.loginSec:after {
    content: "";
    position: absolute;
    right: -26%;
    bottom: 0;
    height: 100%;
    width: 50%;
    background: url('../images/bannerRight.png') no-repeat center center;
    background-size: contain;
}
.login_sec {
    height: calc(100vh - 85px);
    overflow: hidden;
    z-index: 99;
}
.login_sec .form-group {
    max-width: 70%;
    margin: auto;
}
.login_sec input.form-control {
    border: 0;
    color: #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
}

.otp_row {
    display: none;
}

#nav-icon1 {
    width: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    top: 0;
    height: 35px;
    transition: all 0.6s;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 70%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    right: 15%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 12px;
}

#nav-icon1 span:nth-child(2) {
    top: 18px;
}

#nav-icon1 span:nth-child(3) {
    top: 24px;
}

#nav-icon1.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    right: -60px;
    background: var(--primary-bg);
}

#nav-icon1.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.card_mid {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}
.innerPro {
    background: center center no-repeat;
    background-size: cover !important;
    border-radius: 8px;
    overflow: hidden;
    padding-top: 340px;
}
.logoDv {
    right: 10px;
    top: 10px;
}
.innerPro:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#421c5200, #121d3a 94%);
}
.border-bottom {
    border-bottom: 1px solid #664075 !important;
}
.listMinHeight {
    height: 52px;
}

.favCard {
    padding: 50px 0;
}
.favCard .row { 
    z-index: 99;
}
.modal .border-bottom {
    border-bottom: 1px solid #d4d4d4 !important;
}
.modal .form-group .form-control {
    height: 42px;
    background: #fbfbfb;
    border-color: #d4d4d4;
}

.thanks_text h3 {
    font-size: 44px;
}

.thanks_text h4 {
    font-size: 44px;
}

.slide_menu_m {
    position: fixed;
    right: 0;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 999;
    display: none;
}
.slide_meni_list_h {
    background: #fff;
    width: 250px;
    height: 100%;
    box-shadow: 0px 0px 8px 5px #00000017;
}
.slide_meni_list_h ul li a {
    color: #282727;
    font-size: var(--font13);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.slide_meni_list_h ul li a:hover {
    text-decoration: none;
}

.slider_cate_right {
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
}
.slider_cate_right p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.menu_ic.slider_nav_menu {
    left: 90%;
    z-index: 9999;
    position: fixed;
}

.slidd.open {
    left: 0px;
    z-index: 9;
}
.over_lap_div {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0000001a;
    display: none;
    cursor: pointer;
}
.slide_meni_list_h ul li a {
    color: #282727;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.menu_slide_open .outer {
    transform: translateX(-250px);
}
.collepsMobileOne {
    display: none;
}
button.close {
    opacity: 1;
    right: 10px;
    top: 10px;
}
.showFooter h3 span:before {
    content: "";
    position: absolute;
    right: 0px;
    width: 12px;
    height: 2px;
    background: #6c77a5;
    top: 5px;
}
.showFooter h3 span:after {
    content: "";
    position: absolute;
    right: 5px;
    height: 12px;
    width: 2px;
    background: #6c77a5;
}
.openFooter h3 span:after {
    content: "";
    display: none;
}


@media (max-width: 991px) {
    .login_sec {
        height: calc(100vh - 121px);
    }
}
@media (max-width: 767px) {
    .loginSec {
        height: auto;
        padding-bottom: 70px;
    }
    .login_sec {
        height: auto;
    }
    .loginSec:after {
        content: "";
        position: absolute;
        right: 0%;
        bottom: -27%;
        height: 50%;
        width: 100%;
        background: url(../images/bannerRight.png) no-repeat center center;
        background-size: contain;
    }
    .favCard h3.fs-26 {
        font-size: 16px;
    }
    .favCard p.fs-18 {
        font-size: 14px;
    }
    .favCard {
        padding: 50px 0 95px;
        margin-bottom: -113px;
    }
    .innerPro {
        padding-top: 170px;
    }
    .hideMobile{
        display: none;
    }
   .openFooter .hideMobile{
        display: block;
    }
}
@media (max-width: 580px) {
    .card_mid {
        top: -120px;
    }
}
@media (max-width: 480px) {
    .card_mid {
        top: -85px;
    }
}
@media (max-width: 425px) {
    .card_mid {
        top: -50px;
    }
}
@media (max-width: 410px) {
    .innerPro ul li p.fs-16 {
        font-size: 13px;
    }
    .innerPro ul li button {
        font-size: 12px;
    }
}
@media (max-width: 514px) {
    .thanks_text h4 {
        font-size: 28px;
    }
    .thanks_text .fs-16 {
        font-size: 15px;
    }
}

@media (max-width: 395px){
    header span {
        font-size: 12px;
    }
}




@media (max-width: 475px){
    .innerPro h3 {
        height: 40px;
    }
}
@media (max-width: 374px){
    .productList .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .innerPro h3 {
        height: auto;
    }
}

@media (max-width: 375px) {
    .login_sec .form-group {
        max-width: 100%;
    }
    .card_mid {
        top: -25px;
    }
    .thanks_text h3 {
        font-size: 35px;
    }
    .thanks_text .fs-20 {
        font-size: 14px;
    }
    .thanks_text h4 {
        font-size: 21px;
    }
    .login_sec h3.fs-20 {
    font-size: 19px;
}
}
