@charset "utf-8";
/* CSS Document */

/*
Theme Name: FlatHost - Responsive Hosting Template
Version: 2.0 - Cleaned & Corrected
Author: Surjith SM
Author URI: http://themeforest.net/user/surjithctly
*/

/******************  Table of Contents  *****************************
1. GLOBAL STYLES & CSS VARIABLES
2. HEADER & HERO
3. CANVAS & ANIMATIONS
4. NAVIGATION
5. MAIN FEATURES
6. MORE FEATURES & LAYOUTS
7. TESTIMONIALS
8. PARTNERS MARQUEE
9. PLANS AND PRICING
10. COMPARE PLANS
11. DOMAIN SEARCH
12. CONTACT
13. FOOTER
14. MODAL SIGNIN / SIGNUP
15. BLOG
16. SCROLL TO TOP
17. MEDIA QUERIES
*/

/* ===============================
   1. GLOBAL STYLES & CSS VARIABLES
================================ */

:root {
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  --card-shadow: 0 6px 24px rgba(0,0,0,0.06);
  --card-radius: 20px;
  --primary-green: #2cc76a;
  --primary-green-hover: #22bb5f;
  --primary-blue: #2db6d8;
  --primary-red: #f45c57;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  overflow-x: clip;
}

a {
  color: var(--primary-green);
}

a:hover,
a:focus {
  color: var(--primary-green-hover);
}

h1, h2, h3, h4 {
  font-weight: bold;
}

p {
  color: #70747A;
}

/* ===============================
   2. HEADER & HERO
================================ */

.masthead {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.jumbotron {
  position: relative;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  height: 630px;
  overflow: hidden;
}

.hero-unit {
  background: none;
  text-align: center;
  padding: 60px;
  padding-top: 130px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
}

.hero-unit h1 {
  padding-bottom: 15px;
  font-weight: bold;
}

.hero-unit h3 {
  font-weight: normal;
  padding-bottom: 15px;
  line-height: 1.5;
  color: #D5D5D5;
}

/* Slide variations */
.slide2 {
  background: none;
  text-align: center;
  padding-top: 90px;
}

.slide2 h1 {
  font-size: 50px;
  font-weight: bold;
}

.slide3 {
  background: none;
  text-align: left;
  padding-top: 100px;
}

.slide3 h1 {
  font-size: 50px;
  padding-top: 90px;
  font-weight: bold;
}

.slide3 h3 {
  font-size: 20px;
  padding-right: 20px;
  color: #D5D5D5;
  line-height: 1.5;
}

/* ===============================
   3. CANVAS & ANIMATIONS
================================ */

canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
}

.center-text {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.fade-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-90px);
  font-size: 14px;
  letter-spacing: 1px;
  color: #cccccc;
  opacity: 0;
  transition: opacity 1.2s ease;
  white-space: nowrap;
  min-height: 20px;
}

.fade-text.final {
  transition: opacity 3.5s ease;
}

.fade-text-white {
  position: relative;
  color: #000;
  font-size: 16px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 40px;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Scroll mouse indicator */
.mouse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  margin: 16px auto 0;
  width: 22px;
  height: 36px;
  border: 2px solid #aaa;
  border-radius: 12px;
}

.mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 6px;
  background: #aaa;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 0;
  }
}

/* ===============================
   4. NAVIGATION
================================ */

.navbar {
  min-height: 80px;
  background-color: #0d0d0d;
  border: none;
}

.navbar-header {
  height: 80px;
}

.navbar-brand {
  height: 80px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 42px;
  margin: 0;
}

.navbar-collapse {
  border: none;
  box-shadow: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav > li > a {
  line-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: #ffffff;
  background: transparent;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
  opacity: 1;
}

.navbar-nav > .active > a {
  color: var(--primary-green);
  background: transparent;
}

.navbar-nav > li > .navbar-btn {
  margin-left: 15px;
  height: 44px;
  line-height: 44px;
  padding: 0 22px;
}

.navbar .btn-success {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  box-shadow: none;
}

.navbar .btn-success:hover {
  background-color: var(--primary-green);
  color: #fff;
}

.navbar li.dropdown ul {
  border-radius: 3px;
  box-shadow: none;
}

#logo {
  position: relative;
  /* Note: Add background-image property if needed */
  /* background: url(path/to/logo.png) 0 0 no-repeat; */
}

/* ===============================
   5. BUTTONS
================================ */

.btn-lg {
  font-size: 18px;
  padding: 20px 50px;
  margin: 5px 10px;
}

.btn-success {
  background-color: var(--primary-green);
  background-image: none;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background-color: var(--primary-green-hover);
  color: #FFF;
}

.btn-primary {
  background-color: var(--primary-blue);
  background-image: none;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #209ab8;
  color: #FFF;
}

