/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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');

/* Variables */
:root{
    --text-color: black;
    --bg-color: #F9F6EE;
    --bg-red: #aa101b;
    --bg-red-highlight: #bb3f48;
    --font-family-1: "Fira Sans", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behaviour: smooth;
    scroll-padding-top: 3rem;
    font-family: var(--font-family-1);
}

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%;
}

/* 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;
}

/* Drop Down Function */
.nav ul{
    list-style: none;
    position: absolute;
    display: none;
    background: transparent;
}

.nav ul li{
    padding-top: 5px;
    float: none;
    height: 70px;
    width: 200px;
    padding: 25px 10px 10px 10px;
    background-color: var(--bg-red);
    text-align: left;
    border: 1px solid var(--bg-red-highlight);
    border-radius: 5px;
}

.nav li:hover ul{
    display: block;
}

#link-images{
    display: flex;
    flex-direction: columns;
    gap: 0.75rem;
}

#link-images img{
    width: 40px;
    margin-top: -11px;
    padding: 5px;
    background: var(--bg-red-highlight);
    border-radius: 10px;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 115px;
}

.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: 3rem;
    text-align: center;
    position: relative;
    color: var(--bg-red);
    text-shadow: 3px 3px 4px var(--bg-red-highlight);
}

/*--------------------------------------------------- Index Web Page Start -------------------------------------------*/
/* Home Section */
.home{
    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{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-text{
    text-align: center;
    margin-top: 25rem;
    color: var(--bg-color);
    text-shadow: 3px 3px 4px black;
}

.home-text h1{
    font-size: 4rem;
}

.home-text p{
    font-size: 2.25rem;
}

/* About Section */
.about, .mission-vision, .about-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    background: var(--bg-color);
}

.about{
    height: 850px;
}

.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-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    width: 90%;
}

.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{
    width: 100%;
    height: 425px;
    object-fit: cover;
    object-position: center;
    border-radius: 0.25rem;
}

.swiper-scrollbar-drag{
    height: 4px !important;
    border-radius: 0.2rem !important;
    background: var(--bg-red-highlight) !important;
    opacity: 1 !important;
}

.swiper-scrollbar-drag-active{
    width: 1.5rem !important;
    background: var(--bg-color) !important;
}

.mission-vision{
    height: 730px;
    gap: 8rem;
}

.about-content p, .fees-description p{
    position: relative;
    text-align: center;
    font-size: 1rem;
    margin: 2rem 4rem 1rem 4rem;
}

.statements{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.outline{
    position: absolute;
    border: 15px solid var(--bg-red-highlight);
    height: 50%;
    width: 900px;
    border-radius: 10px;
}

.statement-box{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    width: 350px;
    border-radius: 0.5rem;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    transition: 0.3s;
    background-image: linear-gradient(to bottom, var(--bg-red-highlight) 0%, var(--bg-color) 70%);
    border-top: 6px solid var(--bg-red);
}

.statement-box .heading{
    margin-top: 9rem;
}

.statement-box img{
    width: 325px;
    height: 275px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    margin-top: -22rem;
    position: absolute;
}

#vision-statement h1{
    margin-top: 11rem;
}

.statement-box p{
    font-size: 1rem;
    margin: 1rem 1rem 1rem 1rem;
}

/* FAQs */
.faqs{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 800px;
    position: relative;
    background: var(--bg-color);
}

.faqs .heading h1{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.faqs-container{
    height: 600px;
    width: 99.9%;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 10px;
    border: 2px solid #ccc;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    background-image: url('/static/images/about-01.jpeg');
}

.faqs-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    place-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 11.5rem;
    border-radius: 0.25rem;
}

.faqs-box{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 280px;

    background: rgba(170, 16, 27, 0.4);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.2px);
    -webkit-backdrop-filter: blur(4.2px);
    border: 1px solid rgba(170, 16, 27, 0.28);

    width: 230px;
    border-bottom: 5px solid var(--bg-red);
    border-right: 5px solid var(--bg-red);
}

.faqs-text{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--bg-color);
    text-shadow: none;
}

.faqs-text h2{
    font-size: 1.5rem;
}

