/* style html and body */
body {
  margin: 0;
  padding: 0;

  color: #383838;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-radius: 0;
  border: 0;
  font-size: 100%;
  vertical-align: middle;
}

select {
  background-color: transparent;
  text-indent: 0.01px;
  text-overflow: "";
}

a {
  text-decoration: underline;
  color: inherit;
}

/*a:hover {
  text-decoration: underline;
  color: inherit;
}*/

*:before,
*:after {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  outline: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  font: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

/* main flex container */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.page-wrapper-iframe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  /*overflow: hidden;*/
  background: #fff;
}

/*to center sections*/
.container {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

/*to center text*/
.center-text {
  text-align: center;
  margin-bottom: 30px;
}

/* set padding 40px to each container div*/
.padding-left-right {
  padding: 0 40px;
}

.padding-top-bottom {
  padding: 30px 0;
}

/*header*/
.page-header {
  /* set flex shrink to but header on top */
  flex-shrink: 0;
  max-width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #e3e3e3;
}

.page-main {
  /* set flex grow to make main grow on full height and set footer on bottom */
  flex-grow: 1;
  /*margin-top: 90px;*/
  /*new margin-top padding set on header margin-bottom*/
  /*margin-top: 30px;*/
}

.page-main-iframe {
  flex-grow: 0;
}


/*footer*/
.page-footer {
  /* set flex shrink to but footer on bottom */
  flex-shrink: 0;
  max-width: 100%;
  background-color: #000;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.footer-logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 80%;
}

.fujifilm-logo {
  width: 125px;
  padding-right: 20px;
}

.social-logo {
  width: 20px;
  height: 20px;
}

.footer-social-container {
  display: flex;
  flex-direction: row;
  width: 20%;
  justify-content: space-around;
  align-items: center;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 767px) {
  .padding-left-right {
    padding-left: 20px;
    padding-right: 20px;
  }
  .padding-top-bottom {
    padding: 20px 0;
  }
  .padding-top-footer {
    padding-top: 20px;
  }
  .fujifilm-logo {
    width: 90px;
    padding: 0px;
  }
  .footer-content {
    flex-direction: column-reverse;
  }
  .footer-logo-container {
    flex-direction: column;
  }
  .footer-social-container {
    width: 30%;
  }
}
