.services-wrap {
  height: 450px;
  display: flex;
  flex-direction: column;
}

.custom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.custom-service-wrap {
  width: 100%;
}

.image-box-picture{
  width: 50px;

}


.description-wrapper {
  margin: 2em 0;
}

.description-wrapper .description {
  width: 65%;
  margin: auto;
}

.description h2 {
  font-size: 1rem;
  color: dodgerblue;
}

.title-slide {
  color: dodgerblue;
}
.title-slide:hover {
  position: relative;
  animation: Sliding-title 15s infinite;
}

@keyframes Sliding-title {
  0% {
    left: 0%;
    color: #1d6fc0;
  }
  100% {
    left: 65%;
    color: #0a2f54;
  }
  0% {
    left: 0%;
    color: dodgerblue;
  }
}

#custom-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem 5rem;
}

#custom-main .wrapper {
  /* width: 70rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#custom-main .wrapper .network-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wrapper .network-content p {
  text-align: justify;
}

#custom-main .wrapper .network-content img {
  width: clamp(25rem, 100%, 70%);
  object-fit: cover;
  padding: 1rem 1rem;
}

#custom-main .wrapper .network-content .syno {
  font-weight: bold;
}

/* PRODUCT SHOP UPDATED */
.main-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  max-width: 70rem;
  display: grid;
  grid-template-areas:
    "top top top top top top"
    "left right right right right right"
    "left right right right right right"
    "bottom bottom bottom bottom bottom bottom";
  gap: 2em;
}

.top {
  grid-area: top;
}

.left {
  grid-area: left;
}

.bottom {
  grid-area: bottom;
}

.left img {
  object-fit: cover;
  width: 500px;
  height: max-content;
}

.right {
  grid-area: right;
}

.bold {
  font-weight: 700;
}

/* SUB BOTTOM WRAPPER */

/* INDEX.HTML UPDATED */
.inner-content {
  cursor: pointer;
  display: flex;
  align-items: center;
  align-items: center;
}

/* --------------------------- */

.img-shop-500 img {
  object-fit: cover;
  width: 300px;
  height: 300px;
}

.poc {
  width: 100px;
}

.service-wrap-custom {
  height: 500px;
  display: flex;
}

.box2 img {
  width: 100px;
  object-fit: cover;
}

/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .main-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section {
    max-width: 70rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .left img {
    object-fit: cover;
    width: 100%;
    height: 500px;
  }

  .custom-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .custom-service-wrap {
    width: 100%;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .main-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section {
    display: flex;
    flex-direction: column;
  }

  .top,
  .bottom {
    margin: 1rem 1rem;
  }
  .left,
  .right {
    margin: 0 1rem;
  }

  .left img {
    object-fit: cover;
    max-width: 100%;
    height: 400px;
  }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .main-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section {
    display: flex;
    flex-direction: column;
  }

  .top,
  .bottom {
    margin: 1rem 1rem;
  }
  .left,
  .right {
    margin: 0 1rem;
  }

  .left img {
    object-fit: cover;
    width: 100%;
    height: 400px;
  }
}
