/* Form */
.section-contact .top-part .title{
    font-size: 30px;
    line-height: 47px;
    text-align: center;
    margin-bottom: 75px;
    position: relative;
    z-index: 99999;
}
.section-contact .form-part{
    padding-top: 280px;
}
.section-contact{
    padding-bottom: 260px;
    overflow: hidden;
}
.section-contact .form-box{
    max-width: 650px;
    margin: auto;
    /* background-color: var(--white); */
    border-radius: 0 0 40px 40px;
    position: relative;
    z-index: 107;
    background-image: linear-gradient(0deg,#fff 50%,transparent 50%);
}

.section-contact .form-box .title {
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.section-contact .form-box .input-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;    
    align-items: center;
}

.section-contact .form-box .form-checkbox-container {
    border-radius: clamp(0.2vw, 10px, 0.5vw);
}

.section-contact .form-box .form-checkbox {
    margin: 10px 0px;
    width:20px;
    height:20px;
    cursor:pointer;
    background-color: white;
}

.section-contact .form-box .form-checkbox-purple:checked {
    accent-color: var(--TEAM-purple);
}

.section-contact .form-box .form-checkbox-blue:checked {
    accent-color: var(--BALANCE-blue);
}

.section-contact .form-box .form-checkbox-green:checked {
    accent-color: var(--SOCIAL-green);
}

.section-contact .form-box .form-checkbox-yellow:checked {
    accent-color: var(--GROWTH-yellow);
}

.section-contact .form-box .form-checkbox-DEI:checked {
    accent-color: var(--TEAM-purple);       /*Using TEAM otherwise Chrome turned the checkmark white */
}

.section-contact .form-box .form-checkbox-CS:checked {
    accent-color: var(--CS-green);
}

.surveyResult {
    display:none;  
}

.surveyResultContainer {
    margin-top:20px;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    width:60px;
    height:60px;
    border-radius:50%;
    color:white;
    font-weight: 500;
    font-size: 24px;
    line-height: 25px;  
}

.surveyTitle {
    text-align: center;
    margin:20px;
}


/* Used as identifiers for dynamic content */
.surveyResultBalance {
    background-color: var(--BALANCE-blue);
}

.surveyResultSocial {
    background-color: var(--SOCIAL-green);
}
.surveyResultTeam {
    background-color: var(--TEAM-purple);
}
.surveyResultGrowth {
    background-color: var(--GROWTH-yellow);
}

.surveyResultDEI {
    background-color: var(--DEI-purple);
}
.surveyResultCS {
    background-color: var(--CS-green);
}

.section-contact .form-box .form-control{
    border: 0;
    border-bottom:1px solid var(--black);
    border-radius: 0;
    padding-left: 0;
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 26px;
    background-color: transparent;
}
.section-contact .form-box .form-control::placeholder{
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
}
.section-contact .email-message{
    padding-top: 20px;
}
.section-contact .form-msg{
    display: none;
}
.section-contact .form-box .form-control:focus,
.section-contact .form-box .form-control:active{
    box-shadow: none;
}
.section-contact .form-box .input-group{
    column-gap: 47px;
    margin-bottom: 41px;
}
.section-contact .form-box .input-group:last-of-type{
    margin-bottom: 23px;
}
.section-contact .form-box .btn-secondary{
    width: 100%;
}
.section-contact .form-box .social-links{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 65px;
}
.section-contact .form-box .social-links li{
    position: relative;
}
.section-contact .form-box .social-links li:not(:last-child):after{
    content: '';
    background-color: var(--dark-grey);
    width: 7px;
    height: 7px;
    position: absolute;
    border-radius: 50%;
    top: 42%;
    left: 157%;
}
.section-contact .form-box .social-links li a{
    font-weight: 500;
    font-size: 16.2789px;
    line-height: 16px;
    color: var(--BALANCE-blue);
    text-decoration: none;
}

.botdetect {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;    
}
/* Form */
@media only screen and (max-width: 993px){

    .section-contact {
        padding-top:120px;
    }
    
    .section-contact .form-part{
        padding-top: 30px;
    }
    .section-contact .form-box{
        padding: 20px;
    }
    .section-contact{
        padding-bottom: 10px;
    }
    
}
@media only screen and (max-width: 500px){
    .section-contact .content.top-content .title {
        font-size: 60px;
        line-height: 70px;
    }
}