.btn-danger {
  background-color: var(--primary-red);
  background-image: none;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: #eb534e;
  color: #FFF;
}

/* ===============================
   6. CONTENT & FEATURES
================================ */

.content {
  background: #ffffff;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.mainFeatures {
  margin-top: 50px;
}

.img-thumbnail {
  border: 0;
  padding: 20px 0;
  box-shadow: none;
  text-align: center;
}

.img-thumbnail h4,
.img-thumbnail p {
  text-align: center;
}

/* Page Headers */
.PageHead {
  margin-top: 50px;
}

.PageHead h1,
.PageHead h3 {
  text-align: center;
}

.PageHead h3 {
  color: #9AA5AA;
  font-weight: normal;
  margin-bottom: 20px;
  margin-top: 10px;
}

/* Features List */
.features {
  margin: 25px 0;
  float: left;
}

.features img {
  float: left;
  padding: 10px 20px 0 0;
}

.features p {
  padding-left: 80px;
}

/* Features Layout */
.FeatLayout {
  margin-top: 50px;
}

.FeatLayout .Featimg {
  text-align: center;
}

.lead {
  color: #666;
}

.ticklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticklist li {
  width: 50%;
  float: left;
  padding: 5px 5px 5px 30px;
  box-sizing: border-box;
  background: url(../images/tick.png) no-repeat left;
}

/* ===============================
   7. TESTIMONIALS
================================ */

.Testimonials {
  margin-top: 40px;
}

.Testimonials p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: #70747A;
  text-align: center;
}

.Testimonials .img-thumbnail {
  border: 0;
  padding: 20px 0;
  box-shadow: none;
  text-align: center;
  background: transparent;
}

.Testimonials .img-thumbnail img {
  border-radius: 100%;
}

.Testimonials .img-thumbnail h5 {
  text-align: center;
  color: #646464;
  font-weight: bold;
  margin: 18px 0;
}

.Testimonials .tm-data {
  transition: all 0.6s ease;
  text-align: center;
}

@media (min-width: 767px) {
  .Testimonials .tm-data:hover {
    transform: scale(1.1);
    z-index: 2;
  }
}

/* ===============================
   8. PARTNERS MARQUEE
================================ */

.partners-marquee {
  background: #fff;
}

.marquee-outer {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 24px 0;
  margin: 40px auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  background: #fff;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
  will-change: transform;
}

.marquee-outer:hover .marquee-inner {
  animation-duration: 9s;
}

.marquee-logo {
  flex: 0 0 auto;
}

.marquee-logo img {
  height: 80px;
  max-width: 160px;
  object-fit: contain;
  transition: transform .3s ease;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
}

.marquee-logo img:hover {
  transform: scale(1.1);
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.PartnersList {
  text-align: center;
  margin-top: 30px;
}

/* ===============================
   9. PLANS AND PRICING
================================ */

.PlanPricing {
  margin-top: 100px;
  transition: all 0.6s ease;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

@media (min-width: 767px) {
  .PlanPricing:hover {
    transform: scale(1.1);
    z-index: 2;
  }
}

.PlanPricing .planName {
  background: #202b34;
  padding-top: 50px;
  padding-bottom: 10px;
  text-align: center;
}

.PlanPricing .price {
  background: var(--primary-green);
  padding: 5px;
  color: #FFF;
  font-size: 42px;
  border-radius: 100%;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 2.2;
  margin: -107px auto 10px;
  position: relative;
}

.PlanPricing.Recommended .price {
  background: var(--primary-red);
}

.PlanPricing .planName h3 {
  color: #FFF;
  text-align: center;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}

.PlanPricing .planName p {
  color: #999;
  text-align: center;
}

.PlanPricing .planFeatures {
  background: #e8e9ea;
  text-align: center;
  padding: 10px;
}

.PlanPricing .planFeatures ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.PlanPricing .planFeatures ul li {
  padding: 13px 0;
  list-style: none;
}

.PlanPricing p {
  margin: 0;
}

.PlanPricing .btn {
  width: 100%;
  border-radius: 0;
  margin: 0;
  box-sizing: border-box;
}

.pricing-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* ===============================
   10. COMPARE PLANS
================================ */

.ComparePlans {
  margin-top: 20px;
}

.ComparePlans .planFeatures {
  text-align: center;
  padding: 10px;
}

.ComparePlans .CompareList .planFeatures {
  text-align: right;
}

.ComparePlans .planFeatures ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ComparePlans .planFeatures ul li {
  padding: 13px 0;
  list-style: none;
}

.ComparePlans .planHead1 {
  height: 60px;
  background: #FFF;
}

.ComparePlans .planHead2 {
  height: 60px;
  background: var(--primary-green);
}

.ComparePlans .planHead3 {
  height: 60px;
  background: var(--primary-red);
}

.ComparePlans .planHead2 h3,
.ComparePlans .planHead3 h3 {
  color: #FFF;
  text-align: center;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  padding-top: 10px;
  line-height: 1.8;
}

.ComparePlans .pricing1 .planFeatures {
  border-right: solid 1px var(--primary-green);
  border-left: solid 1px var(--primary-green);
}

.ComparePlans .pricing2 .planFeatures {
  border-right: solid 1px var(--primary-red);
  border-left: solid 1px var(--primary-red);
}

.ComparePlans .btn {
  width: 100%;
  border-radius: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ===============================
   11. DOMAIN SEARCH
================================ */

#domain {
  position: relative;
  background: var(--card-bg);
  margin: 80px auto;
  padding: 50px 40px;
  max-width: 900px;
  border-radius: var(--card-radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  text-align: center;
}

#domain h1 {
  color: #1f2933;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}

#domain h3 {
  color: #6b7280;
  margin-bottom: 30px;
  font-weight: 400;
}

#domain form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#domain .input-group {
  display: flex;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 25px auto;
}

#domain input[type="text"] {
  flex: 1;
  height: 48px;
  border-radius: 12px 0 0 12px;
  border: 1px solid #d1d5db;
  border-right: none;
  padding: 0 18px;
  font-size: 16px;
}