.faqs-text p{
    font-size: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

.faqs-box a{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 80%;
    background: #008E00;
    border-radius: 100px 25px 100px 20px;
    text-shadow: none;
    transition: 0.3s;
    color: white;
    border: 4px solid #32a432;
}

.faqs-box a div{
    font-size: 1.25rem;
    width: 30px;
    height: 30px;
    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;
    border-radius: 10px;
}

.faqs-box img{
    width: 125px;
    position: absolute;
    margin-top: -19rem;
}

/* Location */
.location{
    position: relative;
    height: 750px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-box{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    gap: 0.65rem;
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact-info i{
    font-size: 50px;
    color: var(--bg-red);
}

.contact-info h1{
    font-size: 1.75rem;
    text-shadow: none;
}

.contact-info p{
    font-size: 1rem;
    margin: 0 0.5rem 0 0.5rem;
}

.contact-info a{
    width: 80%;
    padding: 10px 0 10px 0;
    border-radius: 10px;
    margin-top: 0.5rem;
    background: var(--bg-red);
    color: white;
    transition: all 0.3s;
    border: 2px solid var(--bg-red-highlight);
}

.contact-info a:hover{
    transform: scale(1.05);
    box-shadow: 0 2px 4px 0 var(--bg-red), 0 3px 10px 0 var(--bg-red);
}

iframe{
    position: absolute;
    width: 100%;
    height: 525px;
    margin-top: 7rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*--------------------------------------------------- Registration Web Page Start ------------------------------------*/
/* School Fees Section */
.fees{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 900px;
    position: relative;
    background: var(--bg-color);
    gap: 1rem;
}

.fees-box{
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, auto));
    justify-content: center;
    gap: 1rem;
}

.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-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.fees-content{
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 260px;
    gap: 0.25rem;
}

.fees-price, .transport-price, .uniform-price, .after-care-price{
    font-size: 1rem;
    padding: 10px 25px;
    background: var(--bg-color);
    border-radius: 12.5px;
}

#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-01 .fees-price{
    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-02 .fees-price{
    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;
}

#year-03 .fees-price{
    box-shadow: 0 4px 8px 0 #c0e1cd, 0 6px 20px 0 #c0e1cd;
}

#after-care{
    background-image: linear-gradient(to bottom, var(--bg-color) 5%, #f6b26b);
    box-shadow: 0 4px 8px 0 #f7c188, 0 6px 20px 0 #f7c188;
}

#after-care .fees-price{
    box-shadow: 0 4px 8px 0 #f7c188, 0 6px 20px 0 #f7c188;
}

.transport-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    border-radius: 20px;
    width: 96.5%;
    gap: 0.75rem;
}

.transport-text{
    margin: 0 2rem 0 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;
}

#transport .fees-price{
    box-shadow: 0 4px 8px 0 #ffd670, 0 6px 20px 0 #ffd670;
}

/* Uniform Section */
.uniform{
    display: flex;
    flex-direction: column;
    height: 775px;
    position: relative;
    background: var(--bg-color);
}

.uniform-container{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.uniform-box{
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    justify-content: center;
    gap: 1rem;
    border-radius: 15px;
}

.uniform-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    height: 450px;
}

.uniform-description{
    margin: 0 2rem 0 2rem;
    font-size: 1rem;
}

.uniform-content img{
    height: 97%;
    width: 97%;
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
}

.uniform-text{
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 110px;
    justify-content: center;
    align-items: center;
}

.uniform-name h1{
    color: white;
}

#uniform-01 .uniform-text, #uniform-02 .uniform-text, #uniform-03 .uniform-text{
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.4px);
    -webkit-backdrop-filter: blur(4.4px);
    border: 1px solid rgba(108, 160, 220, 0.32);
    width: 400px;
    margin-top: 19rem;
}

#uniform-01 .uniform-text{
    background: rgba(108, 160, 220, 0.33);
}

#uniform-02 .uniform-text{
    background: rgba(105, 105, 105, 0.41);
}

#uniform-03 .uniform-text{
    background: rgba(248, 200, 220, 0.5);
}

#uniform-01{
    background: #6ca0dc;
    box-shadow: 0 4px 8px 0 #5680b0, 0 6px 20px 0 #5680b0;
}

#uniform-02{
    background: #696969;
    box-shadow: 0 4px 8px 0 #3B3B3B, 0 6px 20px 0 #3B3B3B;
}

#uniform-03{
    background: #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: 3rem;
}

.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{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    color: black;
    font-size: 1.2rem;
    border-radius: 25px;
    padding: 30px;
    gap: 0.5rem;
    text-align: center;
    width: 90%;
}

