:root {
     /* Logo & icon */
   --height-logo-header: 120px;
   --height-logo-footer: 80px;
   --height-logo-mobile-header: 68px;
   --height-logo-mobile-footer: 68px;

}

video {
  max-width: 100%;
}
section video, section img {
  border-radius: var(--border-radius);
}
.header-section {
  color: var(--color-font-two);
  background-color: transparent;
  z-index: 9;
  margin-bottom: 4rem;
}
.header-section .ishero a {
  color: var(--color-font-two);
}
.header-section .isblog a {
  color: var(--color-font-one);
}

.hero-wrap {
  overflow: hidden;
  padding-top: 4vh;
  width: calc(100% - .8rem);
  margin-right: auto;
  margin-left: auto;
  padding-right: .4rem;
  padding-left: .4rem;
}
.herotext {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: .4rem;
  padding-left: .4rem;
  text-align: center;
  z-index: 2;
  display: block;
  position: relative;
  min-height: 370px;
}

.hero-wrap h1, .hero-wrap h2 {
  text-shadow: 1px 1px 4px rgba(34,34,34,0.6);
}
.hero-wrap .text-light h1, .hero-wrap .text-light h2 {
  color: #fff;
}
.herotext h1 {
  font-weight: 100;
  line-height: 1.1;
  margin-bottom: 0;
  font-weight: 8rem;
}
.herotext h1 + h2 {
  font-weight: 700;
  margin: 0px;
  font-size: 5rem;
}

.hero-wrap video {
  position: absolute;
  top: 0rem;
  left: 0;
  min-width: 100vw;
  object-fit: cover;
  height: 700px;
}
.container {
    margin-bottom: 4rem;
    background: var(--color-one);
    padding-left: var(--margin-wrap-left-right);
    padding-right: var(--margin-wrap-left-right);
    padding-top: calc(var(--margin-wrap-left-right)/3);
    padding-bottom: calc(var(--margin-wrap-left-right)/3);
    border-radius: var(--border-radius);
  }
.columns {
  display: flex;
  flex-wrap: wrap;
}
.column.col-4 {
  flex: 1 0 calc(33% - 4rem);
  max-width: calc(33% - 4rem);
  margin: 2rem;
}  
.column.col-6 {
  flex: 1 0 50%;
  max-width: 50%;
}  
.feature-icon {
  height: 18rem;
  text-align: center;
}
.feature-icon #svg_icon {
  max-height: 10rem;
  margin-top: 0;
}
.feature-icon h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.8);
}
.feature-content {
  font-size: 1.6rem;
}
.contact_form {
  background: linear-gradient(to right, rgba(89, 90, 150, 0.2) 0%, rgba(89, 90, 150, 0.8) 30%, rgb(89, 90, 150) 100%), url('/assets/img/bg_contact.jpg');
  background-size: cover;
  background-position: center;
}

@media (max-width: 480px) {
  .header-checkbox:checked ~ nav {
    background-color: var(--color-font-two); 
  }
  .header-section a {
    color: var(--color-font-one) !important;
  }
  .header-nav svg {
    fill: var(--color-font-two);
  }
  .header-toggle .bar {
    background-color: var(--color-font-two);
  }
  .hero-section {
    margin-bottom: 4rem;
  }
  .hero-wrap video {
    height: 674px;
  }
  .column.col-4 {
    flex: 1 0 calc(50% - 3rem);
    max-width: calc(50% - 3rem);
    margin: 1.5rem;
  } 
  .column.col-md-12 {
    flex: 1 0 100%;
    max-width: 100%;
  } 
}