/** Colors */
/** Box Model  */
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}

.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}

@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  transform: rotate(-45deg);
}

.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

html, body {
  font-family: "Radikal", Arial, sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

.container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 0 auto;
}

.play {
  transition: transform 3s;
  position: relative;
}
.play:before {
  background: url(../images/play.svg) center center no-repeat;
  background-size: 100px 100px;
  transition: background-size 0.5s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}
@media (max-width: 1023px) {
  .play:before {
    background-size: 70px 70px;
  }
}
.play:hover {
  cursor: pointer;
}
.play:hover:before {
  background-size: 125px 125px;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto 0;
}
form .fieldgroup {
  width: calc(50% - 10px);
  margin-bottom: 30px;
}
form .fieldgroup.fullwidth {
  width: 100%;
}
form .fieldgroup.fileupload {
  margin-bottom: 20px;
}
form .fieldgroup.submit {
  text-align: center;
}
@media (max-width: 1023px) {
  form .fieldgroup {
    width: 100%;
  }
}
form .fieldgroup.casl {
  margin-top: 50px;
}
form .fieldgroup.casl a {
  text-decoration: none;
  color: #003043;
}
form .fieldgroup.submit {
  margin-top: 30px;
}
form .fieldgroup.submit.uploading {
  position: relative;
  width: auto;
}
form .fieldgroup.submit.uploading:before {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  content: "";
}
form .fieldgroup.submit.uploading:after {
  content: "";
  margin: auto;
  border: 10px solid #EAF0F6;
  border-radius: 50%;
  border-top: 10px solid #B2DBED;
  animation: spinner 4s linear infinite;
  position: absolute;
  top: 25%;
  left: 40%;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
}
form .uploadmessage {
  display: none;
  width: 100%;
}
form label {
  margin-bottom: 10px;
  color: #003043;
  font-size: 18px;
  line-height: 33px;
  display: block;
}
form label.error {
  color: #EB586B;
}
form input[type=text], form input[type=email], form select {
  font-size: 18px;
  line-height: 19px;
  padding: 0 20px;
}
form textarea {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 19px;
  padding: 20px;
}
form input[type=text] {
  appearance: none;
  border: none;
  height: 80px;
  width: 100%;
}
form select {
  appearance: none;
  border: none;
  height: 80px;
  width: 50%;
  outline: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.31' height='8.069' viewBox='0 0 13.31 8.069'%3E%3Cpath id='Path_2672' data-name='Path 2672' d='M-9645-575l5.948,5.948L-9645-563.1' transform='translate(-562.397 9645.707) rotate(90)' fill='none' stroke='%23003043' stroke-width='2'/%3E%3C/svg%3E%0A") no-repeat right 20px center/20px;
}
@media (max-width: 1023px) {
  form select {
    width: 100%;
  }
}
form input[type=submit] {
  font-family: "Radikal", Arial, sans-serif;
  border: none;
  background: #003043;
  color: #fff;
  padding: 35px 60px 30px;
  font-size: 25px;
  line-height: 16px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  form input[type=submit] {
    padding: 20px 40px 15px;
    font-size: 18px;
    line-height: 33px;
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
form input[type=file] {
  appearance: none;
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}
form .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  form .inputfile {
    width: auto;
    height: auto;
    opacity: 1;
    overflow: auto;
    position: relative;
    z-index: 0;
  }
}
form .inputfile + label {
  color: #003043;
  display: inline-block;
  margin-top: 30px;
  text-decoration: underline;
  border: 3px solid #fff;
  position: relative;
  border-radius: 5px;
  padding: 0px 25px;
  display: flex;
  flex-direction: column;
  height: 170px;
  min-width: 250px;
  width: auto;
  text-align: center;
  justify-content: center;
  text-decoration: none;
}
form .inputfile + label .small {
  font-size: 14px;
}
form .inputfile + label.error {
  color: #EB586B;
}
form .inputfile:focus + label,
form .inputfile + label:hover {
  cursor: pointer;
  background-color: #fff;
}
form .inputfile + label {
  cursor: pointer;
}
form .inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
form textarea {
  appearance: none;
  border: none;
  min-height: 170px;
  width: 100%;
}
form .checkboxcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: rem-calc(22px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 1023px) {
  form .checkboxcontainer {
    font-size: rem-calc(16px);
    line-height: rem-calc(22px);
  }
}
form .checkboxcontainer span {
  display: block;
  margin-bottom: 10px;
}
form .checkboxcontainer span.fineprint {
  font-size: 14px;
  line-height: 20px;
}
form .checkboxcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
form .checkboxcontainer input:checked ~ .checkmark:after {
  display: block;
}
form .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #fff;
}
form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #003043;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 1025px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    width: 100%;
    z-index: 999;
  }
  .nav {
    background: #000000;
    padding: 30px 0 10px;
    min-height: 117px;
    transition: all 0.5s;
  }
  .nav.turtle {
    padding: 10px 0 10px;
    min-height: 50px;
  }
  .nav.turtle .logo {
    height: 45px;
  }
  .nav.turtle .logo img {
    height: 130%;
    position: relative;
    top: 5px;
  }
  .nav .logo {
    height: 77px;
    transition: all 0.5s;
    overflow: hidden;
  }
  .nav .logo img {
    transition: all 0.5s;
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 330px) {
  .nav div img {
    max-width: 75px;
    height: auto;
  }
}
@media (min-width: 1025px) {
  .nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
  }
  .nav .container.va-center {
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .nav .jkcom.menu {
    text-align: right;
    display: flex;
    justify-content: space-between;
    position: relative;
    transition: all 0.5s;
    background: #000;
  }
  .nav .jkcom.menu li {
    list-style: none;
    color: #fff;
    margin-left: 50px;
    box-sizing: border-box;
  }
  .nav .jkcom.menu li .marker {
    position: relative;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: transparent;
    transition: all 0.5s;
    transition-delay: 1s;
  }
  .nav .jkcom.menu li.arrowdown:after {
    position: absolute;
    width: 10px;
    height: 6px;
    margin-left: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    color: #84BD00;
    content: "";
    transition: all 0.5s;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.31' height='8.069' viewBox='0 0 13.31 8.069'%3E%3Cpath id='Path_2672' data-name='Path 2672' d='M-9645-575l5.948,5.948L-9645-563.1' transform='translate(-562.397 9645.707) rotate(90)' fill='none' stroke='%23EB586B' stroke-width='2'/%3E%3C/svg%3E%0A") no-repeat center center/contain;
  }
  .nav .jkcom.menu li.nolink:hover .jkcom_children.menu {
    display: block;
  }
  .nav .jkcom.menu li a, .nav .jkcom.menu li span {
    color: #ffffff;
    text-decoration: none;
  }
  .nav .jkcom.menu li a.active + .marker, .nav .jkcom.menu li span.active + .marker {
    width: 100%;
    height: 2px;
    background: #EB586B;
  }
}
@media (min-width: 1025px) {
  .nav .hamburger {
    display: none;
  }
  .nav .hamburger .bar {
    background: #fff;
    height: 2px;
    width: 38px;
    margin: 8px auto;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 1025px) {
  .nav__link_parent.nolink:hover .jkcom_children.menu {
    display: block;
  }
}
@media (min-width: 1025px) {
  .nav .jkcom_children.menu {
    position: absolute;
    top: calc(100% - 2px);
    margin: 0;
    padding: 20px 30px 20px 20px;
    list-style: none;
    text-align: left;
    background: #000;
    border: 1px solid #EB586B;
    display: none;
  }
  .nav .jkcom_children.menu li {
    display: block;
    width: 100%;
    margin: 0;
  }
  .nav .jkcom_children.menu li a {
    width: 100%;
    height: 100%;
    padding: 5px 0px;
    display: inline-block;
    min-height: 34px;
  }
}
@media (max-width: 1023px) {
  header {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #000;
  }
  nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
  }
  .nav {
    background: #000000;
    padding: 30px 0 10px;
    min-height: 117px;
    transition: all 0.5s;
  }
  .nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    padding: 0 20px;
    position: relative;
    width: 100%;
  }
  .nav.turtle {
    padding: 10px 0 10px;
    min-height: 50px;
  }
  .nav.turtle .logo {
    overflow: hidden;
    height: 45px;
    margin-top: 10px;
  }
  .nav.turtle .logo img {
    height: 130%;
    top: 5px;
  }
  .nav.turtle .jkcom.menu {
    top: 60px;
  }
  .logo {
    height: 77px;
    margin-top: 0px;
    transition: all 0.5s;
  }
  .logo img {
    position: relative;
    transition: all 0.5s;
    height: 100%;
  }
  .jkcom.menu {
    flex-direction: column;
    height: 0;
    opacity: 0;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s;
    top: 85px;
    background: #000;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
  }
  .jkcom.menu.active {
    height: 100vh;
    opacity: 1;
  }
  .jkcom.menu li {
    padding: 10px 2.25rem;
  }
  .jkcom.menu li .marker {
    position: relative;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: transparent;
    transition: all 0.5s;
    transition-delay: 1s;
  }
  .jkcom.menu li a {
    color: #ffffff;
    text-decoration: none;
  }
  .jkcom.menu li a.active + .marker {
    width: 100%;
    height: 2px;
    background: #EB586B;
  }
  .jkcom.menu li ul {
    margin: 0;
    padding: 0;
  }
  .hamburger {
    margin-right: 22px;
    display: block;
    cursor: pointer;
    height: 50px;
    width: 50px;
    position: absolute;
    right: 0;
  }
  .hamburger .bar {
    background: #fff;
    height: 2px;
    width: 38px;
    margin: 8px auto;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    background: #fff;
    opacity: 1;
    left: 10px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 13px;
  }
  .hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 24px;
  }
  .hamburger span:nth-child(4) {
    top: 35px;
  }
  .hamburger.active span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
  }
  .hamburger.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(4) {
    top: 12px;
    width: 0%;
    left: 50%;
  }
  .nav__link, .nav__link_parent {
    margin: 0;
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-size: 34px;
  }
  .jkcom.menu li.sub_nav__link {
    font-size: 18px;
    padding: 10px 0 5px 15px;
  }
  .nav.active {
    height: auto;
    opacity: 1;
  }
  .nav.active .nav__link {
    opacity: 1;
  }
}
.q {
  font-size: 31px;
  line-height: 50px;
  max-width: 915px;
  width: 100%;
}
@media (min-width: 1025px) {
  .q {
    font-size: 41px;
  }
}