.input-data{
    display: flex;
    flex-direction: columns;
    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;
    text-align: center;
    margin-top: 1rem;
    width: 80%;
    margin-bottom: 1rem;
    gap: 1rem;
}

.form-text a{
    color: black;
    text-shadow: none;
    font-weight: 800;
    border-bottom: 1px solid black;
}

/*--------------------------------------------------- Members Web Page Start -----------------------------------------*/
/* Members*/
.members{
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    height: 2000px;
}

.staff{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.members-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
    margin-top: 2rem;
    border-radius: 10px;
}

.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: 95%;
    height: 96%;
    margin-top: 0.5rem;
    object-position: top;
    border-radius: 10px;
    transition: all 0.3s;
    object-fit: cover;
    object-position: top;
}

.box-text{
    width: 90%;
}

.title-price{
    position: relative;
    text-align: center;
    margin-top: -5.5rem;
    height: 80px;
    border-radius: 15px;
    padding: 5px;
    background: var(--bg-red-highlight);
    transition: all 0.3s;
}

.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;
}

/*--------------------------------------------------- Events Web Page Start ------------------------------------------*/
.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;
    display: flex;
    flex-direction: column;
    border-radius: 12.5px;
    transition: 0.3s;
    height: 300px;
}

.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: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-top: 3px;
}

.happyday, .pj, .museum, .heritage, .graduation, .career{
    display: flex;
    flex-direction: column;
    position: relative;
}

.happyday{
    height: 3650px;
}

.pj{
    height: 1500px;
}

.museum{
    height: 1850px;
}

.heritage{
    height: 2450px;
}

.graduation{
    height: 1500px;
}

.career{
    height: 2500px;
}

/*--------------------------------------------------- Students Web Page Start ----------------------------------------*/
/* About Section */
.students-about, .students-about-statement{
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    background: var(--bg-color);
}

.students-about{
    height: 250px;
}

.students-about-statement{
    gap: 2rem;
}

.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, .eagle-content .teachers .members-box{
    background: #ffd670;
}

.rabbit .heading, .rabbit-content .teachers, .rabbit-content .leaders, .rabbit-content .members-box .box-text .title-price, .rabbit-content .teachers .members-box{
    background: #ff9248;
}

.ostrich_a .heading, .ostrich-a-content .teachers, .ostrich-a-content .leaders, .ostrich-a-content .members-box .box-text .title-price, .ostrich-a-content .teachers .members-box{
    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, .lion-content .teachers .members-box{
    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;
    object-fit: cover;
    object-position: center;
}

.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;
}

.rabbit-content .teachers .members-box{
    box-shadow: 0 4px 8px 0 #ff9248,  0 6px 20px 0 #ff9248;
}

.eagle-content .teachers, .rabbit-content .teachers, .ostrich-a-content .teachers, .ostrich-b-content .teachers, .lion-content .teachers, .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: 15px;
}

.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;
    object-fit: cover;
    object-position: center;
}

.eagle-content .teachers img, .eagle-content .learner-box img, .eagle-content .teachers .members-box{
    box-shadow: 0 4px 8px 0 #ffe4a1,  0 6px 20px 0 #ffe4a1;
}

.ostrich-a-content .teachers img, .ostrich-a-content.learner-box img, .ostrich-a-content .teachers .members-box{
    box-shadow: 0 4px 8px 0 #147014, 0 6px 20px 0 #147014;
}

