/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?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+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behaviour: smooth;
    scroll-padding-top: 3rem;
    font-family: var(--font-family-1);
}

/* Variables */
:root{
    --text-color: black;
    --bg-color: #F9F6EE;
    --bg-red: #aa101b;
    --bg-red-highlight: #bb3f48;
    --font-family-1: "Raleway", sans-serif;
}

body{
    color: var(--text-color);
    background: var(--bg-color);
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

img{
    width: 100%;
}

section{
    padding: 3rem 0 2rem;
    background: var(--bg-color);
    position: relative;
}

.container{
    max-width: 1300px;
    margin: auto;
    width: 100%;
}

h1, h2, h3, a, strong{
    text-shadow: 3px 3px 4px black;
}

/* Header */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header{
    background: var(--bg-red);
    box-shadow: 0 1px 4px hsl(0deg 4% 15% / 10%);
    border-bottom: 5px solid var(--bg-red-highlight);
    border-radius: 0px 0px 10px 10px;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 100px;
}

.logo{
    width: 80px;
    height: 40px;
    margin-top: -4rem;
}

.navbar{
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

.nav-link{
    position: relative;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--poppins-font);
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-link::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: white;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-link:hover.nav-link::after{
    width: 100%;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.menu-icon{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
    z-index: 200;
    transition: 0.3s;
    background: var(--bg-color);
    padding: 15px;
    border: 4px solid var(--bg-red-highlight);
    border-radius: 10px;
}

.menu-icon div{
    display: block;
    background: var(--bg-red);
    height: 2.5px;
    width: 28px;
    transition: 0.3s;
}

.move .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
}

.move .line2{
    opacity: 0;
}

.move .line3{
    transform: rotate(45deg) translate(-5px, -5px);
}

.heading h1{
    font-size: 4rem;
    text-align: center;
    position: relative;
    color: var(--bg-red);
    text-shadow: 3px 3px 4px var(--bg-red-highlight);
}

/* Scroll Top */
.scroll-top{
    position: fixed;
    bottom: 1.5rem;
    right: -100%;
    padding: 10px;
    font-size: 20px;
    border-radius: 0.5rem;
    background: var(--bg-red);
    color: var(--bg-color);
    border: 4px solid var(--bg-red-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 90%;
}

.scroll-top:hover{
    background: var(--bg-red-highlight);
    opacity: 100%;
    transition: 0.3s all linear;
}

.scroll-top.active{
    right: 1.5rem;
    transition: 0.3s;
}

/*--------------------------------------------------- Index Web Page Start -------------------------------------------*/
/* Home Section */
.home, .registration-home, .member-home, .students-home, .events-home{
    min-height: 600px;
    background: var(--bg-color);
    position: relative;
    height: 950px;
    margin-top: 2rem;
}

.monitor-hero-bg{
    position: absolute;
    width: 99.1vw;
    min-height: 100%;
    border-radius: 0px 0px 10px 10px;
    margin-top: -3rem;
}

.monitor-hero-bg-tablet{
    display: none;
}

.monitor-hero-bg-phone{
    display: none;
}


.home-content, .registration-content, .member-home-content, .students-home-content, .events-home-content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-text, .registration-home-text, .member-home-text, .students-home-text, .events-home-text{
    text-align: center;
    margin-top: 25rem;
    color: var(--bg-color);
    text-shadow: 3px 3px 4px black;
}

.home-text h1, .member-home-text h1, .students-home-text h1, .events-home-text h1{
    font-size: 4rem;
}

.home-text p{
    font-size: 2.25rem;
}

/* About Section */
.about{
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 400px;
    height: 900px;
    position: relative;
    background: var(--bg-color);
}

.mission-vision{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 775px;
    position: relative;
    background: var(--bg-color);
}

.about-content, .founder-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-content p, .fees-description p{
    position: relative;
    text-align: center;
    font-size: 1rem;
    margin-right: 3rem;
    margin-left: 3rem;
    margin-top: 2rem;
}

.founder-statement p{
    margin-top: 2rem;
}

.statements{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.vision-statement, .mission-statement{
    display: flex;
    flex-direction: column;
    height: 550px;
    align-items: center;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px 0 var(--bg-red),
              0 6px 20px 0 var(--bg-red);
    width: 30%;
    transition: 0.3s;
}

.vision-statement:hover, .mission-statement:hover{
    transform: scale(1.02);
}

.vision-img, .mission-img{
    width: 350px;
    height: 290px;
    position: absolute;
    margin-top: 2rem;
    border-radius: 25px 25px;
}

.vision-img{
    transform: rotate(-4deg);
    box-shadow: 10px 10px 0px var(--bg-red);
}

.mission-img{
    transform: rotate(4deg);
    box-shadow: -10px 10px 0px var(--bg-red);
}

.vision-logo, .mission-logo{
    position: relative;
    width: 125px;
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 3rem;
    border: 3px solid var(--bg-red);
}

.vision-logo{
    background-image: linear-gradient(to bottom, var(--bg-color) 25%, var(--bg-red));
    margin-top: 17.5rem;
}

.mission-logo{
    background-image: linear-gradient(to bottom, var(--bg-color) 25%, var(--bg-red));
    margin-top: 17.5rem;
}

.mission-content h1, .vison-content h1{
    font-size: 2.5rem;
    color: var(--bg-red);
    text-shadow: 3px 3px 4px var(--bg-red-highlight);
    margin-bottom: 0.5rem;
}

.mission-content p, .vison-content p{
    font-size: 1rem;
    margin-right: 0.75rem;
    margin-left: 0.75rem;
}

.about-container{
    display: flex;
    justify-content: space-between;
    position: relative;
    background: var(--bg-red);
    border: 4px solid var(--bg-red-highlight);
    border-radius: 1rem;
    margin-top: 1rem;
}

.box, .founder-box{
    padding: 8px 8px;
    background: var(--bg-red-highlight);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    transition: 0.3s;
    box-shadow: 4px 4px 0px rgb(0, 0, 0, 5);
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.box img{
    max-width: 900px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 0.25rem;
}

.box:hover{
    transform: scale(1.05);
}

.swiper-pagination-bullet{
    width: 8px !important;
    height: 8px !important;
    border-radius: 0.2rem !important;
    background: var(--bg-red-highlight) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active{
    width: 1.5rem !important;
    background: var(--bg-color) !important;
}

/* FAQs */
.faqs{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 700px;
    position: relative;
    background: var(--bg-color);
}

.faqs .heading h1{
    margin-top: 5rem;
}

.faqs-img{
    display: flex;
    position: absolute;
    height: 600px;
    border-radius: 0.75rem;
}

.faqs-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, auto));
    place-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    border-radius: 0.25rem;
}

.faqs-box{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px 0 var(--bg-red),
              0 6px 20px 0 var(--bg-red);
    backdrop-filter: blur(4.6px);
    -webkit-backdrop-filter: blur(4.6px);
    width: 230px;
    gap: 1rem;
}

.faqs-text h2{
    color: var(--bg-color);
    text-shadow: none;
    font-size: 1.5rem;
}

.faqs-box a{
    padding: 17px 20px;
    background: #008E00;
    border-radius: 1.5rem;
    text-shadow: none;
    transition: 0.3s;
    color: white;
    margin-top: 0.75rem;
    border: 4px solid #32a432;
}

.faqs-box a strong{
    font-size: 1.25rem;
    padding: 5px 12.5px;
    background: var(--bg-color);
    border: 2px solid #32a432;
    border-radius: 50%;
    margin-left: 0.5rem;
    text-shadow: none;
    color: black;
}

.faqs-box a:hover{
    transform: scale(1.05);
    background: #32a432;
}

.faqs-box img{
    width: 100px;
    position: relative;
}

/* Location */
.location{
    position: relative;
    height: 700px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1.5rem;
}

.address i{
    font-size: 2.5rem;
    padding: 6px;
    background: var(--bg-red);
    border-radius: 0.5rem;
    color: var(--bg-color);
    border: 3px solid var(--bg-red-highlight);
    margin-right: 0.75rem;
    text-shadow: none;
}

.address{
    position: relative;
    color: var(--text-color);
    font-size: 2rem;
    border-bottom: 4px solid var(--bg-red);
    animation-name: pulse;
    animation: pulse-scale 2s infinite;
    animation-timing-function: ease-in-out;
    text-shadow: none;
}

iframe{
    border-radius: 1rem;
    height: 500px;
    width: 100%;
    padding: 10px 10px;
    background: var(--bg-red);;
    box-shadow: 8px 18px 0px rgb(0, 0, 0, 5);
}

/*--------------------------------------------------- Index Web Page End ---------------------------------------------*/

/*--------------------------------------------------- Registration Web Page Start ------------------------------------*/

/* Home Section */
.registration-home{
    height: 950px;
}

.registration-home-text h1{
    position: relative;
    font-size: 5rem;
}

/* School Fees Section */

.fees{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 1100px;
    position: relative;
    background: var(--bg-color);
}

.fees-box{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
}

.age-img{
    display: flex;
    flex-direction: columns;
    text-align: center;
    justify-content: center;
}

.age-img p{
    margin-top: 4rem;
    font-size: 2rem;
}

.fees-content img, .transport-content img{
    width: 150px;
}

.fees-content{
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fees-age h1{
    text-shadow: none;
}

.fees-price, .transport-price, .uniform-price{
    font-size: 1.1rem;
    padding: 10px 25px;
    background: var(--bg-color);
    border-radius: 20px;
    margin-top: 1rem;
    box-shadow: 0 4px 8px 0 #bad8e1, 0 6px 20px 0 #bad8e1;
}

#year-01{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #CFF1FB);
    box-shadow: 0 4px 8px 0 #bad8e1, 0 6px 20px 0 #bad8e1;
}

#year-02{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #D1D1F9);
    box-shadow: 0 4px 8px 0 #bcbce0, 0 6px 20px 0 #bcbce0;
}

#year-03{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #D6FBE4);
    box-shadow: 0 4px 8px 0 #c0e1cd, 0 6px 20px 0 #c0e1cd;
}

.transport-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 375px;
    margin-top: 1.5rem;
    border-radius: 20px;
    width: 100%;
}

