:root {

    --primary-color: #104B88;
    --secondary-color: #3F4A75;
    --color-red: #631F2B;
    --color-blue: #112246;
    --color-black: #3D3D3D;
    --color-white: #fff;
    --color-1: #F7F7F7;
    --color-2: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin: 0;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

/* common section */
.custom-container {
    width: 86%;
    margin: 0 auto;
}

.paddings {
    padding: 5rem 0;
}

.banner img {
    width: 100%;
}

.common-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common-flex-sec {
    width: 46%;
}

.common-flex-sec img{
    width: 100%;
}

#response_message2{
    color: green;
}

#response_message3{
    color: green;
}

/* header section */
header {
    width: 100%;
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 22;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.school-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fifty-years-logo img {
    width: 100%;
}

.school-logo a img {
    width: 85%;
}

.header-container {
    width: 86%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

#hamburger {
    width: 50px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#hamburger .line1 {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    transition: all .5s ease;
    border-radius: 5px;
}

#hamburger .line2 {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    transition: all .5s ease;
    border-radius: 5px;
}

#hamburger .line3 {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    transition: all .5s ease;
    border-radius: 5px;
}

#hamburger.active .line1 {
    transform: rotate(45deg) translate(13px, 5px);
    color: white;
    background-color: var(--primary-color);
}

#hamburger.active .line2 {
    transform: translateX(-10px);
    background-color: transparent;
}

#hamburger.active .line3 {
    transform: rotate(-45deg) translate(13px, -6px);
    color: white;
    background-color: var(--primary-color);
}

.hamburger-menu {
    background-color: var(--primary-color);
    width: 415px;
    height: calc(100vh - 148px);
    position: fixed;
    bottom: 0;
    left: 100%;
    transition: all 1s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 3rem 0;
    overflow-y: auto;
    z-index: 22;
}

.hamburger-menu .menu {
    transition: all 1s;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.hamburger-menu ul li {
    list-style-type: none;
}

.hamburger-menu::-webkit-scrollbar-thumb {
    background-color: var(--color-white);
    border-radius: 8px;
}

.hamburger-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--color-black);
}

.hamburger-menu::-webkit-scrollbar {
    width: 8px;
    background-color: var(--color-white);
}


.hamburger-menu a {
    font-size: 18px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s;
    padding: 0.8rem 2rem;
    position: relative;
    width: 100%;
    z-index: 9;
}

.hamburger-menu a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all 0.5s ease;
    background-color: var(--color-blue);
    z-index: -1;
}

.hamburger-menu a:hover::after {
    width: 100%;
}

.hamburger-menu.active {
    left: calc(100% - 400px);
}

#empty-div {
    background-color: #00000099;
    width: 100%;
    height: calc(100vh - 148px);
    position: fixed;
    bottom: 0;
    left: 100%;
    transition: all 1s;
    z-index: 5;
}

#empty-div.active {
    left: 0%;
}

.admission-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admission-link1{
    display: none;
}

.admission-links a {
    color: var(--color-blue);
    font-weight: bold;
}

  .admission-links .emagazine{
            background-color: #9E737B;
            padding: 8px 16px;
            color: #fff;
        }

/* footer section */
.footer-sec {
    background: var(--color-white);
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 0;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    width: 26%;
}

.footer-logo a img {
    width: 100%;
}

.footer-menu-sec {
    width: 36%;
}

.footer-menu-flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
}

.footer-menu-sec p {
    color: var(--color-black);
    font-weight: bold;
    padding-bottom: 1.2rem;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    padding: 0.2rem 0;
}

.footer-menu ul li a {
    color: var(--color-black);
}

.footer-address {
    width: 32%;
}

.footer-address p {
    color: var(--color-black);
    font-weight: bold;
    padding-bottom: 1.2rem;
}

.footer-address ul {
    list-style: none;
    padding: 0;
}

.footer-address ul li a {
    color: var(--color-black);
}

.socialmedia a i {
    color: var(--color-black);
    font-size: 1.6rem;
    padding: 0 0.5rem 0 0;
}

.copyrights {
    background: var(--color-1);
}

.copyrights-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.copyrights-text p {
    color: var(--color-black);
    font-size: 1rem;
}

.signature-logo a img {
    width: 100%;
}

/*Home main*/
/* banner section */
.swiper {
    width: 100%;
    height: 100%;
}

.home-page-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-page-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.swiper-pagination {
    background-color: transparent
}

.swiper-pagination-bullet {
    color: var(--color-white);
}

.swiper-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    text-align: center;
    width: 90%;
}


.swiper-text h2 {
    color: var(--color-white);
    font-size: 2.4rem;
}

