* {
    font-family: 'Open Sans', sans-serif;
}

html, body {
    background: #F3F3F3;
    width: 100%;
    height: 100vh;
}

p {
    margin: 0;
}

.main-area {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.left-section {
    flex-basis: 45%;
    background-image: url('../images/bg-image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #fff;
}

.right-section {
    flex-basis: 55%;
    padding: 5%;
    display: flex;
    align-items: center;
    color: #777;
}

.right-section img {
    max-width: 300px;
    width: 100%;
    margin-bottom: 25px;
}

.right-section .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.right-section .subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.right-section p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact {
    margin: 30px 0;
}

.contact p {
    font-size: 1.2rem;
    font-weight: 600;
}

.social ul {
    display: flex;
    align-items: center;
}

.social li {
    margin-right: 10px;

}

.social a {
    display: block;
    text-decoration: none;
    background-color: #f87713;
    color: #fff;
    padding: 12px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.social a:hover {
    background-color: #cb6310;
}

@media (max-width: 992px) {
    .left-section {
        min-height: 500px;
    }

    .left-section,
    .right-section {
        flex-basis: 100%;
    }


    .right-section img {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .right-section .title {
        font-size: 1.3rem;
    }

    .right-section .subtitle {
        font-size: 1.1rem;
    }

    .left-section {
        min-height: 370px;
    }
}