@charset "UTF-8";
/* ===================================================================
 *  Main Stylesheet 13-11-2017
 *  00. reset
 *  01. webfonts and iconfonts
 *  02. typography / base style overrides
 *  03. grid
 *  04. preloader
 *  05. header & Nav
 *  06. general theme styles & components
 *  07. forms and buttons
 *  08. common and reusable styles
 *  09. home
 *  10. about
 *  11. services
 *  12. portfolio
 *  13. article
 *  14. work
 *  15. contact
 *  16. footer
 *  17. Media Queries
 *  color: 
=================================================================== */
/* reset */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins,
kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0; }

fieldset, img, object {
  border: 0;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  min-width: 100%; }

ul, ol {
  list-style-type: none;
  list-style-image: none; }

a {
  text-decoration: none;
  outline: none;
  vertical-align: baseline;
  background: transparent; }

article, aside, figure, footer, header, nav, section, details, summary {
  display: block; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th {
  font-weight: bold;
  vertical-align: bottom; }

small, .small {
  font-size: 70%; }

strong {
  font-weight: bold; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

input, textarea {
  padding: 6px 10px;
  line-height: 28px; }

label, input[type=button], input[type=submit], input[type=file], button {
  cursor: pointer;
  outline: 0; }

button, input, select, textarea {
  margin: 0;
  outline: 0; }

button {
  width: auto;
  overflow: visible; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

.clear {
  clear: both; }

.clearfix:after, .article_item:after, .topnav:after {
  content: ".";
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden; }

/* reset end */
/* ===================================================================
 *  01. webfonts and iconfonts
 font-family: 'Quattrocento', serif;
 font-family: 'Spectral', serif;
 font-family: 'Rubik', sans-serif;
 font-family: 'Abhaya Libre', serif;
=================================================================== */
body, button, input, select, textarea, .intro small {
  font-family: 'Spectral', Helvetica, Arial, Microsoft JhengHei, "微軟正黑體", LiHei, "黑體", PMingLiu,"新細明體", sans-serif; }

.main-header, .sub-header, .intro h1, .story h2, .article.done h2 {
  font-family: Noto Serif,PT Serif,"source-han-serif-tc",Songti TC,serif;
  font-weight: 700;
  font-family: source-han-serif-tc; }

html {
  font-size: 15px; }

/* ===================================================================
 *  02. base style overrides
=================================================================== */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 400; }

h1, .h1 {
  font-size: 2.5em; }

h2, .h2 {
  font-size: 1.75em; }

h3, .h3 {
  font-size: 1.3em; }

h4, .h4 {
  font-size: 1.05em; }

h5 {
  font-size: 1em; }

body {
  background-color: rgba(0, 0, 0, 0.1);
  color: #212121;
  position: relative;
  width: 100%; }

a, a:visited {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-property: background, border-radius;
  -o-transition-property: background, border-radius;
  transition-property: background, border-radius;
  -webkit-transition-duration: .2s, 1s;
  -o-transition-duration: .2s, 1s;
  transition-duration: .2s, 1s;
  -webkit-transition-timing-function: linear, ease-in;
  -o-transition-timing-function: linear, ease-in;
  transition-timing-function: linear, ease-in;
  -webkit-transition-delay: 0s, 1s;
  -o-transition-delay: 0s, 1s;
  transition-delay: 0s, 1s;
  /* text-decoration: underline */ }

a:link, a:visited {
  color: #FFF;
  text-decoration: underline;
  font-weight: 700; }

a:hover, a:focus {
  color: #CE0909; }

a.line {
  text-decoration: underline; }

/* ===================================================================
 *  03. grid & general theme styles
 * 1180 CSS Grid System - Fluid by Chris Blackwell / chrisblackwell.me
 * ------------------------------------------------------------------- */
.wrap {
  width: 92%;
  margin: 0 auto; }

.row {
  margin: 0 auto;
  padding: 0 24px; }

.row:after {
  content: "";
  display: table;
  clear: both; }

.flexbox {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

/* Sets default values on all columns */
[class*="span"] {
  margin-right: 2%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

[class*="span"]:last-child {
  margin-right: 0; }

.span1 {
  width: 6.5%; }

.span2 {
  width: 15%; }

.span3 {
  width: 23.5%; }

.span4 {
  width: 32%; }

.span5 {
  width: 40.5%; }

.span6 {
  width: 49%; }

.span7 {
  width: 57.5%; }

.span8 {
  width: 66%; }

.span9 {
  width: 74.5%; }

.span10 {
  width: 83%; }

.span11 {
  width: 91.5%; }

.span12, .grid12 {
  width: 100%;
  float: none;
  clear: both; }

/* no space*/
.grid-full [class*="grid"] {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.grid1 {
  width: 8.33333333%; }

.grid2 {
  width: 16.6666667%; }

.grid3 {
  width: 25%; }

.grid4, .side-content {
  width: 33.3333333%; }

.grid5 {
  width: 41.6666667%; }

.grid6, .main-content {
  width: 50%; }

.grid7 {
  width: 58.333333%; }

.grid8 {
  width: 66.6666667%; }

.grid9 {
  width: 75%; }

.grid10 {
  width: 83.333333%; }

.grid11 {
  width: 91.6666667%; }

.item-block {
  padding: 24px; }

.main-content, .side-content {
  position: relative; }

/* ===================================================================
 *  04. Preloader
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0F1215;
  z-index: 800;
  height: 100%;
  width: 100%; }

.no-js #preloader, .oldie #preloader {
  display: none; }

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  padding: 0;
  background-color: #f9a828;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out; }

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

/* 捐款進度 */
.donation-progress {
  font-family: 'Rubik', sans-serif;
  font-size: 1.25em;
  position: absolute;
  right: 5%;
  bottom: 2em;
  width: 20%;
  text-align: right;
  color: white;
  z-index: 49;
  text-shadow: 0 0 6px #333; }
  .donation-progress h3, .donation-progress h4 {
    margin: 0 auto .25em; }
  .donation-progress .donation-current, .donation-progress .donation-total strong {
    font-size: 2.4em;
    font-weight: 900; }

.skillbar {
  position: relative;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  background: #eee;
  height: 35px;
  border-radius: 0 5px 5px 0;
  -webkit-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color; }

.skillbar-title {
  position: absolute;
  top: 0;
  left: -72px;
  font-weight: 400;
  font-size: 13px;
  color: #ffffff;
  border-radius: 3px 0 0 3px;
  background: #D90000; }

.skillbar-title span {
  display: block;
  background: rgba(0, 0, 0, 0.25);
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  border-radius: 3px 0 0 3px;
  text-shadow: 0 0 0; }

.skillbar-bar {
  height: 35px;
  width: 0px;
  background: #D90000;
  border-radius: 0 5px 5px 0; }

.skill-bar-percent {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 13px;
  height: 35px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 0; }

.work-door .skillbar-title {
  background: #A3A146; }

.work-door .skillbar-bar {
  background: #A3A146; }

.work-door .skillbar-bar-percent {
  background: #B3B267; }

.work-kitchen .skillbar-title {
  background: #46848A; }

.work-kitchen .skillbar-bar {
  background: #46848A; }

.work-kitchen .skillbar-bar-percent {
  background: #55A1A8; }

.work-layout .skillbar-title {
  background: #3F89BF; }

.work-layout .skillbar-bar {
  background: #3F89BF; }

.work-layout .skillbar-bar-percent {
  background: #619ECA; }

.work-clean .skillbar-title {
  background: #78A04D; }

.work-clean .skillbar-bar {
  background: #78A04D; }

.work-clean .skillbar-bar-percent {
  background: #90B16D; }

.work-light .skillbar-title {
  background: #F06423; }

.work-light .skillbar-bar {
  background: #F06423; }

.work-light .skillbar-bar-percent {
  background: #FFD700; }

.work-wall .skillbar-title {
  background: #5A413B; }

.work-wall .skillbar-bar {
  background: #5A413B; }

.work-wall .skillbar-bar-percent {
  background: #7B6762; }

/* ===================================================================
 *  05. header & Nav
 * ------------------------------------------------------------------- */
#header {
  position: fixed;
  right: 5%;
  top: 7.5%;
  z-index: 99;
  width: 48px; }

.main-logo, .article.done h2 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 900;
  position: relative;
  color: #E90000; }
  .main-logo small, .article.done h2 small {
    display: block;
    font-size: .6em; }
  .main-logo:after, .article.done h2:after {
    content: "";
    position: absolute;
    bottom: 15%;
    left: -1.75em;
    background: url("../images/MZQY-3.png") 0 0 no-repeat;
    background-size: 48px;
    width: 48px;
    height: 48px; }

.sub-logo {
  margin-top: 1em;
  text-align: center;
  font-weight: 900;
  font-size: 1.8em; }
  .sub-logo small {
    display: block;
    font-size: .7em; }

/*----- Tabs -----*/
.tabs {
  width: 92%;
  margin: 2em auto 1em;
  text-align: center;
  max-width: 600px; }

/*----- Tab Links -----*/
.tab-links li {
  float: left;
  width: 50%;
  text-align: center; }

.tab-links a {
  padding: 10px 0;
  display: block;
  font-weight: 600;
  color: #757575;
  -webkit-transition: all linear 0.15s;
  -o-transition: all linear 0.15s;
  transition: all linear 0.15s;
  background: transparent;
  border-radius: 5px 5px 0 0; }

.tab-links a:hover {
  color: #000; }

.tab-links li.active a, .tab-links li.active a:hover {
  color: #000;
  background: #FFF; }

/*----- Content of Tabs -----*/
.tab-content {
  padding: 15px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.15);
  background: #FFF;
  clear: both; }

.tab {
  display: none; }

.tab.active {
  display: block; }

/* ===================================================================
 *  06. general theme styles & components
=================================================================== */
#index {
  position: relative; }

.KeyVision {
  position: fixed;
  height: 100vh;
  right: -10%;
  top: -50%;
  z-index: 1; }
  .KeyVision img {
    height: 100%;
    max-width: inherit;
    min-width: inherit; }

#fullpage > .section {
  height: 100vh;
  overflow: hidden;
  position: relative; }

#fp-nav ul li a span, .fp-slidesNav ul li a span {
  background: #D90000 !important; }

.fp-slide {
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out; }

.fp-slide.active {
  visibility: visible;
  opacity: 1;
  z-index: 1; }

#index .section .main-banner {
  position: absolute;
  overflow: hidden;
  width: 100%;
  top: 0; }
  #index .section .main-banner img {
    max-width: inherit;
    min-width: inherit;
    width: 100%; }

#index .section .intro {
  position: absolute;
  left: 6%;
  bottom: 3.5em;
  color: #FFF;
  z-index: 9;
  width: 40%;
  text-shadow: 0 0 5px #333; }
  #index .section .intro .work-description {
    font-size: 1em;
    line-height: 1.7em;
    margin: 1em auto 2.4em;
    text-align: justify;
    text-justify: distribute; }
    #index .section .intro .work-description strong {
      font-size: 1.15em; }
    #index .section .intro .work-description small {
      text-align: left; }

#index .section.work-about {
  overflow: auto; }
  #index .section.work-about .container {
    height: auto; }

#story .slide {
  overflow: hidden;
  width: 100vw !important; }
  #story .slide img {
    max-width: inherit;
    min-width: inherit;
    width: 100%; }

#index .section.work-about .intro {
  top: 24%; }

#donate .side-content .container {
  padding: 0 36px 36px 0;
  position: relative; }

#thank .article.done {
  margin: 12.5% auto 0;
  text-align: center;
  width: 600px; }
  #thank .article.done h2 {
    color: white;
    margin: 0 auto 2em;
    line-height: 2em; }
    #thank .article.done h2:after {
      content: none; }
  #thank .article.done a {
    position: relative;
    margin: 1em 5px 0; }
  #thank .article.done #footer {
    position: absolute;
    bottom: 1em;
    text-align: center;
    width: 100%;
    color: white; }

.fixed-sidebar {
  position: fixed;
  height: 100vh;
  width: 33.3333333%;
  overflow: hidden; }
  .fixed-sidebar img {
    max-width: inherit;
    min-width: inherit;
    height: 100vh;
    left: -33.33333%;
    position: relative; }

/* ===================================================================
 *  07. forms and buttons
 * ------------------------------------------------------------------- */
.supportform {
  width: 95%;
  margin: 1em auto .5em;
  clear: both;
  text-align: center; }
  .supportform .item_field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: .75em auto; }
    .supportform .item_field label:first-child {
      width: 80px;
      line-height: 42px;
      font-size: .875em;
      -webkit-box-flex: .2;
      -webkit-flex: .2;
      -ms-flex: .2;
      flex: .2;
      text-align: right;
      margin: 0 5px 0 0; }
    .supportform .item_field select, .supportform .item_field input[type="text"], .supportform .item_field input[type="email"], .supportform .item_field input[type="date"], .supportform .item_field input[type="tel"] {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
      font-size: .9em;
      width: 90%; }
    .supportform .item_field input {
      border-radius: 4px;
      border: #AAA 1px solid; }
    .supportform .item_field.row {
      margin: -6px 0 12px;
      padding: 0 0 0 75px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .supportform .item_field.row input:first-child {
        -webkit-box-flex: .25;
        -webkit-flex: .25;
        -ms-flex: .25;
        flex: .25;
        width: 60px;
        margin-right: 5px; }
  .supportform .button {
    background: #D90000;
    margin: 15px auto 30px;
    font-size: 16px;
    width: 100%;
    border: none;
    line-height: 40px;
    color: white; }
    .supportform .button:hover {
      background: #A90000; }
  .supportform select {
    height: 40px;
    background: #FFF;
    border-radius: 0; }
  .supportform h4 {
    border-left: 3px #D90000 solid;
    margin-bottom: 15px;
    padding-left: 10px;
    text-align: left;
    font-weight: 900; }

.moremore {
  padding: 2em 0;
  text-align: left;
  font-size: .875em; }
  .moremore .info .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: .75em auto 1.25em; }
    .moremore .info .container h5 {
      margin-right: 1em;
      padding: .5em 1em;
      background: #CCC; }

/* ===================================================================
 *  08. common and reusable styles
 * ------------------------------------------------------------------- */
.margin-top-24 {
  margin-top: 4em; }

.button-bacis {
  display: inline-block;
  color: #fff;
  padding: 0 36px;
  text-align: center;
  line-height: 44px;
  font-weight: 400;
  font-size: 1.25em;
  text-shadow: 0 0 0; }
  .button-bacis.mini {
    line-height: 21px;
    padding: 0 8px; }
  .button-bacis:hover {
    color: #FFF; }

.btn-green {
  border: 1px solid #2DC09A; }
  .btn-green:hover {
    background-color: #239678; }

.btn-gray {
  border: 1px solid #b3b3b3; }
  .btn-gray:hover {
    background-color: #AAA; }

.btn-black {
  border: 1px solid #000; }
  .btn-black:hover {
    background-color: #000; }

.btn-red, a.btn-red {
  border: 2px solid #D90000;
  color: #D90000;
  text-decoration: none; }
  .btn-red:hover, a.btn-red:hover {
    color: white;
    background-color: #D90000; }

.btn-white, a.btn-white {
  border: 2px solid white;
  color: white;
  text-decoration: none; }
  .btn-white:hover, a.btn-white:hover {
    color: white;
    background-color: #D90000;
    border: 2px solid #D90000; }

.scroolto {
  margin: 0 auto;
  position: absolute;
  bottom: 8%;
  width: 100%; }

.scroolto a {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: .9em;
  height: 48px;
  border-radius: 100%;
  line-height: 40px;
  color: #D90000;
  text-decoration: none; }
  .scroolto a .fa {
    display: block;
    margin: 0 auto; }

.scroolto a span {
  background: url("../images/arrow_44.gif") 5px -44px no-repeat;
  display: block;
  font-size: 1.8em;
  margin: 0 auto 10px;
  width: 48px;
  height: 48px;
  text-indent: -9999em; }

/* ===================================================================
 *  09. layout
 * ------------------------------------------------------------------- */
/* ===================================================================
 *  16. footer
 * ------------------------------------------------------------------- */
#footer .wrapper {
  padding: 10px 0px 15px; }

#footer .footer-social li {
  display: inline-block;
  margin: 10px 10px 0 0;
  font-size: 2.5em;
  color: #D90000; }

#footer .footer-social img {
  width: 30px;
  position: relative;
  top: 2px; }

#footer .link li {
  background: url("../images/gray_line.gif") right 13px no-repeat;
  display: inline-block;
  padding: 10px 10px 10px 5px;
  position: relative;
  font-size: .875em; }

#footer .link li:first-child {
  padding-left: 0; }

#footer .link li:last-child {
  background: none;
  padding-right: 0; }

.mobile {
  display: none; }

/* ===================================================================
 *  17. Media Queries - (responsive)
 * ------------------------------------------------------------------- */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* Safari and Chrome rules here */ }

/* desktop */
@media (max-width: 1366px) {
  #header .main-logo {
    font-size: 2em; } }

@media (max-height: 600px) {
  #header {
    top: 18px; }
    #header .main-logo {
      font-size: 1.8em; } }

/* Tablet */
/* ----------- iPad mini ----------- */
/* Portrait and Landscape */
/* Portrait */
/* ----------- iPad 3 and 4 ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/* Mobile */
@media only screen and (min-device-width: 320px) and (max-device-width: 736px) {
  /* display none in mobile */
  .desktop {
    display: none;
    height: auto; }
  .fp-section.fp-table, .fp-slide.fp-table, .mobile {
    display: block !important; }
  .grid-full [class*="grid"] {
    float: none;
    width: 100%; }
  .onepage, .onepage body, .onepage .outwrapper, .onepage .maincontent, #fullpage, .fp-tableCell, .fp-scrollable {
    height: auto !important;
    overflow: hidden; }
  html {
    font-size: 13px; }
  #header {
    position: absolute;
    top: 20px;
    right: 2.5%;
    width: 60px; }
    #header .main-logo {
      font-size: 22.5px; }
      #header .main-logo small {
        display: block;
        font-size: .65em; }
      #header .main-logo:after {
        background-size: 32px;
        width: 32px;
        height: 32px; }
  #index .section {
    width: 100%;
    height: auto !important;
    overflow: hidden; }
    #index .section .main-banner {
      position: relative; }
      #index .section .main-banner img {
        width: 180%;
        margin: 0 -40%;
        position: relative; }
    #index .section .intro {
      position: static;
      left: inherit;
      bottom: inherit;
      color: #333;
      width: 85%;
      margin: .75em auto 1.25em;
      padding-bottom: 2em;
      text-shadow: 0 0 0; }
      #index .section .intro h2 {
        position: absolute;
        top: 2.5%;
        right: 25px;
        color: #FFF;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-weight: 900;
        font-family: Noto Serif,PT Serif,"source-han-serif-tc",Songti TC,serif;
        font-size: 2.1em;
        text-shadow: 0 0 6px #333;
        height: 210px; }
      #index .section .intro .work-description {
        font-size: 1.3em;
        margin: 2em auto 1em;
        line-height: 1.8em; }
        #index .section .intro .work-description a {
          color: #000; }
  .donation-progress {
    position: absolute;
    right: 5%;
    bottom: inherit;
    top: 36%;
    width: 72%; }
    .donation-progress h3 {
      margin: 0 auto .25em; }
    .donation-progress .tip {
      margin: -10px 0 0; }
  .KeyVision {
    position: absolute;
    height: auto;
    width: 50%;
    right: -24%;
    top: -2.5%;
    z-index: 1; }
    .KeyVision img {
      height: inherit;
      width: 100%; }
  #index #story .intro h2 {
    position: relative;
    top: inherit;
    right: inherit;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: center;
    margin: 1em auto -.5em;
    color: #000;
    text-shadow: 0 0 0;
    height: auto; }
  #index #work .intro h2 {
    height: 300px; }
  #index #story .main-banner img {
    width: 240%;
    margin: 0 -110%; }
  #index #work-about a {
    color: #000; }
  #story .donation-progress {
    top: 38%; }
  .button-bacis {
    margin: 1em auto 0;
    width: 75%; }
  #fp-nav.left {
    left: 0 !important; }
  #fullpage #thank.section {
    overflow: auto !important; }
    #fullpage #thank.section .main-banner {
      position: relative; }
      #fullpage #thank.section .main-banner img {
        width: 180%;
        margin: 0 -40%;
        position: relative;
        max-width: inherit;
        min-width: inherit; }
    #fullpage #thank.section .article.done {
      margin: 7.5% auto 4em;
      text-align: center;
      width: 100%; }
      #fullpage #thank.section .article.done h2 {
        color: #000;
        margin: 1em auto; }
      #fullpage #thank.section .article.done a {
        color: #D90000;
        border-color: #D90000; }
    #fullpage #thank.section #footer {
      position: relative;
      color: #000;
      text-align: center; }
      #fullpage #thank.section #footer .link {
        line-height: 15px; }
      #fullpage #thank.section #footer a {
        color: #000; }
  .supportform {
    font-size: 1.1em; }
    .supportform .button {
      -webkit-appearance: none; }
    .supportform .item_field select, .supportform .item_field input[type="text"], .supportform .item_field input[type="email"], .supportform .item_field input[type="tel"] {
      font-size: 1.1em; } }

@media screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  html {
    font-size: 12px; }
  .supportform .item_field label:first-child {
    display: none; }
  .supportform .item_field label[style] {
    display: inline-block;
    -webkit-box-flex: .5;
    -webkit-flex: .5;
    -ms-flex: .5;
    flex: .5;
    text-align: left; }
  .supportform .item_field.row {
    padding: 0; } }

@media screen and (max-width: 480px) {
  html {
    font-size: 11px; } }

/* ----------- iPhone 4 and 4S ----------- */
/* Portrait */
/* Landscape */
/* ----------- iPhone 5 and 5S ----------- */
/* Portrait */
/* Landscape */
/* ----------- iPhone 6 ----------- */
/* Portrait */
/* Landscape */
/* ----------- iPhone 6+ ----------- */
/* Portrait */
/* Landscape */
