/* @import url('/components/testVngForm/testVngForm.css'); Test Vng Form */
@import url('/components/faqDropdown/faqDropdown.css'); /* FAQ Dropdown */

/*********************** Header Brand **************************/
.header__brand {
  cursor: default;
  pointer-events: none;
}

/*********************** Service Card Link *********************/
.services-card .image {
  scale: 1;
  transition: all 0.5s;
}

.services-card .button-overlay {
  transform: translateX(0rem);
  transition: all 0.5s;
}

.services-card .button__icon-arrow {
  transform: translateX(0rem);
  transition: all 0.5s;
}

@media screen and (min-width: 992px) {
  .services-card:hover .button-overlay {
    width: 100%;
  }

  .services-card:hover .button__icon-arrow {
    transform: translateX(1rem);
  }

  .services-card:hover .image {
    scale: 1.05;
  }
}

/*********************** Button Texting ************************/
.button-texting {
  color: var(--color-grey);
  transform: translateX(0rem);
  transition: all 0.2s;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .button-texting:hover {
    color: var(--color-black);
  }
}

@media screen and (max-width: 992px) {
  .button-texting {
    color: var(--color-white);
  }
}
