.LogoSection {
  width: 100%;
  background-color: #ffffff;
  padding-top: 40px;
}

.LogoSection .logoItem {
  flex: 0 0 auto;
  height: auto;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}

.LogoSection .logoImage {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.LogoSection .logoNavigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  background: #000;
  padding: 10px;
}

.LogoSection .navBtn {
  width: 60px;
  height: 45px;
  border: 1px solid #ddd;
  /* border-radius: 50%; */
  background: #ccc;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: all 0.3s ease;
}

/* ================================
RESPONSIVE 
================================== */

@media (min-width: 0px) and (max-width: 991.98px) {
  .LogoSection .logoItem {
    height: auto;
    width: 100%;
  }

  .LogoSection .navBtn {
    width: 40px;
    height: 30px;
    font-size: 20px;
  }
}
