#next-section .w-1\/5 {
    width: 20% !important;
}

#next-section .w-3\/5 {
    width: 60% !important;
}

#next-section .w-4\/5 {
    width: 80% !important;
}

.color-text-midnight-blue {
    color: rgb(var(--prosek-midnight-blue) / var(--tw-text-opacity, 1));
}

.display-md {
    font-size: 88px;
    line-height: 100px;
}

.scroll-down svg {
    animation: scroll-bounce 1.6s ease-in-out infinite;
    cursor: pointer;
}

.rainbow-side {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 0.9375rem;
    height: 100%;
    background-image: url('../images/raibow-side.png');
    background-position: left top;
}

.columns {
    gap: 4.125rem;
}

.columns .headline {
    border-bottom: 2px solid rgba(38, 33, 102, 0.4);
}

.headline_border_white {
    border-bottom: 2px solid #fff;
    margin-bottom: 60px;
    padding-bottom: 40px;
    font-size: 5.625rem;
}

.columns .index {
    color: var(--prosek-pink);
}

.tag-group {
    min-width: 85px;
    /*margin-top: 40px;*/
    margin-right: 1.25rem;
    display: inline-flex;
}

.tag-group .tag {
    background-color: #7F1791;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    display: inline;
    padding: 0.5rem;
    font-size: 14px;
}

.group-item {
    gap: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.group-item:first-of-type {
    border: 0 none;
}

.group-item li {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 85px;
}

.group-item li:last-of-type {
    border-bottom: 0;
}

.group-item p:last-of-type {
    margin-bottom: 0;
}

.group-item a {
    top: 48px;
}

.group-item p {
    font-size: 1.875rem;
}

.content_image_1 {
    padding-right: 4.375rem;
}

.gradient-2018 {
    background: linear-gradient(0.25turn, #9C27B0, #E91E63);
}

.gradient-2019 {
    background: linear-gradient(0.25turn, #673AB7, #9C27B0);
}

.gradient-2020 {
    background: linear-gradient(0.25turn, #3F51B5, #673AB7);
}

.gradient-2021 {
    background: linear-gradient(0.25turn, #2196F3, #3F51B5);
}

.gradient-2022 {
    background: linear-gradient(0.25turn, #009688, #00BCD4);
}

.gradient-2023 {
    background: linear-gradient(0.25turn, #8BC34A, #4CAF50);
}

.gradient-2024 {
    background: linear-gradient(0.25turn, #E91E63, #FF5722);
}

.gradient-2025 {
    background: linear-gradient(0.25turn, #FF5722, #FF9800);
}

.tag-group .tag1 {
    background-color: #7F1791;
}

.tag-group .tag2 {
    background-color: #6B1981;
}

.tag-group .tag3 {
    background-color: #4F359F;
}

.tag-group .tag4 {
    background-color: #303E92;
}

.tag-group .tag5 {
    background-color: #007471;
}

.tag-group .tag6 {
    background-color: #2A9759;
}

.tag-group .tag7 {
    background-color: #C30B3D;
}

.tag-group .tag8 {
    background-color: #E92526;
}

.tag-content {
    margin-right: auto !important;
}

.image_1 {
}

.image_1 img {
    border-radius: 10px;
}

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

.image_2 img {
    border-radius: 10px;
}

.image_3 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 1rem; /* spacing between images */
    max-width: 500px; /* optional */
}

.image_3 li {
    list-style: none;
}

.image_3 li:nth-child(2) {
    transform: translateY(90px);
}

.image_3 li:nth-child(3) {
    transform: translateY(-25%);
}

.image_3 img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* rounded corners */
    object-fit: cover; /* keeps face centered */
    display: block;
}

.image_4 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 1rem; /* spacing between images */
    max-width: 500px; /* optional */
}

.image_4 li:nth-child(1) {
    transform: translateY(55px);
}

.image_4 li:nth-child(3) {
    transform: translateY(40px);
}

.image_4 img {
    height: auto;
    border-radius: 10px; /* rounded corners */
    object-fit: cover; /* keeps face centered */
    display: block;
}

/* ====================
Logos Accordion Slider
=====================*/
.accordian {
    width: 100vw;
    height: 40vw;
    overflow: hidden;

    /*Time for some styling*/
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}

/*A small hack to prevent flickering on some browsers*/
.accordian ul {
    width: 100vw;
    /*This will give ample space to the last item to move
    instead of falling down/flickering during hovers.*/
}

.accordian li {
    position: relative;
    display: flex;
    width: 33.333vw;
    height: 40vw;
    float: left;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    background-color: #500B39;

    /*Transitions to give animation effect*/
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    /*If you hover on the images now you should be able to
    see the basic accordian*/
}

.items-3.accordian li {
    width: 33.333vw;
}

.items-4.accordian li {
    width: 25vw;
}

.items-5.accordian li {
    width: 20vw;
}

.accordian li:nth-child(3n-1) {
    background-color: #AD249D;
}

.accordian li:nth-child(4n-1) {
    background-color: #181448;
}

/*Reduce with of un-hovered elements*/
.items-3.accordian ul:hover li {
    width: 15vw;
    overflow: hidden;
}

.items-4.accordian ul:hover li {
    width: 10vw;
    overflow: hidden;
}

.items-5.accordian ul:hover li {
    width: 7.5vw;
    overflow: hidden;
}

.accordian ul li .image_title {
    min-height: 4.8125rem;
}

.accordian ul:hover li .image_title {
    opacity: 0;
}

/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/
.items-3.accordian ul li:hover,
.items-4.accordian ul li:hover,
.items-5.accordian ul li:hover {
    width: 70vw;
}

.items-3.accordian ul li:hover .image_title,
.items-4.accordian ul li:hover .image_title,
.items-5.accordian ul li:hover .image_title {
    opacity: 1;
}

.accordian li img {
    display: block;
    width: 18.25rem;
    object-fit: cover;
}

/*Image title styles*/
.image_title {
    font-size: 4rem;
    font-weight: 400;
    align-self: flex-start;
    transition: 0.4s;
}

.accordian li .logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}

.accordian ul:hover li .logo-wrap {
    transform: translateX(-5vw);
}

.accordian li .image_years {
    font-size: 2.25rem;
    font-weight: 400;
    white-space: nowrap;
}

.testimonials .headline {
    border-bottom: 2px solid rgba(33, 29, 92, 0.4);
}

.bg-prosek-midnight-blue.testimonials .headline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.testimonials .content {
    padding-left: 10.125rem;
    padding-right: 10.125rem;
}

.testimonials .content svg {
	margin-left: -20px;
}

.bg-prosek-midnight-blue.testimonials .content .text-black,
.bg-prosek-midnight-blue.testimonials .content p {
    color: #fff !important;
}

.testimonials .rainbow-side {
    height: 100%;
}

.testimonials .rainbow-side svg {
    height: 100%;
}

.years-acc .headline {
    border-bottom: 2px solid #fff;
}

#where-we-shine .accordion-item {
    padding-top: 50px;
    margin-top: -50px;
    border: 2px solid rgb(var(--prosek-midnight-blue) / var(--tw-text-opacity, 1));
}

#where-we-shine .accordion-item .accordion-title::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 15px;
    z-index: 1;
    background-color: #EB008C;
    display: inline-block;
    margin-right: 10px;
}

#where-we-shine .accordion-body {
    padding-left: 25px;
    font-size: 20px;
    font-weight: 400;
}

#where-we-shine .accordion-item:nth-child(2n-7) .accordion-title::before {
    background-color: #EC1C2E;
}

#where-we-shine .accordion-item:nth-child(3n-7) .accordion-title::before {
    background-color: #944599;
}

