/* -------------------------------------> Banner <------------------------------------- */
section{
    padding: 20px 25px;
    margin: 20px 25px 20px 25px;
}

.banner{
    display: flex;
}
.banner img{
    max-width: 40%;
    border-radius: 20px;
}

.home-box{
    max-width: 100%;
    background-color: #006955;
    color: white;
    margin-left: 2%;
    border-radius: 20px;
}

.home-box h1{
    font-size: 40px;
    padding: 25px;
}

.home-box p{
    font-size: 16px;
    padding: 5px 25px;
    text-align: justify;
}

.btn{
    padding: 25px;
}

.project-btn{
    background-color: #002f26; 
    border-radius: 20px;
    border: none;
    padding: 7px;
}

.project-btn a{
    text-decoration: none;
    padding: 25px;
    font-size: 18px;
    color: white;
}

.project-btn:hover {
    background-color: white;
}
.project-btn a:hover {
    color: #002f26;
}
/* -------------------------------------> Banner (Mobile) <------------------------------------- */

@media only screen and (max-width: 768px) {
    section {
        padding: 10px 25px;
    }
   .banner {
        flex-direction: column;
        margin-bottom: 10%;
    }
    .banner img {
        max-width: 100%;
    }
   .home-box {
        max-width: 100%;
        margin-top: 10px;
        margin-left: 0%;
        padding: 10px;
    }
   .home-box h1 {
        font-size: 24px;
        padding: 15px;
        text-align: center;
    }
   .home-box p {
        font-size: 14px;
        padding: 5px 15px;
        text-align: center;
        text-align: justify;
    }
    .btn{
        text-align: center;
    }
   .project-btn {
        padding: 10px;
        text-align: center;
    }
   .project-btn a {
        padding: 15px;
        font-size: 16px;
    }
}

/* -------------------------------------> Banner 2<------------------------------------- */
.banner2{
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
}
.con-ntu{
  max-width: 30%;
  height: auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  border-radius: 20px 20px 0px 0px;
}
.con-kk{
  max-width: 30%;
  height: auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  border-radius: 20px 20px 0px 0px;
}
.con-t1{
  max-width: 30%;
  height: auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  border-radius: 20px 20px 0px 0px;
}
.con-ntu img{
  max-width: 100%;
  max-height: auto;
  border-radius: 20px 20px 0px 0px;
}
.con-kk img{
  max-width: 100%;
  max-height: auto;
  border-radius: 20px 20px 0px 0px;
}
.con-t1 img{
  max-width: 100%;
  max-height: auto;
  border-radius: 20px 20px 0px 0px;
}

.ntu-text{
  padding: 2%;
  text-align: center;
}

.kk-text{
  padding: 2%;
  text-align: center;
}

.t1-text{
  padding: 2%;
  text-align: center;
}

.f-size h1{
 font-size: large;
}

.f-size p{
  font-size: small;
 }

.btn{
  padding: 25px;
}

.learn-btn{
  background-color:#006955; 
  border-radius: 20px;
  border: none;
  padding: 7px;
}

.learn-btn a{
  text-decoration: none;
  padding: 25px;
  font-size: 18px;
  color: white;
}

.learn-btn:hover {
  background-color: #002f26;
}
.learn-btn a:hover {
  color: white;
}
/* -------------------------------------> Banner 2 (Mobile) <------------------------------------- */
@media only screen and (max-width: 768px){
  .banner2{
    display: block;
  }

  .con-ntu{
    max-width: 100%;
    height: auto;
    margin-bottom: 10%;
  }
  .con-kk{
    max-width: 100%;
    height: auto;
    margin-bottom: 10%;
  }
  .con-t1{
    max-width: 100%;
    height: auto;
    margin-bottom: 10%;
  }
}
/* -------------------------------------> About <------------------------------------- */
/* Variables */
:root {
    --primary-color: #f4f4f4;
    --secondary-color: #002f26;
    --small-font-size: small;
  }
  
  /* Section 2 styles */
  .section2 {
    background-color: var(--primary-color);
    margin: 0;
  }
  
  /* Content 1 styles */
  .content1 {
    padding: 25px;
    display: flex;
  }
  
  /* About styles */
  .about {
    flex-basis: 1500px;
  }
  
  .about h1 {
    margin-bottom: 10px;
  }
  
  .about-line {
    width: 80%;
    margin-bottom: 10px;
  }
  
  .about p {
    width: 80%;
    font-size: var(--small-font-size);
    text-align: justify;
  }
  
  /* Partnership styles */
  .partnership h1 {
    margin-bottom: 10px;
  }
  
  .partnership-line {
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* ALC styles */
  .alc {
    display: flex;
    margin-bottom: 20px;
  }
  
  .alc img {
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    margin-right: 10px;
    width: 150px;
    height: 75px;
  }

  .alc p {
    font-size: var(--small-font-size);
  }
  
  /* G5CE styles */
  .g5ce {
    display: flex;
    margin-bottom: 20px;
  }
  
  .g5ce img {
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    margin-right: 10px;
    width: 150px;
    height: 75px;
  }
  
  .g5ce p {
    font-size: var(--small-font-size);
  }
  
/* -------------------------------------> About (Mobile) <------------------------------------- */
@media (max-width: 768px) {
    .content1{
        display: block;
    }
    section
    .about{
        text-align: center;
    }
    .about p{
        width: 100%;
        text-align: center;
        text-align: justify;
    }
    .about-line {
        width: 100%;
        margin-bottom: 10px;
    }

    .partnership h1 {
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: center;
    }
  }