:root{
    --color_secondary: #E40C2B;
    --color_primary: black;
    --background_dark: #A0AECD;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    background: var(--background_dark);
}

body{
    align-items: center;
    justify-content: center;
}

header{
    height: 60px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    background:none;
}

#logo_primary{
    line-height: 60px;
    margin-left: 40px;
    display: inline-block;
    cursor: pointer;
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
    color: var(--color_secondary);
    font-family: sans-serif;
    background:none;
}

#logo_secondary{
	color: var(--color_primary);
	margin-left: 5px;
    font-family: sans-serif;
    background:none;
    color: white;
}

header:hover{
    #logo_primary{
        color: var(--color_primary);
    }
    #logo_secondary{
        color: var(--color_secondary);
    }
}

.slider{
    position: relative;
    width: 100%;
    height: auto;
}

.slider_slide{
    height: 500px;
    display: none;
    overflow: hidden;
}

.arrow_prev, .arrow_next{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 15px;
    cursor: pointer;
    color: white;
    transition: 0.1s;
    user-select: none;
    background: none;
}

.arrow_prev:hover, .arrow_next:hover{
    color: var(--color_secondary);
}

.arrow_next{
    right:0;
}

.slider_dots{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
    background: none;
}

.dot{
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid #FFF;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
    background: none;
}

.active, .dot:hover{
    border-color: var(--color_secondary);
}

.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade{
    from {opacity: 0.8;}
    to {opacity: 1;}
}

@keyframes fade{
    from {opacity: 0.8;}
    to {opacity: 1;}
}

.slider_text{
    position: absolute;
    color: var(--color_primary);
    letter-spacing: 1px;
    line-height: 35px;
    top: 40%;
    left: 15%;
    animation-name: posi;
    animation-duration: 2s;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    z-index: 1;
    width: 60% ;
    background: none;
    color: white;
}

@-webkit-keyframes posi{
    from {left: 25%}
    to {left: 15%}
}

@keyframes posi{
    from {left: 25%}
    to {left: 15%}
}

.slider_text h1{
    color: var(--color_primary);
    font-size: 80px;
    margin-bottom: 20px;
    font-weight: bold;
    background: none;
    color: white;
}

.slider_text p{
    font-weight: bold;
    font-size: 30px;
    margin: 10px;
    padding: 10px;
    background: none;
}

.place{
    background: none;
    text-transform: uppercase;
    color: var(--color_secondary);
    font-weight: bold;
}

.slider_image{
    transform:  scale(1.5, 1.5);
    -webkit-animation-name: zoomin;
    -webkit-animation-duration: 40s;
    animation-name: zoomin;
    animation-duration: 40s;
}

@keyframes zoomin{
    from {transform: scale(1,1);}
    to {transform: scale(1.5,1.5);}
}

/* info */

.info_row{
    display: flex;
    padding: 15px;
    color: var(--color_primary);
}

.info_line{
    border: 2px solid var(--color_secondary);
    /* margin-left: 10px; */
    width: 2px;
    padding: 0px;
    margin-top: 0px;
    margin-left: 50px;
    margin-right: 20px; 
    /* border-radius: 50%;    */
}

.info_para{
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    margin-right: 20px;
}

.info_section_heading{
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.brand{
    color: var(--color_secondary);
    font-weight: bold;
    font-size: 24px;
}

/* offerings */

.offering_container{
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    position: relative;
    /* width: 1500px; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0px;
}

.offering_container .offering_card{
    position: relative;
    max-width: 500px;
    margin: 5px;
    padding: 10px;
    display: flex;
    /* border: #F92C85 solid; */
}

.offering_container .offering_card .offering_image{
    max-width: 50px;
    flex: 0 0 100px;
    background: var(--background_dark);
}

.offering_container .offering_card .offering_image img{
    max-width: 100%;
    background: var(--background_dark);
}

.offering_container .offering_card .offering_content{
    margin-left: 0px;
    background: var(--background_dark);
}

.offering_container h3{
    background: var(--background_dark);
    font-weight: bold;
}

.offering_container p{
    background: var(--background_dark);
}

.section_heading{
    color: var(--logo-secondary);
    padding-left: 130px;
    padding-top: 40px;
}

.contact_container{
    width: 70%;
    height: 60vh;
    display:flex;
    align-items: center;
    justify-content:center;
    padding: 100px;
}

.contact_left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}


.contact_left hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #FFF;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact_input{
    width: 500px;
    height: 50px;
    border: 1px solid #fff;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: var(--logo-secondary);
    border-radius: 0px;
    font-size: 24px;
}

.contact_left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 0px;
}

.contact_input:focus{
    border: 3px solid #FFF;
}

.contact_input::placeholder{
    color: var(--logo-secondary);
}

.contact_left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 24px;
    color: var(--logo-secondary);
    gap: 10px;
    border: 3px solid;
    border-radius: 0px;
    background: none;
    cursor: pointer;
}

.contact_right img{
    border: 1px solid var(--logo-secondary);
    color: #FFF;
    
}

@media (max-width:450px){
    .contact_input{
        padding: 0px;
        width: 220px;
        font-size: 16px;
        padding-left: 0px;
    }

    .contact_container{
        justify-content: flex-end;
        padding-right: 20px;
        height: 70vh;
    }

    .slider_text h1{
        font-size: 30px;
        line-height: 0px;
        margin-bottom: 10px;
    }


    .slider_text p{
        font-size: 12px;
        margin: 0px;
        line-height: 15px;
    }

    .place{
        padding: 0px;

    }
    .slider_slide{
        height: 250px;
    }

    .info_line{
        margin-left: 10px;
    }

    .arrow_prev, .arrow_next{
        top: 45%;
        font-size: 30px;
    }
}

@media (max-width:628px){
    .contact_input{
        padding: 10px;
        width: 250px;
        font-size: 16px;
        padding-left: 10px;
    }

    #logo_primary{
        line-height: 30px;
        margin-left: 20px;
        display: inline-block;
        cursor: pointer;
        font-size: 25px;
        font-weight: bold;
        margin-top: 10px;
        color: var(--color_secondary);
        font-family: sans-serif;
        background:none;
    }
    
    #logo_secondary{
        color: var(--color_primary);
        margin-left: 5px;
        font-family: sans-serif;
        background:none;
        color: white;
    }
}

/* Cards */
.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 1250px;
    margin: 50px auto;
    padding: 20px;
    gap: 20px;
}

.card-list .card-item {
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
}

.card-list .card-item:hover {
    border: 2px solid #000;
}

.card-list .card-item img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}

.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.card-list .core_team {
    background-color: #F7DFF5; 
    color: #B22485;
}   

.card-list .mentor {
    background-color: #d6f8d6; 
    color: #205c20;
}

.card-item h3 {
    background: none;
    color: var(--logo-primary);
    font-size: 1.438rem;
    margin-top: 28px;
    font-weight: 600;
}

.card-item h2 {
    background: none;
    color: #000;
    font-size: 18px;
    margin-top: 28px;
    font-weight: 500;
    margin: 5px;
}

.card-list .card-item:hover .arrow  {
    background: #000;
    color: #fff; 
}

@media (max-width: 1200px) {
    .card-list .card-item {
        padding: 15px;
    }
}

@media screen and (max-width: 980px) {
    .card-list {
        margin: 0 auto;
    }
}

.footer {
    padding: 1.5rem;
    background: var(--color_secondary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
  }