/* ******************* headline ***************** */

.headline {
  background-color: var(--color-bg-dark);
  padding: 10px 20px;
}



.headline a {
  color: white;
  font-size: 14px;
}

.headline a:hover {
  color: var(--color-bg-light);
}

.headline a i {
  color: var(--color-bg-light);
}

.headline-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}

.headline-content .right {
  display: flex;
  gap: 20px;
}

@media screen and (max-width:576px) {
  .headline a {
    font-size: 13px;
  }
}

@media screen and (max-width:400px) {
  .headline a {
    font-size: 11px;
  }
}



/* ******************** slides section ********************* */

.swiper {
  height: 75vh;
}

.swiper-wrapper {}

.swiper-slide {
  background-repeat: no-repeat;
  background-size: 100%;
}

.slide-content {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
}

.slide-content .text {}

.slide-content .text h3 {
  font-size: 3rem;
}

/* **************call section*************  */

.call {
  /* background-color: var(--color-bg); */
  background: #ffd900;
  background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
}



.call a {
  padding: 12px;
  color: white;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  text-align: center;
  display: block;
}


@media screen and (max-width:576px) {
  .call a {
    font-size: 14px;
  }
}

/* ***************** location *********************    */

.locations-area {
  padding: 4rem 20px;
}
.locations-area > h2{
  text-align: center;
  margin-bottom: 40px;
}

.locations-area-content {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin-inline: auto;
  flex-wrap: wrap;
}

.locations-area-content .location {
  padding: 10px;
  background-color: #f2f2f2;
  border-radius: 7px;

}

.locations-area-content .location:hover {
  color: white;
  background: #ffd900;
  background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
  transition: 0s;
}


@media screen and (max-width:768px) {

.locations-area {
  padding: 2rem 20px;
}
}