@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "Parastoo";
  src: url("/assets/fonts/Parastoo-Medium.ttf") format("truetype");
  font-weight: 500;
}




*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


html, body {
  height: 100%;
  width: 100%;
  font-family: Poppins;
  scroll-behavior:auto;
  background-color: var(--back-color);
  font-family: Poppins;
}

body {
  overflow-x: hidden;
}








:root {
  /* Primary brand colors */
  --primary-color: #00b600;   
  --accent-color: #007200;  
  --secondary-color: #fcc100;
  --border-color: #bbbbbb;  
  --card-color: #f0f0f0;  
  --back-color: #ffffff;           
  --text-color: #333;           
  --sub-text: #636363; 
}






/*NAVIGATIONS*/
.navigations{
  width: 100%;
  padding: 0.5rem 15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(78, 78, 78, 0.404);
  backdrop-filter: blur(5px);

  position: fixed;
  top: 0px;
  z-index: 9999;
}

.admContainer button{
  font-weight: 400;
  font-size: 0.9rem;
  font-family: Poppins;
  color: var(--back-color);
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0.4rem 1rem;
  background-color: var(--primary-color);
  cursor: pointer;

  animation: navbtn 1.5s infinite ease-in-out;
  transform: scale(1);
}

@keyframes navbtn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}


.admContainer button:hover{
  animation: btn_0_Popup 0.3s ease-in-out forwards;
}

@keyframes btn_0_Popup {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.10);
  }
}

.sectionActionContainer button{
font-weight: 400;
  font-size: 0.9rem;
  font-family: Poppins;
  color: var(--back-color);
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0.4rem 1rem;
  background-color: var(--primary-color);
  cursor: pointer;
}

.sectionActionContainer button:hover{
  animation: cancelbtn_0_Popup 0.3s ease-in-out forwards;
}

@keyframes cancelbtn_0_Popup {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.10);
  }
}


.aContainer{
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.aContainer a{
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--back-color);
  text-decoration: none;
}


.logoContainer{
  display:flex;
  align-items: center;
  cursor: pointer;
}

.logoContainer img{
  width: 250px;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.3));
}












/*NAVIGATIONS MOBILE*/
.navigatiions_mobile{
  width: 100%;
  padding: 0.5rem 1rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(78, 78, 78, 0.404);
  backdrop-filter: blur(5px);

  font-size: 28px;
  cursor: pointer;
  color: var(--back-color);

  position: fixed !important;
  top: 0px;
  z-index: 9999;
}


.navigatiions_mobile .logoContainer{
  display:flex;
  align-items: center;
  cursor: pointer;
}

.navigatiions_mobile .logoContainer img{
  width: 250px;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.3));
}






/*MOBILE NAVIGATION CONTENT CONTAINER*/

.mobile_Nav_Container{
  width: 100%;
  min-height: 25vh;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0.5rem 1rem;
  background-color: rgba(78, 78, 78, 0.404);
  backdrop-filter: blur(5px);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  transform: translateY(-100%);
  transition: ease-in-out 0.4s;
}

.mobile_Nav_Container_active{
  transform: translateY(0);
}

.mobileMask{
  height: 100vh;
  width: 100vw;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;

  display: none;
}

.mobile_logoContainer{
  display: flex;
  justify-content: space-between;

  font-size: 3rem;
  color: var(--back-color);
  line-height: 1;
  font-weight: 100;
}


.mobile_Nav_Container_Inner{
  padding: 0rem 1rem;
  margin: 2rem 0px;
}

.mobile_Nav_Container p{
  text-decoration: none;
  color: var(--back-color);
  padding: 0.2rem 0rem;
  line-height: 1;

  display: flex;
  justify-content: space-between;

  cursor: pointer;
  padding: 0.7rem 0rem;
  border-bottom: 1px solid var(--card-color);
}


.abtnavigationchevron,
.admnavigationchevron,
.prtnavigationchevron{
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0rem 0.5rem;
  padding-top: 0.6rem;
  height: 10px;


  transition: transform 0.3s ease;
}


.mobile_Nav_Container a{
  text-decoration: none;
  color: var(--back-color);
  padding: 0.2rem 0rem;

  cursor: pointer;
}




.about_subMenu,
.portal_subMenu,
.admission_subMenu{
  display: none;
  flex-direction: column;
  color: var(--back-color);
  cursor: pointer;
}

.subMenu_active{
  display: flex;
  cursor: pointer;

  margin-left: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}












/*GLOBAL STYLES*/

.sectionWrapper{
  width: 100vw;
  height: 100vh;

  display: flex;
  flex-direction: column;
}

.sectionHeader h1{
  font-size: 6rem;
  font-weight: 600;
  line-height: 100px;
  color: var(--primary-color);
}

.sectionHeader p{
  width: 400px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 20px;
  color: var(--text-color);
}

.sectionHeader .sectionLogo{
  width: 90px;
  height: 90px;
}

.logoschoolnameTxtContainer{
  display: flex;
  gap: 10px;

  align-items: center;
}

.schoolnameCon{
  display: flex;
  flex-direction: column;
}

