/*******************************************************
 *
 * General
 *
 *******************************************************/

#inner-page-wrapper {
    overflow: hidden;
}

#inner-page-wrapper {
    overflow: hidden;
}

.ip-about {
    position: relative;
    z-index: 1;
    padding-bottom: 54px;
    margin-bottom: 30px;
}

.ip-about:before,
.ip-about:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50vw;
    right: -50vw;
    height: 139px;
}

.ip-about:before {
    z-index: -2;
    background: transparent url(../../images/ip-about-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    filter: grayscale(1);
}

.ip-about:after {
    z-index: -1;
    background: var(--primary-color);
    opacity: 0.9;
}

#content .about-wrap {
    margin-top: 57px;
}

#content .about-inner {
    overflow: visible;
}

#content .about-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: var(--primary-color);
}

    #content .about-right {
        float: right;
        width: 44%;
        padding: 0% 0% 2.7% 3%;
    }
        #content .about-right img {
            width: 100%;
        }


#content .about-form {
    font-size: 0;
    position: relative;
    width: 556px;
    max-width: 100%;
    margin-top: 48px;
    padding: 13px 33px 16px;
    border: 1px solid var(--primary-color);
    background: var(--background-color);
}

#content .about-form h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-text-color);
}

#content .about-form h2 span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.025em;
    color: var(--primary-text-color);
    margin-top: 12px;
}

#content .about-form form {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    margin: 0;
}

#content .about-form input[type="text"],
#content .about-form input[type="email"],
#content .about-form textarea {
    font-size: 15px;
    width: 100%;
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    height: 50px;
    color: var(--primary-text-color);
    font-family: var(--primary-color);
    padding: 0 5px;
    border-radius: 0;
    resize: none;
    border: 1px solid transparent;
    border-bottom-color: var(--primary-text-color);
    transition: all .25s ease-in-out;
}

#content .about-fields.about-textarea textarea {
    padding-top: 16px;
    height: 75px;
}

#content .about-form input[type="text"]:focus,
#content .about-form input[type="email"]:focus,
#content .about-form textarea:focus{
    border-color: #a5a5a5;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px var(--primary-text-color), 0 0 8px var(--primary-text-color);
    box-shadow: inset 0 0 1px var(--primary-text-color), 0 0 8px var(--primary-text-color);
}

#content .about-fields.about-textarea {
    height: 75px;
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

#content .about-fields.about-submit {
    width: 100%;
    margin-top: 19px;
}

#content .about-fields input[type="submit"] {
    -webkit-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    display: block;
    margin: 0 auto;
    padding: 0;
    width: auto;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: var(--primary-text-color);
}

#content .about-fields.about-textarea input.wpcf7-form-control.wpcf7-submit:hover {
    color: var(--primary-color);
}

#content .about-fields input[type="submit"]:hover{
    color: var(--primary-color);
}

#content .about-fields {
    display: block;
    margin-bottom: 12px;
    width: calc(100% / 2);
    position: relative;
    padding: 0 5px;
}

#content .about-form div.wpcf7 .ajax-loader {
    margin: 0 auto !important;
    display: block;
}

#content .about-form span.wpcf7-not-valid-tip {
    font-size: 12px;
}

#content .about-form span.wpcf7-form-control-wrap {
    display: block;
}

#content .about-form div.wpcf7-response-output {
    margin: 0;
    position: absolute;
    bottom: -28px;
    left: -33px;
    right: -33px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    transform: translateY(100%);
    background: var(--background-color);
    color: var(--primary-text-color);
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/

@media only screen and (max-width: 1440px) {

}

@media only screen and (max-width: 1366px) {

}

@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 991px) {
    #content .about-title {
        font-size: 40px;
    }
    
    #content .about-form {
        margin: 50px auto 100px;
        padding: 13px 15px 16px;
    }
    
   #content .about-right{
       float: none;
       width: 100%;
       padding: 0 0 20px;
   }
    
    #content .about-form div.wpcf7-response-output {
        margin: 0 15px;
        width: auto;
    }
}

@media only screen and (max-width: 767px) {

}

@media only screen and (max-width: 567px) {

}

@media only screen and (max-width: 480px) {

}
