/*** 

====================================================================
	Contact Page
====================================================================

***/
.contact-page {
    position: relative;
    display: block;
    padding: 107px 0 120px;
    z-index: 1;
}

.contact-page .container {
    max-width: 1000px;
}

.contact-page__inner {
    position: relative;
    display: block;
}

.contact-page__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 140.7%;
    letter-spacing: -1.44px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__form-box {
    position: relative;
    display: block;
}

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    border: 1px solid #D9D9D9;
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 12px;
    color: var(--thm-gray);
    display: block;
    font-weight: 400;
}

.contact-page__input-box textarea {
    color: var(--thm-gray);
    height: 120px;
    width: 100%;
    background-color: transparent;
    padding: 15px 30px 20px;
    border: 1px solid #D9D9D9;
    outline: none;
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: 400;
}

.contact-page__input-box.text-message-box {
    height: 120px;
    margin-bottom: 23px;
}

.contact-page__checked-box {
    position: relative;
    display: block;
    min-height: 20px;
}

.contact-page__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 70px;
    color: var(--thm-gray);
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    min-height: 20px;
}

.contact-page__checked-box input[type="checkbox"] {
    display: none;
}

.contact-page__checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 30px;
    height: 20px;
    vertical-align: middle;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-page__checked-box label span:before {
    position: absolute;
    top: 1px;
    left: 9px;
    display: block;
    border-bottom: 2px solid #D9D9D9;
    border-right: 2px solid #D9D9D9;
    content: '';
    width: 7px;
    height: 12px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.contact-page__checked-box input[type="checkbox"]:checked+label span {
    border-color: #D9D9D9;
}

.contact-page__checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.contact-page__btn-box {
    position: relative;
    display: block;
    margin-top: 38px;
}

.contact-page__btn {
    font-size: 14px;
    font-weight: 700;
    background-color: var(--thm-black);
    color: var(--thm-white);
    padding: 15px 46px 15px;
    border: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__btn:hover {
    color: var(--thm-white);
    background-color: var(--thm-base);
}












/*** 

====================================================================
	End
====================================================================

***/