.schoolnameCon span{
  font-family:Parastoo;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.07rem;
  line-height: 0.8;
  color: var(--accent-color);
}

.schoolnameCon .tagline{
  font-family: Parastoo;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0em;
  color: var(--sub-text);

  margin-bottom: 0px;
}

.sectionHeader{
  width: 100%;
  height: 20vh;
  padding: 0.5rem 15rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sectionsubHeadtitle{
  width: 100%;
  height: 10vh;
  padding: 0.5rem 15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sectionsubHeadtitle h3{
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

.sectionContentcontainer{
  width: 100%;
  height: 70vh;
  padding: 0.5rem 15rem;
}











/*INDEX STYLES*/

.lPagewrapper{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  
}

.lPageTxtContainer{
  position: absolute;
  top: 0px;
  left: 0px;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  z-index: 50;
}

.lPageTxtContainer h1{
  font-size: 5rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  padding: 0px 15rem;
    
  line-height: 99px;
  text-align: center;
  color: var(--back-color);

  animation: lpageh1Entry 1.5s ease forwards;
  transform: translateY(100px)
}


@keyframes lpageh1Entry {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.lPageTxtContainer p{
 opacity: 0;

  font-size: 1rem;
  font-weight: 400;

  letter-spacing: 2px;
  -webkit-text-size-adjust: 100%;
    
  line-height: 99px;
  text-align: center;
  color: var(--back-color);

  animation: lpageEntry 1.5s ease forwards;
  animation-delay: 0.5s;
  transform: translateY(100px)
}


@keyframes lpageEntry {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



.lPageTxtContainer span{
  font-weight: 600;
  font-size: 5rem;
  color: var(--primary-color);
}

.lPageTxtContainer button{ 
  font-weight: 600;
  font-size: 2rem;
  color: var(--back-color);
  position: absolute;
  bottom: 5rem;


  background: none;
  border: none;
  outline: none;

  animation: scrollIndicator 1.5s infinite ease-in-out;
  transform: translateY(0) rotate(-90deg);
}

@keyframes scrollIndicator {
  0% {
    transform: translateY(0) rotate(-90deg);
  }
  50% {
    transform: translateY(20px) rotate(-90deg);
  }
  100% {
    transform: translateY(0) rotate(-90deg);
  }
}



.lPagewrapper img{
  width: 100vw;
  height: 100vh;
  
  object-fit: cover;
}

.Lbackdrop{
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--text-color);
  opacity: 0.5;
}


.updateCard{
  position: absolute;
  bottom: 5rem;
  right: 15rem;

  display: flex;
  flex-direction: column;
  align-items:start;
  justify-content: center;

  width: 250px;
  height: 130px;
  border-radius: 15px;
  background-color: rgba(78, 78, 78, 0.230);
  backdrop-filter: blur(5px);
  border: 1px solid #868686;
  padding: 1rem 2rem;

  z-index: 999;
  opacity: 0;

  animation: updateEntry 1.5s ease forwards;
  animation-delay: 0.5s;
  transform: translateY(100px)
}


@keyframes updateEntry {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.updateCard h1{
  font-size: 2.5rem;
  color: var(--back-color);
  font-weight: 400;

  line-height: 1;
  margin-bottom: 0.7rem;
}

.updateCard p{
  font-size: 1rem;
  color: var(--back-color);
  font-weight: 400;

  line-height: 1;
}












/*LIFE AT AICTI SECTION STYLES*/

.lataictiSectionWrapper{
  width: 100vw;
  height: 100vh;

  display: flex;
  flex-direction: column;
  position: relative;
}

.lataictiheader{
  margin-top: 10vh;
}

.lataictiImgcon{
  width: 100vw;
  height: 50vh;
  overflow: auto;

  /* Firefox */
  scrollbar-width: none ;  
}

/* Chrome, Edge, Safari */
.lataictiImgcon::-webkit-scrollbar {
  display: none;
}


.lataictiImgConInner{
  height: 50vh;

  display: flex;
  padding: 3vh 15rem;
  gap: 20px;

  transition: transform 0.5s ease-in-out;
}

.lifeatasly_Chevronholder_Outer{
  justify-content: flex-end !important;
}

.lifeatasly_Chevronholder{
  display: flex;
  gap: 1rem;
}

.material-icons-round{
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  color: var(--back-color);
  font-size: 1rem;
  font-weight: 400;

  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.1rem;

  border-radius: 5px;

  cursor: pointer;
}

.material-icons-round:hover{
  animation: cancelbtn_0_Popup 0.3s ease-in-out forwards;
}

@keyframes cancelbtn_0_Popup {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.10);
  }
}


.lataictiImgcon img{
  height: 100%;
  transition: ease-in-out 0.3s;

  border-radius: 5px;
}

.lataictiImgcon img:hover{
  transform: translateY(-20px);
}


.lataictiColumn p{
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-color);
  margin-top: 10px;
}










/*PROGRAM SECTION STYLES*/

.programContainer{
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.programContentcontainer img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 0.3s;
}

.cardMask{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.404);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: ease 0.3s;
}

.cardMask:hover{
  opacity: 1;
  cursor: pointer;
}

.programContentcontainer{
  width: 100vw;
  height: 70vh;
  padding: 2rem 15rem 5rem 15rem;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "programCardcontainer1 programCardcontainer2 programCardcontainer3"
                       "programCardcontainer4 programCardcontainer5 programCardcontainer6";
  gap: 20px;
}


/* JUST REMOVE THIS IF ANY PROFRAM IS ADDED*/
.seniorsProgram_container{
  height: 40vh !important;

  padding: 2rem 15rem 5rem 15rem;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "programCardcontainer1 programCardcontainer2 programCardcontainer3";
  gap: 20px;
}



.programCardcontainer1,
.programCardcontainer2,
.programCardcontainer3,
.programCardcontainer4,
.programCardcontainer5,
.programCardcontainer6 {

  position: relative;
  overflow: hidden;
  background-color: var(--sub-text);

  border-radius: 5px;
}

.programCardcontainer1:hover img {
  transform: scale(1.1);
}

.programCardcontainer2:hover img {
  transform: scale(1.1);
}

.programCardcontainer3:hover img {
  transform: scale(1.1);
}

.programCardcontainer4:hover img {
  transform: scale(1.1);
}

.programCardcontainer5:hover img {
  transform: scale(1.1);
}

.programCardcontainer6:hover img {
  transform: scale(1.1);
}



.programCardcontainer1:hover .cardTxt{
  opacity: 1;
}

.programCardcontainer2:hover .cardTxt{
  opacity: 1;
}

.programCardcontainer3:hover .cardTxt{
  opacity: 1;
}

.programCardcontainer4:hover .cardTxt{
  opacity: 1;
}

.programCardcontainer5:hover .cardTxt{
  opacity: 1;
}

.programCardcontainer6:hover .cardTxt{
  opacity: 1;
}



.cardTxtcontainer{
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 0px;

  padding: 0px 1rem;
  pointer-events: none;
}

.cardTxt{
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--back-color);
  opacity: 0;

  transition: ease 0.7s;
}

