/* CSS variables for theme colors */
:root {
  /* Dark theme colors (default) */
  --accent: #c10000;
  --accent-secondary: #c10000;
  --accent-hover: #e60000;
}

/* Light theme colors (for future implementation) */
@media (prefers-color-scheme: light) {
  :root {
    --accent: #ae44ff;
    --accent-secondary: #ae44ff;
    --accent-hover: #c766ff;
  }
}

body {
    background-color: #001111;
    overflow-x: hidden;
    color: #fff;
}

.teams {
    width: 100%;
    /* height: 800px; */
    /* height: auto; */
}

.swiper-container {
    width: inherit;
    height: 650px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.year-label {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 80px;
    font-weight: 300;
    font-family: 'Bahnschrift Condensed', 'Arial Narrow', sans-serif;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 10px;
    z-index: 10;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* .one {
    background: url();
    background-size: cover;
}

.two {
    background: url();
    background-size: cover;
}

.three {
    background: url();
    background-size: cover;
} */

h1 {
    width: inherit;
    color: white;
    text-align: center;
    text-transform: uppercase;
    padding: 50px;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 4px;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 2;
}

h1 {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

h1[data-scroll="in"] {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: opacity 0.5s ease-out 0.3s, -webkit-transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.3s, -webkit-transform 0.5s ease-out 0.5s;
    -o-transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
}



.on-load {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
    -o-transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}

.red {
    color: var(--accent);
}

.arrow {
    width: inherit;
    margin-top: -100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 2;
}

.arrow a {
    color: white;
    text-align: center;
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.motive {
    background: url('./assets/bottom landscape.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    width: 100vw;
    font-size: 2rem;
    text-align: center;
    margin: 0 auto;
    margin-top: -70px;
    padding-bottom: 30px;
}

.motive p {
    padding-top: 100px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.motive p[data-scroll="in"] {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: opacity 0.5s ease-out 0.3s, -webkit-transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.3s, -webkit-transform 0.5s ease-out 0.5s;
    -o-transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
}

.vip {
    width: 100%;
    margin: 30px auto;
    font-weight: 200;
    letter-spacing: 2px;
}

.vip img {
    height: 325px;
    /* adjust the value to your liking */
    object-fit: cover;
    width: 100%;
}

/* .vip .row .col-6 {
    height: 70vh;
} */

.founder,
.mentor,
.faculty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    padding-right: 30px;
}

.founder[data-scroll="in"],
.mentor[data-scroll="in"],
.faculty[data-scroll="in"] {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: opacity 0.5s ease-out 0.6s, -webkit-transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.6s, -webkit-transform 0.5s ease-out 0.5s;
    -o-transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
}

/* .mentor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
            transform: translateX(-20px);
    padding-right: 30px;
}

.mentor[data-scroll="in"] {
    opacity: 1;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transition: opacity 0.5s ease-out 0.6s, -webkit-transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.6s, -webkit-transform 0.5s ease-out 0.5s;
    -o-transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
} */

.vip .name {
    padding-top: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width: 992px) {
    .vip .name {
        font-size: 1.4rem;
    }
}

.vip .name:hover {
    color: white;
    text-decoration: none;
}

.vip .designation {
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.vip img {
    border-radius: 40px;
    width: 80%;
    /* filter: grayscale(100%);
    transition: filter 0.3s ease-out;
    margin-bottom: 30px; */
}

.vip img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    -webkit-transition: -webkit-filter 0.5s ease-out;
    transition: -webkit-filter 0.5s ease-out;
    -o-transition: filter 0.5s ease-out;
    transition: filter 0.5s ease-out;
    transition: filter 0.5s ease-out, -webkit-filter 0.5s ease-out;
}

/* .vip .row img{
  transform: scale(0.2);
} */


/* .options{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.options div{
  padding: 10px 40px;
  border-radius: 25px;
  color: white;
  margin: 20px;
  letter-spacing: 5px;
  background-color: rgba(255, 255, 255, 0.1) ;
}
.options div:hover{
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  color: white;
  font-weight: 600;
}
.options .active{
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
} */

.section2019 {
    text-align: center;
    font-weight: 150;
    font-size: 3rem;
    letter-spacing: 15px;
    padding: 40px;
    opacity: 0.7;
}

.container-fluid {
    width: 95%;
    margin-bottom: 60px;
}

.indiv {
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
}

@media(max-width: 1165px) {
    .indiv {
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }
}

.col-3 {
    background-size: contain;
    background-repeat: no-repeat;
}

.indiv .name {
    font-size: 1.8rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.indiv .name:hover {
    color: white;
}

/* .indiv{
    opacity: 0;
    transform: translateY(20px);
}
.indiv[data-scroll="in"] {
    opacity: 1;
    transform: translateX(0px);
    transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.5s;
} */
.indiv .designation {
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 20px;
    padding-top: 5px;
}

.indiv img {
    border-radius: 35px;
    -webkit-transform: translateY(0px) scale(1);
    -ms-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -o-transition: filter 0.3s ease-out, transform 0.3s ease-out;
    transition: filter 0.3s ease-out, transform 0.3s ease-out;
    transition: filter 0.3s ease-out, transform 0.3s ease-out, -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
    margin-bottom: 15px;
}

.indiv:hover img {
    -webkit-transform: translateY(-15px) scale(1.05);
    -ms-transform: translateY(-15px) scale(1.05);
    transform: translateY(-15px) scale(1.05);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    border-radius: 35px;
    -webkit-transition: -webkit-filter 0.5s ease-out, -webkit-transform 0.3s ease-out;
    transition: -webkit-filter 0.5s ease-out, -webkit-transform 0.3s ease-out;
    -o-transition: filter 0.5s ease-out, transform 0.3s ease-out;
    transition: filter 0.5s ease-out, transform 0.3s ease-out;
    transition: filter 0.5s ease-out, transform 0.3s ease-out, -webkit-filter 0.5s ease-out, -webkit-transform 0.3s ease-out;

}

.container-fluid .y2018 {
    display: none;
}

.container-fluid .y2017 {
    display: none;
}

.container-fluid .y2019 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.special {
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out 0.1s, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out 0.1s, -webkit-transform 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    color: lightgrey;
    padding-top: 10px;
}

@media(max-width: 1165px) {
    .special {
        font-size: 15px;
    }

    .indiv .name {
        font-size: 1.6rem;
    }

    .indiv .designation {
        font-size: 1.2rem;
    }
}

.indiv:hover .special {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out 0.1s, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out 0.1s, -webkit-transform 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

@media (max-width: 1404px) {
    .teams h1 {
        font-size: 80px;
        padding-top: 30px;
    }
}

@media (max-width: 1181px) {
    .teams h1 {
        font-size: 60px;
    }
}

@media (max-width: 850px) {
    .teams h1 {
        font-size: 50px;
    }

    .year-label {
        font-size: 60px;
        bottom: 20px;
        left: 30px;
    }

    .motive {
        font-size: 1.5rem;
    }

    .vip .name {
        font-size: 20px;
    }

    .vip .designation {
        font-size: 0.9rem;
    }

    .vip img {
        border-radius: 30px;
        width: 110%;
    }

    .mentor,
    .founder {
        padding: 0 20px;
    }

    .indiv {
        padding-bottom: 0;
    }

    .indiv img {
        border-radius: 30px;
        width: 110%;
    }

    .indiv:hover img {
        border-radius: 30px;
    }

    .indiv .name {
        font-size: 20px !important;
    }

    .indiv .designation {
        font-size: 12px !important;
    }

    .indiv .special {
        font-size: 10px !important;
        padding: 0;
    }
}

@media (max-width: 675px) {
    .teams h1 {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .year-label {
        font-size: 45px;
        bottom: 15px;
        left: 20px;
    }

    .arrow {
        display: none;
    }

    .motive {
        margin-top: -50px;
        font-size: 1.3rem;
    }

    .motive p {
        padding-top: 60px;
    }

    .vip .name {
        font-size: 20px;
    }

    .vip .designation {
        font-size: 0.8rem;
    }

    .vip img {
        border-radius: 30px;
        width: 90%;
    }

    .mentor,
    .founder {
        padding: 0 20px;
    }

    .indiv {
        padding-bottom: 0;
    }

    .indiv img {
        border-radius: 30px;
        width: 130%;
    }

    .indiv:hover img {
        border-radius: 30px;
    }

    .indiv .name {
        font-size: 20px !important;
    }

    .indiv .designation {
        font-size: 12px !important;
    }

    .indiv .special {
        font-size: 10px !important;
        padding: 0;
    }
}

@media (max-width: 575px) {
    .teams h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .year-label {
        font-size: 35px;
        bottom: 10px;
        left: 15px;
    }

    .motive {
        margin-top: -35px;
        font-size: 1rem;
    }

    .motive p {
        padding-top: 60px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 30px !important;
    }

    .vip .name {
        font-size: 20px;
    }

    .vip .designation {
        font-size: 0.9rem;
    }

    .vip img {
        border-radius: 30px;
        width: 90%;
    }

    .mentor,
    .founder {
        padding: 0 15px;
    }

    .indiv {
        padding-bottom: 0;
    }

    .indiv img {
        border-radius: 30px;
        width: 110%;
    }

    .indiv:hover img {
        border-radius: 30px;
    }

    .indiv .name {
        font-size: 20px !important;
    }

    .indiv .designation {
        font-size: 15px !important;
    }

    .indiv .special {
        font-size: 12px !important;
        padding: 5px 0;
    }
}

@media (max-width: 400px) {
    .teams h1 {
        font-size: 25px;
        letter-spacing: 2px;
    }

    .year-label {
        font-size: 30px;
        bottom: 8px;
        left: 12px;
    }

    .motive {
        margin-top: -40px;
        font-size: 0.9rem;
    }

    .motive p {
        padding-top: 50px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 25px !important;
    }

    .vip .name {
        font-size: 12px;
    }

    .vip .designation {
        font-size: 0.8rem;
    }

    .vip img {
        border-radius: 30px;
        width: 90%;
    }

    .mentor,
    .founder {
        padding: 0 15px;
    }

    .indiv {
        padding-bottom: 0;
    }

    .indiv img {
        border-radius: 30px;
        width: 110%;
    }

    .indiv:hover img {
        border-radius: 30px;
    }

    .indiv .name {
        font-size: 20px !important;
    }

    .indiv .designation {
        font-size: 12px !important;
    }

    .indiv .special {
        font-size: 8px !important;
        padding: 0;
    }
}