*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'lato';
}


:root{
    --primary:#1377C9;
    --secondry:#FFFFFF;
    --bg-gray:#F9F9F9;
    --bg-2:#E2ECF4;
    --bg-black:#343A40;
    --text-color:#4C4C4C;
    --text-hover:#353535;
    --text-course:#191970;
    --text-color2:#7F7F7F;
    --table:#F6F6F6;

}
body{
    background-color:var(--bg-2);
}

.marquee{
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    overflow: hidden;
    height: 60px;
    z-index: 99;
    background-color: white;
    
}
 .marquee img{
    width: 200px;
    animation: scroll linear 5s infinite;
    position: absolute;
    left: 100%;
    gap: 20px;
    
}
@keyframes scroll {  
    to{
        left: -200px;
    }
}
.marquee img:nth-child(1){
    animation-delay: calc(5s / 8 * (8 - 1) * -1);
}
.marquee img:nth-child(2){
    animation-delay: calc(5s / 8 * (8 - 2) * -1);
}
.marquee img:nth-child(3){
    animation-delay: calc(5s / 8 * (8 - 3) * -1);
}
.marquee img:nth-child(4){
    animation-delay: calc(5s / 8 * (8 - 4) * -1);
}
.marquee img:nth-child(5){
    animation-delay: calc(5s / 8 * (8 - 5) * -1);
}
.marquee img:nth-child(6){
    animation-delay: calc(5s / 8 * (8 - 6) * -1);
}
.marquee img:nth-child(7){
    animation-delay: calc(5s / 8 * (8 - 7) * -1);
}
.marquee img:nth-child(8){
    animation-delay: calc(5s / 8 * (8 - 8) * -1);
}

.title{
    width: 100%;
    font-size: 30px;
    display: flex;
    text-align: center;
    margin-top: 90px;
    font-weight: 900;
    justify-content: center;
    color: red;
}
.title p{
    width: 65%;
}
.title2{
    margin-top: 60px;
}
.title >p{
    color: var(--text-course);
}

.container-form{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}
.contactc-title{
    width: 100%;
    padding:16px 40px;
    text-transform: capitalize;
    text-align: center;
    font-weight: 700;
    font-size: 20px;

}

.contact-banner{
    width: 100%;
    height: 400px;

}
.contact-banner img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode:multiply;
}
.contact-cntnr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:16px 80px;
}


.contact-form{
    width: 40%;
    padding: 40px;
    border:1px solid var(--secondry);
    box-shadow:inset  1px 1px 15px var(--bg-2),1px 1px 15px 10px var(--bg-2);
    background-color: var(--secondry);
    border-radius: 15px;
    

}

.contact-form form input,select,button{
    width: 100%;
    font-size: 16px;
    padding: 8px 14px;
    color:var(--text-color2) ;
    border:1px solid var(--bg-2);
    outline: none;
    border-radius: 4px;
}
.contact-form form textarea{
    width: 100%;
    height: 150px;
    font-size: 18px;
    border:1px solid var(--bg-2) ;
    outline: none;
    padding: 8px 14px;
    color: var(--text-color2);
}

.contact-form div{
    margin-top: 16px;
}
.contact-form p label{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 0px;
    color: var(--primary);
}
.contact-form p label span{
    color: red;
}
.contact-form button{
    background-color: var(--secondry);
    color: var(--primary);
    font-weight: 900;
    border: 2px solid var(--primary);
    font-size: 20px;
}

.contact-form button:hover{
    background-color: var(--primary);
    color: var(--secondry);
}

.form-img{
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-img div{
    width: 100%;
    display: flex;
    justify-content: center;
    

}
.form-img div img{
    width: 80%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(2px 2px 10px var(--bg-2) );
    border-radius: 20px;
}

.imgbox img{
    position: absolute;
    top: 300px;
    animation: imgs .5s ease infinite;
    scale: 0;
    width: 100px;
}
@keyframes imgs {
    0%{
        opacity: 0;
        scale: 0;
    }
    100%{
        opacity: 1;
        scale: 1;
    }
    
}
.imgbox .img1{
    right: 0;
    animation-delay: 1s;
    top: 345px;
    z-index: 99;
    right: 250px;
}
.imgbox .img2{
    top: 300px;
    z-index: 99;
    animation-delay: 1.5s;
    left: 200px;
}

.para{
    width: 300px;
    height: 400px;
    position: absolute;
    top: 400px;
    border-radius: 10px;
    font-size: 20px;
    right: 40px;
    border: 2px solid navy;
    padding: 16px;
    background-color: var(--text-course);
    color: white;
    line-height: 2;
    box-shadow: 2px 2px 15px black;
    font-weight: 600;
    text-align: justify;
}
.para mark{
    color: red;
    text-decoration: underline;
    background-color: white;
    padding: 4px 6px;
    right: 40px;
}

.para2 {
    left: 40px;
    font-size: 16px;
    text-align: left;
    padding: 0px;
}
.para2 p{
    border-radius: 10px;
    text-align: center;
    color: var(--text-course);
    font-weight: 700;
    width: 100%;
    background-color: var(--secondry);
}

.crs li{
    color: yellow;
    list-style-position: inside;
    padding: 8px 16px;
    
}
.crs{
    filter: 2px 2px 5px var(--secondry);
    margin-top: 14px;
}
.enrol{
    position: absolute;
    top: 270px;
    left: 42%;
}
.enrol img{
    width: 200px;
}

.gender{
    display: flex;
    width: 100%;
    border: 2px solid var(--bg-2);
    padding: 16px 8px;
}





.whatsapplogo{
    width: 100%;
    position: relative;

}
.whatsapplogo img{
    width: 170px;
    position: fixed;
    z-index: 999;
    top: 60px;
    padding: 16px;
    animation: whatsapp ease 1.5s infinite;
}
@keyframes whatsapp {
    50%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0px);
    }
    
}

.whatsapplogo .wh2{
    right: -40px;
}
.whatsapplogo .wh1{
    left: -40px;
}


.add-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-course);
    padding: 16px;
    margin-top: 20px;
}

.add-container .address p{
    font-size: 20px;
    color: var(--secondry);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: left;
    
}
.address .add2{
    flex-direction: column;
    /* text-align: left; */
}
.add2 p{
    text-align: left;
}

.address div{
    display: flex;
    align-items: left;
    line-height: 2;
    justify-content: left;
    text-align: left;
}
.address div a{
    color: var(--secondry);
    font-weight: 900;
    text-decoration: none;
    font-size: 20px
}


.add-container .address img{
    width: 60px;
}

.admain{
    width: 100%;
    background-color: var(--text-course);
}

.frame{
    width: 100%;
    display: flex;
    justify-content: center;
}
.frame iframe{
    width: 80%;
    height: 40vw;
    padding: 16px;

}