.cardTxtcontainer span{
  font-size: 0.8rem;
  font-weight: 600;
  padding: 1px 5px;
  color: var(--back-color);
  background-color: var(--primary-color);
}












/*PROMOTION*/

.promotionContainer{
  width: 100%;
  height: 30vh;
}

.promotionContainer:hover span{
  color: var(--primary-color);
}


.promotionInner{
  width: 100%;
  height: 100%;
  padding: 0rem 15rem;


  display: flex;
  justify-content: center;
  align-items: center;
}

.promotionInner P{
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sub-text);
  margin-bottom: 1rem;

  line-height: 2;
}













/*SPEECH*/

.speechContainer{
  width: 100%;
  height: 30vh;
}

.speechContainer:hover span{
  color: var(--primary-color);
}

.speechInner{
  width: 100%;
  height: 100%;
  padding: 0rem 15rem;


  display: flex;
  justify-content: center;
  align-items: center;
}

.speechInner P{
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sub-text);
  margin-bottom: 1rem;

  line-height: 2;
}













/*INDEX LOGO CONTAINER*/
.indexLogo_Cotainer{
  width: 100%;

  padding: 0rem 15rem;
  margin: 5rem 0rem;
}

.indexLogo_Cotainer img{
  width: 100%;
}













/*FOOTER SECTION STYLES*/

.footerWrapper{
  display: flex;
  flex-direction: column;

  padding: 15px;
} 

.footerWrapper_Inner{
  position: relative;
  overflow: hidden;

  border-radius: 15px;
}

.footer_Cover{
  object-fit: cover;

  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;

  z-index: 0 !important;
}

.footerMask{
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.8;

  position: absolute;
  top: 0;
  left: 0;

  z-index: 5 !important;
}

.footerColcon{
  display: flex;
  justify-content: space-between;
  padding: 5rem 15rem;

  margin-top: 5rem;

  position: inherit;
  z-index: 10;
}

.footerColumn{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footerColumn h3{
  font-weight: 600;
  font-size: 0.9rem;

  color: var(--back-color);
}

.footerColumn a{
  text-decoration: none;
  color: var(--sub-text);
  font-size: 0.9rem;

  color: var(--back-color);
}

.footerColumn a:hover{
  text-decoration: underline;
  color: var(--primary-color);
}

.cr_socialsCon{
  width: 100%;
  padding: 5rem 15rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: inherit;
  z-index: 10;
}

.cr_socialsCon .crTxt{
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 0.9rem;
  color: var(--sub-text);

  color: var(--back-color);
}










/* SOCIALS */

.social_wapper{
  display: flex;
  gap: 10px;

  justify-content: flex-end;
}

.socials{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-color: var(--primary-color);

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--primary-color);
  transition: 0.3s ease;
}

.socials:hover{
  animation: btn_0_Popup 0.3s ease-in-out forwards;
}

@keyframes btn_0_Popup {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.10);
  }
}

.socials i{
  font-size:small;
  color: var(--back-color);
}