.c {
  text-align: center;
  position: relative;
  padding-bottom: 90px;
}
@media (min-width: 1310px) {
  .c {
    flex-grow: 2;
  }
}
@media (max-width: 1309px) {
  .c {
    margin-top: 50px;
  }
}
.c img {
  margin: 0 auto 35px;
}
.c .name {
  font-size: 22px;
  letter-spacing: -0.22px;
  line-height: 24px;
}
.c .title {
  font-size: 16px;
  letter-spacing: -0.16px;
  margin-top: 0;
}

.note {
  position: absolute;
  bottom: 0;
  right: 30%;
  color: #53C3C0;
  font-size: 16px;
  font-weight: bold;
  transform: matrix(0.9, -0.44, 0.44, 0.9, 0, 0);
}
.note:before {
  content: "";
  background: url(../images/whs-arrow.svg) 0 0 no-repeat;
  width: 27px;
  height: 29px;
  display: block;
  margin: 0 auto;
}

section#hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
}
section#hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  section#hero .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
section#hero .copy {
  max-width: 700px;
  margin-left: auto;
  padding-right: 50px;
}
@media (max-width: 1023px) {
  section#hero .copy {
    max-width: 100%;
    width: 100%;
    margin-left: unset;
  }
}
section#hero .copy h1 {
  font-size: 110px;
  line-height: 104px;
  color: #EB586B;
  margin-bottom: 30px;
  padding-right: 50px;
  opacity: 0;
}
@media (max-width: 1023px) {
  section#hero .copy h1 {
    opacity: 1;
    font-size: 45px;
    line-height: 50px;
  }
}
section#hero .copy p {
  font-size: 18px;
  line-height: 33px;
  max-width: 430px;
  opacity: 0;
}
@media (max-width: 1023px) {
  section#hero .copy p {
    font-size: 18px;
    line-height: 31px;
    max-width: unset;
    opacity: 1;
  }
}
@media (max-width: 1399px) {
  section#hero .copy {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  section#hero .copy {
    max-width: 100%;
  }
}
section#hero .image {
  border-top-left-radius: 85px;
  min-height: 735px;
  height: 735px;
  overflow: hidden;
}
section#hero .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  section#hero .image {
    width: 100%;
    height: 435px;
    min-height: 435px;
  }
}

