.easter-banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 10px;

    padding: 10px 40px;

    background-color: #fcf8ed;
}
.easter-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.easter-banner__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.easter-banner__top {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.easter-banner__content > a {
    padding: 12px 24px;

    border-radius: 80px;
    background: #e85600;
    border: 2px solid #e85600;
    text-decoration: none;
    color: #fff;
    font-family: "Unbounded";
    font-size: 24px;
    font-weight: 600;

    transition: all 0.5s ease;
}

.easter-banner__content > a:hover {
    background: #fcf8ed;
    color: #e85600;
}

.easter-banner__top span:first-child {
    padding: 4px 8px;

    border-radius: 400px;
    border: 1px solid #000;

    color: #000;
    font-family: "Inter";
    font-size: 13px;
    font-weight: 700;
}

.easter-banner__top span:last-child {
    color: #000;
    font-family: "Unbounded";
    font-size: 16px;
    font-weight: 300;
}

.easter-banner__title {
    position: relative;
}

.easter-banner__title span:first-child {
    position: relative;
    z-index: 2;
    color: #263de9;
    font-family: "Unbounded";
    font-size: 40px;
    font-weight: 600;
    line-height: 139%;
}

.easter-banner__title span:last-child {
    position: absolute;
    z-index: 0;
    right: -10px;
    top: -15px;

    transform: rotate(5deg);
    padding: 4px 8px;

    color: #e85600;
    font-family: "Unbounded";
    font-size: 24px;
    font-weight: 600;
    line-height: normal;

    border-radius: 120px;
    background: #fff;
}

.easter-banner__image {
    position: absolute;
    top: 0px;
    right: 100px;
    width: 240px;
    height: 100%;
}

.easter-banner__image .show-mobile {
    display: none;
}

.easter-banner__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.easter-banner__rightside > img {
    position: absolute;
}

.pink-egg {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    width: 87px;
    height: 102px;
}
.blue-egg {
    position: absolute;
    z-index: 0;
    right: 460px;
    top: 0;
    width: 160px;
    height: 91px;
}
.orange-egg {
    position: absolute;
    z-index: 0;
    right: 320px;
    bottom: 0;
    width: 170px;
    height: 109px;
}

@media (max-width: 1200px) {
    .easter-banner__image {
        right: 20px;
    }

    .easter-banner__content > a {
        padding: 4px 12px;
        font-size: 18px;
    }

    .easter-banner__title span:first-child {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .easter-banner__image {
        right: -60px;
    }
    .pink-egg {
        display: none;
    }
    .easter-banner__content {
        column-gap: 20px;
    }
}

@media (max-width: 768px) {
    .easter-banner {
        padding: 11px 24px;
    }
    .easter-banner__content {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 8px;
    }
    .easter-banner__image {
        right: -35px;
    }

    .blue-egg,
    .orange-egg {
        display: none;
    }

    .easter-banner__title span:first-child {
        font-size: 16px;
    }

    .easter-banner__top span:first-child {
        font-size: 10px;
    }

    .easter-banner__top span:last-child {
        font-size: 12px;
    }

    .easter-banner__content > a {
        font-size: 14px;
    }

    .easter-banner__title span:last-child {
        padding: 2px 6px;
        font-size: 14px;

        right: -27px;
        top: -9px;
    }

    .easter-banner__wrapper {
        row-gap: 4px;
    }

    .easter-banner__top {
        column-gap: 8px;
    }
}

@media (max-width: 467px) {
    .easter-banner__image {
        right: 0px;
        width: 170px;
    }
    .easter-banner__image .show-pc {
        display: none;
    }
    .easter-banner__image .show-mobile {
        display: block;
    }
}
