/* FRONTEND CSS
*********************************************/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
 }

body {
    background: #F4F1ED;
}

html, body {
    font-family: 'Acherus Grotesque', Arial, Helvetica, sans-serif;
}

body.menu-overlay-open {
    overflow: hidden !important;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.cf:before, .cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
}

.page span {
    color: inherit !important;
    font-weight: inherit !important;
}

::-moz-selection { 
  background: #006A3F; 
  color: #F4F1ED; 
}

::selection { 
  background: #006A3F;
  color: #F4F1ED; 
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* FADER
*********************************************/

#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: #006A3F;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
  }

  #fader:before {
    content: 'fade'
  }

  @keyframes fade-out {
    from { opacity: 1 }
    to { opacity: 0 }
  }

  @keyframes fade-in {
    from { opacity: 0 }
    to { opacity: 1 }
  }

  #fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
  }

  #fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
  }





/* HEADER
*********************************************/

header.header-nav {
    width: 100%;
    padding: 0;
    z-index: 9;
    position: relative;
    height: 90px;
}

.menu-nav {
    width: 100%;
    height: 90px;
}

header.header-nav .logo {
    float: left;
    height: 90px;
}

.header-button {
    position: absolute;
    top: 20px;
    right: 80px;
}

.menu-button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    z-index: 90;
    justify-content: space-between;
    text-align: center;
    text-decoration: none !important;
    vertical-align: middle;
    padding: 0px 13px;
    transition: all .2s ease;
}

.menu-button:hover {
    box-shadow: none;
}

.menu-button span {
    width: 20px;
    height: 2px;
    background-color: #006A3F;
    display: block;
    position: absolute;
    transition: all 0.6s ease;
    top: 14px;
}

.menu-button span:nth-of-type(2) {
    top: 22px;
}

.menu-button span:nth-of-type(3) {
    top: 30px;
    width: 10px;
}

.menu-button.active span {
    background-color: #F4F1ED;
}

.menu-button.active span:nth-of-type(1) {
    transform: translateY(0.5rem) rotate(-45deg);
}

.menu-button.active span:nth-of-type(2) {
    transform: translateX(1.5rem);
    opacity: 0;
}

.menu-button.active span:nth-of-type(3) {
    transform: translateY(-0.5rem) rotate(45deg);
    width: 20px;
}

/* MAIN MENU
*********************************************/


