body {
    background-color: #F7F7F7;
}
.go-back-link {
    font-size: 14px;
    color: #1C1B1B;
    font-family: Poppins-Medium, sans-serif;
    text-decoration: none;
    display: inline-block;
    padding-top: 80px;
    margin-bottom: 50px;
    margin-top: 80px;
}
.go-back-link img {
    max-width: 36px;
}
.heading {
    font-size: 6.25rem;
    line-height: 7.125rem;
    font-family: Poppins-Bold, sans-serif;
    color: #1C1B1B;
    margin-bottom: 80px;
}
.go-back-link:hover, .go-back-link:focus {
    color: #1C1B1B;
    text-decoration: underline;
}
.summary {
    font-family: Poppins-Light, sans-serif;
    color: #1C1B1B;
    font-size: 30px;
    
}
.post-details {
    font-family: Poppins-Regular, sans-serif;
    color: #1C1B1B;
    font-size: 18px;
    margin-bottom: 40px;
}
.subheading, .dynamic-text-container h2 {
    font-family: Poppins-Bold, sans-serif;
    color: #1C1B1B;
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.qualifications-bold {
    font-family: Poppins-Bold, sans-serif;
    color: #1C1B1B;
    font-size: 18px;
    margin-bottom: 40px;
}
.extra-details {
    font-family: Poppins-Light, sans-serif;
    color: #1C1B1B;
    font-size: 18px;
    margin-bottom: 40px;
}
main form {
    padding: 40px;
    background-color: #EDF0F2;
    position: relative;
}
.form-heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 46px;
    flex-wrap: wrap;
}
.form-heading-container .form-heading {
    font-family: Poppins-Bold, sans-serif;
    font-size: 30px;
    color: #1C1B1B;
}
.form-heading-container .form-required-legend {
    font-family: Poppins-Regular, sans-serif;
    font-size: 18px;
    color: #1C1B1B;
}
form .form-group {
    margin-bottom: 40px;
    border: 1px solid #A2BBC3;
}
.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
}
.form-check input {
    display: inline-block;
    width: 54px;
    height: 54px;
    border: 1px solid #A2BBC3;
    border-radius: 0 !important;
    min-width: 54px;
    margin-right: 27px;
}
.form-check-input:checked {
    background-color: #1C1B1B;
    border-color: #1C1B1B;
}
.form-check-label {
    font-family: Poppins-Regular, sans-serif;
    font-size: 18px;
    color: #1C1B1B;
}
main form input.form-control {
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    border: 0;
}
main form input.form-control, main form input.form-control::placeholder {
    font-family: Poppins-Regular, sans-serif;
    font-size: 18px;
    color: #1C1B1B;
}
.submit-btn span:after {
    width: 24px;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    right: 13px;
}
.submit-btn:hover {
    background-color: #FFFFFF;
}
.submit-btn:hover span {
    color: #1C1B1B; 
}
.submit-btn span {
    color: #FFFFFF;
    font-family: Poppins-SemiBold, sans-serif;
    font-size: 18px;
}
.submit-btn {
    position: relative;
    border-radius: 0;
    background-color: #1C1B1B;
    min-width: 150px;
    min-height: 55px;   
}
.btn-container {
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
}
.file-load {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    position: relative;
}
.file-name {
    position: absolute;
    width: 100%;
    left: 0;
}
.file-load span, .file-name {
    color: #1C1B1B;
    font-family: Poppins-Regular, sans-serif;
    font-size: 18px;
    text-align: center;
}
.file-load input {
    display: inline-block;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.ajax-loader {
    background: rgba(0, 0, 0, 0.6);
    cursor: wait;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: none;
}
@media only screen and (max-width: 576px) {
   .desktop:not(header) {
        display: none;
    }
    .heading {
        font-size: 60px;
        line-height: 70px;
    }
    .form-heading-container .form-heading {
        margin-bottom: 20px;
    }
    main form {
        padding: 40px 24px;
    }
    .btn-container {
        position: relative;
    }
}
@media only screen and (min-width: 576px) {
    .mobile:not(header) {
        display: none;
    }
}