.main {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  top: calc(var(--header-height) + 10px);
  align-self: center;
  flex-direction: column;
  margin-bottom: 50px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 100px;
  align-self: center;
}

.services__item {
  width: 420px;
  height: 650px;
  background: var(--container-bg);
  border: var(--border);
  box-shadow: var(--box-shadow);
  margin: 30px;
  padding: 10px;
  position: relative;
  align-self: center;
  padding-bottom: 10px;
}

.services__item img {
  width: 100%;
  height: 400px;
}

.services__item-title {
  color: var(--dark-red);
  font-size: 28px;
  font-weight: 400;
  margin: 20px;
  text-align: center;
}

.services__item-description {
  color: var(--dark-red);
  font-size: 15px;
  text-align: center;
  padding: 10px;
  padding-bottom: 50px;
  font-family: Roboto-Regular;
  margin: 0;
}

.get-a-quote {
  font-size: 18px;
  background: var(--dark-red);
  text-decoration: none;
  text-transform: lowercase;
  color: white;
  font-weight: 200;
  padding: 18px 15px;
  position: relative;
  top: 25px;
  cursor: pointer;
}

/* Media Queries */
@media (max-width: 1385px) {
  .services {
    flex-wrap: nowrap;
  }
  .services__item {
    width: 390px;
  }
}

@media (max-width: 985px) {
  .services {
    flex-wrap: wrap;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .services {
    margin-top: 0;
    margin-bottom: 60px;
    padding: 0;
    align-self: center;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .services:first-child {
    margin-top: 55px;
  }

  .services__item:hover {
    background: white;
  }

  .services__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 100%;
    height: auto;
  }
  .services__item img {
    width: 100%;
    height: 300px;
    align-self: center;
  }

  .services__item-description {
    text-align: center;
    text-wrap: wrap;
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .services {
    margin-top: 0;
    margin-bottom: 60px;
    padding: 0;
    align-self: center;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .services:first-child {
    margin-top: 55px;
  }

  .services__item:hover {
    background: white;
  }

  .services__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 100%;
    height: auto;
  }
  .services__item img {
    width: 100%;
    height: 300px;
    align-self: center;
  }

  .services__item-description {
    text-align: center;
    text-wrap: wrap;
    font-size: 15px;
    margin-bottom: 20px;
  }
}
