/*
Theme Name: Divi Child
Template: Divi
Author: Child Theme Configurator
Version: 1.0
Updated: 2014-12-11 18:11:08
*/

@charset "UTF-8";
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

.wpl-powered-by-realtyna {
  display: none;
}

/*form styles*/
.wpcf7 {
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.wpcf7 label {
  color: #000;
  text-align: left;
}

.wpcf7 fieldset {
  background: white;
  border: 0 none;
  border-radius: 0px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;

  /*stacking fieldsets above each other*/
  position: relative;
}

/*Hide all except first fieldset*/
.wpcf7 fieldset:not(:first-of-type) {
  display: none;
}

/*inputs*/
.wpcf7 .wpcf7-form-control {
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
}

.wpcf7 .wpcf7-form-control:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0;
  transition: All 0.5s ease-in;
  -webkit-transition: All 0.5s ease-in;
  -moz-transition: All 0.5s ease-in;
  -o-transition: All 0.5s ease-in;
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: -13px;
  text-align: left;
  font-size: 65%;
  padding: 10px 0 0 15px;
  background-color: rgba(255, 255, 255, 0.8);
}

.wpcf7 select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
  background-position: 100%;
  background-repeat: no-repeat;
}


.wpcf7 .required:focus {
  border: 1px solid #0075A7;
}

/*buttons*/
.wpcf7 .action-button {
  width: 100px;
  color: #0075A7;
  font-weight: bold;
  background-color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

.wpcf7 .action-button:hover,
.wpcf7 .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #0075A7;
}

.wpcf7 .action-button:hover::after {
  transition: all .2s;
  content: "\35";
  font-family: ETmodules !important;
}

.wpcf7 .action-button-previous {
  width: 100px;
  color: #C5C5F1;
  font-weight: bold;
  background-color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

.wpcf7 .action-button-previous:hover,
.wpcf7 .action-button-previous:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.wpcf7 .title {
  font-size: 18px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}

.wpcf7 .subtitle {
  font-weight: normal;
  font-size: 65%;
  color: #fff;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  padding: 10px 10px 10px 15px;
  margin-top: 0;
}

.wpcf7 {
  margin: 15px;
}

.wpcf7-response-output {
  background-color: #fff;
}

.wpcf7 .required::placeholder::after,
.wpcf7 .required::::-webkit-input-placeholder::after {
  visibility: visible;
  content: "*"
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}


.double-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

@media screen and (min-width: 800px) {
  .column {
    flex: 1;
  }

  .row .column:not(:first-child) {
    margin-left: 1em;
  }


  .double-column {
    flex: 2
  }
}