@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
}


:root{
    --color-a: #156177;
    --color-a2: #57CBF5;
    --color-b: #E1F3F9;
    --color-b2: #9EB6C4;
    --color-b3: #E2F3F9;
    --color-c: #231F20;
    --color-c2: #4D4F4F;
    --color-c3: #8D9396;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
body{
    letter-spacing: .5px;
    font-family: "Hind Siliguri", sans-serif;
    color: #fff;
    background: linear-gradient(120deg, #FFFFFF,#BCBEC0,#FFFFFF);
    min-height: 100vh;
    line-height: 1.2;
}

.preeloader{
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #156177ed;
}
.preeloader img{
    width: 180px;
    margin-bottom: 20px;
    animation: preeload_animation 2s ease infinite;
}
@keyframes preeload_animation {
    0%{
        scale: 1;
    }
    50%{
        scale: 1.1;
    }
    100%{
        scale: 1;
    }
}
.base-tran{
    transition: .3s ease;
}
.bg-a,.hover-bg-a:hover{
    background: var(--color-a);
}
.bg-b,.hover-bg-b:hover{
    background: var(--color-b);
}
.bg-b2,.hover-bg-b2:hover{
    background: var(--color-b2);
}
.bg-b3,.hover-bg-b3:hover{
    background: var(--color-b3);
}
.bg-c,.hover-bg-c:hover{
    background: var(--color-c);
}
.bg-c2,.hover-bg-c2:hover{
    background: var(--color-c2);
}
.bg-c3,.hover-bg-c3:hover{
    background: var(--color-c3);
}
.color-a,.hover-color-a:hover{
    color: var(--color-a);
}
.color-a2,.hover-color-a2:hover{
    color: var(--color-a2);
}
.color-b,.hover-color-b:hover{
    color: var(--color-b);
}
.color-b2,.hover-color-b2:hover{
    color: var(--color-b2);
}
.color-b3,.hover-color-b3:hover{
    color: var(--color-b3);
}
.color-c,.hover-color-c:hover{
    color: var(--color-c);
}
.color-c2,.hover-color-c2:hover{
    color: var(--color-c2);
}

.fs-48{
    font-size: 48px;
}
.font-100{
    font-size: 100px;
}
.custom-border{
    border: 1px solid var(--color-b2);
}
.custom-border-2{
    border: 2px solid var(--color-b2);
}

.content-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.cursor-pointer{
    cursor: pointer;
}

.inv-container-mini{
    width: 40%;
    margin: auto;
}

.custom-form-group {
    text-align: center;
    position: relative;
}
.custom-form-group label{
    display: block;
    color: #cdcdcd;
    font-size: 24px;
    font-weight: bold;
    
}
.custom-form-group input, .custom-form-group select{
    width: 100%;
    background: #cdcdcd;
    font-size: 18px;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    color: #7197a2;
}
.custom-form-group select option{
    font-weight: bold;
}
.custom-form-group input::placeholder{
    color: var(--color-a);
    opacity: 0.5;
}
.input-icon-group {
    position: relative;
}
.input-icon-group  .right-input-icon{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    background: #cdcdcd;
    font-weight: bold;
    padding-left: 10px;
    z-index: 5;
    color: #7197a2;
    transition: .2s ease;
}
.input-icon-group  .right-input-icon:hover{
    cursor: pointer;
    color: #367585;
}

.custom-form-group:not(:last-child){
    margin-bottom: 20px;
}

.custom-radio-box{
    padding: 14px;
    width: 100%;
    background: #cdcdcd;
    transition: .2s ease-in-out;
    
}

.custom-radio-box.active{
    background: #fff;
}
.custom-radio-box{
    padding: 15px 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.custom-radio-box label{
    color: var(--color-a);
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}
.custom-radio-box label small{
    font-size: 14px;
}
.custom-radio-box input{
    display: none;
}

.btn-cus-1{
  border-color: #cdcdcd;
  color: #fff;
  font-size: 20px;
  border: 2px solid;
}
.btn-cus-1:hover{
    border-color: #7197a2;
    color: #7197a2;
}

@media screen and (max-width:600px) {

    .custom-form-group input, .custom-form-group select,.input-icon-group .right-input-icon,label.fs-6.photo_lebel{
        font-size: 14px !important;
    }
    .custom-radio-box label small{
        font-size: 10px;
    }
    .custom-radio-box label,.custom-form-group label{
        font-size: 16px;
    }
    .btn-cus-1 {
        font-size: 14px;
        border-width: 1px;
    }
}
@media screen and (max-width:380px) {
    .custom-form-group label{
        font-size: 16px !important;
    }
    .custom-form-group input, .custom-form-group select,.input-icon-group .right-input-icon,label.fs-6.photo_lebel{
        font-size: 12px !important;
    }
}