@charset "UTF-8";
/*-----------------------------------------------------------------------------
 * [TABLE OF CONTENTS]
 *    +common
 *    +header
 *		=
 *    +main
 *		=
 *    +footer
 *		=
 *----------------------------------------------------------------------------- */
/*-----------------------------------------------------------------------------
 * [TABLE OF CONTENTS]
 *    +Breakpoint
 *    +Color
 *----------------------------------------------------------------------------- */
/* +Breakpoint
 **---------------------------------------------------------------------------- */
/* +Color
 **---------------------------------------------------------------------------- */
/*-----------------------------------------------------------------------------
 * [TABLE OF CONTENTS]
 *    +Breakpoint
 *----------------------------------------------------------------------------- */
/* +Breakpoint
 **---------------------------------------------------------------------------- */
/* 引用範例：
  @include corner(120px,120px,url(../images/corner-shape-green.svg))
  代表：寬度120px，高度120px，背景圖片為corner-shape-green.svg */
/* +common
 **---------------------------------------------------------------------------- */
/**
 **
 ** =Typography
 **
 ** */
h1, .h1 {
  display: none;
}

h2, .h2 {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: normal;
  text-align: left;
  color: #152129;
}

h2 .green, .h2 .green {
  color: #64c814;
}

h2 .blue, .h2 .blue {
  color: #7088ff;
}

h2 .orange, .h2 .orange {
  color: #ff7800;
}

@media screen and (min-width: 768px) {
  h2, .h2 {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 3rem;
  }
}

h3, .h3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  h3, .h3 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: bold;
  }
}

@media screen and (min-width: 1280px) {
  h3, .h3 {
    font-size: 3.75rem;
    line-height: 3.75rem;
    font-weight: bold;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal;
  text-align: left;
  color: #152129;
}

h4 .green, .h4 .green {
  color: #64c814;
}

h4 .blue, .h4 .blue {
  color: #7088ff;
}

h4 .orange, .h4 .orange {
  color: #ff7800;
}

@media screen and (min-width: 768px) {
  h4, .h4 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  h4, .h4 {
    font-size: 2rem;
    line-height: 3rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgba(21, 33, 41, 0.8);
}

/**
  **
  ** =input
  **
  ** */
input[type=text] {
  width: calc(100% - 68px);
  padding: 16px 24px;
  border-radius: 12px !important;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.04);
  background-color: #fff;
  font-size: 1rem;
  line-height: 1rem;
  color: rgba(21, 33, 41, 0.8);
  max-height: 56px;
}

input[type=text]::placeholder {
  color: rgba(21, 33, 41, 0.4);
}

input[type=text]:-ms-input-placeholder {
  color: rgba(21, 33, 41, 0.4) !important;
}

input[type=text]:focus {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.04);
}

@media screen and (min-width: 1280px) {
  input[type=text] {
    padding: 24px;
    font-size: 1.25rem;
    line-height: 1.25rem;
    max-height: 68px;
  }
}

select {
  width: 100%;
  padding: 20px 48px 20px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.04);
  background-image: url(../images/caret-down.svg);
  background-position: calc(100% - 24px) center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1rem;
  color: rgba(21, 33, 41, 0.8);
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.04);
}

@media screen and (min-width: 1280px) {
  select {
    padding: 24px 48px 24px 24px;
    font-size: 1.25rem;
    line-height: 1.25rem;
    background-size: 28px 28px;
  }
}

/**
  **
  ** =Button
  **
  ** */
.btn {
  display: inline-block;
  width: auto;
  height: 46px;
  padding: 10px 32px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  transition: .25s all;
  border-radius: 26px;
  cursor: pointer;
}

.btn.btn-big {
  padding: 10px 52px 12px 52px;
}

.btn.btn-solid {
  color: #FFF !important;
  box-shadow: 0 8px 20px 0 rgba(255, 255, 255, 0.2);
  -webkit-transition: 400ms background-position;
  transition: 500ms background-position, 500ms box-shadow;
  background-size: 200%;
  background-position: 50% 100%;
}

.btn.btn-solid:hover, .btn.btn-solid:active {
  background-position: 0% 100%;
}