/*ABOUT PAGE STYLES*/

.aboutWrapper{
  min-height: 100vh;
  width: 100vw;

  display: flex;
  flex-direction: column;
}

.aboutHeader{
  margin-top: 10vh;
}

.aboutWrapper p{
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sub-text);
  margin-bottom: 1rem;
}

.aboutpageContentcontainer{
  width: 100%;
  min-height: 60vh;

  display: flex;
  gap: 3rem;

  padding: 0rem 15rem;
}

.aboutpageContentcontainer h3{
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600; 
}

.aboutpageContentcontainer_Inner{
  width: 100%;
  min-height: 50vh;

  display: flex;
  flex-direction: column;

  justify-content: baseline;
}

.aboutpageContentcontainer_Inner span{
  transition: ease-in-out 0.3s;
}

.aboutpageContentcontainer_Inner:hover span{
  color: var(--primary-color);
}


.aboutpageNavigations{
  width: 20%;
  height: 30vh;

  display: flex;
  flex-direction: column;
  padding: 0px 1rem;
  gap: 1rem;

  position: sticky;
  top: 40vh;
}

.aboutpageNavigations h3{
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.aboutpageNavigations .aboutNav_Atag{
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--sub-text);
}

.aboutNav_Atag.active {
    color: var(--primary-color);
}

.aboutpageNavigations a:hover{
    color: var(--primary-color);
}


.aboutpage_imgContainer{
  width: 100%;
  height: 50vh;

  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem ;

  border-radius: 5px;
}

.aboutpage_imgContainer img{
  width: 100%;
  height: 100%;

  object-fit: cover;
  transition: ease-in-out 0.4s;
}

.aboutpage_imgContainer:hover img{
  transform: scale(1.05);
}







/*LOGO AND SYMBOLS*/

.aboutLogo_Container{
  display: flex;

  justify-content: center;
  align-items: center;

  margin: 5rem 0rem;
}

.aboutLogo_Container img{
  width: 300px;
  height: 300px;
}

.aboutSecondary_logo{
  width: 100%;
  margin: 5rem 0rem 3rem 0rem;
}










/*ABOUT FACILITIES STYES*/


.facility_Con{
  display: flex;
  gap: 2rem;

  height: 30vh;
  margin-bottom: 2rem;
}

.facility_Con:hover img{
  transform: scale(1.1);
}

.facility_Con span{
  transition: ease-in-out 0.4s;
}

.facility_Con:hover span{
  color: var(--primary-color);
}

.secondary_button{
  width: 80px;
  padding: 0.4rem 1rem;

  border: solid 1.7px var(--primary-color);
  border-radius: 5px;

  color: var(--primary-color);
  background-color: var(--back-color);

  font-family: Poppins;

  cursor: pointer;
}

.facilityImg_Con{
  width: 35%;
  height: 100%;

  overflow: hidden;

  border-radius: 5px;
}

.facilityImg_Con img{
  height: 100%;
  object-fit: cover;

  transition: ease-in-out 0.4s;
}


.facilityDesc_Con{
  width: 65%;
  display: flex;
  flex-direction: column;
}










.programsWrapper{
  width: 100%;
  overflow: hidden;

  padding-top: 5rem;
}

.proramsHeader p{
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--text-color) !important;
}

.programCon1{
  padding: 1rem 15rem;
}

.programsWrapper h3 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

.programsWrapper p{
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sub-text);
}

.programsContentContainer{
  width: 100%;
  min-height: 100vh;
  padding: 0 clamp(1rem, 6vw, 10rem);
}

