

/* CTA */
.ms-cta-section {
  padding: 20px;
  background-color: #0B0835;
}

.ms-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ms-cta-title {
  margin-block: 0;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.ms-cta-arrow {
  display: none;
}

.ms-cta-image {
  display: block;
  margin: 0;
  width: 160px;
  min-width: 160px;
  height: 160px;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.ms-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  .ms-hero-link {
    margin: 0;
  }
}

.ms-cta-sub-title {
  margin-block: 0;
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.ms-cta-phone a {
  display: flex;
  align-items: center;
  gap: 12px;  
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #FF6D00;
  text-decoration: none;
  
  svg {
    width: 29px;
    min-width: 29px;
    height: 29px;
  }
}

.ms-cta-section a:hover,
.ms-cta-section a:focus,
.ms-cta-section a:visited {
  color: #FF6D00;
}

@media screen and (min-width: 48em) {
  .ms-cta-section {
    padding: 30px;
  }

  .ms-cta {
    gap: 30px;
  }

  .ms-cta-title {
    font-size: 32px;
    line-height: 40px;
  }

  .ms-cta-right {
    gap: 20px;
  }

  .ms-cta-sub-title {
    font-size: 32px;
    line-height: 40px;
  }

  .ms-cta-phone a {
    gap: 16px;
    font-size: 32px;
    
    svg {
      width: 38px;
      min-width: 38px;
      height: 38px;
    }
  }
}

@media screen and (min-width: 64em) {
  .ms-cta-section {
    padding: 54px;
  }

  .ms-cta {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .ms-cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* .ms-cta-title {
    font-size: 38px;
    line-height: 45px;
  } */

  .ms-cta-arrow {
    display: block;
    width: 202px;
    height: auto;
  }

  .ms-cta-image {
    min-width: 212px;
    width: 212px;
    height: 212px;
  }

  .ms-cta-right {
    gap: 30px;
  }

  /* .ms-cta-sub-title {
    font-size: 38px;
    line-height: 45px;
  }

  .ms-cta-phone a {
    gap: 20px;
    font-size: 38px;
  } */
}


a.ms-landing-cta-link:hover {
  text-decoration: underline;
  background: #CD3B00;
}

