@charset "UTF-8";
/*
	Theme Name: coherent
*/
/*--------------------------------------------------------------
Imports
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,300;1,900&display=swap");
/*--------------------------------------------------------------
Fonts and Colors and Mixins
----------------------------------------------------------------*/
h1 {
  font: bold 1.375rem/1.625rem 'Roboto';
}

@media (min-width: 540px) {
  h1 {
    font: bold 1.875rem/1.875rem 'Roboto';
  }
}

h2 {
  font: bold 1.25rem/1.375rem 'Roboto';
}

@media (min-width: 540px) {
  h2 {
    font: bold 1.375rem/1.625rem 'Roboto';
  }
}

h3, p, a, ol, ul {
  font: 1.05rem/1.45rem 'Open Sans';
}

@media (min-width: 540px) {
  h3, p, a, ol, ul {
    font: 1.25rem/1.725rem 'Roboto';
  }
}

p {
  font: 300 1.05rem/1.45rem 'Open Sans';
}

@media (min-width: 540px) {
  p {
    font: 300 1.25rem/1.725rem 'Open Sans';
  }
}

.black {
  background: #404042;
  color: #ffffff;
}

/*--------------------------------------------------------------
Structure
----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

.fine {
  font-size: .9em;
}

.full {
  width: 100%;
}

.overflow {
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1024px) {
  .container {
    width: 1024px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (min-width: 1440px) {
  .container {
    width: 1440px;
  }
}

.relative {
  position: relative;
}

.none {
  display: none;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.line {
  height: 5px;
}

/*--------------------------------------------------------------
jQuery Ui Widget
----------------------------------------------------------------*/
.ui-tabs, .ui-corner-all, .ui-widget, .ui-widget-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ui-widget.ui-widget-content {
  border: none !important;
}

.ui-widget-header {
  border: none !important;
  background: none !important;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
  color: #767676 !important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: none !important;
  background: none !important;
  color: #2d2d2d !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: none !important;
  background: none !important;
}

.ui-widget * {
  outline: none;
}

​
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited, .ui-state-focus:focus {
  outline: none !important;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #212121 !important;
  position: relative;
}

.ui-state-default a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  display: table;
  width: 0;
  height: 1px;
  background: #A8252C;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.ui-state-active a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: table;
  width: 100%;
  height: 3px;
  background: #A8252C;
}

/*--------------------------------------------------------------
Form
----------------------------------------------------------------*/
#nf-field-4 {
  width: 100% !important;
}

/*--------------------------------------------------------------
Navigation
----------------------------------------------------------------*/
nav {
  position: relative;
  height: 60px;
  width: 100%;
  border-bottom: 3px solid #404042;
}

@media (min-width: 769px) {
  nav {
    height: 90px;
  }
}

nav .logo {
  position: absolute;
  top: 0;
  left: 10px;
  height: 60px;
  z-index: 99999;
}

@media (min-width: 769px) {
  nav .logo {
    height: 70px;
    left: 20px;
  }
}

@media (min-width: 1024px) {
  nav .logo {
    height: 70px;
    left: 0;
  }
}

nav .logo a img {
  height: 50px;
  padding: 5px 0;
}

@media (min-width: 769px) {
  nav .logo a img {
    height: 70px;
    padding: 10px 0;
  }
}

nav .nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

nav .nav .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 80px;
  z-index: 99999;
}

@media (min-width: 769px) {
  nav .nav .hamburger {
    height: 90px;
  }
}

@media (min-width: 840px) {
  nav .nav .hamburger {
    display: none;
  }
}

nav .nav .hamburger .hamNav {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 40px;
  height: 3px;
  background-color: #2d2d2d;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (min-width: 769px) {
  nav .nav .hamburger .hamNav {
    top: 40px;
  }
}