.transport-location{
    margin-bottom: 2rem;
    margin-right: 2rem;
    margin-left: 2rem;
}

#transport{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #ffe4a1);
    box-shadow: 0 4px 8px 0 #ffd670, 0 6px 20px 0 #ffd670;
}

/* Uniform Section */
.uniform{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 950px;
    position: relative;
    background: var(--bg-color);
}

.uniform-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.uniform-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
}

.uniform-description{
    margin-right: 2rem;
    margin-left: 2rem;
    font-size: 1rem;
}

.uniform-content img{
    height: 400px;
    border-radius: 20px 20px 0px 0px;
}

.uniform-name h1{
    margin-top: 0.5rem;
    height: 50px;
    text-shadow: none;
}

.uniform-price{
    height: 40px;
    margin-top: 0rem;
    margin-bottom: 1rem;
}

#uniform-01{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #6ca0dc);
    box-shadow: 0 4px 8px 0 #5680b0, 0 6px 20px 0 #5680b0;
}

#uniform-02{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #696969);
    box-shadow: 0 4px 8px 0 #3B3B3B, 0 6px 20px 0 #3B3B3B;
}

#uniform-03{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #F8C8DC);
    box-shadow: 0 4px 8px 0 #dfb4c6, 0 6px 20px 0 #dfb4c6;
}

.contact-content{
    justify-content: center;
    align-items: center;
}

