.contact-main{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-in-touch{
    width: 50%;

}

.contact-text{
    width: 40%;
    z-index: 1;
}

.contact-text p{
    margin-bottom: 4%;
}

.contact-text h1{
    margin-bottom: 4%;
}

.row {
    margin: -20px 0;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.row .col {
    padding: 0 20px;
    float: left;
    box-sizing: border-box;
}
.row .col.x-50 {
    width: 50%;
}
.row .col.x-100 {
    width: 100%;
}
.content-wrapper {
    min-height: 100%;
    position: relative;
}
.get-in-touch {
    max-width: 650px;
    
    position: relative;

}
.get-in-touch .title {
    text-align: center;
    letter-spacing: 3px;

    line-height: 48px;
    padding-bottom: 48px;
}
.contact-form .form-field {
    position: relative;
    margin: 32px 0;
}
.contact-form .input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-width: 0 0 2px 0;
    border-color: #000;
    background-color: transparent;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
.contact-form .input-text:focus {
    outline: none;
}
.contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
    transform: translateY(-24px);
}
.contact-form .label {
    position: absolute;
    left: 20px;
    bottom: 11px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #888;
    cursor: text;
    transition: transform 0.2s ease-in-out;
}
.contact-form .submit-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Unbounded', cursive;

    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}
.note {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 21px;
}
.note .link {
    color: #888;
    text-decoration: none;
}
.note .link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 920px) {

    .contact-text p{
        margin-bottom: 2%;
    }
    
    .contact-text h1{
        margin-bottom: 2%;
    }
    .contact-main{
        flex-direction: column;
    }
    .contact-text{
        width: 90%;
        text-align: center;
    }
    .get-in-touch{
        width: 90%;
    }
    .contact-text h1{
        font-size: 13px;
    }
    .contact-text p{
        font-size: 15px;
    }
    .contact-form .form-field {
        margin: 15px 0;
    }
    .contact-form .label{
        font-size: 15px;
    }
    .contact-form .input-text{
        font-size: 15px;
    }
    .contact-form .submit-btn {
        width: 100px;
        font-size: 13px;
        padding: 8px 12px;
    }
    .get-in-touch .title{
        padding-bottom: 25px;
    }
    .contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
        transform: translateY(-15px);
    }
}

@media screen and (max-width: 500px) {
    .contact-main{
        flex-direction: column;
    }
    .contact-text{
        width: 90%;
        text-align: center;
    }
    .get-in-touch{
        width: 90%;
    }
    .contact-text h1{
        font-size: 15px;
    }
    .contact-text p{
        font-size: 10px;
    }
    .contact-form .form-field {
        margin: 20px 0;
    }
    .contact-form .label{
        font-size: 12px;
    }
    .contact-form .input-text{
        font-size: 12px;
    }
    .contact-form .submit-btn {
        width: 100px;
        font-size: 13px;
        padding: 8px 12px;
    }
    .get-in-touch .title{
        padding-bottom: 16px;
    }
    .contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
        transform: translateY(-15px);
    }
}
.contact-form .submit-btn[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}