.ostrich-b-content .teachers img, .ostrich-b-content.learner-box img, .ostrich-b-content .teachers .members-box{
    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, .lion-content .teachers .members-box{
    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;
}

/* Footer Content */
.footer{
    position: relative;
    display: flex;
    justify-content: center;
    border-top: 5px solid var(--bg-red-highlight);
    background: var(--bg-red);
    border-radius: 10px 10px 0px 0px;
}

.footer-content{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    position: relative;
    gap: 8rem;
    color: white;
}

.footer-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content h1{
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-box a{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: white;
    text-align: center;
}

.footer-img{
    width: 100px;
    border-radius: 40%;
    margin-bottom: 5px;
    background-color: var(--bg-color);
    padding-left: 5px;
    padding-top: 5px;
    padding-right: 2.5px;
    transition: all 0.3s;
}

.footer-img:hover{
    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);
}

.social{
    display: flex;
    flex-direction: columns;
}

.copyright-content{
    display: flex;
    flex-direction: columns;
    border-top: 2px solid white;
}

.copyright-content .social{
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-top: 0.5rem;
}

.copyright{
    font-size: 1.3rem;
    height: 50px;
    position: relative;
    background: var(--bg-blue);
    padding-top: 1rem;
}

.copy{
    text-align: center;
    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{
    display: flex;
    flex-direction: columns;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.designer a{
    text-align: center;
    padding: 30px 5px;
    color: white;
}

.designer strong{
    border-bottom: 1px solid var(--bg-color);
}

.footer-logo img{
    position: relative;
    width: 50px;
    border-radius: 5px;
}

/* ================================================================================================================================================================================================================*/
/* Making Responsive */

@media (max-width: 1450px){

    .container {
        width: 90%;
        margin: auto;
    }

    .monitor-hero-bg{
        margin-top: -4.5rem;
    }

    .monitor-hero-bg-tablet{
        display: none;
    }

    .monitor-hero-bg-phone{
        display: none;
    }

    /* Index Page */
    .about-content p, .fees-description p{
        margin: 2rem 2rem 1rem 2rem;
    }

    /* FAQs Section */
    .faqs-content{
        margin-top: 11.5rem;
    }

    /* Events Section */
    .happyday-text p, .pj-text p, .museum-text p, .heritage-text p, .graduation-text p, .career-text p{
        margin-top: 1rem;
    }

    .happyday-container, .pj-container, .museum-container, .heritage-container, .graduation-container, .career-container{
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .happyday-box, .pj-box, .museum-box, .heritage-box, .graduation-box, .career-box{
        height: 300px;
    }

    .pj, .museum, .heritage, .graduation, .career{
        margin-top: 8rem;
    }

    .happyday{
        height: 3550px;
    }

    .pj{
        height: 1350px;
    }

    .museum{
        height: 1750px;
    }

    .heritage{
        height: 2350px;
    }

    .graduation{
        height: 1400px;
    }

    .career{
        height: 2550px;
    }

}

@media (max-width: 1440px){

    .monitor-hero-bg{
        margin-top: -3.5rem;
    }

    .home{
        height: 750px;
    }

    .home-text{
        margin-top: 28%;
    }

    .home-text h1{
        font-size: 3.5rem;
    }

    /* Registration Section */
    /* Fees */
    .fees-box{
        grid-template-columns: repeat(4, minmax(300px, auto));
    }

    .fees-age h1{
        font-size: 1.875rem;
    }

    /* Uniform Section */
    #uniform-01 .uniform-text, #uniform-02 .uniform-text, #uniform-03 .uniform-text{
        width: 27%;
    }

}

@media (max-width: 1373px){

    .happyday{
        height: 4800px;
    }

    .pj{
        height: 1700px;
    }

    .museum{
        height: 2025px;
    }

    .heritage{
        height: 3000px;
    }

    .graduation{
        height: 1750px;
    }

    .career{
        height: 3100px;
    }

}

@media (max-width: 1298px){

    /* FAQS section */
    .faqs{
        height: 1075px;
    }

    .faqs-container{
        height: 900px;
    }

    .faqs-content{
        margin-top: 8rem;
        row-gap: 5.5rem;
    }

    /* Footer Section */
    .footer-content{
        gap: 4rem;
    }

    /* Registration Section */
    /* Fees */
    .fees-box{
        grid-template-columns: repeat(2, minmax(50%, auto));
    }

    .fees{
        height: 1150px;
    }

    /* Members Section */
    .members{
        height: 2050px;
    }

}

@media (max-width: 1164px){

    /* Members Section */
    .members{
        height: 2500px;
    }

}

@media (max-width: 1098px){

    .monitor-hero-bg{
        display: none;
    }

    .monitor-hero-bg-tablet{
        position: absolute;
        width: 99.1vw;
        min-height: 100%;
        border-radius: 0px 0px 10px 10px;
        margin-top: -3rem;
        display: block;
    }

    .home{
        height: 750px;
    }

    .home-text{
        margin-top: 30%;
    }

    .home-text h1{
        font-size: 3.5rem;
    }

    .home-text p{
        font-size: 2rem;
    }

    /* Registration Section */
    /* Uniform Section */
    .uniform-name h1{
        font-size: 1.5rem;
    }

    .uniform-description{
        margin: 0 0rem 0 0rem;
        font-size: 0.95rem;
    }

    .uniform-box{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .uniform{
        height: 800px;
        gap: 2rem;
    }

}

@media (max-width: 1026px){

    .happyday{
        height: 7000px;
    }

    .pj{
        height: 2400px;
    }

    .museum{
        height: 3000px;
    }

    .heritage{
        height: 4550px;
    }

    .graduation{
        height: 2700px;
    }

    .career{
        height: 4750px;
    }

}

@media (max-width: 985px){

    /* About Section */
    .box{
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .box img{
        width: 98%;
        height: 380px;
    }

    .outline{
        height: 50%;
        width: 90%;
    }

    /* Footer Content */
    .footer-content{
        flex-direction: column;
        gap: 2rem;
    }

    .footer-box a{
        font-size: 0.875rem;
    }

    .footer-img{
        width: 80px;
    }

    .copyright{
        font-size: 0.875rem;
    }

    .design, .copyright{
        font-size: 0.875rem;
        color: white;
    }

}

@media (max-width: 868px){

    /* 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;
    }

    /* Drop Down Function */
    .nav ul{
        position: relative;
        display: none;
        margin-bottom: 1rem;
        text-align: center;
    }

    #link-center{
        text-align: center;
    }

    .nav ul li{
        padding-top: 5px;
        float: center;
        height: 70px;
        width: 200px;
        padding: 20px 10px 10px 10px;
        background-color: var(--bg-red);
        border: none;
        border-radius: 5px;
        text-align: center;
    }

    #link-images{
        display: flex;
        flex-direction: columns;
        gap: 0.5rem;
    }

    #link-images img{
        width: 35px;
        margin-top: -9px;
    }

    .nav li:hover ul{
        display: block;
    }

    #link-images{
        display: flex;
        flex-direction: columns;
        gap: 0.5rem;
    }

    #link-images img{
        width: 35px;
        margin-top: -9px;
    }

    /* Members Section */
    .members{
        height: 3450px;
    }

}

