/* -----------------------------------------------

Stylesheet: Main Stylesheet

------------------------------------------------ */


/* --------------------------------

STYLE SET 1: GLOBAL & GENERAL

-------------------------------- */

html {
  background: #333333;
}

body {
    font-family: 'Arial';
    color: #333;
    background: #fefefe;
    font-family: "Lexend", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
}

main {
    margin: 0;
    padding: 0;
  }

.container {
    padding: 0 4rem;
    box-sizing: content-box;
    margin: 0 auto;
}

/* @media screen and (max-width: 39.9375rem) {
  .container {
    padding: 0 2rem;
  }
} */

.container-full {
    max-width: 100%;
    width: 100%;
}

.container-wide {
    max-width: 1732px;
}

.container-regular {
    max-width: 1457px;
}

.container-thin {
    max-width: 1076px;
}

.container-tiny {
    max-width: 986px;
}

.sticky.is-anchored,
.sticky.is-stuck {
    z-index: 999;
}

/***- ADMIN BAR STICKY FIX -***/
@media screen and (min-width: 655px) and (max-width: 782px) {
    .admin-bar header.header .sticky.is-stuck {
        margin-top: 42px!important;
    }
}
@media screen and (min-width: 783px) {
    .admin-bar header.header .sticky.is-stuck {
        margin-top: 32px!important;
    }
}

/* fix image under footer bug */
body > img {
  display: none!important;
}

/* --------------------------------

STYLE SET 2: NAVIGATION MENUS

-------------------------------- */


/* -------------------------
   MAIN NAV - DESKTOP
------------------------- */

header.header .sticky.is-stuck,
header.header .sticky.is-anchored {
    z-index: 999;
}

.nav-bar {
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, .08);
    -moz-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, .08);
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, .08);
    padding: 1.5rem;
}

.nav-bar .logo img {
    height: 50px;
    margin: 5px 0;
}

.nav-bar .menu li a {
    font-weight: 600;
    color: #323232;
}
.nav-bar .menu li a:hover {
    color: #000000;
}
.nav-bar .menu .active a {
    color: #000000;
    background: none;
    opacity: 1;
}

/*  nav-menu-with-cta.php */
.nav-bar .button {
  margin: 0 0 0 1rem;
}
@media screen and (max-width: 380px) {
  .nav-bar .button {
    display: none;
  }
}


/* dropdown animation */
.js-dropdown-active {
    animation-fill-mode: both;
    animation-name: dropdown-fade-in;
    animation-duration: .3s;
    /* position: relative; */
}

@keyframes dropdown-fade-in {
    from {opacity: 0;top:90%;}
    to {opacity: 1;top: 100%;}
}

/* Dropdown */
.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
  padding-right: 1rem;
}
.dropdown.menu>li.menu-item.is-dropdown-submenu-parent>a:after,
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a:after {
 border:inset 4px;
 border-color:#333 transparent transparent;
 transition:.2s ease-in-out all;
 border-radius:3px;
 margin-top:-2px
}


/* -------------------------
   MAIN NAV - MOBILE
------------------------- */

#trigger-overlay {

   margin: 0;
   display: inline-block;

}

.menu-icon:after {
  background: #000;
-webkit-box-shadow: 0 7px 0 #000,0 14px 0 #000;
box-shadow: 0 7px 0 #000, 0 14px 0 #000;
}
.menu-icon:hover:after {
  background: #000;
-webkit-box-shadow: 0 7px 0 #000,0 14px 0 #000;
box-shadow: 0 7px 0 #000, 0 14px 0 #000;
}

.sticky.is-stuck .menu-icon:after {
  background: #000;
  box-shadow: 0 7px 0 #000, 0 14px 0 #000;
}
.sticky.is-stuck .menu-icon:hover:after {
   background:#000;
   box-shadow:0 7px 0 #000, 0 14px 0 #000;
  }

/* Overlay style */
.mobile-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #111;
  z-index: 1200;
}

/* Overlay closing cross */
.mobile-nav .overlay-close {
  width: 30px;
  height: 30px;
  font-size: 30px;
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 39px;
  overflow: hidden;
  border: none;
  outline: none;
  z-index: 100;
  transition: color ease .4s;
  border: 2px solid #F3F4F9;
  border-radius: 50%;
}
.mobile-nav .overlay-close .close-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mobile-nav .overlay-close .close-button polygon {
  fill: #ffffff;
}
.admin-bar .mobile-nav .overlay-close {
    top: 90px;
}

.mobile-nav .overlay-close:focus,
.mobile-nav .overlay-close:hover {
  color: #fff;
  border-color: #fff;
}

.mobile-nav ul {
  text-align: center;
  position: relative;
  font-size: 1em;
  z-index: 2;
  
}

.mobile-nav li a {
    color: rgba(255, 255, 255, .7);
    line-height: 2em;
    display: inline-block;
    padding: .7rem 2rem;
}
.mobile-nav .menu .active > a {
    background: transparent;
    color: #fff;
}

