@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Bitter&family=Island+Moments&family=Rubik+Marker+Hatch&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abyssinica+SIL&family=Courgette&family=Kaushan+Script&family=Merriweather:wght@300&family=Roboto+Slab:wght@300&family=Rubik:wght@300&family=Staatliches&display=swap');

:root{
    --primary-color: #00CEF3;
    --secondary-color: #FFC416;
    --third-color: #FA0107;
    --font-main:"Rubik Marker Hatch";
    --font-second:"Akaya Telivigala"
}
body{
    font-family: var(--font-second);
}
.admission-header {
    position: relative;
    background-image: url('../img/6.jpg'); /* Replace 'path/to/your/image.jpg' with the actual path to your background image */
    background-size: cover;
    background-position: center;
    color: #fff; /* Set the text color to white or any other contrasting color */
    text-align: center;
    padding: 100px 0; /* Adjust the padding as needed */
    font-family: var(--font-second);
}

.admission-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(84, 188, 223, 0.3); /* Adjust the overlay color and transparency */
}
.admission-header h2{
    font-family: var(--font-main);
    font-size: 4rem;
}
.admission-header h3{
    color: white;
    font-size: 2rem;
}
@media (max-width: 776px) {
    .admission-header h2 {
        font-family: var(--font-main);
        font-size: 1.5rem;
    }

    .admission-header h3 {
        color: white;
        font-size: 1rem;
    }
}
.admission-main{
    margin-bottom: 50px;
}

.admission-main h2{
    color: #00CEF3;
}
.admission-main p{
    color: gray;
}
.admission-main span{
    font-weight: bold;
    font-size: 18px;
    color: #FA0107;
}

.ls-admsn-content{
    padding: 2rem;
    color: gray;
}

.ls-admsn-content span{
    color: #FFC416;
    font-weight: bold;
    font-size: 42px;
}
.ls-admsn-content h2{
    color: #00CEF3;
}
.ls-admsn-content img{
    border-radius: 0px 60px 0px 60px;
    box-shadow: 10px 10px 10px #00CEF3;
}
.ls-admsn-form form {
    max-width: 600px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.ls-admsn-form{
    position: relative;
    background-image: url('../img/admission.png'); /* Replace 'path/to/your/image.jpg' with the actual path to your background image */
    background-size: cover;
    background-position: center;
   
    
    padding: 100px 0; /* Adjust the padding as needed */
    font-family: var(--font-second);
}
.ls-form-content{
    background-color: rgb(0, 0, 0,0.4);
    padding: 1rem;
}
.ls-form-content h2{
    color: #FFC416;
    margin-bottom: 20px;
}
.ls-admsn-form .form-group {
    margin-bottom: 15px;
}

.ls-admsn-form label {
    display: block;
    margin-bottom: 8px;
    color: #00CEF3;
}

.ls-admsn-form input, select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    color: #FFC416;
    border: 1px solid #FFC416;
    border-radius: 4px;
}

.ls-admsn-form button {
    background-color: #FFC416;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.ls-admsn-form button:hover {
    background-color: #FA0107;
}