/**
 *
 * Template Info
 * -----------------------------------------------------------------------------
 * 
 * Template Name: Insurance HTML5 template
 * Template URL: http://martaniandemo.com/html/insurance/
 *  
 * Author: Martanian - martanian.com - support@martanian.com
 * 
 *
 * Table of Content
 * -----------------------------------------------------------------------------
 * 
 * 1. Global
 * 2. Center
 * 3. Loader
 * 4. Shortcodes
 *
 *    4.1 Progress bars
 *    4.2 Insurance params
 *    4.3 Documents
 *
 * 5. Form
 * 6. Button
 * 7. Header
 * 8. Sections
 *
 *    8.1 Heading
 *    8.2 Call to action
 *    8.3 Insurances slider
 *    8.4 Box with image left
 *    8.5 Box with image right
 *    8.6 Tabs
 *    8.7 Blog
 *    8.8 Slogan
 *    8.9 References
 *    8.10 About us
 *    8.11 Agents
 *    8.12 Image slogan
 *    8.13 Contact
 *    8.14 Contact full
 *    8.15 Double content 
 *    8.16 Quote form 
 * 
 * 9. Footer
 * 10. Contact popup
 * 11. Quote popup
 * 
 */

/**
 *
 * 1. Global
 * ----------------------------------------------------------------------------- 
 *
 */

* {
  margin: 0;
  padding: 0;
  font-family: "Signika";
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  background: #fdfdfd;
}

a {
  color: #fff;
}

.clear {
  clear: both;
}

