* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Questrial', sans-serif;
}

/* HEADINGS */

h1, p {
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
p{
  font-weight: 400;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  color: #000;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* BASIC SETUP */

.page-wrapper {
  width: 100%;
  height: auto;
}

.nav-wrapper {
  width: 100%;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1;
}

.grad-bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  	-webkit-animation: gradbar 15s ease infinite;
	-moz-animation: gradbar 15s ease infinite;
	animation: gradbar 15s ease infinite;
}

/* NAVIGATION */

.navbar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  height: 50px;
  overflow: hidden;
}

.navbar img {
  height: 16px;
  width: auto;
  justify-self: start;
  margin-left: 20px;
}

.navbar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  justify-self: end;
  
}

.nav-item a {
  color: #022b3a;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.nav-item a:hover {
  color: #09bc8a;
}

/* FOOTER */
/* The footer is fixed to the bottom of the page */

.footer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  padding: 50px;
  color: #d7e2e9;
  background-color: #087e8b ;





  /* position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #022b3a;
  text-align: center;
  background: #E1F3FC; */
}

.footer > *{
  flex: 1 100%;
}
.footer-left{
  margin-bottom: 1.25em;
  margin-bottom: 2em;
}
.footer-left img{
  width: 50%;
}
.footer h2{
  font-weight: 600;
  font-size: 17px;
}
.footer ul{
  list-style: none;
  padding-left: 0;
}
.footer li{
  line-height: 2em;
}
.footer a{
  text-decoration: none;
}
.footer-right{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
}

.footer-right > *{
  flex: 1 50%;
  margin-right: 1.25em;
}

