.consultation {
    padding: 20px 0px 0px;
}

.breadcrumb {
    color: #808080;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px #D9D9D9 solid;
    padding-bottom: 15px;
    justify-content: flex-start;
    padding-top: 0;
}

.sub-txt {
    font-size: 32px;
    color: #808080;
    font-weight: 600;
    margin: 0;
}

.title {
    font-size: 64px;
    font-weight: 800;
    line-height: 0.8;
}

.pagetitle {
    padding-bottom: 10px;
    border-bottom: 1px #FF9E18 solid;
    margin-bottom: 20px;
    margin: 0 auto 30px;
    text-align: center;
    width: 50%;
}

.subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #808080;
}

.form-container {
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    padding: 30px;
}

.form-title {
    text-align: center;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-section {
    font-size: 18px;
}

.form-container label {
    color: #808080;
    font-size: 14px;
    font-weight: 300;
}

.form-container input[type="text"],
.form-container textarea {
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    outline: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.form-container select {
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    outline: none;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 25px 15px 15px;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    cursor: pointer;
    background: url("../images/dropdown_arrow.png") no-repeat right #fff;
    background-position-x: 95%;
    appearance: none;
    -webkit-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-container button {
    background-color: #ff9c00;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    box-shadow: 0px 0px 8px #cdcdcd;
}

.text-orange {
    color: #ff9c00;
}

/* Create a custom checkbox */
.checkmark-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 1px solid #ff6a00;
}

.container-check.active{
    display: initial !important;
    vertical-align: top;
}

.container-check.active input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-check input:checked ~ .checkmark-checkbox:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-check .checkmark-checkbox:after {
    left: 8px;
    top: 2px;
    width: 7px;
    height: 15px;
    border: solid #ff9c00;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-label {
    color: #808080;
    font-size: 18px;
    margin-left: 40px;
}

.upload-btn{
    position: absolute;
    right: 40px;
    bottom: 28px;
}