main {
    h2 {
        text-align: center;
        width: 100%;
        font-size: 32px;
    }
    p {
        text-align: center;
        width: 100%;
        color: #000;
    }

    .video {
        margin-top: 16px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        align-items: center;
        gap: 16px;
        img:not(.play-btn) {
            width: 100% !important;
            border-radius: 12px;
            box-shadow: 2px 2px 8px 0 #0004;
        }
        a {
            width: 100%;
            position: relative;
            .play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                translate: -50% -50%;
                background-color: #4b07089a;
                border-radius: 100%;
                box-shadow: 0 0 16px 0 #4b0708;
            }
            &:hover {
                filter: brightness(0.8);
                .play-btn {
                    width: 60px !important;
                    height: 60px !important;
                }
            }
        }
    }
    .promotion {
        margin-top: 16px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        gap: 16px;
        img:not(.play-btn) {
            width: 100% !important;
            border-radius: 12px;
            box-shadow: 2px 2px 8px 0 #0004;
        }
        a {
            width: 100%;
            position: relative;
            &:hover {
                filter: brightness(0.9);
            }
        }
    }
    .bg-promotion {
        background-color: #fef6f3;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 48px;
        padding-bottom: 16px;
        /* transform: skewY(-3deg); 
        margin: 3% 0;
        padding: 3% 0;
        section {
            margin-top: 0;
            transform: skewY(3deg); 
        } */
    }

    .doctor {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 48px;
        margin-top: 16px;
        h3 {
            font-size: 24px;
            width: 100%;
            text-align: center;
        }
        .id {
            color: #fff;
            font-weight: bold;
            background-color: #4b0708;
            padding: 8px;
            border-radius: 12px;
            width: fit-content;
        }
        div {
            display: flex;
            align-items: center;
            flex-direction: column;
        }
    }
    .review {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 8px;
        margin-top: 16px;
    }
}


@media only screen and (max-width:1000px) {
    main {
        .video {
            grid-template-columns: 1fr 1fr;
        }
        .promotion {
            grid-template-columns: 1fr 1fr;
        }
        .doctor {
            grid-template-columns: 1fr 1fr;
        }
        .review {
            grid-template-columns: 1fr 1fr;
        }
    }
    
}