header.header-nav  .menu ul.nav>li {
    margin: 0px;
}
header.header-nav  .menu ul.nav>li>a {
    font-size: 15px;
    color: #006A3F;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    text-decoration: none;
    margin: 0 15px;
    line-height: 1;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.home header.header-nav  .menu ul.nav>li>a {
    color: #006A3F;
}
.home header.header-nav  .menu ul.nav>li.active>a {
    border-bottom: 2px solid #006A3F;
}
header.header-nav  .menu ul.nav>li.active>a {
    border-bottom: 2px solid #006A3F;
}

header.header-nav  .menu ul.nav>li>a, .overlay .menu ul li a {
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

header.header-nav  .main-menu ul.nav>li>a::before, .overlay .menu ul li a::before{
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    content: '';
}

header.header-nav  .main-menu ul.nav>li>a:hover::before, .overlay .menu ul li a:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
header.header-nav  .main-menu ul.nav>li>a::before ,.overlay .menu ul li a::before{
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}


/* BUTTONS
*********************************************/

.btn {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    transition: all .2s ease;
    font-family: 'Bona Nova', Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    align-items: center;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-flex;
    justify-content: space-between;
    text-align: center;
    text-decoration: none !important;
    vertical-align: middle;
    padding: 10px 20px;
    border: solid 2px transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #070336 inset;
}

.btn:hover {
    border: solid 2px transparent;
    box-shadow: none;
}

.btn:after {
    content: "";
    margin-left: 10px;
    position: relative;
    right: 0;
    width: 6px;
    height: 6px;
    background: #E86F58;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn em {
    margin-left: 5px;
}

.btn.btn-gradient-1 {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #AC2D4D, #E83A5A);
}

.btn.btn-gradient-1:after {
    background: #E83A5A;
}

.btn.btn-gradient-2 {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #E83A5A, #E86F58);
}

.btn.btn-gradient-2:after {
    background: #E86F58;
}

.btn.btn-gradient-3 {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #E86F58, #E7AE46);
}

.btn.btn-gradient-3:after {
    background: #E7AE46;
}

.btn.btn-gradient-4 {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #EAAF45, #A3BE3A);
}

.btn.btn-gradient-4:after {
    background: #A3BE3A;a
}

.btn.btn-gradient-5 {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #A3BE3A, #5C9343);
}

.btn.btn-gradient-5:after {
    background: #5C9343;
}

.btn:hover:after {
    right: -5px;
    background: #fff;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .25);
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .5);
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: #034A47;
    border-color: #034A47;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .5);
}



/* SECTIONS
*********************************************/



/* BACKGROUNDS
*********************************************/


/* IMAGES
*********************************************/

.pos-image img {
    width: 100%;
    height: inherit;
}

/* SLICK SLIDER
*********************************************/

.slick-slide img {
  display: block;
  min-width: 100%;
  width: 100%;
  height: auto;
}

.slick-slider .slide-arrow {
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.slick-slider:hover .slide-arrow {
    opacity: 1;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 5;
}
.slide-arrow:focus {
   outline: none;
}
.prev-arrow {
  left: 30px;
  width: 40px;
    height: 40px;
  background-image: url(../images/prev-arrow.svg);
  background-size: 10px 21px;
  background-repeat: no-repeat;
  background-position: 15px 9px;
  background-color: transparent;
  border: 0px;
}
.next-arrow {
 
    right: 30px;
    width: 40px;
    height: 40px;
    background-image: url(../images/next-arrow.svg);
    background-size: 10px 21px;
    background-repeat: no-repeat;
    background-position: 15px 9px;
    background-color: transparent;
    border: 0px;
}
/* HOME
*********************************************/



/* CALL TO ACTION TILE
*********************************************/

.cta-tile {
    background: #19535F;
    color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


/* CASE STUIDES
*********************************************/

.case-study-text {
    margin-left: -100px;
}


.pos-award-logo {
    display: inline-block;
    width: 70px;
    margin-right: 5px;
}

.pos-award-text {
    display: inline-block;
    font-family: 'Acherus Grotesque' Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #006A3F;
    letter-spacing: 0;
    border: 1px solid #006a3f;
    padding: 5px 10px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
    border-radius: 20px;
}

/* SCROLL TO NEXT SECTION
*********************************************/

a.scroll {
    margin-top: 10px;
}

/* TABLES
*********************************************/


table {
    border: solid 1px #19535F;
    border-collapse: collapse;
    border-spacing: 0;
}
table thead th {
    background-color: #19535F;
    border: solid 1px #19535F;
    color: #ffffff;
    padding: 10px;
    text-align: left;
}
table thead th p {
    color: #ffffff;
    margin-bottom: 0px;
}
table tbody td {
    border: solid 1px #19535F;
    padding: 10px;
    background: rgba(255, 255, 255, .2);
}

.yoo-zoo td, .yoo-zoo th {
    padding: 10px !important;
	vertical-align: top;
}

.yoo-zoo tr.white {
	background: #e17656;
}

.yoo-zoo tr.white td p {
	color: #ffffff !important;
	text-transform: uppercase;
}

.yoo-zoo td p, .yoo-zoo th p {
    margin: 0px !important;
}

/* FOOTER
*********************************************/

footer {
 
}
.footer {
}

footer .footer .footer-menu ul {
    list-style: none;
}

footer .footer .footer-menu li:first-of-type{
    margin: 0px 0px 10px 0px;
}

footer .footer .footer-menu p, footer .footer .footer-menu a,  footer .footer .footer-menu span.separator {
    font-size: 14px;
    color: #006A3F;
}

footer .footer .footer-menu a {
    color: #006A3F;
    position: relative;
} 

footer .footer .footer-menu a:hover {
    color: #006A3F;
} 

footer .footer .footer-menu a::before {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #006A3F;
    top: 100%;
    left: 0;
    pointer-events: none;
}

footer .footer .footer-menu a::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    content: '';
}
footer .footer .footer-menu a:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
footer .footer .footer-menu a:hover {
  color: #006A3F; 
}

.footer .footer-connect a, .footer .footer-contact a {
    position: relative;
    padding-left: 25px;
}

footer .footer .footer-menu li::after{
    content: "";
    margin: 2px 3px 2px 7px;
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #006A3F;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

footer .footer .footer-menu li:last-of-type::after{
    display: none;
}

.footer-bottom {
    display: inline-block;
}
.footer .back-to-top {
    text-align: right;
}
a.back-to-top-link {
    align-items: center;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 80px;
    justify-content: space-between;
    line-height: 80px;
    width: 80px;
    height: 80px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    vertical-align: middle;
    position: relative;
    border: solid 2px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #E86F58, #E7AE46);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #070336 inset;
}

a.back-to-top-link:hover {
    box-shadow: none;
}

a.back-to-top-link:after {
    content: url(../images/return-arrow.svg);
    position: absolute;
    top: 25px;
    left: 32px;
}

.footer-cta a {
    position: relative;
    color: #F4F1ED;
    -webkit-text-fill-color: #F4F1ED; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #006A3F;
}

.footer-cta a::before {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #006A3F;
    top: 90%;
    left: 0;
    pointer-events: none;
}

.footer-cta a::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    content: '';
}
 
.footer-cta a:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

/* OVERLAY MENU
*********************************************/

.menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
    background: #006A3F;
    visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
    overflow-y: scroll;
   top: 0; right: 0; bottom: 0; left: 0; }


.menu-overlay::-webkit-scrollbar {
    display: none;
}

.menu-overlay.open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
}

