/*******************************************************
 *
 * Main
 *
 *******************************************************/
#inner-page-wrapper {
    overflow: hidden;
    margin-bottom: 45px;
}

#content-sidebar,
#content-full {
    margin-top: 45px;
}

.ip-about {
    position: relative;
}

#content .about-wrap {
    position: relative;
}

#content .about-main {

    position: relative;
    z-index: 1;
}

#content .about-inner {
    position: relative;
}

#content .about-inner .about-img {
    float: right;
    width: 41%;
    /* margin: 0 0 3% -3%; */
    margin: 0 0 3% 0;
    position: relative;
}

#content .about-inner .about-img img {
    display: block;
    width: 100%;
}

#content .about-inner .about-img:after {
    display: block;
    background: var(--background-color);
    left: 0;
    bottom: 0;
    content: "";
    position: absolute;
    height: 88%;
    width: 15%;
    opacity: 0;
}

#content .about-title {
    position: relative;
}

#content .about-title h1 {}

#content .about-title small {
    margin: 0;
    padding-top: 5%;
}

#content .about-title strong {
    font-size: 50px;
    line-height: 1.22;
    color: var(--primary-text-color);
}

#content .about-content {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6111;
    letter-spacing: 0.34px;
    color: var(--primary-text-color);
    margin-top: 35px;
}

#content .about-content p {
    line-height: inherit;
}

#content .about-link {
    min-width: 211px;
    margin-top: 74px;
}

#content .about-socials {
    list-style: none;
    display: flex;
    align-items: center;
    margin-left: 0;
    gap: 16px;
}

#content .about-socials a {
    color: inherit;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#content .about-socials a i {
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
}

#content .about-socials a i.envelope {
    font-size: 14px;
}

/*******************************************************
 *
 * Mobile
 *
 *******************************************************/
@media only screen and (max-width: 1199px) {
    #content .about-content {
        padding-right: 35px;
    }

}

@media only screen and (max-width: 991px) {
    #content .about-content {
        padding-right: 0;
    }

    #content .about-title strong {
        font-size: 40px;
    }

    #content .about-inner .about-img {
        width: 100%;
        float: none;
        padding: 0;
        margin: 0;
    }

    #content .about-inner .about-img:after {
        display: none;
    }


}

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


    #content .about-title strong {
        font-size: 35px;
    }
}