* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

html {
    box-sizing: border-box;
}

body {
    font-family: 'Sanchez', serif;
    color: #474747;
}

a {
    color: #000;
    cursor: pointer;
    text-decoration: none;
    outline: 0!important;
    -webkit-transition: color .3s 0s linear, background-color .3s 0s linear, border .3s 0s linear, opacity .3s 0s linear;
    -moz-transition: color .3s 0s linear, background-color .3s 0s linear, border .3s 0s linear, opacity .3s 0s linear;
    -ms-transition: color .3s 0s linear, background-color .3s 0s linear, border .3s 0s linear, opacity .3s 0s linear;
    -o-transition: color .3s 0s linear, background-color .3s 0s linear, border .3s 0s linear, opacity .3s 0s linear;
    transition: color .3s 0s linear, background-color .3s 0s linear, border .3s 0s linear, opacity .3s 0s linear;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

a:hover {
    color: #018C93;
}

h1{
    font-size: 44px;
    line-height: 1.2;
    margin: 50px 0;
    word-break: break-word;
}

.inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    height: 100vh;
}

.content {
    padding: 200px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 55%;
    text-align: right;
}

.image {
    width: 45%;
    overflow: hidden;
}

.image img {

    width: 100%;
    min-height: 1000px;
    height: 100vh;
    object-fit: contain;
    object-position: center top;
}

.container {
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: none;
}

.logo img {
    max-width: 380px;
}

p {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    word-break: break-word;
}

@media (max-width: 1600px) {
    .logo img {
        max-width: 350px;
    }
}

@media (max-width: 1450px) {
    h1 {
        font-size: 36px;
    }

    .content {
        padding: 100px 0 50px;
    }

    .container {
        padding: 0 50px;
    }

    p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .content{
        width: 100%;
    }

    .logo {
            display: block;
        }

    .image {
        display: none;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
        justify-content: flex-start;
    }

    .logo img {
        max-width: 260px;
    }

    h1 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    p {
        font-size: 14px;
    }
}