@media (max-width: 868px){

    /* Registration Section */
    /* Uniform Section */
    .uniform-name h1{
        font-size: 1.5rem;
    }

    .uniform-box{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .uniform{
        height: 1250px;
        gap: 2rem;
    }

    .uniform-description{
        font-size: 0.875rem;
        margin: 0 0rem 0 0rem;
    }

    #uniform-01 .uniform-text, #uniform-02 .uniform-text, #uniform-03 .uniform-text{
        width: 45%;
    }

    /* Contact Section */
    .checkbox{
        flex-direction: column;
        gap: 1rem;
    }

    form{
        font-size: 1rem;
        width: 100%;
    }

    .input-data{
        font-size: 0.9rem;
    }

    .checkbox input[type="checkbox"]{
        width: 15px;
        height: 15px;
        margin-top: 0.875rem;
    }

    .form-text{
        width: 95%;
    }

    .form-text h1{
        font-size: 1.5rem;
    }

    .form-text ul li{
        font-size: 0.875rem;
    }

}

@media (max-width: 850px){

    .monitor-hero-bg-tablet{
        margin-top: -3rem;
    }

    .home{
        height: 650px;
    }

    .home-text{
        margin-top: 35%;
    }

    .home-text h1{
        font-size: 3.125rem;
    }

    .home-text p{
        font-size: 1.875rem;
    }

    /* Statements Section */
    .statement-box{
        height: 450px;
        width: 285px;
    }

    .statement-box img{
        width: 255px;
        height: 210px;
    }

    .statement-box .heading{
        margin-top: 5rem;
    }

    #vision-statement h1{
        margin-top: 7.5rem;
    }

    .statement-box p{
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact-info{
        height: 280px;
    }

}

@media (max-width: 773px){

    /* FAQS section */
    .faqs{
        height: 1450px;
    }

    .faqs-container{
        height: 1220px;
    }

}

