@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
}

.liquor-licenses {
    position: relative;

    .top-section {
        padding: 5rem;
        margin-bottom: 3rem;


        .watermark {
            position: absolute;
            right: 0;
            top: 0;
            z-index: -1;

            img {
                width: 25rem;
                object-fit: cover;
            }
        }

        .logo {
            img {
                width: 20rem;
                object-fit: cover;
            }
        }

        .licenses-content {
            margin-top: 3.5rem;
            display: flex;
            flex-direction: column;

            .Smart,
            .Licenses-Liquor {
                font-family: "Open Sans", sans-serif;
                font-size: 3rem;
            }

            .Licenses-Liquor {
                color: #A6001C;
                font-weight: 800;
            }

            .DXB {
                margin-top: 1rem;
                width: 51%;
                color: #6D7280;
                font-size: 1.2rem;
            }
        }

        .downloadKit {
            margin-top: 4rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;

            img {
                width: 17rem;
            }
        }
    }

    .bottom-section {
        padding: 5rem;
        background-color: #F9FAFB;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;

        .AuthorizedCard,
        .RulesCard {
            padding: 1.5rem;
            border-radius: 1rem;
            background-color: #ffffff;
            border: 1px solid #E5E7EB;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            width: clamp(30rem, 39vw, 150rem);
            height: 36rem;

            .cardTitle {
                background-color: #A6001C0D;
                padding: .5rem;
                border-radius: 20rem;
                text-align: center;
                border: 1.5px solid #A6001C33;
                color: #A6001C;
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 1rem;
            }

            .RegulationsCards {
                padding: 1rem;
                border: 1.5px solid #E5E7EB;
                background-color: #F9FAFB;
                border-radius: 1rem;

                img {
                    width: 3.5rem;
                    object-fit: cover;
                }

                div {
                    margin-top: .5rem;
                    color: #292A2B;
                }
            }

            .vendorImg {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1.5rem;

                img {
                    width: 20rem;
                    object-fit: cover;
                }
            }
        }
    }
}

@media screen and (max-width: 1240px) {
    .liquor-licenses {
        .top-section {
            .licenses-content {
                .Smart {
                    line-height: 1.3;
                    font-size: 2rem;
                    margin-bottom: 1rem;
                }

                .DXB {
                    font-size: 1rem;
                    width: 100%;
                    text-align: justify;
                }
            }
        }

        .bottom-section {

            .AuthorizedCard,
            .RulesCard {
                width: 100% !important;

            }
        }
    }
}

@media screen and (max-width: 500px) {
    .liquor-licenses {

        .top-section,
        .bottom-section {
            padding: 2rem;

            .logo {
                img {
                    width: 19rem;
                    object-fit: cover;
                }
            }
        }

        .downloadKit {
            justify-content: center;
        }

        .AuthorizedCard,
        .RulesCard {
            height: 100% !important;

            .vendorImg {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1.5rem;

                img {
                    width: 15rem;
                    object-fit: cover;
                }
            }
        }
    }
}
}