main {
  background-color: #ffffff;
}

.breadcrum {
  width: 263px !important;
}

.city-locations-section {
  display: flex;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 50px 80px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.container h2 {
  text-align: center;
  padding: 8px 18px;
  border-left: 4px solid #0000009e;
  display: inline-block;
}

.locations {
  padding: 56px 112px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 -1px 9.8px #0000004d;
  border-radius: 4px;
  width: 1060px;
  background: url(../../assets/images/world-map-bg-dooted.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.25s ease;
}

.locations:hover {
  box-shadow: 0 -1px 12px #00000082;
}

.inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: start;
  column-gap: 46px;
  row-gap: 18px;
}

.inner li {
  list-style: none;
  font-size: 18px;
  font-weight: 400;
  /* line-height: 23px; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  /* white-space: nowrap; */
  /* word-break: break-word; */
  /* overflow-wrap: anywhere; */
  /* white-space: normal; */
  cursor: pointer;
  transition: all 0.25s ease;
}

.inner li:hover {
  transform: translateX(15px);
}

.inner li img {
  width: 30px;
  height: 30px;
}


/*-------------------
     Tablet view
-------------------*/
@media(max-width: 1024px) {
  .container {
    padding: 50px 40px;
  }
}



/*-------------------
     Mobile view
-------------------*/
@media(max-width: 767px) {
  .container {
    padding: 36px 24px;
  }

  .locations {
    background-repeat: repeat;
    padding: 24px 16px !important;
  }

  .inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: unset;
  }
}

@media(max-width: 1220px) {
  .locations {
    width: 100%;
    padding: 32px 62px;
  }

  .inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media(max-width: 480px) {
  .inner {
    grid-template-columns: repeat(1, minmax(100%, 1fr)) !important;
  }
}