body {
        background: #ecf0f3;
    }
    .btn-outline-warning{
        border: 1px solid #fff;
    }
    .top-header > div{
        margin: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .menubtnstyle{
        text-transform: capitalize;
    margin-left: 5px;
    /* width: 100px; */
    padding: 8px;
    text-decoration: none;
    }
    .bg-saffron {
        background-color: #c52f34 !important;
        box-shadow: 0px 0px 1px 0px #606060;
        /* border-top: 1px solid #fff; */
    }
    .card-header{
        text-align: center;
        font-size: 30px;
    }
    .card{
        box-shadow: 0px 10px 10px -10px #000;
    }
    .card.animate {
        transition: transform .2s; /* Animation */
    }
    .card.animate:hover {
    transform: scale(1.02); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }
    .alert-success {
        color: #fff;
        background-color: #28a745;
    }
    .alert-danger {
        color: #fff;
        background-color: #c82333;
    }
    .alert-primary {
        color: #fff;
        background-color: #0062cc;
    }
    .alert-info {
        color: #fff;
        background-color: #17a2b8;
    }

    
    .wrapper {
        max-width: 350px;
        min-height: 500px;
        margin: 60px auto;
        padding: 40px 30px 30px 30px;
        background-color: #ecf0f3;
        border-radius: 15px;
        box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
    }

    .wrapper .logHead {
        font-weight: 600;
        font-size: 1.4rem;
        letter-spacing: 1.3px;
        padding-left: 10px;
        color: #555;
    }

    .wrapper .form-field input {
        width: 100%;
        display: block;
        border: none;
        outline: none;
        background: none;
        font-size: 1.2rem;
        color: #666;
        padding: 10px 15px 10px 10px;
        /* border: 1px solid red; */
    }

    .wrapper .form-field {
        padding-left: 10px;
        margin-bottom: 20px;
        border-radius: 20px;
        box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
    }

    .wrapper .form-field .fas {
        color: #555;
    }

    .wrapper .btn {
        box-shadow: none;
        width: 100%;
        height: 40px;
        border-radius: 25px;
        box-shadow: 3px 3px 3px #b1b1b1,
            -3px -3px 3px #fff;
        letter-spacing: 1.3px;
    }

    .wrapper a {
        text-decoration: none;
        font-size: 0.8rem;
        color: #03A9F4;
    }

    .wrapper a:hover {
        color: #039BE5;
    }

    @media(max-width: 380px) {
        .wrapper {
            margin: 30px 20px;
            padding: 40px 15px 15px 15px;
        }
    }

      h1 {
    text-align: center;
}
h2 {
    margin: 0;
}
#multi-step-form-container {
    /* margin-top: 5rem; */
}
.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.pl-0 {
    padding-left: 0;
}
.button {
    padding: 0.7rem 1.5rem;
    border: 1px solid #4361ee;
    background-color: #4361ee;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
.submit-btn {
    border: 1px solid #0e9594;
    background-color: #0e9594;
}
.mt-3 {
    margin-top: 2rem;
}
.d-none {
    display: none;
}
.form-step {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
}
.font-normal {
    font-weight: normal;
}
ul.form-stepper {
    counter-reset: section;
    margin-bottom: 3rem;
}
ul.form-stepper .form-stepper-circle {
    position: relative;
}
ul.form-stepper .form-stepper-circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.form-stepper-horizontal {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
ul.form-stepper > li:not(:last-of-type) {
    margin-bottom: 0.625rem;
    -webkit-transition: margin-bottom 0.4s;
    -o-transition: margin-bottom 0.4s;
    transition: margin-bottom 0.4s;
}
.form-stepper-horizontal > li:not(:last-of-type) {
    margin-bottom: 0 !important;
}
.form-stepper-horizontal li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.form-stepper-horizontal li:not(:last-child):after {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    content: "";
    top: 32%;
}
.form-stepper-horizontal li:after {
    background-color: #dee2e6;
}
.form-stepper-horizontal li.form-stepper-completed:after {
    background-color: #4da3ff;
}
.form-stepper-horizontal li:last-child {
    flex: unset;
}
ul.form-stepper li a .form-stepper-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 0;
    line-height: 1.7rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.38);
    border-radius: 50%;
}
.form-stepper .form-stepper-active .form-stepper-circle {
    background-color: #4361ee !important;
    color: #fff;
}
.form-stepper .form-stepper-active .label {
    color: #4361ee !important;
}
.form-stepper .form-stepper-active .form-stepper-circle:hover {
    background-color: #4361ee !important;
    color: #fff !important;
}
.form-stepper .form-stepper-unfinished .form-stepper-circle {
    background-color: #f8f7ff;
}
.form-stepper .form-stepper-completed .form-stepper-circle {
    background-color: #0e9594 !important;
    color: #fff;
}
.form-stepper .form-stepper-completed .label {
    color: #0e9594 !important;
}
.form-stepper .form-stepper-completed .form-stepper-circle:hover {
    background-color: #0e9594 !important;
    color: #fff !important;
}
.form-stepper .form-stepper-active span.text-muted {
    color: #fff !important;
}
.form-stepper .form-stepper-completed span.text-muted {
    color: #fff !important;
}
.form-stepper .label {
    font-size: 1rem;
    margin-top: 0.5rem;
}
.form-stepper a {
    cursor: default;
}

