@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-VariableFont_wght.ttf');
    font-weight: 200 800;
}
@font-face {
    font-family: 'Forum';
    src: url('../font/Forum-Regular.ttf');
}
body{
    font-family: 'Manrope', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: none;
    width: 100%;
}
a{
    text-decoration: none;
}
h1{
    font-size: 80px;
    margin: 0;
}
h2{
    font-size: 32px;
    margin: 0;
}
h6{
    font-size: 28px;
    margin: 0;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
.none{
    display: none;
}
.button{
    border: 1px solid white;
    background: none;
    border-radius: 23px;
    overflow: hidden;
    padding: 10px 10px 10px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    p{
        margin: 0;
        font-weight: 400;
        line-height: 150%; /* 24px */
        letter-spacing: -0.32px;
        color: white;
    }
}
main{
    .product{
        width: 100%;
        position: relative;
        img{
            width: 100%;
            aspect-ratio: 16/9;
        }
        .content{
            position: absolute;
            display: flex;
            flex-direction: column;
            gap: 20px;
            bottom: 120px;
            left: 80px;
            color: white;
            h1{
                font-family: Forum;
                font-size: 80px;
                font-style: normal;
                font-weight: 400;
                line-height: 86%; /* 68.8px */
                letter-spacing: -0.8px;
            }
            p{
                font-family: Manrope;
                font-size: 32px;
                font-style: normal;
                font-weight: 400;
                line-height: 130%; /* 41.6px */
                letter-spacing: -0.64px;
                width: 75%;
            }
        }
    }
    .benefits{
        padding: 80px;
        display: grid;
        grid-template-columns: 4fr 2fr;
        gap: 20px;
        .content{
            width: 100%;
            ul{
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                li{
                    display: grid;
                    grid-template-columns: 1fr 3fr;
                    position: relative;
                    padding: 20px 0;
                    h5{
                        color: #005D3F;
                        font-family: Manrope;
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 120%; /* 19.2px */
                        letter-spacing: -0.32px;
                    }
                    p{
                        font-family: Manrope;
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 150%; /* 24px */
                        letter-spacing: -0.32px;
                    }
                    ul{
                        padding: 0;
                        margin: 0;
                        display: flex;
                        flex-direction: column;
                        gap: 10px;
                        li{
                            display: flex;
                            flex-direction: column;
                            padding: 0;
                            gap: 10px;
                            h6{
                                color: #005D3F;
                                font-family: Manrope;
                                font-size: 16px;
                                font-style: normal;
                                font-weight: 600;
                                line-height: 120%; /* 19.2px */
                                letter-spacing: -0.32px;
                            }
                            p{
                                font-family: Manrope;
                                font-size: 16px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 150%; /* 24px */
                                letter-spacing: -0.32px;
                            }
                            & ::after{

                            }
                        }
                    }
                }
            }
            a{
                background: #015d3f;
                margin: 10px;
                padding: 3px 35px;
                color: #fff;
                font-size: 24px;
                border-radius: 15px;
            }
        }
        .new-title{
            padding-top: 40px;
            h2{
                font-family: Forum;
                font-size: 80px;
                font-style: normal;
                font-weight: 400;
                line-height: 86%; /* 68.8px */
                letter-spacing: -0.8px;
            }
        }
    }
}
.list::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    left: 0;
    bottom: 0;
}

@media (max-width: 784px){
    main{
        .product{
            img{
                height: 100%;
                aspect-ratio: 375/448;
            }
            .content{
                left: 20px;
                bottom: 20px;
                h1{
                    font-family: Forum;
                    font-size: 40px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 86%; /* 34.4px */
                    letter-spacing: -0.4px;
                }
                p{
                    font-family: Manrope;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 140%;
                }
            }
        }
        .benefits{
            grid-template-columns: 1fr;
            padding: 20px;
            .content{
                ul{
                    li{
                        grid-template-columns: 1fr;
                        gap: 10px;
                    }
                }
            }
            .new-title{
                h2{
                    font-family: Forum;
                    font-size: 40px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 150%; /* 36px */
                    letter-spacing: 0.24px;
                }
            }
        }
    }
}
