/* homepage card */
@media (max-width: 1366px){
    .custom-card div{
        margin-top: 13rem;
    }
}
@media (min-width: 1367px){
    .custom-card div{
        margin-top: 16rem;
    }
}

a {
    text-decoration: none;
}

.bg-aliceblue {
    background: aliceblue;
}

/* services section */

.icon-box:hover .icon {
    background: var(--text-red);
    transition: all .9s ease;
    color: #fff;
}

.icon-box:hover h4 a {
    color: var(--text-red);
}




/* about us page by shubham */

.about {
    padding-top: 80px;
  }
  .about .content h3 {
    font-weight: 600;
    font-size: 26px;
  }
  .about .content p {
    font-weight: 600;
    font-size: 1rem;
  }
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  .about .content ul li {
    padding-left: 28px;
    position: relative;
  }
  .about .content ul li + li {
    margin-top: 10px;
  }
  .about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #b92426;
    line-height: 1;
  }
  .about .content p:last-child {
    margin-bottom: 0;
  }
  .about .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color:#b92426;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #b92426;
  }
  .about .content .btn-learn-more:hover {
    background: #b92426;
    color: #fff;
    text-decoration: none;
  }
  .section-title p{
      font-size: 1.5rem;
  }
  .section-title h2 {
      font-size: 14px;
      font-weight: 500;
      padding: 0;
      line-height: 1px;
      margin: 0 0 5px 0;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #aaaaaa;
      font-family: "Poppins", sans-serif;
  }
  .section-title h2::after {
      content: "";
      width: 120px;
      height: 1px;
      display: inline-block;
      background: #b92426;
      margin: 4px 10px;
  }
  
  /* Cards=== */
  
  /* style member component */
  .list-members {
    background: #b92426;
    width: 80%;
    margin: 4% auto;
    display: flex;
    flex-wrap: wrap;
  }
  
  .member {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .member-image {
    width: 50%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    transition: 1s;
  }
  
  .member-image:hover img {
    transform: scale(1.1);
  }
  
  .member-info {
    width: 50%;
    text-align: center;
    color: #fff;
  }
  
  .member-info p {
    margin: 20px 0;
  }
  
  
  /* style social link */
  .social-link .fab {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #fff;
    margin: 0 7px;
    cursor: pointer;
    transition: transform .5s;
  }
  
  .social-link .fab:hover {
    background: #fff;
    color: #b92426;
    transform: translateY(-7px);
  }
  
  /* Membuat segitiga */
  .member-image::after {
    content: '';
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 15px solid #b92426;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  
  
  /* Merubah posisi member-image dengan member-info */
  @media screen and (min-width: 771px) {
    .member:nth-child(4n+3) .member-info,
    .member:nth-child(4n+4) .member-info {
      order: 1;
    }
    .member:nth-child(4n+3) .member-image,
    .member:nth-child(4n+4) .member-image {
      order: 2;
    }
  
    /* Merubah posisi sigitiga pada baris genap */
    .member:nth-child(4n+3) .member-image::after,
    .member:nth-child(4n+4) .member-image::after {
      left: 0;
      right: auto;
      transform: translateY(-50%) rotateZ(180deg);
    }
  }
  
  
  /* Mobile Styles */
  @media screen and (max-width: 770px) {
    .list-members {
      width: 95%;
    }
    .member {
      flex-basis: 100%;
      font-size: 14px;
    }
    .social-link .fab {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }
  
    .member:nth-child(even) .member-info {
      order: 1;
    }
    .member:nth-child(even) .member-image {
      order: 2;
    }
    
    /* Merubah posisi sigitiga elemen genap */
    .member:nth-child(even) .member-image::after {
      left: 0;
      right: auto;
      transform: translateY(-50%) rotateZ(180deg);
    }
  }

/* about us page by shubham */


/* Header box shadow */
header {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
/* Header box shadow */



/* ===== Journey ===== */

.designer-text {
    color: transparent;
    background: linear-gradient(45deg, #000, var(--text-red));
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 800;
}

.header-line {
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    color: var(--text-red);
}


.timeline-1, .timeline-2{
    position: relative;
    line-height: 1.5;
}
.timeline-1 h3, .timeline-2 h3{
    color: var(--text-red);
    font-weight: 700;
}
.timeline-1{
    text-align: left;
}
.timeline-2{
    text-align: right;
}

.timeline::before{
    content: "";
    height: 100%;
    width: 2%;
    left: 50%;
    position: absolute;
    background-image:linear-gradient(to bottom, var(--text-red) 0%, var(--text-red) 50%, transparent 50%);
    background-size:3px 28px;
    background-repeat:repeat-y;
}

.timeline-1::before {
    content: "";
    background-color: var(--text-red);
    height: 1em;
    width: 1em;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 10px;
}
.timeline-2::after {
    content: "";
    background-color: var(--text-red);
    height: 1em;
    width: 1em;
    border-radius: 50%;
    position: absolute;
    right: -9px;
    top: 10px;
}

.years-info {
    width: fit-content;
    background: var(--text-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    height: fit-content;
}

@media (max-width: 767px){
  .timeline::before, .timeline-1::before,.timeline-2::after{
    display: none;
  }
  .timeline-1, .timeline-2{
      text-align: justify;
  }
  .timeline-1 h3, .timeline-2 h3{
      text-align: center !important;
  }
}
/* ===== Journey ===== */

@media (max-width: 992px){
  footer .border-shape::before {left:100px;}
  footer .border-shape::after {right:100px;}

}

/* About us Certificates ==== */
.red-line {
  background-color: var(--text-red);
  height: 6px;
  margin: 0;
}
.width-fit{
  width: fit-content;
}
/* About us Certificates ==== */


/* --- ===== Client Logos === */

/* .tech-slideshow {
  height: 100px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border:1px solid black;
}

.mover-1 {
  height: 150px;
  width: 20000px;
  position: absolute;
  overflow-x:hidden;
  top: 0;
  left: 0;

  animation: moveSlideshow 3s linear infinite;
}

.mover-1 img {
  display:inline-block;
  vertical-align:middle;
  width:100px;
  margin:0;
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-770px);  
  }
} */

/* --- ===== Client Logos === */
/* client logos ==== */

.tech-slideshow {
  height: 100px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: none;
}

.mover-1 {
  height: 150px;
  width: 20000px;
  
  position: absolute;
  overflow-x:hidden;
  top: 0;
  left: 0;

  animation: moveSlideshow 20s linear infinite;
}

.mover-1 img {
  display:inline-block;
  vertical-align:middle;
  width:100px;
  margin:0;
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-240vw);  
  }
} 


/* client logos ==== */
/* banner slider about us */

@media (max-width: 767px){
  .carousel-control-next-icon, .carousel-control-prev-icon {
    margin-top: -60px;
  }
}

/* banner slider about us */