.menu-overlay .nav li { 
    list-style: none;
    text-align: left;
    position: relative;
    animation: fadeOut 0.5s ease-in-out 0.2s forwards;
}

.menu-overlay.open .nav li {
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
    transition: all 0.8s ease-in-out;
    opacity: 0;
}

.menu-overlay.open .nav li:nth-of-type(1n)  {
    animation-delay: 0.3s;
}

.menu-overlay.open .nav li:nth-of-type(2n)  {
    animation-delay: 0.35s;
}

.menu-overlay.open .nav li:nth-of-type(3n)  {
    animation-delay: 0.4s;
}

.menu-overlay.open .nav li:nth-of-type(4n)  {
    animation-delay: 0.45s;
}

.menu-overlay.open .nav li:nth-of-type(5n)  {
    animation-delay: 0.5s;
}

.menu-overlay.open .nav li:nth-of-type(6n)  {
    animation-delay: 0.55s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

.menu-overlay ul {
    display: block;
}

.menu-overlay li {
    max-width: 0px;
}

.menu-overlay li a {
    list-style: none;
    line-height: 1.3;
	padding: 0px 0px 0px 0px;
    font-family: 'Acherus Grotesque', Arial, Helvetica, sans-serif;
	font-weight: normal;
    letter-spacing: 3px;
    font-weight: 900;
    font-size: 55px;
    color: #F4F1ED;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.menu-overlay li a:hover {
    color: #F4F1ED;
}

.menu-overlay li.active a {
    border-bottom: 3px solid #F4F1ED;
}

.menu-overlay li a::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #F4F1ED;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.menu-overlay li a::after {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    content: '';
}
 
