/* colors -> https://coolors.co/e54b4b-ebebd3-464655-e4b363-e8e9eb */

@font-face {
  font-family: "PlatformB";
  src: url("../fonts/Platform-Bold.ttf");
}

body {
  background: #F0F8EA;
  font-family: 'PlatformB', sans-serif;
  margin: 0 auto;
  height: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 100%;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

header {
  z-index: 9999;
  background: #00a29e;
  color: #EBEBD3;
  padding: 1em 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}

.fixed-header header {
  background: #00a29e;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.fixed-header header .nav a {
  color: #FFF;
}

.fixed-header header .nav a:hover {
  background: #fff;
  color: #00a29e;
}

header::after {
  content: '';
  clear: both;
  display: block;
}

.title {
  float: left;
  width: 154.5px;
  height: 108px;
}

.logo {
  float: left;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.logo span {
  font-weight: 400;
}

.nav-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 0%;
  background: #00a29e;
  clip-path: circle(0px at top right);
  transition: clip-path ease-in-out 700ms;
/*   display: none; */
}

.site-nav--open {
  clip-path: circle(250% at top right);
/*   display: block; */
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  border-bottom: 1px solid #575766;
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  color: #EBEBD3;
  display: block;
  padding: 2em 4em 2em 1.5em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #E4B363;
  color: #464655;
}

.site-nav--icon {
  display: inline-block;
  font-size: 1.5em;
  margin-right: 1em;
  width: 1.1em;
  text-align: right;
  color: rgba(255,255,255);
}

/* Hide Dropdowns by Default */
.site-nav ul ul {
	display: none;
	position: absolute; 
	top: 60px; /* the height of the main nav */
}
	
/* Display Dropdowns on Hover */
.site-nav ul li:hover > ul {
	display:block;
	top: 30px;
	left: 45px;
}
	
/* Fisrt Tier Dropdown */
.site-nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

.menu-toggle {
  padding: 1em;
  position: absolute;
  top: .5em;
  right: .5em;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  background: #EBEBD3;
  height: 3px;
  width: 1.75em;
  border-radius: 3px;
  transition: all ease-in-out 500ms;
}

.hamburger::before {
  transform: translateY(-6px);
}

.hamburger::after {
  transform: translateY(3px);
}

.open .hamburger {
  transform: rotate(45deg);
}

.open .hamburger::before {
  opacity: 0;
}

.open .hamburger::after {
  transform: translateY(-3px) rotate(-90deg);
}

.hover-text {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}


@media only screen and (max-width:1398px) {

	.footer-social-icon {
		margin-bottom: 20px!important;
	}

	/* Hide Dropdowns by Default */
	.site-nav ul ul {
		display: block;
		position: static; 
		top: 60px; /* the height of the main nav */
	}

  /* Display Dropdowns on Hover */
	.site-nav ul li:hover > ul {
		display:block;
		top: 30px;
		left: 45px;
	}
		
	/* Fisrt Tier Dropdown */
	.site-nav ul ul li {
		width:100%;
		float:none;
		display:block;
		position: relative;
	}

}

@media (min-width: 1399px) { 
  .menu-toggle {
    display: none;
  }
  
  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right;
    clip-path: initial;
    margin-top: 44px;
  }
  
  .site-nav li {
    display: inline-block;
    border: none;
  }
  
  .site-nav a {
    padding: 0;
    margin-left: 3em;
  }
  
  .site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }
  
  .site-nav--icon {
    display: none!important;
  }
  
}

 @media only screen and (max-width:767px) {
.single-cta {
    margin-bottom: 30px;
}
} 