/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root
{
  --mainBlue: #003670;
  --mainGold: #b19171;
  --lightBlue:#a4bcdc;
  --white: #fff;
  --lightGrey: #f9f9f9;
}

body {
  font-family: "Trebuchet MS", sans-serif;
 
}

h1, h2, h3, h4, h5, h6 
{
  font-family: "Trebuchet MS", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader 
{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
}

#preloader:before 
{
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--mainBlue);
  border-top-color: var(--white);
  border-bottom-color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader 
{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/

.wrapper-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-container {
  overflow: hidden;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 80%);;
  background-color: var(--white);
  text-align: center;
  border-radius: 1rem;
  position: relative;
  width: 280px;
  height: 500px;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.banner-bemanning-img {
  position: absolute;
  background-color: var(--mainBlue);
  height: 1rem;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-hyrrekrytering-img {
  position: absolute;
  background-color: var(--mainGold);
  height: 1rem;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-rekrytering-img {
  position: absolute;
  background-color: var(--lightBlue);
  height: 1rem;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.profile-img {
  width: 8rem;
  clip-path: circle(60px at center);
  margin-top: 4.5rem;
}

.wrapper-flex .card-container h2 {
color: var(--mainGold);
}

.wrapper-flex .card-container p {
  padding: 8px;
  }





/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--mainBlue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i 
{
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover 
{
  background: var(--mainGold);
}

.back-to-top.active 
{
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# sticky-facebook-button
--------------------------------------------------------------*/
.sticky-facebook-button {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 65px;
  bottom: 15px;
  z-index: 996;
  background: var(--mainBlue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.sticky-facebook-button i 
{
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.sticky-facebook-button:hover 
{
  background: var(--mainGold);
  color: var(--white);
}

.sticky-facebook-button.active 
{
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# sticky-instagram-button
--------------------------------------------------------------*/
.sticky-instagram-button {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 115px;
  bottom: 15px;
  z-index: 996;
  background: var(--mainBlue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.sticky-instagram-button i 
{
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.sticky-instagram-button:hover 
{
  background: var(--mainGold);
  color: var(--white);
}

.sticky-instagram-button.active 
{
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# sticky-linkedin-button
--------------------------------------------------------------*/
.sticky-linkedin-button {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 165px;
  bottom: 15px;
  z-index: 996;
  background: var(--mainBlue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.sticky-linkedin-button i 
{
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.sticky-linkedin-button:hover 
{
  background: var(--mainGold);
  color: var(--white);
}

.sticky-linkedin-button.active 
{
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(0, 51, 124, 0.1);
}

#header.header-scrolled, #header.header-inner-pages 
{
  background: rgb(0, 51, 124);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: var(--white);
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}

/* Hero Button */
.button {
  margin-left: 25px;
  margin-top: 35px;
  background: var(--mainBlue);
  color: var(--white);
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  letter-spacing: 6px;
  color: var(--mainGold);
  text-decoration: none;
}

@media (max-width: 992px) 
{
  .button {
    margin: 0 15px 15px 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -2px;
  left: 0;
  background-color: var(--mainGold);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a 
{
  color: var(--white);
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 51, 124, 0.9);
  transition: 0.3s;
  z-index: 9999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 5px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--mainBlue);
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--mainGold);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../images/people.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgb(0, 51, 124, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--white);
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--white);
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--mainBlue);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--mainGold);
  bottom: 0;
  left: 0;
}

.section-title h3 {
  font-size: 26px;

  position: relative;
  color: var(--mainGold);
}

.section-title p {
  margin-bottom: 0;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 400px;
}


/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.services {
  background-color: var(--lightGrey);
}


/*--------------------------------------------------------------
# location
--------------------------------------------------------------*/
.location .row h3
{
  color: var(--mainBlue);
}

.location a
{
  color: var(--mainBlue);
  text-decoration: none;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.location a:hover
{
  color: var(--mainGold);
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--mainBlue);
  color: var(--white);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

