/* =================================================================================
====================================================================================
===============================Core Values CSS=====================================
================================================================================ */
/* Manifesto Section */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 2rem;
  max-width: 100vw;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 3rem;
  padding-top: 0;
}
.manifesto div {
  display: flex;
  flex-direction: column;
}
.manifesto h2 {
    color: var(--primary-red);
    font-size: max(30px,4vw);
    margin-bottom: 1rem;
    text-align: left;
    justify-self: center;
    font-weight: 400;
    line-height: 1.3;
}
.manifesto p {
   font-size: max(18px, 1.6vw);
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
    text-align: left;
    text-indent: 0;
    margin-right: 3em;

}
.manifesto .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-red);
    color: #fff;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    font-size: max(18px, 1.6vw);
    margin-top: 3rem;
    width: fit-content;
}

/* Parent Split Section */
.parent {
  height: auto;
  background: var(--primary-red);
  position: relative;
  color: white;
  margin-bottom: 0;
  border-top-left-radius: 5%;
  border-top-right-radius: 5%;
  display: flex;
}
.parent div{
  display: flex;
}
.left {
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    line-height: 1.6;

}
.left p {
    width: 100%;
    font-size: max(18px, 1.6vw);
    padding: 0 2.9vw;
    font-weight: 600;
}
.right {
    flex:1;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
    margin: 5rem 0;
    margin-bottom: 0;
}
.right::-webkit-scrollbar {
  display: none;
}

.panel {
  margin: 2rem;
  flex-direction: column;
  background: rgb(255 255 255 / 13%);
  border-radius: 45px;
  padding: 4vw;
}
    
.panel h3 {
  font-size: max(25px,3vw);
  margin-bottom: 1rem;
  color: #fff;
}
.panel ul {
  padding-left: 1.2rem;
  line-height: 1.6;
}
.panel ul li {
 margin-bottom: 0.5rem;
    font-size: max(18px, 1.6vw);
    color: #FAFAFA;
}

/* Teaching & Learning Section */
.teaching {
  text-align: center;
  margin-bottom: 3rem;
  background-color: var(--primary-red);
  padding: 3vw 12vw;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;

}
.teaching h2 {
  font-size: max(25px,3vw);
  color: #fff;
  margin-bottom: 1rem;
}
.teaching p {
  font-size: max(18px, 1.6vw);
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .left p {
    font-size: 4vw;
    padding: 0 4.5vw;
  }
   .manifesto {
    display: flex;
    flex-direction: column;
    padding: 7vw 15vw;
 
  }
  .left {
    padding: 3rem 0;
  }
  .right {
    margin: 0;
  }
  .manifesto br {
    display: none;
  }
  .teaching {
    padding: 3vw 5vw;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .manifesto h2 {
    font-size: max(20px, 8vw);
    line-height: 1.1;
  }
  .manifesto p {
    margin-right: 0
  }
  .parent {
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    color: white;
  }
  .parent div{
  display: flex;
  flex-direction: column;
  
}
}
@media screen and (max-width: 430px) {
  .teaching {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .parent {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
  .manifesto {
    padding: 4rem 2rem
  }
}
/* =================================================================================
====================================================================================
===============================Core Values CSS=====================================
================================================================================ */



