@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
    /*font-family: 'Poppins', sans-serif;*/
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    
    -webkit-transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    color: #fff;
}

a {
    text-decoration: none;
    color: #6B2B2B;
    cursor:pointer;
}

.background {
    background-color: #ED3237;
}

.text-red{
    color: #ED3237;
}

.text-dark-red {
    color: #6B2B2B;
}

.text-green {
    color: #00FF00;
}

header {
    padding: 0 1rem 0 1rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19);
}

.header-icon {
    display: flex;
    float: right;
}
.header-icon2 {
    display: flex;
    float: left;
}
.header-icon img {
    cursor:pointer;
    height: 3rem;
}

.std-name {
    margin-top: 1rem;
    text-align: center;
}

.head-box {
    margin: 1rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #6B2B2B;
    box-shadow: 20px 20px 20px rgba(0,0,0,0.19);
}

.head-box img {
    height: 3rem;
    margin-right: 2rem;
}

main {

}

main .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

main .button {
    color: #6B2B2B;
    border: #6B2B2B 0.2rem solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 50%;
    flex: 1;
    cursor:pointer;
}

main .button img {
    margin-bottom: 1rem;
    height: 5rem;
}

/* login page */

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login img {
    margin-top: 3rem;
}

.login-box {
    color: #ED3237;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30%;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.8);
}

.login-box form {
    box-sizing: border-box;
}

.txt_field {
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 3rem 0;
}

.txt_field input {
    width: 100%;
    padding: 0 1rem;
    height: 3rem;
    font-size: 1rem;
    border: none;
    background: none;
    outline: none;
}

.txt_field label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .5s;
}

.txt_field span::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #6B2B2B;
    transition: .5s;
}

.txt_field input:focus ~ label,
.txt_field input:valid ~ label {
    top: -5px;
}

.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span:: ::before {
    width: 100%;
}

.submit {
    margin-top: 2rem;
    width: 100%;
    height: 5rem;
    border-radius: 2rem;
    background-color: #ED3237;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
}

/*popup*/
.popup {
    position: absolute;
    top:-150%;
    left:50%;
    opacity:0;
    transform: translate(-50%, -50%) scale(1.25);
    width: 70%;
    background: #fff;
    color: #6B2B2B;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.8);
    border-radius: 1rem;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 20ms ease-in-out 0ms;
}

.active {
    top:50%;
    opacity:1;
    transform: translate(-50%, -50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 20ms ease-in-out 0ms;
}

.popup .close-btn {
    position: absolute;
    top:1rem;
    right:1rem;
    width:3rem;
    height:5rem;
    font-size:3rem;
    text-align:center;
    line-height:3rem;
    cursor:pointer;
    cursor:pointer;
}

.popup .form h2 {
    text-align:center;
    margin: 5rem 0 1rem 0;
    font-size:2rem;
    cursor:pointer;
}
.popup .form h2 a{
    border-radius: 10px;
    outline: none;
    border: none;
    background: #6B2B2B;
    color: white;
    padding: 10px 20px;
}

.popup .form .select-std {
    width:100%;
    border:none;
    outline:none;
    font-size:2rem;
    background:#fff;
    cursor:pointer;
    
}

.popup .form .form-element {
    margin:3rem;
}

.popup .form .form-element label {
    font-size:1.2rem;
    margin-bottom:1rem;
}

.popup .form .form-element input[type="radio"] {
    margin-right:0.5rem;
    vertical-align:middle;
}

.popup .form .form-element button {
    
    margin-top:3rem;
    width:100%;
    height:4rem;
    border:none;
    outline:none;
    font-size:2rem;
    background:#ED3237;
    color:#fff;
    border-radius:1rem;
    cursor:pointer;
}

.box {
    display:flex;
    flex-direction:column;
    border-bottom: 0.2rem solid #000;
    margin:2rem 0 2rem 0;
    padding:0 2rem 2rem 2rem;
}

.box h3 {
    color:#ED3237;
}

.box p {
    color:#6B2B2B;
}

.box .inner-box {
    display:flex;
    justify-content:space-between;
}

.video iframe{
    width:100%;
    height:23rem;
}

.image-container {
    width:100%;
    height:100%;
    display:flex;
    flex-wrap:wrap;
    
}

.image-container .image-box {
    width:48%;
    margin:1%;
}

.image-container .image-box img {
    width:100%;
}

.box-curv {
    display:flex;
    flex-direction:column;
    margin:1rem;
    padding:2rem;
    border-radius:1rem;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
}

.box-curv .side-right{
    float:right;
}

.fee-title {
    text-align:center;
    margin:2rem;
}

.fee-box {
    display:flex;
    border-bottom: 0.2rem solid #000;
    margin-top:2rem;
    padding-bottom:1rem;
}

.fee-box .right-icon {
    margin-left:auto;
}

.pay-btn {
    display:flex;
    justify-content:center;
}

.pay-now {
    margin-top: 2rem;
    width: 50%;
    height: 5rem;
    border-radius: 2rem;
    background-color: #28a745;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
}

.fee-icon {
    margin:0 1rem 0 1rem;
    
}

.fee-icon img {
    height:3rem;
}