section#cause {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 1023px) {
  section#cause {
    text-align: left;
  }
}
section#cause h2 {
  font-size: 62px;
  line-height: 57px;
  color: #EB586B;
}
@media (max-width: 1023px) {
  section#cause h2 {
    font-size: 36px;
    line-height: 45px;
  }
}
section#cause p {
  font-size: 18px;
  line-height: 33px;
  max-width: 950px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  section#cause p {
    font-size: 18px;
    line-height: 31px;
  }
}
section#cause .graphics {
  position: relative;
  margin-top: 100px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
section#cause .graphics .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}
section#cause .graphics .hfglogo {
  max-height: 445px;
  max-width: 365px;
}
@media (max-width: 1023px) {
  section#cause .graphics .hfglogo {
    max-height: 300px;
    height: 300px;
    margin-bottom: 30px;
  }
  section#cause .graphics .hfglogo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
section#cause .graphics .hfggraphic {
  z-index: -1;
  position: absolute;
  right: 0;
  top: 80px;
  max-width: 80%;
  width: 80%;
  height: 100%;
  border-bottom-left-radius: 85px;
  overflow: hidden;
}
section#cause .graphics .hfggraphic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  section#cause .graphics .hfggraphic {
    top: 0;
    position: relative;
    max-width: 100%;
    width: 100%;
    border-bottom-left-radius: 45px;
  }
}

