*, *::before, *::after {
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  /* cursor:url('/images/cursor.png'), auto; */
}

header{
position: fixed;
z-index: 9998;
width: 100%;
}

.img-magnifier-container {
position:relative;
}

.img-magnifier-glass {
position: absolute;
border: 5px solid white;
box-shadow: 4px 4px 2px black;
border-radius: 50%;
cursor: none;
/*Set the size of the magnifier glass:*/
width: 300px;
height: 300px;
}



/*This is the mother structure for the header*/
.super-header{
width: 100%;
height: 100%;
position: relative;
display: grid;
grid-template-columns: 1fr 6fr ;
grid-template-rows: 1fr;
}


.header-background{
top:0;
position: fixed;
width: 100%;
height: 50px;
z-index: -1;
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(1px);
transition: transform 0.7s ease;
transform: translateY(-100%);
}

.header-visible {
transform: translateY(0);
}

.section-borders{
height: 1px;
border-bottom: 5px solid black;
width: 100%;
}


.blur-load.loaded img{
  opacity: 1;
}

.blur-load img{
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

/*This is the children of superheader, this must move with the super-header*/
.logo-label{
position: absolute;
z-index: 9999;
width: 250px;
height: 50px;
left: 150px;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.5s ease;
cursor: pointer;
}

.logo-label a{
  text-decoration: none;
}

.logo-label h2{
font-family: 'teko.semibold';
color: white;
text-shadow: 3px 3px 4px black;
}

.logo-label-scrolled{
left:150px;
}

.banner-box{
width: 250px;
height: 340px;
position: absolute;
left:150px;
transition: all 0.5s ease;
}

.scrolled {
width: 80px;
height: 110px;
left:100px;
}

.banner-contents{
width: 100%;
height: 100%;
position: relative;
}

#banner{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
position: absolute;
}

#cics-logo{
width: 70%;
height: auto;
position: absolute;
inset: 0;
margin: auto;
}

@media (max-width:550px){
.banner-box{
  left:50px;
}
.scrolled{
  left: 50px;
}
.logo-label{
  left:50px;
}
.logo-label-scrolled{
  left:100px;
}
}

@media (max-width:380px){
.banner-box{
  left:10px;
}
.scrolled{
  left:10px;
}
.logo-label{
  left:10px;
}
.logo-label-scrolled{
  left:55px;
}
}


.top-navigation{
position: absolute;
right: 25px;
width: 500px;
height: 50px;
display: flex;
justify-content: flex-end;
align-items: center;
}

.top-navigation > ul{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
align-items: center;
gap:2ch;
}

.top-navigation a{
text-decoration: none;
color: white;
font-family: 'Tilt Neon', sans-serif;
text-shadow: 3px 3px 4px black;
}

.top-navigation a:hover{
  color: #FF8400;
}

.drop-down-menu{
  display: none;
  width: 50px;
  height: 50px;
  position: relative;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  z-index: 9999;
}

.drop-down-menu span {
  position: absolute;
  width:30px;
  height: 4px;
  background: #fff;
  border-radius: 8px;
  transition: 0.5s;
}

.drop-down-menu span:nth-child(1){
  transform: translateY(-12px);
  left: 10px;
}

.drop-down-menu span:nth-child(2){
  transform: translateY(12px);
  left: 10px;
}

.drop-down-menu.active span:nth-child(3){
  transform: translateX(60px);
}

.drop-down-menu.active span:nth-child(1){
  transform: translateY(0px) rotate(45deg);
  width: 30px;
}

.drop-down-menu.active span:nth-child(2){
  transform: translateY(0px) rotate(-45deg);
  width: 30px;
}

/* here's the code for the drop down */

@media(max-width:1000px){
.top-navigation > ul{
  position: fixed;
  flex-direction: column;
  top:50px;
  right: 25px;
  width: 300px;
  height: 250px;
  margin: 0;
  padding: 0;
  gap:0;
  display: flex;
  text-align: center;
  display: none;
  z-index:9999;
}


.top-navigation > ul li{
  width: 100%;
  height: 50px;
  border: none;
  background-color: rgba(255, 132, 0, 0.9);
  backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
}

.drop-down-menu{
  display: flex;
}
}

@media (max-width:460px){
  .top-navigation > ul {
    width: 200px;
  }
}

@media (max-width:350px){
  .drop-down-menu{
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
  }
  .top-navigation > ul {
    top:unset;
    bottom:80px;
    right: 25px;
    width: 200px;
  }
  }

/* section 1 codes */

.section-1{
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;

}