/* Our Pride section */
.our-pride h2 {
    margin-bottom: 0;
}

.our-pride {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 85%;
    margin: auto;
}

.our-pride h2 {
    color: var(--secondary-color);
}

.our-pride h3 {
    color: var(--color-2);
}

.our-pride h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

/* vms section  */
.vms {
    overflow: hidden;
}

.girl,
.boy,
.shock,
.teacher,
.write,
.hands {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h5.heed {
    color: #fff;
    font-size: 20px;
}

p.para {
    font-size: 16px;
}

.aboutus {
    position: relative;
}

.girl {
    position: absolute;
    left: -100%;
    top: 0;
    z-index: -999999;
    transition: all 0.5s ease;

}

.boy {
    position: absolute;
    z-index: -9999999;
    left: 0;
    transition: all 0.5s ease;
}

.vision-text {
    position: absolute;
    left: 0;
    display:flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #57697F;
    color: #fff;
    padding: 90px 100px 130px 100px;
    width: 100%;
    /*min-height: 50%;*/
}

.arise {
    /* position: absolute; */
    /* left: 0; */
    background-color: #631f2b;
    color: #fff;
    padding: 90px 100px 110px 100px;
    width: 100%;
    display:flex;
    flex-direction: column;
    gap: 1rem;
}

.syllabi {
    display:flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #293E5D;
    color: #fff;
    padding:  90px 100px 160px 100px;
    width: 100%;
}


.vision-text h3 {
    color: #fff;
    font-family: 'Poppins';
    font-size: 32px;
}

#arrowright {
    transition: all 0.5s ease;
    /*position: absolute;*/
    margin-top: 2rem;
    width: 40px;
}




#missing img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

#idit img{
      width: 100%;
    height: 100%;
    object-fit: cover;
}

.arise h3 {
    color: #fff;
    font-family: 'Poppins';
    font-size: 32px;
}

.shock {
    position: absolute;
    z-index: -9999999;
    right: 0;
    transition: all 0.5s ease;
}

.teacher {
    position: absolute;
    right: -100%;
    top: 0;
    z-index: -999999;
    transition: all 0.5s ease;
}

#arrowleft {
    transition: all 0.5s ease;
    /*position: absolute;*/
    margin-top: 2rem;
    width: 40px;
}



.syllabi h3 {
    color: #fff;
    font-family: 'Poppins';
    font-size: 32px;
}

.write {
    position: absolute;
    z-index: -9999999;
    left: 0;
    transition: all 0.5s ease;
}

.hands {
    position: absolute;
    left: -100%;
    top: 0;
    z-index: -999999;
    transition: all 0.5s ease;
}

#arrowup {
    transition: all 0.5s ease;
    padding-left: -50px;
    width: 20px;
   
}

img#arrowup {
    position: absolute;
    margin-left: -70px;
   
}

.row.aboutus {
    overflow: hidden;
}

.vision-mission-section2{
    display: none;
}

.vision-mission-section2 .custom-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
}

