/* 1 */

#logo {
  line-height: 60px;
  margin-left: 40px;
  display: inline-block;
  cursor: pointer;
  font-size: 30px;
  font-weight: bold;
  color: var(--primary-color);
}
#logo:hover {
  color: var(--primary-color-2);
}
#logo-s {
  color: #eef9ff; /* white */
  margin-left: 5px;
}
#logo:hover #logo-s {
  color: #141414; /* blue */
}
.sign {
  float: right;
  line-height: 60px;
  margin-right: 40px;
}
.sign a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.act {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 6px 15px;
}
.sign a:hover {
  color: #1d1d1d; /* blue */
  border-color: #202020; /* blue */
}
/* /1 */

/* 2 */
.slider {
  position: relative;
  width: 100%;
  background: #2c3e50; /* darckblue */
}
.myslide {
  height: 655px;
  display: none;
  overflow: hidden;
}

.prev,
.next {
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 50px;
  padding: 15px;
  cursor: pointer;
  color: #fff;
  transition: 0.1s;
  user-select: none;
  z-index: 100;
}
.prev:hover,
.next:hover {
  color: #1b1b1b; /* blue */
}
.next {
  right: 0;
}
.dotsbox {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 50px;
  cursor: pointer;
}
.dot {
  display: inline-block;
  width: 50px;
  height: 0px;
  border: 3.5px solid #ffffffb0;
  margin: 0 10px;
  cursor: pointer;
}
/* /2 */

/* javascript */
.active,
.dot:hover {
  border-color: #222222ef; /* blue */
  scale: 1.1;
  transition: 0.4s;
}
/* /javascript */

/* muslide add fade */
.sect1 {
  position: relative;
  z-index: 10;
}
/* /muslide add fade */

/* 3 */
.txt {
  position: absolute;
  color: #fff;
  letter-spacing: 2px;
  line-height: 35px;
  top: 40vh;
  left: 10%;
  width: 50%;
  -webkit-animation-name: posi;
  -webkit-animation-duration: 2s;
  animation-name: posi;
  animation-duration: 2s;
  z-index: 1;
}

@-webkit-keyframes posi {
  from {
    left: 25%;
  }
  to {
    left: 15%;
  }
}

@keyframes posi {
  from {
    left: 25%;
  }
  to {
    left: 15%;
  }
}

.txt h1 {
  font-size: 50px;
  margin-bottom: 20px;
}
.txt p {
  font-size: 25px;
}
/* /3 */
.headingpage {
  position: relative;
  z-index: 0;
  height: 100vh;
  overflow: hidden;
}
/* 4 */
.slider-cover {
  height: 1000px;
  position: absolute;
  object-fit: fill;
  width: 100%;
  z-index: -9;
  opacity: 0.6;
  transform: scale(1.1, 1.1);
  -webkit-animation-name: zoomin;
  -webkit-animation-duration: 40s;
  animation-name: zoomin;
  animation-duration: 40s;
}
.heading-text h1,
.heading-text p {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.363);
}
.slider-img {
  min-height: 1000px;
  object-fit: cover;
  width: 100%;
  position: absolute;
  z-index: -10;
  transform: scale(1.1, 1.1);
  -webkit-animation-name: zoomin;
  -webkit-animation-duration: 40s;
  animation-name: zoomin;
  animation-duration: 40s;
}
@-webkit-keyframes zoomin {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.2, 1.2);
  }
}

@keyframes zoomin {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.2, 1.2);
  }
}
/* /4 */

/* 5 */
@media screen and (max-width: 800px) {
  .myslide {
    height: 500px;
  }
  .txt {
    letter-spacing: 2px;
    line-height: 25px;
    top: 400px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-name: posi2;
    -webkit-animation-duration: 2s;
    animation-name: posi2;
    animation-duration: 2s;
  }

  @-webkit-keyframes posi2 {
    from {
      top: 300px;
    }
    to {
      top: 400px;
    }
  }

  @keyframes posi2 {
    from {
      top: 300px;
    }
    to {
      top: 400px;
    }
  }

  .txt h1 {
    font-size: 40px;
  }
  .txt p {
    font-size: 20px;
  }
}
/* /5 */

/* 6 */
@media screen and (max-width: 520px) {
  .txt h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .sign {
    margin-right: 20px;
  }
  .sign a {
    font-size: 20px;
  }
}
/* /6 */

.our-partners-txt-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-partners-txt-box h1 {
  font-size: 48px; /* Adjust the size as needed */
  text-align: center;
  margin: 0;
  margin-top: 10vh;
  margin-bottom: 8vh;
}

.our-partners-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%;
}

.our-partners-img {
  max-height: 100px;
  object-fit: cover;
}

.our-partners {
  height: 80vh;
  padding-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-border {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 1250px) {
  .section-border {
    width: 100%;
    height: 800px;
    z-index: 10;
    position: absolute;
    transition: 0.8s;
  }
  .our-partners {
    padding-left: 10%;
    padding-right: 10%;
    height: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s;
  }
}

@media screen and (max-width: 760px) {
  .our-partners-img {
    max-width: 95%;
    object-fit: cover;
    transition: 0.8s;
  }
  .section-border {
    width: 100%;
    height: 700px;
    z-index: 10;
    position: absolute;
    transition: 0.8s;
  }
  .our-partners {
    padding-left: 10%;
    padding-right: 10%;
    height: 700px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s;
  }
}