.footer_content{
    background-color: #c3292e;
    /* margin-top: 50px; */
    background-repeat: no-repeat;
    background-size: 100%;
    color: #fff;
    background-position: center -60px;
}
.footer_content .container{
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 200px;
}
.footer_content ul{
    margin: 0px;
    padding: 0px;
}
.footer_content ul li{
    list-style-type: none;
}

.card_image{
    height: 250px;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-size: 100%;
}
.disabled{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

form.cmxform label.error, label.error {
    color: red;
    font-style: italic;
}
.ajaxloader{
    position: fixed;
    z-index: 99999;
    height: 100%;
    width: 100%;
    background-color: rgb(14 13 13 / 30%);
    top: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px;
    background-image: url('images/Ajux_loader.gif');
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    background-color: #000;
}
.nav-item{
    margin-right: 10px;
}
.carousel-caption {
    position: absolute;
    top: 25px;
    left: 12%;
    text-align: left;
    width: 35%;
    text-transform: capitalize;
}
.carousel-inner {
    text-align: left;
    max-height: 450px;
    text-transform: capitalize;
}
.slider_container{
    background: #185589;
    padding: 50px 0px;
    margin-top: 40px;
}
.slider_container .follow_us{
  max-width: 800px;
  margin: auto;
}
.slider_container h2{
  text-align : center;
  margin-bottom: 30px;
  color: #ffffff;
}
.ourtools_head {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #c52f33;
}

ul.up_list li {
    margin-bottom: 8px;
}

.box {
    border: 1px solid #272b26;
    border-radius: 4px;
    padding: 20px;
}

.row-section {
    margin: 40px 0px;
}

.people .card {
    padding: 5px;
}

.text-right {
    text-align: right;
}

.subtitle {
    text-align: center;
    text-transform: uppercase;
}

.subtitle span { font-size: 22px; font-weight: bolder; color: #c82333;}
.carousel-dark .carousel-caption { color: #c3bbbb}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    color: #333;
    background-color: #fff;
}

.accordion-button { line-height: 22px;}

.footer_content ul li a { text-decoration: none; color: #fff;}
.footer_content ul li a:hover { text-decoration: underline;}

img.border {
    width: 180px;
    background: #ccc;
    padding: 1px;
}

img.border_alt {
    width: 500px;
    background: #ccc;
    padding: 1px;
}



.govt_of_para { color :#000 }

.form-label {
    font-size: 14px;
    font-weight:600;
}

label sup {
    left: -1px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(253, 20, 4);
    position: relative;
    top: -1px;
}

.head-top {
    padding: 0px;background-color: black;color:#fff;height: 4px;
}

.navbar {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.navbar-light .navbar-nav .nav-link { color: #000 ;     font-weight: 400;}
.nav-item {
    margin-right: 10px;
    border-right: 1px solid #ddddddc2;
}

.btn-info {
    color: #fff5f5;
    background-color: #c52f33;
    border-color: #0dcaf0;
}

.footer_content h5 { text-transform: uppercase; font-weight:600; }
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgb(197 47 51) !important;
}

.link_login {
    font-size: 14px !important;
    font-weight: 500;
    text-decoration: underline !important;
    text-transform: uppercase;
    color: #222 !important;
}

.up_list a { color: #300000; }
.up_list a:hover { color: #1c2f6b;}

.bg_section {
    text-align: center;
    background: url(images/body-bg.jpg);
}

.fancybox {
    width: 400px;
    height: 250px;
    margin: 40px auto;
    border: 5px solid #c83131;
    border-radius: 30px;
}

.home_title {
    text-align: center;
    margin-bottom: 20px;
    /* border-bottom: 1px; */
    font-size: 26px !important;
}

.up_list li {
    line-height: 22px;
    margin-bottom: 10px;
    text-align:justify;
}

.infoga {
    width:400px;
    height:auto;
    text-align:center; 
    margin:0px auto;
}

.infoga img { width:100% } 
.social { 
    position: relative;
    width: 300px;
    margin: 10px auto;
 }
.social .icon {    
    border: 1px solid #fff;
    width: 42px;
    height: 42px;
    cursor: pointer;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-left: 10px;
}

.social .icon img {
    width: 36px;
    height: 36px;
    padding: 3px;
    margin-top: 2px;
}

.social .icon:hover {
    background: #2f9aff;
}