#domain select {
  width: 90px;
  height: 48px;
  border-radius: 0 12px 12px 0;
  border: 1px solid #d1d5db;
  padding: 0 18px;
  font-size: 16px;
  background: #f9fafb;
  cursor: pointer;
}

#domain input:focus,
#domain select:focus {
  outline: none;
  border-color: var(--primary-green);
}

#domain .submitbtn {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#domain .submitbtn .btn {
  background: var(--primary-green);
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

#domain .submitbtn .btn:hover {
  background: var(--primary-green-hover);
}

/* GTLD Specific Styles */
.gtlds h3 {
  color: #B30028;
}

.gtlds .steptitle,
.gtlds hr {
  border-bottom: 1px solid #B30028;
}

.gtlds .checkbox > span {
  color: #222;
}

.gtlds small {
  color: #444;
}

.gtlds #somedomain {
  border: 1px solid #B30028;
  padding: 5px 10px;
  width: 70%;
}

.gtlds .email {
  padding: 5px 10px;
  margin: 2px;
  border: 1px solid #BBB;
  font-size: 15px;
}

.gtlds .email.invalid {
  border: 1px solid red;
}

.button {
  border: 1px solid #444;
  padding: 5px 10px;
  margin: 2px;
  background-color: white;
  font-size: 15px;
  text-decoration: none;
  color: #444;
  border-radius: 3px;
}

.button:hover {
  background-color: #444;
  color: white;
  text-decoration: none;
}

.gtlds .alert {
  border: 1px solid white;
  padding: 5px 10px;
  margin: 2px;
}

.gtlds h5 {
  color: #222;
}

.gtlds .sort {
  border-radius: 2px;
}

.gtlds .sort.active {
  background-color: #B30028;
  color: white;
}

.gtlds .toggleAll {
  font-weight: bold;
}

.gtlds .accordion > dt {
  background: rgb(221,221,221);
}

.msg {
  padding: 15px 30px;
  margin: 15px;
  overflow: hidden;
}

.msg.error {
  border: 3px solid #E7B1AE;
  background-color: #FACDCB;
}

.msg.success {
  border: 3px solid #A0E4A0;
  background-color: #C8FFC8;
}

.iconSuccess {
  margin-right: 10px;
}

.iconError {
  margin-right: 10px;
}

/* ===============================
   12. CONTACT
================================ */

.ContactUs {
  margin-top: 25px;
}

.ContactUs input[type=text],
.ContactUs input[type=email] {
  height: 50px;
}

.ContactUs textarea {
  height: 150px;
}

.ContactUs .btn {
  width: 100%;
  margin: 5px 0;
  box-sizing: border-box;
}

address {
  color: #70747A;
}

.mapwrap iframe {
  margin-bottom: 20px;
}

/* ===============================
   13. FOOTER
================================ */

.footer {
  position: relative;
  color: #fff;
  background: url(../images/header-bg.jpg) no-repeat #232a31;
  background-size: cover;
  overflow: hidden;
  margin-top: 40px;
}

.footer h1,
.footer h3 {
  color: #FFF;
}

.footer img {
  max-width: 100%;
  height: auto;
}

.footerlinks {
  margin: 20px 0;
}

.footerlinks p {
  color: #68737b;
  text-transform: uppercase;
  padding-top: 15px;
}

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

.footerlinks ul li {
  color: #FFF;
  padding: 2px 0;
}

