/* css reset */
/* line 2, ../saltonskinws/scss/styles.scss */
* {
  box-sizing: border-box;
}

/* line 6, ../saltonskinws/scss/styles.scss */
html {
  box-sizing: border-box;
  font-size: 16px;
}

/* line 11, ../saltonskinws/scss/styles.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/* line 15, ../saltonskinws/scss/styles.scss */
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* line 21, ../saltonskinws/scss/styles.scss */
ol, ul {
  list-style: none;
}

/* line 25, ../saltonskinws/scss/styles.scss */
img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------- */
/* line 31, ../saltonskinws/scss/styles.scss */
html {
  height: 100vh;
}

/* line 35, ../saltonskinws/scss/styles.scss */
body {
  height: 100vh;
  position: relative;
}

/* line 38, ../saltonskinws/scss/styles.scss */
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2a5555;
  opacity: 0.7;
  z-index: 1;
}

/* line 52, ../saltonskinws/scss/styles.scss */
video.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

/* line 65, ../saltonskinws/scss/styles.scss */
.overlay {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 35px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* line 76, ../saltonskinws/scss/styles.scss */
.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

/* line 87, ../saltonskinws/scss/styles.scss */
.overlay .flexContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
}

/* line 98, ../saltonskinws/scss/styles.scss */
.headerText {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* line 105, ../saltonskinws/scss/styles.scss */
.headerText h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 30px;
}

/* line 116, ../saltonskinws/scss/styles.scss */
.footerText {
  text-align: center;
  margin-bottom: 60px;
}

/* ---------------------------- */
/* line 124, ../saltonskinws/scss/styles.scss */
.contactForm .contactFormText {
  margin-top: 30px;
}

/* line 126, ../saltonskinws/scss/styles.scss */
.contactForm .contactFormText h2 {
  font-size: 20px;
}

/* line 133, ../saltonskinws/scss/styles.scss */
#contact-area {
  margin-top: 50px;
}

/* line 136, ../saltonskinws/scss/styles.scss */
#contact-area input {
  padding: 5px;
  width: 300px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 365px;
  color: #fff;
  background-color: transparent;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  /* border-bottom: 1px solid #fff; */
  border-right: 1px solid transparent;
  margin-bottom: 30px;
}

/* line 150, ../saltonskinws/scss/styles.scss */
#contact-area input:focus {
  background-color: #333;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid transparent;
}

/* line 157, ../saltonskinws/scss/styles.scss */
#contact-area input.submit-button {
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  width: 120px;
  background-color: transparent;
  transition: all 0.1s ease-in-out;
  background: #2A5555;
}

/* line 166, ../saltonskinws/scss/styles.scss */
#contact-area input.submit-button:hover {
  background-color: #2A5555;
}

/* line 171, ../saltonskinws/scss/styles.scss */
#contact-area textarea {
  padding: 5px;
  width: 300px;
  height: 200px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  margin-bottom: 30px;
}

/* line 185, ../saltonskinws/scss/styles.scss */
#contact-area textarea:focus {
  background-color: #333;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid transparent;
}

/* line 196, ../saltonskinws/scss/styles.scss */
.formResponse {
  color: #2A5555;
  margin-bottom: 15px;
}

@media (pointer: coarse) and (hover: none) {
  /* line 203, ../saltonskinws/scss/styles.scss */
  body {
    height: 100%;
    background: url("../assets/img/world.jpg") #2a5555 no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  /* line 213, ../saltonskinws/scss/styles.scss */
  body video {
    display: none;
  }
}

@media (min-width: 640px) {
  /* line 221, ../saltonskinws/scss/styles.scss */
  .overlay {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
  }
  /* line 225, ../saltonskinws/scss/styles.scss */
  .overlay .flexContainer {
    min-height: 100vh;
  }
  /* line 232, ../saltonskinws/scss/styles.scss */
  .headerText h1 {
    width: 100%;
    font-size: 38px;
  }
  /* line 238, ../saltonskinws/scss/styles.scss */
  .contactForm .contactFormText {
    width: 100%;
  }
  /* line 240, ../saltonskinws/scss/styles.scss */
  .contactForm .contactFormText h2 {
    font-size: 20px;
  }
  /* line 245, ../saltonskinws/scss/styles.scss */
  .contactForm #contact-area input {
    width: 500px;
  }
  /* line 248, ../saltonskinws/scss/styles.scss */
  .contactForm #contact-area textarea {
    width: 500px;
  }
}

@media (min-width: 1024px) {
  /* line 257, ../saltonskinws/scss/styles.scss */
  .overlay {
    width: 75vw;
    min-height: 0;
    padding-bottom: 0;
  }
  /* line 262, ../saltonskinws/scss/styles.scss */
  .overlay:before {
    background-color: rgba(0, 0, 0, 0.85);
  }
  /* line 266, ../saltonskinws/scss/styles.scss */
  .overlay:before {
    transform: skewX(-9deg);
    transform-origin: top right;
  }
  /* line 273, ../saltonskinws/scss/styles.scss */
  .headerText h1 {
    font-size: 3rem;
  }
  /* line 278, ../saltonskinws/scss/styles.scss */
  .contactForm {
    width: 50vw;
  }
  /* line 282, ../saltonskinws/scss/styles.scss */
  .contactForm .contactFormText h2 {
    font-size: 20px;
  }
  /* line 286, ../saltonskinws/scss/styles.scss */
  .contactForm #contact-area {
    width: 500px;
  }
}

@media (min-width: 1200px) {
  /* line 294, ../saltonskinws/scss/styles.scss */
  .overlay {
    width: 65vw;
  }
  /* line 299, ../saltonskinws/scss/styles.scss */
  .headerText h1 {
    font-size: 3.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */