.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.sb-container {
text-align: center;
}

.about-content {
max-width: 96%;
margin-inline: auto;
padding-block: 30px;
text-align: center;
font-family: Georgia;
}

.about-content p {
font-family: Georgia;
font-weight: 500;
}

:root {
    --marquee-width: 92%;
    --marquee-height: 500px;
    /* --marquee-elements: 12; */
    /* defined with JavaScript */
    --marquee-elements-displayed: 2;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 8.6s);
}

/******* Affiliations Content ***********/


.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    background-color: transparent;
    color: #eee;
    overflow: hidden;
    position: relative;
    margin: auto;
text-align: center;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 6rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, #ffffff6b 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #ffffff6b 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 95%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}


/* .marquee-content:hover {
    animation-play-state: paused;
  } */

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4);
    /* 5rem; */
    white-space: nowrap;
}

.marquee-content li img {
max-width: 600px;
    width: 90%;
    /* height: 100%; */
object-fit: cover;
}


@media (max-width: 1300px) {
:root {
--marquee-height: 440px;
}
    .header_wrapper {
        height: 180px!important;
    }
    .logo {
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        min-height: 100px;
        margin-top: 5px;
    }
    .menu_wrapper {
        width: 100%;
        top: 75px;
        right: 40px;
    }
    .menu ul li a {
        font-size: .75em;
    }

    .menu ul li:hover > ul {
        top: 42px;
    }

}

@media (max-width: 1122px) {
     :root {
        --marquee-width: 600px;
 --marquee-height: 480px;
        --marquee-elements-displayed: 1;
    }
}


@media (max-width: 981px) {
.about-title {
display: none;
}
}

@media (max-width: 600px) {

     :root {
 --marquee-width: 85vw;
        --marquee-elements-displayed:1;
    --marquee-height: 380px;
    }
    .marquee:before,
    .marquee:after {
        width: 5rem;
    }
}

.mobile_logo {
display: none!important;
}