  .education-col h3 {
    margin: 0;
    margin-bottom: 30px;

    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
    color: #333333;
}

.education-col p {
    margin: 0;
    margin-bottom: 30px;

    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #333333;
}

.education-col ol {
    margin-bottom: 30px;
}

.education-col li {
    padding: 0;
    margin-bottom: 5px;

    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #333333;
}

.education-col img {
    max-width: 100%;
    height: auto;
    margin-bottom: 36px;
}

.education-row {
    position: relative;

    width: 400px;
    padding-top: 25px;
}

.education-input {
    width: 100%;
    padding: 7px 0;

    font-size: 14px;
    line-height: 16px;
    color: #333333;

    background-color: transparent !important;
    border: 0;
    border-bottom: 1px solid #DEDEDE;
    outline: none;
}

.education-input:focus {
    border-color: #507EBD;;
}

.education-input::placeholder {
    font-size: 14px;
    line-height: 16px;
    color: #828282;
}

.education-input:error {
    border-color: #D73737;
}

.education-label {
    position: absolute;
    top: 16px;
    left: 0;

    font-size: 11px;
    line-height: 13px;
    color: #828282;

    opacity: 0;

    transform: translateY(100%);
    transition: transform 0.4s;
}

.education-input:placeholder-shown + .education-label {
    visibility: hidden;
    z-index: -1;
}

.education-input:not(:placeholder-shown) + .education-label,
.education-input:focus:not(:placeholder-shown) + .education-label {
    z-index: 1;

    visibility: visible;
    opacity: 1;

    transform: translateY(0);
    transition: transform 0.4s;
}

.education-submit {
    display: block;
    width: 100%;
    margin: 7px 0;
    padding: 11px;
    box-sizing: border-box;

    color: #fffafa;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;

    border: 1px solid #2A5283;
    background-color: #2A5283;
    box-shadow: none;
    user-select: none;
    cursor: pointer;

    transition: 0.2s;
}

.education-submit:hover {
    color: #2A5283;

    background-color: #ffffff;

    transition: 0.2s;
}

.education-submit:active,
.education-submit:focus {
    opacity: 0.8;
}

.education-result {
    padding-left: 40px;
}

.education-result p {
    margin: 0;

    font-size: 14px;
    line-height: 32px;
}

.education-result a[href] {
    color: #507EBD;
}

.education-state {
    position: relative;

    margin-bottom: 56px;

    font-size: 30px;
    line-height: 34px;
    color: #333333;
}

.education-state::before {
    content: ;

    position: absolute;
    left: -40px;
    top: 50%;

    width: 24px;
    height: 24px;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transform: translateY(-50%);
}

.education-errors {
    color: red;
    padding: 16px 0;
}

.education-success-popup {
    position: relative;
    max-width: 500px;
    margin: auto;
    border-radius: 4px;
    background: white;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.education-success-popup__content {
    display: inline-block;
    padding: 20px;
    line-height: 1.5;
    font-size: 16px;
}

.education-success-popup__buttons {
    text-align: center;
}

.education-success-popup__button {
    display: inline-block;
    height: 45px;
    padding: 15px;
    line-height: 18px;
    border: none;
    background: #f54d28;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}