﻿#registration_menu .nav-link {
    padding: .5rem;
}
#registration_menu .card-body {
    flex: 1 1 auto;
    padding: 1.25rem 2rem;
}
#registration_menu .card-header, .card-title {
    font-size: .8rem;
    height: initial;
    padding: .2rem .2rem 0 .2rem;
}


    #registration_menu .card-header > .nav .nav-link::before {
     
        height: 3px;
       
    }

#registration_menu .verfication_header {
    background: #2694d1;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    justify-content: center;
    height: 2.8rem;
}

.button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border:none;
    cursor:pointer;
}

    .button:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #2694d1;
        border-radius: 10rem;
        z-index: -2;
    }

    .button:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #0cf;
        transition: all 0.3s;
        border-radius: 10rem;
        z-index: -1;
    }

    .button:hover {
        color: #fff;
        text-decoration:none;
    }

        .button:hover:before {
            width: 100%;
        }


.btn_wrap{
 
    margin-top:3rem;
}
#registration_menu .registration_header {
    background: #2694d1;
    color: #fff;
    width: 100%;
    justify-content: space-between;
    height: initial;
    padding: 0.65rem;
}

.address_heading {
    color: #fff;
    background: #2694d1;
    padding: 0.5rem;
    font-size: .9rem;
    border-radius: 4px;
    margin: 0 0 0.5rem 0;
}
.btn_wrap__next {
    margin-left: 1rem;
}

.btn_wrap__prev{
    margin-left:4rem;
}
.btn_grid{
    display:flex;
    justify-content:center;
    align-items:center;
}
.document_container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}
.document_wrap__header {
    padding: 0.6rem;
    text-align: center;
    background: #2694d1;
    color: #fff;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}
.document_wrap__links {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 0.4rem;
    background: #2694d1e6;
    border-radius: 0 0 4px 4px;
    transition: all ease-in-out .2s;
    transform: translateY(-100%);
}

.document_container:hover .document_wrap {
    opacity: 0.5;
}
.document_container:hover .document_wrap__links {
    transform: translateY(0);
}
.document_wrap__links div{
    margin:.5rem 0;
}

/* The Modal (background) */
.mymodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.mymodal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 60%;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0.3rem;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.myclose {
    color: black;
    float: right;
    font-size: 1.6rem;
    font-weight: bold;
}

    .myclose:hover,
    .myclose:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.mymodal-header {
    padding: .5rem;
    background-color: #f8f9fa;
}

.mymodal-body {
    padding: 1.5rem;
}

.mymodal-footer {
    padding: .5rem;
    background-color: #f8f9fa;
}

.link_disabled {
    pointer-events: none;
    cursor: default;
}
.document_grid{
    display:flex;
    align-items:center;
    overflow:auto;
}
.document_container1 {
    width: 20%;
    margin-left: 1rem;
}
.top_header {
    box-shadow: 0px 1px 9px #2694d1;
    border-bottom: 10px solid #2694d1;
}
.top_header-logo{
    width:7rem;
}
.top_header-details > h1 {
    font-weight: 800;
    color: #2694d1;
    text-align:center;
    font-size:2rem;
}
.top_header-details > h4 {
    font-size: 15px;
    font-weight: 600;
    text-align:center;
    text-transform:uppercase;
}
.footer {
    border-top:1px solid #ddd;
    padding: 0.6rem;
   margin-top:auto;
}
@media only screen and (max-width: 600px) {
    .top_header-details > h1 {
       font-size:1.2rem;
    }
    .top_header-details > h4 {
        font-size: 11px;
     
    }
    .btn_wrap__prev{
        margin-left:0;
    }
    #registration_menu .card-body{
        padding:1rem;
    }
    .document_container1{
        width:100%;
    }
}

body{
    text-transform:uppercase;
}

.footer_links{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0;
    padding:0;
    flex-wrap:wrap;
}
.footer_links>li{

}
.footer_links > li >a{
    text-decoration:none;
    padding:1rem;
}
.details{

}
.details--header {
    color: #000;
    text-align: center;
    margin: 2rem 0;
}
.details--para {
    text-align: justify;
    color: #000;
    font-size: 1rem
}
.contact-table{

    margin:auto;
}
.contact-table tr {
    border-bottom: 1px solid #fff;
}
    .contact-table td {
        background: #dddddd52;
        padding: 1rem;
        border-right: 1px solid #fff;
    }
.reg_photo {
    width: 160px;
}
.sig_photo {
    width: 164px;
    height: 43px;
}

@media only screen and (max-width: 500px) {
    .mt-sm {
        margin-top: 1rem
    }
}
    @media (min-width: 576px) {

        #registration_menu {
            max-width: 730px;
        }

        
    }

    @media (min-width: 768px) {

        #registration_menu {
            max-width: 960px;
        }
    }

    @media (min-width: 992px) {

        #registration_menu {
            max-width: 1070px;
        }
    }

    @media (min-width: 1200px) {

        #registration_menu {
            max-width: 1280px;
        }
    }

    #accordionFlushExample .accordion-button {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: .8rem;
        font-size: 1rem;
        color: #212529;
        text-align: left;
        background-color: #f9f9f9;
        border: 0;
        border-radius: 0;
        overflow-anchor: none;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    }
