/* Scss Document */
@-webkit-keyframes MouseScrollDot {
  0% {
    top: 15%;
  }
  50% {
    top: 35%;
  }
  100% {
    top: 15%;
  }
}
@keyframes MouseScrollDot {
  0% {
    top: 15%;
  }
  50% {
    top: 35%;
  }
  100% {
    top: 15%;
  }
}

@-webkit-keyframes loadingCircle {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(0.5, 0.5);
            transform: scale(0.5, 0.5);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes loadingCircle {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(0.5, 0.5);
            transform: scale(0.5, 0.5);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

body {
  position: relative;
  margin: 0px;
  padding: 0px;
  background-color: #F8F8F8;
}

body * {
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body h1, body h2, body h3, body p, body span, body a, body li {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 1.6px;
  margin: 0px;
  font-family: Helvetica, Arial, "Microsoft JhengHei", sans-serif;
}

body h1, body h2, body h3 {
  letter-spacing: 4.8px;
  margin-bottom: 10px;
}

body a {
  display: block;
  text-decoration: none;
  color: inherit;
}

body a:hover, body a:focus {
  text-decoration: none;
  color: inherit;
}

body ul, body ol, body li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

body .hidden {
  display: none;
}

body .facebookLogo, body .socialShareFloat section div .facebookLogo, .socialShareFloat section div body .facebookLogo {
  width: 28px;
  height: 23px;
  background-image: url(../images/fb-logo-outline.png);
}

body .whatsappIcon {
  width: 24px;
  height: 24px;
  background-image: url(../images/whatsapp-outline.png);
}

body .emailIcon, body .socialShareFloat section div .emailIcon, .socialShareFloat section div body .emailIcon {
  width: 26px;
  height: 22px;
  background-image: url(../images/email-icon.png);
}

header, main, footer, .socialShareFloat {
  position: relative;
  background-color: #FFFFFF;
  width: 100%;
}

header section, main section, footer section, .socialShareFloat section {
  max-width: 1280px;
  margin: 0 auto;
  display: block;
}

header {
  z-index: 1;
  position: fixed;
  background-color: transparent;
  padding-top: 30px;
  padding-left: 15px;
}

header section .logo {
  width: 85px;
}

#myVideo {
  position: relative;
  width: 100%;
}

main .ecardSupplement {
	margin: auto;
	width: 50%;
	padding: 10px;
}

main .ecardSupplement div {
	margin: auto;
	width: 25%;
	padding: 10px;
}

.socialShareFloat {
  /*position: -webkit-sticky;
	position: sticky;*/
  position: fixed;
  z-index: 1;
  background-color: transparent;
  margin-top: 30px;
}

.socialShareFloat section {
  position: relative;
}

.socialShareFloat section div {
  max-width: 195px;
  width: 100%;
  border-radius: 100px;
  padding: 10px 20px;
  text-align: center;
  float: right;
  background-color: rgba(255, 255, 255, 0.5);
}



.socialShareFloat section div > span {
  position: relative;
  display: inline-block;
  font-size: 0.875em;
  letter-spacing: 0px;
  top: -4px;
  color: #fff;
}

.socialShareFloat section div .shareBtn {
  position: relative;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 5px;
  top: 2px;
}

.socialShareFloat section div .shareBtn span {
  display: none;
}

footer {
  /*position: -webkit-sticky;
	position: sticky;*/
  background: #F8F8F8;
}

footer section {
  padding: 50px 15px;
  position: relative;
}

footer section .logo a img {
  max-width: 110px;
  max-height: 60px;
  display: block;
  margin: 0 auto;
}

footer section .socialBar {
  position: absolute;
  background: #FFFFFF;
  padding: 20px;
  text-align: center;
  width: 640px;
  top: 48px;
  right: 15px;
}

footer section .socialBar p {
  position: relative;
  font-size: 1.2em;
  font-weight: 600;
  color: #4267B2;
  margin: 0 10px 0 30px;
  display: inline-block;
}

footer section .socialBar p:before {
  content: " ";
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  left: -30px;
  background-image: url(../images/fb-logo.png);
  background-size: contain;
}

footer section .socialBar p:after {
  content: " ";
  position: relative;
  display: inline-block;
  margin: 0 0px 0 20px;
  background-color: #A1A1A1;
  width: 1px;
  height: 16px;
}

footer section .socialBar ol {
  display: inline-block;
}

footer section .socialBar ol li {
  display: inline-block;
  margin: 0 10px;
}

footer section .socialBar ol li a.etnet {
  color: #27BDBE;
}

footer section .socialBar ol li a.diva {
  color: #862E77;
}

footer section .socialBar ol li a.health {
  color: #7CD858;
}

footer section nav ul li {
  display: inline-block;
  margin: 30px 25px 10px;
}

footer section nav ul li:first-child {
  margin: 30px 25px 10px 0;
}

footer section nav ul li a {
  font-size: 0.875em;
  position: relative;
}

footer section nav ul li a:after {
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  content: " ";
  display: block;
  width: 0%;
  height: 3px;
  position: absolute;
  background-color: #A1A1A1;
}

footer section nav ul li a:focus {
  color: #000000;
  text-decoration: none;
}

footer section nav ul li a:hover:after, footer section nav ul li a:focus:after {
  width: 100%;
}

footer section .disclaimer p {
  display: block;
  font-size: 0.75em;
  color: #A1A1A1;
  font-style: italic;
  margin-top: 20px;
  font-size: 0.875em !important;
  letter-spacing: 0px;
  text-align: center;
}

body.etnet footer section .logo a img {
  margin: inherit;
}

body.etnet footer section .disclaimer p {
  text-align: left;
}

body.etwealth footer section .logo a img {
  max-width: 150px;
  max-height: 75px;
}

body.ettrade footer section .logo a img {
  max-width: 180px;
  max-height: 85px;
}

body.eprc footer section .logo a img {
  max-width: 120px;
  max-height: 65px;
}

body.eprc_dm footer section .logo a img {
  max-width: 70px;
  max-height: 85px;
}

@media (max-width: 991px) {
  h1, h2, h3, p, span, a, li {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
  }
  h1, h2, h3 {
    letter-spacing: 4.4px;
    margin-bottom: 10px;
  }
  header section, main section, footer section, .socialShareFloat section {
    max-width: 1280px;
    margin: 0 auto;
    display: block;
  }
  header {
    z-index: 1;
    position: fixed;
    background-color: transparent;
    padding-top: 30px;
    padding-left: 15px;
  }
  main .eCardContainer figure img {
    min-height: inherit;
  }
  footer {
    background: #F8F8F8;
  }
  footer section {
    padding: 50px 15px;
    position: relative;
  }
  footer section .logo a img {
    display: block;
  }
  footer section .socialBar {
    position: absolute;
    background: #FFFFFF;
    padding: 20px;
    text-align: center;
    width: 640px;
    top: 48px;
    right: 15px;
  }
  footer section .socialBar p {
    position: relative;
    font-size: 1.3em;
    font-weight: 600;
    color: #4267B2;
    margin: 0 10px 0 30px;
    display: inline-block;
  }
  footer section .socialBar p:before {
    content: " ";
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    left: -30px;
    background-image: url(../images/fb-logo.png);
    background-size: contain;
  }
  footer section .socialBar p:after {
    content: " ";
    position: relative;
    display: inline-block;
    margin: 0 0px 0 20px;
    background-color: #A1A1A1;
    width: 1px;
    height: 16px;
  }
  footer section .socialBar ol {
    display: inline-block;
  }
  footer section .socialBar ol li {
    display: inline-block;
    margin: 0 10px;
  }
  footer section .socialBar ol li a.etnet {
    color: #27BDBE;
  }
  footer section .socialBar ol li a.diva {
    color: #862E77;
  }
  footer section .socialBar ol li a.health {
    color: #7CD858;
  }
  footer section nav ul li {
    display: inline-block;
    margin: 30px 25px 10px;
  }
  footer section nav ul li:first-child {
    margin: 30px 25px 10px 0;
  }
  footer section nav ul li a {
    font-size: 0.875em;
    position: relative;
  }
  footer section nav ul li a:focus {
    color: #000000;
    text-decoration: none;
  }
  footer section nav ul li a:hover:after, footer section nav ul li a:focus:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    background-color: #A1A1A1;
  }
  footer section .disclaimer p {
    font-size: 0.875em !important;
    letter-spacing: 0px;
  }
}

@media (max-width: 800px) {
  footer {
    background: #F8F8F8;
  }
  footer section {
    padding: 50px 15px;
    position: relative;
  }
  footer section .logo a img {
    display: block;
  }
  footer section .socialBar {
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    margin: 30px 0px 0px 0;
  }
  footer section .socialBar p:after {
    content: " ";
    display: none;
  }
  #myVideo {
    width: 150%;
    left: -25%;
  }
}

