body {
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

html, body {
    height: 100%;
}

a {
    outline: none !important;
}


.main {
    height: 100vh;
    padding: 50px;
}

.img {
    background-image: url("../image/48635657237_d8348dcff9_o.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    position: relative;
}

.img:after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 14px;
    left: 14px;
    background: #e2e5dd;
    z-index: -1;

}

.main .row {
    height: 100%;
}

.logo-text {

    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.text .title {
    color: #011035;
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    padding-bottom: 50px;
}

.text .txt {
    color: #3b3b3b;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    font-family: 'Poiret One', cursive;
}

.phone_text, .email_text {
    color: #3b3b3b;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    font-family: 'Poiret One', cursive;
    padding-bottom: 14px;
}

.phone a {
    display: block;
    color: #644900;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    line-height: 34px;
}

.email a{
    display: block;
    color: #644900;
    font-size: 20px;
    font-family: 'Barlow Condensed', sans-serif;
}


@media (max-width: 1110px) {
    .main {
        padding: 5px;
    }

    .phone a {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .img{
        display: none;
    }

    .logo-text{
        align-items: center;
    }

    .logo-text .text{
        text-align: center;
    }

    .main {
        padding: 20px;
    }
}