.registration-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 2px;
    position: relative;
    box-sizing: border-box;
    margin-top: 5rem;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(0deg, transparent 50%, rgba(0,0,0,0.02) 50%);
    background-size: 100% 4px;
    pointer-events: none;
}

form{
    color: black;
    font-size: 1.2rem;
    border-radius: 25px;
    padding: 30px;
    gap: 0.5rem;
    text-align: center;
    width: 90%;
}

.input-data{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #aaa;
    outline: none;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    padding: 5px 0;
}

.checkbox{
    display: flex;
    flex-direction: columns;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    gap: 4rem;
    color: black;
}

.checkbox input[type="checkbox"]{
    width: 20px;
    height: 20px;
    margin-top: 1.5rem;
}

button{
    background: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 10px 20px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 3rem;
    width: 90%;
}

form button:hover{
    transition: 0.3s ease;
    box-shadow: 10px 6px 0.5px rgb(0, 0, 0, 5);
}

.form-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    width: 80%;
    margin-bottom: 1rem;
}

.form-text a{
    color: black;
    text-shadow: none;
    font-weight: 800;
    border-bottom: 1px solid black;
}

/*--------------------------------------------------- Registration Web Page End --------------------------------------*/

/*--------------------------------------------------- Members Web Page Start -----------------------------------------*/

/* Members*/
.founder{
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 400px;
    height: 800px;
    position: relative;
    background: var(--bg-color);
}

.founder-box img{
    max-width: 900px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 0.25rem;
}

.members{
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    height: 1950px;
}

.staff{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-right: 2rem;
    margin-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.members-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
}

.members-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem;
    text-transform: uppercase;
    height: 420px;
    transition: 0.3s;
    background: var(--bg-red-highlight);
    box-shadow: 0 2px 4px 0 var(--bg-red),
              0 3px 10px 0 var(--bg-red);
    transition: 0.3s;
}

.members-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 4px 8px 0 var(--bg-red),
              0 6px 20px 0 var(--bg-red);
}

.members-box img{
    width: 100%;
    height: 420px;
    object-position: top;
    border-radius: 10px;
    transition: all 0.3s;
}

.members-img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.title-price{
    position: relative;
    text-align: center;
    margin-top: -6rem;
    width: 300px;
    height: 80px;
    border-radius: 1rem;
    padding: 5px;
    border: 2px solid var(--bg-red);
    background: var(--bg-red-highlight);
    transition: all 0.3s;
}

.title-price:hover{
    background: var(--bg-red);
    margin-top: -7rem;
    height: 85px;
}

.title-price h3{
    font-size: 1.15rem;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: white;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    text-shadow: none;
    color: white;
    margin-top: 0.5rem;
}

.title-price h2{
    font-size: 1.1rem;
    text-shadow: none;
    color: white;
}

/*--------------------------------------------------- Members Web Page Ends ------------------------------------------*/

/*--------------------------------------------------- Events Web Page Start ------------------------------------------*/

/* Happy Day Section  */
.happyday{
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-color);
    height: 3850px;
    margin-top: 8rem;
    gap: 2rem;
}

.happyday-text p, .pj-text p, .museum-text p, .heritage-text p, .graduation-text p, .career-text p{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
}

.happyday-container, .pj-container, .museum-container, .heritage-container, .graduation-container, .career-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 0.75rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
    position: relative;
    background: var(--bg-color);
}

.happyday-box, .pj-box, .museum-box, .heritage-box, .graduation-box, .career-box{
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    border-radius: 12.5px;
    transition: 0.3s;
}

.happyday-box:hover, .pj-box:hover, .museum-box:hover, .heritage-box:hover, .graduation-box:hover, .career-box:hover{
    transform: scale(1.05);
}

.happyday-box{
    background: var(--bg-red);
    box-shadow: 0 2px 4px 0 var(--bg-red),
              0 3px 10px 0 var(--bg-red);
}

.pj-box{
   background: #bad8e1;
    box-shadow: 0 2px 4px 0 #CFF1FB,
              0 3px 10px 0 #CFF1FB;
}

.museum-box{
   background: #8D6944;
    box-shadow: 0 4px 6px 0 #AC8053,
              0 5px 12px 0 #AC8053;
}

.heritage-box{
   background: #589b5e;
    box-shadow: 0 2px 4px 0 #37613b,
              0 3px 10px 0 #37613b;
}

.graduation-box{
   background: #4169e1;
    box-shadow: 0 2px 4px 0 #3454b4,
              0 3px 10px 0 #3454b4;
}

.career-box{
   background: #ffe4a1;
    box-shadow: 0 2px 4px 0 #ffd670,
              0 3px 10px 0 #ffd670;
}

.happyday-box img, .pj-box img, .museum-box img, .heritage-box img, .graduation-box img, .career-box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

/* PJ Day Section  */
.pj{
    display: flex;
    flex-direction: column;
    height: 1500px;
    margin-top: 8rem;
}

/* Museum Section */
.museum{
    display: flex;
    flex-direction: column;
    height: 1850px;
    margin-top: 8rem;
}

/* Heritage Day Trip*/
.heritage{
    display: flex;
    flex-direction: column;
    height: 2500px;
    margin-top: 8rem;
}

/* Graduation */
.graduation{
    display: flex;
    flex-direction: column;
    height: 1500px;
    margin-top: 8rem;
}

/* Career Day */
.career{
    display: flex;
    flex-direction: column;
    height: 2550px;
    margin-top: 8rem;
}

/*--------------------------------------------------- Events Web Page End --------------------------------------------*/

/*--------------------------------------------------- Students Web Page Start ----------------------------------------*/

/* About Section */
.students-about{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 300px;
    position: relative;
    background: var(--bg-color);
}

.eagle .heading, .rabbit .heading, .ostrich_a .heading, .ostrich_b .heading, .lion .heading{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    align-items: center;
    padding: 10px 10px 10px 10px;
    border-radius: 20px;
}