.mobile-nav .submenu li a {
    font-size: .9em;
}

.mobile-nav .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a:after {
  border-color: #fff transparent transparent;
  border-width: 6px;
  transition: .3s ease all;
  position: static;
  display: inline-block;
  margin-left: 1rem;
  font-size: .5rem;
  color: #fff;
  vertical-align: middle;
  position: absolute;
  left: auto;
  right: .8rem;
  top: 50%;
  margin-top: 0;
}
.mobile-nav .accordion-menu .is-accordion-submenu-parent[aria-expanded="true"] > a::after {
  margin-top: -6px;
}

.mobile-nav li a:hover {
    color: #ffffff;
}

.mobile-nav .menu .current_page_item > a {
    color: #ffffff;
}

.mobile-nav ul.submenu {
    z-index: 9;
    background: #333333;
}

.responsive-nav {
    overflow: auto;
    background: none;
}

/* .mobile-nav .responsive-nav > .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.mobile-nav ul.accordion-menu > li {
    -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;

} */

.mobile-nav ul.accordion-menu li {
  display: block;
  min-height: 60px;
}

.mobile-nav nav {
    text-align: center;
    position: relative;
    height: 100%;
    padding: 15% 0;
    font-size:1.5em;
  }


/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

/* .overlay-hugeinc nav {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.overlay-hugeinc nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
} */

@media screen and (max-height: 30.5em) {
  .mobile-nav ul li {
    min-height: 34px;
  }
}

.mobile-nav .menu.medium-horizontal > li {
  display:block;
}



/* --------------------------------

STYLE SET 3: CONTENT TYPES

-------------------------------- */



/* -------------------------
 CONTENT - HERO 
------------------------- */
#hero {
  height: 40vh;
  background: #3C96BE;
  background: linear-gradient(131deg, rgba(60, 150, 190, 1) 29%, rgba(181, 233, 255, 1) 100%);
}
#hero .container,
#hero .grid-y {
  height: 100%;
}

/* -------------------------
 CONTENT - PAGE HEADERS 
------------------------- */
.page-header {
  background: #ffd3d3;
  padding: 4rem 0;
}


/* -------------------------
 CONTENT - SECTIONS 
------------------------- */

main > section {
  margin: 6rem 0;
}



/* -------------------------
   CONTENT - Lists
------------------------- */


/* ul {
    list-style: none;
    margin: 0;
}
ul li {
    position: relative;
    padding-left: 1rem;
}
ul li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #111;
} */


/* -------------------------
   CONTENT - ACCORDION
------------------------- */
.accordion {
  background: none;
}
.accordion > li {
  padding: 0;
  border-bottom: 3px #eee solid;
}
.accordion > li:before {
  display: none;
}
.accordion > li .accordion-title {
  border: 0;
  background: none;
  color: #000;
  font-size: 1.3rem;
}
.accordion > li:last-child .accordion-title {
  border: none;
}
/* .accordion > li .accordion-title:before {
  content: '+';
} */

.accordion > li .accordion-content {
  border: 0;
  background: none;
}
.accordion > li .accordion-content:last-child {
  border: none;
}


.accordion > li.is-active .accordion-content {
  border: none;
}







/* -------------------------
 CONTENT - TABS
------------------------- */

.tabs {
  border: 0;
  background: none;
}
.tabs-title {
  float: none;
  display: inline-block;
  padding-left: 0;
}
.tabs-title:before {
  display: none;
}
.tabs-title > a {
  background: #eee;
}
.tabs-title > a:hover {
  background: #ddd;
}

.tabs-content {
  border: none;
  background: none;
}

.tabs-content p:last-child {
  margin: 0;
}



/* -------------------------
 CONTENT - COMMENTS
------------------------- */
#comments {
  margin-top: 6rem;
}


/* --------------------------------

STYLE SET 4: TITLES

-------------------------------- */

h1, h2, h3, h4, h5 {
  font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  margin-bottom: 0px;
  line-height: 1;
  color: #000;
}
.alt h1, .alt h2, .alt h3, .alt h4, .alt h5,
h1.alt, h2.alt, h3.alt, h4.alt, h5.alt {
    color: #fff;
}

h2.section-title {
  margin-bottom: 20px;
}

@media screen and (min-width: 40em) {

    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    h4 {
        font-size: 1.4rem;
    }
    h5 {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 39.9375em) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 1.1rem;
    }
}




/* --------------------------------

STYLE SET 5: BUTTONS

-------------------------------- */

/* -------------------------
   LINKS - DEFAULT
------------------------- */
a {
    transition: .2s ease-in-out all;
    color: #9d98df;
}
a:focus, a:active, a:hover {
    color: #7676bf;
}
/* -- ios fix -- */
a[href^=tel] {
   text-decoration:inherit;
   color: inherit;
}


/* -------------------------
   BUTTONS
------------------------- */

