.text-center {
  text-align: center;
}

.clearfix {
  clear: both;
}

.map {
  width: 100%;
  height: 250px;
}

.skills {
  background-color: #f2f8fb;
}

.skills__list {
  list-style-type: none;
  font-family: 'Poiret One', cursive;
  display: grid;
  row-gap: 20px;
  font-size: 24px;
  line-height: 1.4;
  color: #000;
  margin: 0;
  padding: 0;
}

.skills__item {
  display: flex;
}

.skills__item::before {
  content: "";
  background: url(/images/check.svg) no-repeat center center;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.skills__years {
  font-size: .8em;
  white-space: nowrap;
}

.section p:last-child {
  margin-bottom: 0;
}

.wow-effect-text {
  display: flex;
  align-items: center;
}
.wow-effect-text svg {
  color: #75d914;
    font-size: 36px;
    margin-right: 8px;
}

@media screen and (min-width: 576px) {

  .map {
    height: 300px;
  }

}

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

  .map {
    height: 350px;
  }

  .skills__list {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
}

@media screen and (min-width: 992px) {

  .map {
    height: 400px;
  }

}

@media screen and (min-width: 1200px) {

  .skills__list {
    grid-template-columns: repeat(4, 1fr);
    font-size: 32px;
  }

  .skills__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .skills__item::before {
    margin-right: 0;
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
  }
}