section.country {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 16px;
}
section.country .option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #a73a8d66;
    font-size: 20px;
    margin: 0 5px;
    padding: 10px 40px;
}
section.country .option img {
    margin-bottom: 10px;
    width: 40px;
}

section.country .option.active {
    color: #a73a8d;
    border-bottom: 3px solid #a73a8d;
}
section.contact {
    padding: 40px 0;
    background-color: #A73A8D;
    background-position: bottom;
    background-repeat: no-repeat;
}

section.contact .title {
    text-align: center;
    color: #fff;
    margin: 30px;
    font-size: 35px;
}

section.contact img.university {
    width: 90px;
    display: block;
    margin: 0 auto;
}

section.contact .desc {
    text-align: center;
    color: #fff;
    font-size: 18px;
    max-width: 800px;
    margin: 10px auto;
    margin-bottom: 40px;
}

section.contact .legal {
    text-align: left;
    color: #fff;
    font-size: 16px;
    max-width: 800px;
    margin: 10px auto;
    margin-bottom: 40px;
}

section.contact form {
    margin: 0 auto;
    max-width: 800px;
}

section.contact form input,
section.contact form textarea,
section.contact form select {
    display: block;
    background-color: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 10px;
    font-size: 17px;
    margin-bottom: 7.5px;
}

section.contact form input::placeholder,
section.contact form textarea::placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
}

section.contact form input:-ms-input-placeholder,
section.contact form textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

section.contact form input::-ms-input-placeholder,
section.contact form textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
}

section.contact form .radio {
    text-align: center;
    color: #fff;
}

section.contact form .radio input {
    width: 30px;
    height: 30px;
}

section.contact form .radio .form-check-label {
    font-size: 20px;
}

section.contact .btn-submit {
    padding: 10px 60px;
    background: rgb(25, 97, 172);
    background: linear-gradient(90deg, rgba(25, 97, 172, 1) 0%, rgba(25, 97, 172, 1) 0%, rgba(0, 164, 184, 1) 100%);
    border-radius: 40px;
    color: #fff;
    border: none;
    margin-top: 20px;
}

section.contact .checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

section.contact .checkbox-container input {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

section.contact .checkbox-container label {
    color: #fff;
}

@media screen and (max-width: 992px) {
    section.intro {
        background-size: cover;
        background-position-x: 20px;
    }
    section.contact .title {
        font-size: 30px;
    }
    section.country .option {
        padding: 10px 15px;
        font-size: 18px;
    }
}

section.contact form input:read-only {
    background-color: #FFFFFF;
}