.bgPulse-background{
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.carousel{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.slide[data-active]{
  opacity: 1;
  transition-delay: 0;
}


.slide-content{
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-content img{
  display: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center ;
}


.slide-information{
  position: absolute;
  max-width: 700px;
  max-height: 800px;
  z-index: 100;
  bottom:1rem;
  left:4.5rem;
  right: 4.5rem;
  overflow: hidden;
  padding-bottom: 2rem;
}

.slide-information h1{
  color: white;
  font-size: 3rem;
  text-shadow: 3px 3px 4px black;
}
.slide-information p{
  color: white;
  font-size: 1.3rem;
  text-shadow: 3px 3px 4px black;
}

@media(max-width:800px){
  .slide-content{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .slide-content img{
    position: static;
    border-bottom: 5px black dashed;
  }
  .slide-information{
    max-width: 100%;
    max-height: 100%;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .slide-information h1{
    color: black;
    font-size: 2rem;
    text-align: center;
    text-shadow: none;
  }
  .slide-information p{
    color: black;
    font-size: 1.3rem;
    text-shadow: none;
    text-align: justify;
  }
}

@media(max-width:680px){
  .slide-information h1{
    font-size: 2rem;
  }
}

@media(max-width:570px){
  .slide-information h1{
    font-size: 1.9rem;
  }
  .slide-information p{
    font-size: 1.1rem;
  }
}

@media(max-width:500px){
  .slide-information h1{
    font-size: 1.8rem;
  }
  .slide-information p{
    font-size: 1rem;
  }
}

@media(max-width:430px){
  .slide-information h1{
    font-size: 1.3rem;
  }
  .slide-information p{
    font-size: 1rem;
  }
}

@media(max-width:380px){
  .slide-information p{
    font-size: 0.8rem;
  }
}

@media(max-width:315px){
  .slide-information h1{
    font-size: 1rem;
  }
}

/* section 2 codes */

.section-2{
  width: 100%;
  height: 1000px;
  overflow: hidden;
}
.ceo-wrapper{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  background-color: rgb(255, 255, 255);
}

.ceo-picture{
  width: 100%;
  height: 1000px;
}

.ceo-picture img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.ceo-info{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows:2fr 1fr;
}
.ceo-header{
  display: flex;
  flex-direction: column;
  justify-content:flex-end ;
  border-left: 20px solid #FF8400 ;
  padding-left: 4rem;
  padding-right: 4rem;
}

.ceo-header span:nth-child(3) {
  width: 40%;
  height: 15px;
  background-color: #FF8400;
  border-radius: 10px;
  margin: 0;
}

.ceo-header span:nth-child(4) {
  width: 90%;
  height: 15px;
  background-color: #072c42;
  border-radius: 10px;
  margin-top: 1ch;
}

.ceo-header span:nth-child(5) {
  width: 60%;
  height: 15px;
  background-color: #FFD93D;
  border-radius: 10px;
  margin-top: 1ch;
}


.ceo-header h1{
  font-size: 4rem;
  margin: 0;
  font-family: 'teko.semibold';
}

.ceo-header h2{
  font-size:  2rem;
  color: #FF8400;
  font-family: 'teko.semibold';
  margin-top: 4rem;
}
.ceo-header p{
  margin-top: 2rem;
  text-align: justify;
  font-family: 'Tilt Neon', sans-serif;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:1rem;
}


@media(max-width:1150px){
  .ceo-wrapper{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
  }
  .ceo-header{
    position: absolute;
    bottom:0;
    border:none;
    padding-bottom: 4rem;
  }
  .ceo-header h1{
    color: white;
    height: 100%;
    box-shadow: 5px 5px 1px #FFD93D;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    border-radius: 10px;
    width: 500px;
    text-align: center;
  }

  .ceo-header p{
    color: white;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
  }
  .ceo-picture img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}



@media (max-width:750px){
  .section-2{
    height: 1400px;
  }
  .ceo-wrapper{
    grid-template-columns: 1fr;
    grid-template-rows:1fr;
    position: relative;
  }
  .ceo-info{
    grid-template-rows: 1fr;
    margin-bottom: 2rem;
  }
  .ceo-header{
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section-2{
    overflow: hidden;
  }
  .ceo-header{
    padding-bottom: 0;
  }

  .ceo-header h1{
    width: 500px;
    height: 250px;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ceo-header h2{
    padding: 1rem;
    font-size: 2.5rem;
    text-align: center;
  }

  .ceo-picture {
    height: 100%;
    position: relative;
  }

  .ceo-picture img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .ceo-header p{
    font-size: 1.8rem;
    margin-top: 1rem;
    padding:1.2rem;
  }
}

@media(max-width:700px){
  .section-2{
    height: 1500px;
  }
  .ceo-header h1{
    font-size: 3rem;
  }
}

@media (max-width:600px){
 .section-2{
  height: 1300px;
 }
 .ceo-header h1{
      width: 90%;
      
    }
  .ceo-header h2{
      padding: 0;
    }
    .ceo-header p{
      font-size: 1.3rem;
      margin-top: 1rem;
      padding:1rem;
    }
}

@media (max-width:500px){
    
}


@media(max-width:400px){
  .ceo-header{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/* codes for section-3 */

.section-3{
  width: 100%;
  height: 1000px;
  overflow: hidden;
}


.dean-wrapper{
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
}

.dean-header{
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem;
}

.dean-header h1{
  font-size: 4rem;
  margin: 0;
  font-family: 'teko.semibold'; 
}

.dean-header h2{
  font-size:  3rem;
  color: #FF8400;
  font-family: 'Tilt Neon', sans-serif;
  margin: 0;
}

.dean-spans{
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.dean-spans span:nth-child(1) {
  width: 60%;
  height: 20%;
  background-color: #FF8400;
  align-self: flex-end;
  border-top-left-radius: 20px;
  border-bottom-left-radius:20px ;
}

.dean-spans span:nth-child(2) {
  width: 100%;
  height: 20%;
  background-color: #072c42;
}

.dean-spans span:nth-child(3) {
  width: 60%;
  height: 20%;
  background-color: #FFD93D;
  border-top-right-radius: 20px;
  border-bottom-right-radius:20px ;
}


.dean-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 40%;
  padding-left:4rem;
}


.dean-info p{
  text-align: justify;
  font-size: 2rem;
}

#emphasize{
  color: #FF8400;
  font-size: 2.5rem;
  font-family: 'Tilt Neon', sans-serif;
}

.dean-pic{
  position: absolute;
  right: 4rem;
  height: 100%;
}
.dean-pic img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width:1600px){
  .section-3{
    height: 900px;
  }
  .dean-pic{
    right: 0rem;
    width: 100%;
    height: 100%;
  }
  .dean-pic img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 800px;
    height: auto;
  }
  .dean-header{
    height: 30%;
  }
  .dean-spans{
    height: 20%;
  }
  .dean-info{
    height: 50%;
  }
}

@media (max-width:1450px){
  .dean-pic img{
    height: 900px;
    object-position: right;
  }
}

@media (max-width:1200px){
  .section-3{
    height: 1200px;
  }
  .dean-pic img{
    height: 900px;
    object-position: center;
  }
  .dean-header{
    height: 30%;
  }
  .dean-header h1{
    font-size: 3rem;
    text-align: left;
  }
  .dean-header h2{
    font-size: 2rem;
    text-align: left;
  }
  .dean-spans{
    height: 20%;
  }
  .dean-spans span:nth-child(1) {
    height: 15px;
    align-self: flex-end;
  }
  
  .dean-spans span:nth-child(2) {
    height: 15px;
  }
  
  .dean-spans span:nth-child(3) {
    height: 15px;
  }
  .dean-pic{
    position: relative;
    right: 0rem;
    height: 100%;
  }
  .dean-info{
    width: 100%;
    height: 50%;
    padding:4rem;
  }
  .dean-pic img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media(max-width:600px){
  .section-3{
    height: 1000px;
  }
  .dean-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .dean-header{
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0rem;
  }
  
  .dean-header h1{
    font-size: 2rem;
    margin: 0;
    font-family: 'teko.semibold'; 
    box-shadow: 5px 5px 1px #FFD93D;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    color: white;
    padding:1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    text-align: center;
  }
  
  .dean-header h2{
    font-size:  1.5rem;
    color: #FF8400;
    font-family: 'Tilt Neon', sans-serif;
    margin: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
    text-align: center;
  }
  
  .dean-spans{
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
  }
  
  
  .dean-info{
    width: 100%;
    height: 40%;
    padding-left:2rem;
    padding-right: 2rem;
  }
  
  
  #emphasize{
    font-size: 1.5rem;
  }
  .dean-pic img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .dean-info p{
    font-size: 1.2rem;
    margin: 0;
  }
}

@media(max-width:300px){
  .section-3{
    height: 800px;
  }
  .dean-info p{
    font-size: 0.8rem;
  }
  #emphasize{
    font-size: 1rem;
  }
}

/* codes for sections 4 */

.section-4{
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.mothertracker{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 2fr 9fr;
}
.track-header{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: 'Tilt Neon', sans-serif;
  position: relative;
}

.track-header h1{
  position: absolute;
  top:1rem;
  color: white;
  text-shadow: #072c42 3px 3px 1px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(1px);
  padding: 1rem;
  border-top: white dashed 2px;
  border-bottom: white dashed 2px;
  border-left:  6px solid #FF8400;
  border-right:  6px solid #FF8400;
}

.track-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroller{
  max-width: 1000px;
}

.scroller-inner{
  display: flex;
  gap:1rem;
  padding-block: 1rem;
  flex-wrap: wrap;
}

.scroller > ul{
  list-style: none;

}
.track-list button{
  width: 300px;
  height: 300px;
  border-radius: 10px;
  border: 7px solid #FF8400;
  box-shadow: 5px 5px 1px #4F200D;
  cursor: pointer;
  color: white;
  text-shadow: black 5px 5px 5px;
  font-size: 2rem;
  font-family: 'Tilt Neon', sans-serif;
  background-color: #FF8400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.track-list button img{
  width: 70%;
  height: 70%;
}

.track-list button:hover{
  transform: scale(1.05);
  background-color: white;
  color: black;
  text-shadow: unset;
}

.scroller[data-animated="true"]{
  overflow: hidden;
  -webkit-mask:linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask:linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller[data-animated="true"] .scroller-inner{
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 
    var(--_animation-duration, 40s) 
    var(--_animation-duration, forwards)linear infinite;
}


@media(max-width:1200px){
  .scroller{
    max-width: 1000px;
  }
}

@media(max-width:1000px){
  .section-4{
    height: 700px;
  }
  .scroller{
    max-width: 800px;
  }
}

@media(max-width:800px){
  .track-header h1{
    font-size: 1rem;
  } 
  .track-list button{
    width: 250px;
    height: 250px;
  }
  .section-4{
    height: 500px;
  }
  .scroller{
    max-width: 600px;
  }
}

@media(max-width:600px){
  .scroller{
    max-width: 400px;
  }
  .track-list button{
    width: 200px;
    height: 200px;
  }
  .track-list button {
    font-size: 1.5rem;
  }
}

@media(max-width:400px){
  .track-header h1{
    font-size: 0.8rem;
  }
  .section-4{
    height: 400px;
  }
  .scroller{
    max-width: 200px;
  }
  .track-list button{
    width: 150px;
    height: 150px;
    font-size: 1.2rem;
  }
}


/* codes for section 5 */
.section-5{
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.sec5-wrapper{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 3fr 1fr;
}

.quote{
  width: 100%;
  height: 100%;
  position: relative;
}

.quote-content{
  position: absolute;
  width: 900px;
  height: 100px;
  inset: 0;
  margin: auto;
}

.quote-wrapper{
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 300px 300px 300px;
  grid-template-rows: 100px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
}

.quote-wrapper :nth-child(1){
  padding: 0;
  margin: 0;
  position: absolute;
  width: 300px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(1px);
  border: #FF8400 5px solid;
  box-shadow: #4F200D 5px 5px 1px;
  animation: moveAnimation 15s infinite;
  z-index: -1;
  border-radius: 10px;
}

.quote span{
  font-size: 2rem;
  color: white;
  font-family: 'Tilt Neon', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-wrapper :nth-child(2){
  padding: 0;
  margin: 0;
}
.quote-wrapper :nth-child(3){
  padding: 0;
  margin: 0;
}
.quote-wrapper :nth-child(4){
  padding: 0;
  margin: 0;
}

.television{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.tv{
  width: 1000px;
  height: 100%;
}

.tv iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px; 
  border: #072c42 5px solid;;
}

@media (max-width:1000px){
  .section-5{
    height:700px
  }

  .tv{
    width: 700px;
    height: 100%;
  }

  .quote-content{
  width:600px
  }
  
  .quote-wrapper :nth-child(1){
  width:200px;
  }
  
  .quote-wrapper{
    grid-template-columns: 200px 200px 200px;
    grid-template-rows: 100px;
  }
}

@media (max-width:700px){
  .section-5{
    height:600px
  }

  .tv{
    width: 400px;
    height: 100%;
  }

  .quote span{
    font-size: 1.5rem;
  }

  .quote-content{
  width:450px;
  height:70px;
  }
  
  .quote-wrapper :nth-child(1){
  width:150px;
  height:70px;
  }
  
  .quote-wrapper{
    grid-template-columns: 150px 150px 150px;
    grid-template-rows: 70px;
  }
}

@media (max-width:450px){
  .section-5{
    height:500px
  }

  .tv{
    width: 300px;
    height: 100%;
  }
  .quote span{
    font-size: 1rem;
  }
  .quote-content{
  width:300px;
  height:70px;
  }
  
  .quote-wrapper :nth-child(1){
  width:100px;
  height: 70px;
  }
  
  .quote-wrapper{
    grid-template-columns: 100px 100px 100px;
    grid-template-rows: 70px;
  }
}

@media (max-width:350px){
  .section-5{
    height:300px
  }

  .tv{
    width: 200px;
    height: 100%;
  }
  
  .quote span{
    font-size: 0.7rem;
  }
  .quote-content{
  width:225px;
  height:50px;
  }
  
  .quote-wrapper :nth-child(1){
  width:75px;
  height: 50px;
  }
  
  .quote-wrapper{
    grid-template-columns: 75px 75px 75px;
    grid-template-rows: 50px;
  }
}


/* codes for section 6 */

.section-6 {
  width: 100%;
  height: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  overflow: hidden;
  position: relative;
}

.flip-box {
  width: 400px;
  height: 400px;
  position: relative;
  perspective: 5000px;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  cursor: pointer;
}

.flip-box .front:hover{
  background-color: #4F200D;
  box-shadow: #072c42;
}

.front{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap:1rem;
  padding:1rem;
}
.front h1{
  font-size: 3rem;
  color: white;
  text-shadow: #4F200D 5px 5px 1px;
  font-family: 'Tilt Neon', sans-serif;
  opacity: 0.9;
  height: 20%;
  margin: 0;
}
.front img{
  width: 40%;
  height: 40%;
  opacity: 0.9;
}
.front :nth-child(2){
  width: 90%;
  height: 10px;
  border-radius: 10px;
  background-color: white;
  margin: 0;
  opacity: 0.8;
}

.front :nth-child(3){
  width: 70%;
  height: 10px;
  border-radius: 10px;
  background-color: white;
  margin: 0;
  opacity: 0.8;
}

.front :nth-child(4){
  width: 30%;
  height: 10px;
  border-radius: 10px;
  background-color: white;
  margin: 0;
  opacity: 0.8;
}

.flip-box.clicked {
  transform: rotateX(180deg);
}

.flip-box .front,
.flip-box .back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: black 5px 5px 1px;
}

.flip-box .front {
  background-color: #FF8400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-box .back {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:2rem;
  transform: rotateX(180deg);
}

.back p{
  font-size: 1.5rem;
  text-align: center;
  font-family: 'Tilt Neon', sans-serif;
}

@media (max-width:900px){
.section-6{
  height: 600px;
}
.flip-box {
  width: 250px;
  height: 250px;
}
  .back p{
    font-size: 1rem;
  }
}

@media (max-width:600px){
  .section-6{
    height: 1300px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  }
@media (max-width:300px){
  .section-6{
    height: 1000px;
  }
  .flip-box {
    width: 200px;
    height: 200px;
  }
  .front h1{
    font-size: 2rem;
  }
  .front img{
    width: 30%;
    height: 30%;
  }
  .back p{
    font-size: 0.7rem;
  }
}

/* codes for section 7 */
.section-7{
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;
}

.faculty-wrapper{
  width: 100%;
  height: 100%;
}

.faculty-carousel > ul{
  list-style: none;
  margin:0;
  padding: 0;
}

.faculty-carousel{
  width: 100%;
  height: 100%;
  position: relative;
}

.leaf-wrapper{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 800px;
}

.leaf{
  position: absolute;
  padding-left: 4rem;
  padding-right: 4rem;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.leaf[data-active]{
  opacity: 1;
  transition-delay: 0;
}

.leaf-info{
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
}

.profile{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
}

.profile h1{
  font-size: 3rem;
  color: #FF8400;
  text-shadow:2px 2px 5px black;
  font-family: 'Tilt Neon', sans-serif;
  letter-spacing: 5px;
  margin: 0;
}

.profile h4{
  font-size: 1.5rem;
  font-family: 'Tilt Neon', sans-serif;
  margin: 0;
  letter-spacing: 3px;
}

.profile span:nth-child(3) {
  height: 10px;
  width: 70%;
  margin-top: 5px;
  border-radius: 10px;
  background-color: #4F200D;
}

.profile span:nth-child(4) {
  height: 10px;
  margin-top: 5px;
  width: 80%;
  border-radius: 10px;
  background-color: #FF8400;
}

.profile span:nth-child(5) {
  height: 10px;
  margin-top: 5px;
  width: 50%;
  border-radius: 10px;
  background-color: #FFD93D;
}

.achievements{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.achievements h1{
  font-family: 'Tilt Neon', sans-serif;
}

.achievements li{
  font-family: 'Tilt Neon', sans-serif;
  font-size: 1.5rem;
  list-style-image: url('/images/bullet.png');
  margin-bottom: 10px;
}

.leaf-image{
  width: 100%;
  height: 100%;
}

.leaf-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
}

.leaf-carousel-button{
  position: absolute;
  background: none;
  border: none;
  font-size: 2rem;
  top:50%;
  z-index: 100;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border-radius: .25rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, .1);
  font-family: 'Tilt Neon', sans-serif;
}

.leaf-carousel-button:hover{
  color: white;
  background-color:rgba(0, 0, 0, .2);
}

.leaf-carousel-button.prev{
  left:1rem;
}

.leaf-carousel-button.next{
  right: 1rem;
}

@media (max-width:1300px){
  .section-7{
    height: 600px;
  }
  .leaf-wrapper{
    grid-template-rows: 600px;
  }
}

@media (max-width:1000px){
  .profile h1{
    font-size: 2rem;
  }
  .profile h4{
    font-size: 1rem;
  }
  .achievements li{
    font-size: 1rem;
  }
  .achievements h1{
    font-size: 1rem;
  }
  .leaf-wrapper{
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width:800px){
  .section-7{
    height: 1100px;
  }
  .leaf-wrapper{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .leaf-image{
    display: flex;
    align-items: center;
    position: absolute;
  }
  .leaf{
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .leaf-image img{
    object-position: center;
    object-fit: cover;
  }
  .leaf-info{
    grid-template-columns: 1fr;
    grid-template-rows: 1.7fr 1fr;
  }
  .profile{
    padding-left: 4rem;
    padding-right: 4rem;
    z-index: 1;
  }
  .profile h4{
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: 90%;
    height: 2rem;
    display: flex;
    align-items: center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-left: 0.8rem;
    border-left: 5px solid #FF8400;
  }
  .achievements{
    padding-left: 4rem;
    padding-right: 4rem;
    z-index: 1;
  }
  .achievements h1{
    color: #FF8400;
    font-size: 1.5rem;
    text-shadow:2px 2px 5px black;
    letter-spacing: 0.2ch;
  }
  .educational-attainment{
    padding:1rem;
  }
  .educational-attainment li{
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.538);
    color: white;
    padding: 0.3rem;    
  }
}

@media(max-width:750px){
  .section-7{
    height: 1000px ;
  }
}
  @media(max-width:700px){
    .section-7{
      height: 900px ;
    }
    .leaf-info{
      grid-template-columns: 1fr;
      grid-template-rows: 1fr 1fr;
    }
    .leaf-carousel-button{
      background-color: #FF9F29;
      color: white;
    }
    .leaf-carousel-button:hover{
      color: white;
      background-color: #FF9F29;
    }
  }
  @media(max-width:600px){
    .section-7{
      height: 1100px ;
    }
    .leaf-info{
      grid-template-columns: 1fr;
      grid-template-rows: 1fr 1fr;
    }
    .leaf-carousel-button{
      background-color: #FF9F29;
      color: white;
    }
    .leaf-carousel-button:hover{
      color: white;
      background-color: #FF9F29;
    }
  }

  @media(max-width:450px){
    .section-7{
      height: 800px ;
    }
    .profile span{
      display: none;
    }
    .profile{
      padding-top:1rem;
      justify-content: flex-start;
    }
    .profile h1{
      font-size: 1.3rem;
      text-align: center;
      text-shadow: unset;
      font-family: 'teko.semibold'; 
      letter-spacing: 0.1ch;
    }

    .profile h4{
      height: 1.5rem;
      font-size: 0.7rem;
      text-align: center;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 2.7rem;
      border-top-right-radius: unset;
      border-bottom-right-radius: unset;
      padding-left: 0.8rem;
      border-left: 5px solid #FF8400;
      border-right: 5px solid #FF8400;

    }
    .educational-attainment li{
      font-size: 0.7rem;
    }
    .leaf-info{
      grid-template-columns: 1fr;
      grid-template-rows: 1.1fr 1fr;
    }
    .leaf-image{
      margin-top: 5rem;
    }
    .achievements h1{
      display: none;
    }
    .educational-attainment li{
      border-radius: 20px;
      background-color: rgba(0, 0, 0, 0.538);
      color: white;
      padding: 0.1rem;
      padding-left: 1rem;    
      padding-bottom: 1rem;
    }
  }

/* this is section 8 codes */

.section-8{
  width: 100%;
  height: 800px;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.organizations{
  width: 100%;
  height: 100%;
  position: relative;
}

#org-background{
  position: absolute;
  top:2rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 80%;
  height: auto;
  opacity: 0.9;
  box-shadow: 3px 3px 5px black;
  border-radius: 3px;
}

.organizations-header{
  position: absolute;
  display: flex;
  flex-direction: column;
  top:10%;
  left:4rem;
  right: 4rem;
  margin: auto;
  z-index: 100;
  width: 600px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.organizations-header h1{
  font-size: 2.5rem;
  margin: 0;
  color: white;
  text-shadow:2px 2px 5px black;
  font-family: 'Tilt Neon', sans-serif;
  text-align: center;
}

.organizations-header p{
  font-size: 1rem;
  color: white;
  text-shadow:2px 2px 5px black;
  font-family: 'Tilt Neon', sans-serif;
  text-align: center;
}
.organizations-header button{
  width: 100px;
  height: 50px;
  border-radius: 10px;
  border: 3px solid #4F200D;
  box-shadow: 2px 2px 1px black;
  font-family: 'Tilt Neon', sans-serif;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
}

.organizations-header button:hover{
  transform: scale(1.1);
  background-color: #FFD93D;
  border: 3px solid #4F200D;
}

.org-set{
  width: 100%;
  position: absolute;
  bottom: 4rem;
  left:0;
  right: 0;
  margin: auto;
  display: grid;
  grid-template-columns: 250px 250px 250px;
  grid-template-rows: 250px;
  justify-content: center;
  gap:5rem;
}

.org-1{
  background-color: rgba(255, 255, 255, 0.538);
  backdrop-filter: blur(10px);
  box-shadow: black 2px 2px 5px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-family: 'Tilt Neon', sans-serif;
  text-align: center;
}

.org-2{
  background-color: rgba(255, 255, 255, 0.538);
  backdrop-filter: blur(10px);
  box-shadow: black 2px 2px 5px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Tilt Neon', sans-serif;
  padding: 1rem;
  text-align: center;
}

.org-3{
  background-color: rgba(255, 255, 255, 0.538);
  backdrop-filter: blur(10px);
  box-shadow: black 2px 2px 5px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Tilt Neon', sans-serif;
  padding: 1rem;
  text-align: center;
}

#org-logo{
  width: 50%;
  height: 50%;
  border-radius: 50%;
  border: black 3px solid;
  box-shadow: 4px 4px 1px rgb(40, 40, 40);
}

@media(max-width:1300px){
  .section-8{
    height: 700px;
  }
}

@media(max-width:1200px){
  .section-8{
    height: 700px;
  }
  .org-set{
    gap:3rem;
  }
}

@media(max-width:1100px){
  .section-8{
    height: 650px;
  }
  .org-set{
    grid-template-columns: 200px 200px 200px;
    grid-template-rows: 200px;
  }
  .org-set h3{
    font-size: 0.7rem;
  }
}


@media(max-width:1000px){
  .section-8{
    height: 600px;
  }
  .org-set{
    gap:1rem;
  }
}

@media(max-width:900px){
  .section-8{
    height: 575px;
  }
  
  .organizations-header h1{
    font-size: 1.5rem;
  }
}

@media (max-width:850px){
  .section-8{
    height: 500px;
  }
  .org-set{
    grid-template-columns: 175px 175px 175px;
    grid-template-rows: 175px;
  }
  .org-set h3{
    font-size: 0.6rem;
  }
  .organizations-header{
    top:3%;
  }
}

@media (max-width:750px){
  .section-8{
    height: 600px;
  }
  .organizations-header{
    width: 400px;
  }
  .organizations-header p{
    font-size: 0.7rem;
  }
}

@media (max-width: 600px){
  .section-8{
    height:500px;
  }
  .organizations-header h1{
    font-size: 0.9rem;
  }
  .org-set{
    bottom:2rem;
  }
}

@media(max-width:550px){
  .section-8{
    height: 400px;
  }
  .organizations-header{
    top:8%;
    height: 200px;
  }
  .organizations-header{
    width: 300px;
  }
  .org-set{
    grid-template-columns: 150px 150px 150px;
    grid-template-rows: 150px;
  }
}

@media(max-width:500px){
  .section-8{
    height: 1250px;
  }
  #org-background{
    width: 90%;
  }
  .organizations-header{
    top:1%;
    height: 250px;
  }
  .org-set{
    grid-template-columns: 300px ;
    grid-template-rows: 300px 300px 300px;
  }
  .org-set h3{
    font-size: 1rem;
  }
}

@media (max-width:450px){
  .section-8{
    height: 1275px;
  }
  .organizations-header{
    top:17%;
  }
  .org-set{
    grid-template-columns: 250px ;
    grid-template-rows: 250px 250px 250px;
  }
  .organizations-header h1{
    color: black;
    text-shadow: none;
  }
  .organizations-header p{
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    padding:1rem;
    border-radius: 10px;
  }
}

@media(max-width:430px){
  .organizations-header{
    left:1rem;
    right: 1rem;
  }
}

@media(max-width:370px){
  .organizations-header{
    top:4%;
    height: 200px;
  }
  .organizations-header h1{
    color: white;
    text-shadow:2px 2px 5px black;
  }
  .section-8{
    height: 1100px;
  }
  .organizations-header button{
    margin-top: 30px;
  }
}

@media(max-width:350px){
  .section-8{
    height: 1175px;
  }
  .organizations-header{
    top:9%;
    height: 200px;
  }
  .organizations-header h1{
    margin-bottom: 4rem;
    border-bottom: 2px solid white;
  }
  .organizations-header{
    width: 200px;
  }
  .organizations-header button{
    margin-top: 10px;
  }
}

/* this is the code for teh footer */
.section-9{
  width: 100%;
  height: 700px;
  background-color:rgb(61, 61, 61);
  overflow: hidden;
}

.contact-container{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 30% 70%;
  padding-left:8rem;
  padding-right: 8rem;
  padding-bottom: 1rem;
  background-image: url('../images/background5.jpg');
  background-size: cover;
  position: relative;
}

.contact-header{
  color: white;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-header h1{
  font-size: 2rem;
}
.contact-header p{
  width: 50%;
  text-align: center;
  margin: 0;
}

.contact-contents{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr;
  z-index: 1;
}

.contact-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left:8rem;
}

.contact-2{
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap:1rem;
  padding-left:3rem;
  padding-right:3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  justify-content: center;
  align-items: center;
}

.contact-1 li h3{
  font-size: 2rem;
  margin-left: 1ch;
  color: #FFD93D;
  font-family: 'Tilt Neon', sans-serif;
}
.contact-1 li p{
  color: white;
  font-family: 'Tilt Neon', sans-serif;
  font-size: 1rem;
}

.contact-background{
  background-color: rgba(79, 32, 13, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 2rem;
}

.contact-1 :nth-child(1){
  list-style: url('../images/location.png');
  margin: 0;
}

.contact-1 :nth-child(2){
  list-style: url('../images/contact.png');
}

.contact-1 :nth-child(3){
  list-style: url('../images/email.png');
}

.contact-1 :nth-child(4){
  list-style: url('../images/facebook-logo.png');
}

.contact-1 :nth-child(4) a{
  text-decoration: none;
  color: white;
  font-family: 'Tilt Neon', sans-serif;
  font-size: 1rem;
}

.contact-1 :nth-child(4) a:hover{
  color:#FFD93D;
}

.contact-2 button{
  width: 100px;
  height: 50px;
  border-radius: 10px;
  border: 3px solid #4F200D;
  box-shadow: 2px 2px 1px black;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  align-self: flex-end;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: white;
  background-color: #FF8400;
}

.contact-2 button:hover{
  transform: scale(1.1);
}

.contact-2{
  display: flex;
  flex-direction: column;
}

.the-message{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap:2rem;
}

.the-message input:nth-child(2){
  height: 20%;
  outline: none;
  background: none;
  border: none;
  border-bottom: 2px solid rgb(162, 162, 162);
  font-size: 1rem;
  padding: 0;
  margin: 0;
}
.the-message input:nth-child(3){
  height: 20%;
  outline: none;
  background: none;
  border: none;
  border-bottom: 2px solid rgb(162, 162, 162);
  font-size: 1rem;
  padding: 0;
  margin: 0;
}

.the-message textarea:nth-child(4){
  height: 30%;
  outline: none;
  background: none;
  border: none;
  border-bottom: 2px solid rgb(162, 162, 162);
  font-size: 1rem;
  padding: 0;
  margin: 0;
}

@media (max-width:1200px){
  .contact-contents{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

@media (max-width:1000px){
  .contact-1{
    padding-left:4rem;
  }
  .contact-contents{
    grid-template-columns: 0.7fr 1fr;
    grid-template-rows: 1fr;
  }
  .contact-container{
    padding-left:3rem;
    padding-right: 3rem;
    padding-bottom: 1rem;
  }
}

@media (max-width:750px){
  .contact-1 li h3{
    font-size: 1rem;
  }
  .contact-1 li p{
    font-size: 0.8rem;
  }
  .contact-contents{
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 1fr;
  }
  .contact-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left:2rem;
    padding-right: 2rem;
  }
}
@media (max-width:600px){
  .contact-header p{
    width: 70%;
  }
  .contact-1{
    margin-left:2rem;
  }
}

@media (max-width:600px){
  .section-9{
    height: 900px;
  }
  .contact-contents{
    grid-template-columns:  1fr;
    grid-template-rows: 0.5fr 1fr;
    grid-gap: 3ch;
  }
  .contact-1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding-left:0.5rem;
    padding-right: 0.5rem;
    place-items: center;
  }

  .contact-1 li h3{
    font-size: 0.7rem;

  }
  .contact-1 li p{
    font-size: 0.5rem;
  }
  .contact-1 :nth-child(4) a{
    font-size: 0.5rem;
  }
  .contact-1 li h3{
    margin-left: 0;
  }
  .contact-container{
    padding-left:1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width:360px){
  .section-9{
    height: 1000px;
  }
}
/* footer codes */

footer{
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  gap:2ch;
  align-items: center;
  background-color:rgb(61, 61, 61);
  position: relative;
}

footer h2{
  font-size: 1.5rem;
  font-family: 'teko.semibold';
  color: white;
  text-shadow: 3px 3px 4px black;
  text-align: center;
  
}
footer h3{
  margin: 0;  
  text-align: center;
}

.more-links{
  font-size: 1rem;
  color:#FFD93D;
}
.more-links a{
  font-size: 1rem;
  color:#FFD93D;
  text-decoration: none;
}

.related-links > ul{
  display: flex;
  gap: 7ch;
  list-style: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.related-links li{
  display: flex;
  align-items: center;
}

.related-links li a{
  color: white;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  margin-left:1ch;
}
.related-links li a:hover{
  color: #FF8400;
  transform: scale(1.1);
}

@media (max-width:650px){
  .related-links ul{
    gap:2ch;
  }
}

@media (max-width:520px){
  .related-links li a{
    font-size: 0.8rem;
  }
}

@media (max-width:450px){
  footer h2{
    font-size: 1rem;
  }
  .related-links > ul {
    flex-wrap: wrap;
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}


@media (max-width:300px){
  footer h2{
    font-size: 0.8rem;
  }
  footer h3{
    margin: 0;
    font-size: 0.6rem;
  }
}

.developer{
  position: absolute;
  bottom: 2rem;
  font-size: 0.6rem;
  color: white; 
  font-family: 'Tilt Neon', sans-serif;
}

.socials{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:1rem;
  margin-top:0.7rem ;
}

.socials img{
  width: 20px;
  height: 20px;
}

.socials img:hover{
  transform: scale(1.2);
  cursor: pointer;
}


/* codes for section 10 */

.section-10{
  width: 100%;
  height: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  position: relative;
}

.eksperto-1{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 200px 300px 500px;
}

.eksperto-header{
  display: flex;
  align-items: center;
}

.eksperto-title{
  width: 70%;
  height: 50%;
  background-color: #4690d6;
  border-top-right-radius: 50px;
  border-bottom-right-radius:50px;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-left: 2rem;
  padding-bottom: 1rem;
  margin: 0;
}

.eksperto-title h1{
  margin: 0;
  padding: 0;
  color: white;
  font-size: 4rem;
  font-family: 'Agbalumo', sans-serif;
}

.eksperto-content{
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
}

.eksperto-content h3{
  color: #4690d6;
  font-family: 'Tilt Neon', sans-serif;
  margin-bottom: 0;
  font-size: 2rem;
}
.eksperto-content p{
  color: black;
  font-size: 1rem;
  font-family: 'Tilt Neon', sans-serif;
  width: 80%;
  text-align: justify;
}

.eksperto-content button{
  margin-top: 2rem;
  width: 150px;
  height: 50px;
  border-radius: 40px;
  background-color: #4690d6;
  font-size: 1rem;
  font-family: 'TIlt-Neon', sans-serif;
  cursor: pointer;
  color: white;
  border: none;
}

.eksperto-content button:hover{
  transform: scale(1.1);
  background-color: #FF8400;
  color: white;
}

.eksperto-scan{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
}

.eksperto-scan img{
  margin: 0;
  padding: 0;
  width: 40%;
  height: auto;
}

.eksperto-scan h3{
  font-family: 'TIlt-Neon', sans-serif;
}

.eksperto-2{
  width: 100%;
  height: 100%;
}

.phone-container{
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-container img{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 700px;
  height: auto;
  pointer-events: none;
  z-index: 1; 
}

.phone-container iframe{
  position: absolute;
  border-radius: 40px;
  width: 330px;
  height: 665px;
  bottom: 100px;
  right: 265px;
  padding: 1rem;
  overflow: hidden;
}

@media (max-width:1320px){
  .section-10{
    grid-template-columns: 1fr;
    position: relative;
  }
  .eksperto-1{
    position: absolute;
    top:0;
    left: 0;
    width: 50%;
  }
}
@media (max-width:1250px){
  .section-10{
    height: 800px;
  }
  .eksperto-1{
    grid-template-rows: 150px 250px 400px;
    width: 40%;
  }
  .eksperto-content h3{
    font-size: 1.5rem;
  }
  .eksperto-content p{
    font-size: 0.7rem;
  }
  .eksperto-title h1{
    font-size: 2rem;
  }
  .eksperto-title{
    width: 70%;
  }
  .eksperto-scan img{
    width: 30%;
  }
}

@media(max-width:1000px){
  .section-10{
    height: 1200px;
  }
  .eksperto-scan{
    position: absolute;
    bottom: 0;
    right: 0;
    margin: unset;
    width: 300px;
  }
  .eksperto-1{
    width: 100%;
    grid-template-rows: 150px 300px;
  }
}

@media(max-width:680px){
  .section-10{
    height: 1000px;
  }
  .phone-container img{
    width: 500px;    
  }
  .eksperto-scan{
    bottom: 1rem;
    right: 5rem;
  }
  .phone-container iframe{
    width: 250px;
    height: 480px;
    bottom: 80px;
    right: 180px;
  }
}
@media(max-width:600px){
  .eksperto-scan{
    bottom: 1rem;
    right: 1rem;
  }
}

@media(max-width:500px){
  .section-10{
    height: 830px;
  }
  .eksperto-scan{
    bottom: 3rem;
    right: 0;
    width: 60%;
  }
  .eksperto-scan h3{
    font-size: 0.5rem;
  }
  .phone-container img{
    width: 370px;    
  }
  .phone-container iframe{
    width: 200px;
    height: 330px;
    bottom: 80px;
    right: 128px;
  }
}

.section-11{
  height: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
}

.atop-1 iframe{
  right: 279px;
  width: 332px;
}

.atop-2{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 200px 300px 500px;
}

.atop-header{
  position: relative;
}
.atop-title{
  width: 70%;
  height: 50%;
  background-color: #a00000;
  position: absolute;
  top:0;
  right: 0;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
}

.atop-title h1{
  margin: 0;
  padding: 0;
  color: white;
  font-size: 4rem;
  font-family: 'Agbalumo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-left: 2rem;
  padding-bottom: 1rem;
  margin: 0;
}

.atop-body{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 4rem;
}

.atop-body h3{
  color: #a00000;
  font-family: 'Tilt Neon', sans-serif;
  margin-bottom: 0;
  font-size: 2rem;
}
.atop-body p{
  color: black;
  font-size: 1rem;
  font-family: 'Tilt Neon', sans-serif;
  width: 80%;
  text-align: justify;
}

.atop-body button{
  margin-top: 2rem;
  width: 150px;
  height: 50px;
  border-radius: 40px;
  background-color: #a00000;
  font-size: 1rem;
  font-family: 'TIlt-Neon', sans-serif;
  cursor: pointer;
  color: white;
  border: none;
}

.atop-body button:hover{
  transform: scale(1.1);
  background-color:#FF8400;
  color: white;
}

.atop-footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.atop-footer img{
  width: 300px;
  height: 300px;
}

.atop-footer a{
  color: #a00000;
}

.atop-footer a:hover{
  color: #FF8400;
}

@media (max-width:1320px){
  .section-11{
    grid-template-columns: 1fr;
    position: relative;
  }
  .atop-2{
    position: absolute;
    top:0;
    right: 0;
    width: 50%;
  }

}

@media (max-width:1250px){
  .section-11{
    height: 800px;
  }
  .atop-title{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .atop-2{
    grid-template-rows: 150px 250px 400px;
    width: 40%;
  }
  .atop-body h3{
    font-size: 1.5rem;
  }
  .atop-body p{
    font-size: 0.7rem;
  }
  .atop-title h1{
    font-size: 2rem;
  }
  .atop-title{
    width: 70%;
  }
}


@media(max-width:1000px){
  .section-11{
    height: 1200px;
  }
  .atop-footer{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 300px;
  }
  .atop-body{
    width: 70%;
    position: absolute;
    right: 0;
    top:0;
    bottom: 0;
    justify-content: center;
  }
  .atop-2{
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 150px 300px;
  }
  .atop-footer img{
    width: 200px;
    height: 200px;
  }
}

@media(max-width:680px){
  .section-11{
    height: 1000px;
  }

  .atop-1 .phone-container iframe{
    width: 257px;
    height: 480px;
    bottom: 80px;
    right: 188px;
  }
}

@media(max-width:630px){
  .section-11{
    height: 950px;
  }
  .atop-footer img{
    width: 150px;
    height: 150px;
  }
  .atop-footer h3{
    font-size: 1rem;
  }
  .atop-body{
    width: 60%;
  }
}

@media(max-width:500px){
  .section-10{
    height: 450px;
  }
  .section-11{
    height: 400px;
  }
  .atop-1{
    display: none;
  }
  .eksperto-2{
    display: none;
  }
  .atop-footer{
    width: 40%;
  }
  .atop-footer img{
    width: 100px;
    height: 100px;
  }
  .atop-footer h3{
    font-size: 0.7rem;
  }
  .atop-body h3{
    font-size: 1rem;
  }
}

@media (max-width:430px){
  .section-10{
    height: 450px;
  }
  .section-11{
    height: 400px;
  }
  .atop-footer{
    width: 50%;
  }
}

.sent{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  text-align: center;
}

.sent h1{
  font-size: 4rem;
  font-family: 'teko.semibold';
}

.sent p{
  font-size: 1.3rem;
  font-family: 'Tilt Neon', sans-serif;
  width: 50%;
}

.sent button{
  width: 100px;
  height: 50px;
  border-radius: 10px;
  border: 3px solid #4F200D;
  box-shadow: 2px 2px 1px black;
  font-family: 'Tilt Neon', sans-serif;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}

.sent button:hover{
  transform: scale(1.1);
  background-color: #FFD93D;
  border: 3px solid #4F200D;
}

/* codes for section-12 /  organizational chart */
.section-12{
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: #9ADE7B;
}

.org-chart-wrapper{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 200px;
}

.org-chart-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #1A4D2E;
  z-index: 2;
}

.org-chart-header span:nth-child(2){
  width: 40%;
  height: 5px;
  background-color:#9ADE7B;
  margin-top: 1ch;
}
.org-chart-header span:nth-child(3){
  width: 30%;
  height: 5px;
  background-color: white;
  margin-top: 1ch;
}
.org-chart-header span:nth-child(4){
  width: 20%;
  height: 5px;
  background-color: #FF9F29;
  margin-top: 1ch;
}

.org-chart-header h1:nth-child(1){
  font-size: 2rem;
  font-family: 'teko.semibold';
  text-align: center;
  color: white;
  margin: 0;
}
.org-chart-header h1:nth-child(5){
  font-size: 3rem;
  font-family: 'teko.semibold';
  letter-spacing: 1ch;
  margin: 0;
  color: white;
  text-align: center;
  padding:1rem;
}

.org-chart {
  width: 100%;
  height: 100%;
}

@media (max-width:1200px){
  .org-chart-header h1:nth-child(5){
    font-size: 2rem;
  }
}

@media(max-width:800px){
  .org-chart-header h1:nth-child(1){
    font-size: 1.5rem;
  }
  .org-chart-header h1:nth-child(5){
    font-size: 1.5rem;
  }
  .section-12{
    height: 175px;
  }
  .org-chart-header span:nth-child(3){
    display: none;
  }
}

@media(max-width:700px){
  .section-13-non-desktop img{
    content: url('../images/org-chart-mobile-beta2.drawio.png');
  }
}

@media (max-width:600px){
  .org-chart-header{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .org-chart-header h1:nth-child(1){
    font-size: 1.4rem;
  }
  .org-chart-header h1:nth-child(5){
    font-size: 1.3rem;
  }

}

@media (max-width:500px){
  .org-chart-header{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .org-chart-header h1:nth-child(1){
    font-size: 1rem;
  }
  .org-chart-header h1:nth-child(5){
    font-size: 1rem;
  }
}

@media (max-width:400px){
  .org-chart-header{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .org-chart-header h1:nth-child(1){
    font-size: 1rem;
  }
  .org-chart-header h1:nth-child(5){
    font-size: 1rem;
  }
}

.section-13{
  padding-top: 5rem ;
  width: 100%;
  height: 1700px;
  background-color: #9ADE7B;
  overflow: hidden;
}

.img-magnifier-container{
z-index: 2;
}

.section-13 .bgPulse-background{
  z-index: 1;
}

.section-13-non-desktop{
  position: relative;
  width: 100%;
  height: 1000px;
  display: none;
  background-color: #9ADE7B;
  overflow: hidden;
}

@media(max-width:1280px){
  .section-13{
    display: none;
  }
  .section-13-non-desktop{
    display: flex;
    padding:2rem;
  }
  .section-13-non-desktop img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 10;
  }
  
}