section.section-gray {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

section.section-gray-top {
  border-top: 1px solid #eee;
}

section.section-top-space {
  padding-top: 40px;
}

section.agents.section-top-space,
section.contact-full.section-top-space,
section.box-with-image-left.section-top-space,
section.box-with-image-right.section-top-space,
section.quote-forms.section-top-space {
  padding-top: 75px;
}

/**
 *
 * 2. Center
 * -----------------------------------------------------------------------------
 * 
 */

@media (min-width: 1350px) {
  .center {
    width: 1300px;
    margin: 0 auto;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  .center {
    width: 900px;
    margin: 0 auto;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  .center {
    width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 599px) {
  .center {
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: calc(100% - 60px);
    margin: 0 30px;
  }
}

/**
 *
 * 3. Loader
 * -----------------------------------------------------------------------------
 *          
 */

#loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #f0f1f0;
  z-index: 99999;
}

#loader .loader-spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  background: #2c3459;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: scaleout 1s infinite ease-in-out;
  -moz-animation: scaleout 1s infinite ease-in-out;
  animation: scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes scaleout {
  0% {
    -moz-transform: scale(0);
  }
  100% {
    -moz-transform: scale(1);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/**
 *
 * 4. Shortcodes
 * -----------------------------------------------------------------------------
 * parent; 
 *  
 * 4.1 Progress bars   
 * ----------------------------------------------------------------------------- 
 *  
 */

.progress-bars h4 {
  margin: 30px 0 15px 0;
  font-weight: 600;
  color: #2c3459;
  font-size: 16px;
}

.progress-bars .progress-bar {
  background: #f0f1f0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.progress-bars .progress-bar .progress-bar-value {
  height: 4px;
  background: #7dba2f;
  -webkit-border-top-left-radius: 2px;
  -moz-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  position: relative;
  width: 0;
}

.progress-bars .progress-bar .progress-bar-value .progress-bar-value-tip:after {
  width: 6px;
  height: 6px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  content: " ";
  background: #fff;
  border: 3px solid #7dba2f;
  left: -21px;
  top: 8px;
}

.progress-bars .progress-bar .progress-bar-value .progress-bar-value-tip {
  position: absolute;
  right: -55px;
  top: -15px;
  width: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #2c3459;
  background: #fdfdfd;
  border: 3px solid #f0f1f0;
  padding: 6px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: none;
}

.progress-bars
  .progress-bar
  .progress-bar-value
  .progress-bar-value-tip:before {
  width: 5px;
  height: 5px;
  border-left: 3px solid #f0f1f0;
  border-bottom: 3px solid #f0f1f0;
  background: #fdfdfd;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  content: " ";
  left: -7px;
  top: 10px;
}

@media (min-width: 1350px) {
  .progress-bars {
    margin: 75px 0;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  .progress-bars {
    margin: 75px 0;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  .progress-bars {
    margin: 50px 0;
  }
}

@media (max-width: 599px) {
  .progress-bars {
    margin: 30px 0;
  }
}

/**
 *
 * 4.2 Insurance params
 * -----------------------------------------------------------------------------
 * 
 */

.insurance-params {
  position: relative;
}

.insurance-params .important-number {
  margin-top: -10px;
}

.insurance-params .important-number .notice-top {
  color: #7dba2f;
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
  display: inline-block;
  padding-top: 18px;
}

.insurance-params .important-number .number {
  color: #7dba2f;
  font-weight: 300;
  font-size: 72px;
  display: inline-block;
  vertical-align: top;
}

.insurance-params .params tr {
  vertical-align: top;
}

.insurance-params .params tr td {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 300;
  color: #9498ab;
  border-bottom: 1px dashed #eee;
}

.insurance-params .params tr td:first-child {
  font-weight: 600;
  color: #2c3459;
}

.insurance-params .params tr:last-child td {
  border-bottom: none;
}

@media (min-width: 1350px) {
  .insurance-params .params {
    width: 530px;
    float: right;
  }

  .insurance-params .important-number {
    float: left;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  .insurance-params .params {
    width: 350px;
    float: right;
  }

  .insurance-params .important-number {
    float: left;
  }

  .insurance-params .params td {
    display: block;
  }

  .insurance-params .params td:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  .insurance-params .params {
    margin-top: 30px;
  }

  .insurance-params .params,
  .insurance-params .important-number {
    float: none;
  }

  .insurance-params .params td {
    display: block;
  }

  .insurance-params .params td:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 599px) {
  .insurance-params .params {
    margin-top: 30px;
  }

  .insurance-params .params,
  .insurance-params .important-number {
    float: none;
  }

  .insurance-params .params td {
    display: block;
  }

  .insurance-params .params td:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/**
 *
 * 4.3 Documents
 * -----------------------------------------------------------------------------
 * 
 */

.documents {
  list-style: none !important;
  margin-bottom: 30px;
  margin-left: 0 !important;
}

.documents.without-margin-bottom {
  margin-bottom: 0;
}

.documents .document {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}

.documents .document:last-child {
  margin-bottom: 0;
}

.documents .document i {
  margin-right: 20px;
  color: #f0f1f0;
  font-size: 60px;
  float: left;
}

.documents .document.document-pdf i {
  color: #e73a30;
}

.documents .document.document-word i {
  color: #417be4;
}

.documents .document.document-excel i {
  color: #7dba2f;
}

.documents .document a {
  text-decoration: underline;
  color: #2c3459;
  padding-top: 7px;
  display: block;
}

.documents .document a:hover {
  text-decoration: none;
}

.documents .document span {
  display: block;
  margin-top: 5px;
  color: #9498ab;
}

/**
 *
 * 5. Form
 * -----------------------------------------------------------------------------
 * 
 */

.form input[type="text"],
.form input[type="email"],
.form textarea {
  border: 1px solid #ccc;
  background: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 0 25px;
  font-size: 14px;
  height: 47px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 200px;
  margin-right: 10px;
  outline: none;
}

.form textarea {
  height: 100px;
  width: 288px;
  resize: none;
  padding: 14px 25px;
}

.form input[type="text"]:hover,
.form textarea:hover,
.form select:hover {
  border: 1px solid #aaa;
}

.form input[type="text"]:focus,
.form textarea:focus,
.form select:focus {
  border: 1px solid #2c3459;
}

.form input[type="text"].error,
.form textarea.error,
.form select.error {
  border: 1px solid #e73a30;
}

.form input[type="text"]::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  font-weight: 300;
  color: #bbb;
}

.form input[type="text"]:-moz-placeholder,
.form textarea:-moz-placeholder {
  font-weight: 300;
  color: #bbb;
}

.form input[type="text"]::-moz-placeholder,
.form textarea::-moz-placeholder {
  font-weight: 300;
  color: #bbb;
}

.form input[type="text"]:-ms-input-placeholder,
.form textarea:-ms-input-placeholder {
  font-weight: 300;
  color: #bbb;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  padding: 0;
  margin-right: 10px;
}

.custom-dropdown.last {
  margin-right: 0;
}

.custom-dropdown-select {
  border: 1px solid #ccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  padding: 0 25px;
  font-size: 14px;
  height: 49px;
  margin: 0;
  width: 252px;
  background-color: #fff;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.custom-dropdown-select option:disabled {
  color: #ddd;
}

.custom-dropdown:before,
.custom-dropdown:after {
  content: "";
  position: absolute;
}

.custom-dropdown:after {
  content: "\25BC";
  height: 1em;
  font-size: 9px;
  line-height: 1;
  right: 1px;
  top: 5px;
  margin-top: 1px;
  color: rgba(0, 0, 0, 0.9);
  background: #fdfdfd;
  width: 45px;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 13px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-dropdown:before {
  width: 45px;
  right: 0;
  border-radius: 0 1px 1px 0;
  top: 1px;
  bottom: 11px;
  background: #fdfdfd;
  margin-right: 1px;
}

.fieldset .checkbox {
  border: 1px solid #ccc;
  background: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 0;
  font-size: 14px;
  height: 47px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 303px;
  margin-right: 10px;
  outline: none;
  cursor: pointer;
}

.checkbox .checkbox-status {
  width: 41px;
  height: 41px;
  background: #eee;
  margin-top: 3px;
  margin-left: 3px;
  text-align: center;
  display: inline-block;
}

.checkbox .checkbox-status i.fa-check {
  color: #7dba2f;
  margin-top: 13px;
}

.checkbox .checkbox-status i.fa-times {
  color: #e73a30;
  margin-top: 13px;
}

.checkbox .checkbox-values {
  display: inline-block;
  margin-left: 15px;
}

.checkbox .checkbox-values .checkbox-value-checked,
.checkbox .checkbox-values .checkbox-value-unchecked {
  display: none;
}

.checkbox[data-checked="yes"] .checkbox-values .checkbox-value-checked,
.checkbox[data-checked="no"] .checkbox-values .checkbox-value-unchecked {
  display: block;
}

/**
 *
 * 6. Button
 * -----------------------------------------------------------------------------
 * 
 */

.button {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 0 25px;
  height: 49px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
  outline: none;
  text-decoration: none;
  vertical-align: top;
}

.button.button-icon {
  padding: 0 20px;
}

.button i {
  margin-left: 10px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.button.button-icon i {
  margin-left: 0;
}

a.button {
  line-height: 1;
  display: inline-block;
  font-weight: 400;
  text-decoration: none !important;
  color: #2c3459 !important;
  padding: 17px 25px 0 25px;
  height: 30px;
}

.button.button-navy-blue {
  border: 1px solid #2c3459;
  color: #2c3459;
  background: #fdfdfd;
}

.button.button-navy-blue:hover,
.button.button-white:hover {
  background: #2c3459;
  color: #fff !important;
  border: 1px solid #2c3459;
}

.button.button-navy-blue:hover i,
.button.button-white:hover i {
  color: #80859b;
}

.button.button-white {
  border: 1px solid #fff;
  color: #fff;
  background: none;
}

/**
 *
 * 7. Header
 * -----------------------------------------------------------------------------
 * 
 */

/***********************************************************************************
 2. header start
***********************************************************************************/
.fixit_header {
  position: fixed;
  left: 0;
  right: 0;
  padding: 0px 50px;
  min-height: 120px;
  background-color: #2d3857;
  z-index: 999995;
  text-align: center;
  backface-visibility: hidden;
}
.fixit_header.fixed_menu {
  padding: 30px 50px 10px;
  min-height: 80px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.fixit_header .fixit_header_left {
  float: left;
  padding-top: 40px;
}
.fixit_header .fixit_header_left > .fixit_logo > a {
  font-size: 48px;
}
.fixit_header .fixit_header_left .fixit_logo {
  margin-top: 12px;
}
.fixit_header .fixit_header_center {
  padding-top: 30px;
  display: inline-block;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
  float: right;
}
/* new label */
.fixit_header .fixit_menu > ul > li > ul > li span.fixit_tag {
  position: absolute;
  top: 12px;
  right: 20px;
  background-color: #18bc72;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  padding: 0px 5px;
  font-weight: 600;
  letter-spacing: 1px;
}
/* menu start */
.fixit_header .fixit_menu {
  width: 100%;
  float: left;
}
.fixit_header .fixit_menu > ul {
  width: 100%;
  float: left;
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.fixit_header .fixit_menu > ul > li {
  float: left;
  padding: 0 16.5px;
  position: relative;
}

.fixit_header .fixit_menu > ul > li:after {
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  right: -1.5px;
  width: 3px;
  height: 3px;
  display: inline-block;
  background-color: #ffffff;
}

.fixit_header .fixit_menu > ul > li:last-child:after {
  display: none;
  list-style: none;
}
.fixit_header .fixit_menu > ul > li > a {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 54px;
  cursor: pointer;
}

/* menu level 2 start */
.fixit_header .fixit_menu > ul > li > ul {
  position: absolute;
  min-width: 270px;
  background-color: #fff;
  box-shadow: 4px 4px 40px rgba(22, 49, 68, 0.1);
  border: 1px solid #eee;
  height: auto;
  z-index: 199;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px) rotateX(90deg);
  -moz-transform: translateY(-10px) rotateX(90deg);
  transform: translateY(-10px) rotateX(90deg);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 500ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 500ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 500ms cubic-bezier(1, 0, 0, 1);
  transition: all 500ms cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
}
.fixit_header .fixit_menu > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px) rotateX(0deg);
  -moz-transform: translateY(0px) rotateX(0deg);
  transform: translateY(0px) rotateX(0deg);
}
.fixit_header .fixit_menu > ul > li > ul > li {
  position: relative;
}
.fixit_header .fixit_menu > ul > li > ul > li.fixit_dropdown:after {
  content: "\f105";
  position: absolute;
  top: 12px;
  right: 10px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fixit_header .fixit_menu > ul > li > ul > li > a {
  font-size: 14px;
  font-weight: 500;
  display: block;
  height: 40px;
  line-height: 40px;
  color: #36434d;
  padding: 0 25px;
  text-transform: capitalize;
  cursor: pointer;
}
.fixit_header .fixit_menu > ul > li > ul > li:hover > a {
  background-color: #f9f9f9;
}
/* menu level 2 end */

/* menu level 3 start */
.fixit_header .fixit_menu > ul > li > ul > li > ul {
  position: absolute;
  min-width: 270px;
  background-color: #fff;
  box-shadow: 4px 4px 40px rgba(22, 49, 68, 0.1);
  border: 1px solid #eee;
  height: auto;
  z-index: 199;
  top: 0px;
  left: calc(100% - 10px);
  margin: 0;
  padding: 10px 0;
  list-style: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px) rotateX(90deg);
  -moz-transform: translateY(-10px) rotateX(90deg);
  transform: translateY(-10px) rotateX(90deg);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 500ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 500ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 500ms cubic-bezier(1, 0, 0, 1);
  transition: all 500ms cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
}
.fixit_header .fixit_menu > ul > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px) rotateX(0deg);
  -moz-transform: translateY(0px) rotateX(0deg);
  transform: translateY(0px) rotateX(0deg);
}
.fixit_header .fixit_menu > ul > li > ul > li > ul > li {
  position: relative;
}
.fixit_header .fixit_menu > ul > li > ul > li > ul > li > a {
  font-size: 14px;
  font-weight: 500;
  display: block;
  height: 40px;
  line-height: 40px;
  color: #36434d;
  padding: 0 25px;
  text-transform: capitalize;
}
.fixit_header .fixit_menu > ul > li > ul > li > ul > li:hover > a {
  background-color: #f9f9f9;
}
/* menu level 3 end */

/* menu end */

.fixit_header .fixit_header_right {
  float: right;
  padding-top: 30px;
}
.fixit_menu_toggle {
  position: fixed;
  top: 50px;
  left: 40px;
  width: 30px;
  height: 26px;
  cursor: pointer;
  display: none;
  z-index: 3;
}

.ui.container {
  padding: 150px 0 !important;
}

.fixit_header.fixed_menu .fixit_menu_toggle {
  top: 27px;
}
.fixit_menu_toggle > span {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.fixit_menu_toggle > span:last-child {
  margin-bottom: 0;
}
.fixit_home3 .fixit_menu_toggle > span {
  background-color: #ffffff;
}
.header_v3.fixit_home3 .fixit_menu_toggle > span {
  background-color: #333333;
}
.fixit_home3 .fixit_menu_toggle.toggle_open > span {
  background-color: #333333;
}
.fixit_menu_toggle.toggle_open {
  /* left:270px; */
}
.fixit_menu_toggle.toggle_open > span:nth-child(1) {
  width: 15px;
  -webkit-transform: rotate(-45deg) translate(-6px, 3px);
  -moz-transform: rotate(-45deg) translate(-6px, 3px);
  -ms-transform: rotate(-45deg) translate(-6px, 3px);
  -o-transform: rotate(-45deg) translate(-6px, 3px);
  transform: rotate(-45deg) translate(-6px, 3px);
}
.fixit_menu_toggle.toggle_open > span:nth-child(3) {
  width: 15px;
  -webkit-transform: rotate(45deg) translate(-6px, -3px);
  -moz-transform: rotate(45deg) translate(-6px, -3px);
  -ms-transform: rotate(45deg) translate(-6px, -3px);
  -o-transform: rotate(45deg) translate(-6px, -3px);
  transform: rotate(45deg) translate(-6px, -3px);
}
.fixit_main_slider {
  width: 100%;
  float: left;
}
.fixit_main_slider .zeus.tparrows {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: #36434d;
  min-width: inherit;
  min-height: inherit;
}
.fixit_main_slider .zeus .tp-title-wrap {
  background: none;
}
.fixit_main_slider .zeus.tparrows:before {
  line-height: 60px;
}
.fixit_main_slider .tparrows.tp-leftarrow {
  border-top-left-radius: 0;
}
.fixit_main_slider .tparrows.tp-rightarrow {
  border-top-right-radius: 0;
}
.fixit_main_slider .tparrows.tp-leftarrow .tp-arr-imgholder {
  border-top-left-radius: 0;
}
.fixit_main_slider .tparrows.tp-rightarrow .tp-arr-imgholder {
  border-top-right-radius: 0;
}
.fixit_slider_btngroup {
  display: inline-block;
  border: 3px solid #feef1f;
  border-radius: 25px 0 25px 0;
}
.fixit_slider_btngroup a {
  display: inline-block;
  margin-left: -3px !important;
  cursor: pointer;
  height: 50px;
  line-height: 46px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  padding: 0 30px;
  border-radius: 20px 0 20px 0;
  position: relative;
  z-index: 2;
  -webkit-transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  -moz-transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  -o-transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  -webkit-transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
  -moz-transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
  -o-transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
  transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
}
.fixit_slider_btngroup span.hover_bg {
  position: absolute;
  height: 50px;
  width: 55%;
  top: 3px;
  left: 0;
  border-radius: 20px 0 20px 0;
  z-index: 1;
  background-color: #feef1f;
  -webkit-transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  -moz-transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  -o-transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  transition: all 300ms cubic-bezier(0.685, 0.01, 0.355, 0.995) !important;
  -webkit-transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
  -moz-transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
  -o-transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
  transition-timing-function: cubic-bezier(
    0.685,
    0.01,
    0.355,
    0.995
  ) !important;
}
.fixit_slider_btngroup a:last-child {
  margin-left: -3px !important;
}
.fixit_slider_btngroup a.active {
  color: #36434d;
}
.fixit_main_slider .tp-caption.NotGeneric-SubTitle,
.fixit_main_slider .NotGeneric-SubTitle {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.075em;
}
.fixit_main_slider .tp-caption.NotGeneric-SubTitle i.fa,
.fixit_main_slider .NotGeneric-SubTitle i.fa {
  font-size: 25px;
  margin-right: 20px;
  margin-top: -1px;
  float: left;
}
.fixit_main_slider .fixit_btn {
  line-height: 38px !important;
  font-size: 15px !important;
  font-weight: bold !important;
}
/* home 3 slider start */
.fixit_home3 .fixit_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  box-shadow: none;
}
.fixit_home3 .fixit_header.fixed_menu {
  background-color: #36434d;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.fixit_home3 #fixit_main_content {
  margin-top: 0;
}
.fixit_home3 .fixit_main_slider {
  position: relative;
}
.fixit_home3 .fixit_main_slider > .fixit_main_slider_img {
  position: relative;
}
.fixit_home3 .fixit_main_slider > .fixit_main_slider_img img {
  width: 100%;
}
.fixit_home3 .fixit_main_slider .fixit_slider_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(54, 67, 77, 0.85);
}
.fixit_home3 .fixit_header .fixit_menu > ul > li > a {
  color: #efefef;
  font-weight: 500;
  letter-spacing: 1px;
}
.fixit_home3 .fixit_header .fixit_menu > ul > li.active > a,
.fixit_home3 .fixit_header .fixit_menu > ul > li > a:hover {
  color: #18b870;
}
.fixit_home3 .fixit_main_slider .fixit_slider_overlay .fixit_slider_content {
  width: 800px;
  background-color: rgba(255, 255, 255, 0.86);
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 70px 0 70px 0;
  padding: 50px;
  padding-right: 230px;
  opacity: 0;
}
.fixit_home3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content.loaded {
  -webkit-animation: fixit_slider_content_anim 0.5s ease-in-out;
  -moz-animation: fixit_slider_content_anim 0.5s ease-in-out;
  animation: fixit_slider_content_anim 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fixit_slider_content_anim {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes fixit_slider_content_anim {
  0% {
    opacity: 0;
    -moz-transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes fixit_slider_content_anim {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.fixit_home3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  .floating_img {
  position: absolute;
  bottom: 0;
  right: -80px;
}
.fixit_home3 .fixit_main_slider .fixit_slider_overlay .fixit_slider_content h3 {
  margin: 0;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
.fixit_home3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  h3
  span {
  color: #18b870;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
}
.fixit_home3 .fixit_main_slider .fixit_slider_overlay .fixit_slider_content p {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px;
}
/* home 3 slider end */

/* header version 1 start */
.header_v1 .fixit_header .fixit_menu > ul > li:nth-last-child(3) > ul > li > ul,
.header_v1 .fixit_header .fixit_menu > ul > li:nth-last-child(2) > ul > li > ul,
.header_v1
  .fixit_header
  .fixit_menu
  > ul
  > li:nth-last-child(1)
  > ul
  > li
  > ul {
  left: auto;
  right: 100%;
}
.header_v1 .fixit_header .fixit_header_center {
  width: calc(100% - 20px);
  float: left;
}
.fixit_header .fixit_search_wrapper {
  width: 20px;
  height: 20px;
  float: left;
  margin: 20px auto;
}
.fixit_header .fixit_search_wrapper > .icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
}
.fixit_header .fixit_search_wrapper > .icon:hover {
  color: #18b870;
}
.fixit_header .fixit_search_wrapper > .search_box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  height: 120px;
  opacity: 0;
  visibility: hidden;
}
.fixit_header .fixit_search_wrapper > .search_box > .search_box_close_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fixit_header .fixit_search_wrapper.open > .search_box {
  opacity: 1;
  visibility: visible;
}
.fixit_header .fixit_search_wrapper > .search_box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 50px;
  color: #000;
  height: 110px;
  background-color: transparent;
}
.fixit_header .fixit_search_wrapper.open > .icon {
  position: relative;
  z-index: 1;
}
.fixit_header .fixit_search_wrapper.open > .icon > i:before {
  content: "\f00d";
}
.fixit_header.fixed_menu .fixit_search_wrapper > .search_box {
  height: 80px;
}
.fixit_header.fixed_menu .fixit_search_wrapper > .search_box input {
  height: 80px;
}
/* header version 1 end */

/* header version 2 start */
.header_v2 {
  overflow-x: hidden;
}
.header_v2.open_menu .fixit_header {
  left: 270px;
}
.header_v2 .fixit_header .fixit_menu_toggle {
  display: block;
  right: 50px;
  left: auto;
}
.fixit_home3.header_v2 .fixit_header .fixit_menu_toggle.toggle_open > span {
  background-color: #ffffff;
}
.header_v2 .fixit_header .fixit_header_center {
  position: fixed;
  left: -270px;
  top: -3px;
  bottom: 0;
  width: 270px;
  background-color: #f7f7f7;
  overflow-y: auto;
  overflow-x: hidden;
}
.header_v2 .fixit_header .fixit_header_center.mob_open_menu {
  left: 0;
}
.header_v2 .fixit_header .fixit_menu ul > li {
  width: 100%;
  float: left;
  text-align: left;
  padding: 0;
}
.header_v2 .fixit_header .fixit_menu ul > li.fixit_dropdown:before {
  content: "\f105";
  position: absolute;
  top: 12px;
  right: 10px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header_v2 .fixit_header .fixit_menu ul > li > a {
  line-height: 50px;
  display: block;
  padding: 0 15px;
}
.header_v2 .fixit_header .fixit_menu ul > li.active > a {
  background-color: #1bc97a;
  color: #2d3857;
}
.header_v2 .fixit_header .fixit_menu ul > li:after {
  display: none;
}
.header_v2 .fixit_header .fixit_menu > ul > li > ul > li > ul,
.header_v2 .fixit_header .fixit_menu > ul > li > ul {
  width: 100%;
  float: left;
  position: relative;
  left: auto !important;
  right: auto !important;
  top: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding-left: 15px;
  transform: none;
  transition: none;
  animation: none;
}
.header_v2 .fixit_header .fixit_menu > ul > li > ul > li > ul li a {
  font-size: 12px;
}
.header_v2 .fixit_header .fixit_menu > ul > li ul li ul li a:hover,
.header_v2 .fixit_header .fixit_menu > ul > li ul li a:hover {
  background-color: transparent;
  color: #18b870;
}
.fixit_home3.header_v2 .fixit_header .fixit_menu ul > li.active > a,
.header_v2 .fixit_header .fixit_menu ul > li.active > a {
  background-color: #1bc97a;
  color: #fff;
}
.fixit_home3.header_v2 .fixit_header .fixit_menu > ul > li > a:hover,
.header_v2 .fixit_header .fixit_menu > ul > li > a:hover {
  color: #18b870;
}
.header_v2 .fixit_header .fixit_menu > ul > li.active > a:hover,
.fixit_home3.header_v2 .fixit_header .fixit_menu > ul > li.active > a:hover {
  color: #ffffff;
}
.fixit_home3.header_v2 .fixit_header .fixit_menu > ul > li > a {
  color: #36434d;
  font-weight: bold;
}
.header_v2.open_menu .fixit_footer,
.header_v2.open_menu #fixit_main_content {
  margin-left: 270px;
}
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content {
  color: #fff;
  background-color: transparent;
  border-radius: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  padding: 0;
}
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  h3 {
  font-size: 70px;
  font-weight: 100;
  opacity: 0;
}
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  h3
  span {
  font-size: 74px;
  display: block;
}
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  p,
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  a {
  opacity: 0;
}
.header_v2 .fixit_main_slider_img {
  z-index: 0;
}
.header_v2 .fixit_header .fixit_header_right .fixit_btn {
  margin: 0;
  margin-right: 50px;
  margin-top: 14px;
}
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content.loaded
  h3,
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content.loaded
  h3 {
  -webkit-animation: fixit_slider_content_anim2 0.5s ease-in-out;
  -moz-animation: fixit_slider_content_anim2 0.5s ease-in-out;
  animation: fixit_slider_content_anim2 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content.loaded
  p,
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content.loaded
  p {
  -webkit-animation: fixit_slider_content_anim2 0.5s ease-in-out;
  -moz-animation: fixit_slider_content_anim2 0.5s ease-in-out;
  animation: fixit_slider_content_anim2 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content.loaded
  a,
.fixit_home3.header_v2
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content.loaded
  a {
  -webkit-animation: fixit_slider_content_anim2 0.5s ease-in-out;
  -moz-animation: fixit_slider_content_anim2 0.5s ease-in-out;
  animation: fixit_slider_content_anim2 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
@-webkit-keyframes fixit_slider_content_anim2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
}
@-moz-keyframes fixit_slider_content_anim2 {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0px);
  }
}
@keyframes fixit_slider_content_anim2 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* header version 2 end */

/* header version 3 start */
.header_v3 .fixit_header .fixit_menu > ul > li:nth-last-child(3) > ul > li > ul,
.header_v3 .fixit_header .fixit_menu > ul > li:nth-last-child(2) > ul > li > ul,
.header_v3
  .fixit_header
  .fixit_menu
  > ul
  > li:nth-last-child(1)
  > ul
  > li
  > ul {
  left: auto;
  right: 100%;
}
.header_v3.fixit_home3 .fixit_header .fixit_menu > ul > li > a {
  font-weight: bold;
  color: #36434d;
}
.header_v3.fixit_home3 .fixit_main_slider .fixit_slider_overlay {
  background-color: rgba(255, 255, 255, 0.85);
}
.header_v3.fixit_home3 .fixit_header.fixed_menu {
  background-color: #ffffff;
}
.header_v3 .fixit_header .fixit_header_center {
  width: calc(100% - 20px);
  float: left;
}

.header_v3 .fixit_header .fixit_search_wrapper > .search_box input {
  color: #ffffff;
}
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content {
  background-color: transparent;
  border-radius: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  padding: 0;
}
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  h3 {
  font-size: 70px;
  font-weight: 100;
  opacity: 0;
}
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  h3
  span {
  font-size: 74px;
  display: block;
}
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  p,
.fixit_home3.header_v3
  .fixit_main_slider
  .fixit_slider_overlay
  .fixit_slider_content
  a {
  opacity: 0;
}
.header_v3 .fixit_main_slider_img {
  z-index: 0;
}
.header_v3 .fixit_header .fixit_header_right .fixit_btn {
  margin: 0;
  margin-right: 50px;
  margin-top: 14px;
}
/***********************************************************************************
 2. header start
***********************************************************************************/
@media (max-width: 1600px) {
  .fixit_home3 .fixit_main_slider .fixit_slider_overlay .fixit_slider_content {
    border-radius: 50px 0 50px 0;
    padding: 30px 50px;
    padding-right: 180px;
    top: 70%;
  }
  .fixit_home3
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content
    .floating_img {
    right: -90px;
    width: 300px;
  }
}
@media (max-width: 1300px) {
  .fixit_header .fixit_menu > ul > li:nth-last-child(1) > ul > li > ul,
  .fixit_header .fixit_menu > ul > li:nth-last-child(2) > ul > li > ul {
    right: 100%;
    left: auto;
  }
  .fixit_home3 .fixit_main_slider .fixit_slider_overlay .fixit_slider_content {
    width: 700px;
    top: 65%;
    padding-right: 150px;
  }
  .fixit_home3
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content
    .floating_img {
    right: -90px;
    width: 260px;
  }

  .header_v1 .fixit_header .fixit_menu > ul > li:nth-last-child(2) > ul,
  .header_v1 .fixit_header .fixit_menu > ul > li:nth-last-child(1) > ul {
    left: auto;
    right: 0;
  }
  .header_v3 .fixit_header .fixit_menu > ul > li:nth-last-child(2) > ul,
  .header_v3 .fixit_header .fixit_menu > ul > li:nth-last-child(1) > ul {
    left: auto;
    right: 0;
  }
}
.fixit_header .fixit_menu > ul > li > a @media (max-width: 1160px) {
  .fixit_home3 .fixit_main_slider .fixit_slider_overlay .fixit_slider_content {
    padding-right: 120px;
  }
  .fixit_home3
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content
    .floating_img {
    width: 220px;
  }
}
@media (max-width: 1200px) {
  .fixit_header .fixit_menu > ul > li {
    padding: 0 10px;
  }
  .fixit_header .fixit_menu > ul > li > a {
    font-size: 13px;
  }
  .fixit_header_center.fixit_custom_anim.mob_open_menu > ul > li > a {
    color: #36434d;
  }
}
@media (max-width: 1024px) {
  .fixit_header .fixit_menu ul > li > a {
    font-size: 13px;
  }
}
@media (max-width: 1000px) {
  .submenu {
    display: none;
  }
}
@media (max-width: 1000px) {
  .fixit_menu_toggle {
    display: block;
  }
  .fixit_btn {
    background-color: #2c3557 !important;
    color: #fff !important;
    border-radius: 20px !important;
  }
  .fixit_menu_toggle.toggle_open > span {
    background-color: #2d3857;
  }
  .fixit_header .fixit_header_center {
    visibility: hidden;
    position: fixed;
    left: -270px;
    top: 0;
    bottom: 0;
    width: 270px;
    background-color: #f7f7f7;
  }
  .fixit_header .fixit_menu {
    margin-top: 117px;
    position: absolute;
    overflow: auto;
    top: 0;
    bottom: 0;
    overflow-x: hidden;
  }
  .fixit_header.fixed_menu .fixit_menu {
    margin-top: 77px;
  }
  .fixit_header .fixit_menu ul > li {
    width: 100%;
    float: left;
    text-align: left;
    padding: 0;
  }
  .fixit_header .fixit_menu ul > li > a {
    line-height: 50px;
    display: block;
    padding: 0 15px;
    color: #36434d;
  }
  .fixit_header .fixit_menu ul > li.active > a {
    background-color: #1bc97a;
    color: #fff;
  }
  .fixit_header .fixit_menu ul > li:after {
    display: none;
  }
  .fixit_header .fixit_menu > ul > li > ul > li > ul,
  .fixit_header .fixit_menu > ul > li > ul {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding-left: 15px;
  }
  .fixit_header .fixit_menu > ul > li > ul > li > ul li a {
    font-size: 12px;
  }
  .fixit_header .fixit_menu > ul > li ul li ul li a:hover,
  .fixit_header .fixit_menu > ul > li ul li a:hover {
    background-color: transparent;
    color: #36434d;
  }
  .fixit_home3 .fixit_header .fixit_menu > ul > li > a {
    color: #36434d;
    font-weight: bold;
  }
  .fixit_home3 .fixit_header .fixit_menu > ul > li.active > a {
    color: #ffffff;
  }
  .fixit_home3 .fixit_header .fixit_menu > ul > li > a:hover {
    color: #36434d;
  }
  .fixit_header .fixit_header_center.mob_open_menu {
    visibility: visible;
    left: 0;
  }
  .fixit_header .fixit_header_left {
    float: none;
    display: inline-block;
    padding-top: 18px;
  }
  .fixit_header .fixit_header_left > .fixit_logo > a {
    font-size: 36px;
  }

  .fixit_home3 .fixit_main_slider .fixit_slider_overlay {
    position: relative;
    background-color: transparent;
    margin-top: -170px;
  }
  .fixit_home3 .fixit_main_slider > .fixit_main_slider_img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(54, 67, 77, 0.85);
  }
  .header_v3.fixit_home3 .fixit_main_slider > .fixit_main_slider_img:before {
    background-color: rgba(255, 255, 255, 0.85);
  }
  .fixit_home3 .fixit_main_slider .fixit_slider_overlay .fixit_slider_content {
    padding-right: 50px;
    bottom: 0;
    top: auto;
    transform: translate(0);
    position: relative;
    left: auto;
    animation: none !important;
    opacity: 1;
    display: table;
    width: 90%;
    margin: 0 auto;
    margin-top: 120px;
    background-color: rgb(239, 239, 239);
  }
  .fixit_home3
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content
    h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .fixit_home3
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content
    h3
    span {
    font-size: 30px;
  }
  .fixit_home3
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content
    .floating_img {
    right: 0;
    opacity: 0.2;
  }
  .header_v1 .fixit_header .fixit_header_center {
    width: 270px;
    float: none;
  }
  .header_v2 .fixit_header .fixit_header_left {
    float: left;
  }
  .header_v2 .fixit_header .fixit_menu {
    margin-top: 0;
  }
  .fixit_home3.header_v2
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content {
    color: inherit;
    padding: 40px 0;
  }
  .fixit_home3.header_v2 .fixit_main_slider > .fixit_main_slider_img:before {
    z-index: 2;
  }
  .header_v3 .fixit_header .fixit_header_left {
    float: left;
  }
  .header_v3 .fixit_header .fixit_menu {
    margin-top: 0;
  }
  .header_v3 .fixit_header .fixit_header_center {
    width: 270px;
  }
  .header_v3 .fixit_menu_toggle {
    right: 65px;
    left: auto;
    top: 47px;
  }
  .header_v3 .fixit_header .fixit_search_wrapper {
    position: fixed;
    right: 110px;
    top: 30px;
  }
  .header_v3 .fixit_header.fixed_menu .fixit_search_wrapper {
    top: 10px;
  }
  .fixit_home3.header_v3
    .fixit_main_slider
    .fixit_slider_overlay
    .fixit_slider_content {
    color: inherit;
    padding: 40px 0;
  }
  .fixit_home3.header_v3 .fixit_main_slider > .fixit_main_slider_img:before {
    z-index: 2;
  }
}
@media (max-width: 480px) {
  .fixit_header {
    padding: 30px 20px;
  }
  .fixit_header.fixed_menu {
    padding: 10px 20px;
  }
  .fixit_header .fixit_header_left .fixit_logo {
    margin-top: 0px;
    margin-left: 40px;
  }
}
/*
    Responsive header
 */

.fixit_btn {
  height: 40px;
  line-height: 2.5 !important;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #2d3857;
  padding: 0 30px;
  background-color: #ffffff;
  border-radius: 20px 0 20px 0;
  outline: none;
  box-shadow: none;
  border-bottom: 3px solid #ddd;
  text-decoration: none;
  margin: 10px auto;
  cursor: pointer;
}
/* header version 3 end */

/**
 *
 * 8. Sections
 * -----------------------------------------------------------------------------
 * parent;
 * 
 * 8.1 Heading
 * -----------------------------------------------------------------------------   
 * 
 */

.heading {
  padding-top: 75px;
  position: relative;
}

.heading .heading-slide-single {
  background-position: 50% 30%;
  background-size: cover;
  position: absolute;
  top: 75px;
  width: 100%;
  display: none;
  overflow: hidden;
}

.heading .heading-slide-single[data-slide-id="1"] {
  display: block;
}

.heading .flying-1 {
  height: 70px;
  left: -50px;
  background: rgba(145, 218, 50, 0.85);
  position: absolute;
}

.heading .flying-1 span {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  position: absolute;
  right: 20px;
  bottom: 13px;
}

.heading .flying-2 {
  background: rgba(145, 218, 50, 0.85);
  position: absolute;
  right: -50px;
  bottom: 0;
  z-index: 100;
}

.heading .flying-2 h3 {
  color: #fff;
  font-weight: 600;
  font-size: 21px;
}

.heading .flying-2 p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
}

.heading .heading-content {
  position: absolute;
  left: 50%;
}

.heading .heading-content h2 {
  color: #2c3459;
  font-weight: 700;
}

.heading .heading-content h3 {
  color: #2c3459;
  font-weight: 300;
  line-height: 1.1em;
  margin: 20px 0 45px 0;
}

.heading .heading-content .button:not(:hover) {
  background: none;
}

@media (min-width: 1350px) {
  .heading .heading-content {
    width: 1100px;
    margin-left: -550px;
    bottom: 100px;
  }

  .heading .heading-content h2 {
    font-size: 62px;
  }

  .heading .heading-content h3 {
    font-size: 26px;
  }

  .heading,
  .heading .heading-slide-single {
    height: 650px;
  }

  .heading .flying-1 {
    width: 350px;
  }

  .heading .flying-2 {
    width: 350px;
  }

  .heading .flying-2 h3,
  .heading .flying-2 p {
    padding: 30px 80px 0 30px;
  }

  .heading .flying-2 button {
    margin: 30px 0 30px 30px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  .heading .heading-content {
    width: 850px;
    margin-left: -425px;
    bottom: 50px;
  }

  .heading .heading-content h2 {
    font-size: 52px;
  }

  .heading .heading-content h3 {
    font-size: 26px;
  }

  .heading,
  .heading .heading-slide-single {
    height: 550px;
  }

  .heading .flying-1 {
    width: 350px;
  }

  .heading .flying-2 {
    width: 350px;
  }

  .heading .flying-2 h3,
  .heading .flying-2 p {
    padding: 30px 80px 0 30px;
  }

  .heading .flying-2 button {
    margin: 30px 0 30px 30px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  .heading .heading-content {
    width: 540px;
    margin-left: -270px;
    bottom: 50px;
  }

  .heading .heading-content h2 {
    font-size: 38px;
  }

  .heading .heading-content h3 {
    font-size: 20px;
  }

  .heading,
  .heading .heading-slide-single {
    height: 450px;
  }

  .heading .flying-1 {
    width: 350px;
  }

  .heading .flying-2 {
    display: none !important;
  }
}

@media (max-width: 599px) {
  .heading .heading-content {
    left: 30px;
    bottom: 30px;
  }

  .heading .heading-content h2 {
    font-size: 38px;
  }

  .heading .heading-content h3 {
    font-size: 20px;
  }

  .heading,
  .heading .heading-slide-single {
    height: 450px;
  }

  .heading .flying-1 {
    width: 280px;
  }

  .heading .flying-2 {
    display: none !important;
  }
}

/**
 *
 * 8.2 Call to action
 * -----------------------------------------------------------------------------
 * 
 */

section.call-to-action {
  overflow: hidden;
  position: relative;
}

section.call-to-action .left h2 {
  color: #7dba2f;
  font-size: 32px;
  margin-bottom: 30px;
  color: #2c3557;
}

section.call-to-action .left p {
  color: #9498ab;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
  margin-bottom: 30px;
}

section.call-to-action .left p.without-margin-bottom {
  margin-bottom: 0;
}

section.call-to-action .left p a {
  color: #2c3459;
  text-decoration: underline;
}

section.call-to-action .left p a:hover {
  text-decoration: none;
}
/**right**/
section.call-to-action .right h2 {
  color: #2c3557;
  font-size: 32px;
  margin-bottom: 30px;
}

section.call-to-action .right p {
  color: #9498ab;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
  margin-bottom: 30px;
}

section.call-to-action .right p.without-margin-bottom {
  margin-bottom: 0;
}

section.call-to-action .right p a {
  color: #2c3459;
  text-decoration: underline;
}

section.call-to-action .right p a:hover {
  text-decoration: none;
}
/**end right**/

section.call-to-action .left .form {
  position: relative;
}

section.call-to-action .left .call-to-action-thanks {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(253, 253, 253, 0.85);
  top: 0;
  left: 0;
  font-size: 16px;
  color: #2c3459;
  font-weight: 300;
  z-index: 300;
  display: none;
}

section.call-to-action
  .left
  .call-to-action-thanks
  .call-to-action-thanks-content {
  margin: 12px 0 0 0;
  line-height: 1.6em;
  text-align: center;
  width: 437px;
}

section.call-to-action
  .left
  .call-to-action-thanks
  .call-to-action-thanks-content
  .call-to-action-thanks-close {
  text-decoration: underline;
  cursor: pointer;
}

section.call-to-action
  .left
  .call-to-action-thanks
  .call-to-action-thanks-content
  .call-to-action-thanks-close:hover {
  text-decoration: none;
}

section.call-to-action .left .circles {
  /**width: 450px;**/
  height: 450px;
  position: relative;
  padding-top: 300px;
}

section.call-to-action .left .circle-1 {
  width: 450px;
  height: 450px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  margin-top: -226px;
  margin-left: -226px;
  border: 1px solid #f5f5f5;
}

section.call-to-action .left .circle-2 {
  width: 330px;
  height: 330px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #eee;
  top: 50%;
  left: 50%;
  margin-top: -166px;
  margin-left: -166px;
  position: absolute;
}

section.call-to-action .left .circle-3 {
  width: 220px;
  height: 220px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #e5e5e5;
  top: 50%;
  left: 50%;
  margin-top: -111px;
  margin-left: -111px;
  position: absolute;
}

section.call-to-action .left .circle-4 {
  width: 120px;
  height: 120px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #ddd;
  top: 50%;
  left: 50%;
  margin-top: -61px;
  margin-left: -61px;
  position: absolute;
}

section.call-to-action .left .circle-center {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #2c3459;
  top: 50%;
  left: 50%;
  margin-top: -21px;
  margin-left: -21px;
  position: absolute;
  font-size: 0;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

section.call-to-action .left .circle-center:hover {
  background: #2c3459;
}

section.call-to-action .left .circle-center i {
  font-size: 16px;
  color: #2c3459;
  display: block;
  margin-top: 11px;
}

section.call-to-action .left .circle-center:hover i {
  color: #fff;
}

section.call-to-action .left .circle-center .circle-center-tip {
  position: absolute;
  font-size: 13px;
  background: #2c3459;
  color: #fff;
  width: 200px;
  padding: 7px 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-left: -100px;
  left: 50%;
  margin-top: -37px;
}

section.call-to-action .left .circle-center .circle-center-tip:after {
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  content: " ";
  background: #2c3459;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  bottom: -3px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    opacity: 0.3;
  }
  50% {
    -webkit-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.3;
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    opacity: 0.3;
  }
  50% {
    -moz-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 0.3;
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
    opacity: 0.3;
  }
  50% {
    -o-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
    opacity: 0.3;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.circle-pulse {
  -webkit-animation: pulse 2s infinite;
  -moz-animation: pulse 2s infinite;
  -o-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  opacity: 1;

  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (min-width: 1350px) {
  section.call-to-action .left {
    width: 512.5px;
    float: left;
  }

  section.call-to-action .right {
    width: 512.5px;
    float: right;
  }

  section.call-to-action .center {
    padding: 75px 0;
  }

  section.call-to-action .left .circles {
    margin: -100px 0;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.call-to-action .left {
    width: 400px;
    float: left;
  }

  section.call-to-action .right {
    width: 400px;
    float: right;
  }

  section.call-to-action .left input[type="text"] {
    width: 145px;
  }

  section.call-to-action .center {
    padding: 50px 0;
  }

  section.call-to-action .left .circles {
    margin: -100px 0;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.call-to-action .center {
    padding: 50px 0;
  }

  section.call-to-action .left {
    background: #fdfdfd;
    position: relative;
    z-index: 200;
  }

  section.call-to-action .left .circles {
    margin: -75px auto -125px auto;
  }
}

@media (max-width: 599px) {
  section.call-to-action .center {
    padding: 30px 0;
  }

  section.call-to-action .left {
    background: #fdfdfd;
    position: relative;
    z-index: 200;
  }

  section.call-to-action .left .form input {
    margin-bottom: 10px;
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }

  section.call-to-action .right .circles {
    left: 50%;
    margin: -75px 0 -125px -225px;
  }
}

/**
 *
 * 8.3 Insurances slider
 * -----------------------------------------------------------------------------
 * 
 */

section.insurances-slider .green-line {
  width: 150px;
  height: 5px;
  left: 0;
  background: #91da32;
  opacity: 0.75;
  position: absolute;
  top: 0;
}

section.insurances-slider .center {
  position: relative;
}

section.insurances-slider .images {
  float: left;
  position: relative;
}

section.insurances-slider .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  top: 0;
  display: none;
}

section.insurances-slider .content .descriptions {
  position: relative;
}

section.insurances-slider .content .descriptions h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.insurances-slider .content .descriptions .description {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  display: none;
}

section.insurances-slider .content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.insurances-slider .content p {
  color: #9498ab;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6em;
}

section.insurances-slider .content p.without-margin-bottom {
  margin-bottom: 0;
}

section.insurances-slider .content p a {
  color: #2c3459;
  text-decoration: underline;
}

section.insurances-slider .content p a:hover {
  text-decoration: none;
}

section.insurances-slider .content .tabs {
  margin-top: 70px;
}

section.insurances-slider .content .tabs li {
  list-style: none;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #c3c5cd;
  cursor: pointer;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

section.insurances-slider .content .tabs li:last-child {
  margin-right: 0;
}

section.insurances-slider .content .tabs li i {
  display: block;
  font-size: 36px;
  margin-bottom: 15px;
  color: #d7dadf;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

section.insurances-slider .content .tabs li:hover,
section.insurances-slider .content .tabs li.active {
  color: #9498ab;
}

section.insurances-slider .content .tabs li:hover i,
section.insurances-slider .content .tabs li.active i {
  color: #7dba2f;
}

@media (min-width: 1350px) {
  section.insurances-slider .content {
    width: 512.5px;
    float: right;
    padding: 37.5px 0;
  }

  section.insurances-slider .center {
    padding: 75px 0;
  }

  section.insurances-slider .content .tabs li {
    margin-right: 22px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.insurances-slider .content {
    width: 400px;
    float: right;
    padding: 25px 0;
  }

  section.insurances-slider .center {
    padding: 50px 0;
  }

  section.insurances-slider .content .tabs li {
    margin-right: 15px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.insurances-slider .center {
    padding: 50px 0;
  }

  section.insurances-slider .content {
    padding-top: 350px;
  }

  section.insurances-slider .content .tabs li {
    margin-right: 15px;
  }
}

@media (max-width: 599px) {
  section.insurances-slider .center {
    padding: 30px 0;
  }

  section.insurances-slider .content {
    padding-top: 350px;
  }

  section.insurances-slider .content .descriptions h3 {
    margin-bottom: 30px;
  }

  section.insurances-slider .content .tabs li {
    margin-right: 15px;
    width: 100px;
    margin-bottom: 30px;
  }
}

/**
 *
 * 8.4 Box with image left
 * -----------------------------------------------------------------------------
 * 
 */

section.box-with-image-left {
  overflow: hidden;
}

section.box-with-image-left .center {
  position: relative;
}

section.box-with-image-left .image {
  float: left;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

section.box-with-image-left .image .image-caption {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  height: auto;
  bottom: 0;
  left: 0;
  padding: 50px;
  position: absolute;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, rgba(255, 255, 255, 0)),
    color-stop(1, rgba(0, 0, 0, 0.55))
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: -ms-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

section.box-with-image-left .image .image-caption p {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}

section.box-with-image-left .content h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.box-with-image-left .content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.box-with-image-left .content p {
  color: #9498ab;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6em;
}

section.box-with-image-left .content p.without-margin-bottom {
  margin-bottom: 0;
}

section.box-with-image-left .content p a {
  color: #2c3459;
  text-decoration: underline;
}

section.box-with-image-left .content p a:hover {
  text-decoration: none;
}

section.box-with-image-left .content ul {
  list-style-type: square;
  margin: 0 0 30px 18px;
}

section.box-with-image-left .content ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6em;
  color: #9498ab;
}

section.box-with-image-left .content ul li a {
  color: #2c3459;
  text-decoration: underline;
}

section.box-with-image-left .content ul li a:hover {
  text-decoration: none;
}

section.box-with-image-left .content ul ul {
  margin: 10px 0 10px 18px;
}

@media (min-width: 1350px) {
  section.box-with-image-left .content {
    width: 512.5px;
    float: right;
    padding: 37.5px 0;
  }

  section.box-with-image-left .center {
    padding: 75px 0;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.box-with-image-left .content {
    width: 400px;
    float: right;
    padding: 25px 0;
  }

  section.box-with-image-left .center {
    padding: 50px 0;
  }

  section.box-with-image-left .form input[type="text"] {
    width: 145px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.box-with-image-left .content {
    padding-top: 350px;
  }

  section.box-with-image-left .center {
    padding: 50px 0;
  }
}

@media (max-width: 599px) {
  section.box-with-image-left .content {
    padding-top: 330px;
  }

  section.box-with-image-left .center {
    padding: 30px 0;
  }

  section.box-with-image-left .content h3 {
    margin-bottom: 30px;
  }

  section.box-with-image-left .form input {
    margin-bottom: 10px;
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }
}

/**
 *
 * 8.5 Box with image right
 * -----------------------------------------------------------------------------
 * 
 */

section.box-with-image-right {
  overflow: hidden;
}

section.box-with-image-right .center {
  position: relative;
}

section.box-with-image-right .green-line {
  width: 150px;
  height: 5px;
  left: 0;
  background: #91da32;
  opacity: 0.75;
  position: absolute;
  top: 0;
}

section.box-with-image-right .image {
  float: right;
  position: relative;
  background-size: cover;
  background-position: 50% 25%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

section.box-with-image-right .image .image-caption {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  height: auto;
  bottom: 0;
  left: 0;
  padding: 50px;
  position: absolute;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, rgba(255, 255, 255, 0)),
    color-stop(1, rgba(0, 0, 0, 0.55))
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: -ms-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

section.box-with-image-right .image .image-caption p {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}

section.box-with-image-right .content h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.box-with-image-right .content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.box-with-image-right .content p {
  color: #9498ab;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6em;
}

section.box-with-image-right .content p.without-margin-bottom {
  margin-bottom: 0;
}

section.box-with-image-right .content p a {
  color: #2c3459;
  text-decoration: underline;
}

section.box-with-image-right .content p a:hover {
  text-decoration: none;
}

section.box-with-image-right .content ul {
  list-style-type: square;
  margin: 0 0 30px 18px;
}

section.box-with-image-right .content ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6em;
  color: #9498ab;
}

section.box-with-image-right .content ul li a {
  color: #2c3459;
  text-decoration: underline;
}

section.box-with-image-right .content ul li a:hover {
  text-decoration: none;
}

section.box-with-image-right .content ul ul {
  margin: 10px 0 10px 18px;
}

@media (min-width: 1350px) {
  section.box-with-image-right .content {
    width: 512.5px;
    float: left;
    padding: 37.5px 0;
  }

  section.box-with-image-right .center {
    padding: 75px 0;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.box-with-image-right .content {
    width: 400px;
    float: left;
    padding: 25px 0;
  }

  section.box-with-image-right .center {
    padding: 50px 0;
  }

  section.box-with-image-right .image {
    background-position: 100% 50%;
  }

  section.box-with-image-right .form input[type="text"] {
    width: 145px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.box-with-image-right .content {
    margin-bottom: 50px;
  }

  section.box-with-image-right .center {
    padding: 50px 0;
  }
}

@media (max-width: 599px) {
  section.box-with-image-right .content {
    margin-bottom: 30px;
  }

  section.box-with-image-right .center {
    padding: 30px 0;
  }

  section.box-with-image-right .content h3 {
    margin-bottom: 30px;
  }

  section.box-with-image-right .form input {
    margin-bottom: 10px;
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }
}

/**
 *
 * 8.6 Tabs
 * -----------------------------------------------------------------------------
 * 
 */

section.tabs .tabs-selector {
  list-style: none;
  text-align: center;
}

section.tabs .tabs-selector li {
  margin-bottom: 50px;
  font-size: 13px;
  font-weight: 400;
  color: #c3c5cd;
  cursor: pointer;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

section.tabs .tabs-selector li:last-child {
  margin-bottom: 0;
}

section.tabs .tabs-selector li i {
  font-size: 36px;
  color: #d7dadf;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
  margin-bottom: 15px;
  display: block;
}

section.tabs .tabs-selector li:hover,
section.tabs .tabs-selector li.active {
  color: #9498ab;
}

section.tabs .tabs-selector li:hover i,
section.tabs .tabs-selector li.active i {
  color: #2c3557;
}

section.tabs .content {
  overflow: hidden;
  position: relative;
}

section.tabs .content .content-tab-single {
  position: absolute;
  display: none;
  background: #fdfdfd;
}

section.tabs .content .content-tab-single[data-tab-id="1"] {
  display: block;
}

section.tabs .content .background-icon {
  position: absolute;
  font-size: 300px;
  z-index: 0;
  bottom: -50px;
  left: -50px;
  color: #f4f4f4;
}

section.tabs .content .background-icon.fa-plane {
  font-size: 350px;
  bottom: -75px;
}

section.tabs .content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.tabs .content h2 span {
  color: #2c3557;
}
section.tabs .content p {
  color: #9498ab;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6em;
}

@media (min-width: 1350px) {
  section.tabs .content {
    width: 950px;
    float: right;
    border-left: 1px solid #eee;
  }

  section.tabs .content .content-tab-single {
    padding: 75px 0 75px 75px;
  }

  section.tabs .tabs-selector {
    padding: 75px 0;
    width: 90px;
    float: left;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.tabs .content {
    width: 725px;
    float: right;
    border-left: 1px solid #eee;
  }

  section.tabs .content .content-tab-single {
    padding: 50px 0 0 50px;
  }

  section.tabs .tabs-selector {
    padding: 50px 0;
    width: 90px;
    float: left;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.tabs .content {
    width: 425px;
    float: right;
    border-left: 1px solid #eee;
  }

  section.tabs .content .content-tab-single {
    padding: 50px 0 0 50px;
  }

  section.tabs .tabs-selector {
    padding: 50px 0;
    width: 90px;
    float: left;
  }
}

@media (max-width: 599px) {
  section.tabs .content {
    float: none;
    border: none;
  }

  section.tabs .tabs-selector {
    float: none;
    padding: 30px 0;
    text-align: left;
  }

  section.tabs .tabs-selector li {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
  }

  section.tabs .tabs-selector li:first-child {
    margin-left: 0;
  }
}

/**
 *
 * 8.7 Blog
 * -----------------------------------------------------------------------------
 * 
 */

section.blog .background-icon {
  position: absolute;
  font-size: 300px;
  z-index: -1;
  opacity: 0.02;
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  transform: rotate(-25deg);
  top: 50px;
  left: -50px;
}

section.blog .recent-news > li {
  list-style: none;
  margin-bottom: 80px;
}

section.blog .recent-news.recent-news-full > li {
  margin-bottom: 0;
}

section.blog .recent-news li h2,
section.blog .recent-news li .recent-news-full-content h1 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.blog .recent-news li h2 a {
  color: #2c3459;
  text-decoration: none;
}

section.blog .recent-news li .post-data {
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 10px;
  color: #7dba2f;
  font-weight: 700;
  text-transform: uppercase;
}

section.blog .recent-news li .post-data a {
  text-decoration: underline;
  color: #7dba2f;
}

section.blog .recent-news li .post-data a:hover {
  text-decoration: none;
}

section.blog .recent-news li .post-data .divider {
  display: inline-block;
  margin: 0 10px;
  font-weight: 300;
  color: #9498ab;
}

section.blog .recent-news li .recent-news-full-content h2,
section.blog .recent-news li .recent-news-full-content h3,
section.blog .recent-news li .recent-news-full-content h4,
section.blog .recent-news li .recent-news-full-content h5,
section.blog .recent-news li .recent-news-full-content h6 {
  margin-bottom: 30px;
  color: #2c3459;
}

section.blog .recent-news li .recent-news-full-content h2 {
  font-size: 24px;
}

section.blog .recent-news li p {
  color: #9498ab;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6em;
}

section.blog .recent-news li p strong {
  font-weight: 600;
}

section.blog .recent-news li img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

section.blog .recent-news blockquote {
  margin: 40px 0 40px 120px;
  position: relative;
}

section.blog .recent-news blockquote:before {
  content: ",,";
  letter-spacing: -15px;
  position: absolute;
  font-size: 250px;
  opacity: 0.05;
  font-family: "Times New Roman";
  top: -200px;
  left: -130px;
}

section.blog .recent-news blockquote cite {
  font-size: 16px;
  color: #9498ab;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6em;
}

section.blog .recent-news li ul,
section.blog .recent-news li ol {
  margin-bottom: 30px;
  margin-left: 50px;
}

section.blog .recent-news li ul li,
section.blog .recent-news li ol li {
  color: #9498ab;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
}

section.blog .recent-news li ul > li {
  list-style: square;
}

section.blog .recent-news li ul ul,
section.blog .recent-news li ul ol,
section.blog .recent-news li ol ul,
section.blog .recent-news li ol ol {
  margin-bottom: 0;
}

section.blog .recent-news li .recent-news-single-content p a.button-open {
  display: inline-block;
}

section.blog
  .recent-news
  li
  .recent-news-single-content
  .recent-news-single-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  margin-bottom: 30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

section.blog .recent-news li.next-prev-posts {
  border-top: 1px solid #eee;
  padding-top: 50px;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
}

section.blog .recent-news li.next-prev-posts .left {
  float: left;
}

section.blog .recent-news li.next-prev-posts .right {
  float: right;
}

section.blog .recent-news li.next-prev-posts a {
  color: #9498ab;
  text-decoration: underline;
}

section.blog .recent-news li.next-prev-posts a:hover {
  text-decoration: none;
}

section.blog .recent-news .comments {
  border-top: 1px solid #eee;
  padding-top: 75px;
  margin-top: 75px;
  position: relative;
}

section.blog .recent-news .comments .green-line {
  width: 150px;
  height: 5px;
  left: 0;
  background: #91da32;
  opacity: 0.75;
  position: absolute;
  top: -1px;
  z-index: 100;
}

section.blog .recent-news .comments ol.comments-list {
  margin: 0;
}

section.blog .recent-news .comments ol.comments-list li {
  list-style: none;
}

section.blog .recent-news .comments ol.comments-list ul.children {
  margin-left: 60px;
}

section.blog
  .recent-news
  .comments
  ol.comments-list
  .comment-author-avatar
  img {
  width: 40px;
  height: 40px;
  float: left;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

section.blog
  .recent-news
  .comments
  ol.comments-list
  .bypostauthor
  .comment-author-avatar
  img {
  border-left: 3px solid #7dba2f;
}

section.blog .recent-news .comments ol.comments-list .comment-container {
  margin-left: 60px;
}

section.blog .recent-news .comments ol.comments-list .comment-author-name {
  font-weight: 600;
  color: #2c3459;
}

section.blog .recent-news .comments ol.comments-list .comment-author-info time {
  color: #7dba2f;
  margin-bottom: 15px;
  display: block;
}

section.blog .recent-news .comments p {
  margin-bottom: 15px;
}

section.blog .recent-news .comments a {
  color: #9498ab;
  text-decoration: underline;
}

section.blog .recent-news .comments a:hover {
  text-decoration: none;
}

section.blog .recent-news .comments a.comment-reply-link {
  display: inline-block;
  margin-bottom: 20px;
}

section.blog .recent-news .comments .form {
  font-size: 0;
  border-top: 1px solid #eee;
  position: relative;
}

section.blog .recent-news .comments .form h2 {
  font-size: 24px;
}

section.blog .recent-news .comments .form input {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
}

section.blog .recent-news .comments .form input.last {
  margin-right: 0;
}

section.blog .recent-news .comments .form textarea {
  margin-bottom: 10px;
}

section.blog .sidebar {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

section.blog .sidebar .widget {
  margin-bottom: 30px;
  background: #f0f1f0;
  border: 1px solid #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

section.blog .sidebar .widget h3 {
  color: #2c3557;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #2c3557;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 30px;
  text-transform: uppercase;
}

section.blog .sidebar .widget ul {
  list-style: none;
  font-size: 14px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
}

section.blog .sidebar .widget ul li {
  line-height: 1.6em;
}

section.blog .sidebar .widget ul.most-commented-news .line {
  margin: 15px 0;
  border-top: 1px dashed #ddd;
  height: 1px;
  width: 100px;
}

section.blog .sidebar .widget p,
section.blog .sidebar .widget .tagcloud {
  font-size: 14px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

section.blog .sidebar .widget a {
  color: #9498ab;
  text-decoration: underline;
}

section.blog .sidebar .widget .tagcloud a {
  text-decoration: none;
  background: #fdfdfd;
  padding: 5px 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 4px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

section.blog .sidebar .widget .tagcloud a:hover {
  background: #2c3459;
  color: #fff;
}

section.blog .sidebar .widget a:hover {
  text-decoration: none;
}

section.blog .sidebar .widget-call-to-action {
  margin-bottom: 30px;
  background-size: cover;
  background-position: 75% 50%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

section.blog .sidebar .widget-call-to-action:after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background: rgba(44, 52, 89, 0.85);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  z-index: -1;
}

section.blog .sidebar .widget-call-to-action h3 {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 30px;
  text-transform: uppercase;
}

section.blog .sidebar .widget-call-to-action p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

@media (min-width: 1350px) {
  section.blog .center {
    padding: 75px 0;
  }

  section.blog .recent-news {
    float: left;
    width: 720px;
  }

  section.blog .sidebar {
    float: right;
    width: 340px;
  }

  section.blog .sidebar .widget,
  section.blog .sidebar .widget-call-to-action {
    padding: 40px 40px 10px 40px;
  }

  section.blog .recent-news .comments .form {
    padding-top: 75px;
    margin-top: 75px;
  }

  section.blog .recent-news .comments .form input {
    width: 181px;
  }

  section.blog .recent-news .comments .form textarea {
    width: 667px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.blog .center {
    padding: 75px 0 50px 0;
  }

  section.blog .recent-news {
    float: left;
    width: 535px;
  }

  section.blog .sidebar {
    float: right;
    width: 270px;
  }

  section.blog .sidebar .widget,
  section.blog .sidebar .widget-call-to-action {
    padding: 30px 30px 1px 30px;
  }

  section.blog .recent-news .comments .form {
    padding-top: 50px;
    margin-top: 50px;
  }

  section.blog .recent-news .comments .form input {
    width: 119.5px;
  }

  section.blog .recent-news .comments .form textarea {
    width: 483px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.blog .center {
    padding: 75px 0 50px 0;
  }

  section.blog .sidebar .widget,
  section.blog .sidebar .widget-call-to-action {
    padding: 30px 30px 1px 30px;
  }

  section.blog .recent-news .comments .form {
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  section.blog .recent-news .comments .form input {
    width: 121px;
  }

  section.blog .recent-news .comments .form textarea {
    width: 487px;
  }
}

@media (max-width: 599px) {
  section.blog .center {
    padding: 110px 0 30px 0;
  }

  section.blog .sidebar .widget,
  section.blog .sidebar .widget-call-to-action {
    padding: 30px 30px 1px 30px;
  }

  section.blog .recent-news .comments .form {
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  section.blog .recent-news .comments .form input {
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }

  section.blog .recent-news .comments .form textarea {
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }
}

/**
 *
 * 8.8 Slogan
 * -----------------------------------------------------------------------------
 * 
 */

section.slogan {
  position: relative;
  overflow: hidden;
}

section.slogan .center .background-icon {
  position: absolute;
  font-size: 300px;
  z-index: -1;
  opacity: 0.02;
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  transform: rotate(25deg);
  top: -50px;
  right: -20px;
}

section.slogan h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.slogan h2 {
  color: #2c3459;
  font-size: 32px;
}

section.slogan blockquote {
  margin: 30px 0 30px 80px;
  position: relative;
}

section.slogan blockquote:before {
  content: ",,";
  letter-spacing: -15px;
  position: absolute;
  font-size: 180px;
  opacity: 0.05;
  font-family: "Times New Roman";
  top: -145px;
  left: -90px;
}

section.slogan p {
  font-size: 16px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6em;
}

section.slogan p.without-margin-bottom {
  margin-bottom: 0;
}

section.slogan p a {
  color: #2c3459;
  text-decoration: underline;
}

section.slogan p a:hover {
  text-decoration: none;
}

section.slogan cite {
  font-size: 16px;
  color: #9498ab;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6em;
}

section.slogan .right {
  font-size: 0;
  margin-bottom: -30px;
}

section.slogan .right .single {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  padding: 30px 0;
  position: relative;
}

section.slogan .right .single .number {
  font-weight: 700;
  font-size: 52px;
  color: #2c3459;
  display: block;
}

section.slogan .right .single .description {
  font-weight: 300;
  font-size: 16px;
  color: #9498ab;
  line-height: 1.6em;
  display: block;
}

section.slogan .right .single.single-left {
  border-right: 1px solid #eee;
}

section.slogan .right .single.single-left:not(.single-bottom):after {
  content: " ";
  height: 1px;
  width: 255.25px;
  border: none;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    right bottom,
    color-stop(0, #fdfdfd),
    color-stop(1, #eee)
  );
  background-image: -o-linear-gradient(right, #fdfdfd 0%, #eee 100%);
  background-image: -moz-linear-gradient(right, #fdfdfd 0%, #eee 100%);
  background-image: -webkit-linear-gradient(right, #fdfdfd 0%, #eee 100%);
  background-image: -ms-linear-gradient(right, #fdfdfd 0%, #eee 100%);
  background-image: linear-gradient(to right, #fdfdfd 0%, #eee 100%);
}

section.slogan .right .single.single-right:not(.single-bottom):after {
  content: " ";
  height: 1px;
  width: 255.25px;
  border: none;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    right bottom,
    color-stop(0, #eee),
    color-stop(1, #fdfdfd)
  );
  background-image: -o-linear-gradient(right, #eee 0%, #fdfdfd 100%);
  background-image: -moz-linear-gradient(right, #eee 0%, #fdfdfd 100%);
  background-image: -webkit-linear-gradient(right, #eee 0%, #fdfdfd 100%);
  background-image: -ms-linear-gradient(right, #eee 0%, #fdfdfd 100%);
  background-image: linear-gradient(to right, #eee 0%, #fdfdfd 100%);
}

section.slogan .right .single.single-left.single-top,
section.slogan .right .single.single-left.single-bottom {
  border-right: none;
}

section.slogan .right .single.single-left.single-top:before {
  content: " ";
  width: 1px;
  height: 100%;
  border: none;
  position: absolute;
  right: -1px;
  bottom: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #fdfdfd),
    color-stop(1, #eee)
  );
  background-image: -o-linear-gradient(bottom, #fdfdfd 0%, #eee 100%);
  background-image: -moz-linear-gradient(bottom, #fdfdfd 0%, #eee 100%);
  background-image: -webkit-linear-gradient(bottom, #fdfdfd 0%, #eee 100%);
  background-image: -ms-linear-gradient(bottom, #fdfdfd 0%, #eee 100%);
  background-image: linear-gradient(to bottom, #fdfdfd 0%, #eee 100%);
}

section.slogan .right .single.single-left.single-bottom:before {
  content: " ";
  width: 1px;
  height: 100%;
  border: none;
  position: absolute;
  right: -1px;
  bottom: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #eee),
    color-stop(1, #fdfdfd)
  );
  background-image: -o-linear-gradient(bottom, #eee 0%, #fdfdfd 100%);
  background-image: -moz-linear-gradient(bottom, #eee 0%, #fdfdfd 100%);
  background-image: -webkit-linear-gradient(bottom, #eee 0%, #fdfdfd 100%);
  background-image: -ms-linear-gradient(bottom, #eee 0%, #fdfdfd 100%);
  background-image: linear-gradient(to bottom, #eee 0%, #fdfdfd 100%);
}

@media (min-width: 1350px) {
  section.slogan .left {
    width: 532.5px;
    float: left;
  }

  section.slogan .right {
    width: 532.5px;
    float: right;
  }

  section.slogan .center {
    padding: 75px 0;
  }

  section.slogan .right .single {
    width: 255.25px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.slogan .left {
    width: 400px;
    float: left;
  }

  section.slogan .right {
    width: 400px;
    float: right;
    margin: 30px 0 0 0;
  }

  section.slogan .center {
    padding: 50px 0;
  }

  section.slogan .right .single {
    width: 200px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.slogan .center {
    padding: 50px 0;
  }

  section.slogan .right .single {
    width: 270px;
  }

  section.slogan .right .single.single-left:not(.single-bottom):after {
    width: 270px;
  }
}

@media (max-width: 599px) {
  section.slogan .center {
    padding: 30px 0;
  }

  section.slogan h3 {
    margin-bottom: 30px;
  }

  section.slogan .right .single {
    margin-bottom: 30px;
  }

  section.slogan .right .single {
    display: block;
    padding: 15px 0;
  }

  section.slogan .right .single:after,
  section.slogan .right .single:before {
    display: none;
  }
}

/**
 *
 * 8.9 References
 * -----------------------------------------------------------------------------
 * 
 */

section.references {
  background: #f5f5f5;
}

section.references .center {
  position: relative;
}

section.references h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.references h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.references p {
  font-size: 16px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

section.references p.without-margin-bottom {
  margin-bottom: 0;
}

section.references p a {
  color: #2c3459;
  text-decoration: underline;
}

section.references p a:hover {
  text-decoration: none;
}

section.references .references {
  position: relative;
}

section.references .single-reference {
  position: absolute;
  top: 0;
}

section.references .single-reference .single-reference-content {
  border: 1px solid #e5e5e5;
  background: #fdfdfd;
  padding: 30px 30px 10px 30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  position: relative;
}

section.references .single-reference .single-reference-content p {
  margin-bottom: 20px;
}

section.references
  .single-reference
  .single-reference-content
  p.without-margin-bottom {
  margin-bottom: 0;
}

section.references .single-reference .single-reference-content p a {
  color: #2c3459;
  text-decoration: underline;
}

section.references .single-reference .single-reference-content p a:hover {
  text-decoration: none;
}

section.references .single-reference .single-reference-author {
  display: block;
  padding: 35px 120px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: #9498ab;
  text-align: right;
}

section.references .single-reference .single-reference-author:before {
  content: ",,";
  letter-spacing: -15px;
  position: absolute;
  font-size: 250px;
  opacity: 0.1;
  font-family: "Times New Roman";
  top: -48px;
  right: 20px;
}

section.references .single-reference .single-reference-author strong {
  display: block;
  text-transform: uppercase;
  color: #7dba2f;
  font-weight: 800;
}

@media (min-width: 1350px) {
  section.references .left {
    width: 532.5px;
    float: left;
  }

  section.references .right {
    width: 532.5px;
    float: right;
  }

  section.references .center {
    padding: 75px 0;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.references .left {
    width: 400px;
    float: left;
  }

  section.references .right {
    width: 400px;
    float: right;
  }

  section.references .center {
    padding: 50px 0;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.references .center {
    padding: 50px 0;
  }

  section.references .left {
    margin-bottom: 50px;
  }
}

@media (max-width: 599px) {
  section.references .center {
    padding: 30px 0;
  }

  section.references h3 {
    margin-bottom: 30px;
  }

  section.references .left {
    margin-bottom: 30px;
  }
}

/**
 *
 * 8.10 About us
 * -----------------------------------------------------------------------------
 * 
 */

section.about-us {
  overflow: hidden;
}

section.about-us .green-line {
  width: 150px;
  height: 5px;
  left: 0;
  background: #91da32;
  opacity: 0.75;
  position: absolute;
  top: 0;
  display: none;
}

section.about-us .center {
  position: relative;
}

section.about-us h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.about-us h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.about-us p {
  font-size: 16px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

section.about-us p.without-margin-bottom {
  margin-bottom: 0;
}

section.about-us p a {
  color: #2c3459;
  text-decoration: underline;
}

section.about-us p a:hover {
  text-decoration: none;
}

section.about-us .left .timeline {
  position: relative;
  margin: 40px 30px 0 30px;
}

section.about-us .left .timeline:before {
  width: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 2px solid #e2e2e4;
  background: #e2e2e4;
  height: 100%;
  content: " ";
  position: absolute;
}

section.about-us .left .timeline:after {
  width: 4px;
  height: 55px;
  content: " ";
  position: absolute;
  bottom: -5px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #e2e2e4),
    color-stop(1, #fdfdfd)
  );
  background-image: -o-linear-gradient(bottom, #e2e2e4 0%, #fdfdfd 100%);
  background-image: -moz-linear-gradient(bottom, #e2e2e4 0%, #fdfdfd 100%);
  background-image: -webkit-linear-gradient(bottom, #e2e2e4 0%, #fdfdfd 100%);
  background-image: -ms-linear-gradient(bottom, #e2e2e4 0%, #fdfdfd 100%);
  background-image: linear-gradient(to bottom, #e2e2e4 0%, #fdfdfd 100%);
}

section.about-us .left .timeline .timeline-element {
  position: relative;
  margin-left: 33px;
  margin-bottom: 20px;
}

section.about-us .left .timeline .timeline-element:before {
  content: " ";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 3px solid #9498ab;
  background: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  left: -37.5px;
  margin-top: -1px;
}

section.about-us .left .timeline .timeline-element .date {
  color: #7dba2f;
  font-weight: 400;
  font-size: 16px;
  margin-top: -3px;
  position: absolute;
}

section.about-us .left .timeline .timeline-element p {
  padding-top: 25px;
}

section.about-us .right {
  float: right;
}

section.about-us .right .images-slider {
  position: relative;
}

section.about-us .right .images-slider .images-slider-change {
  width: 45px;
  position: absolute;
  right: -3px;
  top: 0;
  z-index: 100;
  -webkit-border-top-left-radius: 2px;
  -moz-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  font-size: 0;
  padding: 30px;
}

section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-bottom: 10px;
}

section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-next {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-prev
  i {
  color: #fff;
  font-size: 24px;
  margin-left: 13px;
  margin-top: 6px;
}

section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-next
  i {
  color: #fff;
  font-size: 24px;
  margin-left: 15px;
  margin-top: 6px;
}

section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-prev:hover,
section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-next:hover {
  background: #2c3459;
  border: 1px solid #2c3459;
}

section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-prev:hover
  i,
section.about-us
  .right
  .images-slider
  .images-slider-change
  .images-slider-next:hover
  i {
  color: #80859b;
}

section.about-us .right .images-slider .images-slider-single {
  background-size: cover;
  background-position: 50% 50%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  display: none;
}

section.about-us
  .right
  .images-slider
  .images-slider-single[data-slide-id="1"] {
  display: block;
}

@media (min-width: 1350px) {
  section.about-us .left {
    width: 512.5px;
    float: left;
    padding: 37.5px 0;
  }

  section.about-us .center {
    padding: 75px 0;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.about-us .left {
    width: 400px;
    float: left;
    padding: 25px 0;
  }

  section.about-us .center {
    padding: 50px 0;
  }

  section.about-us .right .images-slider .images-slider-single {
    background-position: 100% 50%;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.about-us .center {
    padding: 50px 0;
  }

  section.about-us .left {
    margin-bottom: 50px;
  }
}

@media (max-width: 599px) {
  section.about-us .center {
    padding: 30px 0;
  }

  section.about-us h3 {
    margin-bottom: 30px;
  }

  section.about-us .left {
    margin-bottom: 30px;
  }
}

/**
 *
 * 8.11 Agents
 * -----------------------------------------------------------------------------
 * 
 */

section.agents {
  overflow: hidden;
}

section.agents .center {
  position: relative;
}

section.agents h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.agents h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.agents p {
  font-size: 16px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

section.agents p.without-margin-bottom {
  margin-bottom: 0;
}

section.agents p a {
  color: #2c3459;
  text-decoration: underline;
}

section.agents p a:hover {
  text-decoration: none;
}

section.agents .left .agents-data {
  position: relative;
}

section.agents .left .agents-data .single-agent {
  position: absolute;
  top: 0;
  display: none;
}

section.agents .left .agents-data .single-agent[data-agent-id="1"] {
  display: block;
}

section.agents .left .switch-agents {
  margin-top: 30px;
}

section.agents .right {
  float: right;
}

section.agents .right .images-slider {
  position: relative;
}

section.agents .right .images-slider .images-slider-single {
  background-size: cover;
  background-position: 50% 50%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  display: none;
}

section.agents .right .images-slider .images-slider-single[data-agent-id="1"] {
  display: block;
}

@media (min-width: 1350px) {
  section.agents .left {
    width: 512.5px;
    float: left;
    padding: 37.5px 0;
  }

  section.agents .center {
    padding: 75px 0;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.agents .left {
    width: 400px;
    float: left;
    padding: 25px 0;
  }

  section.agents .center {
    padding: 50px 0;
  }

  section.agents .right .images-slider .images-slider-single {
    background-position: 100% 50%;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.agents .left {
    margin-bottom: 50px;
  }

  section.agents .center {
    padding: 50px 0;
  }
}

@media (max-width: 599px) {
  section.agents .left {
    margin-bottom: 30px;
  }

  section.agents .center {
    padding: 30px 0;
  }
}

/**
 *
 * 8.12 Image slogan
 * -----------------------------------------------------------------------------
 * 
 */

section.image-slogan {
  background-position: 50% 50%;
  position: relative;
  height: 500px;
  background-repeat: no-repeat;
}

section.image-slogan .flying-1 {
  height: 70px;
  background: rgba(145, 218, 50, 0.85);
  position: absolute;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

section.image-slogan .flying-1 span {
  color: #fff;
  font-weight: 600;
  position: absolute;
  right: 20px;
  bottom: 13px;
}

section.image-slogan .flying-2 {
  background: rgba(145, 218, 50, 0.85);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 100;
  -webkit-border-top-left-radius: 2px;
  -moz-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
}

section.image-slogan .flying-2 h3 {
  padding: 30px 30px 0 30px;
  color: #fff;
  font-weight: 600;
  font-size: 21px;
}

section.image-slogan .flying-2 p {
  padding: 30px 30px 0 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
}

section.image-slogan .flying-2 button {
  margin: 30px 0 30px 30px;
}

@media (min-width: 1350px) {
  section.image-slogan {
    background-size: cover;
  }

  section.image-slogan .flying-1,
  section.image-slogan .flying-2 {
    width: 300px;
  }

  section.image-slogan .flying-1 span {
    font-size: 21px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.image-slogan {
    background-size: cover;
  }

  section.image-slogan .flying-1,
  section.image-slogan .flying-2 {
    width: 300px;
  }

  section.image-slogan .flying-1 span {
    font-size: 21px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.image-slogan {
    background-size: 1000px auto;
  }

  section.image-slogan .flying-1,
  section.image-slogan .flying-2 {
    width: 300px;
  }

  section.image-slogan .flying-1 span {
    font-size: 21px;
  }
}

@media (max-width: 599px) {
  section.image-slogan {
    background-size: 1000px auto;
  }

  section.image-slogan .flying-1 {
    width: 230px;
  }

  section.image-slogan .flying-2 {
    width: 240px;
  }

  section.image-slogan .flying-1 span,
  section.image-slogan .flying-2 h3 {
    font-size: 20px;
  }
}

/**
 *
 * 8.13 Contact
 * -----------------------------------------------------------------------------
 * 
 */

section.contact {
  z-index: 1;
  overflow: hidden;
  position: relative;
}

section.contact.contact-gray {
  background: #f0f1f0;
}

section.contact .center {
  padding: 75px 0;
}

section.contact .background-icon {
  position: absolute;
  font-size: 300px;
  z-index: -1;
  opacity: 0.02;
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  transform: rotate(25deg);
  top: -50px;
  right: -20px;
}

section.contact h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 20px;
}

section.contact .contact-details {
  font-size: 0;
  position: relative;
}

section.contact .contact-details .contact-detail-single {
  vertical-align: top;
}

section.contact
  .contact-details
  .contact-detail-single.contact-detail-single-last {
  margin-right: 0;
}

section.contact .contact-details h3 {
  color: #2c3458;
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 30px;
}

section.contact .contact-details h3 i {
  margin-right: 10px;
  color: #ccc;
}

section.contact .contact-details p {
  font-size: 16px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

section.contact .contact-details p.without-margin-bottom {
  margin-bottom: 0;
}

section.contact .contact-details p strong {
  font-weight: 400;
  color: #2c3459;
}

section.contact .contact-details p a {
  text-decoration: underline;
  color: #9498ab;
}

section.contact .contact-details p a:hover {
  text-decoration: none;
}

section.contact
  .contact-details
  .contact-detail-single.contact-detail-single-last {
  text-align: left;
}

section.contact.contact-gray .button.button-navy-blue:not(:hover) {
  background: #f0f1f0;
}

@media (min-width: 1350px) {
  section.contact .center {
    padding: 75px 0;
  }

  section.contact .contact-details .contact-detail-single {
    margin-right: 40px;
    width: 340px;
    display: inline-block;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.contact .center {
    padding: 50px 0;
  }

  section.contact .contact-details .contact-detail-single {
    margin-right: 25px;
    width: 266px;
    display: inline-block;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.contact .center {
    padding: 50px 0;
  }

  section.contact .contact-details .contact-detail-single {
    margin-bottom: 50px;
  }

  section.contact
    .contact-details
    .contact-detail-single.contact-detail-single-last {
    text-align: center;
    margin-bottom: 0;
  }
}

@media (max-width: 599px) {
  section.contact .center {
    padding: 30px 0;
  }

  section.contact .contact-details .contact-detail-single {
    margin-bottom: 30px;
  }

  section.contact
    .contact-details
    .contact-detail-single.contact-detail-single-last {
    text-align: center;
    margin-bottom: 0;
  }
}

/**
 *
 * 8.14 Contact full
 * -----------------------------------------------------------------------------
 * 
 */

section.contact-full {
  overflow: hidden;
}

section.contact-full .center {
  position: relative;
}

section.contact-full .green-line {
  width: 150px;
  height: 5px;
  left: 0;
  background: #91da32;
  opacity: 0.75;
  position: absolute;
  top: 0;
}

section.contact-full h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.contact-full h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.contact-full p {
  font-size: 16px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

section.contact-full p.without-margin-bottom {
  margin-bottom: 0;
}

section.contact-full p strong {
  font-weight: 400;
  color: #2c3459;
}

section.contact-full p a {
  color: #9498ab;
  text-decoration: underline;
}

section.contact-full p a:hover {
  text-decoration: none;
}

section.contact-full .form {
  font-size: 0;
  position: relative;
}

section.contact-full .form input[type="text"].last {
  margin-right: 0;
}

section.contact-full .form textarea {
  margin-bottom: 10px;
}

section.contact-full .form .contact-form-thanks {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(253, 253, 253, 0.85);
  top: 0;
  left: 0;
  font-size: 16px;
  color: #2c3459;
  font-weight: 300;
  display: none;
}

section.contact-full .form .contact-form-thanks .contact-form-thanks-content {
  width: 300px;
  margin: 135px auto 0 auto;
  text-align: center;
  line-height: 1.6em;
}

section.contact-full
  .form
  .contact-form-thanks
  .contact-form-thanks-content
  .contact-form-thanks-close {
  text-decoration: underline;
  cursor: pointer;
}

section.contact-full
  .form
  .contact-form-thanks
  .contact-form-thanks-content
  .contact-form-thanks-close:hover {
  text-decoration: none;
}

section.contact-full .right {
  float: right;
}

section.contact-full .right #google-map-full {
  -webkit-border-top-left-radius: 2px;
  -moz-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

@media (min-width: 1350px) {
  section.contact-full .left {
    width: 512.5px;
    float: left;
    padding: 37.5px 0;
  }

  section.contact-full .center {
    padding: 75px 0;
  }

  section.contact-full .form input[type="text"] {
    width: 199px;
  }

  section.contact-full .form textarea {
    width: 460px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.contact-full .left {
    width: 400px;
    float: left;
    padding: 25px 0;
  }

  section.contact-full .center {
    padding: 50px 0;
  }

  section.contact-full .form input[type="text"] {
    width: 143px;
  }

  section.contact-full .form textarea {
    width: 348px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.contact-full .left {
    margin-bottom: 50px;
  }

  section.contact-full .center {
    padding: 50px 0;
  }

  section.contact-full .form input[type="text"] {
    width: 213px;
  }

  section.contact-full .form textarea {
    width: 488px;
  }
}

@media (max-width: 599px) {
  section.contact-full .left {
    margin-bottom: 30px;
  }

  section.contact-full .center {
    padding: 30px 0;
  }

  section.contact-full .form input[type="text"] {
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }

  section.contact-full .form textarea {
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }
}

/**
 *
 * 8.15 Double content
 * -----------------------------------------------------------------------------
 * 
 */

section.double-content {
  overflow: hidden;
}

section.double-content .center {
  position: relative;
}

section.double-content .green-line {
  width: 150px;
  height: 5px;
  left: 0;
  background: #91da32;
  opacity: 0.75;
  position: absolute;
  top: 0;
}

section.double-content h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

section.double-content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.double-content p {
  color: #9498ab;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6em;
}

section.double-content p.without-margin-bottom {
  margin-bottom: 0;
}

section.double-content p a {
  color: #2c3459;
  text-decoration: underline;
}

section.double-content p a:hover {
  text-decoration: none;
}

section.double-content ul {
  list-style-type: square;
  margin: 0 0 30px 18px;
}

section.double-content ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6em;
  color: #9498ab;
}

section.double-content ul li a {
  color: #2c3459;
  text-decoration: underline;
}

section.double-content ul li a:hover {
  text-decoration: none;
}

section.double-content ul ul {
  margin: 10px 0 10px 18px;
}

@media (min-width: 1350px) {
  section.double-content .center {
    padding: 75px 0;
  }

  section.double-content .content-left {
    width: 512.5px;
    float: left;
  }

  section.double-content .content-right {
    width: 512.5px;
    float: right;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.double-content .center {
    padding: 50px 0;
  }

  section.double-content .content-left {
    width: 400px;
    float: left;
  }

  section.double-content .content-right {
    width: 400px;
    float: right;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.double-content .content-left {
    margin-bottom: 50px;
  }

  section.double-content .center {
    padding: 50px 0;
  }
}

@media (max-width: 599px) {
  section.double-content .center {
    padding: 30px 0;
  }

  section.double-content .content-left {
    margin-bottom: 30px;
  }

  section.double-content .content h3 {
    margin-bottom: 30px;
  }
}

/**
 *
 * 8.16 Quote form
 * ----------------------------------------------------------------------------- 
 *
 */

section.quote-forms {
  overflow: hidden;
}

section.quote-forms .center {
  position: relative;
}

section.quote-forms .quote-form-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 60% 50%;
  -webkit-border-top-right-radius: 2px;
  -moz-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  position: relative;
  float: left;
}

section.quote-forms .background-icon {
  position: absolute;
  font-size: 300px;
  z-index: -1;
  opacity: 0.05;
  bottom: -100px;
  left: -50px;
}

section.quote-forms .quote-form-content {
  position: relative;
}

section.quote-forms .quote-form-content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

section.quote-forms .quote-form-content h2 span {
  color: #7dba2f;
}

section.quote-forms .quote-form-content h4 {
  color: #2c3459;
  font-size: 16px;
  margin: 20px 0 10px 0;
}

section.quote-forms .quote-form-content h4 .slider-value {
  float: right;
  color: #7dba2f;
}

section.quote-forms .quote-form-content .form {
  font-size: 0;
  position: relative;
}

section.quote-forms .quote-form-content .form input[type="text"] {
  margin-bottom: 10px;
  background: #fdfdfd;
}

section.quote-forms .quote-form-content .form select {
  margin-bottom: 10px;
  background: #fdfdfd;
}

section.quote-forms .quote-form-content .form input[type="text"].last,
section.quote-forms .quote-form-content .form select {
  margin-right: 0;
}

section.quote-forms .quote-form-content .form .slider {
  margin-bottom: 30px;
}

section.quote-forms .quote-form-content .form button {
  display: block;
  margin-top: 15px;
}

section.quote-forms .quote-form-thanks {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(253, 253, 253, 0.85);
  top: 0;
  left: 0;
  font-size: 16px;
  color: #2c3459;
  font-weight: 300;
  display: none;
}

section.quote-forms .quote-form-thanks .quote-form-thanks-content {
  width: 300px;
  margin: 150px auto 0 auto;
  text-align: center;
  line-height: 1.6em;
}

section.quote-forms
  .quote-form-thanks
  .quote-form-thanks-content
  .quote-form-thanks-close {
  text-decoration: underline;
  cursor: pointer;
}

section.quote-forms
  .quote-form-thanks
  .quote-form-thanks-content
  .quote-form-thanks-close:hover {
  text-decoration: none;
}

@media (min-width: 1350px) {
  section.quote-forms .center {
    padding: 75px 0;
    position: relative;
  }

  section.quote-forms .quote-form-content {
    width: 512.5px;
    float: right;
    padding: 37.5px 0;
  }

  section.quote-forms .quote-form-content .form input[type="text"] {
    width: 199px;
  }

  section.quote-forms .quote-form-content .form .checkbox {
    width: 249px;
  }

  section.quote-forms .quote-form-content .form select {
    width: 251px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  section.quote-forms .center {
    padding: 50px 0;
    position: relative;
  }

  section.quote-forms .quote-form-content {
    width: 400px;
    float: right;
    padding: 25px 0;
  }

  section.quote-forms .quote-form-content .form input[type="text"] {
    width: 143px;
  }

  section.quote-forms .quote-form-content .form .checkbox {
    width: 193px;
  }

  section.quote-forms .quote-form-content .form select {
    width: 195px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  section.quote-forms .center {
    padding: 50px 0;
  }

  section.quote-forms .quote-form-content {
    padding-top: 350px;
  }

  section.quote-forms .quote-form-content .form input[type="text"] {
    width: 213px;
  }

  section.quote-forms .quote-form-content .form .checkbox {
    width: 263px;
  }

  section.quote-forms .quote-form-content .form select {
    width: 265px;
  }
}

@media (max-width: 599px) {
  section.quote-forms .center {
    padding: 30px 0;
  }

  section.quote-forms .quote-form-content {
    padding-top: 330px;
  }

  section.quote-forms .quote-form-content h3 {
    margin-bottom: 30px;
  }

  section.quote-forms .form input {
    margin-bottom: 10px;
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }

  section.quote-forms .quote-form-content .form .checkbox {
    width: -webkit-calc(100% - 2px);
    width: -moz-calc(100% - 2px);
    width: calc(100% - 2px);
  }

  section.quote-forms .form .custom-dropdown {
    width: 100%;
  }

  section.quote-forms .form .custom-dropdown-select {
    width: 100%;
  }
}

/**
 *
 * 9. Footer
 * -----------------------------------------------------------------------------
 * 
 */

footer .green-line {
  width: 150px;
  height: 5px;
  left: 0;
  background: #91da32;
  opacity: 0.75;
  position: absolute;
  top: 0;
}

footer .center {
  position: relative;
}

footer ul.left {
  list-style: none;
  font-size: 0;
}

footer ul.left > li {
  list-style: none;
  vertical-align: top;
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #9498ab;
}

footer ul.left li i {
  font-size: 8px;
  margin-right: 5px;
}

footer ul.left li h4 {
  text-transform: uppercase;
  color: #2c3459;
  display: inline-block;
  font-weight: 700;
}

footer ul.left ul.sub {
  display: inline-block;
}

footer ul.left ul.sub li {
  list-style: none;
  line-height: 1.6em;
  display: inline-block;
}

footer ul.left ul.sub li:before {
  content: "\b7";
  display: inline-block;
  margin: 0 10px;
  opacity: 0.4;
}

footer ul.right {
  list-style: none;
  font-size: 0;
  margin-top: 2px;
}

footer ul.right > li {
  list-style: none;
  vertical-align: top;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 300;
  color: #9498ab;
}

footer a,
footer button.menu-element {
  text-decoration: underline;
  color: #9498ab;
  background: none;
  border: none;
  font-weight: 300;
  cursor: pointer;
  outline: none;
}

footer a:hover,
footer button.menu-element:hover {
  text-decoration: none;
}

footer p {
  margin-bottom: 15px;
  font-size: 13px;
}

footer p.important {
  color: #2c3459;
}

@media (min-width: 1350px) {
  footer .center {
    padding: 75px 0 65px 0;
  }

  footer ul.left {
    float: left;
    width: 600px;
  }

  footer ul.right {
    float: right;
    width: 300px;
    text-align: right;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  footer .center {
    padding: 50px 0 40px 0;
  }

  footer ul.left {
    float: left;
    width: 550px;
  }

  footer ul.right {
    float: right;
    width: 250px;
    text-align: right;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  footer .center {
    padding: 50px 0 40px 0;
  }

  footer ul.left {
    margin-bottom: 50px;
  }
}

@media (max-width: 599px) {
  footer .center {
    padding: 30px 0 20px 0;
  }

  footer ul.left {
    margin-bottom: 30px;
  }

  footer ul.left ul.sub li:before {
    display: none;
  }

  footer ul.left ul.sub {
    margin: 15px 0;
    display: block;
  }

  footer ul.left ul.sub li {
    display: block;
    line-height: 2em;
  }
}

/**
 *
 * 10. Contact popup
 * -----------------------------------------------------------------------------
 * 
 */

#contact-popup #contact-popup-background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(15, 19, 36, 0.73);
  z-index: 99998;
  display: none;
}

#contact-popup #contact-popup-content {
  background: #fdfdfd;
  position: fixed;
  top: -10000px;
  left: 50%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 0 7px rgba(15, 19, 36, 0.73);
  z-index: 99999;
}

#contact-popup #contact-popup-content #google-map {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-border-top-left-radius: 2px;
  -moz-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
}

#contact-popup #contact-popup-content .padding {
  font-size: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#contact-popup #contact-popup-content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

#contact-popup #contact-popup-content h2 span {
  color: #7dba2f;
}

#contact-popup #contact-popup-content h3 {
  color: #7dba2f;
  font-weight: 800;
  font-size: 13px;
  margin-left: 2px;
  border-bottom: 3px solid #7dba2f;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 41px;
  text-transform: uppercase;
}

#contact-popup #contact-popup-content h3.right {
  position: absolute;
  color: #2c3459;
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  border: none;
}

#contact-popup #contact-popup-content h4 {
  color: #2c3459;
  font-size: 16px;
  margin: 20px 0 10px 0;
}

#contact-popup #contact-popup-content p {
  font-size: 16px;
  color: #9498ab;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6em;
}

#contact-popup #contact-popup-content .form {
  position: relative;
}

#contact-popup #contact-popup-content input[type="text"] {
  margin: 0 10px 10px 0;
  background: #fdfdfd;
}

#contact-popup #contact-popup-content input[type="text"].last {
  margin-right: 0;
}

#contact-popup #contact-popup-content textarea {
  height: 79px;
  margin: 0 0 25px 0;
  background: #fdfdfd;
}

#contact-popup #contact-popup-content button {
  display: block;
  line-height: 1;
  background: #fdfdfd;
}

#contact-popup #contact-popup-content button:hover {
  background: #2c3459;
}

#contact-popup #contact-popup-content #contact-popup-close {
  position: absolute;
  right: -53px;
  top: 20px;
  background: #91da32;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 16px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#contact-popup #contact-popup-content #contact-popup-close:hover {
  background: #7dba2f;
}

#contact-popup #contact-popup-content .background-icon {
  position: absolute;
  font-size: 300px;
  z-index: -1;
  opacity: 0.05;
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  transform: rotate(25deg);
  bottom: -50px;
  right: -50px;
}

#contact-popup #contact-popup-content .contact-form-thanks {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(253, 253, 253, 0.85);
  top: 0;
  left: 0;
  font-size: 16px;
  color: #2c3459;
  font-weight: 300;
  display: none;
}

#contact-popup
  #contact-popup-content
  .contact-form-thanks
  .contact-form-thanks-content {
  width: 300px;
  margin: 150px auto 0 auto;
  text-align: center;
  line-height: 1.6em;
}

#contact-popup
  #contact-popup-content
  .contact-form-thanks
  .contact-form-thanks-content
  .contact-form-thanks-close {
  text-decoration: underline;
  cursor: pointer;
}

#contact-popup
  #contact-popup-content
  .contact-form-thanks
  .contact-form-thanks-content
  .contact-form-thanks-close:hover {
  text-decoration: none;
}

@media (min-width: 1350px) {
  #contact-popup #contact-popup-content {
    width: 1000px;
    margin-left: -500px;
    height: 600px;
    margin-top: -300px;
  }

  #contact-popup #contact-popup-content input[type="text"] {
    width: 253px;
  }

  #contact-popup #contact-popup-content textarea {
    width: 568px;
  }

  #contact-popup #contact-popup-content #google-map {
    width: 300px;
    height: 600px;
  }

  #contact-popup #contact-popup-content .padding {
    padding: 40px;
    margin-left: 300px;
  }

  #contact-popup #contact-popup-content h3.right {
    right: 40px;
    top: 40px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  #contact-popup #contact-popup-content {
    width: 850px;
    margin-left: -425px;
    height: 600px;
    margin-top: -300px;
  }

  #contact-popup #contact-popup-content input[type="text"] {
    width: 178px;
  }

  #contact-popup #contact-popup-content textarea {
    width: 418px;
  }

  #contact-popup #contact-popup-content #google-map {
    width: 300px;
    height: 600px;
  }

  #contact-popup #contact-popup-content .padding {
    padding: 40px;
    margin-left: 300px;
  }

  #contact-popup #contact-popup-content h3.right {
    right: 40px;
    top: 40px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  #contact-popup #contact-popup-content {
    width: 540px;
    margin-left: -270px;
    position: absolute;
    height: auto;
    margin-top: -300px;
  }

  #contact-popup #contact-popup-content input[type="text"] {
    width: 188px;
  }

  #contact-popup #contact-popup-content textarea {
    width: 438px;
  }

  #contact-popup #contact-popup-content #google-map {
    width: 100%;
    height: 250px;
  }

  #contact-popup #contact-popup-content .padding {
    padding: 25px;
    margin-top: 250px;
  }

  #contact-popup #contact-popup-content h3.right {
    right: 25px;
    top: 25px;
  }
}

@media (max-width: 599px) {
  #contact-popup #contact-popup-content {
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: calc(100% - 60px);
    margin-left: 30px;
    left: 0;
    position: absolute;
    height: auto;
    margin-top: -300px;
  }

  #contact-popup #contact-popup-content input[type="text"],
  #contact-popup #contact-popup-content textarea {
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }

  #contact-popup #contact-popup-content #google-map {
    width: 100%;
    height: 250px;
  }

  #contact-popup #contact-popup-content .padding {
    padding: 25px;
    margin-top: 250px;
  }

  #contact-popup #contact-popup-content h3 {
    margin-bottom: 30px;
  }

  #contact-popup #contact-popup-content h3.right {
    display: none;
  }

  #contact-popup #contact-popup-content #contact-popup-close {
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    left: 0;
    right: auto;
    top: -40px;
    text-align: center;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
  }
}

/**
 *
 * 11. Quote popup
 * -----------------------------------------------------------------------------
 * 
 */

#quote-popup #quote-popup-background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(15, 19, 36, 0.73);
  z-index: 99998;
  display: none;
}

#quote-popup #quote-popup-content {
  background: #fdfdfd;
  position: fixed;
  top: -10000px;
  left: 50%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 0 7px rgba(15, 19, 36, 0.73);
  z-index: 99999;
}

#quote-popup #quote-popup-content #quote-popup-close {
  position: absolute;
  right: -53px;
  top: 20px;
  background: #91da32;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 16px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#quote-popup #quote-popup-content #quote-popup-close:hover {
  background: #7dba2f;
}

#quote-popup #quote-popup-content #quote-popup-tabs {
  list-style: none;
  position: absolute;
  top: 25px;
  z-index: 99999;
}

#quote-popup #quote-popup-content #quote-popup-tabs li {
  display: inline-block;
  color: #7dba2f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  padding: 15px 0;
}

#quote-popup #quote-popup-content #quote-popup-tabs li.active {
  color: #2c3459;
}

#quote-popup #quote-popup-content #quote-popup-tabs li:after {
  content: " ";
  width: 100%;
  height: 3px;
  background: #f0f1f0;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#quote-popup #quote-popup-content #quote-popup-tabs li.active:after {
  background: #2c3459;
}

#quote-popup
  #quote-popup-content
  #quote-popup-tabs
  li:not(.active):hover:after {
  background: #7dba2f;
}

#quote-popup #quote-popup-content .quote-form {
  overflow: hidden;
  position: relative;
  display: none;
}

#quote-popup #quote-popup-content .quote-form .quote-form-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 60% 50%;
  -webkit-border-top-left-radius: 2px;
  -moz-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

#quote-popup #quote-popup-content .quote-form .background-icon {
  position: absolute;
  font-size: 300px;
  z-index: -1;
  opacity: 0.05;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  transform: rotate(15deg);
  bottom: -50px;
  right: -50px;
}

#quote-popup #quote-popup-content .quote-form .quote-form-content h2 {
  color: #2c3459;
  font-size: 32px;
  margin-bottom: 30px;
}

#quote-popup #quote-popup-content .quote-form .quote-form-content h2 span {
  color: #7dba2f;
}

#quote-popup #quote-popup-content .quote-form .quote-form-content h4 {
  color: #2c3459;
  font-size: 16px;
  margin: 20px 0 10px 0;
}

#quote-popup
  #quote-popup-content
  .quote-form
  .quote-form-content
  h4
  .slider-value {
  float: right;
  color: #7dba2f;
}

#quote-popup #quote-popup-content .quote-form .quote-form-content .form {
  font-size: 0;
  position: relative;
}

#quote-popup
  #quote-popup-content
  .quote-form
  .quote-form-content
  .form
  input[type="text"] {
  margin-bottom: 10px;
  background: #fdfdfd;
}

#quote-popup #quote-popup-content .quote-form .quote-form-content .form select {
  margin-bottom: 10px;
  background: #fdfdfd;
}

#quote-popup
  #quote-popup-content
  .quote-form
  .quote-form-content
  .form
  input[type="text"].last,
#quote-popup #quote-popup-content .quote-form .quote-form-content .form select {
  margin-right: 0;
}

#quote-popup
  #quote-popup-content
  .quote-form
  .quote-form-content
  .form
  .slider {
  margin-bottom: 30px;
}

#quote-popup #quote-popup-content .quote-form .quote-form-content .form button {
  display: block;
  margin-top: 15px;
}

#quote-popup #quote-popup-content .quote-form .quote-form-thanks {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(253, 253, 253, 0.85);
  top: 0;
  left: 0;
  font-size: 16px;
  color: #2c3459;
  font-weight: 300;
  display: none;
}

#quote-popup
  #quote-popup-content
  .quote-form
  .quote-form-thanks
  .quote-form-thanks-content {
  width: 300px;
  margin: 150px auto 0 auto;
  text-align: center;
  line-height: 1.6em;
}

#quote-popup
  #quote-popup-content
  .quote-form
  .quote-form-thanks
  .quote-form-thanks-content
  .quote-form-thanks-close {
  text-decoration: underline;
  cursor: pointer;
}

#quote-popup
  #quote-popup-content
  .quote-form
  .quote-form-thanks
  .quote-form-thanks-content
  .quote-form-thanks-close:hover {
  text-decoration: none;
}

@media (min-width: 1350px) {
  #quote-popup #quote-popup-content {
    width: 1000px;
    margin-left: -500px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-content {
    width: 620px;
    /* float: right; */
    margin: 0 auto;
    padding: 110px 40px 40px 40px;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs {
    left: 340px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-background {
    width: 300px;
    float: left;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    input[type="text"] {
    width: 253px;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    select {
    width: 305px;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs li {
    margin-right: 30px;
  }
}

@media (min-width: 950px) and (max-width: 1349px) {
  #quote-popup #quote-popup-content {
    width: 850px;
    margin-left: -425px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-content {
    width: 570px;
    float: right;
    padding: 110px 40px 40px 40px;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs {
    left: 240px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-background {
    width: 200px;
    float: left;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    input[type="text"] {
    width: 228px;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    select {
    width: 280px;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    .checkbox {
    width: 278px;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs li {
    margin-right: 30px;
  }
}

@media (min-width: 600px) and (max-width: 949px) {
  #quote-popup #quote-popup-content {
    width: 540px;
    margin-left: -270px;
    position: absolute;
    height: auto;
    margin-top: -300px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-background {
    width: 100%;
    height: 200px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-content {
    padding: 85px 25px 25px 25px;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    input[type="text"] {
    width: 188px;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    .custom-dropdown-select {
    width: 240px;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    textarea {
    width: 438px;
  }

  #quote-popup
    #quote-popup-content
    .quote-form
    .quote-form-content
    .form
    .checkbox {
    width: 238px;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs {
    top: 210px;
    left: 25px;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs li {
    margin-right: 17px;
  }
}

@media (max-width: 670px) {
  #quote-popup #quote-popup-content #quote-popup-close {
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    left: 0;
    right: auto;
    top: -40px;
    text-align: center;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
  }
}

@media (max-width: 599px) {
  #quote-popup #quote-popup-content {
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: calc(100% - 60px);
    margin-left: 30px;
    left: 0;
    position: absolute;
    height: auto;
    margin-top: -300px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-background {
    width: 100%;
    height: 200px;
  }

  #quote-popup #quote-popup-content .quote-form .quote-form-content {
    padding: 25px;
  }

  #quote-popup #quote-popup-content input[type="text"],
  #quote-popup #quote-popup-content textarea {
    width: -webkit-calc(100% - 52px);
    width: -moz-calc(100% - 52px);
    width: calc(100% - 52px);
  }

  #quote-popup #quote-popup-content .checkbox {
    background: #fdfdfd;
    width: -webkit-calc(100% - 2px);
    width: -moz-calc(100% - 2px);
    width: calc(100% - 2px);
  }

  #quote-popup #quote-popup-content .custom-dropdown,
  #quote-popup #quote-popup-content .custom-dropdown-select {
    width: 100%;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs {
    position: static;
    padding: 25px;
  }

  #quote-popup #quote-popup-content #quote-popup-tabs li {
    margin-right: 17px;
  }
}
.pac-container {
  z-index: 100000 !important;
}

.message-box {
  position: relative;
  min-height: 1em;
  margin: 1em 0px;
  background-color: #ffe8e6;
  padding: 1em 1.5em;
  line-height: 1.4285em;
  color: rgba(0, 0, 0, 0.87);
  transition: opacity 0.1s ease 0s, color 0.1s ease 0s, background 0.1s ease 0s,
    box-shadow 0.1s ease 0s;
  border-radius: 0.285714rem;
  box-shadow: 0px 0px 0px 1px #e0b4b4 inset, 0px 0px 0px 0px transparent;
}

.message-box .header {
  color: #912d2b;
}

.message-box {
  line-height: 1.4285em;
  color: #9f3a38;
}

.message-box:last-child {
  margin-bottom: 0px;
}

.message-box {
  font-size: 0.8em;
}

.message-box > :first-child {
  margin-top: 0px;
}

.message-box .header {
  display: block;
  font-family: Lato, "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin: -0.14285em 0px 0px;
}

.message-box .list:last-child {
  margin-bottom: 0px;
}

.message-box .list {
  text-align: left;
  padding: 0px;
  opacity: 0.85;
  list-style-position: inside;
  margin: 0.5em 0px 0px;
}

.message-box .list li {
  position: relative;
  margin: 0px 0px 0.3em 1em;
  padding: 0px;
}

ul.list li {
  list-style-position: outside;
}

.message-box .list li:last-child {
  margin-bottom: 0px;
}

.fieldset {
  margin: 10px 0;
}

.fieldset input[type="text"],
.fieldset input[type="email"],
.fieldset select,
.fieldset textarea,
.fieldset .custom-dropdown {
  width: 100% !important;
}

.quote-form-content h4 {
  color: #2c3459;
  font-size: 16px;
  margin: 20px 0px 10px;
}

@media (max-width: 950px) {
  .fieldset {
    margin: 0px;
  }
  .fieldset input {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/*!
 * Gridpak Beta CSS
 *
 * Generator - http://gridpak.com/
 * Created by @erskinedesign
 */

/* Reusable column setup */
.col {
  border: 0px solid rgba(0, 0, 0, 0);
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding-box !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
}

/* 1. 12 Column Grid 0px - 959px 
----------------------------------------------------------------------------- 

    Span 1:    6.5%
    Span 2:    15.0%
    Span 3:    23.5%
    Span 4:    32.0%
    Span 5:    40.5%
    Span 6:    49.0%
    Span 7:    57.5%
    Span 8:    66.0%
    Span 9:    74.5%
    Span 10:    83.0%
    Span 11:    91.5%
    Span 12:    100%

----------------------------------------------------------------------------- */

@media screen and (min-width: 0px) and (max-width: 959px) {
  .col {
    margin-left: 2%;
    padding: 0 1.5%;
  }

  .row .col:first-child {
    margin-left: 0;
  }

  /*
    Add your semantic classnames in alongside their corresponding spans here. e.g.
    
    .span_3,
    .my_semantic_class_name {
        ...
    }
    */

  .span_1 {
    width: 6.5%;
  }
  .span_2 {
    width: 15%;
  }
  .span_3 {
    width: 23.5%;
  }
  .span_4 {
    width: 32%;
  }
  .span_5 {
    width: 40.5%;
  }
  .span_6 {
    width: 49%;
  }
  .span_7 {
    width: 57.5%;
  }
  .span_8 {
    width: 66%;
  }
  .span_9 {
    width: 74.5%;
  }
  .span_10 {
    width: 83%;
  }
  .span_11 {
    width: 91.5%;
  }
  .span_12 {
    margin-left: 0;
    width: 100%;
  }
}

/* 2. 12 Column Grid 960px - Infinity 
----------------------------------------------------------------------------- 

Span 1:    6.5%
Span 2:    15.0%
Span 3:    23.5%
Span 4:    32.0%
Span 5:    40.5%
Span 6:    49.0%
Span 7:    57.5%
Span 8:    66.0%
Span 9:    74.5%
Span 10:    83.0%
Span 11:    91.5%
Span 12:    100%

----------------------------------------------------------------------------- */

@media screen and (min-width: 960px) {
  .col {
    margin-left: 2%;
    padding: 0 1.5%;
  }

  .row .col:first-child {
    margin-left: 0;
  }

  .span_1 {
    width: 6.5%;
  }
  .span_2 {
    width: 15%;
  }
  .span_3 {
    width: 23.5%;
  }
  .span_4 {
    width: 32%;
  }
  .span_5 {
    width: 40.5%;
  }
  .span_6 {
    width: 49%;
  }
  .span_7 {
    width: 57.5%;
  }
  .span_8 {
    width: 66%;
  }
  .span_9 {
    width: 74.5%;
  }
  .span_10 {
    width: 83%;
  }
  .span_11 {
    width: 91.5%;
  }
  .span_12 {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .span_1,
  .span_2,
  .span_3,
  .span_4,
  .span_5,
  .span_6,
  .span_7,
  .span_8,
  .span_9,
  .span_10,
  .span_11,
  .span_12 {
    margin-left: 0;
    width: 100%;
  }
}

/******************************
    Modal Window
*******************************/

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 40000;
  opacity: 0;
  background: rgba(15, 19, 36, 0.73);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 720px;
  min-width: 320px;
  height: auto;
  z-index: 41000;
  visibility: hidden;
  background: #fff;
  padding: 3em;
  color: #2c3459;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.md-show {
  visibility: visible;
}

/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.md-effect .md-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show.md-effect .md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.md-content img {
  width: 100%;
  height: auto;
  display: block;
}

.md-content h2 {
  color: #7dba2f;
  font-size: 32px;
  margin-bottom: 1em;
}

.md-content a {
  margin-top: 1.5em;
  margin-bottom: 1em;
  float: right;
}

@media screen and (max-width: 768px) {
  .md-content img {
    width: 150px;
    margin: 20px auto;
  }

  .md-content a {
    float: left;
  }
}

.main.section-top-space {
  padding-top: 135px;
  padding-bottom: 100px;
}

.login.form {
  max-width: 630px;
  border: 1px solid #ccc;
  margin: 6% auto 2em;
  border-radius: 5px;
  box-sizing: border-box;
}

.cd-form {
  padding: 1em 3em 3em 3em;
}

.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form input[type="password"] {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 0px 16px;
}

.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form input[type="password"],
.cd-form select {
  -moz-appearance: none;
  height: 45px;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  background: transparent none repeat scroll 0% 0%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form input[type="password"]:focus {
  border-color: #2c3459;
}

.cd-form label {
  color: #2c3459;
}

.login.form legend {
  padding: 1em;
  background: #2c3557;
  color: rgb(255, 255, 255);
  font-size: 1.3em;
  text-align: center;
  font-weight: 600;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
}

.fieldset .error {
  padding: 10px 0px 0px;
  display: block;
  color: #cf000f;
}

.fieldset a {
  float: right;
  text-decoration: none;
  color: #2c3459;
}

.fieldset a:hover {
  color: #7dba2f;
}

.message-box.success {
  background: rgba(125, 186, 47, 0.3);
  color: #1a531b;
  box-shadow: 0px 0px 0px 1px #7dba2f inset, 0px 0px 0px 0px transparent;
}

.message-box.success .header {
  color: #1a531b !important;
}

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=2afd5c1a67d20f869304)
 * Config saved to config.json and https://gist.github.com/2afd5c1a67d20f869304
 */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: 0px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}

.panel {
  width: 100%;
}

.panel > .header {
  padding: 1em 0;
  text-align: center;
  background: #2c3557;
  color: #fff;
  cursor: pointer;
  position: relative;
  top: 0px;
  left: 0px;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
}

.panel .header span {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}

.panel {
  margin-top: 10px;
}

.panel:first-child {
  margin-top: 0px;
}
.panel .header h2 {
  font-weight: 400;
}

.panel > .content {
  border: 2px solid #e5e5e5;
  padding: 2em;
  border-top: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
}

.panel > .content .fieldset input[type="text"] {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 0px 16px;
}

.panel > .content .fieldset input[type="text"] {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 0px 16px;
}

.panel > .content .fieldset input[type="text"] {
  -moz-appearance: none;
  height: 45px;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  background: transparent none repeat scroll 0% 0%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.panel > .content select {
  border: 1px solid #ccc;
  border-radius: 2px;
  -moz-appearance: none;
  outline: medium none;
  padding: 0px 16px;
  font-size: 14px;
  height: 45px;
  margin-top: 6px;
  width: 100%;
  background-color: #fff;
  transition: all 0.15s linear 0s;
}
.panel > .content .fieldset label {
  color: #2c3459;
}

.panel > .content .fieldset .form-label {
  display: block;
}
.panel > .content .fieldset input[type="text"]:focus {
  border-color: #2c3459;
}

.panel > .content .fieldset {
  margin: 5px 0px;
}

.panel > .content .fieldset input[type="file"] {
  visibility: hidden;
  width: 1px;
}

.file-label {
  background: #2c3557;
  color: #fff !important;
  padding: 20px;
  margin: 10px 0;
  display: inline-block;
  transition: all 0.3s;
}
.file-label:hover {
  background: rgba(44, 53, 87, 0.8);
  cursor: pointer;
}

.file-label2 {
  background: #2c3557;
  color: #fff !important;
  padding: 5px;
  margin: 10px 0;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 6px;
}
.file-label2:hover {
  background: rgba(44, 53, 87, 0.8);
  cursor: pointer;
}
.file-label i {
  margin-right: 10px;
}

.panel > .content h3 {
  color: #2c3459;
  text-align: center;
  margin: 10px 0;
  position: relative;
}
.side-menu {
  width: 100%;
}

.side-menu .header {
  background: #2c3557;
  padding: 1em;
  text-align: center;
  color: #fff;
}
.side-menu .content {
  border: 2px solid #2c3557;
  padding: 2em;
  border-top: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.side-menu .content ul {
  display: block;
}

.side-menu .content ul li {
  list-style: none;
  display: block;
  margin-bottom: 10px;
  border: 2px solid #2c3557;
  border-radius: 5px;
}

.side-menu .content ul li a {
  text-decoration: none;
  display: block;
  color: #2c3459;
  padding: 10px;
  transition: all 0.3s;
}

.side-menu .content ul li a i {
  margin-right: 1em;
}

.side-menu .content ul li a:hover {
  background: rgba(44, 53, 87, 0.6);
  color: #fff;
}

@media (max-width: 992px) {
  .side-menu {
    margin-top: 1em;
  }
}

.button.button-red {
  border: 1px solid #e74c3c;
  color: #2c3459;
  background: #fdfdfd none repeat;
}

.button.button-red:hover {
  background: #e74c3c;
  color: #fff !important;
  border: 1px solid #e74c3c;
}

.button.button-red:hover i {
  color: #fff;
}

.button.button-green {
  border: 1px solid #1abc9c;
  color: #2c3459;
  background: #fdfdfd;
}

.button.button-green:hover {
  background: #1abc9c;
  color: #fff !important;
  border: 1px solid #1abc9c;
}

.fieldset a {
  width: 100%;
}

.button.button-green:hover i {
  color: #fff;
}

.panel .list {
  display: block;
  width: 100%;
}

.panel .list li.list-item {
  list-style: none;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}

.panel .list li.list-item:last-child {
  border-bottom: none;
}

.panel li.list-item a,
.panel li.list-item a:active {
  color: #2c3458;
  text-decoration: none;
}

.panel .list li.list-item .list-inside {
  padding: 10px 0px 0px;
  color: #555;
}

.panel .list li.list-item .action {
  padding: 5px 0;
  display: block;
}

.panel .list li.list-item .action a {
  color: #00b2b2;
  float: right;
  text-transform: uppercase;
}

.panel .list li.list-item .created-at {
  font-size: 1em;
  font-weight: normal;
  color: rgb(102, 102, 102);
}

nav[role="navigation"] {
  text-align: center;
}

.cd-pagination {
  width: 90%;
  max-width: 768px;
  text-align: center;
}
.cd-pagination li {
  /* hide numbers on small devices */
  display: none;
  margin: 0 0.2em;
  padding: 0;
  font-size: 1em;
}
.cd-pagination li.button {
  /* make sure prev next buttons are visible */
  display: inline-block;
}
.cd-pagination a,
.cd-pagination span {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* use padding and font-size to change buttons size */
  padding: 0.6em 0.8em;
}
.cd-pagination a {
  border: 1px solid #e6e6e6;
  border-radius: 0.25em;
  text-decoration: none;
  color: #555;
  outline: none;
}
.no-touch .cd-pagination a:hover {
  background-color: #f2f2f2;
}
.cd-pagination a:active {
  /* click effect */
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-pagination a.disabled {
  /* button disabled */
  color: rgba(46, 64, 87, 0.4);
  pointer-events: none;
}
.cd-pagination a.disabled::before,
.cd-pagination a.disabled::after {
  opacity: 0.4;
}
.cd-pagination .button:first-of-type a::before {
  content: "\00ab  ";
}
.cd-pagination .button:last-of-type a::after {
  content: " \00bb";
}
.cd-pagination .current {
  /* selected number */
  background-color: #046a9d;
  border-color: #046a9d;
  color: #ffffff;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .cd-pagination li {
    display: inline-block;
  }
}

/* -------------------------------- 

No space - remove distance between list items

-------------------------------- */
.cd-pagination.no-space {
  width: auto;
  max-width: none;
  display: inline-block;
  border-radius: 0.25em;
  border: 1px solid #e6e6e6;
}
.cd-pagination.no-space::after {
  clear: both;
  content: "";
  display: table;
}
.cd-pagination.no-space li {
  margin: 0;
  float: left;
  border-right: 1px solid #e6e6e6;
}
.cd-pagination.no-space li:last-of-type {
  border-right: none;
}
.cd-pagination.no-space a,
.cd-pagination.no-space span {
  float: left;
  border-radius: 0;
  padding: 0.8em 1em;
  border: none;
}
.cd-pagination.no-space li:first-of-type a {
  border-radius: 0.25em 0 0 0.25em;
}
.cd-pagination.no-space li:last-of-type a {
  border-radius: 0 0.25em 0.25em 0;
}

.ui.table .button {
  height: auto;
}

.blog.section-top-space h3 {
  color: #2c3557;
}

.gc-list {
  color: #9498ab;
  margin-left: 1em;
  line-height: 2;
}

section.blog .sidebar .widget-call-to-action p > a {
  color: rgb(254, 254, 254);
  text-decoration: underline;
}

a.button-navy-blue {
  box-sizing: content-box !important;
}

.landing {
  width: 100%;
  height: 100%;
}

.landing .custom-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.85);
  width: 70%;
  padding: 3em;
  box-sizing: border-box !important;
  box-shadow: 8px 4px 4px rgba(0, 0, 0, 0.1);
}

.text-center {
  text-align: center;
  color: #2e3958 !important;
}

/* Basic */

.ui.basic.navy.buttons .button,
.ui.basic.navy.button {
  box-shadow: 0px 0px 0px 1px #a5673f inset !important;
  color: #a5673f !important;
}

.ui.basic.navy.buttons .button:hover,
.ui.basic.navy.button:hover {
  background: transparent !important;
  box-shadow: 0px 0px 0px 1px #975b33 inset !important;
  color: #975b33 !important;
}

.ui.basic.navy.buttons .button:focus,
.ui.basic.navy.button:focus {
  background: transparent !important;
  box-shadow: 0px 0px 0px 1px #90532b inset !important;
  color: #975b33 !important;
}

.ui.basic.navy.buttons .active.button,
.ui.basic.navy.active.button {
  background: transparent !important;
  box-shadow: 0px 0px 0px 1px #995a31 inset !important;
  color: #805031 !important;
}

.ui.basic.navy.buttons .button:active,
.ui.basic.navy.button:active {
  box-shadow: 0px 0px 0px 1px #805031 inset !important;
  color: #805031 !important;
}

.ui.buttons:not(.vertical) > .basic.navy.button:not(:first-child) {
  margin-left: -1px;
}

/* Inverted */

.ui.inverted.navy.buttons .button,
.ui.inverted.navy.button {
  background-color: transparent;
  box-shadow: 0px 0px 0px 2px #2c3557 inset !important;
  color: #2c3557;
}

.ui.inverted.navy.buttons .button:hover,
.ui.inverted.navy.button:hover,
.ui.inverted.navy.buttons .button:focus,
.ui.inverted.navy.button:focus,
.ui.inverted.navy.buttons .button.active,
.ui.inverted.navy.button.active,
.ui.inverted.navy.buttons .button:active,
.ui.inverted.navy.button:active {
  box-shadow: none !important;
  color: #ffffff !important;
}

.ui.inverted.navy.buttons .button:hover,
.ui.inverted.navy.button:hover {
  background-color: #2c3557;
}

.ui.inverted.navy.buttons .button:focus,
.ui.inverted.navy.button:focus {
  background-color: #2c3557;
}

.ui.inverted.navy.buttons .active.button,
.ui.inverted.navy.active.button {
  background-color: #2c3557;
}

.ui.inverted.navy.buttons .button:active,
.ui.inverted.navy.button:active {
  background-color: #2c3557;
}

/* Inverted Basic */

.ui.inverted.navy.basic.buttons .button,
.ui.inverted.navy.buttons .basic.button,
.ui.inverted.navy.basic.button {
  background-color: transparent;
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
  color: #ffffff !important;
}

.ui.inverted.navy.basic.buttons .button:hover,
.ui.inverted.navy.buttons .basic.button:hover,
.ui.inverted.navy.basic.button:hover {
  box-shadow: 0px 0px #2c3557 #2c3557 inset !important;
  color: #2c3557 !important;
}

.ui.inverted.navy.basic.buttons .button:focus,
.ui.inverted.navy.basic.buttons .button:focus,
.ui.inverted.navy.basic.button:focus {
  box-shadow: 0px 0px 0px 2px #2c3557 inset !important;
  color: #2c3557 !important;
}

.ui.inverted.navy.basic.buttons .active.button,
.ui.inverted.navy.buttons .basic.active.button,
.ui.inverted.navy.basic.active.button {
  box-shadow: 0px 0px 0px 2px #2c3557 inset !important;
  color: #2c3557 !important;
}

.ui.inverted.navy.basic.buttons .button:active,
.ui.inverted.navy.buttons .basic.button:active,
.ui.inverted.navy.basic.button:active {
  box-shadow: 0px 0px 0px 2px #2c3557 inset !important;
  color: #2c3557 !important;
}

.custom-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 100%;
  background-color: #2e3958;
  box-shadow: 8px 4px 4px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  padding: 0.5em 2em;
}

.ui.stackable.carousel {
  display: none;
}

@media only screen and (max-width: 768px) {
  .ui.stackable.stacks {
    display: none;
  }

  .landing {
    padding-top: 87px;
    height: auto;
  }

  .ui.stackable.carousel {
    display: block;
  }

  .landing .custom-modal {
    width: 100%;
    height: 100%;
  }

  .landing .custom-modal {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    -webkit-transform: none;
  }
  .custom-footer {
    position: relative;
    left: auto;
    bottom: auto;
  }
}
@media only screen and (max-width: 420px) {
  .landing .custom-modal {
    height: auto;
  }

  .custom-footer {
    font-size: 8px !important;
    height: 45px;
    padding: 0 0.5em;
  }
}
.ui.button {
  height: auto;
}

.ui.navy.buttons .button,
.ui.navy.button {
  background-color: #2c3557;
  color: #ffffff;
  text-shadow: none;
  background-image: none;
}

.ui.navy.button {
  box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}

.ui.navy.buttons .button:hover,
.ui.navy.button:hover {
  background-color: rgba(44, 53, 87, 0.8);
  color: #ffffff;
  text-shadow: none;
}

.ui.navy.buttons .button:focus,
.ui.navy.button:focus {
  background-color: rgba(44, 53, 87, 0.6);
  color: #ffffff;
  text-shadow: none;
}

.ui.navy.buttons .button:active,
.ui.navy.button:active {
  background-color: rgba(44, 53, 87, 0.8);
  color: #ffffff;
  text-shadow: none;
}

.ui.navy.buttons .active.button,
.ui.navy.buttons .active.button:active,
.ui.navy.active.button,
.ui.navy.button .active.button:active {
  background-color: rgba(44, 53, 87, 0.8);
  color: #ffffff;
  text-shadow: none;
}
@media (min-width: 768px) {
  .desktop-hide {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .ui.steps .step > .icon {
    display: none !important;
  }

  header .submenu.dropdown {
    display: none;
  }

  .mobile-hide {
    display: none !important;
  }

  .mobile-show {
    display: block !important;
  }
}

.ui.grid.mobile {
  display: none;
}

@media (max-width: 599px) {
  header .menu .submenu.dropdown {
    display: none;
  }
}

.credits {
  text-align: center;
  margin-top: 2px;
}
@media only screen and (max-width: 1000px) {
  .fixit_header {
    min-height: 80px;
  }
  .fixit_menu_toggle {
    top: 25px;
  }
  .fixit_logo img {
    height: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .fixit_header {
    padding: 15px 20px;
  }
}

@media (min-width: 320px) and (max-width: 769px) {
  .emergency {
    display: none !important;
    visibility: hidden !important;
  }

  .emergency_block {
    display: block;
  }
}

.sigPad {
  width: 404px !important;
}

@media (min-width: 770px) {
  .emergency_block {
    display: none !important;
  }
}

@media (max-width: 770px) {
  .ui.grid.desktop {
    display: none;
  }

  .ui.grid.mobile {
    display: block;
  }

  .ui.grid.mobile a {
    color: white !important;
  }

  .ui.container {
    margin: 0 !important;
  }

  .row {
    margin-left: 15px;
    margin-right: 15px;
  }

  .col-md-8 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sigPad {
    width: 100% !important;
  }

  .pad {
    width: 100% !important;
    height: 100% !important;
  }
}

@media (min-width: 500px) and (max-width: 1000px) {
  .ui.grid.mobile {
    text-align: center;
  }

  .ui.grid.mobile .column {
    text-align: center;
  }

  .ui.grid.mobile .button {
    width: 60% !important;
    display: inline-block;
  }
}

.ui.grid.desktop a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