section#prize {
  background: rgb(235, 235, 234) 0%;
  background-image: url("../images/clouds.jpg"); /* fallback */
  background-image: url("../images/clouds.jpg"), linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(235, 235, 234) 50%, rgb(235, 235, 234) 100%);
  background-repeat: no-repeat;
  background-position: center bottom 300px;
  background-size: contain;
  padding: 200px 0;
}
@media (max-width: 1399px) {
  section#prize {
    padding: 100px 0px;
  }
}
@media (max-width: 1023px) {
  section#prize {
    padding: 50px 0px;
    background-size: cover;
  }
}
section#prize h2 {
  font-size: 62px;
  line-height: 57px;
  color: #EB586B;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  section#prize h2 {
    font-size: 36px;
    line-height: 45px;
    text-align: left;
  }
}
section#prize p {
  font-size: 18px;
  line-height: 33px;
  max-width: 950px;
  margin: 30px auto;
  text-align: center;
}
@media (max-width: 1023px) {
  section#prize p {
    font-size: 18px;
    line-height: 31px;
    text-align: left;
  }
}
section#prize .boxes {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  section#prize .boxes {
    flex-direction: column;
  }
}
section#prize .boxes .box {
  background: #fff;
  border: 20px solid #EB586B;
  padding: 30px 30px;
  width: 30%;
  max-width: 375px;
}
@media (max-width: 1023px) {
  section#prize .boxes .box {
    width: 100%;
    margin: 15px auto;
  }
}
section#prize .boxes .box h3 {
  font-size: 40px;
  line-height: 48px;
  color: #EB586B;
}
section#prize .boxes .box p {
  text-align: left;
}

section#howtoapply {
  background: linear-gradient(180deg, rgb(235, 235, 234) 0%, rgb(235, 235, 234) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  position: relative;
}
section#howtoapply .contentwrap {
  background: #B2DBED;
  border-top-right-radius: 85px;
  max-width: 75%;
  position: relative;
}
@media (max-width: 1023px) {
  section#howtoapply .contentwrap {
    max-width: 100%;
  }
}
section#howtoapply .container {
  display: flex;
  height: 100%;
  padding: 50px 0;
  margin-bottom: 150px;
  background: #B2DBED;
  border-top-right-radius: 85px;
  max-width: 1000px;
}
@media (max-width: 1399px) {
  section#howtoapply .container {
    padding: 50px 0px;
    margin-bottom: 0;
  }
}
section#howtoapply .container .content {
  width: 60%;
}
@media (max-width: 1023px) {
  section#howtoapply .container .content {
    width: 100%;
  }
}
section#howtoapply .container .content h2 {
  color: #003043;
  font-size: 62px;
  line-height: 57px;
}
@media (max-width: 1023px) {
  section#howtoapply .container .content h2 {
    font-size: 36px;
    line-height: 45px;
  }
}
section#howtoapply .container .content p {
  color: #003043;
  font-size: 18px;
  line-height: 33px;
}
@media (max-width: 1023px) {
  section#howtoapply .container .content p {
    font-size: 18px;
    line-height: 31px;
  }
}
section#howtoapply .container .content .btn {
  display: inline-block;
  margin-top: 30px;
  background: #fff;
  color: #003043;
  font-weight: 700;
  padding: 20px 45px;
  text-decoration: none;
}
@media (max-width: 767px) {
  section#howtoapply .container .content .btn {
    display: block;
    text-align: center;
    padding: 10px;
  }
}
section#howtoapply .container .sun {
  width: 40%;
  max-width: 315px;
  margin: -40px auto 0;
}
section#howtoapply .container .sun img {
  object-fit: contain;
  width: 100%;
}
@media (max-width: 1023px) {
  section#howtoapply .container .sun {
    display: none;
  }
}
section#howtoapply .videobox {
  position: absolute;
  left: 50%;
  top: 20%;
  max-height: 675px;
}
@media (max-width: 1023px) {
  section#howtoapply .videobox {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
  }
}
section#howtoapply .videobox img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 675px;
}
section#howtoapply .videobox .caption {
  z-index: 1;
  padding: 20px 50px;
  background: #fff;
  color: #EB586B;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom-left-radius: 30px;
  font-size: 18px;
  font-weight: 700;
}

