/* Footer Styling Start */

.site-footer.wps-site-footer {
    margin-top: 40px;
}

.wps-sf_bottom {
    background: var(--black);
    border-top: 2px solid var(--primary);
}

.wps-sf_bottom-in h2,.wps-sf_bottom-in h3 {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
}

.wps-sf_bottom-in h3 {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.25
}

/* Contact Form start */

@keyframes show_slowly {
    0%{
        transform: translate(-50%, -100%);
    }

    100%{
        transform: translate(-50%, -50%);
    }
}

.wps-sf_contact_form.wps-sf_cf_show {
    display: block!important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}

.wps-sf_contact_form.wps-sf_cf_show .wps-sf_cf_shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.wps-sf_contact_form.wps-sf_cf_show .wps-sf_contact_form_in {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 500px;
    width: calc(100% - 80px);
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    transform: translate(-50%, -300%);
    animation: show_slowly 0.3s linear 1 forwards;
}

.wps-sf_contact_form.wps-sf_cf_show .wps-sf_cf_close {
    font-size: 40px;
    font-weight: 400;
    font-family: 'Source Sans Pro';
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 20px;
    cursor: pointer;
}

.wps-sf_contact_form.wps-sf_cf_show h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 20px;
}

.wps-sf_contact_form.wps-sf_cf_show p {
    margin: 20px 0 0;
    position: relative;
}

.wps-sf_contact_form.wps-sf_cf_show p .wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
    top: -12px;
    right: 4px;
    line-height: 1.25;
}

.wps-sf_contact_form.wps-sf_cf_show label {
    font-size: 0;
}

.wps-sf_contact_form.wps-sf_cf_show label input[type=text], .wps-sf_contact_form.wps-sf_cf_show label input[type=email], .wps-sf_contact_form.wps-sf_cf_show label textarea {
    font-size: 16px;
    width: 100%;
    max-height: 100px;
    min-height: 33px;
    background: transparent;
    box-shadow: none;
    border: 1px solid var(--grey);
    border-radius: 5px;
}

.wps-sf_contact_form.wps-sf_cf_show label br {
    display: none;
}

.wps-sf_contact_form.wps-sf_cf_show input[type=submit] {
    background: var(--black);
    border-radius: 5px;
    padding: 10px 40px;
    border: 1px solid var(--black);
    transition: 0.3s all linear;
    color: var(--white);
    margin: 25px auto 0;
    width: 100%;
}

.wps-sf_contact_form.wps-sf_cf_show input[type=submit]+.wpcf7-spinner {
    position: absolute;
    bottom: 12px;
    right: 18px;
    background: #ffffff55;
}

.wps-sf_contact_form.wps-sf_cf_show .wps-sf_contact_form_in form {
    margin: 0;
	max-height: 700px;
    overflow: auto;
}

@media screen and (max-width: 600px) {
    .wps-sf_contact_form.wps-sf_cf_show .wps-sf_contact_form_in form {
        margin: 0;
        max-height: 450px;
        overflow: auto;
    }
}
/* Contact Form end */

/* Footer Styling Ends */