nav .nav .hamburger .hamNav::before {
  top: -10px;
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #2d2d2d;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

nav .nav .hamburger .hamNav::after {
  top: 10px;
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #2d2d2d;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

nav .nav .hamburger .hamClose {
  background-color: transparent;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

nav .nav .hamburger .hamClose::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

nav .nav .hamburger .hamClose::after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

nav .nav .menu-open {
  height: 350px !important;
  top: 63px !important;
  background-color: #404042 !important;
}

@media (min-width: 540px) {
  nav .nav .menu-open {
    height: 375px !important;
  }
}

@media (min-width: 768px) {
  nav .nav .menu-open {
    height: 415px !important;
  }
}

@media (min-width: 769px) {
  nav .nav .menu-open {
    top: 93px !important;
  }
}

nav .nav .menu-primary-container {
  position: absolute;
  top: 0px;
  left: 0;
  height: 0;
  background-color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  z-index: 9999;
}

@media (min-width: 840px) {
  nav .nav .menu-primary-container {
    text-align: right;
    top: 0;
    height: 90px;
  }
}

nav .nav .menu-primary-container ul {
  list-style-type: none;
}

@media (min-width: 840px) {
  nav .nav .menu-primary-container ul {
    display: inline-block;
    margin-top: 10px;
  }
}

nav .nav .menu-primary-container ul li {
  width: 75%;
  margin: auto;
  height: 60px;
  display: block;
  border-bottom: 1px solid #727276;
}

@media (min-width: 840px) {
  nav .nav .menu-primary-container ul li {
    height: 90px;
    width: auto;
    display: inline-block;
    margin-left: 20px;
  }
}

nav .nav .menu-primary-container ul li:last-child {
  background: #727276;
}

@media (min-width: 840px) {
  nav .nav .menu-primary-container ul li:last-child {
    background: none;
  }
  nav .nav .menu-primary-container ul li:last-child a {
    color: #A8252C;
  }
}

nav .nav .menu-primary-container ul li a {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  vertical-align: middle;
  line-height: 60px;
}

@media (min-width: 840px) {
  nav .nav .menu-primary-container ul li a {
    color: #606060;
    display: inline-block;
    font: .75rem/1.375rem 'Roboto';
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  nav .nav .menu-primary-container ul li a:hover {
    color: #2d2d2d;
  }
  nav .nav .menu-primary-container ul li a:hover::after {
    width: 100%;
    left: 0;
  }
  nav .nav .menu-primary-container ul li a::after {
    content: "";
    display: table;
    position: absolute;
    bottom: -35px;
    left: 50%;
    height: 4px;
    width: 0;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background: #A8252C;
  }
}

@media (min-width: 864px) {
  nav .nav .menu-primary-container ul li a {
    font: .75rem/1.375rem 'Roboto';
  }
}

@media (min-width: 940px) {
  nav .nav .menu-primary-container ul li a {
    font: .95rem/1.375rem 'Roboto';
  }
}

@media (min-width: 1024px) {
  nav .nav .menu-primary-container ul li a {
    font: 1rem/1.375rem 'Roboto';
  }
}

@media (min-width: 1440px) {
  nav .nav .menu-primary-container ul li a {
    font: 1.15rem/1.375rem 'Roboto';
  }
}

@media (min-width: 840px) {
  .current_page_item > a {
    color: #2d2d2d !important;
  }
  .current_page_item > a::after {
    width: 100% !important;
    left: 0 !important;
  }
}

/*--------------------------------------------------------------
Footer
----------------------------------------------------------------*/
footer {
  margin-top: 80px;
  background: #404042;
}

@media (min-width: 767px) {
  footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 66% 33%;
        grid-template-columns: 66% 33%;
  }
}

footer .container .leftFooter {
  padding: 40px 0;
  border-bottom: 1px solid #ffffff;
}

@media (min-width: 767px) {
  footer .container .leftFooter {
    border-bottom: none;
    padding: 40px 40px 40px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

footer .container .leftFooter p {
  color: #ffffff;
  font: 300 1.05rem/1.375rem 'Open Sans' !important;
}

footer .container .rightFooter {
  margin: 40px 0;
}

@media (min-width: 767px) {
  footer .container .rightFooter {
    border-left: 1px solid #ffffff;
    padding: 0 0 0 40px;
    margin: 40px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

footer .container .rightFooter .social aside {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 10px;
  padding-left: 0;
}

footer .container .rightFooter .social aside img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

footer .container .rightFooter .social aside img:hover {
  -webkit-filter: invert(19%) sepia(37%) saturate(5392%) hue-rotate(342deg) brightness(85%) contrast(90%);
          filter: invert(19%) sepia(37%) saturate(5392%) hue-rotate(342deg) brightness(85%) contrast(90%);
}

footer .container .rightFooter .everify aside {
  height: 40px;
  padding-top: 20px;
}

footer .container .rightFooter .everify aside img {
  height: 40px !important;
  width: auto;
}

footer .container .rightFooter p a {
  display: block;
  padding-bottom: 10px;
  color: #ffffff;
  font: 300 1.05rem/1.375rem 'Open Sans' !important;
  text-decoration: none;
}

footer .container .rightFooter p a img {
  width: 50%;
}

footer .redBottom {
  background: #A8252C;
  height: 40px;
}

footer .redBottom .container {
  position: relative;
}

footer .redBottom .container a {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  margin: 0;
  padding: 8px 20px;
  text-decoration: none;
  color: #ffffff;
}

footer .redBottom .container p {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  margin: 0;
  padding: 8px 20px;
  color: #ffffff;
}

.Home footer {
  margin-top: 0;
}

/*--------------------------------------------------------------
Page Elements
----------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 350px;
}

@media (min-width: 375px) {
  .hero {
    height: 375px;
  }
}

@media (min-width: 768px) {
  .hero {
    height: 400px;
  }
}

.hero .c2a .content {
  background: -webkit-gradient(linear, left bottom, left top, from(#404042), color-stop(74%, rgba(64, 64, 66, 0.512868)), to(rgba(64, 64, 66, 0)));
  background: linear-gradient(0deg, #404042 0%, rgba(64, 64, 66, 0.512868) 74%, rgba(64, 64, 66, 0) 100%);
  position: absolute;
  width: 100%;
  padding: 60px 0 40px;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #ffffff;
}

.hero .c2a .content a {
  display: inline-block;
  padding: 5px 20px;
  border: 2px solid #ffffff;
  margin-top: 20px;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hero .c2a .content a:hover {
  background: #ffffff;
  color: #404042;
}

.topCompany {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  grid-gap: 40px;
  padding: 20px;
}

.topCompany aside {
  grid-column: span 1;
}

.topCompany aside:last-child {
  grid-column: span 2;
  width: 120px;
}

@media (min-width: 375px) {
  .topCompany aside:last-child {
    width: 210px;
  }
}

@media (min-width: 540px) {
  .topCompany {
    -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
    grid-gap: 50px;
  }
  .topCompany aside {
    grid-column: span 3;
    width: 133px;
  }
}

@media (min-width: 540px) and (min-width: 640px) {
  .topCompany aside {
    width: 210px;
  }
}

@media (min-width: 540px) {
  .topCompany aside:nth-child(n + 3) {
    grid-column: span 2;
    width: auto;
  }
}

@media (min-width: 768px) {
  .topCompany {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
    grid-gap: 50px;
  }
  .topCompany aside {
    grid-column: span 1;
    width: auto;
  }
  .topCompany aside:last-child, .topCompany aside:nth-child(n + 3) {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .topCompany {
    grid-gap: 75px;
  }
}

@media (min-width: 1440px) {
  .topCompany {
    grid-gap: 100px;
  }
}

.homepageContent {
  padding: 80px 0 40px;
}

.homepageContent h1 {
  display: block;
  padding-bottom: 20px;
  position: relative;
  width: 210px;
  margin: 20px auto 40px;
  text-align: center;
}

@media (min-width: 540px) {
  .homepageContent h1 {
    margin: 40px auto;
    text-align: center;
  }
}

.homepageContent h1::before {
  height: 60px;
  width: 60px;
  top: -15px;
  left: -15px;
  content: "";
  position: absolute;
  background-image: url("http://localhost:8888/coherent/wp-content/uploads/2020/11/logoSmall.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 540px) {
  .homepageContent h1::before {
    top: -25px;
    left: -40px;
    height: 80px;
    width: 80px;
  }
}

.homepageContent p {
  margin: 0 auto 20px;
}

@media (min-width: 768px) {
  .homepageContent p {
    width: 75%;
  }
}

.scrollMagic {
  position: static;
}

@media (min-width: 820px) {
  .scrollMagic {
    position: relative;
    height: 260vh;
    padding-bottom: 20vh;
  }
}

.scrollMagic .section {
  margin: 40px 0 80px;
}

@media (min-width: 820px) {
  .scrollMagic .section {
    min-height: 40vh;
    width: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (min-width: 1024px) {
  .scrollMagic .section {
    width: 1024px;
  }
}

@media (min-width: 1440px) {
  .scrollMagic .section {
    width: 1440px;
  }
}

@media (min-width: 820px) {
  .scrollMagic .section .box {
    height: 80vh;
  }
}

.scrollMagic .section .box .scrollSection {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 820px) {
  .scrollMagic .section .box .scrollSection {
    -ms-grid-columns: 2fr 2fr;
        grid-template-columns: 2fr 2fr;
    grid-gap: 50px;
    height: 50vh;
  }
}

.scrollMagic .section .box .scrollSection .image {
  height: 200px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 375px) {
  .scrollMagic .section .box .scrollSection .image {
    height: 250px;
  }
}

@media (min-width: 540px) {
  .scrollMagic .section .box .scrollSection .image {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .scrollMagic .section .box .scrollSection .image {
    height: 400px;
  }
}

@media (min-width: 820px) {
  .scrollMagic .section .box .scrollSection .image {
    height: 450px;
  }
}

.scrollMagic .section .box .scrollSection .image h2 {
  color: #002F5F;
  position: absolute;
  top: -20px;
  left: 30px;
  z-index: 9999999;
}

.scrollMagic .section .box .scrollSection .image h2::before {
  position: absolute;
  top: -10px;
  left: -30px;
  content: "";
  height: 50px;
  width: 50px;
  background-image: url("http://localhost:8888/coherent/wp-content/uploads/2020/11/logoSmall.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 820px) {
  .section-1 {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 820px) {
  .section-2 {
    position: absolute;
    top: 75vh;
    left: 0;
  }
}

@media (min-width: 820px) {
  .section-3 {
    position: absolute;
    top: 150vh;
    left: 0;
  }
}

.contactUs {
  background: #adadad;
  padding: 80px 0;
}

.contactUs .container {
  max-width: 1000px;
  margin: auto;
}

.contactUs .container #nf-form-title-1 h3 {
  font: bold 1.25rem/1.375rem 'Roboto' !important;
}

@media (min-width: 540px) {
  .contactUs .container #nf-form-title-1 h3 {
    font: bold 1.375rem/1.625rem 'Roboto' !important;
  }
}

.contactUs .container .nf-form-fields-required {
  margin: 10px 0;
}

.title h1 {
  margin: 40px 0 20px;
}

.title p {
  margin: 0 auto 20px;
}

#tabs a {
  font: .8rem/1rem 'Open Sans' !important;
}

@media (min-width: 375px) {
  #tabs a {
    font: 1rem/1rem 'Open Sans' !important;
  }
}

@media (min-width: 460px) {
  #tabs a {
    font: 1.05rem/1.45rem 'Open Sans' !important;
  }
}

@media (min-width: 540px) {
  #tabs a {
    font: 1.25rem/1.725rem 'Roboto' !important;
  }
}

#tabs img {
  width: 100%;
  padding-bottom: 30px;
}

.iframe {
  width: 100%;
  height: calc(100vh - 150px);
}

.iframe h1 {
  margin: 40px 0 20px;
  position: absolute;
  top: 5px;
  left: 20px;
  z-index: 9999;
}

.iframe .box {
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 36px);
  height: 110px;
  background: #ffffff;
  border-bottom: 2px solid #404042;
}

@media (min-width: 540px) {
  .iframe .box {
    height: 124px;
  }
}

.iframe iframe {
  width: 100%;
  height: calc(100vh - 150px);
  border: 2px solid #404042;
}

@media (min-width: 768px) {
  .contactContent .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 2fr;
        grid-template-columns: 2fr 2fr;
    grid-gap: 50px;
  }
}

.contactContent .container #nf-form-title-1 {
  display: none;
}

.contactContent .container .maps .tabs {
  margin: 40px 0 0;
}

.contactContent .container .maps .tabs li {
  display: inline-block;
  width: 30%;
}

.contactContent .container .maps .tabs li a {
  text-align: center;
}

@media (min-width: 540px) {
  .contactContent .container .maps .tabs li a {
    font-size: 1rem !important;
  }
}

@media (min-width: 1024px) {
  .contactContent .container .maps .tabs li a {
    font-size: 1.05rem !important;
  }
}
/*# sourceMappingURL=style.css.map */