.btn.btn-solid.btn-green {
  background-image: linear-gradient(to right, #64cea3, #64cea3, #64c814, #64c814);
  box-shadow: 0 8px 20px 0 rgba(100, 200, 20, 0.2);
}

.btn.btn-solid.btn-green:hover, .btn.btn-solid.btn-green:active {
  background-image: linear-gradient(to right, #64cea3, #64cea3, #64c814, #64c814);
  box-shadow: -10px 18px 20px 0 rgba(100, 200, 20, 0.2);
}

.btn.btn-solid.btn-blue {
  background-image: linear-gradient(to right, #7088ff, #7088ff, #0064c8, #0064c8);
  box-shadow: 0 8px 20px 0 rgba(0, 100, 200, 0.2);
}

.btn.btn-solid.btn-blue:hover, .btn.btn-solid.btn-blue:active {
  background-image: linear-gradient(to right, #7088ff, #7088ff, #0064c8, #0064c8);
  box-shadow: -10px 18px 20px 0 rgba(0, 100, 200, 0.2);
}

.btn.btn-solid.btn-orange {
  background-image: linear-gradient(to right, #ffaf00, #ffaf00, #ff7800, #ff7800);
  box-shadow: 0 8px 20px 0 rgba(255, 120, 0, 0.2);
}

.btn.btn-solid.btn-orange:hover, .btn.btn-solid.btn-orange:active {
  background-image: linear-gradient(to right, #ffaf00, #ffaf00, #ff7800, #ff7800);
  box-shadow: -10px 18px 20px 0 rgba(255, 120, 0, 0.2);
}

.btn.btn-solid.btn-white-green {
  background-color: #fff;
  color: #64c814;
  box-shadow: 0 8px 20px 0 rgba(100, 200, 20, 0.2);
}

.btn.btn-solid.btn-white-green:hover, .btn.btn-solid.btn-white-green:active {
  background-color: #fff;
  box-shadow: -10px 18px 20px 0 rgba(100, 200, 20, 0.2);
}

.btn.btn-solid.btn-disable {
  background-color: rgba(51, 51, 51, 0.1);
  box-shadow: none;
}

.btn.btn-solid.btn-disable:hover, .btn.btn-solid.btn-disable:active {
  cursor: default;
}

.btn.btn-outline {
  width: auto;
  border: solid 1px;
  background-color: #FFF;
  font-weight: 400;
}

.btn.btn-outline.btn-green {
  border-color: #64c814;
  color: #64c814;
}

.btn.btn-outline.btn-green:hover {
  background-color: #64c814;
  color: #FFF;
}

.btn.btn-outline.btn-blue {
  border-color: #7088ff;
  color: #7088ff;
}

.btn.btn-outline.btn-blue:hover {
  background-color: #7088ff;
  color: #FFF;
}

.btn.btn-outline.btn-orange {
  border-color: #ff7800;
  color: #ff7800;
}

.btn.btn-outline.btn-orange:hover {
  background-color: #ff7800;
  color: #FFF;
}

.btn.btn-outline.btn-disable {
  border-color: rgba(51, 51, 51, 0.1);
  color: rgba(51, 51, 51, 0.1);
}

.btn.btn-outline.btn-disable:hover {
  cursor: default;
}

.btn.arrow:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  background: url("../images/arrow.svg") center center no-repeat;
  margin-left: 8px;
}

.btn-gotop {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 24px;
  z-index: 10;
  transition: .3s;
  cursor: pointer;
}

.btn-gotop.show {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .btn-gotop {
    right: 24px;
  }
}

#top {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
}

.mask-bg {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: .5s;
}

.mask-bg.show {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 1280px) {
  .mask-bg {
    display: none;
  }
}

/**
 **
 ** =header
 **
 ** */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  transition: .3s;
}

@media screen and (min-width: 1280px) {
  header {
    height: 80px;
    background-color: transparent;
  }
}

header .header-wrap {
  max-width: 1240px;
  height: 100%;
  padding: 0 24px;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  header .header-wrap {
    padding: 0;
  }
}

header .logo {
  width: 140px;
  height: 24px;
  background: transparent url("../images/logo-c.svg") center center no-repeat;
  background-size: contain;
}

header .logo a {
  display: block;
  height: 100%;
}

@media screen and (min-width: 1280px) {
  header .logo {
    width: 228px;
    height: 40px;
    background: transparent url("../images/logo.svg") center center no-repeat;
  }
}

header nav {
  height: auto;
}

header nav .btn-download, header nav a.btn-download:not([href]) {
  visibility: hidden;
  opacity: 0;
  width: 96px;
  height: 36px;
  margin-right: 52px;
  border-radius: 18px;
  -webkit-transition: 400ms background-position;
  transition: 500ms background-position, 500ms box-shadow;
  background-image: linear-gradient(to right, #64cea3, #64cea3, #64c814, #64c814);
  background-size: 200%;
  background-position: 50% 100%;
  color: #fff;
  box-shadow: 0 8px 20px 0 rgba(100, 200, 20, 0.2);
  font-size: 0.875rem;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
}

header nav .btn-download:hover, header nav a.btn-download:not([href]):hover {
  background-position: 0% 100%;
  box-shadow: -10px 18px 20px 0 rgba(100, 200, 20, 0.2);
}

header nav .btn-download i, header nav a.btn-download:not([href]) i {
  margin-left: 8px;
}

header nav .btn-download.show, header nav a.btn-download:not([href]).show {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 1280px) {
  header nav {
    position: relative;
    top: auto;
    left: auto;
    float: right;
    width: auto;
    height: auto;
    overflow-y: visible;
    padding: 0;
  }
  header nav .btn-download {
    visibility: visible;
    opacity: 1;
    width: 156px;
    height: 46px;
    margin-left: 34px;
    margin-right: 0;
    border-radius: 23px;
    font-size: 1rem;
    line-height: 46px;
  }
  header nav .btn-download i {
    width: 18px;
    height: 12px;
    background: url("../images/arrow.svg") center center no-repeat;
  }
}

header .menu-func {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

header .menu-func li a {
  display: block;
  padding: 0 24px;
  color: #152129;
  font-size: 1rem;
  line-height: 60px;
  transition: .25s;
}

@media screen and (min-width: 1280px) {
  header .menu-func {
    display: block;
    position: static;
    top: inherit;
    left: inherit;
    width: auto;
    background-color: transparent;
  }
  header .menu-func li a {
    position: relative;
    padding: 0 20px;
    color: #fff;
    line-height: 80px;
  }
  header .menu-func li a:after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 4px;
    border-radius: 4px;
    background-color: #fff;
    transition: .25s ease-in-out;
  }
  header .menu-func li:hover a:after, header .menu-func li.active a:after {
    width: calc(100% - 40px);
  }
}

header.scroll {
  border-bottom-color: transparent;
  background-color: #fff;
}

@media screen and (min-width: 1280px) {
  header.scroll .logo {
    background: transparent url("../images/logo-c.svg") center center no-repeat;
  }
  header.scroll nav .menu-func li a {
    color: #152129;
  }
  header.scroll nav .menu-func li:hover a:after, header.scroll nav .menu-func li.active a:after {
    background-color: #64c814;
  }
}

header.inner nav .btn-download {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 400ms background-position;
  transition: 500ms background-position, 500ms box-shadow;
  background-image: linear-gradient(to right, #64cea3, #64cea3, #64c814, #64c814);
  background-size: 200%;
  background-position: 50% 100%;
  color: #fff;
  box-shadow: 0 8px 20px 0 rgba(100, 200, 20, 0.2);
}

header.inner nav .btn-download:hover {
  background-position: 0% 100%;
  box-shadow: -10px 18px 20px 0 rgba(100, 200, 20, 0.2);
}

@media screen and (min-width: 1280px) {
  header.inner nav .btn-download {
    background: #fff none;
    color: #64c814;
    box-shadow: 0 8px 20px 0 rgba(100, 200, 20, 0.2);
  }
  header.inner nav .btn-download:hover {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.6), #ffffff);
    box-shadow: -10px 18px 20px 0 rgba(100, 200, 20, 0.2);
  }
  header.inner nav .btn-download i {
    background: url("../images/arrow-green.svg") center center no-repeat;
  }
}

header.inner.scroll nav .btn-download {
  -webkit-transition: 400ms background-position;
  transition: 500ms background-position, 500ms box-shadow;
  background-image: linear-gradient(to right, #64cea3, #64cea3, #64c814, #64c814);
  background-size: 200%;
  background-position: 50% 100%;
  color: #fff;
  box-shadow: 0 8px 20px 0 rgba(100, 200, 20, 0.2);
}

header.inner.scroll nav .btn-download:hover {
  background-position: 0% 100%;
  box-shadow: -10px 18px 20px 0 rgba(100, 200, 20, 0.2);
}

@media screen and (min-width: 1280px) {
  header.inner.scroll nav .btn-download i {
    background: url("../images/arrow.svg") center center no-repeat;
  }
}

header .burger-click-region {
  position: absolute;
  top: 19px;
  right: 24px;
  width: 32px;
  height: 22px;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

header .burger-click-region .burger-menu-piece {
  display: block;
  position: absolute;
  width: 32px;
  border-top: 2px solid #64c814;
  transform-origin: 50% 50%;
  transition: transform 400ms ease-out;
}

header .burger-click-region .burger-menu-piece:nth-child(1) {
  top: 0;
}

header .burger-click-region .burger-menu-piece:nth-child(2) {
  top: 10px;
  opacity: 1;
  transition: transform 400ms ease-out, opacity 0ms linear 200ms;
}

header .burger-click-region .burger-menu-piece:nth-child(3) {
  top: 20px;
}

header .burger-click-region.active .burger-menu-piece:nth-child(1) {
  animation: burger-open-top 400ms ease-out forwards;
}

header .burger-click-region.active .burger-menu-piece:nth-child(2) {
  opacity: 0;
  transition: transform 400ms ease-out, opacity 0ms linear 200ms;
}

header .burger-click-region.active .burger-menu-piece:nth-child(3) {
  animation: burger-open-bot 400ms ease-out forwards;
}

header .burger-click-region.closing .burger-menu-piece:nth-child(1) {
  animation: burger-close-top 400ms ease-out forwards;
}

header .burger-click-region.closing .burger-menu-piece:nth-child(3) {
  animation: burger-close-bot 400ms ease-out forwards;
}

@keyframes burger-open-top {
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }
}

@keyframes burger-open-bot {
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
}

@keyframes burger-close-top {
  0% {
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(0, 10px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes burger-close-bot {
  0% {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/**
 **
 ** =main
 **
 ** */
main * {
  position: relative;
  box-sizing: border-box;
}

main .main-wrap {
  position: relative;
  margin: 0 auto;
  padding: 0 24px;
}

@media screen and (min-width: 768px) {
  main .main-wrap {
    padding: 0 40px;
  }
}

@media screen and (min-width: 1280px) {
  main .main-wrap {
    max-width: 1080px;
    padding: 0;
  }
}

main .main-wrap-big {
  position: relative;
  margin: 0 auto;
  padding: 0 24px;
}

@media screen and (min-width: 768px) {
  main .main-wrap-big {
    padding: 0 40px;
  }
}

@media screen and (min-width: 1280px) {
  main .main-wrap-big {
    max-width: 1240px;
    padding: 0;
  }
}

main .not-found {
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  main .not-found {
    margin-bottom: 100px;
  }
}

/**
 **
 ** =footer
 **
 ** */
footer {
  position: relative;
  padding-top: 320px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media screen and (min-width: 768px) {
  footer {
    padding-top: 520px;
  }
}

@media screen and (min-width: 1280px) {
  footer {
    padding-top: 210px;
  }
}

footer .footer-wrap {
  padding-top: 160px;
  background: transparent url("../images/footer-bg.svg") center center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  footer .footer-wrap {
    padding-top: 320px;
  }
}

@media screen and (min-width: 1280px) {
  footer .footer-wrap {
    padding-top: 210px;
  }
}

footer section {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

footer .app-download {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 48px);
  height: auto;
  border-radius: 14px 12px 12px 14px;
  background: #64c814 url("../images/cta-background-mobile.svg") center bottom no-repeat;
  background-size: cover;
  transform: translateX(-50%);
  box-shadow: 0 20px 40px 0 rgba(100, 200, 20, 0.1);
}

footer .app-download .download-info {
  position: relative;
  width: 100%;
  height: auto;
  padding: 48px 32px;
  border-radius: 12px 12px 60px 0;
  background-color: #fff;
}

footer .app-download .download-info p {
  margin-bottom: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  text-align: center;
}

footer .app-download .download-info p span {
  color: #64c814;
}

footer .app-download .download-info .download-group .qrcode {
  width: 122px;
  height: 122px;
  margin-right: 40px;
}

footer .app-download .download-info .download-group .qrcode img {
  width: 100%;
}

footer .app-download .download-info .download-group .download-btn {
  display: block;
  text-align: center;
}

footer .app-download .download-info .download-group .download-btn:not(:first-of-type) {
  margin-top: 12px;
}

footer .app-download .download-phone {
  height: 252px;
  width: 100%;
  overflow: hidden;
}

footer .app-download .download-phone img {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 172px;
}

@media screen and (min-width: 768px) {
  footer .app-download {
    width: calc(100% - 80px);
    height: auto;
    background: #64c814 url("../images/cta-background-tablet.svg") center bottom no-repeat;
    background-size: cover;
  }
  footer .app-download .download-info {
    padding-top: 35px;
  }
  footer .app-download .download-info p {
    max-width: 362px;
    margin: 0 auto 48px;
    font-size: 2rem;
    line-height: 48px;
    text-align: left;
  }
  footer .app-download .download-info .download-group {
    max-width: 362px;
    padding: 0;
    margin: 0 auto;
    border-radius: 12px 0 60px 12px;
  }
  footer .app-download .download-phone {
    height: 465px;
  }
  footer .app-download .download-phone img {
    bottom: -40px;
    width: 310px;
  }
}

@media screen and (min-width: 1280px) {
  footer .app-download {
    top: 0;
    left: calc(50% - 540px);
    height: 420px;
    background: #64c814 url("../images/cta-background.svg") center center no-repeat;
    background-size: cover;
    transform: translateX(0);
  }
  footer .app-download .download-info {
    width: 50%;
    height: 100%;
    padding: 60px 0 0 80px;
    border-radius: 12px 0 60px 12px;
  }
  footer .app-download .download-info p {
    margin-bottom: 56px;
  }
  footer .app-download .download-phone {
    height: auto;
  }
  footer .app-download .download-phone img {
    bottom: 0;
    left: 75%;
    transform: translateX(-50%);
    width: 256px;
  }
}

footer .footer-list {
  padding-top: 46px;
  margin-bottom: 32px;
}

footer .footer-list ul:after {
  display: block;
  content: '';
  clear: both;
}

footer .footer-list ul > li {
  text-align: center;
}

footer .footer-list ul > li:not(:last-child) {
  margin-bottom: 48px;
}

footer .footer-list ul > li a, footer .footer-list ul > li p {
  display: block;
  color: #fff;
}

footer .footer-list ul > li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

footer .footer-list a[href^="tel:"] {
  display: inline;
  color: rgba(255, 255, 255, 0.8);
}

footer .footer-list ol {
  list-style: none;
  padding: 0;
}

footer .footer-list ol li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 24px;
}

footer .footer-list ol li.title {
  display: inline-block;
  padding: 0 10px;
  margin: 20px 0 10px;
  border: 1px solid #64c814;
  border-radius: 13px;
  color: #64c814;
  font-size: 0.875rem;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  footer .footer-list {
    padding-top: 46px;
    margin-bottom: 32px;
  }
  footer .footer-list ul:after {
    display: block;
    content: '';
    clear: both;
  }
  footer .footer-list ul > li {
    float: left;
    text-align: left;
  }
  footer .footer-list ul > li:not(:first-child) {
    padding-left: 90px;
  }
  footer .footer-list .contact-info:after {
    display: block;
    content: '';
    clear: both;
  }
  footer .footer-list ol {
    float: left;
  }
  footer .footer-list ol:last-of-type {
    padding-left: 24px;
  }
  footer .footer-list ol li {
    font-size: 0.875rem;
  }
}

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .copyright p {
  padding: 16px 0;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  footer {
    padding-top: 210px;
  }
  footer .footer-wrap {
    padding-top: 210px;
  }
  footer .contact-info ul {
    padding-left: 80px;
  }
  footer .copyright p {
    font-size: 1rem;
    text-align: left;
  }
}
