@media only screen and (max-width: 992px) {
  /* carousel */
  .carousel-caption > .carousel-title {
      font-size: 50px;
  }
  .carousel-caption > p{
      font-size: 15px;
  }
  .adv-card-wrapper {
    justify-content: space-between;
  }

  /* about */
  .agency-details-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .agency-details-wrapper > .agency-details {
    width: 100%;
    margin-right: 0px;
  }
  .agency-details-wrapper > .agency-details-img {
    width: 70%;
    margin-top: 40px;
  }

  /* services */
  .work-flow {
    grid-template-columns: 1fr;
  }
  
  /* our team */
  .our-team-wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 768px) {
  /* carousel */
  .carousel-caption > .carousel-title {
      font-size: 30px;
  }
  .carousel-caption > p{
      font-size: 15px;
  }

  /* about */
  .adv-card-wrapper {
    justify-content: space-evenly;
  }
  .agency-details-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .agency-details-wrapper > .agency-details {
    width: 100%;
    margin-right: 0px;
  }
  .agency-details-wrapper > .agency-details-img {
    width: 70%;
    margin-top: 40px;
  }
  .step-card-wrapper {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
  }
  .step-card {
    margin: 0px 20px 50px 0px;
    width: 100%;
  }
  
  /* double title */
  .double-title > h1 {
    font-size: 30px;
  }

  /* centered title */
  .centered-title > h1 {
    text-align: center;
    color: var(--dark-green);
    font-size: 40px;
    font-weight: 500;
  }

  /* about us */
  .wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .wrapper-img, .wrapper-caption {
    margin-bottom: 20px;
    width:100%;
  }
}
@media only screen and (max-width: 600px) {

  /* carousel */
  .carousel-caption{
      top:50%;
  }
  .carousel-caption > .carousel-title {
      font-size: 25px;
  }
  .carousel-caption > p{
      font-size: 15px;
  }

  /* about */
  .adv-card-wrapper {
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 450px) {
  .carousel-caption > .carousel-title {
    width: 80%;
    margin: 0 auto;
    font-size: 20px;
  }

  /* about */
  .agency-contact {
    display : flex;
    align-items: center;
  }
  .agency-contact > button {
    padding: 15px 30px;
    margin-right: 0px;
  }
  .agency-phone > a > span {
    font-weight: 400;
    font-size: 14px;
  }

  /* services */
  .work-flow {
    grid-template-columns: 1fr;
  }
}