:root {
    --stack-native-column-gap: 10px;
    --stack-native-row-gap: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
}

#root {
    background: radial-gradient(64.9% 34.2308% at 0% 0%, rgba(138, 255, 255, 0.45) 0%, rgb(255, 255, 255) 100%);
    display: flex;
}

#main_left_sec {
    width: 70%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 50px 50px 50px 50px;
    height: auto;
}

#main_right_sec {
    width: 30%;
    min-height: 100vh;
    display: block;
    background-color: rgb(0, 0, 0);
    transform: none;
    transform-origin: 50% 50% 0px;
}

.main_left_container {
    /* margin: auto; */
}

.main_right_container {
    /* margin: auto; */
}

.left_content_div {
    max-width: 800px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.main_left_container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0px 0px 0px 0px;
    width: 100%;
    height: auto;
    max-width: 800px;
    --stack-native-column-gap: 50px;
    --stack-native-row-gap: 50px;
    margin: auto;
}

.main_right_container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    padding: 50px 50px 50px 50px;
    width: 100%;
    height: 100%;
    --stack-native-column-gap: 50px;
    --stack-native-row-gap: 50px;
    margin: auto;
}

.left_content_div .top_header {
    display: flex;
    gap: 26px;
}

.left_content_div .top_header .header_img {
    width: 66px;
    height: 66px;
    opacity: 1;
    transform: perspective(1200px) translateX(0px) translateY(0px) scale(1) rotate(0deg) rotateX(0deg) rotateY(0deg) translateZ(0px);
    position: relative;
    overflow: visible;
    width: 66px;
    height: var(--framer-aspect-ratio-supported, 66px);
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 33px;
    box-shadow: rgba(104, 196, 187, 0.7) 0px 10px 25px 0px;
}

.left_content_div .top_header h1 {
    font-weight: 900;
    font-size: 30px;
    color: rgb(51, 51, 51);
}

.left_content_div .top_header h2 {
    font-weight: 700;
    font-size: 18px;
    color: rgba(51, 51, 51, 0.6);
}

.left_content_div .main_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.left_content_div .main_content .main_content_title {
    font-weight: 500;
    font-size: 18px;
    color: rgba(34, 34, 34, 0.7);
}

.left_content_div .main_content .main_content_heading {
    font-weight: 900;
    font-size: 18px;
    color: rgb(34, 34, 34);
}

.left_content_div .main_content .main_content_sub_heading {
    font-weight: 400;
    font-size: 14px;
    color: rgb(143, 143, 143);
    margin-top: 7px;
}

.left_content_div .main_content .description {
    font-weight: 400;
    margin-top: 14px;
}

.link_btn {
    text-decoration: none;
    display: block;
    font-weight: 400;
    margin-top: 18px;
    color: rgb(34, 34, 34);
}

.link_btn .link_btn_arrow {
    transition: all 0.3s ease;
}

.link_btn:hover .link_btn_arrow {
    margin-left: 6px;
}

.right_main_content_heading {
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.right_content_div .right_main_content {
    display: flex;
    gap: 38px;
    flex-direction: column;
}

.right_main_content_desc {
    font-weight: 400;
    margin-top: 18px;
    color: rgb(255, 255, 255, 0.8);
}

.right_main_content_li {
    font-weight: 400;
    margin-top: 10px;
    color: rgb(255, 255, 255, 0.8);
}

.right_main_content_li .link_btn {
    text-decoration: none;
    display: block;
    font-weight: 400;
    margin-top: 2px;
    color: rgb(255, 255, 255, 0.8);
}

.right_main_content_li .link_btn .link_btn_arrow {
    transition: all 0.3s ease;
}

.right_main_content_li .link_btn:hover .link_btn_arrow {
    margin-left: 6px;
}

@media only screen and (max-width: 800px) {
    #root {
        flex-direction: column;
    }

    #main_left_sec, #main_right_sec {
        width: 100%;
    }
}