:root {
    --primary-dark: #1e1e1e;
    --primary-white: #FFFFFF;
    --primary-yellow: #f9a332;
    --primary-blue: #1B1DC7;
    --primary-font: 'Montserrat', sans-serif;
    --gradient-blue: linear-gradient(0deg, #1B1DC7, #2224F9);
    --gradient-blue-hover: linear-gradient(0deg, #2224F9, #1B1DC7);
    --gradient-alternate: linear-gradient(0deg, #9D9ED9, #5B5DFF);
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #1e1e1e;
}

/* Reset CSS */
* {
    /* font-family: 'Open Sans', sans-serif;*/
    font-family: var(--primary-font);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
}

.border-radius-5 {
    border-radius: 5px;
}

p, .p {
    margin-bottom: 0;
}

/* Navbar CSS */
header.header-1 {
    box-shadow: 0 1px 4px #c0c0c0;
    width: 100%;
    background: var(--primary-white);
}

header.header-1 .navbar-nav a.nav-item {
    font: normal 500 16px/57px var(--primary-font);;
    color: var(--primary-dark);
    padding: 5px 15px;
    text-transform: uppercase;
}

header.header-1 .navbar-nav a.nav-item:hover {

}

header.header-1 .navbar-nav a.nav-item.disabled {
    color: #333333;
}

header.header-1 .navbar-nav a.nav-item.last-nav-item {
    display: flex;
    align-items: center;
    padding: 7px 15px;
    background: var(--primary-yellow);
    border-radius: 25px;
    margin-left: 50px;
    color: #ffffff;
    font-weight: 500;
    line-height: 24px;
}

div#navbarNavAltMarkup {
    margin-left: 20px;
}

div#navbarNavAltMarkup .navbar-nav {
    align-items: center;
    line-height: 57px;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 30px;
}

/*Home page */
.form-section {
    margin-top: 70px;
}

.form-image-container {
    position: relative;
}

.steps {
    margin-top: 25px;
    position: absolute;
    z-index: 1;
    left: 15%;
    padding: 0;
}

.steps li {
    width: 2em;
    height: 2em;
    text-align: center;
    line-height: 2em;
    border-radius: 1em;
    background: dodgerblue;
    margin: 0 3em;
    display: inline-block;
    color: white;
    position: relative;
}

.steps li::before {
    content: '';
    position: absolute;
    top: .9em;
    left: -8em;
    width: 10em;
    height: .2em;
    background: dodgerblue;
    z-index: -1;
}


.steps li:first-child::before {
    display: none;
}

.steps li span {
    position: absolute;
    color: #333;
    font: normal 500 12px/1 var(--primary-font);;
    bottom: -20px;
    width: 110px;
    left: -100%;
}

.steps .active {
    background: var(--gradient-blue);
}

.steps .active ~ li {
    background: lightblue;
}

.steps .active ~ li::before {
    background: lightblue;
}

.image-holder {
    padding-top: 100px;
    position: relative;
}

.image-holder::before {
    /*content: '';
    position: absolute;
    width: 100%;
    height: 100%;*/
    /*background: rgb(216 213 255 / 50%);*/
}

.image-holder img:not(.active){
    display: none;
}

/* Document Container */
.document-container {
    align-content: center;
    display: flex;
    justify-content: center;
}

.document-container ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 90%;
}
.document-container ul li {
    margin-bottom: 5px;
    font-size: 12px;
}
.document-container ul li a {
    color: #1c1ed0!important;
    font-weight: 500;
    cursor: pointer;
}

/*Form Input Container*/
.form-wrapper {
    width: 85%;
    margin: 0 auto;
}

.form-input-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.form-input-container .inner:not(.active) {
    display: none;
}

.form-header h3 {

}

.form-header p {

}

.step-heading {
    color: var(--primary-blue);
}

.form-input-container .form-label {
    font-weight: 500;
}

.form-input-container .form-label span {
    color: red;
}

.form-input-container .form-control, .form-input-container .form-select {
    border: 1px solid #fdd095;
    border-radius: 0;
}

.form-row .iti {
    width: 100%;
}

.btn.next {
    background: var(--gradient-blue);
    padding: 5px 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.director-btn {
    background: var(--gradient-blue);
    color: var(--primary-white)
}

.director-btn:hover {
    background: var(--gradient-blue-hover);
    color: var(--primary-white);
}

/*Form Breadcrumb*/
.breadcrumb-item + .breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, ">")
}

