:root {
    --spaceYPage: 2.56rem;
    --gap-x: 1.4rem;
}
/*===================================section.support-container*/
section#support-container {
    padding-top: calc(var(--headerHeight)* 1.5);
}
section.support-container {
    margin-top: 3rem;
    margin-bottom: 6rem;
}
.supportItem:not(:last-child) {
    margin-top: 5rem;
    margin-bottom: 10rem;
}
.supportItem .infoMedia{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8.56rem 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 8.56rem;
    -moz-column-gap: 8.56rem;
    column-gap: 8.56rem;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}
.supportItem  .media{
    width: 100%;
    /*height: 42vh;*/
    border-radius: 0.625rem;
    overflow: hidden;
}
.supportItem  .media > img {
    max-width: 100%;
    height: auto;
}
.supportItem  .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: var(--spaceYPage);
    width: 100%;
}
.supportItem .info .whiteSpace {
    position: relative;
}

.supportItem .info .whiteSpace:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: -o-linear-gradient(1deg, #9AD1C2 61.7%, #84A3C8 98.51%);
    background: linear-gradient(89deg, #9AD1C2 61.7%, #84A3C8 98.51%);
}
.supportItem .info .cta {
    font-weight: 700;
    width: 100%;
}
/*.supportItem .registration-container .title{}*/
/*.supportItem .registration-container .cta {*/
/*    width: 100%;*/
/*}*/
/*.supportItem .registration-container .submitRegister{*/
/*    width: 100%;*/
/*    margin-top: .5rem;*/
/*}*/
/*===================================section.support-container*/
/*================Marquee CONTAINER==================*/
.marqueeContainer {
    direction: ltr;
    position: relative;
    z-index: 1;
}
.scrolling-wrap {
    overflow: hidden;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap-x);
    margin-bottom: .8rem;
}
.scrolling-wrap .comm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: scroll 35s linear infinite;
    animation: scroll 35s linear infinite;
    cursor: pointer;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    gap: var(--gap-x);
}
.comm-item {
    position: relative;
    width: calc(100vw / 8 - 1.4rem* 7 / 8);
    height: 7.1875rem;
    border-radius: 0.625rem;
    overflow: hidden;
}
.scrolling-wrap:last-child .comm{
    -webkit-animation: scrollR 35s linear infinite;
    animation: scrollR 35s linear infinite;

}
.scrolling-wrap:hover .comm {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}


@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% - 1rem));
        transform: translateX(calc(-100% - 1rem));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap-x)));
        transform: translateX(calc(-100% - var(--gap-x)));
    }
}
@-webkit-keyframes scrollR {
    0% {
        -webkit-transform: translateX(calc(-100% - var(--gap-x)));
        transform: translateX(calc(-100% - var(--gap-x)));
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes scrollR {
    0% {
        -webkit-transform: translateX(calc(-100% - var(--gap-x)));
        transform: translateX(calc(-100% - var(--gap-x)));
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.scrolling-wrap .comm div {
    margin: 0;
}
.marqueeContainer {
    direction: ltr;
    position: relative;
    z-index: 1;
}

.supportItem .marqueeContainer {
    margin-top: 3.75rem;
}
/*================Marquee CONTAINER==================*/
/*================================responsive================================*/
@media only screen and (max-width: 768px) {
    :root {
        --spaceYPage: 1.56rem;
    }
    .supportItem .infoMedia {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 1.58rem;
    }

    .supportItem .media {
        height: auto;
    }

    .supportItem .marqueeContainer {
        margin-top: 2.5rem;
    }

    .supportItem:not(:last-child) {
        margin-bottom: 6rem;
    }

    .comm-item {
        width: calc(100vw / 2);
    }
}
@media only screen and (min-width: 640px) and (max-width: 768px){
    .comm-item {
        width: calc(100vw / 4);
    }
}
@media only screen and (min-width: 769px) and (max-width: 1199px){
    .supportItem:not(:last-child) {
        margin-bottom: 8rem;
    }
    .comm-item {
        width: calc(100vw / 5 - 1.4rem* 4 / 5);
    }
    .supportItem .media {
        height: 30vh;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
    .comm-item {
        width: calc(100vw / 6 - 1.4rem* 5 / 6);
    }
    .supportItem:not(:last-child) {
        margin-bottom: 7rem;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px){

    .comm-item {
        width: calc(100vw / 7 - 1.4rem* 6 / 7);
    }
    .supportItem:not(:last-child) {
        margin-bottom: 8rem;
    }
}