section#faq {
  padding: 100px 0;
}
@media (max-width: 1399px) {
  section#faq {
    padding: 100px 20px;
  }
}
@media (max-width: 1023px) {
  section#faq .container {
    margin: 0;
    width: 100%;
  }
}
section#faq h2 {
  font-size: 62px;
  line-height: 57px;
  text-align: center;
  color: #EB586B;
}
@media (max-width: 1023px) {
  section#faq h2 {
    font-size: 36px;
    line-height: 45px;
  }
}
section#faq .hiddenfaqs {
  display: none;
}
section#faq .hiddenfaqs.show {
  display: block;
}
section#faq .showall {
  text-align: center;
  padding: 50px 0;
}
section#faq .showall a {
  color: #fff;
  margin: 0 auto;
  padding: 20px 45px;
  background: #003043;
  text-decoration: none;
}
section#faq .downloadfaq {
  display: flex;
  margin: 15px auto 50px;
  align-items: center;
}
section#faq .downloadfaq a {
  display: flex;
  align-items: center;
  margin: 0 auto;
  color: #003043;
  text-align: center;
}
section#faq .downloadfaq a:after {
  content: "";
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='19.417' height='19.382' viewBox='0 0 19.417 19.382'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_1756' data-name='Rectangle 1756' width='19.417' height='19.382' transform='translate(0 0)' fill='%23003043'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_1946' data-name='Group 1946' transform='translate(0 -0.003)'%3E%3Cg id='Group_1945' data-name='Group 1945' transform='translate(0 0.003)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_424' data-name='Path 424' d='M278.99,7.045H275.6l5.249,6.921,5.249-7h-3.437V0H278.99Z' transform='translate(-271.136 -0.003)' fill='%23003043'/%3E%3Cpath id='Path_425' data-name='Path 425' d='M.019,729.533h1.71c0,1.475.06,2.895-.019,4.307-.061,1.092.22,1.524,1.423,1.5,4.425-.07,8.851-.056,13.277,0,1.049.013,1.368-.339,1.323-1.345-.066-1.461-.017-2.926-.017-4.456h1.667c0,1.966.1,3.946-.04,5.909a1.858,1.858,0,0,1-2.05,1.637c-5.076.028-10.153.038-15.229-.006A1.911,1.911,0,0,1,.039,735.12c-.074-1.813-.019-3.631-.019-5.586Z' transform='translate(0 -717.729)' fill='%23003043'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center center/contain;
}
section#faq .accordion-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  border-top: 1px solid #B2DBED;
}
section#faq .accordion-item:last-child {
  border-bottom: 1px solid #B2DBED;
}
@media (max-width: 1399px) {
  section#faq .accordion-item {
    padding: 30px 0;
  }
}
@media (max-width: 1023px) {
  section#faq .accordion-item {
    padding: 0;
  }
}
section#faq .accordion-item .tab-title {
  position: relative;
}
@media (max-width: 767px) {
  section#faq .accordion-item .tab-title {
    max-width: 100%;
    padding-right: 80px;
  }
}
section#faq .accordion-item .tab-title:hover {
  cursor: pointer;
}
section#faq .accordion-item .tab-title:hover .openclose .status {
  color: #EB586B;
}
section#faq .accordion-item .tab-title:hover .openclose .status span {
  background: #EB586B;
}
section#faq .accordion-item .tab-title .openclose {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Create the "+" shape by positioning the spans absolutely */
}
section#faq .accordion-item .tab-title .openclose .status {
  color: #EB586B;
  width: 50px;
  height: 50px;
  border: 0;
  font-size: 1.5em;
  position: relative;
  transition: all 0.5s;
}
section#faq .accordion-item .tab-title .openclose .status span {
  position: absolute;
  transition: 300ms;
  background: #A5A4A2;
  border-radius: 2px;
}
section#faq .accordion-item .tab-title .openclose .status span:first-child {
  top: 25%;
  bottom: 25%;
  width: 10%;
  left: 45%;
}
section#faq .accordion-item .tab-title .openclose .status span:last-child {
  left: 25%;
  right: 25%;
  height: 10%;
  top: 45%;
}
@media (max-width: 1399px) {
  section#faq .accordion-item .tab-title .openclose {
    margin: 0;
  }
}
@media (max-width: 767px) {
  section#faq .accordion-item .tab-title .openclose {
    right: 0;
    padding: 5px;
    bottom: unset;
    margin-top: 0;
    max-height: 100px;
    max-width: 80px;
  }
}
section#faq .accordion-item .tab-title .accordion-title span.question {
  display: inline-block;
  width: 100%;
  max-width: 100%;
}
section#faq .accordion-item .tab-title .accordion-title span.question h3 {
  font-size: 26px;
  line-height: 28px;
  font-weight: 700;
  width: 80%;
  max-width: unset;
  color: #003043;
  margin: 0;
  text-transform: none;
  padding: 30px 0;
}
@media (max-width: 1023px) {
  section#faq .accordion-item .tab-title .accordion-title span.question h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  section#faq .accordion-item .tab-title .accordion-title span.question h3 {
    font-size: 20px;
    line-height: 1.5rem;
    letter-spacing: 0.2rem;
    width: 100%;
  }
}
section#faq .accordion-item .tab-content {
  border-top: none;
  font-size: 18px;
  line-height: 33px;
  padding-top: 0px;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  section#faq .accordion-item .tab-content {
    padding-top: 10px;
    flex-direction: column;
  }
}
section#faq .accordion-item .tab-content .image {
  position: relative;
  display: inline-block;
  padding-right: 50px;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  section#faq .accordion-item .tab-content .image {
    padding: 20px;
    max-height: 200px;
  }
}
section#faq .accordion-item .tab-content .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  section#faq .accordion-item .tab-content .image img {
    max-height: 200px;
  }
}
section#faq .accordion-item .tab-content .text {
  width: 100%;
}
section#faq .accordion-item .tab-content .text p {
  max-width: 80%;
  font-size: 18px;
  line-height: 33px;
}
@media (max-width: 1399px) {
  section#faq .accordion-item .tab-content .text p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  section#faq .accordion-item .tab-content .text p {
    font-size: 1rem;
    line-height: 1.3rem;
    max-width: 100%;
  }
}
section#faq .accordion-item .tab-content .text p a {
  color: #EB586B;
  text-decoration: none;
}
section#faq .accordion-item.active .tab-title .openclose .status span {
  transform: rotate(90deg);
  background: #EB586B;
}
section#faq .accordion-item.active .tab-title .openclose .status span:last-child {
  left: 50%;
  right: 50%;
}
section#submissionform {
  background: #B2DBED;
  margin-top: 200px;
  padding: 130px 0 150px;
}
@media (max-width: 1399px) {
  section#submissionform {
    padding: 130px 30px 150px;
  }
}
@media (max-width: 1023px) {
  section#submissionform {
    margin-top: 50px;
    padding: 80px 20px 50px;
  }
}
section#submissionform .container {
  margin: 0 auto;
  width: 100%;
}
section#submissionform .groupphoto {
  border-top-left-radius: 85px;
  width: 100%;
  max-width: 825px;
  margin: -350px auto 100px;
  overflow: hidden;
}
section#submissionform .groupphoto img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  section#submissionform .groupphoto {
    margin: -35vw auto 10vw;
    border-top-left-radius: 45px;
  }
}
section#submissionform h2 {
  font-size: 62px;
  line-height: 57px;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  section#submissionform h2 {
    font-size: 36px;
    line-height: 45px;
    text-align: left;
  }
}
section#submissionform h3 {
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  section#submissionform h3 {
    font-size: 30px;
    line-height: 40px;
    text-align: left;
  }
}
section#submissionform p {
  font-size: 18px;
  line-height: 33px;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  section#submissionform p {
    font-size: 18px;
    line-height: 31px;
    text-align: left;
  }
}