#where-we-shine .accordion-item:nth-child(4n-7) .accordion-title::before {
    background-color: #393995;
}

#where-we-shine .accordion-item:nth-child(5n-7) .accordion-title::before {
    background-color: #0081C3;
}

#where-we-shine .accordion-item:nth-child(6n-7) .accordion-title::before {
    background-color: #008061;
}

#where-we-shine .accordion-item:nth-child(7n-7) .accordion-title::before {
    background-color: #F9AA53;
}

#where-we-shine .accordion-item:first-of-type {
    padding-top: 0;
    margin-top: 0;
}

.news-wrap {
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}

.latest-news--image .image-wrapper img {
    width: 100% !important;
    height: 27vw !important;
    max-height: 561px !important;
    object-fit: cover !important;
    min-height: 400px !important;
}

.cta-footer {
    border-radius: 15px;
    border-color: rgba(255, 255, 255, 0.7);
    transition: 0.4s;
}

.cta-footer:hover {
    border-color: white;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.z-6 {
    z-index: 6;
}

.z-7 {
    z-index: 7;
}

.z-8 {
    z-index: 8;
}

.z-9 {
    z-index: 9;
}

.z-10 {
    z-index: 10;
}

.z-11 {
    z-index: 11;
}

.z-12 {
    z-index: 12;
}

.z-13 {
    z-index: 13;
}

.z-14 {
    z-index: 14;
}

.z-15 {
    z-index: 15;
}

.z-16 {
    z-index: 16;
}

.z-17 {
    z-index: 17;
}

.z-18 {
    z-index: 18;
}

.z-19 {
    z-index: 19;
}

.z-20 {
    z-index: 20;
}

@media screen and (max-width: 1199px) {
	.latest-news--image .image-wrapper img {
		min-height: 300px !important;
	}

    .accordian li img {
        width: 10rem;
    }
}

@media screen and (min-width: 992px) {
    .mobile-list {
        display: none !important;
    }

    .desktop-scroll {
        display: block !important;
    }

    .mobile-scroll {
        display: none !important;
    }
}

@media screen and (max-width: 991px) {
    .desktop-list {
        display: none !important;
    }

    .testimonials .rainbow-side {
        display: none !important;
    }

    .testimonials .content {
        padding-left: 0;
        padding-right: 0;
        width: 100% !important;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 1.125rem;
        line-height: 2.5rem;
    }

    .testimonials .image {
        width: 100% !important;
    }

    .testimonials .reviews-wrap {
        flex-direction: column;
        gap: 2rem;
    }

    .accordian li,
    .items-3.accordian li,
    .items-4.accordian li,
    .items-5.accordian li {
        width: 100%;
    }

    .accordian ul:hover li .image_title {
        opacity: 1;
    }

    .items-3.accordian ul li:hover,
    .items-4.accordian ul li:hover,
    .items-5.accordian ul li:hover {
        width: 100%;
    }

    .accordian {
        width: 100%;
        height: auto;
    }

    .accordian li {
        width: 100%;
        float: none;
        clear: both;
        height: auto;
        padding: 5.625rem 4rem;
    }

    .accordian ul {
        width: 100%;
    }

    .accordian ul:hover li .logo-wrap {
        transform: translateX(0);
    }

    .items-3.accordian ul:hover li,
    .items-4.accordian ul:hover li,
    .items-5.accordian ul:hover li {
        width: 100%;
    }

    .accordian li .image_title {
        font-size: 3rem;
    }

    .accordian li .image_years {
        font-size: 2.25rem;
    }

    #next-section .w-1\/2,
    #next-section .w-3\/5,
    #next-section .w-1\/3,
    #next-section .w-3\/4,
    #next-section .w-1\/5 {
        width: 100% !important;
    }

    #next-section .content_image_1 {
        padding-right: 0;
    }

    #next-section .image-grid {
        margin: 0 auto;
    }

    #next-section .group-item {
        flex-direction: column;
        gap: 0;
    }

    #next-section .group-item li {
        flex-direction: column;
        padding-right: 0;
    }

    #next-section .group-item a {
        top: 0;
        position: relative !important;
        margin-left: 0 !important;
    }

    .w-full.years-banner {
        margin: -36px;
        width: calc(100% + 72px) !important;
        background-position: left 15% top 50% !important;
        max-height: 600px;
    }

    .years-banner h2 {
        font-size: 3.375rem;
        line-height: 4rem;
    }

    .testimonials .headline {
        margin-bottom: 1rem !important;
    }

    .desktop-scroll {
        display: none !important;
    }

    .mobile-scroll {
        display: block !important;
    }

    .headline_border_white {
        font-size: 3.125rem;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .group-item li {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .group-item p {
        font-size: 1.0625rem;
    }

    .image_2 {
        flex-direction: row !important;
    }

    .image_4 {
        padding-bottom: 40px;
    }

    .image_1 img,
    .image_2 img,
    .image_4 img {
        max-width: 100%;
    }

    #site-footer .desc-footer-text {
        font-size: 1.875rem !important;
    }

    #site-footer .resource-text {
        font-size: 3rem !important;
    }

    #site-footer .gap-14 {
        gap: 1.5rem !important;
    }

    .scroll-down {
        display: none;
    }

    .swiper-wrapper .columns-temp {
        padding-left: 2rem !important;
    }

    .tag-group {
        margin-top: 40px;
    }

    .accordian li img {
        width: 14rem;
    }

    .nav-arrow-news svg {
        stroke: black !important;
    }

    .accordian-mobile ul {
        display: flex;
        flex-direction: column;
    }

    .accordian-mobile li {
        overflow: hidden;
        transition: all .3s ease;
        padding: 0 4rem 1rem;
    }

    .accordian-mobile li.is-open {
        padding: 5rem 4rem;
    }

    /* CLICKABLE HEADER */
    .accordian-mobile .image_years {
        padding: 16px;
        font-weight: 600;
        cursor: pointer;
        position: relative;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* CONTENT (hidden by default) */
    .accordian-mobile .image_title,
    .accordian-mobile .logo-wrap img {
        max-height: 0!important;
        min-height: 0!important;
        opacity: 0 !important;
        overflow: hidden;
        transition: all .3s ease;
    }

    .accordian-mobile li.is-open .image_title,
    .accordian-mobile li.is-open .logo-wrap img {
        max-height: 500px!important;
        opacity: 1!important;
    }

    .accordian-mobile .logo-wrap img {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .news-wrap .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
    }

    .news-wrap .swiper-slide img {
        max-width: 100% !important;
    }
	
	.latest-news--image .image-wrapper img {
		min-height: auto !important;
        height: auto !important;
	}
}

@keyframes scroll-bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