a.button,
button.button,
input.button {
  font-weight: 300;
  padding: .8em 1.5em;
  background: #99E6D8;
  border-radius: 3px;
  border: 0;
  color: #fff;
  font-family: 'Arial';
}
a.button:hover,
button.button:hover,
input.button:hover,
a.button:focus,
button.button:focus,
input.button:focus {
  background: #79EAD6;
  border: 0;
  outline: none;
}


/* CTA */
a.button.cta,
button.button.cta,
input.button.cta {
  background: #1AC18E;
  /* padding: 1em 2em; */
  color: #fff;
}
a.button.cta:hover,
button.button.cta:hover,
input.button.cta:hover,
a.button.cta:focus,
button.button.cta:focus,
input.button.cta:focus {
  background: #3BE7BC;
  color: #fff;
}

a.button.hero {
  padding: 1em 2em;
  font-size: 1.05rem;
}




/* --------------------------------

STYLE SET 6: PAGE STYLING

--------------------------------*/

/* -------------------------
   PAGE - HOME
------------------------- */
/* -------------------------
   PAGE - ABOUT
------------------------- */
/* -------------------------
   PAGE - CONTACT
------------------------- */
/* -------------------------
   PAGE - BLOG
------------------------- */
.blog-inner > article {
  margin-bottom: 3rem;
}


/* -------------------------
   PAGE - 404
------------------------- */
.error404 .content-not-found {
  min-height: calc(60vh - 200px);
  padding: 2rem 0;
}
.error404 .content-not-found h1 {
  margin-bottom: 1rem;
}
.error404 .content-not-found h1 span {
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  font-size: 3em;
  background: #000000;
  /* background: rgb(2,0,36);
  background: linear-gradient(56deg, rgba(2,0,36,1) 0%, rgba(9,11,122,1) 27%, rgba(5,104,184,1) 100%);  */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error404 .content-not-found p {
  opacity: .8;
}



/* --------------------------------

STYLE SET 7: FORMS

-------------------------------- */



/* -------------------------
   FORMS - BASE STYLING
------------------------- */

/* .gform_wrapper form .gform_fields {} */
.gform_wrapper form .gform_fields .gfield {
    margin-bottom: 1rem;
}
.gform_wrapper form .gform_fields .gfield input,
.gform_wrapper form .gform_fields .gfield textarea {
    padding: .7rem!important;
    height: auto;
    border: none;
    background: #f5f7f7;
    box-shadow: none;
    /* box-shadow: 0px 1px 8px 0 rgb(0 0 0 / 10%), 0 4px 10px 0 rgb(0 0 0 / 9%); */
    transition: .2s all ease-in-out;
    border-radius:6px;
    margin: 0;
}
.gform_wrapper form .gform_fields .gfield input:focus,
.gform_wrapper form .gform_fields .gfield textarea:focus {
    height: auto;
    border: none;
    background-color: #eff2f2;
    box-shadow: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color:#666666;
    opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color:#666666;
    opacity: 1;
}
input::placeholder,
textarea::placeholder {
    color:#666666;
    opacity: 1;
}



/* --------------------------------

STYLE SET 8: SIDEBARS

-------------------------------- */


/* -------------------------
   SIDEBAR - DEFAULT
------------------------- */

.sidebar li {
  list-style: none;
}

.widget ul {
  margin: 0;
}



/* --------------------------------

STYLE SET 9: FOOTER

-------------------------------- */

.footer {
  /* margin-top: 6rem; */
}

.footer p {
  margin:0;
}


/* lower footer */
.lower-footer {
    font-size: 1.1rem;
    padding: 2rem;
    background: #333;
}

.lower-footer nav ul li a {
    color: #f4f4f4;
    background: none;
}
.lower-footer nav ul li.active a {
    background: none;
    color: #f4f4f4;
}
/* .lower-footer nav ul li.current_page_item a {} */
.lower-footer nav ul li a:hover {
    color: #fff;
}
.copyright, .s1-footer-sig a span {
    color: #f4f4f4
}


/* sig */
.s1-footer-sig {
    width: 50%;
    float: right;
    text-align: right;
}
.s1-footer-sig a {
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}
.s1-footer-sig a:hover {
    text-decoration: none;
}
.s1-footer-sig .s1-footer-sig-main {
    color: #999999;
    text-decoration: none;
    vertical-align: middle;
    padding-right: 25px;
}
.s1-footer-sig .s1-footer-sig-main img {
    display: inline-block;
    vertical-align: middle;
    max-width: 25px;
    margin-left: 13px;
}





/* --------------------------------

STYLE SET 10: WP JOINTS STYLING

-------------------------------- */

.page-title .vcard {
  border: 0px;
  padding: 0px;
}

.byline {
  color: #999;
}

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%;
}
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center;
}

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0;
}
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #14679e;
    color: #fefefe;
}

body#tinymce {
  margin: 20px;
}


/* --------------------------------

STYLE SET 11: EXTENSION STYLES

-------------------------------- */


/* -------------------------
   EXTENSION - GOOGLE MAPS
------------------------- */

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