footer {
  background: #000000;
  color: #fff;
  padding: 125px 0 50px;
}
@media (max-width: 1399px) {
  footer {
    padding: 125px 0px 30px;
  }
}
footer .container {
  display: flex;
}
@media (max-width: 1023px) {
  footer .container {
    flex-direction: column;
  }
}
footer .container .contactinfo {
  margin-right: 80px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}
footer .container .contactinfo .logo {
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  footer .container .contactinfo .logo {
    width: 150px;
    margin-bottom: 0;
  }
}
footer .container .contactinfo a.directions {
  color: #fff;
  display: block;
  margin-top: 1rem;
  text-decoration: underline;
}
footer .container .footerlogos {
  width: 100%;
  display: flex;
  justify-content: space-between;
  min-height: unset;
  max-width: unset;
  margin-bottom: 50px;
}
@media (min-width: 1025px) {
  footer .container .footerlogos {
    width: auto;
    margin-bottom: 0;
  }
}
footer .container .footerlogos .waterstone {
  margin: 0 25px 5px 0;
  min-height: 150px;
}
footer .container .footerlogos .waterstone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .container .footerlogos .partners {
  display: flex;
  flex-direction: column;
  max-height: 75px;
  max-width: 140px;
}
footer .container .footerlogos .partners img {
  margin: 5px 0 5px;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
footer .container .footerlogos .partners img.google {
  width: 70px;
}
footer .container .footerlogos .partners img.meta {
  width: 95px;
}
footer .container .footerlogos .partners img.linkedin {
  width: 130px;
}
footer .container .copyright {
  font-size: 0.8rem;
}
@media (max-width: 500px) {
  footer .container .copyright {
    margin-bottom: 1rem;
  }
}
footer .container .rightmenu {
  flex: 1;
  align-content: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer .container .rightmenu ul.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
  list-style: none;
}
footer .container .rightmenu ul.menu li a {
  font-weight: normal;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: underline;
}
footer .container .rightmenu ul.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .container .rightmenu ul.social li {
  display: block;
}
footer .container .rightmenu ul.social li a {
  display: block;
  height: 25px;
  width: 25px;
  margin-left: 15px;
  text-indent: -9999px;
}
footer .container .rightmenu ul.social li a.instagram {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.664' height='24.662' viewBox='0 0 24.664 24.662'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-720.8 -1002.024)'%3E%3Cpath class='a' d='M742.423,1014.362H736.16a2.8,2.8,0,0,0-3.021,3.021v6.228a3.044,3.044,0,0,0,.848,2.252,3.087,3.087,0,0,0,2.207.8h6.194a3.111,3.111,0,0,0,2.232-.8,3.016,3.016,0,0,0,.824-2.222v-6.263a2.822,2.822,0,0,0-3.021-3.021Zm-3.131,9.99a3.88,3.88,0,1,1,3.88-3.88A3.884,3.884,0,0,1,739.292,1024.352Zm4.026-6.974a.881.881,0,1,1,.881-.881A.88.88,0,0,1,743.318,1017.378Z' transform='translate(-6.16 -6.159)'/%3E%3Ccircle class='a' cx='2.492' cy='2.492' r='2.492' transform='translate(730.64 1011.821)'/%3E%3Cpath class='a' d='M733.132,1002.024a12.331,12.331,0,1,0,12.332,12.332A12.333,12.333,0,0,0,733.132,1002.024Zm7.541,15.463a4.365,4.365,0,0,1-1.243,3.216,4.464,4.464,0,0,1-3.2,1.194h-6.194a4.444,4.444,0,0,1-3.174-1.2,4.4,4.4,0,0,1-1.27-3.248v-6.228a4.175,4.175,0,0,1,4.409-4.409h6.263a4.2,4.2,0,0,1,4.409,4.409Z' transform='translate(0)'/%3E%3C/g%3E%3C/svg%3E") center center no-repeat;
}
footer .container .rightmenu ul.social li a.linkedin {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.651' height='24.651' viewBox='0 0 24.651 24.651'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M88.659,1176.5a12.326,12.326,0,1,0,12.325,12.326A12.326,12.326,0,0,0,88.659,1176.5Zm6.864,18.313a1,1,0,0,1-1.017.993H82.786a1,1,0,0,1-1.017-.993v-11.857a1,1,0,0,1,1.017-.992H94.507a1,1,0,0,1,1.017.992Z' transform='translate(-76.333 -1176.497)'/%3E%3Cpath class='a' d='M101.769,1197.783a2.064,2.064,0,0,0-1.873,1.031v.021h-.014a.154.154,0,0,0,.014-.021v-.885H97.82c.027.586,0,6.249,0,6.249H99.9v-3.49a1.427,1.427,0,0,1,.069-.506,1.14,1.14,0,0,1,1.066-.76c.752,0,1.052.573,1.052,1.413v3.344h2.078V1200.6C104.161,1198.675,103.136,1197.783,101.769,1197.783Z' transform='translate(-87.065 -1187.129)'/%3E%3Cpath class='a' d='M92.3,1192.054a1.083,1.083,0,1,0-.028,2.16h.014a1.084,1.084,0,1,0,.014-2.16Z' transform='translate(-83.722 -1184.267)'/%3E%3Crect class='a' width='2.078' height='6.249' transform='translate(7.528 10.801)'/%3E%3C/svg%3E") center center no-repeat;
}
footer .container .rightmenu ul.social li a.facebook {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.652' height='24.65' viewBox='0 0 24.652 24.65'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M588.309,1077.029a12.325,12.325,0,1,0,12.326,12.326A12.326,12.326,0,0,0,588.309,1077.029Zm3.263,12.274h-2.134v7.612h-3.164V1089.3h-1.5v-2.687h1.5v-1.741a2.966,2.966,0,0,1,3.193-3.192l2.343.009v2.61h-1.7a.643.643,0,0,0-.67.731v1.583h2.411Z' transform='translate(-575.983 -1077.029)'/%3E%3C/svg%3E") center center no-repeat;
}
footer .container .rightmenu ul.social li a.twitter {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.651' height='24.65' viewBox='0 0 24.651 24.65'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M287.819,1077.029a12.325,12.325,0,1,0,12.325,12.326A12.326,12.326,0,0,0,287.819,1077.029Zm6.209,9.84c.006.133.009.267.009.4a8.834,8.834,0,0,1-13.6,7.443,6.475,6.475,0,0,0,.741.043,6.232,6.232,0,0,0,3.858-1.33,3.109,3.109,0,0,1-2.9-2.157,3.11,3.11,0,0,0,1.4-.053,3.109,3.109,0,0,1-2.492-3.045c0-.014,0-.026,0-.04a3.106,3.106,0,0,0,1.407.389,3.11,3.11,0,0,1-.961-4.148,8.817,8.817,0,0,0,6.4,3.245,3.108,3.108,0,0,1,5.293-2.833,6.217,6.217,0,0,0,1.973-.754,3.112,3.112,0,0,1-1.366,1.718,6.2,6.2,0,0,0,1.784-.489A6.314,6.314,0,0,1,294.028,1086.87Z' transform='translate(-275.493 -1077.029)'/%3E%3C/svg%3E") center center no-repeat;
}
footer .container .rightmenu ul.social li:first-child a {
  margin-left: 0;
}
footer .legal {
  padding: 40px 0;
  margin-top: 75px;
  border-top: 1px solid #fff;
  font-size: 14px;
  line-height: 20px;
}
section#kemp {
  margin: 100px 0;
}
@media (max-width: 1023px) {
  section#kemp {
    margin: 50px 0;
  }
}
section#kemp .container {
  position: relative;
  max-width: 1000px;
}
@media (max-width: 1023px) {
  section#kemp .container {
    padding: 0;
    width: 100%;
    margin: 0;
  }
}
section#kemp .container .kemplogo {
  position: absolute;
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 85px;
  border: 1px solid #E7E7E9;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10%;
  left: -85px;
}
section#kemp .container .kemplogo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  section#kemp .container .kemplogo {
    position: relative;
    top: 50px;
    left: unset;
    right: 0;
  }
}
section#kemp .container .image {
  width: 50%;
  border-top-right-radius: 80px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  section#kemp .container .image {
    width: 100%;
  }
}
section#kemp .container .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section#kemp .container .content {
  background: #B2DBED;
  padding: 50px 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 60%;
}
@media (max-width: 1023px) {
  section#kemp .container .content {
    position: relative;
    width: 100%;
    top: unset;
    right: unset;
    transform: unset;
  }
}
section#kemp .container .content .title h2 {
  text-align: left;
  font-size: 40px;
  line-height: 48px;
  color: #003043;
  margin-bottom: 10px;
}
section#kemp .container .content .text p {
  margin: 0;
  text-align: left;
  font-size: 18px;
  line-height: 27px;
  color: #003043;
}

