/* CSS Document */
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Noto+Sans+TC:wght@300;400;500;700&display=swap");
/* SASS Variable */
/* SASS Mixin */
/* Global CSS */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
  color: #333;
  font-family: 'Inter', 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

::-moz-selection {
  background-color: #ea5405;
  color: white;
}

::selection {
  background-color: #ea5405;
  color: white;
}

a {
  color: #ea5405;
}

a:hover {
  color: #ee7637;
  text-decoration: none;
}

.o-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .o-section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.o-section-title--white {
  color: white;
}

.o-orange-line {
  background-image: -webkit-gradient(linear, right top, left top, from(#ea5405), to(#f69b07));
  background-image: linear-gradient(to left, #ea5405, #f69b07);
  border-radius: 4px;
  width: 60px;
  height: 8px;
  position: relative;
}

@media (max-width: 767px) {
  .o-orange-line {
    border-radius: 2.5px;
    width: 30px;
    height: 5px;
  }
}

.o-orange-line::before {
  content: '';
  background-color: #ccc;
  border-radius: 4px;
  width: 24px;
  height: 8px;
  position: absolute;
  top: 0;
  left: calc(60px + 12px);
}

@media (max-width: 767px) {
  .o-orange-line::before {
    border-radius: 2px;
    width: 12px;
    height: 4px;
    left: calc(30px + 6px);
  }
}

.o-orange-line::after {
  content: '';
  background-color: #e6e6e6;
  border-radius: 4px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: calc(60px + 12px + 24px + 12px);
}

@media (max-width: 767px) {
  .o-orange-line::after {
    border-radius: 2px;
    width: 4px;
    height: 4px;
    left: calc(30px + 6px + 12px + 6px);
  }
}

.c-picture-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-picture-modal__thumbnail {
  background-color: #f2f2f2;
  border-radius: 2px;
  display: block;
  padding: 8px;
}

.c-picture-modal__thumbnail:hover {
  background-color: #e6e6e6;
}

.c-picture-modal__thumbnail img {
  border: 1px solid #999;
  border-radius: 2px;
  width: 100%;
  height: auto;
  max-width: 360px;
}

@media (max-width: 767px) {
  .c-picture-modal__thumbnail img {
    max-width: none;
  }
}

.c-picture-modal__view {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  pointer-events: auto;
  position: relative;
}

.c-picture-modal__view img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.c-picture-modal__close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  width: 36px;
  height: 36px;
  opacity: .3;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
}

@media (max-width: 991px) {
  .c-picture-modal__close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 767px) {
  .c-picture-modal__close {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
}

.c-picture-modal__close:hover {
  color: #fff;
  opacity: .5;
}

.u-noscroll {
  overflow: hidden;
}

.u-nobreak {
  word-break: keep-all;
  white-space: nowrap;
  overflow-wrap: normal;
}

.u-overlay {
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.u-mark-orange {
  background-image: -webkit-gradient(linear, right top, left top, from(#ea5405), to(#f69b07));
  background-image: linear-gradient(to left, #ea5405, #f69b07);
  border-radius: 2px;
  color: #fff;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 767px) {
  .u-mark-orange {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* HEADER */
.global-nav {
  width: 100%;
  -webkit-transition: background-color .5s ease-in-out;
  transition: background-color .5s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.global-nav.scrolldown {
  -webkit-box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.15);
}

.global-nav.scrolldown .global-nav__background--orange {
  opacity: 1;
}

.global-nav.scrolldown .global-nav__nav {
  height: 60px;
  padding-bottom: 16px;
}

@media (max-width: 767px) {
  .global-nav.scrolldown .global-nav__nav {
    height: 40px;
    padding-top: 8px;
    padding-bottom: 0px;
  }
}

.global-nav.scrolldown .global-nav__1st-line {
  display: none;
}

@media (max-width: 767px) {
  .global-nav.scrolldown .global-nav__1st-line {
    display: block;
  }
}

.global-nav.scrolldown .global-nav__logo {
  height: 24px;
}

@media (max-width: 767px) {
  .global-nav.scrolldown .global-nav__logo {
    height: 18px;
  }
}

.global-nav.active {
  background-color: rgba(0, 0, 0, 0.9);
}

.global-nav.active .global-nav__background {
  opacity: 0;
}

@media (max-width: 767px) {
  .global-nav.active .global-nav__nav {
    height: 100vh;
  }
}

@media (max-width: 767px) {
  .global-nav.active .global-nav__menu {
    opacity: 1;
  }
}

.global-nav.active .global-nav__close {
  opacity: .5;
}

.global-nav.active .global-nav__close-button {
  display: block;
}

.global-nav__background {
  height: 100%;
  width: 100%;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.global-nav__background--gray {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.global-nav__background--orange {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ea5405), to(#f69b07));
  background-image: linear-gradient(to bottom, #ea5405, #f69b07);
  opacity: 0;
}

.global-nav__nav {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 24px;
  -webkit-transition: height .5s ease-in-out, padding .5s ease-in-out;
  transition: height .5s ease-in-out, padding .5s ease-in-out;
}

@media (max-width: 767px) {
  .global-nav__nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    height: 60px;
    padding-bottom: 0;
    overflow: hidden;
  }
}

.global-nav__brand {
  z-index: 20;
}

.global-nav__logo {
  width: auto;
  height: 30px;
  -webkit-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}

@media (max-width: 767px) {
  .global-nav__logo {
    height: 24px;
  }
}

.global-nav__toggle {
  font-size: 16px;
  display: none;
  z-index: 20;
}

@media (max-width: 767px) {
  .global-nav__toggle {
    display: block;
  }
}

.global-nav__toggle-button {
  color: #fff;
  padding: 4px;
  opacity: .8;
}

.global-nav__toggle-button:hover {
  color: #fff;
  opacity: 1;
}

.global-nav__menu {
  max-height: calc(100vh - 40px - 60px);
  overflow: auto;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

@media (max-width: 767px) {
  .global-nav__menu {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    opacity: 0;
  }
}

.global-nav__1st-line {
  font-size: 13px;
  font-weight: 300;
  text-align: right;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .global-nav__1st-line {
    font-size: 12px;
    text-align: center;
    margin-top: 36px;
    margin-bottom: 24px;
  }
}

.global-nav__1st-line-link {
  color: #fff;
  display: inline-block;
  margin-left: 12px;
  opacity: .7;
}

.global-nav__1st-line-link:first-child {
  margin: 0;
}

.global-nav__1st-line-link:hover {
  color: #fff;
  font-weight: 500;
  opacity: .8;
}

@media (max-width: 767px) {
  .global-nav__1st-line-link {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    display: inline-block;
    padding: 4px 12px;
    margin-left: 12px;
  }
}

.global-nav__2nd-line {
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 767px) {
  .global-nav__2nd-line {
    font-size: 14px;
    text-align: center;
  }
}

.global-nav__2nd-line-link {
  color: #fff;
  display: inline-block;
  margin-left: 24px;
  opacity: .8;
}

.global-nav__2nd-line-link:first-child {
  margin: 0;
}

.global-nav__2nd-line-link:hover {
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  .global-nav__2nd-line-link {
    display: block;
    margin: 0;
    margin-top: 12px;
    padding: 14px 0;
  }
}

.global-nav__close {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100%;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .global-nav__close {
    display: block;
  }
}

.global-nav__close-button {
  color: #fff;
  display: none;
  font-size: 24px;
  padding: 12px;
}

.global-nav__close-button:hover {
  color: #fff;
}

/* Page Headline */
.page-headline {
  height: 720px;
  position: relative;
}

@media (max-width: 767px) {
  .page-headline {
    height: clamp(360px, 60vh, 480px);
  }
}

.page-headline__background {
  background-image: url(../images/ftth-leader-in-taipei-city_lg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .page-headline__background {
    background-image: url(../images/ftth-leader-in-taipei-city_sm.jpg);
  }
}

.page-headline__overlay {
  background-color: #000;
  height: 100%;
  width: 100%;
  opacity: .5;
}

.page-headline__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 80px;
  z-index: 5;
}

@media (max-width: 767px) {
  .page-headline__container {
    padding-top: 40px;
  }
}

.page-headline__headline {
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
  text-align: center;
}

@media (max-width: 767px) {
  .page-headline__headline {
    font-size: clamp(28px, 10vw, 36px);
  }
}

.page-headline__triangle {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}

.page-headline__triangle-left {
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 36px 95vw 0 0;
  border-color: #f69b07 transparent transparent transparent;
  opacity: .8;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .page-headline__triangle-left {
    border-width: 18px 95vw 0 0;
  }
}

.page-headline__triangle-right {
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0 95vw 48px 0;
  border-color: transparent #ea5405 transparent transparent;
  opacity: .8;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  .page-headline__triangle-right {
    border-width: 0 95vw 24px 0;
  }
}

/* About TAIFO */
.about-taifo__container {
  background-color: #fff;
  position: relative;
}

.about-taifo__wrap {
  padding-top: 120px;
  padding-bottom: 120px;
  width: 80%;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .about-taifo__wrap {
    padding-top: -md;
    padding-bottom: -md;
  }
}

@media (max-width: 767px) {
  .about-taifo__wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.about-taifo__side-decoration {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ea5405), to(#f69b07));
  background-image: linear-gradient(to bottom, #ea5405, #f69b07);
  width: 12px;
  height: 25%;
  position: absolute;
  top: 37.5%;
  right: 0;
}

.about-taifo h3 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .about-taifo h3 {
    font-size: 18px;
    margin-top: 36px;
    margin-bottom: 12px;
  }
}

.about-taifo h3:first-of-type {
  margin-top: 24px;
}

.about-taifo p {
  font-size: 18px;
  font-weight: 300;
  margin: 16px 0;
}

@media (max-width: 767px) {
  .about-taifo p {
    font-size: 14px;
    margin: 12px 0;
  }
}

/* Our Advantages */
.our-advantages {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ea5405), to(#f69b07));
  background-image: linear-gradient(to bottom, #ea5405, #f69b07);
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .our-advantages {
    padding-top: -md;
    padding-bottom: -md;
  }
}

@media (max-width: 767px) {
  .our-advantages {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.our-advantages__wrap-outer {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 12px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 12px 4px rgba(0, 0, 0, 0.15);
  padding: 60px 0;
}

@media (max-width: 767px) {
  .our-advantages__wrap-outer {
    padding: 36px 0;
  }
}

.our-advantages__wrap-inner {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}

.our-advantages__accordion a[aria-expanded="true"] .fa-check {
  display: block;
}

.our-advantages__accordion a[aria-expanded="true"] .fa-plus {
  display: none;
}

.our-advantages__accordion a[aria-expanded="false"] .fa-check {
  display: none;
}

.our-advantages__accordion a[aria-expanded="false"] .fa-plus {
  display: block;
}

.our-advantages__accordion-button {
  color: #333;
  display: block;
  margin-top: 12px;
}

.our-advantages__accordion-button:hover {
  color: #ea5405;
}

.our-advantages__accordion-button:first-child {
  margin: 0;
}

.our-advantages__accordion-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f2f2f2;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 24px;
}

@media (max-width: 767px) {
  .our-advantages__accordion-header {
    padding: 8px 12px;
  }
}

.our-advantages__accordion-header h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 767px) {
  .our-advantages__accordion-header h3 {
    font-size: 16px;
  }
}

.our-advantages__accordion-header i {
  font-size: 24px;
  margin-left: 36px;
}

@media (max-width: 767px) {
  .our-advantages__accordion-header i {
    font-size: 16px;
    margin-left: 12px;
  }
}

.our-advantages__accordion-header i.fa-check {
  color: #139E4A;
}

.our-advantages__accordion-header i.fa-plus {
  color: #009E98;
}

.our-advantages__accordion-body {
  font-size: 18px;
  font-weight: 300;
  padding: 24px;
}

@media (max-width: 767px) {
  .our-advantages__accordion-body {
    font-size: 14px;
    padding: 12px;
  }
}

/* Products and Services */
.products-and-services {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #e6e6e6;
}

@media (max-width: 991px) {
  .products-and-services {
    padding-top: -md;
    padding-bottom: -md;
  }
}

@media (max-width: 767px) {
  .products-and-services {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.products-and-services__intro {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .products-and-services__intro {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.products-and-services__list-heading {
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .products-and-services__list-heading {
    font-size: 18px;
  }
}

/* Customer Stories */
.customer-stories__container {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

@media (max-width: 991px) {
  .customer-stories__container {
    padding-top: -md;
    padding-bottom: -md;
  }
}

@media (max-width: 767px) {
  .customer-stories__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.customer-stories__side-decoration {
  background-image: -webkit-gradient(linear, right top, left top, from(#ea5405), to(#f69b07));
  background-image: linear-gradient(to left, #ea5405, #f69b07);
  height: 100%;
  width: calc(50vw - 50% + 10%);
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  z-index: -1;
}

.customer-stories__card {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 12px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 12px 4px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 360px;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .customer-stories__card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.customer-stories__card-img {
  background-size: cover;
  background-position: center;
  -webkit-box-flex: 30%;
      -ms-flex: 30%;
          flex: 30%;
}

@media (max-width: 991px) {
  .customer-stories__card-img {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    height: 360px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media (max-width: 767px) {
  .customer-stories__card-img {
    height: 240px;
  }
}

.customer-stories__card-body {
  -webkit-box-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
  padding: 48px 36px;
}

@media (max-width: 991px) {
  .customer-stories__card-body {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 767px) {
  .customer-stories__card-body {
    padding: 18px 18px;
  }
}

.customer-stories__card-body h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .customer-stories__card-body h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.customer-stories__card-body p {
  font-size: 18px;
  font-weight: 300;
  margin: 18px 0;
}

@media (max-width: 767px) {
  .customer-stories__card-body p {
    font-size: 14px;
    margin: 12px 0;
  }
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
}

.contact-us {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1a1a1a;
  color: #fff;
}

@media (max-width: 991px) {
  .contact-us {
    padding-top: -md;
    padding-bottom: -md;
  }
}

@media (max-width: 767px) {
  .contact-us {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.contact-us .form-control:focus {
  border-color: #ea5405;
  -webkit-box-shadow: 0 0 0 2px rgba(234, 84, 5, 0.25);
          box-shadow: 0 0 0 2px rgba(234, 84, 5, 0.25);
}

.contact-us label {
  font-size: 13px;
  font-weight: 300;
  opacity: .6;
}

@media (max-width: 767px) {
  .contact-us label {
    font-size: 12px;
  }
}

.contact-us__row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .contact-us__row {
    margin-top: 36px;
  }
}

@media (max-width: 767px) {
  .contact-us__col:nth-child(2) {
    margin-top: 48px;
  }
}

.contact-us__info-row {
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .contact-us__info-row {
    margin-bottom: 12px;
  }
}

.contact-us__info-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-us__info-icon i {
  font-size: 18px;
  margin-right: 18px;
}

.contact-us__info-text p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 767px) {
  .contact-us__info-text p {
    font-size: 14px;
  }
}

.contact-us__info-text a {
  display: inline-block;
  margin-left: 4px;
}

.contact-us__heading {
  color: #ea5405;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .contact-us__heading {
    font-size: 18px;
  }
}

.contact-us__submit-button {
  background-image: -webkit-gradient(linear, right top, left top, from(#ea5405), to(#f69b07));
  background-image: linear-gradient(to left, #ea5405, #f69b07);
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 18px;
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
}

@media (max-width: 767px) {
  .contact-us__submit-button {
    font-size: 16px;
  }
}

.contact-us__submit-button:hover {
  border-color: #e6e6e6;
}

.copyright {
  background-color: #1a1a1a;
  padding: 12px 0;
}

.copyright__wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.copyright__brand {
  text-align: center;
}

@media (max-width: 767px) {
  .copyright__brand {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.copyright__brand img {
  height: 14px;
  width: auto;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .copyright__brand img {
    height: 18px;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.copyright__text {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

@media (max-width: 767px) {
  .copyright__text {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    font-size: 12px;
  }
}
/*# sourceMappingURL=main.css.map */