.box a{
  color: #d7e2e9;
}
.footer-bottom{
  text-align: center;
  color: #d7e2e9;
  padding-top: 50px;
}
.footer-left p{
  padding-right: 20%;
  color: #d7e2e9;
}
.socials a{
  background: #364a62;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}
.socials a i{
  color: #e7f2f4;
  padding: 10px 12px;
  font-size: 20px;
}
@media screen and (min-width: 600px){
  .footer-right > *{
    flex: 1;
  }
  .footer-left{
    flex: 1 0px;
  }
  .footer-right{
    flex: 2 0px;
  }
}

@media (max-width: 600px){
  .footer{
    padding: 15px;
  }
}
/* SECTIONS */

.headline {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  /* background: #E1F3FC;  */
  /* background: radial-gradient(circle, rgba(185,174,238,1) 0%, rgba(148,187,233,1) 100%); */
  /* background-image: ; */
  /* color: #012B3D !important; */
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* maybe remove the next few */
  text-transform: uppercase;
  backface-visibility: hidden;
}

.headline h1, p{
  color: #022b3a !important
}

.headline h1{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 5px;
}

.headline p{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3.4px;
  margin: 10px auto 10px auto;
}
.headline-about {
  width: 100%;
  height: 25vh;
  min-height: 250px;
  /* background: #E1F3FC;  */
  /* background: radial-gradient(circle, rgba(185,174,238,1) 0%, rgba(148,187,233,1) 100%); */
  /* background-image: ; */
  /* color: #012B3D !important; */
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* maybe remove the next few */
  text-transform: uppercase;
  backface-visibility: hidden;
}

.headline-about h1, p{
  color: #022b3a !important
}

.headline-about h1{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 5px;
}

.headline-about p{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3.4px;
  margin: 10px auto 10px auto;
}

.mt-2 {
  margin-top: 1rem;
  margin-left: 15px;
  margin-right: 15px;
}
.lg-p {
  font-size: 1.2rem !important;
}
.lg-p-about{
  font-size: 1.2rem !important;
  letter-spacing: 3.4px;
  padding-bottom: 38px;
}

.fullscreen-video-wrap{
  position: absolute;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: 60%;
  z-index: -2;
  overflow: hidden;
}
.fullscreen-video-wrap video{
  min-width: 100%;
  min-height: 100%;
  
}

.header-overlay{
  height: 76%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #23D5AB;
  z-index: -1;
  opacity: 0.4;
}
.header-overlay-about{
  height: 70%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #23D5AB;
  z-index: -1;
  opacity: 0.4;
}
.button {
  background-color: #e1f3fcb9;
  border: none;
  color: #022b3a;
  padding: 2px 15px;
  /* width: 10%; */
  text-align: center;
  /* text-decoration: none; */
  display: inline-block;
  /* justify-content: center; */
  font-size: 1rem;
  margin: 2px auto 2px auto;
  transition: all 1.15s;
  cursor: pointer;
 border-radius:25px;
}
.contact-link{
  font-style: none;
  color:#022b3a ;
}

.button:hover {
  transform: scale(1.02);
  background-color: #f1f1f1;
 box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.features {
  width: 100%;
  height: auto;
  /* background-color: #b5e1f8; */
  background-color: #e1f3fc;

  display: flex;
  padding: 50px 20px;
  justify-content: space-around;
  z-index: 1;
  color: #f1f1f1;
}

.feature-container {
  flex-basis: 30%;
  margin-top: 10px;
}

.feature-container-about{
  flex-basis: 100%;
  margin-top: 10px;
}
.last-container{
  padding-bottom: 25px;
}

.feature-container p {
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
}

.feature-container img {
  width: 100%;
  height: 50%;
  margin-bottom: 15px;
}



/* MOBILE MENU & ANIMATION */

.menu-toggle .bar{
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  margin-right: 25px;
  display: none;
}

.menu-toggle:hover{
  cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2){
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1){
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3){
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

/* Media Queries */

  /* Mobile Devices - Phones/Tablets */

@media only screen and (max-width: 720px) { 
  .features {
    flex-direction: column;
    padding: 50px;
  }

  
  /* MOBILE HEADINGS */
  
  h1 {
    font-size: 1.9rem;
  }
  
  h2 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.8rem;
  }
  .lg-p {
  font-size: 1rem !important;
}
  /* MOBILE NAVIGATION */
     
  .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 55px;
    background-color: #E1F3FC;
    width: 100%;
    height: calc(100vh - 55px);
    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
  }
  
  .navbar li {
    padding: 15px;
  }
  
  .navbar li:first-child {
    margin-top: 50px;
  }
  
  .navbar li a {
    font-size: 1rem;
  }
   
  .menu-toggle, .bar {
    display: block;
    cursor: pointer;
  }
  
  .mobile-nav {
  transform: translate(0%)!important;
}
  
  /* SECTIONS */
  
  .headline {
    height: 20vh;
    /* background: #E1F3FC; */

    /* background: radial-gradient(circle, rgba(185,174,238,1) 0%, rgba(148,187,233,1) 100%); */
  }
    
  .feature-container p {
    margin-bottom: 25px;
  }
  
  .feature-container {
    margin-top: 20px;
  }
  
  .feature-container:nth-child(2) {
    order: -1;
  }
  
  /* SEARCH DISABLED ON MOBILE */
  
  #search-icon {
    display: none;
  }
  
  .search-input {
  display: none;
 }
  /* Careers */
  header.masthead {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 3rem;
    background: #a3bded;
    background: -webkit-linear-gradient(-20deg, #a3bded 0%, #6991c7 100%);
    background: -moz-linear-gradient(-20deg, #a3bded 0%, #6991c7 100%);
    background: linear-gradient(-20deg, #a3bded 0%, #6991c7 100%);
  }
  
  header.masthead .site-heading {
    padding: 100px 0 50px;
    color: #fff;
  }
  
  header.masthead .site-heading h1 {
    font-size: 2.3rem;
  }
  
  header.masthead .site-heading .subheading {
    display: block;
    font-weight: 300;
    margin: 0.625rem 0 0;
    color: #fff;
  }
  
  ul.job-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  ul.job-list > li.job-preview {
    background: #fff;
    border: 1px solid #d7e2e9;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    border-radius: 0.4rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    float: left;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  
  ul.job-list > li.job-preview:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  }
  
  .job-title {
    margin-top: 0.6rem;
  }
  
  .company {
    color: #96a4b1;
  }
  
  .job-preview .btn {
    margin-top: 1.1rem;
  }
  
  .btn-apply {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1px;
    background-color: transparent;
    color:  #393a5f;
    border: 2px solid #393a5f;
    padding: 0.6rem 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
  }
  
  .btn-apply:hover {
    background-color: #393a5f;
    color:  #fff;
    border: 2px solid #393a5f;
  }
  
  @media (max-width: 575px) {
    .job-preview .content {
      width: 100%;
    }
  }
  
}