@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: url("/images/brug.jpg");
  /* Set a specific height */
  height: 33%;
  /* Position and center the image to scale nicely on all screens */
  background-position: 0 70%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

h1 {
  padding-top: 40px;
  color: #c35127;
}

/* -- NAVBAR COLOR SETTINGS -- */

/* START BACKGROUND */

.navbar {
  background-color: unset;
}

/* START TEXT */

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

/* START HOVER */

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

/* 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;
}

.w3-half img {
  width: 90%;
  padding-bottom: 0;
  padding-top: 0;
}

@media screen and (min-width: 992px) {
  .smallscreenimage {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .w3-half img {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .w3-half {
    width: 100%;
  }
}

.w3-half p {
  font-family: "Raleway", sans-serif;
  line-height: 2em;
}

hr {
  padding-top: 50px;
  border-width: 3px;
  border-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;
}

.smallscreenimage {
  width: 100%;
  padding-bottom: 0;
  padding-top: 0;
}

* {
  -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;
}

