@import url(https://fonts.googleapis.com/css?family=Mukta:700);body,
html {
  height: 100%;
  font-size: 100%;
}

/* The hero image */

.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("/images/brug.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/brug.jpg");
  /* Set a specific height */
  height: 100%;
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
}

/* -- NAVBAR COLOR SETTINGS -- */

/* START BACKGROUND */

.navbar {
  background-color: unset;
}

/* START TEXT */

.navbar .navbar-nav .nav-item .nav-link {
  color: white;
}

/* START HOVER */

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: black;
}

/* SCROLLED BACKGROUND */

.navbar.scrolled {
  background-color: white;
}

/* SCROLLED TEXT */

.navbar.scrolled .navbar-nav .nav-item .nav-link {
  color: #C35127;
}

/* SCROLLED HOVER */

.navbar.scrolled .navbar-nav .nav-item .nav-link:hover {
  opacity: 0.5;
}

h1 {
  /* Used to make the text appear below the navbar after scrolling */
  padding-top: 125px;
  padding-bottom: 25px;
}

/* Not using this currently
.btn-outline-light {
    border-radius: 10%;
    background-color: none;
}*/

/* Used to create the shape of the down arrow */

.scroll i {
  position: relative;
  top: 85%;
  border: solid #f5f8fa;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 25px;
}

/* Class for the down arrow */

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.down:hover {
  opacity: 0.5;
}

hr {
  padding-top: 50px;
  border-width: 3px;
  border-color: #C35127;
}

.display-1 {
  font-size: 3.5em;
  font-family: "Raleway", sans-serif;
}

.maintitle {
  color: #C35127;
}

.blockquote {
  font-size: 1.5em;
  color: #212529;
  padding-top: 25px;
  padding-bottom: 25px;
  line-height: 1.8;
  font-family: "Raleway", sans-serif;
}

.blockquote strong {
  color: #212529;
}

/*
.fa-chart-line {
    color: #C35127;
}
*/

.w3-large {
  font-size: 4em;
}

h2 {
  font-size: 2.2em;
  color: #C35127;
  padding-top: 15px;
  padding-bottom: 25px;
}

.padding10 {
  padding-right: 10%;
  padding-left: 10%;
  text-align: justify;
}

/*.btn {
    position: relative;
    width: 80%;
    background-color: #f5f8fa;
    border-width: 2px;
    border-color: #212529;
    margin-bottom: 30px;
}*/

/* Image in main columns */

.w3-half img {
  width: 80%;
  padding-bottom: 5%;
}

/* Text properties in columns */

.w3-half p {
  font-family: "Raleway", sans-serif;
  padding-bottom: 5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.learn-more {
  width: 12rem;
  height: auto;
}

button.learn-more .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #C35127;
  border-radius: 1.625rem;
}

button.learn-more .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.learn-more .circle .icon.arrow {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

button.learn-more .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #C35127;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(1rem, 0);
          transform: translate(1rem, 0);
}

button:hover .button-text {
  color: #fff;
}

/* Decrease text size of the main title */

@media screen and (max-width: 560px) {
  .maintitle {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 410px) {
  .maintitle {
    font-size: 2em;
  }
}

/* Change layout of the columns */

@media screen and (max-width: 991px) {
  .padding10 {
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
  }
}

