/* general styles */
@font-face{
	font-family:proxima-nova;
	font-style:normal;
	font-weight:400;
	src:url("./fonts/Proxima Nova/ProximaNovaCond-Regular.woff2") format("woff2"),url("./fonts/Proxima Nova/ProximaNovaCond-Regular.woff") format("woff");
}

button {
  width: 160px;
  height: 60px;
  border-radius: 4px;
  letter-spacing: 0px;
  font-size: 25px;
  line-height: 38px;
  font-family: proxima-nova, sans-serif;
  font-weight: bold;
  cursor: pointer;
}

/* page styles */
html, body {
  margin: 0;
  padding: 0;
}

.container {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
}

header {
  background-color: #EE9BAC;
  color: #ffffff;
  width: 100%;
  padding: 7px 0;
}
header .container {
  color: #231F20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .title {
  padding-top: 7px;
}
header .placeholder {
  width: 93px;
  height: 1px;
  opacity: 0;
}

.product-bg {
  background-image: url(img/productGroup.png);
  background-repeat: no-repeat;
  background-position: 105% 0%;
}

.main-header {
  padding-top: 75px;
  min-height: 360px;
}
.main-header .title {
  width: 556px;
  padding-bottom: 54px;
}
.main-header .title, .main-header .title img {
  max-width: 100%;
}
.main-header .access-button {
  width: 556px;
}
.main-header .access-button p {
  text-align: center;
  margin: 0px;
}
.main-header .access-button button {
  background-color: #E74260;
  color: #FFFFFF;
  border: none;
}

.main-content {
  width: 100%;
  text-align: left;
  letter-spacing: 0px;
  color: #231F20;
  font-size: 26px;
  line-height: 36px;
  font-family: proxima-nova, sans-serif;
  padding-bottom: 35px;
}

.video-container {
  position: relative;
  margin: 0 auto;
}
.video-container iframe {
  z-index: 1;
}
.video-container img {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.our-mission {
  padding: 65px 0;
}
.our-mission img {
  max-width: 100%;
}

.contact-box {
  background-color: #EE9BAC;
  color: #ffffff;
  border: 1px solid #F7F7F7;
  border-radius: 16px;
  width: 1158px;
  margin: 0 auto 80px;
}

.contact-header {
  height: 160px;
  border-bottom: 2px solid #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-header p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 100px;
  line-height: 100px;
}

.contact-form {
  padding: 40px 0;
}
.contact-form p.error, .contact-form ul.errors {
  margin: 0 auto 30px;
  width: 960px;
  color: #990000;
  font-family: proxima-nova, sans-serif;
}
.contact-form p.success {
  margin: 0 auto 30px;
  width: 960px;
  color: #ffffff;
  font-family: proxima-nova, sans-serif;
}
.contact-form p.success .emoji {
  font-size: 32px;
  vertical-align: middle;
}

.fields {
  padding: 0 20px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  max-height: 300px;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}

.field {
  padding: 0 20px 20px;
}
.field label {
  font-size: 16px;
  line-height: 19px;
  font-family: proxima-nova, sans-serif;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.field label span {
  display: inline-block;
  padding-bottom: 4px;
}
.field input, .field select {
  padding: 10px;
  width: 438px;
  height: 18px;
  border: 1px solid #E74260;
  background-color: #ffffff;
  color: #777777;
  border-radius: 4px;
}
.field select {
  width: 458px;
  height: 38px;
}

.submit-button p {
  text-align: center;
  margin: 0px;
}
.submit-button button {
  background-color: #FFFFFF;
  border: 1px solid #E34362;
  color: #E74260;
}

footer {
  background-color: #777777;
  color: #ffffff;
  width: 100%;
  padding: 50px 0;
}
footer .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .logo img {
  width: 160px;
  height: 60px;
}

.screen-reader {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1170px) {
  .container {
    width: calc(100% - 10px);
  }
}
@media (max-width: 1170px) {
  .video-container, .video-container iframe, .video-container img {
    width: 982px;
    height: 558px;
  }

  .field input {
    width: calc(37vw - 22px);
  }

  .field select {
    width: calc(37vw - 2px);
  }

  .contact-form p.error, .contact-form ul.errors, .contact-form p.success {
    width: 77.7vw;
  }
}
@media (max-width: 991px) {
  .video-container, .video-container iframe, .video-container img {
    width: 758px;
    height: 427px;
  }

  .product-bg {
    background-position: 105% 5%;
  }

  .main-header {
    min-height: 420px;
    padding-left: 20px;
  }

  .contact-form p.error, .contact-form ul.errors, .contact-form p.success {
    width: 78vw;
  }

  footer .title img {
    width: 500px;
  }
}
@media (max-width: 767px) {
  .video-container, .video-container iframe, .video-container img {
    width: 100%;
  }

  .product-bg {
    background-position: 50% 10%;
  }

  .main-header {
    padding-left: 0;
    width: 100%;
    min-height: 480px;
  }
  .main-header .title {
    margin: 0 auto;
  }
  .main-header .access-button {
    width: 100%;
  }

  .main-content {
    font-size: 22px;
    line-height: 32px;
  }

  .contact-header {
    height: 140px;
  }
  .contact-header p {
    font-size: 80px;
    line-height: 80px;
  }

  footer {
    padding: 30px 0;
  }

  footer .title img {
    width: 370px;
  }

  footer .logo img {
    width: 120px;
  }
}
@media (max-width: 519px) {
  header .title img {
    width: 200px;
  }

  .product-bg {
    background-size: 130%;
    background-position: 50% 14%;
  }

  .contact-header {
    height: 120px;
  }
  .contact-header p {
    font-size: 60px;
    line-height: 60px;
  }

  .contact-form p.error, .contact-form ul.errors, .contact-form p.success {
    width: calc(100% - 60px);
    text-align: center;
    line-height: 20px;
  }

  .fields {
    max-height: none;
    width: calc(100% - 40px);
  }

  .field input {
    width: 80vw;
  }

  .field select {
    width: 100%;
  }

  footer {
    padding: 20px 0 10px;
  }

  footer .title img {
    width: 280px;
  }

  footer .logo img {
    width: 100px;
  }
}
@media (max-width: 419px) {
  .main-header {
    min-height: 420px;
  }

  footer .title img {
    width: 230px;
    padding-top: 5px;
  }

  footer .logo img {
    width: 90px;
  }
}
