@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    color: #5D5D7D;
}
.wrapper {
    width: 100vw;
    height: 100vh;
}
.container-left {
    display: inline-block;
    width: 60%;
    margin-top: 22%;
    padding-left: 136px;
}
.container-right {
    display: inline-block;
    background-color: rgba(93, 93, 125, 16%);
    width: 40%;
    height: 100vh;
    position: absolute;
}
h1 {
    width: 368px;
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 0px;
}
p {
    width: 540px;
    font-size: 28px;
    line-height: 48px;
    letter-spacing: 0px;
    margin: 15px 0px;
    opacity: 60%;
}
button {
    width: 269px;
    height: 62px;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    background: #9499EA;
    color: #FFFFFF;
    box-shadow: 0px 10px 24px 0px #9499EA19;
    border: none;
    border-radius: 50px;
}
button:hover {
    opacity: 80%;
}
button:active {
    opacity: 50%;
}
header {
    margin: 24px 0px 0px 53px;
}
a {
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-right: 41px;
}
a:nth-child(2) {
    opacity: 40%;
}
a:hover {
    opacity: 40%;
}
a:active {
    opacity: 80%;
}
.image-right {
    position: relative;
    top: 25%;
    right: 130px;
}
button , a {
    cursor: pointer;
}
/*<!------Config Responsive------>*/
@media screen and (max-width: 1300px) {
    .container-left {
        width: 100vw;
        height: 50vh;
        margin: 0;
        padding: 0;
        padding-left: 0px;
    }
    .container-right {
        width: 100vw;
        height: auto;
        display: block;
        position: static;
        align-items: center;
    }
    h1 {
        width: auto;
        font-size: 36px;
        line-height: 52px;
        text-align: center;
        letter-spacing: 0px;
        margin: 58px 53.5px 0px 53.5px;
    }
    p {
        width: auto;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0px;
        margin: 15px 39.5px;
        opacity: 60%;
    }
    button {
        width: 269px;
        height: 62px;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0px;
        text-align: center;
        margin: 0px auto;
        display: block;
        background: #9499EA;
        color: #FFFFFF;
        box-shadow: 0px 10px 24px 0px #9499EA19;
        border: none;
        border-radius: 50px;
    }
    header {
        display: none;
    }
    .image-right {
        max-width: 100vw;
        max-height: auto;
        position: static;
        padding: 46px;
        margin: 0 auto;
        display: block;
    }
}