@media (max-width: 550px) {
  .socialShareFloat {
    position: relative;
    margin-top: 0;
  }
  header {
    display: none;
  }
  footer section .logo a img {
    margin: 0 auto !important;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav ul {
    margin: auto;
  }
  body.etnet footer section .disclaimer p {
    text-align: center;
  }
  body {
    overflow-x: hidden;
  }
  .socialShareFloat section div > span {
    color: #333;
  }
  .socialShareFloat section div {
    float: inherit;
    margin: auto;
  }
}

@media (max-width: 420px) {
  footer {
    background: #F8F8F8;
  }
  footer section {
    padding: 50px 15px;
    position: relative;
  }
  footer section .logo a img {
    display: block;
    margin: 0 auto;
  }
  footer section .socialBar {
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    margin: 30px 0px 0px 0;
  }
  footer section .socialBar p {
    display: block;
  }
  footer section .socialBar p:before {
    content: " ";
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    left: 14px;
    top: -1px;
    background-image: url(../images/fb-logo.png);
    background-size: contain;
  }
  footer section .socialBar p:after {
    content: " ";
    display: none;
  }
  footer section .socialBar ol {
    display: inline-block;
  }
  footer section .socialBar ol li {
    display: block;
    width: 100%;
    margin: 20px auto;
  }
  footer section .socialBar ol li:last-child {
    margin: 20px 0 0px;
  }
  footer section .socialBar ol li a.etnet {
    color: #27BDBE;
  }
  footer section .socialBar ol li a.diva {
    color: #862E77;
  }
  footer section .socialBar ol li a.health {
    color: #7CD858;
  }
  footer section nav ul li {
    display: inline-block;
    margin: 10px;
  }
  footer section nav ul li:first-child {
    margin: 10px;
  }
  footer section nav ul li a {
    font-size: 0.875em;
    position: relative;
  }
  footer section nav ul li a:focus {
    color: #000000;
    text-decoration: none;
  }
  footer section nav ul li a:hover:after, footer section nav ul li a:focus:after {
    content: " ";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    background-color: #A1A1A1;
  }
  footer section .disclaimer p {
    font-size: 0.875em !important;
    letter-spacing: 0px;
  }
}
/*# sourceMappingURL=style.css.map */