@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&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=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    --primary-color: #FFFFFF;
    --secondary-color: #10479A;
    --secondary-color2: #5380c4;
    --box-shadow-color: #0000002f;
    --primary-font: "Inter", sans-serif;
    --secondary-font: 'Open Sans', sans-serif;
    --third-font: 'Roboto Mono';
}

/* **************************************************************** */
/*teams-section */
.sec-head2 {
    font-family: var(--secondary-font);
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 1rem;
}

.sec-head2 span {
    font-size: 32px;
    font-weight: 900;
}

.teams-section {
    max-width: 1300px;
    margin: auto;
    margin-top: 2rem;
}

.teams-section .teams-container {
    margin-top: 4rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: auto;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
}

.teams-section .teams-container div {
    width: 280px;
    height: fit-content;
}

.teams-section .teams-container div img {
    width: 100%;
    aspect-ratio: 10/8;
    border-radius: 6px 6px 0 0;
    height: max-content;
}

.teams-section .teams-container .c-container {
    padding: 10px;
 
}


.teams-section .teams-container .c-content {
    box-shadow: 0 0 10px var(--box-shadow-color);
    display: grid;
    grid-template-columns: 100%;
    border-radius: 6px;
    height: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.teams-section .teams-container .c-content:hover{
    transform: scale(1.02);
    box-shadow: 0 0 15px var(--box-shadow-color);
}
.teams-section .teams-container .c-content .c-item2 {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.teams-section .teams-container .c-content .c-item2 .title {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

.teams-section .teams-container .c-content .c-item2 .sub-title {
    font-family: var(--primary-font);
    font-size: 14px;
}

.teams-section .teams-container .c-content .c-item2 button {
    background-color: var(--secondary-color);
    border: none;
    width: max-content;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.teams-section .teams-container .c-content .c-item2 .social {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.teams-section .teams-container .c-content .c-item2 .social i {
    font-size: 16px;
    color: #000000;
}

/* .teams-section .teams-container .owl-nav {
    display: none;
    visibility: hidden;
} */
.for-more {
    width: 100%;
    margin: auto;
    text-align: center;
}

.for-more button {
    background-color: var(--secondary-color);
    border: none;
    width: max-content;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.team-hero {
    max-width: 1300px;
    margin: auto;
}

.team-hero .container {
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: content-box;
}

.team-hero .container .sub-container {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.381);
    color: white;
}


.team-hero .container .sub-container .head-text {
    font-family: var(--secondary-font);
    font-size: 56px;
}

.team-hero .container .sub-container .desc-text {
    font-size: 18px;
    font-family: var(--secondary-font);
    max-width: 90%;
    text-align: center;
}

/* Event section 1 */

/* **************************************************************** */

.event-section {
    max-width: 1300px;
    margin: auto;
    margin-top: 2rem !important;
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.event-section .a-container1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-section .a-container .title {
    font-family: var(--secondary-font);
    font-size: 36px;
    font-weight: 900;
    text-align: center;
}

.event-section .a-container .sub-title {
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
}

.event-section .a-container .text {
    font-family: var(--primary-font);
    font-optical-sizing: auto;
    text-align: justify;
    line-height: 24px;
    font-size: 16px;
}

/* Event section 1 */

/* **************************************************************** */

.event-section1 {
    max-width: 1300px;
    margin: auto;
    margin-top: 3rem !important;
    display: flex;
    flex-direction: row;
    grid-template-columns: auto, auto;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.event-section1 .a-container1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-section1 .a-container1 .title {
    font-family: var(--secondary-font);
    font-size: 36px;
    font-weight: 900;
    text-align: left;
}

.event-section1 .a-container1 .sub-title {
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    text-align: left;
}

.event-section1 .a-container1 .text {
    font-family: var(--primary-font);
    font-optical-sizing: auto;
    text-align: justify;
    line-height: 24px;
    font-size: 16px;
}

.event-section1 .a-container1 button {
    background-color: var(--secondary-color);
    border: none;
    width: max-content;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Events Section 2 */
.event-section2 {
    max-width: 1300px;

    margin: auto;
    margin-top: 3rem !important;
    display: flex;
    flex-direction: row;
    grid-template-columns: auto, 480px !important;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.event-section2 .a-container1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-section2 .a-container1 .title {
    font-family: var(--secondary-font);
    font-size: 36px;
    font-weight: 900;
    text-align: left;
}

.event-section2 .a-container1 .sub-title {
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    text-align: left;
}

.event-section2 .a-container1 .text {
    font-family: var(--primary-font);
    font-optical-sizing: auto;
    text-align: justify;
    line-height: 24px;
    font-size: 16px;
}

.event-section2 .a-container1 button {
    background-color: var(--secondary-color);
    border: none;
    width: max-content;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.event-image {
    max-width: 450px;
    aspect-ratio: 16/10;
    border-radius: 0 10px 0 10px;

}

/* Alumni section */
.sponsors-section {
    margin-top: 3rem;
}

.sponsors-section .head {
    font-family: var(--secondary-font);
    font-size: 36px;
    line-height: 38px;
    font-weight: 900;
}

.sponsors-section .owl-carousel5 {
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.sponsors-section .owl-carousel5 .owl-nav {
    display: none;
    visibility: hidden;
}

.sponsors-section .owl-carousel5 .sponsor-card {
    aspect-ratio: 3/2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}

.sponsors-section .owl-carousel5 .sponsor-card img {
    max-width: 50%;
    margin: auto;
    background-blend-mode: color;

}

.sponsors-section .owl-carousel5 .sponsor-card .name {
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 600;

}

.sponsors-section .owl-carousel5 .sponsor-card .designation {
    font-family: var(--primary-font);
    font-size: 12px;
}

.sponsors-section .owl-carousel5 .sponsor-card .social {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.sponsors-section .owl-carousel5 .sponsor-card .social i {
    font-size: 16px;
    color: #000000;
}