.package {
    background: #fff;
}

.package .wrap {
    margin: 88px auto 0;
}

.package .wrap .title {
    text-align: center;
    font-size: 54px;
    font-family: Roboto b;
    font-weight: 500;
    color: #0D0D0D;
}

.package .wrap .item {
    overflow: hidden;
}

.package .wrap .item .joke {
    width: 1230px;
    margin: 40px auto;
    display: flex;
    align-items: center;
}

.package .wrap .item .joke .text {
    width: 541px;
    margin: 0 175px 0 0;
}

.package .wrap .item .joke .text span {
    width: 435px;
    font-size: 36px;
    font-family: Roboto b;
    font-weight: 500;
    color: #0D0D0D;
    line-height: 35px;
    display: block;
    margin: 0 0 52px 0;
}

.package .wrap .item .joke .text p {
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    color: #505050;
    line-height: 25px;
}

.package .wrap .item:nth-child(2n) {
    background: #F9F9FB;
}

.package .wrap .item:nth-child(2n) .joke {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.package .wrap .item:nth-child(2n) .joke .text {
    margin: 0 0 0 139px;
}

.package .wrap .item .joke .images {
    width: 503px;
    height: 337px;
    overflow: hidden;
    clip-path: inset(0px 100% 0% 0%);
    transition: 2s;
}

.package .wrap .item .joke .images.aos-animate {
    clip-path: inset(0px 0% 0% 0%);
}

.package .wrap .item .joke .images img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1900px) {
    .package .wrap .item .joke{
        max-width: 90%;
    }
}

@media screen and (max-width: 1366px) {
    .package .wrap .item .joke{
        justify-content: space-between;
    }
    .package .wrap .item .joke .text{
        width: 46%;
        margin: 0;
    }
    .package .wrap .item .joke .images{
        height: auto;
    }
}
@media screen and (max-width: 1023px) {
    .package .wrap{
        margin: 35px auto 0;
    }
    .package .wrap .title{
        font-size: 28px;
    }
    .package .wrap .item .joke{
        max-width: 90%;
        flex-direction: column-reverse!important;
    }
    .package .wrap .item .joke .text{
        width: 100%;
        margin: 25px 0 0 0!important;
    }
    .package .wrap .item .joke .images{
        width: 100%;
        height: auto;
        clip-path: inset(0px 0% 0% 0%);
    }
    .package .wrap .item .joke .text span{
        max-width: 100%;
        font-size: 22px;
        line-height: 27px;
        margin: 0 0 26px 0;
    }
    .package .wrap .item .joke .text p{
        font-size: 15px;
    }
}