body,
div,
section {
  box-sizing: border-box;
  margin: 0;
}

a {
  color: #fff;
  text-decoration: none;
}

body {
  background-color: #fcfcfc;
  bottom: 0;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 10px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

header {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.15),
    rgba(0, 0, 0, 0)
  );
  border-color: transparent;
  height: 60px;
  position: absolute;
  width: 100%;
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
  z-index: 1;
}

header.solid {
  background: #fcfcfc;
  border-bottom: 1px solid #ddd;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

footer {
  background: #fcfcfc;
  /* border-top: 1px solid #ddd; */
  bottom: -60px;
  height: 60px;
  position: absolute;
  width: 100%;
}

footer .copyright {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  float: right;
}

.inverted-colors {
  background-color: #333;
}

.inverted-colors .copyright {
  color: #fff;
}

.raised-button {
  border-radius: 3px;
  box-shadow: 0px 0px 8px #000;
  color: white;
  font-size: 1.6em;
  padding: 10px;
  transition: background-color 0.2s ease-out;
  user-select: none;
  width: max-content;
}

.raised-button:hover {
  background-color: #af4448;
  cursor: pointer;
}

/**
 * Start Colors
 */

.blue-gray-bg {
  background-color: #607d8b;
}

.red-pastel-bg {
  background-color: #e57373;
}

/**
 * End Colors
 */

/**
 * Start Branding Style
 */

branding {
  float: left;
  font-size: 1.6em;
  height: 60px;
  line-height: 60px;
  padding: 0 15px 0 20px;
  position: relative;
  user-select: none;
  width: 80px;
}

branding:hover {
  cursor: pointer;
}

branding .branding-content {
  position: absolute;
}

.inverted-colors branding .branding-content {
  color: #fff;
}

branding .color {
  color: #ff5722;
  transition: color 0.5s ease-out;
}

branding:hover .color {
  color: #000;
}

.inverted-colors branding:hover .color {
  color: #fff;
}

branding .design-partial {
  height: 10px;
  position: absolute;
  width: 10px;
}

branding .top {
  border-top: 1px solid #000;
  top: 10px;
}

branding .left {
  border-left: 1px solid #000;
  left: 12px;
}

branding .right {
  border-right: 1px solid #000;
  left: 40px;
  transition: left 0.2s ease-out;
}

branding:hover .right {
  left: 109px;
}

branding .bottom {
  border-bottom: 1px solid #000;
  top: 38px;
}

.inverted-colors branding .top {
  border-top: 1px solid #fff;
}

.inverted-colors branding .left {
  border-left: 1px solid #fff;
}

.inverted-colors branding .right {
  border-right: 1px solid #fff;
}

.inverted-colors branding .bottom {
  border-bottom: 1px solid #fff;
}

/**
 * End Branding Style
 */

nav {
  position: absolute;
  right: 0;
}

nav a {
  color: #000;
}

navlink {
  display: inline-block;
  font-size: 1.6em;
  line-height: 60px;
  padding: 0 15px;
  transition: color 0.3s ease-out;
  user-select: none;
  vertical-align: top;
}

navlink:hover {
  color: #555;
  cursor: pointer;
}

.sections-header {
  background-color: rgba(0, 0, 0, 0.1);
  display: table-cell;
  height: 100vh;
  padding-left: 5%;
  vertical-align: middle;
  width: 100vw;
}

.sections-header-content {
  color: #fff;
  display: inline-block;
  text-shadow: 0px 0px 8px #000;
}

.sections-header-content h1 {
  font-size: 2.4em;
}

.sections-header-content p {
  font-size: 1.6em;
}

/**
 * Start Paralax
 */
.perspective-viewport {
  height: 100%;
  perspective: 1px;
  perspective-origin: top left;
  overflow-x: hidden;
  overflow-y: overlay;
  -webkit-overflow-scrolling: touch;
}

.parallax {
  position: absolute;
  transform: translate3d(0, 0, -0.5px) scale(2);
}

.content-container {
  min-height: 150vh;
  position: relative;
  transform-style: preserve-3d;
  margin-bottom: 60px;
}

.img-1 {
  background-image: url("/img/main_bg-min.jpg");
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

/**
 * End Parallax
 */

/**
 * Start Content section
 */

section {
  color: #fcfcfc;
  position: relative;
  width: 100%;
}

section > .text-content,
section > .image-display {
  box-sizing: border-box;
  min-height: 180px;
}

section .text-content {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 25px;
  position: relative;
  text-shadow: 0px 0px 5px #111;
  width: 100%;
  z-index: 1;
}

section .text-content h2 {
  font-size: 2.2em;
}

section .text-content p {
  font-size: 1.6em;
}

section .image-display {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

section .image-display img {
  min-height: 100%;
  width: 100%;
}

section.contact-us {
  padding: 20px;
}

section.contact-us h2 {
  font-size: 2.2em;
  text-align: center;
}

section.contact-us p {
  font-size: 1.6em;
  text-align: center;
}

section.contact-us > div {
  min-height: 100px;
  width: 100%;
}

section.contact-us .address p {
  color: white;
}

section.contact-us > div:last-child {
  border-top-width: 1px;
  border-top-style: solid;
  border-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      #fff,
      rgba(0, 0, 0, 0)
    )
    1 100%;
}

/**
 * End Content section
 */

@media screen and (min-width: 400px) {
  footer .copyright {
    font-size: 1.4em;
  }
}

@media screen and (min-width: 500px) {
  section.contact-us > div {
    display: inline-block;
    width: 49.8%;
    vertical-align: top;
  }
  
  section.contact-us > div:last-child {
    border-left-width: 1px;
    border-left-style: solid;
    border-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0),
        #fff,
        rgba(0, 0, 0, 0)
      )
      1 100%;
  }
}

@media screen and (min-width: 720px) {
  section > .text-content,
  section > .image-display {
    display: inline-block;
    height: 196px;
    vertical-align: top;
  }
  section .text-content {
    width: 60vw;
    text-shadow: none;
  }
  section .image-display {
    display: inline-block;
    bottom: initial;
    left: initial;
    position: relative;
    right: initial;
    top: initial;
    width: 40vw;
  }
}
