/* Back Content Alignment */
.flip-card-what .elementor-flip-box__back .elementor-flip-box__layer__inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Remove default button spacing */
.flip-card-what .elementor-flip-box__button{
    margin: 16px 0 0 0 !important;
    align-self: flex-start !important;
}



.the-flip-box a.elementor-flip-box__button.elementor-button.elementor-size-sm {
    padding: 0;
}
.flip-card-what:hover .elementor-flip-box__front .elementor-flip-box__layer__title{
    opacity: 0 !important;
}
.text-primary{
    color: #13A7A8 !important;
}

/* form_css */

/* ====================================================
   CF7 VEHICLE FORM — PRODUCTION CSS
   Add to theme's style.css or Customizer > Additional CSS

   REQUIRED: enqueue these fonts or the heading falls back to
   Montserrat-bold (which is what caused the "not Anton" look):
   https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;600;700&display=swap
   ==================================================== */

/* Prevents the whole page getting a horizontal scrollbar if any
   parent theme wrapper is narrower than 1200px */
.cf7-vehicle-wrap,
.cf7-vehicle-wrap .cf7-row {
  max-width: 100%;
}

.cf7-vehicle-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.45) !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  overflow: hidden;
}

.cf7-vehicle-wrap * {
  box-sizing: border-box;
  /* display: flex; */
}

/* Rows */
.cf7-row {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;
}

.cf7-row-3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cf7-row-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cf7-row-submit {
  margin-bottom: 0;
}

/* Field group */
.cf7-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  justify-content: end;
}

.cf7-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 10px !important;
}

.cf7-group .req-star,
.cf7-vehicle-wrap span.wpcf7-form-control-wrap {
  color: #FF4D4D;
}

.cf7-group .req-star {
  font-size: 18px;
}

/* Inputs, select, textarea */
#cf7-vehicle-form-wrap input[type="text"],
#cf7-vehicle-form-wrap input[type="email"],
#cf7-vehicle-form-wrap input[type="tel"],
#cf7-vehicle-form-wrap input[type="number"],
#cf7-vehicle-form-wrap select,
#cf7-vehicle-form-wrap textarea,
.cf7-vehicle-wrap input[type="text"],
.cf7-vehicle-wrap input[type="email"],
.cf7-vehicle-wrap input[type="tel"],
.cf7-vehicle-wrap input[type="number"],
.cf7-vehicle-wrap select,
.cf7-vehicle-wrap textarea {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100%;
  height: 43px;
  background: #FFFFFF;
  border: none;
  border-radius: 0;
  padding: 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #111111;
  transition: 0.3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-top: 10px;
}

/* CF7 wraps every field in a span with its own width — must not let it collapse to input's native size */
.cf7-vehicle-wrap .wpcf7-form-control-wrap,
.cf7-vehicle-wrap .wpcf7-text,
.cf7-vehicle-wrap .wpcf7-select,
.cf7-vehicle-wrap .wpcf7-email,
.cf7-vehicle-wrap .wpcf7-tel {
  width: 100%;
  min-width: 0;
  display: block;
}

.cf7-vehicle-wrap textarea {
  height: 180px;
  padding: 18px;
  resize: vertical;
}

.cf7-vehicle-wrap input::placeholder,
.cf7-vehicle-wrap textarea::placeholder {
  color: #666666;
}

.cf7-vehicle-wrap input:focus,
.cf7-vehicle-wrap select:focus,
.cf7-vehicle-wrap textarea:focus {
  outline: none;
  border: 2px solid #33BBCE;
  box-shadow: 0 0 0 4px rgba(51, 187, 206, 0.15);
}

/* Select dropdown arrow */
.cf7-vehicle-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23111111' d='M7 9L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 9px;
  padding-right: 44px;
  cursor: pointer;
}

/* Remove native IE arrow */
.cf7-vehicle-wrap select::-ms-expand {
  display: none;
}

/* Submit button */
#cf7-vehicle-form-wrap input[type="submit"],
#cf7-vehicle-form-wrap .wpcf7-submit {
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  background: #33BBCE !important;
  background-color: #33BBCE !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 15px 20px !important;
  border: 1px solid #33bbce;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background 0.35s ease;
  appearance: none;
  -webkit-appearance: none;
}

#cf7-vehicle-form-wrap input[type="submit"]:hover,
#cf7-vehicle-form-wrap input[type="submit"]:focus,
#cf7-vehicle-form-wrap .wpcf7-submit:hover,
#cf7-vehicle-form-wrap .wpcf7-submit:focus {
  background: #26AFC1 !important;
  background-color: #26AFC1 !important;
  outline: none !important;
	background: #ffffff !important;
    background-color: #ffffff !important;
    outline: none !important;
    color: #33bbce !important;
}

/* CF7 wrapper resets */
.cf7-vehicle-wrap .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

.cf7-vehicle-wrap .wpcf7-not-valid-tip {
  color: #FF4D4D;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  margin-top: 6px;
}

.cf7-vehicle-wrap .wpcf7-response-output {
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
  margin: 20px 0 0;
}

.cf7-vehicle-wrap .wpcf7-spinner {
  margin-left: 12px;
}

/* ====================================================
   RESPONSIVE BREAKPOINTS
   ==================================================== */

/* 2400px+ Large desktop */
@media (min-width: 2400px) {
  .cf7-vehicle-wrap {
    max-width: 1400px;
    padding: 80px;
  }

  .cf7-vehicle-heading {
    font-size: 64px;
  }
}

/* 1366px Desktop */
@media (max-width: 1366px) {
  .cf7-vehicle-wrap {
    max-width: 1100px;
    padding: 50px;
  }
}

/* 1200px Tablet Landscape */
@media (max-width: 1200px) {
  .cf7-vehicle-wrap {
    max-width: 100%;
    padding: 45px;
  }

  .cf7-vehicle-heading {
    font-size: 48px;
  }
}

/* 1024px Tablet Portrait */
@media (max-width: 1024px) {
  .cf7-row-3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .cf7-row-2col {
    gap: 22px;
  }

  .cf7-vehicle-wrap {
    padding: 40px;
  }

  .cf7-vehicle-heading {
    font-size: 42px;
    margin-bottom: 32px;
  }
}

/* 880px Mobile Landscape */
@media (max-width: 880px) {
  .cf7-row-3col,
  .cf7-row-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cf7-vehicle-wrap {
    padding: 32px;
  }

  .cf7-vehicle-heading {
    font-size: 36px;
    margin-bottom: 28px;
  }
}

/* 767px Mobile Portrait */
@media (max-width: 767px) {
  .cf7-vehicle-wrap {
    padding: 24px;
  }

  .cf7-vehicle-heading {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .cf7-group label {
    font-size: 16px;
  }

  .cf7-vehicle-wrap input[type="text"],
  .cf7-vehicle-wrap input[type="email"],
  .cf7-vehicle-wrap input[type="tel"],
  .cf7-vehicle-wrap select,
  .cf7-vehicle-wrap textarea {
    height: 54px;
    font-size: 15px;
  }

  .cf7-vehicle-wrap input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}
.from-heading p {
    font-size: clamp(15px, 1vw + 12px, 20px);
    line-height: 1.4em;
    color: #33BBCE !important;
    font-family: 'Righteous', sans-serif;
    margin-bottom: 15px !important;
    padding: 0;
}
.tint-header-menu ::after {
    background: #33BBCE !important;
}

@media (max-width: 1200px) and (min-width: 600px) {

    .serchbar-footer .e-search-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .serchbar-footer input#search-04ccc24 {
        height: 45px;
    }

}

.review-section-home .quate-section-review p.elementor-blockquote__content {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}