.section-Home {
  height: auto;
  margin-top: 70px;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.carousel-container {
  width: 75%;
  height: 100vh;
  overflow: hidden;
}

.carousel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-container {
  width: 25%;
  height: 100%;
  background: var(--infoColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.info-container img {
  width: 250px;
  height: 170px;
}

.text h5 {
  color: var(--text-h5);
  font-weight: 700;
}

.carousel-item {
  animation: fadeIn 1s ease-in-out;
}

.social-icons .btn-social {
  width: 35px;
  height: 35px;
  background: var(--social-icons-btn-social);
  border-radius: 50%;
  font-size: 23px;
  color: var(--btn-social-font);
  margin: 0 5px;
  text-align: center;
  margin-top: -30px;
  padding: 2px;
  transition: background 0.5s;
}

.social-icons .btn-social:hover {
  background: var(--btn-social-hover);
}

.gender {
  font-weight: bolder;
}

.text {
  text-align: center;
  line-height: 10px;
  margin-top: 10px;
}

.text h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--info-text-h1);
}

.text p {
  font-size: 0.9rem;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1120px) {
  .section-Home {
    flex-direction: column;
    height: 250vh;
  }

  .carousel-container {
    width: 100%;
    height: 100vh;
  }

  .info-container {
    width: 100%;
    height: 150vh;
    justify-content: center;
  }

  .carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
  }

  .info-container img {
    width: 600px;
    height: 310px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1121px) {
  .info-container {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 450px) {
  .info-container {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .info-container img {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .section-Home {
    flex-direction: column;
    height: 200vh;
  }

  .info-container {
    width: 100%;
    height: 115vh;
    justify-content: flex-start;
  }

  .info-container img {
    width: 300px;
    height: 250px;
    margin-bottom: 20px;
  }

  .carousel-container {
    width: 100%;
    height: 80vh;
  }

  .carousel-item img {
    height: 80vh;
    width: 100%;
    object-fit: cover;
  }
}

.section-welcom {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.welcom-logo {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin-left: 200px;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  width: 60%;
  height: auto;
  margin-bottom: -70px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.welcom-text {
  text-align: center;
  width: 70%;
  position: relative;
}

.welcom-text h1 {
  color: var(--welcm-h1-color);
  font-weight: 700;
  font-size: 3.1rem;
  margin-top: 0;
}

@media (max-width: 1020px) {
  .welcom-about {
    height: auto;
  }

  .welcom-text {
    width: 80%;
  }

  .welcom-text h1 {
    font-size: 2.8rem;
  }

  .welcom-logo {
    margin-left: auto;
    margin-bottom: -30px;
    width: 70%;
  }
}

@media (max-width: 768px) {
  .welcom-text {
    width: 85%;
  }

  .welcom-text h1 {
    font-size: 2.5rem;
  }

  .welcom-logo {
    width: 80%;
    margin-left: auto;
  }
}

@media (max-width: 450px) {
  .section-welcom {
    height: auto;
  }

  .welcom-text {
    width: 90%;
  }

  .welcom-text h1 {
    font-size: 2rem;
  }

  .welcom-logo {
    width: 100%;
    margin-left: 20px;
  }
  .info-container {
    background-color: #fff;
  }
}

.grid-container img:hover {
  transform: scale(1.1);
}
.Progress {
  height: 50vh;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 20px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in;
}

.img-box {
  text-align: center;
  animation: bounceIn 0.8s ease;
}

.img-box img {
  width: 100px;
  height: 100px;
  transition: transform 0.5s ease-in-out;
}

.img-box:hover img {
  transform: scale(1.1);
}

.img-box h1 {
  color: var(--Count-Color);
  font-weight: 600;
  font-size: 2.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounceIn {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .progress-container {
    flex-direction: row;
    gap: 20px;
  }

  .img-box h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .progress-container {
    flex-direction: column;
    padding: 10px;
  }

  .img-box {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .Progress {
    height: auto;
  }

  .progress-container {
    flex-direction: column;
    padding: 5px;
  }

  .img-box h1 {
    font-size: 1.8rem;
  }
}

.Home-img-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: popIn 1.2s ease-in-out;
}

.img-text h1 {
  color: var(--welcm-h1-color);
  font-weight: 700;
  font-size: 3.1rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: bounceIn 1.5s ease-in-out;
}

.img-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: calc(100vh - 80px);
}

.vid-container {
  width: 50%;
  height: 70%;
  margin-left: 10px;
  animation: fadeIn 1.2s ease-in-out;
}

.vid-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: 50%;
  height: 70%;
  padding: 10px;
  animation: fadeIn 1.2s ease-in-out;
}

.grid-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.vid-container video:hover {
  transform: scale(1.1);
}

@media (max-width: 1020px) {
  .Home-img-section {
    height: auto;
  }

  .img-text h1 {
    font-size: 2.8rem;
  }

  .vid-container,
  .grid-container {
    width: 48%;
  }

  .tree {
    gap: 50px;
  }
  .tree img {
    height: 70px !important;
    width: 120px !important;
  }
}

@media (max-width: 768px) {
  .Home-img-section {
    height: auto;
  }

  .img-container {
    flex-direction: column;
    height: auto;
  }

  .vid-container,
  .grid-container {
    width: 100%;
    height: 45vh;
  }

  .img-text h1 {
    font-size: 2.5rem;
  }
  .tree {
    justify-content: space-around;
  }

  .tree img {
    height: 70px !important;
    width: 120px !important;
  }
}

@media (max-width: 450px) {
  .Home-img-section {
    height: auto;
  }

  .vid-container {
    height: 30vh;
    width: 100%;
  }

  .grid-container {
    width: 100%;
    height: auto;
  }

  .img-container {
    flex-direction: column;
    height: auto;
  }

  .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
  }

  .img-text h1 {
    font-size: 2rem;
  }
  .tree {
    justify-content: space-around;
  }
  .tree img {
    height: 100px !important;
    width: 100px !important;
  }
}

.tree {
  display: flex;
  justify-content: space-evenly;
  gap: 600px;
  animation: fadeIn 1.5s ease-in-out;
}

.tree img {
  height: 400px !important;
  width: 350px !important;
  transition: transform 0.4s ease-in-out;
  object-fit: cover;
  object-fit: cover;
}
 .school-info {
     display: flex;
     margin-top: 100px;
     gap: 100px;
     align-items: center;
     height: 200px;
     margin-left: 50px;

 }

 .school-info a img {
     width: 250px;
     height: 250px;
     object-fit: cover;
 }

@media (max-width: 450px) {
     .school-info a img {
         width: 120px;
         height: 120px;
         object-fit: cover;
     }

     .school-info {

         margin-top: 70px;
         gap: 5px;
         width: 50%;
         height: auto;
         margin-left: 0;

     }
     
     .social-icons .btn-social{
      width: 27px;
      height: 27px;
        background: var(--social-icons-btn-social);
        border-radius: 50%;
        font-size: 18px;
        color: var(--btn-social-font);
        margin: 0 5px;
        text-align: center;
        margin-top: -30px;
        padding: 1px;
        transition: background 0.5s;
        gap: 2px;
     
     }
 }

 @media (max-width: 768px) {
     .school-info a img {
         width: 170px;
         height: 170px;
         object-fit: cover;
     }

     .school-info {

         margin-top: 70px;
         gap: 10px;
         width: 100%;
         height: auto;
         margin-left: 0;

     }
 }