.dropzone {
    border: 1px dashed #a8a8a8;
    /*box-shadow: 0 1px 5px 2px #d9d9d9;*/
    border-radius: 10px;
    background: #f0f0f0;
    padding: 5px 5px;
    min-height: 130px;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    color: RGBA(27, 29, 199, 0.75);
}

.dropzone .dz-preview {
    margin: 8px 0 0 10px;
}

.dropzone .dz-preview .dz-image {
    width: 100px;
    height: 100px;
}

.dropzone .dz-preview .dz-image img {
    object-fit: fill;
    width: 100px;
    height: 100px;
}

.form-label.text-muted {
    font-size: 12px;
}

#imageError .alert-danger {
    padding: 2px 5px;
    background: transparent;
    border: 0;
    margin: 0;
}

span.error {
    color: red;
}

#payments label {
    flex:0 40%;
}

#payments label + span{
    flex:0 60%;
}
/*Footer*/
footer {
    background: var(--primary-dark);
    padding-top: 50px;
}

footer .footer-middle {
    padding: 0 0 50px;
    border-bottom: 0.888889px solid #fff;
}

footer .footer-middle h6 {
    font: normal 500 18px/1.5 var(--primary-font);;
}

footer .footer-middle ul li a {
    font: normal 400 16px/2.2 var(--primary-font);;
    text-decoration: none;
    color: var(--primary-white)
}

footer .footer-middle ul li a:hover, footer .footer-middle ul li a:focus {
    color: var(--primary-yellow);
}

.footer-section p {
    font-size: 16px;
    color: #fff;
}

.footer-heading {
    font-size: 20px;
    color: #fff;
    padding-bottom: 20px;
    text-align: left;
}

.footer-middle p {
    text-align: justify;
    color: #fff;
    font-size: 15px;
}

.contact-details ul {
    text-align: left;
    color: #fff;
    list-style: none;
    padding-left: 0;
}

.contact-details li:not(:first-child) {
    margin-top: 20px;
}

.contact-details li a {
    padding-left: 10px;
    text-decoration: none;
    color: #fff;
}

.footer-left {
    padding: 0 30px 0 10px;
}

.footer-bottom ul {
    display: flex;
    list-style-type: none;
    padding-top: 25px;
    padding-left: 0;
}

.footer-bottom ul li {
    padding-right: 20px;
    color: #fff;
    font-size: 16px;
    position: relative;
}

.footer-bottom {
    padding-left: 0;
}

.footer-bottom ul li:not(:last-child):after {
    border-left: 1px solid #fff;
    content: "";
    display: block;
    height: 20px;
    right: 10px;
    position: absolute;
    top: 0px;
    width: 1px;
    z-index: 0;
}

.copyright {
    font-size: 14px;
    padding-top: 25px;
}

.legal-pages {
    align-items: center;
}

.legal-pages li:not(:last-child) {
    margin-right: 25px;
}

ul.social-media {
    display: flex;
    justify-content: end;
    list-style: none;
    padding-top: 20px;
}

.social-media li {
    padding-right: 15px;
    width: 35px;
    height: 35px;
    background: #7b7b7b;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    margin-right: 10px;
    position: relative;
}

.social-media li a {
    text-decoration: none;
    position: absolute;
    left: 20%;
    top: 2%;
}

.social-media li i {
    color: #fff;
    font-size: 20px;
}


/*Side navbar*/
.navbar-light .navbar-toggler {
    padding: 0;
    border: 0;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(220, 69, 58, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: .5s;
    padding-top: 0;
    box-shadow: 0 0 10px #bdbdbd;
    padding-top: 50px;
}

.sidenav .navbar-brand {
    padding: 15px;
    margin: 0
}

.sidenav #mobile-navigation-links a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font: 500 16px/20px Montserrat, sans-serif;
    display: block;
    transition: .3s;
    border-bottom: 1px solid #eee
}

.sidenav a.closebtn {
    border-bottom: 0;
    padding: 15px 0 0;
    color: #99291b;
    text-decoration: none;
}

.sidenav a:hover {
    color: #f1f1f1
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px
}

#contributeMobileBtn {
    background: #dc453a;
    padding: 10px 0;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    width: 200px;
    margin-left: 15px;
}

.team-logo {
    text-align: center;
}

.team-logo img {
    width: 25%;
}

#alreadyPaidWait {
    display: none;
}