/*------------------------------------*\
    STYLESHEET INDEX:
    01: RESET
    02: GLOBAL
    03: TYPOGRAPHY
    04: WPCF7
    05: FLEX
    06: MISC
\*------------------------------------*/
/*------------------------------------*\
  01: RESET
\*------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
b {
  font-weight: 400;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
/*------------------------------------*\
  02: GLOBAL
\*------------------------------------*/
body.page-template-full {
  height: 100vh;
  background: #252525;
}
*, *:after, *:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html:not(.no-js) .wow {
  visibility: hidden;
}
a {
  font-weight: 400;
  color: inherit;
  text-decoration: none;
}
input, textarea, select {
  border-radius: 0px;
  -webkit-appearance: none;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
}
/*------------------------------------*\
03: TYPOGRAPHY
\*------------------------------------*/
/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
  font-family: 'Lato';
}
/* base font size */
:root {
  font-size: 18px;
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h1, h2, h3 {
  line-height: 1.2;
}
ul, ol {
  font-size: 1.1rem;
  line-height: 2;
}
ul li {
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: .5rem;
}
p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 300;
}
/* screen < mobile */
@media only screen and (max-width: 767px) {
  :root {
      font-size: 3.5vw;
  }
}
/* mobile < screen < tablet */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
      font-size: 1.75vw;
  }
}
/* tablet < screen < laptop */
@media (min-width: 992px) and (max-width: 1199px) {
   :root {
      font-size: 1.5vw;
  }
}
/*------------------------------------*\
  04: WPCF7
\*------------------------------------*/
.form-wrap input:not([type="submit"]), 
.form-wrap textarea {
  width: 100%;
}
/* AJAX load animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.form-wrap .ajax-loader {
  display: none !important;
}
.form-wrap .wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
  margin: -1rem 0 1rem;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 10px;
  background: #FFF;
  line-height: 1.5;
  color: #FFF;
  background: #d92128;
  display: none;
}
.form-wrap .wpcf7-form-control-wrap input:focus+.wpcf7-not-valid-tip {
  display: none;
}
.form-wrap div.wpcf7-response-wrap {
  position: absolute;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: none;
  background: #252525;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.form-wrap div.wpcf7-response-wrap .button {
  position: relative;
  display: inline-block;
  color: #FFF;
  font-family: 'Lato';
  font-weight: 400;
  margin-top: 1rem;
  padding: .5rem 1rem;
  border: 1px solid #FFF;
  background: transparent;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.form-wrap div.wpcf7-response-wrap .button:hover {
  background: #FFB600;
}
.form-wrap form.sent div.wpcf7-response-wrap {
  background: rgba(57, 143, 20, 0.9);
}
.form-wrap form.invalid div.wpcf7-response-wrap {
  background: rgba(217, 33, 40, 0.9);
}
.form-wrap form.failed div.wpcf7-response-wrap {
  background: rgba(217, 33, 40, 0.9);
  display: none;
}
.form-wrap div.wpcf7-response-output {
  height: auto !important;
  margin: 0;
  padding: 10px 15px;
  border: none;
  color: #000;
  font-weight: 400;
  font-size: 1.4rem;
  background: none;
  line-height: 1.2;
  font-family: 'Lato';
}
.wpcf7 img.ajax-loader {
  display: block;
  margin: 0 0 0 auto;
}
.loading {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 0.25rem solid rgba(0, 0, 0, 0.2);
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  border-top-color: black;
  animation: cssLoader 1s infinite linear;
}
@keyframes cssLoader {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
/*============================ */
/* 2019 Form Standardization:
============================== */
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  font-family: 'Arial';
  color: #000;
  font-size: 1rem;
  padding: .5rem;
  margin-bottom: .6rem;
  border: 1px solid #ccc;
}
.wpcf7 input[type="button"],
.wpcf7 input[type="submit"] {
  display: flex;
  margin: 0 auto;
  width: max-content;
  padding: .5rem 2.5rem;
  border: 1px solid grey;
  background: grey;
  color: #fff;
  cursor: pointer;
}
.wpcf7 input[type="button"]:hover,
.wpcf7 input[type="submit"]:hover {
  background: darkgrey;
  border-color: darkgrey;
}
.wpcf7 label {
  font-family: 'Arial';
  line-height: 2;
  padding: .5rem;
  cursor: pointer;
}
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-right: .5rem;
}
.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.wpcf7 .wpcf7-list-item {
  display: flex;
  margin: 0 0 .5rem 0;
  width: 33%;
}
.wpcf7 .wpcf7-list-item label {
  cursor: pointer;
  display: flex;
  padding: 0 .5rem .5rem 0;
  margin-bottom: 0;
  line-height: 1.4;
  font-family: 'Arial';
  font-size: 1rem;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  width: 100%;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
  font-style: italic;
  font-family: 'Lato';
  font-weight: 300;
  font-size: 1.1rem;
}
.wpcf7 ::-webkit-input-placeholder {
  color: #777;
}
.wpcf7 ::-moz-placeholder {
  color: #777;
}
.wpcf7 :-ms-input-placeholder {
  color: #777;
}
.wpcf7 :-moz-placeholder {
  color: #777;
}
@media only screen and (max-width: 767px) {
  .wpcf7 .wpcf7-list-item {
    width: 50%;
  }
}
/*------------------------------------*\
05: FLEX CONTAINERS
\*------------------------------------*/
.flex-container {
  display: flex;
  margin: auto;
}
.flex-column {
  flex-flow: column;
}
.flex-container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 1200px) {
  .flex-container {
    width: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  .flex-container {
    width: 960px;
  }
}
@media only screen and (max-width: 991px) {
  .flex-container {
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .flex-container {
    width: 540px;
  }
}
@media only screen and (max-width: 576px) {
  .flex-container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
/*------------------------------------*\
06: MISC
\*------------------------------------*/
.slick-slide {
  outline: none;
}
i.fas, i.fal, i.far {
  font-family: 'Font Awesome 5 Pro';
}
i.fab {
  font-family: 'Font Awesome 5 Brands';
}