@media (max-width: 750px){

    .heading h1{
        font-size: 2.5rem;
    }

    .monitor-hero-bg-tablet{
        display: none;
    }

    .monitor-hero-bg-phone{
        position: absolute;
        width: 99.1vw;
        min-height: 100%;
        border-radius: 0px 0px 10px 10px;
        margin-top: -3rem;
        display: block;
    }

    .home-text{
        margin-top: 37.5%;
    }

    /* About Section */
    .box img{
        height: 370px;
    }

    /* Statements Section */
    .mission-vision{
        height: 650px;
        gap: 7rem;
    }

    .statement-box{
        height: 390px;
        width: 270px;
    }

    .statement-box img{
        width: 245px;
        height: 200px;
    }

    .statement-box .heading{
        margin-top: 4rem;
    }

    .statement-box p{
        margin: 1rem 0.5rem 1rem 0.5rem;
    }

    .outline{
        height: 40%;
        width: 90%;
    }

    /* Location */
    .location{
        position: relative;
        height: 900px;
    }

    .contact-box{
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info{
        width: 80%;
        height: 200px;
        margin-top: 0rem;
    }

    .contact-info i{
        font-size: 45px;
    }

    .contact-info h1{
        font-size: 1.50rem;
    }

    .contact-info p{
        font-size: 1rem;
    }

    .contact-info a{
        width: 70%;
        margin-top: 0rem;
    }

    iframe{
        height: 1200px;
    }

    /* Footer Section */
    .design{
        padding-top: 2rem;
    }

    /* Registration Section */
    /* Fees */
    .transport-content{
        height: 325px;
    }

    .fees-age h1{
        font-size: 1.65rem;
    }

    /* Students Section */
    .rabbit-content, .ostrich-a-content, .ostrich-b-content, .lion-content{
        height: 1500px;
    }

    .lion-content{
        height: 1600px;
    }

    .eagle-content{
        height: 1050px;
    }

    .rabbit-content{
        height: 900px;
        margin-top: 1rem;
    }

    .eagle-content .teachers, .rabbit-content .teachers, .ostrich-a-content .teachers, .ostrich-b-content .teachers, .lion-content .teachers, .eagle-content .leaders, .ostrich-a-content .leaders, .ostrich-b-content .leaders, .lion-content .leaders{
        flex-direction: column;
    }

}

@media (max-width: 680px){

    /* Members Section */
    .members{
        height: 3500px;
    }

}

@media (max-width: 679px){

    .happyday{
        height: 13900px;
    }

    .pj{
        height: 4600px;
    }

    .museum{
        height: 5650px;
    }

    .heritage{
        height: 8700px;
    }

    .graduation{
        height: 5000px;
    }

    .career{
        height: 8850px;
    }

    .happyday-text, .pj-text, .museum-text, .heritage-text, .graduation-text, .career-text{
        font-size: 0.875rem;
    }

    .happyday-box, .pj-box, .museum-box, .heritage-box, .graduation-box, .career-box{
        padding: 8px;
        border-radius: 10px;
    }

    .happyday-box img, .pj-box img, .museum-box img, .heritage-box img, .graduation-box img, .career-box img{
        border-radius: 5px;
    }

}

@media (max-width: 610px){

    .home-text{
        margin-top: 47%;
    }

    /* About Section */
    .about{
        height: 920px;
    }

    /* Statements Section */
    .mission-vision{
        height: 1200px;
        gap: 9rem;
    }

    .statements{
        flex-direction: column;
        gap: 8rem;
    }

    .outline{
        height: 55%;
        width: 90%;
    }

    .statement-box{
        height: 390px;
        width: 80%;
    }

    .statement-box img{
        width: 90%;
        height: 240px;
    }

    /* Registration Section */
    .fees{
        height: 1250px;
    }

    .fees-content{
        height: 270px;
    }

    .fees-content img, .transport-content img{
        width: 115px;
    }

    .fees-price, .transport-price, .uniform-price, .after-care-price{
        font-size: 0.875rem;
    }

    /* Students Section */
    .students-about{
        height: 300px;
    }

}

@media (max-width: 573px){

    .logo{
        width: 65px;
        height: 40px;
        margin-top: -3rem;
    }

    /* Members Section */
    .members{
        height: 6600px;
    }

    /* Uniform Section */
    #uniform-01 .uniform-text, #uniform-02 .uniform-text, #uniform-03 .uniform-text{
        width: 90%;
    }

    .uniform{
        height: 1800px;
        gap: 1rem;
    }

}

@media (max-width: 457px){

    .happyday{
        height: 11715px;
    }

    .pj{
        height: 3950px;
    }

    .museum{
        height: 4800px;
    }

    .heritage{
        height: 7400px;
    }

    .graduation{
        height: 4350px;
    }

    .career{
        height: 7600px;
    }

    .happyday-box, .pj-box, .museum-box, .heritage-box, .graduation-box, .career-box{
        height: 250px;
    }

}

