html, body {
  position: relative;
  height: 100%;
  font-family: Manrope, 'Noto Sans SC';
}

@media (min-width: 1900px) {
  html, body {
    font-size: 18px;
  }
}

@media (min-width: 1281px) {
  html, body {
    font-size: 14px;
  }
}

@media (max-width: 1280px) {
  html, body {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  html, body {
    font-size: 12px;
  }
}

section {
  position: relative;
}


/* container and carousel */
.container-fluid {
  margin-right: 6rem;
  margin-left: 6rem;
}

@media (max-width: 1024px) {
  .container-fluid {
    margin-right: 4rem;
    margin-left: 4rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 4rem;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 575px) {
  .container-fluid {
    margin-right: 0;
    margin-left: 0;
  }
}


/* utilities */
.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* fonts */
p.h1 {
  line-height: 1.25;
}
p.h2 {
  line-height: 1.25;
}
p.h5 {
  font-weight: 300;
  line-height: 1.8;
}
a.scroll {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  width: 3rem;
  height: 3rem;
  margin-left: -1.5rem;
  background: url("../images/arrow-down.png") center no-repeat;
  background-size: 100%;
  opacity: .5;
  z-index: 15;
}
a.scroll:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  h1, .h1,
  h2, .h2 {
    font-size: 2rem;
  }
  .display-4 {
    font-size: 2rem !important;
  }
}
.btn-lg {
  font-size: 1rem !important;
}

@media (max-width: 576px) {
  .btn.w-25,
  .btn.w-50 {
    width: 100% !important;
  }
}


/* border */
@media (min-width: 576px) {
  .border {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-right: 1px solid rgba(0,0,0,.1);
    z-index: 1;
  }
  .border.inverse {
    border-color: rgba(255,255,255,.5);
  }
}

.divider {
  width: 2rem;
  margin: 1rem 0;
  border-bottom: 2px solid #0c65cd;
}


/* hgroup */
.hgroup.w-100.h-100 {
  position: absolute;
  z-index: 3;
}
  .headline {
    position: relative;
  }
    .headline h1::before,
    .headline h2::before {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: -2rem;
      height: 3.3rem;
      border-left: 3px solid #0c65cd;
      z-index: 2;
    }

@media (max-width: 767px) {
  .headline h1::before
  .headline h2::before {
    height: 4rem;
    border-left-width: 3px;
  }
}


/* video */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}
  .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100% !important;
    min-height: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }

/* transistion */
.navbar,
.nav-link,
a.scroll,
.carousel-indicators li,
.carousel-control-prev,
.carousel-control-next {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}


/* navbar */
.navbar {
  padding: 0;
  height: 7.5rem;
  background: url("../images/logo.svg") center no-repeat;
  background-size: 200px 30px;
  opacity: 1;
}
.navbar.headroom--not-top {
  top: -7.5rem;
  opacity: 0;
}
  .navbar-nav .nav-item + .nav-item {
    margin-left: 2rem;
  }

@media (max-width: 1024px) {
  .navbar {
    background-position: left 6rem center;
  }
}

@media (max-width: 767px) {
  .navbar {
    background-size: auto 2rem;
    background-position: center;
  }
    .navbar-nav {
      position: absolute;
      width: 100%;
      top: 100%;
      left: 0;
    }
      .navbar-nav .nav-item + .nav-item {
        margin-left: 0;
      }
}


/* carouselMain */
#carouselMain .carousel-inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(71,99,153,1) 10%, rgba(71,99,153,0) 40%);
  z-index: 2;
}


/* carouselJobs */
#carouselJobs {
  height: 720px;
}
  #carouselJobs .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 4rem;
    left: 0;
    justify-content: center;
  }

@media (max-width: 768px) {
  #carouselJobs {
    height: 520px;
  }
}


/* carouselNews */
#carouselNews .carousel-indicators {
  position: relative;
  justify-content: center;
  z-index: 15;
}
  #carouselNews .carousel-indicators li {
    background-color: #ddd;
  }
  #carouselNews .carousel-indicators .active {
    background-color: #0c65cd;
  }
    #carouselNews .carousel-control-prev-icon {
      background-image: url("../images/arrow-left-muted.png");
    }
    #carouselNews .carousel-control-next-icon {
      background-image: url("../images/arrow-right-muted.png");
    }


/* about */
#about .row .align-self-center {
  position: relative;
  z-index: 4;
}
   #about .col-4 div {
    border-left: 3px solid #0c65cd;
   }
   
@media (max-width: 575px) {
  #about {
    border-bottom: 1px solid rgba(0,0,0,.1);
  }
    #about .row {
      background-color: transparent !important;
    }
      #about .hgroup.w-100.h-100 {
        position: relative;
      }
        #about .text-white {
          color: #757575 !important;
        }
} 


/* coop */
#coop [class^=col-]:nth-child(odd) {
  border-right: 1px solid rgba(0,0,0,.1);
}

@media (min-width: 576px) {
  #coop [class^=col-] {
    border-right: 1px solid rgba(0,0,0,.1);
  }
  #coop [class^=col-]:last-child {
    border-right: none;
  }
}

.coop-list {
  border-left: 3px solid #0c65cd;
}


/* footer */
footer {
  line-height: 1.6;
}
  footer .footer-logo {
    width: 140px;
    height: 21px;
  }
  footer .social {
    font-size: 14px;
  }