*{
    transition: all .25s ease;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: normal;
    overflow: hidden;
}
.text-center{
    text-align: center;
}
.page-wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner-background{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
}
.inner-background .left{
    width: 30%;
    /* background-color: #31384b; */
    background-color: #7F8084;
}
.inner-background .right{
    width: 70%;
}

.inner-content {
    width: 70%;
}
.inner-content .content{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.inner-content .social-media-container {
    position: absolute;
    left: -125px;
    top: 50%;
    transform: translateY(-50%);
}
.inner-content .social-media-container li{
    list-style: none;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(128, 128, 128, 0.6);
    border-radius: 50%;
    margin: 15px;
    cursor: pointer;
}
.inner-content .social-media-container li:hover{
    background-color: #fff;
}
.inner-content .social-media-container li:hover a{
    color: #7A6D6B;
    transition: all 0s;
}
.inner-content .social-media-container a{
    color: #fff;
    text-decoration: none;
}
.inner-content .left{
    background-image: url('../img/bg-img.jpg');
    height: 80vh;
    min-height: 360px;
    max-height: 500px;
    width: 50%;
    max-width: 500px;
    background-size: cover;
    background-position: center;
}
.inner-content .right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 25px;
}
.inner-content .right img{
    width: 100%;
    max-width: 400px;
}
.inner-content .right h4{
    margin-left: 70px;
    color: grey;
}
.inner-content .right span.separator{
    /* background-color: rgb(255, 72, 0); */
    background-color: #7A6D6B;
    height: 3px;
    width: 40px;
    margin-left: 70px;
}
.inner-content .right p{
    margin-left: 70px;
    color: grey;
    line-height: 1.4;
}
.inner-content .right p.contact{
    font-size: 12px;
}
.inner-content .right p a{
    color: grey;
    text-decoration: none;
}
.inner-content .right p a:hover{
    color: #31384b;
    text-decoration: underline;
}


/* RESPONSIVE CSS */

@media screen and (max-width: 1200px){
    .inner-content {
        width: 85%;
    }
    .inner-content .left {
        height: 65vh;
        min-height: 400px;
        max-height: 400px;
        max-width: 400px;
    }
    .inner-content .right img {
        max-width: 350px;
    }
}

@media screen and (max-width: 992px){
    .inner-content .left {
        min-height: 350px;
        max-height: 350px;
        max-width: 350px;
    }
    .inner-content .right img {
        max-width: 270px;
    }
    .inner-content .right span.separator {
        margin-left: 30px;
    }
    .inner-content .right p {
        margin-left: 30px;
        line-height: 1.3;
    }
}
@media screen and (max-width: 767px){
    .page-wrapper {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .inner-background .left {
        display: none;
    }
    .inner-content {
        width: 100%;
    }
    .inner-content .content {
        flex-direction: column;
    }
    .inner-content .left {
        min-height: auto;
        max-height: 250px;
        height: 250px;
        max-width: 100%;
        width: 100%;
    }
    .inner-content .right {
        width: 90%;
        margin-top: 20px;
    }
    .inner-content .right p {
        margin-right: 15px;
    }
}