.vms-common-section{
    width: calc(50% - 1.3rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vms-content-section{
     display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vms-content-section h2{
    margin: 0;
    font-size: 30px;
}



/* student enrichment strategy section */
.student-enrichment {
    background: #fff;
}

.whoo{
    background: var(--color-1);
}

.news-events{
    background: var(--color-1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.facilities-item {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0 0;
}

.facilities-item-inner {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all .5s ease;
}

.facilities-item-inner img {
    width: 70px;
}

.facilities-item-inner {
    padding: 1rem;
}

.facilities-item-inner:nth-child(1),
.facilities-item-inner:nth-child(2),
.facilities-item-inner:nth-child(3),
.facilities-item-inner:nth-child(4),
.facilities-item-inner:nth-child(5),
.facilities-item-inner:nth-child(6),
.facilities-item-inner:nth-child(7),
.facilities-item-inner:nth-child(8) {
    border-right: 1px solid #d4d4d4;
}

.facilities-item-inner:nth-child(1),
.facilities-item-inner:nth-child(2),
.facilities-item-inner:nth-child(3),
.facilities-item-inner:nth-child(4),
.facilities-item-inner:nth-child(5),
.facilities-item-inner:nth-child(6) {
    border-bottom: 1px solid #d4d4d4;
}

.facilities-item-inner:nth-child(even):hover {
    background-color: var(--color-red);
    color: var(--color-white);
    fill: var(--color-white);
}

.facilities-item-inner:nth-child(odd):hover {
    background-color: var(--secondary-color);
    color: var(--color-white);
    fill: var(--color-white);
}

.facilities-item-inner:hover img {
    filter: brightness(0) invert(1);
}

.facilities-item-inner p{
    font-size: 16px;
}


/* new section */
.special-sec {
    width: 52%;
}

.news-events-sec {
    align-items: flex-start;
}

.news-events-sec .common-flex-sec:nth-child(1){
    width: calc(50% - 1rem);
}

.news-events-sec .common-flex-sec:nth-child(2){
    width: 58%;
}

.news {
    width: 48%;
}

.news-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.news img {
    width: 100%;
}

.news-text {
    background: var(--color-white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    padding: 1rem;
}

.news-text h3 {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #d4d4d4;
}

.news-text p {
    font-size: 1rem;
}

/* preface page */
.sgncs-sec {
    background: #57697F;
    text-align: center;
    color: var(--color-white);
}

.sgncs-sec h2 {
    color: var(--color-white);
}
.small-line {
    width: 100%;
    position: relative;
}

.small-quotee {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    width: 4%;
}

.small-quotee i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* pupil house */

.pupil-sec {
    text-align: center;
}

.pupil-sec-flex {
    margin-top: 5rem;
    align-items: center;
}

.pupil-img {
    width: 48%;
}

.pupil-img img {
    width: 100%;
}

.pupil-table {
    width: 40%;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-left: -18rem;
    box-shadow: 3px 0px 19px 0px #E0E0E0;
}

.custom-table th,
.custom-table td {
    padding: 1.3rem 2rem;
    text-align: left;
}

.custom-table thead {
    background-color: #f2f2f2;
}

.custom-table tbody tr:nth-child(even) {
    background-color: #e6e6e6;
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.blue-row {
    background-color: var(--primary-color);
    color: var(--color-white);
}

/* uniform section */
.uniform-sec {
    background: #F8F8F8;
}

.unifrom-tab {
    margin-top: 2.2rem;
}

.nav-pills .nav-link {
    border-radius: 0;
    color: var(--color-white);
    padding: 1.2rem;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.tab-content {
    background: var(--color-white);
    border-radius: 0;
    width: 100%;
}

.uniform-nav {
    background-color: #293E5D;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.uniform-content-sec {
    background: var(--color-white);
    border: 1px solid;
    padding: 2rem;
}

.uniform-text h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.uniform-text img{
    width: 100%;
}

/* enrichment page tab */
.enrichment {
    background: #F8F8F8;
}

.enrichment-tab {
    margin-top: 2.2rem;
}

.enrichment-nav {
    background-color: #293E5D;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.enrichment-content-sec {
    background: var(--color-white);
    border: 1px solid;
    padding: 2rem;
}

.enrichment-text{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enrichment-text h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    /* margin-bottom: 2rem; */
}

.amangalam-img img {
    width: 70%;
    margin: auto;
}

.col-md-9 .row{
    height: 100%;
}

/* academics tab content */
.academics-tab-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0 1.6rem 0;
    border-bottom: 1px solid #dddddd;
}

.academics-tab-flex p {
    font-size: 1.6rem;
    font-weight: 500;
}

.academics-tab-flex img {
    width: 50px;
}

/* personal tab content */
.personal-tab-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0 1.6rem 0;
}

.personal-tab-flex p {
    font-size: 1.6rem;
    font-weight: 500;
}

.personal-tab-flex img {
    width: 50px;
}

/* technology tab content */
.technology-tab-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    /* padding: 2rem 0 1.6rem 0; */
}

.tech-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-img {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.tech-img img {
    width: 100%;
}

.tech-img div{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    background-color: #f6f6f6;
}

/* Admittance page */
.admittance-text h3 {
    margin: 1.2rem 0 1rem;
}

.admittance-text ol li {
    list-style-position: inside;
    padding: 0.2rem 0;
}

.admittance-img img {
    width: 100%;
}

.form-admission {
    background: #F8F8F8;
}

.admittance-form-sec h3 {
    margin: 1.2rem 0 1rem;
}

.admittance input {
    width: 100%;
    padding: 1.6rem 0;
    outline: unset;
    border: unset;
    background: transparent;
    border-bottom: 1px solid #000;
}

.admittance textarea {
    width: 100%;
    padding: 1.6rem 0;
    outline: unset;
    border: unset;
    background: transparent;
    border-bottom: 1px solid #000;
}

.admittance input[type="submit"] {
    width: 30%;
    background-color: var(--primary-color);
    padding: 1rem 0;
    margin-top: 2rem;
    color: var(--color-white);
}

.career-section .custom-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
}

.career-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    width: 100%;
    margin: auto;
}

.career{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.career-part {
    width: calc(50% - 3rem);
}

.career-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.career-img img{
    width:75%;
}

.career-section h3 {
    color: #104b88;
    font-size: 30px;
}

.career-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
}

input[type=text] {
    padding-top: 1rem;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    width: 100%;
    background-color: unset;
}

.career-part{
    display:flex;
    flex-direction:column;
}

#contactForm{
    display:flex;
    flex-direction:column;
     gap:2rem;
     padding-top: 2rem;
}

#admissionForm{
    display:flex;
    flex-direction:column;
     gap:2rem;
     padding-top: 2rem;
}

textarea{
    padding-top:1rem;
}

#message{
    border:none;
    outline:unset;
    border-bottom: 1px solid black;
}

#message3{
    border:none;
    outline:unset;
    border-bottom: 1px solid black;
    background-color: unset;
}

