*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: system-ui, sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-portion {
    height: 100%;
    width: 100%;
    /* background-color: antiquewhite; */
    display: flex;
}

.main-left {
    height: 100%;
    width: 50vw;
    /* background-color: aliceblue; */
}

.main-right {
    height: 100%;
    width: 50vw;
    /* background-color: rgb(148, 173, 195); */
    padding: 50px 70px;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-top {
    height: 7vh;
    width: 100%;
    /* background-color: brown; */
}

.left-bottom {
    height: 93vh;
    width: 100%;
    
    background-image: url(kara-eads-L7EwHkq1B2s-unsplash.jpg);
    background-position: center;
    background-size: cover;
}

.right-top {
    height: 40vh;
    width: 100%;
    /* background-color: red; */
    padding: 0 2vw;

}

.right-top h1 {
    font-size: 3vw;
    /* margin-bottom: 2vh; */
}

.right-top p {
    color: rgba(0, 0, 0, 0.637);
    margin-bottom: 2vh;
}

.right-top button {
    font-size: 1.1vw;
    padding: 1vh 2.5vw;
    background-color: black;
    color: rgb(198, 191, 191);
    border-radius: 1.5vw;
}

.right-bottom {
    height: 40vh;
    width: 100%;
    /* background-color: red; */
}

.right-bottom span {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.56);
    font-weight: 700;
}

.right-bottom p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.56);
    font-weight: 600;
}

@media (max-width:750px) {
    .main-portion{
       
        flex-direction: column;
        /* background-color: red; */
    }
    .main-left{
        width: 100%;
    }
    .left-top{
        display: none;
    }
    .main-right{
        width: 100%;
    }
    .right-top h1{
        font-size: 7vw;
    }
    .right-top p{
        font-size:3vw;
    }
    .right-top button{
        font-size:3vw;
    }
    .main-right{
        min-height: 100%;
        gap: 20vh;
    }
    
    
}