.menu-overlay li a:hover::after {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
  
/* ACCORDIONS
*********************************************/

.panel-heading:after {
    content: "";
    position: absolute;
    top: 30px;
    right: 15px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-size: 28px;
    color: #006A3F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear;
  }
  .panel-heading[aria-expanded="false"]:after {
    content: "\002b";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  
  .panel-heading[aria-expanded="true"]:after {
    content: "\2212";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  



/* PAGINATION
*********************************************/

.zoo-pagination a:hover, .zoo-pagination span {
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
    float: left;
    background: #034A47;
    border: 0px;
    color: #fff;
    font-family: 'Clarity City';
    font-size: 15px;
    text-align: center;
    line-height: 22px;
}

.zoo-pagination a {
    text-decoration: none;
    text-align: center;
    padding: 15px 20px;
    float: left;
    color: #034A47;
    border: 0px;
    background: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: 'Clarity City';
    font-size: 15px;
    text-align: center;
    line-height: 22px;
}

/* SKIP TO CONTENT
*********************************************/

#skippy {
    display: block;
    padding: 1em;
    color: #F4F1ED ;
    background: #006A3F;
    outline: 0;
}

.skippy {
	width: 100%;
	min-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

#skippy .skiplink-text {
    padding: .5em;
    outline: 1px dotted;
}


#bfElementGroupNoWrap92, #bfElementGroupNoWrap90,#bfElementGroupNoWrap88 {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

#bfElementGroupNoWrap92 input, #bfElementGroupNoWrap90 input, #bfElementGroupNoWrap88 input {
    flex: auto;
    margin: 5px 0 0 ;
}

#bfElementGroupNoWrap92 label, #bfElementGroupNoWrap90 label, #bfElementGroupNoWrap88 label {
    flex: auto;
    margin: 0px !important;
}

#bfElementGroupNoWrap92::before, #bfElementGroupNoWrap90::before, #bfElementGroupNoWrap88::before {
    content: "Low";
    position: absolute;
    top: 25px;
    left: 5px;
    color: #19535F;
    font-weight: 600;
}

#bfElementGroupNoWrap92::after, #bfElementGroupNoWrap90::after, #bfElementGroupNoWrap88::after {
    content: "High";
    position: absolute;
    top: 25px;
    right: 12px;
    color: #19535F;
    font-weight: 600;
}

/* CUSTOM CURSOR
*********************************************/

.lg-cursor-pointer:nth-child(1):before{
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: solid 2px #006A3F;
    margin: -20px 0 0 -20px;
}

.lg-cursor--hover .lg-cursor-pointer:nth-child(1):before {
    transform: scale(1.3);
}

.lg-cursor-pointer:nth-child(2):before {
    width: 6px;
    height: 6px;
    background-color: #006A3F;
    margin: -3px 0 0 -3px;
}

.lg-cursor--hover .lg-cursor-pointer:nth-child(2):before {
    transform: scale(1.2);
}

.menu-overlay-open .lg-cursor-pointer:nth-child(1):before{
    border: solid 2px #F4F1ED;
}

.menu-overlay-open .lg-cursor-pointer:nth-child(2):before {
    background-color: #F4F1ED;
}


/* RESPONSIVE VIDEOS
*********************************************/

.pos-video{
    overflow:hidden;
    padding-bottom:56.25% !important;
    position:relative;
    height:0;
}
.pos-video iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/* GALLERY
*********************************************/

.carousel-item img {
    width: 100%;
    height: inherit;
}

/* MODAL VIDEOS
*********************************************/

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
    position:relative;
    padding:0px;
}

.close {
    position:absolutAe;
    right:-30px;
    top:0;
    z-index:999;
    font-size:2rem;
    font-weight: normal;
    color:#fff;
    opacity:1;
}

/* CONTACT 
*********************************************/

.right-column {
}

.right-column p {
    margin-bottom: 15px;
}

a.link_email, a.link_phone {
    position: relative;
    text-decoration: none;
    margin-left: 25px;
}

a.link_email::before, a.link_phone::before {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #006A3F;
    top: 100%;
    left: 0;
    pointer-events: none;
}

a.link_email::before, a.link_phone::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    content: '';
}
a.link_email:hover::before, a.link_phone:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
a.link_email:hover, a.link_phone:hover {
  color: #006A3F; 
}

a.link_email:after {
    content: url(../images/email.svg);
    position: absolute;
    display: inline-block;
    top: 3px;
    left: -25px;
}

a.link_phone:after {
    content: url(../images/phone.svg);
    position: absolute;
    display: inline-block;
    top: 3px;
    left: -25px;
}