#submit-btn {
    width: fit-content;
    padding: 10px 60px;
    background-color: #243864;
    border: none;
    color: white;
    font-size: 22px
}

#submit-btn:hover {
    background-color: #782d38;
}

#contact-submit-btn{
     width: fit-content;
    padding: 10px 60px;
    background-color: #243864;
    border: none;
    color: white;
    font-size: 22px
}

#contact-submit-btn:hover {
    background-color: #782d38;
}

form>div {
    display: flex;
    flex-direction: column;
}

.file-upload {
    display: flex;
    flex-direction: column;
}

 h2{
    color: #104B88;
}

.contact-section .custom-container{
    padding:4rem 0
}

.contact-part img{
    width:100%;
}

.contact-section .career-part{
    width: 50%;
}

.contact-section .contact-part{
    width: calc(50% - 3rem);
}

/* gallery event section */

.events-container{
    width: 100%;
    background-color: #f8f8f8;
}

.events-container .custom-container{
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.events-flex{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
}

.events{
    width: calc(25% - 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.events:hover{
    filter: brightness(0.6);
}

.events img{
    width: 100%;
    filter: brightness(0.9);
}

.events h4{
    background-color: #631F2B;
    color: white;
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
}


.gallery-section .custom-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4rem;
}

.gallery-flex-img{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-flex-img .image{
    width: calc(25% - 0.8rem);
}

.gallery-flex-img .image:hover{
    filter: brightness(0.8);
}

.gallery-flex-img .image img{
    width: 100%;
}

/* who we are page */

.who-campus-section{
    width:100%;
    background-color: #293e5d;
}

.who-campus-section .custom-container{
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.primary-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.pre-primary-part, .primary-part{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 48%;
}

.who-campus-section h2{
    color: white;
}

.who-campus-section p{
    color: white;
}

.primary-section img{
    width: 100%;
}

.swiper-section .custom-container{
    padding: 4rem 0;
}

.history-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.group-photo{
    width: 50%;
}

.swiper-slide-section .swiper-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem 3rem;
    gap: 3rem;
}

.swiper-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.swiper-flex  p{
    width: 100%;
}

.swiper-flex  ul{
    width: 100%;
    text-align: left;
    padding-left: 5rem;
}

.swiper-flex p{
    text-align:start;
}

.swiper-slide-section .teacher-des{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.swiper-slide-section .teacher-des img{
    width: 30%;
}

.teacher-des h6{
    font-size: 22px;
    color: #8f5e67;
    margin: 0;
}

.teacher-des p{
    font-size: 15px;
}


/* Events celebration dropdown */

.hamburger-menu1 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    cursor: pointer;
}

.hamburger-menu-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu-drop .hamburger-drop {
    padding: 0;
}

.hamburger-drop .hamburger-menu-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}


.hamburger-menu-btn .bx {
    font-size: 2rem;
    color: #fff;
}

.hamburger-menu1 p {
    color: white;
    font-size: 18px;
    z-index: 21;
    font-weight: 400;
    text-align:left;
}

.hamburger-menu-drop {
    display: none;
}

.hamburger-menu-drop div {
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tabletmenu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    width: 100%;
    height: calc(100vh - 99px);
    position: fixed;
    top: 10%;
    left: -100%;
    padding: 4rem;
    background-color: #059AAB;
    transition: all 1s ease;
    z-index: 22;
}

.bx-chevron-down {
    transition: all 0.3s ease;
}

.bx-chevron-down.active {
    transform: rotate(180deg);
}

.tabletmenu a {
    color: white;
    font-size: 22px;
    font-weight: 300;
}

.tabletmenu.active {
    left: 0%;
}

.hamburgermenu {
    display: none;
}

.hamburger-menu-drop div .pain-medicine-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0%;
}
.eventspage{
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
}