.footerlinks ul li a {
  color: #FFF;
}

.copyright {
  margin: 15px 0;
  text-align: center;
  color: #9aa5aa;
}

/* ===============================
   14. MODAL SIGNIN / SIGNUP
================================ */

.modal-header {
  padding: 10px 30px;
  padding-right: 15px;
}

.modal-body {
  padding: 30px;
  padding-bottom: 15px;
}

.LoginSignup input[type="text"],
.LoginSignup input[type="password"] {
  font-size: 14px;
  border-radius: 3px;
  font-weight: normal;
}

.LoginSignup .btn {
  width: 100%;
  margin: 0;
}

/* ===============================
   15. BLOG
================================ */

.blogpost {
  margin-bottom: 30px;
}

.blogpost img {
  padding: 10px 0;
  max-width: 100%;
  min-width: 100%;
}

.blog h1.title {
  font-size: 30px;
  line-height: 32px;
}

.blog h3.subtitle {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  padding-bottom: 5px;
  margin-top: 0;
  color: #5F5F5F;
}

.bloglist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bloglist li {
  padding: 5px 0;
  color: #666;
}

.bloglist li a {
  color: #666;
}

.commentform input {
  height: 40px;
}

.commentform textarea {
  height: 150px;
}

.commentform p {
  text-align: right;
}

.commentform .btn {
  margin-right: 0;
}

.media-list p {
  margin-bottom: 30px;
}

.media-list .timestamp {
  font-size: 12px;
  color: #999;
  display: block;
  padding: 5px 0;
}

/* ===============================
   16. SCROLL TO TOP
================================ */

.scrollup {
  width: 40px;
  height: 40px;
  opacity: 0.4;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  text-indent: -9999px;
  background: url('../images/icon_top.png') no-repeat;
}

/* ===============================
   17. MEDIA QUERIES
================================ */

@media (max-width: 979px) {
  .hero-unit {
    padding: 190px 0;
    padding-bottom: 0;
  }
  
  .hero-unit h1 {
    font-size: 50px;
  }
  
  .hero-unit h3 {
    font-size: 18px;
    line-height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: normal;
  }
  
  .slide2,
  .slide3 {
    padding-top: 150px;
  }
  
  .slide3 h1,
  .slide2 h1 {
    font-size: 34px;
  }
  
  .slide3 h3,
  .slide2 h3 {
    font-size: 18px;
    line-height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: normal;
  }
}

@media (max-width: 767px) {
  #domain {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  #domain .submitbtn {
    flex-direction: column;
  }
  
  .hero-unit {
    padding: 100px 0;
    padding-bottom: 0;
  }
  
  .hero-unit h1 {
    font-size: 36px;
  }
  
  .flex-direction-nav {
    display: none;
  }
  
  .PageHead h3,
  .FeatLayout h3 {
    font-size: 20px;
    line-height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .domain {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  
  .domain .input-append input.span11 {
    width: 83%;
  }
  
  .footer {
    padding: 20px 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .domain .input-append input.span11 {
    width: 74%;
  }
  
  .ticklist li {
    width: 100%;
  }
  
  .modal {
    width: auto;
  }
}

/* ===============================
   UNIFIED CARD STYLES
================================ */

.logo-carousel,
.logoslider,
.partner-logos,
.SharedHosting,
.domain {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.navbar-nav > .active > a,
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:focus {
  background: transparent !important;
  box-shadow: none !important;
}

/* ACTIVE menu item = groen */
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover,
.navbar-nav > li.active > a:focus {
  color: #2cc76a !important;
  background: transparent !important;
  text-shadow: none !important;
}

/* standaard menu */
.navbar-nav > li > a {
  color: #bbb;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* hover = FEL & oplichtend */
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(255,255,255,0.9);
}

/* ACTIVE = groen (ook bij hover) */
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover,
.navbar-nav > li.active > a:focus {
  color: #2cc76a !important;
  text-shadow: 0 0 12px rgba(44,199,106,0.9);
  background: transparent !important;
}

/* normaal menu */
.navbar-nav > li > a {
  color: #bbb;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* hover = fel wit */
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(255,255,255,0.9);
  background: transparent !important;
}

/* ACTIVE (HOME) standaard groen */
.navbar-nav > .active > a {
  color: #2cc76a !important;
  background: transparent !important;
  text-shadow: none;
}

/* ACTIVE + HOVER = OPLICHTEN */
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:focus {
  color: #2cc76a !important;
  text-shadow: 0 0 14px rgba(44,199,106,1);
  background: transparent !important;
}

/* Bootstrap navbar offset uitschakelen */
body {
  padding-top: 0 !important;
}

/* hero altijd volledig scherm */
.masthead {
  height: 100vh;
}
