.container {
    padding: 4rem 10rem;
    margin: 0;
}

.introduction {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0rem;
}

.intro-bg {
    background-image: url('../images/intro-bg.svg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
}

.highlight {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.accordion-container {
    background-image: url('../images/divider-offering.svg');
    background-position: top;
    background-repeat: no-repeat;
    background-color: #1E2D3C;
    background-size: 100%;
    color: #fff;
    padding: 4rem 10rem;
}

.accordion-container>h1 {
    margin-bottom: 2rem;
}

.yellow-box {
    border-radius: 2rem;
    background: #FCD30B;
    padding: 4rem;
}

.offering-bullets,
.cubicles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0rem;
}

.offering-bullets>.offering-bullet {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
}

.offering-bullets>.offering-bullet>.header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.offering-bullets>.offering-bullet>img {
    width: 4rem;
    height: auto;
}

.three-variant {
    grid-template-columns: 1fr 1fr 1fr;
}

.five-variant {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.additional-resources {
    margin-bottom: 8rem;
}

.additional-resources>h1,
.additional-resources>h3,
.slider-buttons {
    margin-bottom: 1rem;
}

.slider-buttons {
    text-align: end;
}

.resource-item>img {
    width: 80%;
}

.resource-item>h3 {
    margin: 1rem 0;
}

.resource-item>p {
    padding-right: 1rem;
}

.cubicles>.cubicle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    color: #1E63AD;
    border: 1px solid #D9D9D9;
    border-radius: 1rem;
    box-shadow: 0px 4px 4px rgba(208, 208, 208, 0.25);
}

.cubicles>.cubicle:nth-child(odd) {
    background: linear-gradient(175deg, #FCD30B 0%, rgba(255, 253, 245, 1) 25%);
}

.cubicles>.cubicle:nth-child(even) {
    background: linear-gradient(175deg, #4997EA 0%, rgba(246, 251, 255, 1) 25%);
}

/* Arrow list */
.arrow-list {
    list-style: none;
    padding-left: 0;
}

.arrow-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.arrow-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 1.1rem;
    height: 1.1rem;
    background-image: url('../images/offerings/colored-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.product {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.product>.product-info {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.product>.product-info>.highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.product>.product-info>ul>li {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product>.product-info>.highlights>.highlight {
    display: flex;
    gap: 1rem;
}

.product>.product-info>.highlights>.highlight>h3>b {
    font-size: 1.25rem;
}

.product>.product-info>.highlights>.highlight>img {
    width: 2rem;
    height: 2rem;
}

@media (max-width:1881px) {
    .highlight {
        grid-template-columns: 1fr 1.8fr;
    }
}

@media (max-width:1025px) {
    .container {
        padding: 4rem;
        margin: 0 !important;
    }

    .introduction {
        grid-template-columns: 1fr;
    }

    .accordion-container {
        padding: 4rem;
    }

    .highlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 961px) {
    .cubicle {
        padding: 1.5rem;
    }

    .offering-bullets>.offering-bullet>.header>img {
        width: 2rem;
    }

    .arrow-list li {
        font-size: 1.25rem;
    }
}

@media (max-width: 769px) {
    .product {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .product>.product-info>.highlights {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}


@media (max-width:481px) {
    .container {
        padding: 2rem;
        margin: 0;
    }

    .introduction {
        gap: 1rem;
    }

    .accordion-container {
        padding: 4rem 2rem;
    }

    .cubicles>.cubicle {
        padding: 1rem;
    }

    .cubicles,
    .offering-bullets,
    .three-variant {
        grid-template-columns: 1fr;
    }

    .offering-bullets>.offering-bullet>.header {
        gap: 0.6rem;
    }

    .offering-bullets>.offering-bullet>.header>img {
        width: 1rem;
    }

    .offering-bullets,
    .cubicles {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .arrow-list li {
        font-size: 1rem;
    }

    .five-variant {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
        margin: 1rem 0;
    }

    .product {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .product>.product-info>.highlights {
        margin: 0 0;
    }

    .product>.product-info>.highlights>.highlight>h3>b {
        font-size: 1rem;
    }

    .product>.product-info>ul>li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}