.header_banner {
    display: flex;
    display: grid;
    place-items: center;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 200%;
}

.header_banner .text-content {
    opacity: 0;
    filter: blur(20px);
    animation: fade_in .6s ease-in forwards;
}

@keyframes fade_in {
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@media screen and (min-width: 768px) {
    .header_banner {
        height: 600px;
        background-size: 170%;
    }
}

@media screen and (min-width: 1024px) {
    .header_banner {
        height: 800px;
        background-size: 100%;
    }
}

.header_banner .text-content {
    color: #fff;
    font-size: clamp(0.83rem, 2rem, 3rem);
    font-weight: 700;
}

/*** marquee ***/
.marquee-container {
    color: #000;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.marquee-container h3 {
    text-align: center;
    color: var(--base-color);
}
@media screen and (min-width: 1024px) {
}

.marquee {
    margin: 30px 0 0 0;
    --gap: 1rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    background-color: #f9f9f9;
    padding: 30px 0;
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-width: 100%;
    gap: var(--gap);
    animation: scroll 20s linear infinite;
}

.marquee__content span img{
    max-width: 200px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}


/** metric **/
.achmnt-metric-container {
    display: flex;
    flex-direction: column;
    background-color: var(--base-color);
    color: #fff;
    text-align: center;
    padding: 5px;
    margin: 100px 0;
}

@media screen and (min-width: 1024px) {
    .achmnt-metric-container {
        flex-direction: row;
        justify-content: space-evenly;
    }
    
}

.achmnt-metric-container .metric {
    padding: 15px;
}

.achmnt-metric-container .line{
    background-color: #fff;
    padding: 1px;
}

.achmnt-metric-container .metric h5 {
    font-size: 3rem;
    font-weight: 700;
}
.achmnt-metric-container .metric div {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 3rem;
    font-weight: 800;
    width: 120px;
}

.achmnt-metric-container .metric p {
    font-size: 1.2rem;
}

/*** who we are***/
.who-we-are {
    margin: 40px 0;
    opacity: 0;
    transform: translateY(30%);
    transition: opacity .5s ease-in, transform .5s ease-in;

}

.who-we-are.active {
  opacity: 1;
  transform: translateY(0);
}

.who-we-are h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--base-color);
}

.who-we-are .img-container {
    border-radius: 4% 0 4% 0;
}

.who-we-are .container .content {
    display: grid;
}
@media screen and (min-width: 1024px) {
    .who-we-are .container .content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.who-we-are .container .content{
    overflow: hidden;
}
.who-we-are .container .content .img-container {
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

}
.who-we-are .container .text-content{
    background: #fbfbfb;
    padding: 30px 20px;
}

/**  directors **/
.m-dir {
    margin-top: 100px;
}
.m-dir h3{
    text-align: center;
    margin: 0 0 50px 0;
    color: var(--base-color);
}

.m-dir .director-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

@media screen and (min-width: 1024px) {

    .m-dir .director-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }
    
}

.director .img-container {
    width: 200px;
    height: 200px;
    background-size: 100%;
    background-position: center;
    border: 5px solid var(--base-color);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 0 10px 0;
}

.director:nth-child(2) .img-container {
    width: 200px;
    height: 200px;
    background-size: 150%;
    background-position: center;
    border: 5px solid var(--base-color);
    border-radius: 50%;
    overflow: hidden;
}


.director p {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--base-color);
    text-align: center;
}
