section {
    padding: 40px 20px;
}

.rainbow {
    width: 100%;
    height: 100%;
    animation: o-rotate-360 linear 8s infinite;
}

.rainbow span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    transform: translate(-50%, -50%);
}

.rainbow span:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
}

.rainbow span:first-child {
    background: #2587b3;
}

.rainbow span:first-child:after {
    background: #45cbc9;
}

.rainbow span:last-child {
    background: #8ee4d7;
}

.rainbow span:last-child:after {
    background: #4eb2cd;
}

.c-subscribe-box {
    width: 100%;
    max-width: 600px;
    height: 650px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.c-subscribe-box__wrapper {
    width: calc(100% - 0.625rem);
    height: calc(100% - 0.625rem);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('https://s3.amazonaws.com/wp-uploads.benzingacannabisconference.com/events/wp-content/uploads/2023/05/10195352/gradient.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1.2rem 1rem 1.8rem;
    display: flex;
    flex-direction: column;
    border-radius: calc(8px / 2);
}

.c-subscribe-box__title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #0b2040;
}

.c-subscribe-box__desc {
    font-size: 16px;
    color: #0b2040;
    text-align: left;
}

section ul li {
    list-style-type: disc;
    color: #0b2040;
    font-size: 16px;
}

section ul {
    padding-left: 40px;
}

@keyframes o-rotate-360 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

footer.footer .newsletter-form {
    display: none;
}