.eagle .heading, .eagle-content .teachers, .eagle-content .leaders, .eagle-content .members-box .box-text .title-price{
    background: #ffd670;
}

.rabbit .heading, .rabbit-content .teachers, .rabbit-content .leaders, .rabbit-content .members-box .box-text .title-price{
    background: #ff9248;
}

.ostrich_a .heading, .ostrich-a-content .teachers, .ostrich-a-content .leaders, .ostrich-a-content .members-box .box-text .title-price{
    background: #198c19;
}

.ostrich_b .heading, .ostrich-b-content .teachers, .ostrich-b-content .leaders{
    background: var(--bg-red);
}

.lion .heading, .lion-content .teachers, .lion-content .leaders, .lion-content .members-box .box-text .title-price{
    background: #4169e1;
}

.rabbit .heading h1, .eagle .heading h1, .ostrich_a .heading h1, .ostrich_b .heading h1, .lion .heading h1{
    color: white;
}

.eagle .heading img, .rabbit .heading img, .ostrich_a .heading img, .ostrich_b .heading img, .lion .heading img{
    width: 75px;
    margin-left: 1rem;
    border-radius: 20px;
}

.eagle-content, .rabbit-content, .ostrich-a-content, .ostrich-b-content, .lion-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 750px;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rabbit-content{
    height: 500px;
    margin-top: -1rem;
}

.eagle-content .teachers, .rabbit-content .teachers, .ostrich-a-content .teachers, .ostrich-b-content .teachers, .lion-content .teachers{
    display: flex;
    flex-direction: columns;
    gap: 1rem;
    padding: 20px 20px 20px 20px;
    margin-bottom: -1rem;
    border-radius: 20px;
}

.eagle-content .leaders, .ostrich-a-content .leaders, .ostrich-b-content .leaders, .lion-content .leaders{
    display: flex;
    flex-direction: columns;
    gap: 1rem;
    padding: 20px 20px 20px 20px;
    border-radius: 20px;
}

.eagle-content .learner-box img, .ostrich-a-content .learner-box img, .ostrich-b-content .learner-box img, .lion-content .learner-box img{
    width: 100%;
    height: 200px;
    object-position: center;
    border-radius: 10px;
    transition: all 0.3s;
}

.eagle-content .teachers img, .eagle-content .learner-box img{
    box-shadow: 0 4px 8px 0 #ffe4a1,
              0 6px 20px 0 #ffe4a1;
}

.ostrich-a-content .teachers img, .ostrich-a-content.learner-box img{
    box-shadow: 0 4px 8px 0 #147014,
              0 6px 20px 0 #147014;
}

.ostrich-b-content .teachers img, .ostrich-b-content.learner-box img{
    box-shadow: 0 4px 8px 0 var(--bg-red-highlight),
              0 6px 20px 0 var(--bg-red-highlight);
}

.lion-content .teachers img, .lion-content.learner-box img{
    box-shadow: 0 4px 8px 0 #3454b4,
              0 6px 20px 0 #3454b4;
}

.leader-tag{
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    background: var(--bg-color);
    margin-top: 0.5rem;
}

/*--------------------------------------------------- Students Web Page End ------------------------------------------*/

/* Footer Content */
.footer{
    border-top: 5px solid var(--bg-red-highlight);
    background: var(--bg-red);
    margin-top: 7rem;
    border-radius: 10px 10px 0px 0px;
}

.footer-content{
    display: flex;
    flex-direction: space-beteeen;
    gap: 10%;
    justify-content: center;
    color: white;
}

.footer-content h1{
    margin-bottom: 1rem;
}

