.call-content .form-left{
    width:40%;background:#f2f2f2;display:flex;background-size: cover;transition:background 0.25s ease-in-out; background-image: url(); 
}
.call-content .form-left img{
  width: 100%;
  max-width: 50%;
  filter: invert(1);
  opacity: 0.88;
  /* display: none; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.call-content  form.contactForm{
    padding: 0 35% 0 8rem;
}

form.contactForm h2{
    text-transform: uppercase;font-family: var(--alpine-secondary-font);font-size: 2rem;padding-top: 6rem;padding-bottom: 0;
}

form.contactForm > strong
{
    display: block;font-family: var(--alpine-secondary-font);font-size: 1.4rem;padding-bottom: 0;color: #d3b38c;margin-bottom: 3rem;
}
.call-content  form.contactForm > p
{
    font-family: var(--alpine-secondary-font);font-size: 1rem;margin-bottom: 3rem
}
.call-content  form.contactForm textarea{
    background: #f2f2f2;border: none;width: 100%;min-height: 150px;
}

.call-content  form.contactForm select{
    line-height: 2rem;
    border: none;
    background: #f2f2f2;
    height: 100%;
    width: 100%;
    padding: 1rem;
}


.contactForm .form-group input,
.contactForm .form-group textarea {
  padding: 20px 10px 10px;
  line-height: 2rem;
    border: none;
    background: #f2f2f2;
    width: 100%;
}
.contactForm .form-group > div{
    position:relative;
}
.contactForm .form-group input +  label,
.contactForm .form-group textarea +  label {
  position: absolute;
  top: 30px;
  left: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--alpine-secondary-font), serif;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.15s ease-out 0s;
}
.contactForm .form-group textarea +  label{
    top:25px;
}
.contactForm .form-group input:focus + label,
.contactForm .form-group input.has-value + label,
.contactForm .form-group textarea:focus +  label,
.contactForm .form-group textarea.has-value +  label {
  top: 13px;
  font-size: 11px;
  color: #aaa;
  left: 25px;
}



form .required{
    position: absolute;
    top: 10px;
    right: 25px;
    width: 5px;
    height: 5px;
    background: firebrick;
    border-radius: 50%;
}


.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
  }
  
  .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-family: var(--alpine-secondary-font), serif;
    font-size: 1rem;
    color: var(--white-color);
    width: calc(100% - 20px);
    box-sizing: initial;
    padding: 20px 10px 10px;
    height: 2rem;
  }
  
  .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f2f2f2;
    padding: 20px 10px 10px;
    /* padding: 8px 15px; */
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    height: 100%;
    color: #999;
  }
  .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #999 transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-25%);
  }

  .select-styled:active:after, .select-styled.active:after {
    top: calc(50% - 9px);
    border-color: transparent transparent #999 transparent;
  }
  
  .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    max-height: 300px;
    margin: 0;
    padding: 0;
    overflow: auto;
    list-style: none;
    background-color: #d3b38c;
  }
  .select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    border-top: 1px solid #d3b38c;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
  }
  .select-options li:hover {
    color: #d3b38c;
    background: var(--white-color);
  }
  .select-options li[rel="hide"] {
    display: none;
  }

  .has-error span.visible {
    font-size: 10px;
    font-style: italic;
    color: #e2e2e2;
    background: firebrick;
    width: 100%;
    display: block;
    padding: 5px 10px;
    border-radius: 0 0 3px 3px;
}

.close__form{
    position: fixed;
    top: 6rem;
    right: 4.5%;
    background: #2e3032;
    color: #d3b38c;
    z-index: 99;
    opacity: 1;
    width: 50px;
    height: 50px;
}

.close__form .close__form__close {
    position: relative;
    /* right: 32px; */
    /* top: 32px; */
    width: 50px;
    height: 50px;
    opacity: 0.9;
    /* padding: 5px;*/
    cursor:pointer;
  }
  .close__form .close__form__close:hover {
    opacity: 1;
  }
  .close__form .close__form__close:before, .close__form__close:after {
    position: absolute;
    left: 24px;
    content: ' ';
    height: 33px;
    top: 8px;
    width: 2px;
    background-color: #d3b38c;
  }
  .close__form .close__form__close:before {
    transform: rotate(45deg);
  }
  .close__form .close__form__close:after {
    transform: rotate(-45deg);
  }
  
  .contact__agencies{
    padding: 0px 35% 0px 8rem;
    margin-top:3rem;
  }

  .contact__agencies h3{
    font-size: 1.2rem;
  }
  #DynamicContactForm_forms_flash{
    position: absolute;
    top: 1rem;
    width: auto;
    z-index: 1;
  }

  #DynamicContactForm_forms_flash p {
    margin-bottom:0;
  }

  form#DynamicContactForm .filters__stations{
    padding: 15px 15px 15px 15px !important;
    justify-content: space-between!important;
  }

  form#DynamicContactForm .filters__stations .filter-btn {
    padding: 15px;
    /* background: #2e3032; */
    border: 1px solid #d3b38c;
    border-radius: 3px;
    color: #d3b38c;
}
form#DynamicContactForm .filters__stations img {
  width: 32px;
  filter: invert(74%) sepia(3%) saturate(3868%) hue-rotate(356deg) brightness(102%) contrast(83%);
}
form#DynamicContactForm .filters__stations .filter-btn {
  padding: 15px;
  /* background: #2e3032; */
  border: 1px solid #d3b38c;
  border-radius: 3px;
  color: #d3b38c;
  cursor:pointer;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
label input.stations_check:checked + div.filter-btn{
  border: 1px solid var(--secondary-color);
  border-radius: 3px;
  color: #d3b38c;
  background:var(--secondary-color);
}

.contactForm label>input:checked+span{
  position:relative;
}

.contactForm label>input:checked+span:before {
  transform: rotate(45deg) translate(-50%,-50%);
  content: "";
  border-bottom: 3px solid var(--white-color);
  border-right: 3px solid var(--white-color);
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 6px;
}

.contactForm label.optin{
  position: relative;
    font-size: 12px;
    color: #2e3032;
}

.form-left{
  position: relative;
}
.ProgramMark{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  color: var(--white-color);
  width: 100%;
}
.ProgramMark h3{
  font-family: var(--alpine-primary-font);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.ProgramMark span{
  font-size: 1.2rem;
  color: #d3b38c;
  font-family: var(--alpine-secondary-font);
}