.home .title {
    padding: 30px 0;
    font-size: 36px;
    text-align: center;
    font-weight: 700;
}

.state {
    background-color: var(--back-color);
    background-size: cover;
}

.state-info {
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    justify-content: center;
}


    .state-info .name {
        margin: 0;
        font-size: 32px;
        text-align: center;
        font-weight: 700;
        color: #fff;
    }


.world-lotteries {
    background-color: #fff;
}

    .world-lotteries .list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 0;
        padding: 10px 30px 60px;
    }

        .world-lotteries .list .item {
            width: 20%;
        }

            .world-lotteries .list .item a {
                font-size: 18px;
                color: var(--font-color);
            }

                .world-lotteries .list .item a:hover {
                    color: var(--theme-color);
                }


 

.features {
    background-color: #ffebe6;
    padding: 30px;
}

    .features .item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px; 
    }

        .features .item:hover {
            box-shadow: 0 0 0 1px transparent;
            transition-duration: .25s;
            transform: scale(1.02);
        }

        .features .item .features-text {
            display: block;
            width: 35%;
            padding-left: 50px;
        }

            .features .item .features-text .title {
                font-size: 36px;
                padding: 30px 20px 0;
                text-align: left;
            }

            .features .item .features-text .desc {
                font-size: 18px;
                text-align: left;
                padding: 15px 20px;
                line-height: 150%;
            }

            .features .item .features-text .btns {
                padding: 30px 20px;
                display: flex;
                gap: 0 20px;
            }

                .features .item .features-text .btns .learn-more {
                    padding: 0 25px;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 16px;
                    color: #fff;
                    background-color: var(--theme-color);
                    border: none;
                    font-weight: 500;
                    border-radius: 20px;
                }

        .features .item .img {
            display: flex;
            padding: 50px 20px;
            width: 65%;
        }

            .features .item .img img {
                height: 96%;
                border-radius: 6px;
                border: solid 1px #efefef;
                box-shadow: 0px 2px 14px 0px rgba(51, 45, 42, 0.1);
                -moz-box-shadow: 0px 2px 14px 0px rgba(51, 45, 42, 0.1);
                -webkit-box-shadow: 0px 2px 14px 0px rgba(51, 45, 42, 0.1);
            }


