@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');

html,
body {
    height: 100%;
}

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Cal Sans", sans-serif;
}

.main_wrapper {
    padding: 30px;
    height: 100%;
    display: flex;
}

.main_wrapper>div {
    height: 100%;
}

.main_wrapper>div:first-child {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 20px;
}

.main_wrapper>div:first-child img {
    max-width: 50%;
    max-height: 70%;
}

.uc_texts {
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.uc_texts h1 {
    font-size: 80px;
    line-height: 1.2;
}

.uc_texts h1 span {
    display: block;
    font-weight: lighter;
    opacity: .5;
    font-size: 60%;
}

.uc_texts ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.uc_texts ul li {
    font-weight: lighter;
    list-style: none;
    font-size: 20px;
    letter-spacing: .3px;
}

@media(max-width:1600px) {
    .uc_texts h1 {
        font-size: 64px;
        line-height: 1.2;
    }
}

@media(max-width:992px) {
    .main_wrapper {
        flex-direction: column;
    }

    .main_wrapper>div {
        width: 100%;
    }

    .main_wrapper>div {
        height: max-content;
    }

    .main_wrapper>div:first-child {
        width: 100%;
        min-height: 240px;
    }

    .main_wrapper>div:first-child video {
        height: 300px;
    }

    .uc_texts h1 {
        margin: 0 0 30px;
        font-size: 36px;
    }

    .uc_texts {
        padding: 30px;
    }

    .main_wrapper {
        padding: 15px;
    }
}