/* Media Queries Mixin
**********************/
/* paragraphs */
/* background, headings, buttons */
body {
  margin: 0;
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  body {
    width: auto;
    height: auto;
  }
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-bright-orange {
  color: #e38826;
}

.button-dark-cyan {
  color: #006970;
}

.button-very-dark-cyan {
  color: #004241;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 920px;
}
@media only screen and (max-width: 768px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
    margin: 40px 15px;
  }
}

.item {
  padding: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-orange {
  width: 313px;
  background-color: #e38826;
  border-radius: 8px 0 0 8px;
}
@media only screen and (max-width: 768px) {
  .item-orange {
    border-radius: 8px 8px 0 0;
  }
}
.item-dark {
  width: 313px;
  position: relative;
  background-color: #006970;
  border-radius: 8px;
  left: -5px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .item-dark {
    left: 0;
    top: -5px;
  }
}
.item-very {
  width: 317px;
  position: relative;
  background-color: #004241;
  border-radius: 0 8px 8px 0;
  left: -10px;
}
@media only screen and (max-width: 768px) {
  .item-very {
    left: 0;
    border-radius: 0 0 8px 8px;
    top: -10px;
  }
}
.item__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 40%;
}
@media only screen and (max-width: 768px) {
  .item__text {
    margin: 10px 0;
  }
}
.item__title {
  font-family: "Big Shoulders Display", cursive;
  text-transform: uppercase;
  color: #f2f2f2;
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  .item__title {
    margin: 10px 0;
  }
}
.item__button {
  background-color: #f2f2f2;
  width: 146px;
  height: 48px;
  border-radius: 25px;
  border: none;
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .item__button {
    left: 0;
  }
}
.item__button:hover {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.75);
}
@media only screen and (max-width: 768px) {
  .item {
    width: 327px;
    height: 442px;
    padding: 44px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}