.programConInner{
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.programImgWrapper{
  flex: 0 0 30%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 5px;
}

.programDesccontainer{
  flex: 1;
}

.programImgWrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.programConInner:hover img{
  transform: scale(1.05);
}








/*REQUIREMENTS PAGE STYLES*/

.requirementspageWrapper{
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.requirementsHeader{
  margin-top: 10vh;
}

.sectionActionContainer{
  width: 100%;
  height: 10vh;
  padding: 1rem 15rem;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.requirementsContentcontainer1{
  width: 100vw;
  height: 40vh;
  padding: 2rem 15rem 5rem 15rem;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.requirementsContentcontainer2{
  width: 100vw;
  height: 75vh;
  padding: 2rem 15rem;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admissionRequirements{
  flex: 1;
  padding: 1.5rem;

  border: 1.5px solid var(--primary-color);
  border-radius: 15px;
}

.admissionRequirements h3{
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;

  margin-bottom: 2rem;
}

.admissionRequirements p{
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.requirementsBtncon{
  display: flex;
  gap: 20px;
}

.requirementsBtncon button{
  font-weight: 400;
  font-size: 0.9rem;
  font-family: Poppins;
  color: var(--back-color);
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0.4rem 1rem;
  background-color: var(--primary-color);
  cursor: pointer;
}

.requirementsBtncon button:hover{
  animation: btn_0_Popup 0.3s ease-in-out forwards;
}

@keyframes btn_0_Popup {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.10);
  }
}









/*PROCEDURES*/
.procedurespageWrapper{
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.proceduresHeader{
  margin-top: 10vh;
}

.procedureContentContainer_Inner{
  width: 100%;
  min-height: 50vh;

  padding: 0.5rem 15rem;
}

.procedureContentContainer_Inner h3{
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;

  margin-bottom: 2rem;
}

.procedureContentContainer_Inner p{
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.procedureContentContainer_Inner a{
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.procedureContentContainer_Inner span{
  color: var(--primary-color);
}









/* ADMISSION PAGE STYLES*/

.admissionContentCotainer{
  width: 100%;
  min-height: 60vh;

  display: flex;
  flex-direction: column;

}

.addIndiCon{
  width: 100%;
  height: 20vh;
  margin-top: 10vh;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 2rem 15rem;
  flex-wrap: nowrap
}

.stpIndicatorContaier{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.stpIndicatorContaier p{
  color: var(--sub-text);
  font-weight: 400;
  font-size: 0.9rem;
}

.stpIndicator1,
.stpIndicator2,
.stpIndicator3,
.stpIndicator4{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  color: var(--back-color);
  cursor: pointer;
}

.stpSeperationline{
  width: 100%;
  height: 3px;

  border-radius: 2px;
  background-color: var(--primary-color);
}

.addContentInner{
  width: 100%;
  min-height: 60vh ;

  padding: 1rem 15rem;

  display: flex;
  flex-direction: column;
}











/*FORM QUESTION STYLES*/
.addContentInner p{
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.addContentInner form{
  width: 100%;
  border-radius: 5px;
  padding: 20px;
  gap: 20px;

  display: flex;
  flex-direction: column;
  
  border: 1.5px solid var(--border-color);
  margin-bottom: 3rem;
}

.formHolder{
  margin-bottom: 2rem;
}

.addContentInner label{
  color: var(--text-color);
  font-weight: 400;
  font-size: 0.9rem;
}


.addContentInner form div{
  display: flex;
  gap: 1rem;
}

.addContentInner input{
  border: none;
  outline: none;
  font-family: Poppins;
  border-radius: 5px;
}






.seniorhighstrand,
.tesdaPrograms,
.tesdaCourses1,
.tesdaCourses2,
.tesdaCourses3{
  display: none;
}













/*STUDENT INFORMATION FORM STYLES*/  
.Rqd_Form{
  gap: 20px;
  border: none !important;
  padding: 0px !important;

  display: flex;
  flex-direction: column;

  background-color: var(--back-color) !important;
  margin-bottom: 0rem !important;
}

.Rqd_Form .formSection_title{
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--primary-color);

  margin-bottom: 0px;
  margin-top: 1rem;
  line-height: 1;
}

.Rqd_Form select{
  outline: none;
  font-family: Poppins;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  width: 100%;
  border: 1.5px solid var(--border-color);
  background-color: var(--back-color);
}

.Rqd_Form input:focus{
  border: 1.5px solid var(--primary-color);
  box-shadow: 0px 0px 3px var(--primary-color);
}

.studentInformation_Form{
  display: flex;
  flex-direction: column;

  width: 100%;
  border-radius: 5px;
  padding: 20px;
  gap: 20px;
  flex-direction: column;
  border: 1.5px solid var(--border-color);
  margin-bottom: 3rem;

}

.studentInformation_Form input{
  padding: 0.5rem 1rem;
  width: 100%;
  border: 1.5px solid var(--border-color);
}


.studentAddress_Form{
  display: flex;
  flex-direction: column;

  width: 100%;
  border-radius: 5px;
  padding: 20px;
  gap: 20px;
  flex-direction: column;
  border: 1.5px solid var(--border-color);
  margin-bottom: 3rem;
}

.studentAddress_Form input{
  padding: 0.5rem 1rem;
  width: 100%;
  border: 1.5px solid var(--border-color);
}


.studentContact_Form{
  flex-direction: row !important;

  width: 100%;
  border-radius: 5px;
  padding: 20px;
  gap: 20px;
  flex-direction: column;
  border: 1.5px solid var(--border-color);
  margin-bottom: 3rem;
}

.studentContact_Form input{
  padding: 0.5rem 1rem;
  width: 100%;
  border: 1.5px solid var(--border-color);
}





/*PERMANENT ADDRESS MODAL*/

#copyModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  align-items: center;
  flex-direction: column;

  color: var(--text-color);
  font-family: Poppins;
  font-size: 0.9rem;
}

#copyModal p{
  margin-bottom: 0.5rem;
}

.copyModal_btn_con{
  display: flex;
  gap: 1rem;
}

.copyModal_btn_con button{
font-weight: 400;
  font-size: 0.9rem;
  font-family: Poppins;
  color: var(--back-color);
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0.4rem 1rem;
  background-color: var(--primary-color);
  cursor: pointer;
}

#modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}






/*CONFIRMATION PAGE STYLES*/

.confirmInfoForm{
  margin-bottom: 1rem !important;
}

.confirmationbtnCon{
  justify-content: space-between !important;
}

.confirmationbtnCon_Inner{
  display: flex;
  gap: 0.5rem;
}

.confirmationbtn_holder label{
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--sub-text);
}

.confirmationbtn_holder a{
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--primary-color);
}

.confirmationbtn_holder span{
  font-size: 1rem;
  color: red;
}


.confirmationbtn_holder{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}








/*COMPLETE PAGE STYLES*/

.stpIndicator1.completed,
.stpIndicator2.completed,
.stpIndicator3.completed,
.stpIndicator4.completed {
  background-color: #fcc100;
}

.successMessage {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 2rem 1rem;
  margin: 20px 15rem;
}

.successMessage h3 {
  color: #155724;
  margin-bottom: 15px;
  margin-left: 1rem;
  font-size: 1rem;
}

.successMessage > p {
  color: #155724;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.enrollmentDetails {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;

  font-size: 0.9rem;
  margin: 1rem 0rem;
}

.enrollmentDetails h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1rem;
}

.enrollmentDetails .details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: #555;
}

.enrollmentDetails .status-badge {
  color: #856404;
  font-weight: bold;
}

.enrollmentDetails .reference-id {
  color: #6c757d;
  margin-top: 15px;
  font-size: 14px;
}










/*CONATCT*/


.ContactContentCotainer{
  width: 100%;
  height: 140vh;

  display: flex;
  flex-direction: column;
}

.contactHeader{
  margin-top: 10vh;
}

.ContactIndiCon{
  width: 100%;
  height: 20vh;
  margin-top: 10vh;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 2rem 15rem;
  flex-wrap: nowrap
}

.ContactContentInner{
  width: 100%;
  height: 100vh;

  padding: 1rem 15rem;

  display: flex;
  flex-direction: column;
}

.ContactContentInner p{
  text-decoration: none;
  color: var(--sub-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-bottom: 3rem;
}

.ContactContentInner h3{
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  
}








/*LAPTOP*/

@media (min-width: 1000px) and (max-width: 1440px) {


  /*NAVIGATIONS LAPTOP*/
  .navigations {
    padding: 0.5rem 10rem;
  }

  .admContainer button {
    font-size: 0.7rem !important;
  }

  .aContainer {
    gap: 2rem !important;
  }

  .aContainer a {
    font-size: 0.8rem;
  }

  .logoContainer img{
    width: 200px;
  }


  /*SECTION HEADER*/
  .sectionHeader {
    padding: 0.5rem 10rem;
  }

  .sectionHeader h1 {
    font-size: 4rem;
  }

  /*SECTION SUBTITLE*/

  .sectionsubHeadtitle {
    padding: 0.5rem 10rem;
  }



  /*INDEX STYLES*/


  /*LIFE AT ASLY SECTION STYLES*/

   .lataictiImgConInner {
    padding: 3vh 10rem;
  }

  /*PROGRAMS SECTION STYLES*/

   .programContentcontainer{
    padding: 3vh 10rem;
  }


  /*PROMOTION*/
  .promotionInner {
    padding: 0rem 10rem;
    display: flex;
  }

  .promotionInner P {
    font-size: 0.8rem;
  }

  /*SPEECH*/

  .speechInner {
    padding: 0rem 10rem;
  }

  .speechInner P {
    font-size: 0.8rem;
  }

  /*INDEX LOGO */
  .indexLogo_Cotainer {
    padding: 0rem 10rem;
  }

  /*FOOTER*/

  .footerColcon {
    padding: 5rem 9rem;
  }

  .footerColumn h3 {
    font-size: 0.8rem;
  }

  .footerColumn a {
    font-size: 0.8rem;
  }

  .cr_socialsCon {
    padding: 5rem 9rem;
  }







  /*ABOUT PAGE STYLES*/

  .aboutWrapper p {
    font-size: 0.8rem;
  }


  /*ABOUT PAGE NAVIGATIONS*/

.aboutpageNavigations .aboutNav_Atag {
  font-size: 0.8rem;
}



  /*SCHOOL PROFILE*/

  .aboutpageContentcontainer {
    padding: 0rem 10rem;
  }








  


  /*PROGRAM PAGE STYLES*/
  .programCon1 {
    padding: 1rem 10rem;
  }

  .programsWrapper p {
    font-size: 0.8rem;
  }









  /*ADMISSION PAGE STYLES*/

  /*REQUIREMENTS*/

  .requirementsContentcontainer1 {
    padding: 2rem 10rem;
    min-height: 40vh;
  }

  .requirementsContentcontainer2 {
    padding: 2rem 10rem;
    min-height: 80vh;
  }

  .admissionRequirements p {
    font-size: 0.8rem;
  }


  /*PROCEDURES*/

  .procedureContentContainer_Inner {
    padding: 0.5rem 10rem;
  }

  .procedureContentContainer_Inner p {
    font-size: 0.8rem;
  }

  .procedureContentContainer_Inner a {
    font-size: 0.8rem;
  }



  /*ONLINE APPLICATION*/

  .addIndiCon {
    padding: 2rem 10rem;
  }

  .addContentInner {
    padding: 1rem 10rem;
  }

  .stpIndicatorContaier p {
    font-size: 0.8rem;
  }

  .addContentInner label {
    font-size: 0.8rem;
  }

  .sectionActionContainer {
    padding: 1rem 10rem;
  }



  /*COMPLETE*/

  .successMessage {
    margin: 20px 10rem;
  }

  .successMessage > p {
    font-size: 0.8rem;
  }

  .enrollmentDetails .details-grid {
    font-size: 0.8rem;
  }









 /*PORTAL PAGE STYLES */

  /*STUDENT*/



  /*FACULTY*/


  /*CONTAINER 1*/
  .facultyLogo_Cotainer {
    height: 7.5vh;
  }

  .faculty_login_DescCon h1 {
    font-size: 4rem;
  }

  .cr_socialsCon_faculty .crTxt_faculty {
    font-size: 0.8rem;
  }


  /*CONTAINER 2*/

  .form_Inner_faculty input {
    padding: 0.6rem;
  }

  .form_Inner_faculty button {
    padding: 0.6rem;
  }







/*CONTACT */

  .ContactContentInner {
    padding: 1rem 10rem;
  }

  .ContactContentInner p {
    font-size: 0.8rem;
  }

}









/*MOBILE*/

@media (max-width: 1000px) { 



  /*ABOUT WRAPPERS STYLES*/
  .aboutWrapper{
    padding-top:5rem;
  }




  /*NAVIGATIONS MOBILE*/
  .navigations{
     display: none;
  } 

  .navigatiions_mobile{
     display: flex;
  } 





  /* L PAGE TEXT*/
  .lPageTxtContainer h1 {
    font-size: 2.5rem;
    padding: 0px 3rem;
    line-height: 1;
  }

  .lPageTxtContainer span {
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-color);
  }

  .lPageTxtContainer p {
    font-size: 0.7rem;
    padding: 0rem 2rem;
    line-height: 1;

    position: absolute;
    bottom: 10rem;
  }

  .lPageTxtContainer button {
    bottom: 3rem;
  }









  /*SECTION HEADER*/
  .sectionHeader {
    width: 100%;
    height: 20vh !important;
    padding: 0rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    }

  .sectionHeader h1 {
    font-size: 2.5rem;
    line-height: 1 !important;
    font-weight: 600;
    line-height: 100px;
    color: var(--primary-color);

    margin-bottom: 1rem;
  }

  .sectionHeader p {
    width: 100%;
    font-size: 0.7rem !important;
    font-weight: 600;
    line-height: 1;
    color: var(--text-color);
  }

  .sectionsubHeadtitle {
    width: 100%;
    height: 10vh;
    padding: 0rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }









  /*LIFE AT ASLY*/

  .lataictiSectionWrapper {
    width: 100vw;
    height: 200vh;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .lataictiColumn{
    height: 30vh;
    overflow: hidden;
  }

  .lataictiColumn img{
    width: 100%;
    object-fit: cover;
  }

  .lataictiImgcon {
    width: 100vw;
    height: 100%;
    overflow: visible;
    scrollbar-width: none;
  }

  .lataictiImgConInner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 3vh 2rem;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
  }

  .lataictiImgcon img {
    width: 100% !important;
    transition: ease-in-out 0.3s;
    border-radius: 0px;
  }

  .lataictiImgcon img:hover {
    transform: translate(none);
  }

  .lifeatasly_Chevronholder_Outer{
    display: none;
  }









  /*PROGRAM*/

  .programContainer {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .programHeader {
    margin-top: 10vh;
  }
  

  .programContentcontainer {
    width: 100vw;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .programCon1{
   padding: 0rem;
  }

  .programContentcontainer img{
    width: 100%;
    object-fit: cover;
    transition: ease 0.3s;
  }

  .cardMask {
    opacity: 1;
  }

  .cardTxt {
    opacity: 1;
    font-size: 0.7rem;
  }

  .programCardcontainer1, 
  .programCardcontainer2, 
  .programCardcontainer3, 
  .programCardcontainer4, 
  .programCardcontainer5, 
  .programCardcontainer6 {

    height: 30vh;
    position: relative;
    overflow: hidden;
    background-color: var(--sub-text);
    border-radius: 0px;
  }









  /*PROMOTION*/
  .promotionContainer {
    width: 100%;
    min-height: 50vh;
  }

  .promotionInner {
    padding: 0rem 2rem;
  }

  .promotionInner P {
    font-size: 0.7rem;
    line-height: 1.5;
  }









  /*SPEECH*/

.speechContainer {
    width: 100%;
    min-height: 50vh;
  }

  .speechInner {
    padding: 0rem 2rem;
  }

  .speechInner P {
    font-size: 0.7rem;
    line-height: 1.5;
  }










  /*lOGO LANDING PAGE*/
  .indexLogo_Cotainer {
    width: 100%;
    padding: 0rem 2rem;
    margin: 4rem 0rem 2rem 0rem;
  }






  /*FOOTER*/
  .footerWrapper {
    padding: 0px;
  }

  .footerWrapper_Inner {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .footerColcon {
    display: none;
  }

  .footerColumn a {
    font-size: 0.7rem;
  }





  /*SOCIAL CON INDEX*/
  .cr_socialsCon {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    position: inherit;
    z-index: 10;
    gap: 1rem;
  }

  .cr_socialsCon .crTxt {
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 0.9rem;
    color: var(--sub-text);
    color: var(--back-color);
  }









  /*ABOUT SECTION:*/



  /*ABOUT NAVIGATIONS*/
  .aboutpageNavigations {
    display: none;
  }




  /*SCHOOL PROFILE*/
  

  .aboutpageContentcontainer {
    width: 100%;
    min-height: 60vh;
    display: flex;
    gap: 3rem;
    padding: 0rem 2rem;
  }

  .aboutHeader{
    display: none;
  }

  .aboutpage_imgContainer {
    width: 100%;
    height: 30vh;
    border-radius: 0px;
  }

  .logoschoolnameTxtContainer {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .aboutWrapper p {
    font-size: 0.7rem;
  }





  

  /*FACILITIES*/

  .facility_Con {
    flex-direction: column;
    gap: 2rem;
    min-height: 70vh;
    margin-bottom: 2rem;
  }

  .facilityImg_Con {
    width: 100%;
    height: 30vh;
    border-radius: 0px;
  }

  .facilityDesc_Con {
    width: 100%;
  }

  .facilityImg_Con img {
    width: 100%;
  }






  /*OTHER PAGES STYLES*/


  

  /*PROGRAM PAGE*/
  .programsWrapper {
    height: auto;
  }

  .proramsContentcontainer1,
  .proramsContentcontainer2,
  .proramsContentcontainer3,
  .proramsContentcontainer4 {
    height: auto;
    padding: 0 2rem;
  }

  .programCon1,
  .programCon2,
  .programCon3 {
    height: auto;
  }

  .programConInner {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 2rem 0px;
  }

  .programImgWrapper {
    width: 100%;
    height: 30vh;
    border-radius: 0px;
  }

  .programDesccontainer {
    width: 100%;
  }

  .programConInner p {
    font-size: 0.7rem;
  }









/*PROCEDURES*/


.procedurespageWrapper {
  padding-top: 5rem;
  min-height: 100vh;
}

.procedureContentContainer_Inner {
  padding: 0.5rem 2rem;
}

.procedureContentContainer_Inner p {
  font-size: 0.7rem;
}

.procedureContentContainer_Inner a {
  font-size: 0.7rem;
}








/*REQUIREMENTS*/

  .requirementspageWrapper {
    padding-top: 5rem;
  }

  .admissionRequirements p {
    font-size: 0.7rem;
  }

  .requirementsHeader{
    margin-top: 5vh;
    text-align: center;
  }
  
  .requirementsContentcontainer1,
  .requirementsContentcontainer2{
    width: 100%;
    height: auto;
    padding: 0.5rem 2rem;
  }

  .admissionRequirements{
    padding: 1rem;
  }

  .admissionRequirements h3{
    font-size: 0.95rem;
  }

  .requirementsBtncon{
    flex-direction: column;
    gap: 10px;
  }










/*ONLINE APPLICATION*/

.addIndiCon {
  padding: 2rem 2rem;
}

.requirementsBtncon button {
  font-size: 0.7rem;
}

.addContentInner {
  padding: 1rem 2rem;
  min-height: 35vh;
}

.stpIndicatorContaier p {
  font-size: 0.7rem;
  line-height: 1;
}

.addContentInner label {
  font-size: 0.7rem;
}

.sectionActionContainer {
  padding: 1rem 2rem;
}

.sectionActionContainer button {
  font-size: 0.7rem;
}







/*PERSONAL DETAILS*/

.Rqd_Form .formSection_title {
  font-size: 0.7rem;
  margin-top: 0rem;
}

.eduAttainmentCon{
  display: flex !important;
  flex-direction: row !important;
}

.studentInformation_Form input {
  font-size: 0.7rem;
}

.studentAddress_Form input {
  font-size: 0.7rem;
}

.studentContact_Form {
 flex-direction: column !important;
}

.studentContact_Form input {
  font-size: 0.7rem;
}

.addContentInner form div {
  flex-direction: column;
}






/*CONFIRM*/
.confirmationbtn_holder a {
  font-size: 0.7rem;
}







/*COMPLETE*/
.successMessage {
  margin: 20px 2rem;
}

.successMessage h3 {
  font-size: 0.9rem;
}

.enrollmentDetails h4 {
  font-size: 0.9rem;
}

.successMessage > p {
  font-size: 0.7rem;
}

.enrollmentDetails {
  font-size: 0.7rem;
}

.enrollmentDetails .details-grid {
  display: flex;
  flex-direction: column;
}




  /*CONTACT US*/

  .ContactContentCotainer{
    min-height: 180vh;
    padding-top: 5rem;
  }

  .ContactContentInner {
    width: 100%;
    height: 100%;
    padding: 1rem 2rem;
  }

  
  .ContactContentCotainer .sectionHeader {
    display: none;
  }

  .ContactContentInner p {
    font-size: 0.7rem;
  }



}