section#video {
  background: rgb(235, 235, 234) 0%;
  padding: 75px 125px 125px;
}
@media (max-width: 1023px) {
  section#video {
    padding: 20px 0 50px;
  }
}
section#video .container {
  display: flex;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: 0 auto;
}
section#video .container .play {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  display: inline-block;
  overflow: hidden;
}
section#video .container .play:hover {
  cursor: pointer;
}
section#video .container .play img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
section#video .container .play img.curve.tl {
  object-fit: contain;
  border-top-left-radius: 80px;
}

section#stayinformed {
  background: #fff;
  background-image: url("../images/clouds.jpg"); /* fallback */
  background-image: url("../images/clouds.jpg"), linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(235, 235, 234) 50%, rgb(235, 235, 234) 100%);
  background-repeat: no-repeat;
  background-position: center bottom -250px;
  background-size: 100%;
  padding: 100px 0 120px;
}
@media (max-width: 1399px) {
  section#stayinformed {
    padding: 100px 20px;
  }
}
@media (max-width: 1023px) {
  section#stayinformed {
    padding: 50px 20px;
    background-size: cover;
  }
}
@media (max-width: 1023px) {
  section#stayinformed .container {
    width: 100%;
  }
}
section#stayinformed .container .icon {
  width: 85px;
  height: 85px;
  margin: 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='85.26' height='85.26' viewBox='0 0 85.26 85.26'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_1758' data-name='Rectangle 1758' width='45.259' height='33.025' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Email_Icon' transform='translate(-1364 -694)'%3E%3Cpath id='Path_423' data-name='Path 423' d='M42.63,0A42.63,42.63,0,1,1,0,42.63,42.63,42.63,0,0,1,42.63,0Z' transform='translate(1364 694)' fill='%23eb586b'/%3E%3Cg id='Group_1951' data-name='Group 1951' transform='translate(1384 720.117)'%3E%3Cg id='Group_1950' data-name='Group 1950' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_426' data-name='Path 426' d='M20.2,20.85a4.262,4.262,0,0,0,4.868,0L45.26,6.723V3.314A3.315,3.315,0,0,0,41.946,0H3.314A3.315,3.315,0,0,0,0,3.314V6.723Z' transform='translate(0 0)' fill='%23fff'/%3E%3Cpath id='Path_427' data-name='Path 427' d='M35.147,17.944,47.7,32.074a3.278,3.278,0,0,0,.449-1.635V8.851Z' transform='translate(-2.888 -0.728)' fill='%23fff'/%3E%3Cpath id='Path_428' data-name='Path 428' d='M31.42,19.479,25.829,23.39a5.411,5.411,0,0,1-6.183,0l-5.591-3.91L1.3,33.842a3.281,3.281,0,0,0,2.117.784H42.053a3.287,3.287,0,0,0,2.123-.788Z' transform='translate(-0.107 -1.601)' fill='%23fff'/%3E%3Cpath id='Path_429' data-name='Path 429' d='M0,8.851V30.439a3.284,3.284,0,0,0,.452,1.642L13,17.945Z' transform='translate(0 -0.728)' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center center/contain;
}
@media (max-width: 1023px) {
  section#stayinformed .container .icon {
    margin: 0;
  }
}
section#stayinformed .container h2 {
  text-align: center;
  color: #EB586B;
  font-size: 62px;
  line-height: 91px;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  section#stayinformed .container h2 {
    font-size: 36px;
    line-height: 29px;
    text-align: left;
  }
}
section#stayinformed .container h3 {
  margin: 30px auto;
  text-align: center;
  font-size: 36px;
  line-height: 29px;
}
@media (max-width: 1023px) {
  section#stayinformed .container h3 {
    text-align: left;
  }
}
section#stayinformed .container p {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  max-width: 715px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  section#stayinformed .container p {
    text-align: left;
    max-width: unset;
  }
}
section#stayinformed .container form {
  max-width: 1200px;
  margin: 50px auto 0;
}
section#stayinformed .container form input {
  border: 1px solid #8F8F8F;
}
section#stayinformed .container form input[type=submit] {
  margin: 0 auto;
  padding: 20px 60px;
  font-size: 18px;
  line-height: 19px;
}
section#stayinformed .container form .checkmark {
  border: 1px solid #8F8F8F;
}

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