.clock-cont {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  flex-wrap: wrap;
  width: 100%;
  gap: 25px;
}

.clockmain {
  width: calc(100% / 5 - (25px * 4 / 5));
  background-color: transparent;
  text-align: center
}

.clock {
  border-radius: 100%;
  background-color: var(--c_white);
  background-image: url('https://www.apptunix.com/wp-content/uploads/2025/05/clock_image.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150px;
}

.clockFlagInfo {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}

.countryFlag {
  display: none;
}

.tim {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.clock {
  width: 150px;
  margin: auto
}

.clockInfo {
  width: 100%;
  margin: 15px auto 0
}

.wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 100%;
  margin: auto
}

.hour {
  top: 30px;
  left: calc(50% - 1px);
  position: absolute;
  transform: rotate(0deg);
  transform-origin: bottom center;
  border-left: 1px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 45px solid var(--c_black);
  z-index: 1;
}

.minute {
  top: 15px;
  left: calc(50% - 1px);
  position: absolute;
  transform: rotate(90deg);
  transform-origin: bottom center;
  border-left: 1px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 60px solid var(--c_black);
  z-index: 2;
}

.second {
  top: 15px;
  left: 50%;
  position: absolute;
  transform: rotate(1800deg);
  transform-origin: bottom center;
  border-left: 1px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 60px solid var(--c_primary);
  z-index: 3;
}

.dot_mid {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  position: absolute;
  background-color: var(--c_black);
  border: 2px solid var(--c_black);
  border-radius: 100px;
  margin: auto;
  z-index: 4;
}

.clockmain.clock_4~.clockmain {
  display: none;
}