@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap');
* {
    font-family: 'Poppins';
}
.titleSection {
    padding: 20px 20px;
}
.subHeading {
    font-family: 'Poppins';
    font-size: 30px;
}
.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.socials img {
    padding: 10px;
}
.isVisible {
    animation: appear 1s;
    opacity: 1;
}
.animate {
    opacity: 0;
    animation-fill-mode: forwards;
}
.section {
    margin: 0 200px 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.section .heading {
    font-family: 'Arapey';
    font-size: 120px;
    margin: 0;
}
.section p {
    font-size: 20px;
    margin: 30px 0;
    text-align: center;
}
.section .img {
    overflow: hidden;
    height: 370px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px #00000020;
}
.section .img img {
    border-radius: 10px;
}
.committeesSection {
    height: min-content;
    padding: 20px;
}
.committeeDetailsSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}
.committeeCardLeft {
    width: 1200px;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #ffffff50;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    margin: 50px;
}
.committeeCardLeft:hover {
    box-shadow: 5px 5px 20px #00000020;
    scale: 1.005;
}
.committeeCardLeft img {
    height: 300px;
}
.committeeCardLeft .content {
    width: 100%;
    padding: 25px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-align: start;
}
.committeeCardLeft .title {
    font-family: 'Arapey';
    font-size: 50px;
}
.committeeCardRight {
    width: 1200px;
    height: 300px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    background-color: #ffffff50;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    margin: 50px;
}
.committeeCardRight:hover {
    box-shadow: 5px 5px 20px #00000020;
    scale: 1.005;
}
.committeeCardRight img {
    height: 300px;
    /* width: 300px; */
}
.committeeCardRight .content {
    width: 100%;
    padding: 25px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    text-align: end;
}
.committeeCardRight .title {
    font-family: 'Arapey';
    font-size: 50px;
}
.committeeCardLeft .links {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
}
.committeeCardRight .links {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
}
.agenda {
    margin-top: 10px;
}
.links {
    align-items: center;
    margin-top: 15px;
}
.links .matrix {
    height: min-content;
    padding: 8px 20px;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 200;
    font-size: 16px;
    background-color: #ff6b00;
    color: #ffffff;
}
.links .bgGuide {
    height: min-content;
    padding: 8px 20px;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 200;
    font-size: 16px;
    background-color: transparent;
    color: #000000;
}
@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width:1200px) {
    .committeeCardLeft {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: min-content;
    }
    .content {
        width: max-content;
        height: 100%;
    }
    .committeeCardRight {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: min-content;
    }
    .committeesSection {
        padding: 0;
    }
    .section {
        padding: 0;
        margin: 0;
    }
}
@media (max-width:1140px) {
    .committeeCardLeft img {
        display: none;
    }
    .committeeCardRight img {
        display: none;
    }
    .content {
        width: 100%;
        border-bottom: 0.5px solid #00000050;
        border-top: 0.5px solid #00000050;
    }
    .titleSection .heading {
        font-size: 50px;
    }
    .content .title {
        font-size: 50px;
    }
}