@media (max-width: 511px){

    .heading h1{
        font-size: 2.125rem;
    }

    .home-text{
        margin-top: 65%;
    }

    .home-text h1{
        font-size: 2.875rem;
    }

    .home-text p{
        font-size: 1.5rem;
    }

    /* About Section */
    .about{
        height: 850px;
    }

    .box img{
        height: 330px;
    }

    .about-content p, .fees-description p{
        font-size: 0.875rem;
        margin: 2rem 0.5rem 1rem 0.5rem;
    }

    /* Mission Section*/
    .statement-box p{
        font-size: 0.875rem;
    }

    /* FAQS section */
    .faqs{
        height: 2000px;
    }

    .faqs-container{
        height: 1800px;
    }

    .faqs-content{
        grid-template-columns: repeat(1, 100%);
        gap: 5rem;
    }

    .faqs-box img{
        width: 125px;
        position: absolute;
        margin-top: -16.5rem;
    }

    .faqs-text{
        margin-top: 3rem;
    }

    .faqs-box{
        height: 250px;
        width: 90%;
    }

    /* Location */
    .location{
        height: 1000px;
        gap: 3rem;
    }

    .contact-info{
        height: 205px;
    }

    .contact-info h1{
        font-size: 1.4rem;
    }

    .contact-info p{
        font-size: 0.875rem;
    }

    .contact-info a{
        width: 65%;
    }

    /* Registration Section */
    /* Fees */
    .fees-box{
        grid-template-columns: repeat(1, 100%);
    }

    .fees{
        height: 1800px;
    }

    .transport-content{
        height: 335px;
    }

    .transport-text p{
        font-size: 0.875rem;
    }

}

@media (max-width: 432px){

    /* Members Section */
    .members{
        height: 6650px;
    }

}

@media (max-width: 400px){

    .home-text{
        margin-top: 75%;
    }

    .home-text h1{
        font-size: 2.5rem;
    }

    .home-text p{
        font-size: 1.125rem;
    }

    /* About Section */
    .about{
        height: 825px;
    }

    .box img{
        height: 250px;
    }

    /* Statements Section */
    .mission-vision{
        height: 1125px;
        gap: 9rem;
    }

    .statement-box{
        height: 370px;
        width: 85%;
    }

    .statement-box img{
        width: 90%;
        height: 230px;
    }

    .statement-box .heading{
        margin-top: 4rem;
    }

    .outline{
        height: 60%;
        width: 90%;
    }

    /* Registration Section */
    /* Uniform Section */
    .uniform{
        height: 1800px;
    }

    #uniform-01 .uniform-text, #uniform-02 .uniform-text, #uniform-03 .uniform-text{
        width: 82.5%;
    }

    /* Students Section */
    .students-about{
        height: 350px;
    }

    .students-about-statement{
        font-size: 0.875rem;
    }

    .eagle-content .teachers .box-text h2, .rabbit-content .teachers .box-text h2, .ostrich-a-content .teachers .box-text h2, .ostrich-b-content .teachers .box-text h2, .lion-content .teachers .box-text h2, .eagle-content .leaders .box-text h2, .ostrich-a-content .leaders .box-text h2, .ostrich-b-content .leaders .box-text  h2, .lion-content .leaders .box-text h2{
        font-size: 0.875rem;
    }

}

@media (max-width: 359px){

    .happyday-container, .pj-container, .museum-container, .heritage-container, .graduation-container, .career-container{
        grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    }

    .happyday{
        height: 9550px;
    }

    .pj{
        height: 3300px;
    }

    .museum{
        height: 4000px;
    }

    .heritage{
        height: 6100px;
    }

    .graduation{
        height: 3600px;
    }

    .career{
        height: 6260px;
    }

    .happyday-box, .pj-box, .museum-box, .heritage-box, .graduation-box, .career-box{
        height: 200px;
    }

    /* Location */
    .location{
        height: 1050px;
        gap: 2rem;
    }

    .contact-info{
        height: 200px;
        width: 90%;
    }

    .contact-info h1{
        font-size: 1.3rem;
    }

    .contact-info a{
        width: 80%;
    }

}

@media (max-width: 377px){

    /* Members Section */
    .members{
        height: 6765px;
    }

}

