/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
 * [Strip the pesky units from values]
 * @param  {[Number]} $value
 */
/**
 * [Fluid Type]
 */
.invalid-feedback {
  display: none; }

@media only screen and (min-width: 354px) and (max-width: 500px) {
  .form-detail-content {
    padding-left: 17px !important; }
  .recaptcha-container {
    height: 55px;
    margin-left: -4px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; } }

@media only screen and (min-width: 320px) and (max-width: 354px) {
  .form-detail-content {
    padding: 30px 15px 30px 12px !important; }
  .recaptcha-container {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    height: 55px;
    margin-left: -5px; } }

@media (max-width: 767px) {
  .form-section-body {
    padding: 12px !important; }
  .Thankyou-text {
    font-size: 2rem; }
  .container-custom {
    padding: 0px 16px !important; }
  .parallax-slide {
    position: relative;
    height: 100vh; }
  .parallax-clip {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px; }
  .fixed-parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center 0;
    will-change: background-position; }
  .fixed-parallax::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    content: "";
    z-index: 1; }
  @supports (-webkit-overflow-scrolling: touch) {
    .parallax-clip {
      clip: rect(auto, auto, auto, auto); }
    .fixed-parallax {
      position: fixed;
      background-attachment: unset;
      -webkit-transform: translateZ(0); } }
  .custom-img-four,
  .custom-img-one,
  .custom-img-three,
  .custom-img-two {
    width: 100%;
    height: 100vh;
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
    background-size: cover;
    background-attachment: fixed;
    -webkit-transition: -webkit-transform 1.5s ease, -webkit-filter 1s ease;
    transition: -webkit-transform 1.5s ease, -webkit-filter 1s ease;
    transition: transform 1.5s ease, filter 1s ease;
    transition: transform 1.5s ease, filter 1s ease, -webkit-transform 1.5s ease, -webkit-filter 1s ease; }
  .invite-franchise {
    font-size: 0.875rem;
    padding: 24px 0px;
    font-weight: 600;
    line-height: 20px; }
  .details-franchise-desciptions {
    margin-bottom: 4rem;
    padding: 0px 16px; }
  .text-area-section {
    text-align: center;
    margin-bottom: 1rem; }
  .buttondiv-wrapper {
    width: 100% !important;
    margin-top: 40px !important; }
  .form-submit button {
    width: 100%;
    padding: 12px 67px !important; } }

.form-section-body {
  padding: 34px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #FFF; }

.form-detail-content {
  border: 3px solid #b99d4ebd;
  padding: 28px;
  border-radius: 3px; }

.container-custom {
  padding: 0px; }

.invite-franchise {
  text-align: center;
  color: #b99d4ebd;
  font-size: 8px;
  font-family: "MidlandLuxury", serif;
  padding: 40px 0px;
  font-weight: 100;
  letter-spacing: 0.48px;
  line-height: 20px; }

.details-franchise-desciptions {
  font-family: 'Montserrat';
  font-size: 0.875rem;
  color: #1a1a1a;
  letter-spacing: 0.1px;
  line-height: 20px;
  font-weight: 400;
  width: 100%;
  max-width: 895px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem; }

.text-area-section {
  margin-bottom: 2rem; }

.personal-details {
  color: #b99d4ebd;
  font-size: 1rem;
  font-weight: 700;
  font-family: "MidlandLuxury", serif;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 2px; }

@media (min-width: 768px) {
  .text-area-section {
    margin: 0rem 10rem;
    text-align: center;
    margin-bottom: 2rem; }
  .sectionNew {
    width: 100%;
    height: 100vh;
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
    background-size: cover;
    background-attachment: fixed;
    -webkit-transition: -webkit-transform 1.5s ease, -webkit-filter 1s ease;
    transition: -webkit-transform 1.5s ease, -webkit-filter 1s ease;
    transition: transform 1.5s ease, filter 1s ease;
    transition: transform 1.5s ease, filter 1s ease, -webkit-transform 1.5s ease, -webkit-filter 1s ease; }
  .container-custom {
    max-width: 1140px; }
  .customform-select {
    max-width: 242px; }
  .price-spacing {
    margin-left: 8px; }
  .price-spacing-last {
    margin-left: 33px; }
  .mode-spacing {
    margin-left: 18px; } }

.form-main-section {
  width: 100%;
  background: #f7f7f7;
  padding: 60px 0; }

.custom-form {
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  border-radius: 8px; }

.form-section-franchise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px; }

.form-section-franchise:not(:first-child) {
  margin-top: 0rem; }

.form-label-custom {
  font-size: 0.875rem;
  font-family: 'Montserrat';
  font-weight: 500;
  letter-spacing: 0.48px;
  color: #121212; }

.form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 220px;
  position: relative; }

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold; }

.form-input,
.form-select {
  width: 100%;
  padding: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.form-input {
  width: 100%;
  padding: .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #FFF;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  font-family: 'Montserrat'; }

.form-input:focus {
  color: #212529;
  background-color: #FFF;
  border-color: #86b7fe !important;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); }

.error-message {
  font-size: 0.75rem;
  color: #db3434;
  padding-top: 4px;
  font-family: 'Montserrat'; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="12" viewBox="0 0 20 20" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M5.516 7.548a.75.75 0 011.061 0L10 10.97l3.423-3.422a.75.75 0 111.06 1.06l-4 4a.75.75 0 01-1.06 0l-4-4a.75.75 0 010-1.06z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  height: 36px;
  border: 1px solid #ccc; }

.form-select:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe !important;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); }

.form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  font-size: 0.875rem;
  width: 59%;
  margin-top: 12px; }

.form-error {
  display: none;
  color: #b60000;
  font-size: 0.875rem;
  margin-top: 3px; }

.buttondiv-wrapper {
  text-align: center;
  margin-top: 20px;
  width: 24%; }

.form-submit button {
  font-size: 1.125rem;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: .04em;
  border: 0 solid #FFF;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 12px 80px;
  background: #b99d4ebd;
  color: #FFF;
  text-transform: uppercase; }

.form-submit button:focus {
  outline-color: transparent; }

.thankyou-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }

.Thankyou-text {
  font-size: 2.5rem;
  font-weight: 400;
  font-family: 'Montserrat';
  margin: 7px 0px 20px 0px; }

.formsubmit-success {
  font-size: 0.875rem;
  font-family: 'Montserrat';
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: 20px; }

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }


/*# sourceMappingURL=franchiseEnquiry.css.map*/