@import url(https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap);@charset "UTF-8";
* {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a:hover {
  text-decoration: none;
}

body {
  background-color: #000;
  display: flex;
  justify-content: center;
  color: #fff;
}
body.limit-height {
  max-height: 150vh;
}

button:focus {
  outline: none;
}

.btn {
  border-radius: 0;
}

.wrapper {
  width: 100%;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.cta-button {
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #d81b3d;
}
.cta-button:hover {
  color: #fff;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(229, 62, 62, 0.3);
}

.main-headline {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  padding: 0 20px;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.main-description {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.main-description strong {
  font-weight: 600;
  color: #ffffff;
}

.lazy-image {
  width: 80%;
  max-width: 600px;
  height: 400px; /* Fixed height for demonstration */
  background-color: #e0e0e0; /* Placeholder background */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: #666;
  border: 1px solid #ccc;
  -o-object-fit: cover;
     object-fit: cover; /* Ensure image covers the area */
  transition: opacity 0.5s ease-in-out; /* Smooth transition for image load */
  opacity: 0; /* Start hidden */
}

.lazy-image.loaded {
  opacity: 1; /* Fade in when loaded */
}

/* Placeholder for images not yet loaded */
.lazy-image:not(.loaded) {
  content: "Loading...";
  background-color: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button-primary {
  background-color: #d81b3d;
  color: #ffffff;
  border-color: #d81b3d;
}

.cta-button-primary:hover {
  background-color: #d50032;
  border-color: #d50032;
  transform: translateY(-2px);
}

.cta-button-secondary {
  background-color: #000000;
  color: #d81b3d;
  border: 1px solid #d81b3d;
}

@media (max-width: 1024px) {
  .main-headline {
    font-size: 36px;
    margin: 40px;
    padding: 0;
  }
  .main-description {
    font-size: 20px;
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  .main-headline {
    font-size: 32px;
    margin: 40px;
  }
  .main-description {
    font-size: 18px;
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .main-headline {
    font-size: 20px;
    margin: 32px;
  }
  .main-description {
    font-size: 16px;
    padding: 0 80px;
  }
  .cta-buttons {
    flex-wrap: wrap;
  }
  .cta-button {
    width: 100%;
    font-size: 14px;
    padding: 12px 32px;
  }
}
@media (max-width: 768px) {
  .read-more-in-mobile .read-more-btn {
    background: none !important;
    border: none !important;
    color: #BC2023 !important;
    font-weight: bold !important;
    padding: 0 !important;
    margin-top: 8px !important;
    cursor: pointer !important;
    font-size: inherit !important;
    text-decoration: underline;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  .read-more-in-mobile .read-more-btn:hover {
    color: #d42326 !important;
    text-decoration: underline;
  }
  .read-more-in-mobile .read-more-btn:focus {
    outline: none;
  }
  .read-more-in-mobile .short-text {
    display: inline;
  }
  .read-more-in-mobile .remaining-text {
    display: none;
  }
  .read-more-in-mobile .remaining-text.show {
    display: inline;
  }
}
@media (min-width: 769px) {
  .read-more-in-mobile .read-more-btn {
    display: none !important;
  }
  .read-more-in-mobile .remaining-text {
    display: inline !important;
  }
}

@media (prefers-contrast: high) {
  .cta-button {
    border: 2px solid #ffffff;
  }
}
.faq-section {
  background-color: #000000;
  padding: 80px 0 0;
}
.faq-section .faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-section .faq-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: white;
}
.faq-section .faq-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: #333333;
  --bs-accordion-border-width: 0 0 1px 0;
  --bs-accordion-border-radius: 0;
}
.faq-section .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #333333;
  margin-bottom: 0;
}
.faq-section .accordion-button {
  background-color: transparent;
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 25px 0;
  border: none;
  box-shadow: none;
  position: relative;
  padding-left: 50px;
}
.faq-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: white;
  box-shadow: none;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.faq-section .accordion-button::after {
  display: none;
}
.faq-section .accordion-button::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  transition: transform 0.3s ease;
}
.faq-section .accordion-button:not(.collapsed)::before {
  content: "\2212";
  transform: translateY(-50%);
}
.faq-section .accordion-body {
  padding: 0 50px 25px 50px;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-section .accordion-collapse {
  border: none;
}
.faq-section .faq-content {
  max-width: 1440px;
  margin: 120px auto;
  z-index: 10;
  position: relative;
}
.faq-section .cta-buttons {
  margin-bottom: 60px;
}
.faq-section .cheering {
  margin-top: -450px;
}
.faq-section .cheering img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 0;
    padding-bottom: 40px;
  }
  .faq-section .main-description {
    margin-bottom: 0px;
  }
  .faq-section .main-headline {
    margin-left: 12px;
    margin-right: 12px;
  }
  .faq-title {
    font-size: 2.5rem;
  }
  .faq-subtitle {
    font-size: 1rem;
  }
  .accordion-button {
    font-size: 1.1rem;
    padding-left: 40px;
    text-align: center;
    width: 100%;
  }
  .accordion-body {
    padding: 0 40px 20px 40px;
    font-size: 0.95rem;
  }
  .faq-content .cta-buttons {
    display: none;
  }
}
@media (max-width: 768px) {
  .faq-section .faq-header {
    margin-bottom: 20px;
  }
  .faq-section .faq-header .main-description {
    padding: 0 20px;
  }
  .faq-section .accordion-button {
    padding: 16px 0;
  }
  .faq-section .cheering {
    margin-top: -160px;
  }
  .faq-section .faq-content {
    margin: 60px auto;
  }
}
@media (max-width: 640px) {
  .faq-section .faq-content .main-headline {
    margin-bottom: 360px;
  }
  .faq-section .faq-title {
    font-size: 2rem;
  }
  .faq-section .accordion-button {
    font-size: 1rem;
    padding-left: 35px;
  }
  .faq-section .accordion-body {
    padding: 0 35px 15px 35px;
  }
  .faq-section .cheering {
    margin-top: -400px;
  }
}
.contact-section {
  width: 90%;
  margin: 0 auto;
  margin-top: -400px;
  /* When input is focused or has content */
  /* Alternative style - label moves completely above */
  /* Additional input styles */
  /* When textarea is focused or has content */
  /* Alternative style - label moves completely above */
  /* Native Select Styling */
  /* Dropdown arrow */
  /* When select has a value selected */
  /* Custom Select Component */
}
.contact-section .contact-container {
  padding: 40px 20px;
}
.contact-section .contact-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.contact-section .section-title {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 15px;
  margin-top: 30px;
}
.contact-section .contact-info {
  margin-bottom: 20px;
}
.contact-section .contact-info i {
  color: #dc3545;
  margin-right: 10px;
  width: 20px;
}
.contact-section .business-hours {
  margin: 20px 0;
}
.contact-section .business-hours div {
  margin-bottom: 5px;
}
.contact-section .logo-section {
  margin: 40px 0;
}
.contact-section .logo-section img {
  width: 200px;
}
.contact-section .logo-text {
  color: #dc3545;
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 5px;
}
.contact-section .logo-subtext {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 3px;
  font-weight: bold;
}
.contact-section .social-icons {
  margin: 30px 0;
}
.contact-section .social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  margin-right: 15px;
  text-decoration: none;
}
.contact-section .social-icons a:hover {
  color: #dc3545;
}
.contact-section .copyright {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #cccccc;
}
.contact-section .custom-input,
.contact-section .custom-select,
.contact-section .custom-textarea {
  background-color: #000000;
  border: 1px solid #333333;
  color: #ffffff;
  height: 60px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 4px;
  padding-left: 16px;
}
.contact-section .custom-input:focus,
.contact-section .custom-select:focus,
.contact-section .custom-textarea:focus {
  background-color: #000000;
  border-color: #dc3545;
  color: #ffffff;
  outline: none;
  box-shadow: none;
}
.contact-section .custom-input::-moz-placeholder, .contact-section .custom-textarea::-moz-placeholder {
  color: #888888;
}
.contact-section .custom-input::placeholder,
.contact-section .custom-textarea::placeholder {
  color: #888888;
}
.contact-section .custom-select option {
  background-color: #000000;
  color: #ffffff;
}
.contact-section .custom-label {
  position: absolute;
  left: 32px;
  top: 20px;
  color: #666666;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #000000;
  padding: 0 4px;
}
.contact-section .required {
  color: #ff4444;
  margin-left: 2px;
}
.contact-section .custom-input:not(:-moz-placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: #4a9eff;
}
.contact-section .custom-input:focus + .custom-label,
.contact-section .custom-input:not(:placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: #4a9eff;
}
.contact-section .custom-input:not(:-moz-placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .custom-input:focus + .custom-label .required,
.contact-section .custom-input:not(:placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .input-group.floating .custom-label {
  background-color: transparent;
}
.contact-section .input-group.floating .custom-input:not(:-moz-placeholder-shown) + .custom-label {
  top: -8px;
  background-color: #000000;
  padding: 0 4px;
}
.contact-section .input-group.floating .custom-input:focus + .custom-label,
.contact-section .input-group.floating .custom-input:not(:placeholder-shown) + .custom-label {
  top: -8px;
  background-color: #000000;
  padding: 0 4px;
}
.contact-section .input-group.outlined .custom-input {
  border: 2px solid #333333;
  border-radius: 8px;
}
.contact-section .input-group.outlined .custom-input:focus {
  border-color: #4a9eff;
}
.contact-section .input-group.filled .custom-input {
  background-color: #111111;
  border: 1px solid transparent;
  border-bottom: 2px solid #333333;
  border-radius: 4px 4px 0 0;
}
.contact-section .input-group.filled .custom-input:focus {
  border-bottom-color: #4a9eff;
  background-color: #1a1a1a;
}
.contact-section .input-group.filled .custom-label {
  background-color: transparent;
}
.contact-section .input-group.filled .custom-input:not(:-moz-placeholder-shown) + .custom-label {
  background-color: transparent;
}
.contact-section .input-group.filled .custom-input:focus + .custom-label,
.contact-section .input-group.filled .custom-input:not(:placeholder-shown) + .custom-label {
  background-color: transparent;
}
.contact-section .submit-btn {
  background-color: #dc3545;
  border: none;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  width: 200px;
  margin-top: 20px;
  border-radius: 4px;
  cursor: pointer;
}
.contact-section .submit-btn:hover {
  background-color: #c82333;
  color: #ffffff;
}
.contact-section .message-field {
  min-height: 150px;
  resize: vertical;
}
.contact-section .textarea-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-section .custom-textarea {
  width: 100%;
  min-height: 120px;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 24px 16px 12px 16px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.contact-section .custom-textarea:focus {
  border-color: #4a9eff;
  box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.1);
}
.contact-section .custom-textarea:hover {
  border-color: #444444;
}
.contact-section .custom-textarea:not(:-moz-placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-textarea:focus + .custom-label,
.contact-section .custom-textarea:not(:placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-textarea:not(:-moz-placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .custom-textarea:focus + .custom-label .required,
.contact-section .custom-textarea:not(:placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .textarea-group.floating .custom-label {
  background-color: transparent;
}
.contact-section .textarea-group.floating .custom-textarea:not(:-moz-placeholder-shown) + .custom-label {
  top: -12px;
  background-color: #000000;
  padding: 0 4px;
  transform: scale(0.75);
}
.contact-section .textarea-group.floating .custom-textarea:focus + .custom-label,
.contact-section .textarea-group.floating .custom-textarea:not(:placeholder-shown) + .custom-label {
  top: -12px;
  background-color: #000000;
  padding: 0 4px;
  transform: scale(0.75);
}
.contact-section .select-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-section .custom-select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 20px 40px 8px 16px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact-section .custom-select:hover {
  border-color: #444444;
}
.contact-section .custom-select option {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px;
}
.contact-section .custom-select:focus + .custom-label,
.contact-section .custom-select:valid + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-select:focus + .custom-label .required,
.contact-section .custom-select:valid + .custom-label .required {
  color: #ff4444;
}
.contact-section .custom-select-wrapper {
  position: relative;
  width: 100%;
}
.contact-section .custom-select-display {
  width: 100%;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 20px 40px 8px 16px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact-section .custom-select-display:hover {
  border-color: #444444;
}
.contact-section .custom-select-display.active {
  border-color: #4a9eff;
  box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.1);
}
.contact-section .custom-select-display.has-value + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-select-display.active + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-select-display.has-value + .custom-label .required,
.contact-section .custom-select-display.active + .custom-label .required {
  color: #ff4444;
}

@media (max-width: 1024px) {
  .contact-section {
    margin-top: -200px;
  }
  .contact-section .contact-container {
    padding-bottom: 0;
  }
  .contact-section .contact-container .row > div {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .contact-section .contact-container .section-title {
    margin-bottom: 0;
  }
  .contact-section .contact-container .copyright {
    display: none;
  }
  .contact-section .contact-container .logo-section {
    display: none;
  }
  .contact-section .contact-container form > .row > .input-group {
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
  }
  .contact-section .contact-container form > .row > .select-group, .contact-section .contact-container form > .row > .textarea-group {
    padding: 0;
  }
  .contact-section .contact-container form > .row .custom-input,
  .contact-section .contact-container form > .row .custom-select,
  .contact-section .contact-container form > .row .custom-textarea {
    height: 48px;
    margin-bottom: 0;
  }
  .contact-section .contact-container form > .row .custom-label {
    top: 12px;
    left: 16px;
  }
  .contact-section .contact-container .submit-btn {
    margin-top: 0;
  }
}
.contact:not(.contact-section) .contact {
  padding: 5rem 0;
  background-color: #000;
}
.contact:not(.contact-section) .contact-title {
  font-size: 3rem;
  font-family: "Bebas Neue";
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 120%;
}
.contact:not(.contact-section) .contact-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.contact:not(.contact-section) .contact-info {
  padding: 5rem 0;
}
.contact:not(.contact-section) .contact-info-item {
  margin-bottom: 2rem;
}
.contact:not(.contact-section) .contact-info-icon {
  width: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact:not(.contact-section) .contact-info-title {
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 200;
  margin-bottom: 0.5rem;
}
.contact:not(.contact-section) .contact-info-desc {
  color: #fff;
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 0.5rem;
}
.contact:not(.contact-section) .contact-info-map iframe {
  width: 100%;
  height: 100%;
}
.contact:not(.contact-section) .contact-btn-get-directions {
  color: #BC2023;
  font-size: 1rem;
  font-weight: 200;
}
.contact:not(.contact-section) .contact-btn-get-directions:hover {
  color: #fff;
}

.form {
  padding: 3rem 0;
  background-color: #000;
}
.form-title {
  font-size: 3rem;
  font-family: "Bebas Neue";
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 120%;
}
.form-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.form-header {
  margin-bottom: 4rem;
}
.form-item {
  margin-bottom: 1.5rem;
}
.form-item-title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.form-item-control {
  width: 100%;
  background-color: transparent;
  border: 1px solid #BC2023;
  border-radius: 0;
  color: #fff;
  padding: 0.5rem;
}
.form-item input:not([type=checkbox]) {
  height: 2.5rem;
}
.form-item-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.form-item-btn-submit {
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #BC2023;
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 200;
  outline: none;
  border: none;
  margin-top: 4rem;
  cursor: pointer;
}
.form-item-btn-submit:hover {
  color: #BC2023;
  background-color: #fff;
}

.faq {
  margin-top: 3rem;
  background-color: #000;
  padding: 5rem 0;
}
.faq * {
  border: none;
}
.faq-title {
  font-size: 3rem;
  font-family: "Bebas Neue";
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 120%;
}
.faq-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.faq-item {
  background: transparent;
}
.faq-item-title {
  font-size: 1rem;
  color: #BC2023;
  line-height: 120%;
  font-weight: 700;
}
.faq-item-desc {
  font-size: 1rem;
  color: #fff;
  line-height: 170%;
}
.faq-item-icon img {
  height: 2rem;
  width: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  rotate: 0deg;
}
.faq-item-icon.collapsed img {
  rotate: 180deg;
}

.question {
  margin-top: 5rem;
  margin-bottom: 10rem;
}
.question-title {
  font-size: 3rem;
  font-family: "Bebas Neue";
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 120%;
}
.question-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.question-btn-contact {
  text-align: center;
  text-decoration: none;
  color: #BC2023;
  border: 1px solid #BC2023;
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 200;
  cursor: pointer;
}
.question-btn-contact:hover {
  color: #BC2023;
  background-color: #fff;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading.active {
  display: flex;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #BC2023;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .contact-info-map iframe {
    height: 20rem;
  }
  .contact-btn-get-directions {
    display: inline-block;
    margin-bottom: 3rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .contact-title {
    font-size: 2rem;
  }
  .contact-desc {
    font-size: 0.75rem;
  }
  .contact-info-title {
    font-size: 1rem;
  }
  .contact-info-desc {
    font-size: 0.75rem;
  }
  .form-title {
    font-size: 2rem;
  }
  .form-desc {
    font-size: 0.75rem;
  }
  .form-item-title {
    font-size: 0.75rem;
  }
  .form-item-btn-submit {
    font-size: 0.75rem;
  }
  .faq-title {
    font-size: 2rem;
  }
  .faq-desc {
    font-size: 0.75rem;
  }
  .faq-item-title {
    font-size: 0.75rem;
  }
  .faq-item-desc {
    font-size: 0.75rem;
  }
  .faq-item-icon img {
    height: 1.5rem;
    width: 1.5rem;
  }
  .question-title {
    font-size: 2rem;
  }
  .question-desc {
    font-size: 0.75rem;
  }
  .question-btn-contact {
    font-size: 0.75rem;
  }
}