.footer-box, .links{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-box a{
    font-size: 1rem;
    color: white;
}

.footer-digits, .footer-mail, .footer-location{
    margin-bottom: 1rem;
    text-align: center;
}

.footer-logo{
    width: 200px;
    border-radius: 1.5rem;
    padding-top: 25px;
    border: 4px solid var(--bg-color-highlight);
    background-color: var(--bg-color);
    padding-right: 20px;
    padding-left: 20px;
    transition: 0.3s;
}

.footer-logo:hover{
    background-color: var(--bg-color-highlight);
    border: 4px solid var(--bg-color);
    transform: scale(1.05);
}

.social .bx{
    padding: 10px 10px;
    background: var(--bg-color);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    border: 2px solid white;
    color: var(--bg-red);
    transition: 0.3s;
    text-shadow: none;
    margin-top: 1rem;
}

.social .bx:hover{
    background: var(--bg-color-highlight);
    color: white;
    transform: scale(1.2);
}

.copyright{
    font-size: 1.2rem;
}

.copy{
    text-align: center;
    border-top: 2px solid var(--bg-color);
    background: var(--bg-red);
    padding-top: 1.5rem;
}

.design, .copyright{
    background: var(--bg-red);
    font-size: 1rem;
    color: white;
    text-shadow: 3px 3px 4px black;
}

.designer, .designer a{
    text-align: center;
    padding: 30px 5px;
    color: white;
}

.designer strong{
    border-bottom: 1px solid var(--bg-color);
}

/* ================================================================================================================================================================================================================*/
/* Making Responsive */

@media (max-width: 1450px){

    .container {
        width: 90%;
        margin: 0 auto;
    }

    .monitor-hero-bg{
        margin-top: -5.5rem;
    }

    /* Index Page */
    .about{
        margin-top: -5rem;
    }

    .vision-statement, .mission-statement{
        margin-top: 2rem;
    }

    .vision-img, .mission-img{
        width: 300px;
        height: 280px;
    }

    /* Faqs Section */
    .faqs .heading h1{
        margin-bottom: 2rem;
    }

    /* School Section */
    /* Uniform Section  */
    .uniform .heading h1{
        margin-bottom: 1.5rem;
    }

    /* Events Section */
    /* Happy Day Section  */
    .happyday{
        height: 2900px;
    }

    /* PJ Day Section  */
    .pj{
        height: 1250px;
    }

    /* Museum Section */
    .museum{
        height: 2000px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 2600px;
    }

    /* Graduation */
    .graduation{
        height: 1700px;
    }

    /* Student Section */
    .eagle-content, .rabbit-content, .ostrich-a-content, .ostrich-b-content, .lion-content{
        margin-top: 1rem;
    }

    /* Founder Section */
    .founder{
        margin-top: -3rem;
        height: 925px;
    }

    .title-price{
        height: 90px;
        width: 275px;
    }

    .title-price:hover{
        height: 95px;
    }

    .title-price h3{
        margin-bottom: 0.5rem;
        margin-top: 0.2rem;
    }

    /* Students Page */
    .students-about{
        height: 250px;
        margin-top: -2rem;
    }

    /* Happy Day Section  */
    .happyday{
        margin-top: -3rem;
        height: 3950px;
    }

    /* PJ Day Section  */
    .pj{
        height: 1600px;
    }

    /* Museum Section */
    .museum{
        height: 1950px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 2600px;
    }

    /* Graduation */
    .graduation{
        height: 1700px;
    }

    /* Career Day */
    .career{
        height: 2550px;
    }

    .eagle-content, .rabbit-content, .ostrich-a-content, .ostrich-b-content, .lion-content{
        height: 750px;
    }

    .rabbit-content{
        height: 440px;
    }

}

@media (max-width: 1386px){

    /* Team Section */
    /* Founder Section */
    .members{
        height: 2000px;
    }

    .members-box{
        height: 420px;
    }

    .members-box img{
        height: 420px;
    }

}


@media (max-width: 1373px){

    .home-text, .registration-home-text, .member-home-text, .students-home-text, .events-home-text{
        margin-top: 21rem;
    }

    /* Events Section */
    /* Happy Day Section  */
    .happyday{
        margin-top: -3rem;
        height: 5275px;
    }

    /* PJ Day Section  */
    .pj{
        height: 1950px;
    }

    /* Museum Section */
    .museum{
        height: 2300px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 3300px;
    }

    /* Graduation */
    .graduation{
        height: 2050px;
    }

    /* Career Day */
    .career{
        height: 3200px;
    }

}

@media (max-width: 1317px){

    .monitor-hero-bg{
        margin-top: -6rem;
    }

    .about{
        margin-top: -6rem;
    }

    /* Faqs Section */
    .faqs{
        height: 1000px;
    }

    .faqs .heading h1{
        margin-bottom: 2rem;
        margin-top: 5rem;
    }

    .faqs-img{
        height: 925px;
    }

    .faqs-box{
        height: 330px;
        width: 230px;
    }

    /* Founder Section */
    .founder{
        margin-top: -3rem;
        height: 900px;
    }

    .title-price{
        height: 90px;
        width: 245px;
    }

    .title-price:hover{
        height: 95px;
    }

    .title-price h3{
        margin-bottom: 0.5rem;
        margin-top: 0.2rem;
        font-size: 1.1rem;
    }

    .title-price h2{
        font-size: 0.95rem;
    }

}

@media (max-width: 1286px){

    /* Header */
    header{
        top: 0px;
    }

    .menu-icon{
        display: flex;
        margin-right: 1rem;
    }

    .navbar{
        position: absolute;
        top: 95%;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-right: 1px solid var(--bg-red-highlight);
        border-left: 1px solid var(--bg-red-highlight);
        border-bottom: 1px solid var(--bg-red-highlight);
        border-radius: 10px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
        background: var(--bg-red);
    }

    header ul{
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: var(--bg-blue);
    }

    .open-menu{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
        width: 99%;
    }

    header .nav .navbar ul li ul{
        position: relative;
        left: 0;
        right: 0;
        width: 200px;
        margin-top: 0.5rem;
    }

    .nav-link{
        display: block;
        margin: 0.8rem 0;
        height: 30px;
    }

    .monitor-hero-bg{
        display: none;
    }

    .monitor-hero-bg-tablet{
        display: block;
        position: absolute;
        width: 99.1vw;
        min-height: 100%;
        border-radius: 0px 0px 10px 10px;
        margin-top: -5rem;
    }

    /* Index Section */
    .vision-logo{
        margin-top: 15.5rem;
    }

    .mission-logo{
        margin-top: 15.5rem;
    }

    /* Team Section */
    /* Members*/
    .members{
        height: 2100px;
    }

}

@media (max-width: 1104px){

    .vision-img, .mission-img{
        width: 250px;
        height: 250px;
    }

    /* Index Section */
    .vision-logo{
        margin-top: 14rem;
    }

    .mission-logo{
        margin-top: 14rem;
    }

    /* School Fees Section */
    .fees{
        height: 1800px;
    }

    .fees-box, .uniform-box{
        flex-direction: column;
    }

    /* Events Section */
    /* Museum Section */
    .museum{
        height: 2400px;
    }

    /* Team Section */

    /* Founder Section */
    .founder{
        height: 975px;
    }

    /* Members*/
    .members{
        height: 2150px;
    }

}

@media (max-width: 1081px){

    /* Footer Section */
    .footer-content{
        flex-direction: column;
        gap: 2rem;
    }

    /* Events Section */
    /* Career Day */
    .career{
        height: 3300px;
    }

}


@media (max-width: 1042px){

    /* About Section */
    .about{
        height: 950px;
    }

    .box img{
        height: 400px;
    }

    /* Event Section */
    /* PJ Day Section  */
    .pj{
        height: 1350px;
    }

    /* Career Day */
    .career{
        height: 3350px;
    }

}

@media (max-width: 1035px){

    /* Team Section */
    /* Members*/
    .members{
        height: 3100px;
    }

}

@media (max-width: 1026px){

    .monitor-hero-bg-tablet{
        margin-top: -6rem;
    }

    .home-text, .registration-home-text, .member-home-text, .students-home-text, .events-home-text{
        margin-top: 20rem;
    }

    .home-text h1, .member-home-text h1, .students-home-text h1, .events-home-text h1{
        font-size: 3.75rem;
    }

    .home-text p{
        font-size: 2rem;
    }

    /* Events Section */
    .happyday-box img, .pj-box img, .museum-box img, .heritage-box img, .graduation-box img, .career-box img{
        height: 250px;
    }

    /* Happy Day Section  */
    .happyday{
        margin-top: -3rem;
        height: 6500px;
    }

    /* PJ Day Section  */
    .pj{
        height: 2300px;
    }

    /* Museum Section */
    .museum{
        height: 2950px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 4350px;
    }

    /* Graduation */
    .graduation{
        height: 2700px;
    }

    /* Career Day */
    .career{
        height: 4250px;
    }

    /* Students Page */
    .students-about{
        margin-top: -3rem;
    }

}

@media (max-width: 990px){

    .monitor-hero-bg-tablet{
        display: none;
    }

    .monitor-hero-bg-phone{
        display: block;
        position: absolute;
        width: 99.1vw;
        min-height: 100%;
        border-radius: 0px 0px 10px 10px;
    }

    .about{
        height: 900px;
    }

    .heading h1{
        font-size: 3.5rem;
    }

    /* Mission Section */
    .mission-vision{
        height: 1200px;
    }

    .statements{
        flex-direction: column;
        gap: 0rem;
    }

    .vision-statement, .mission-statement{
        width: 80%;
        height: 480px;
    }

    /* Location Section */
    iframe{
        height: 475px;
        width: 100%;
    }

    /* School Section */
    /* School Fees Section */
    .fees{
        height: 1850px;
    }

    /* Unifrom Section */
    .uniform{
        height: 875px;
    }

    .uniform-content img{
        height: 300px;
    }

    .uniform-name h1{
        font-size: 1.5rem;
        height: 45px;
    }

    .uniform-price{
        height: 45px;
    }

    /* Students Section */
    .eagle-content .leaders, .ostrich-a-content .leaders, .ostrich-b-content .leaders, .lion-content .leaders{
        flex-direction: column;
    }

    .eagle-content, .rabbit-content, .ostrich-a-content, .ostrich-b-content, .lion-content{
        height: 1000px;
    }

    .lion-content{
        height: 1550px;
    }

    .rabbit-content{
        height: 425px;
    }

    /* Students Page */
    .students-about{
        margin-top: 2rem;
    }

    /* Founder Section */
    .members{
        height: 2550px;
    }

    .title-price{
        height: 90px;
        width: 260px;
    }

    .title-price:hover{
        height: 95px;
    }

    .title-price h3{
        margin-bottom: 0.5rem;
        margin-top: 0.2rem;
        font-size: 1.1rem;
    }

    .title-price h2{
        font-size: 1rem;
    }

}

@media (max-width: 868px){

    /* Founder Section */
    .members{
        height: 3500px;
    }

    .title-price{
        height: 90px;
        width: 240px;
    }

}

@media (max-width: 805px){

    /* About Section */
    .about{
        height: 950px;
    }

    .box img{
        height: 375px;
    }

    /* Regsitration Section */
    /* Uniform Section */
    .uniform-name h1{
        font-size: 1.4rem;
    }

}

@media (max-width: 785px){
    /* Faqs Section */
    .faqs{
        height: 1250px;
    }

    .faqs .heading h1{
        margin-top: 3rem;
    }

    .faqs-img{
        height: 1150px;
    }

    .faqs-box{
        height: 300px;
        width: 230px;
    }
}

@media (max-width: 767px){

    .heading h1{
        font-size: 3rem;
    }

    .home-text h1, .member-home-text h1, .students-home-text h1, .events-home-text h1{
        font-size: 3.5rem;
    }

    .home-text p{
        font-size: 1.8rem;
    }

    /* Location */
    .address i{
        font-size: 2rem;
    }

    .address{
        font-size: 1.5rem;
    }

    /* School Section */
    /* School Fees Section */
    .fees{
        height: 1700px;
    }

    .age-img p{
        margin-top: 2rem;
    }

    .fees-content img, .transport-content img{
        width: 100px;
    }

    .fees-price, .transport-price, .uniform-price{
        font-size: 1rem;
    }

    .transport-location{
        margin-bottom: 2rem;
        margin-right: 1rem;
        margin-left: 1rem;
        font-size: 1rem;
    }

    /* Unifrom Section */
    .uniform{
        height: 1400px;
    }

    .uniform-box{
        grid-template-columns: repeat(2, 1fr);
    }

    /* Happy Day Section  */
    .happyday{
        margin-top: -3rem;
        height: 6550px;
    }

    /* PJ Day Section  */
    .pj{
        height: 2350px;
    }

    /* Museum Section */
    .museum{
        height: 2950px;
    }

    /* Career Day */
    .career{
        height: 4300px;
    }

    /* Students Page */
    .students-about{
        margin-top: -3rem;
    }

}

@media (max-width: 684px){

    .registration-home-text{
        margin-top: 25rem;
    }

    .registration-home-text h1{
        font-size: 4rem;
    }

}

@media (max-width: 679px){

    /* Events Section */
    /* Happy Day Section  */
    .happyday{
        margin-top: -3rem;
        height: 12750px;
    }

    /* PJ Day Section  */
    .pj{
        height: 4350px;
    }

    /* Museum Section */
    .museum{
        height: 5250px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 8000px;
    }

    /* Graduation */
    .graduation{
        height: 4700px;
    }

    /* Career Day */
    .career{
        height: 8000px;
    }

    /* Students Section */
    .eagle-content .teachers, .rabbit-content .teachers, .ostrich-a-content .teachers, .ostrich-b-content .teachers, .lion-content .teachers{
        flex-direction: column;
    }

    .rabbit-content, .ostrich-a-content, .ostrich-b-content{
        height: 1450px;
    }

    .lion-content{
        height: 1550px;
    }

    .rabbit-content{
        height: 875px;
    }

    .eagle-content{
        height: 1000px;
    }

    /* Founder Section */
    .founder{
        height: 900px;
    }

    .founder-box img{
        height: 400px;
    }

    /* Students Page */
    .students-about{
        height: 300px;
    }

}

@media (max-width: 573px){

    /* Founder Section */
    .members{
        height: 6150px;
    }
}

@media (max-width: 560px){

    .home-text, .registration-home-text, .member-home-text, .students-home-text, .events-home-text{
        margin-top: 20rem;
    }

    .home-text h1, .member-home-text h1, .students-home-text h1, .events-home-text h1{
        font-size: 3.25rem;
    }

    .home-text p{
        font-size: 1.5rem;
    }

    /* About Section */
    .about{
        height: 875px;
    }

    .about-content p, .fees-description p{
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .box img{
        height: 300px;
    }

    /* Mission Statment */
    .mission-vision{
        height: 1250px;
    }

    .vision-img, .mission-img{
        width: 300px;
        height: 200px;
    }

    .vision-statement, .mission-statement{
        width: 80%;
        height: 500px;
    }

    .vision-logo{
        margin-top: 12.5rem;
    }

    .mission-logo{
        margin-top: 12.5rem;
    }

    .mission-content h1, .vison-content h1{
        font-size: 2rem;
    }

    /* Registration Section */
    .registration-home-text{
        margin-top: 26rem;
    }

    .registration-home-text h1{
        font-size: 3.5rem;
    }

    /* Unifrom Section */
    .uniform{
        height: 1900px;
    }

    .uniform-box{
        grid-template-columns: repeat(1, 1fr);
    }

    /* Events Section */
    /* Happy Day Section  */
    .happyday{
        margin-top: -3rem;
        height: 12800px;
    }

    /* PJ Day Section  */
    .pj{
        height: 4400px;
    }

    /* Museum Section */
    .museum{
        height: 5250px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 8100px;
    }

    /* Graduation */
    .graduation{
        height: 4800px;
    }

    /* Career Day */
    .career{
        height: 8050px;
    }

    /* Students Page */
    .students-about{
        height: 350px;
    }

}

@media (max-width: 517px){

    .monitor-hero-bg-phone{
        margin-top: -6rem;
    }

    /* Faqs Section */
    .faqs{
        height: 1750px;
    }

    .faqs .heading h1{
        margin-top: 3rem;
    }

    .faqs-img{
        height: 1650px;
    }

    .faqs-box{
        height: 280px;
        width: 110%;
    }

    /* Students Page */
    .students-about{
        margin-top: -2rem;
    }

}

@media (max-width: 508px){

    .home-text, .registration-home-text, .member-home-text, .students-home-text, .events-home-text{
        margin-top: 18rem;
    }

    .home-text h1, .member-home-text h1, .students-home-text h1, .events-home-text h1{
        font-size: 3rem;
    }

    .heading h1{
        font-size: 2.5rem;
    }

    /* About Section */
    .about{
        height: 800px;
    }

    .box img{
        height: 250px;
    }

    /* Registration Section */
    .registration-home-text{
        margin-top: 25rem;
    }

    .registration-home-text h1{
        font-size: 3.5rem;
    }

    /* Unifrom Section */
    .uniform{
        height: 1950px;
    }

    /* Museum Section */
    .museum{
        height: 5350px;
    }

    /* Graduation */
    .graduation{
        height: 4850px;
    }

}

@media (max-width: 477px){

    .about{
        margin-top: -8rem;
        height: 825px;
    }

    /* School Section */
    .fees{
        margin-top: -5rem;
    }

    /* Team Section */
    /* Members*/
    .members{
        height: 5850px;
    }

    /* Happy Day Section  */
    .happyday{
        margin-top: -15rem;
        height: 12800px;
    }

    /* PJ Day Section  */
    .pj{
        height: 4400px;
    }

    /* Museum Section */
    .museum{
        height: 5300px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 8100px;
    }

    /* Graduation */
    .graduation{
        height: 4800px;
    }

    /* Career Day */
    .career{
        height: 8050px;
    }

    /* Founder Section */
    .members{
        height: 6250px;
    }


}

@media (max-width: 429px){

    /* Events Section */
    /* Happy Day Section  */
    .happyday{
        height: 9450px;
    }

    /* Graduation */
    .graduation{
        height: 4900px;
    }

    /* Career Day */
    .career{
        height: 8200px;
    }

    /* Founder Section */
    .founder{
        margin-top: -8rem;
        height: 900px;
    }

    .founder-box img{
        height: 350px;
    }

    /* Happy Day Section  */
    .happyday{
        margin-top: -15rem;
        height: 12800px;
    }

}

@media (max-width: 425px){

    /* School Section */
    /* School Fees Section */
    .fees{
        height: 1800px;
    }

    .transport-location{
        font-size: 0.9rem;
    }

    /* Unifrom Section */
    .uniform{
        height: 2000px;
    }

}

@media (max-width: 415px){

    /* About Section */
    .about{
        height: 850px;
    }

    /* Mission Statment */
    .mission-vision{
        height: 1200px;
    }

    .vision-statement, .mission-statement{
        height: 500px;
        width: 100%;
    }

    .vision-img, .mission-img{
        width: 250px;
        height: 200px;
    }

    /* Registration Section */
    /* School Section */
    .fees{
        margin-top: -6rem;
    }

    /* Unifrom Section */
    .uniform{
        height: 2100px;
    }

    .checkbox{
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        gap: 1.5rem;
        color: black;
        margin-top: 0.5rem;
        align-items: center;
        margin-left: 0.5rem;
    }

    /* Events Section */
    /* Happy Day Section  */
    .happyday{
        margin-top: -15rem;
        height: 12800px;
    }

    /* Students Page */
    .students-about{
        margin-top: -4rem;
        height: 275px;
    }

}

@media (max-width: 407px){

    .monitor-hero-bg-phone{
        margin-top: -10rem;
    }

    .home-text, .registration-home-text, .member-home-text, .students-home-text, .events-home-text{
        margin-top: 15rem;
    }

    .home-text h1, .member-home-text h1, .students-home-text h1, .events-home-text h1{
        font-size: 2.8rem;
    }

    .home-text p{
        font-size: 1.4rem;
    }

    .about{
        margin-top: -14rem;
    }

    /* Registration Section */
    /* School Section */
    .fees{
        margin-top: -12rem;
    }

    /* Team Section */
    /* Members*/
    .members{
        height: 6300px;
    }

}

@media (max-width: 393px){

    .about{
        height: 950px;
        margin-top: -15rem;
    }

    /* Registration Section */
    .registration-home-text{
        margin-top: 19rem;
    }

    .registration-home-text h1{
        font-size: 3rem;
    }

    /* School Section */
    .fees{
        margin-top: -13rem;
    }

    /* Team Section */
    /* Members*/
    .members{
        height: 6000px;
    }

    /* Mission Statment */
    .mission-vision{
        height: 1250px;
    }

    .students-about{
        height: 350px;
    }

    .eagle-content .teachers, .rabbit-content .teachers, .ostrich-a-content .teachers, .ostrich-b-content .teachers, .lion-content .teachers{
        padding: 10px 10px 10px 10px;
    }

    .eagle-content .leaders, .ostrich-a-content .leaders, .ostrich-b-content .leaders, .lion-content .leaders{
        padding: 10px 10px 10px 10px;
    }

    .eagle-content .members-box, .rabbit-content .members-box, .ostrich-a-content .members-box, .ostrich-b-content .members-box, .lion-content .members-box{
        height: 350px;
    }

    .eagle-content .members-box img, .rabbit-content .members-box img, .ostrich-a-content .members-box img, .ostrich-b-content .members-box img, .lion-content .members-box img{
        height: 350px;
    }

    .ostrich-a-content, .ostrich-b-content{
        height: 1260px;
    }

    .lion-content{
        height: 1450px;
    }

    .rabbit-content{
        height: 710px;
    }

    .eagle-content{
        height: 900px;
    }

    /* Founder Section */
    .founder{
        margin-top: -12rem;
        height: 950px;
    }

    /* Members*/
    .members{
        height: 6400px;
    }

    /* Students Page */
    .students-about{
        margin-top: -7rem;
    }

    /* Happy Day Section  */
    .happyday{
        margin-top: -12rem;
        margin-top: -15rem;
        height: 12900px;
    }

    /* PJ Day Section  */
    .pj{
        height: 4500px;
    }

    /* Museum Section */
    .museum{
        height: 5450px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 8200px;
    }

    /* Graduation */
    .graduation{
        height: 4950px;
    }

    /* Career Day */
    .career{
        height: 8300px;
    }

}

@media (max-width: 350px){

    .home-text, .registration-home-text, .member-home-text, .students-home-text, .events-home-text{
        margin-top: 13rem;
    }

    .home-text h1, .member-home-text h1, .students-home-text h1, .events-home-text h1{
        font-size: 2.6rem;
    }

    .home-text p{
        font-size: 1.3rem;
    }

    .about{
        height: 1000px;
    }

    /* Registration Section */
    .registration-home-text{
        margin-top: 17rem;
    }

    .registration-home-text h1{
        font-size: 2.8rem;
    }

    /* School Section */
    .fees{
        margin-top: -14rem;
    }

    /* Unifrom Section */
    .uniform{
        height: 2150px;
    }

    /* Museum Section */
    .museum{
        height: 5525px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 8300px;
    }

    /* Graduation */
    .graduation{
        height: 5050px;
    }

    /* Team Section */
    /* Members*/
    .members{
        height: 6450px;
    }

    /* Founder Section */
    .founder{
        margin-top: -16rem;
        height: 1100px;
    }

    /* Happy Day Section  */
    .happyday{
        margin-top: -14rem;
    }

}

@media (max-width: 330px){

    .monitor-hero-bg-phone{
        margin-top: -11rem;
    }

    .about{
        margin-top: -18rem;
    }

    /* Registration Section */
    /* School Section */
    .fees{
        margin-top: -18rem;
    }

    /* Unifrom Section */
    .uniform{
        height: 2200px;
    }

    /* Events Section */
    /* Happy Day Section  */
    .happyday{
        margin-top: -12rem;
    }

    /* PJ Day Section  */
    .pj{
        height: 4600px;
    }

    /* Heritage Day Trip*/
    .heritage{
        height: 8300px;
    }

    /* Graduation */
    .graduation{
        height: 5000px;
    }

    /* Career Day */
    .career{
        height: 8300px;
    }

    .happyday-container, .pj-container, .museum-container, .heritage-container, .graduation-container, .career-container{
        grid-template-columns: repeat(auto-fit, minmax(270px, auto));
    }

    /* Team Section */
    /* Founder Section */
    .founder{
        height: 1000px;
    }

    /* Members*/
    .members{
        height: 6450px;
    }

    .members-container{
        grid-template-columns: repeat(auto-fit, minmax(270px, auto));
    }

    /* Students Section */
    .students-about{
        height: 375px;
    }

    /* Students Page */
    .students-about{
        margin-top: -8rem;
        height: 275px;
    }

}

@media (max-width: 318px){

    /* Registration Section */
    /* Unifrom Section */
    .uniform{
        height: 2250px;
    }

    /* Museum Section */
    .museum{
        height: 5550px;
    }

    /* Career Day */
    .career{
        height: 8350px;
    }

}
