.main-content-wrapper{
		margin-top: 0% !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
    margin-left: 0px !important;
	}
.weather-slider {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  font-family: Arial, sans-serif;
}

.weather-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
	margin-bottom: 65px;
}

.weather-slide.active {
  opacity: 1;
}

.weather-content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.left-info h4,
.left-info h5 {
  margin: 0;
  font-weight: 400;
}

.left-info h4 {
  font-size: 16px;
}

.left-info h5 {
  font-size: 14px;
  opacity: 0.8;
	color:white;
}

.island-name {
  display: block;
  margin-top: 10px;
  font-size: 35px;
  font-weight: bold;
}

.right-info {
  text-align: right;
}

.temp {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
}

.temp span {
  font-size: 26px;
  vertical-align: top;
}

.condition {
  margin-top: 8px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .weather-slider {
    height: 180px;
  }

  .temp {
    font-size: 48px;
  }

  .condition {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .weather-content {
    padding: 15px;
  }

  .temp {
    font-size: 42px;
  }

  .island-name {
    font-size: 26px;
  }
}
