@charset "UTF-8";
/* Google fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
/* Variables */
/* #00c6d7 */
/* #99d671 */
* {
  box-sizing: border-box;
}

*::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 130%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

body {
  box-sizing: border-box;
  font-family: '微軟正黑體', Arial, sans-serif;
  color: #333;
  margin: 0 auto;
  line-height: 1.5;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans TC', '微軟正黑體', Arial, sans-serif;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

figcaption {
  font-size: 0.75rem;
}

figure {
  text-align: center;
  margin: 0 auto;
}

figure img {
  width: 100%;
}

a.txt-link {
  color: #a55d10;
}

a.txt-link:hover {
  text-decoration: none;
}

.txt--center {
  text-align: center;
}

.txt--bold {
  font-weight: bold;
}

.txt--accent {
  color: #cc4b00;
}

.footnotes {
  color: #777777;
  font-size: 0.8rem;
}

.align--right {
  float: right;
}

.btn-action {
  background: #FF9E3A linear-gradient(#FF9E3A, #cc4b00);
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 16px 40px;
  text-decoration: none;
  transition: .3s;
}

.btn-action span {
  display: block;
  font-weight: normal;
  font-size: 0.9rem;
}

.btn-action:hover {
  transform: translateY(-2px);
}

section {
  padding: 40px 0;
}

.sec-inner {
  width: 90%;
  width: clamp(320px, 90%, 1880px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.sec-inner h2 {
  color: #a55d10;
  text-align: center;
  margin-bottom: 40px;
}

/*-- Header --*/
.header {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  opacity: .95;
  transition: opacity .5s;
  background-image: linear-gradient(110deg, #38aca8 0%, #60637b 70%);
}

.header .sec-inner {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.header:hover {
  opacity: 1;
}

.company--logo {
  color: #333;
  font-size: 13px;
  font-weight: bold;
  float: left;
  letter-spacing: 2px;
  padding: 6px 0;
}

.company--logo img {
  width: 100%;
  max-width: 200px;
}

.section-links {
  display: flex;
  align-items: center;
}

.section-links a {
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 0 20px;
  text-decoration: none;
  border: 1px solid #ffeb00;
  padding: .6rem 1rem;
  font-family: 'Noto Sans TC', '微軟正黑體', Arial, sans-serif;
}

/*-- HERO --*/
.section-hero {
  width: 100%;
  min-height: 85vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 0 40px;
  background-image: linear-gradient(110deg, #38aca8 0%, #60637b 70%);
}

.hero--title {
  flex: 1;
  z-index: 1;
  margin-left: 3vw;
}

.hero--title h1 {
  color: #eee;
  font-size: clamp(2.3rem, 5vw, 3rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 50%;
  font-family: 'Noto Sans TC', '微軟正黑體', Arial, sans-serif;
  text-shadow: 0 2px 4px rgba(115, 115, 115, 0.5);
}

.hero--title h2 {
  color: #fad178;
  font-size: clamp(1.35rem, 2vw, 2rem);
  padding-bottom: 12px;
  line-height: 1.5;
  clear: right;
  font-weight: 300;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(115, 115, 115, 0.5);
}

.hero--title .service-name {
  border-bottom: 3px solid #70DFBB;
  color: #eee;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
}

.hero--title .btn-action {
  font-size: 1.35rem;
}

.hero--title .btn-action span {
  font-size: 0.8rem;
}

.hero--title .btn-action {
  background: none;
  border: 3px solid #a55d10;
  color: #6B0E0E;
  display: inline-block;
  font-weight: bold;
  padding: 16px 40px;
  text-decoration: none;
  transition: .3s;
}

.hero--title .btn-action span {
  display: block;
  font-weight: normal;
  font-size: 0.9rem;
}

.hero--title .btn-action:hover {
  transform: translateY(-2px);
}

.hero--img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hero--img img {
  display: flex;
  align-self: flex-end;
  width: 100%;
}

/*-- PROBLEMS --*/
main::before {
  content: '';
  background: #FFFAEF;
  border-radius: 40px;
  display: block;
  position: fixed;
  top: 40px;
  bottom: 40px;
  left: 40px;
  right: 40px;
  height: 100vh;
  z-index: -1;
}

/*-- INTRO --*/
.intro {
  width: 80%;
  margin: 0 auto;
  line-height: 2;
}

.intro figure {
  max-width: 960px;
}

/*-- PLANS --*/
#plans h2 {
  margin-bottom: 1rem;
}

.plans--wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 1rem) / 2));
  gap: 1rem;
  margin: 40px 0 20px;
}

.plans--interval {
  background: #eee;
  border: 1px solid #aaa;
  border-radius: 40px;
  display: inline-block;
  font-size: 0.8rem;
  margin: 0 auto;
  margin-bottom: 2rem;
  padding: 3px 1rem;
}

.plans--interval-new {
  background: linear-gradient(to right, #ed1c24, #c1272d);
  border: 1px solid #ed1c24;
  border-radius: 15px;
  color: #FFFAEF;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 2rem;
  padding: 5px 1.2rem;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 1rem;
  transition: .3s transform;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-shadow: 0 5px 10px 0 rgba(169, 167, 167, 0.75);
}

.plan-card:hover {
  transform: translateY(-16px);
}

.plan--img img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 6 / 5;
}

.plan--content {
  display: flex;
  flex: 1 0 50%;
  flex-direction: column;
  padding: 1rem;
}

.plan--title {
  color: #cc4b00;
  font-size: clamp(1.5rem, 1vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  font-family: 'Noto Sans TC', '微軟正黑體', Arial, sans-serif;
}

.plan--subtitle {
  color: #888;
  font-size: 1rem;
}

.plan--subtitle span {
  color: #6B0E0E;
  font-weight: bold;
}

.plan--type {
  border: 1px solid #cc4b00;
  color: #a55d10;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 5px 16px;
  margin: 0 auto;
}

.plan--details {
  text-align: left;
}

.plan--details ul {
  list-style-image: url(../images/list-disc.svg);
  padding-left: 1rem;
}

.plan--details ul li {
  color: #555;
  font-size: 0.9rem;
}

.plan--details .plan--amount {
  font-family: Arial;
  font-size: 1rem;
}

/*-- 加購方案 --*/
/*-- 推薦加購 --*/
/*-- CONTACT --*/
.customer-service--wrapper {
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 90%;
  max-width: 990px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(-158deg, #99d671 0%, #00c6d7 65%);
  box-shadow: 0 15px 20px 0 rgba(169, 167, 167, 0.75);
}

.customer-service--wrapper img {
  align-self: flex-end;
  flex: 1;
  max-width: 25%;
}

.customer-service-info {
  padding: 30px 20px;
}

.customer-service-info p {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans TC', '微軟正黑體', Arial, sans-serif;
}

.customer-service-info a.btn-action {
  margin-top: 20px;
}

.contact-info--wrapper {
  border-left: 2px solid #FF9E3A;
  padding-left: 1rem;
  margin: 12px 0 12px 1rem;
}

.contact-info--wrapper div {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
}

.contact-info--wrapper span {
  font-weight: normal;
  margin-right: 1rem;
  width: 6rem;
}

.contact-info--wrapper a {
  color: #111;
}

.contact-info--wrapper a:hover {
  text-decoration: none;
}

.service-notes {
  width: 90%;
  max-width: 990px;
  margin: 0 auto;
  padding: 10px;
}

.service-notes h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.service-notes ol {
  color: #777;
  font-size: 0.8rem;
  margin: 0;
  margin-left: 1.25rem;
  line-height: 2;
  padding: 0;
}

/*-- QUICKLINKS --*/
#quicklinks {
  background: #012220;
  padding: 20px 0;
  width: 100%;
}

#quicklinks h3 {
  color: #999;
  font-size: 1.1rem;
  margin-bottom: .8rem;
  text-align: center;
}

.quicklinks--wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 1rem;
}

.quicklinks--item {
  background-color: #fff;
  border-radius: 1rem;
  height: 240px;
  flex: 1;
  position: relative;
  opacity: .8;
  transition: .3s transform, .5s opacity;
}

.quicklinks--item.m365 {
  background: #eee url(../images/menu-img-m365.png);
  background-size: cover;
}

.quicklinks--item.m365 .quicklink--title {
  background: linear-gradient(-158deg, #99d671 0%, #00c6d7 65%);
}

.quicklinks--item.avd {
  background: #fff url(../images/menu-img-avd.png);
  background-size: cover;
}

.quicklinks--item.avd .quicklink--title {
  background: linear-gradient(-158deg, #70DFBB 0%, #0085DB 65%);
}

.quicklinks--item.migrate {
  background: #fff url(../images/menu-img-migrate.png);
  background-size: cover;
}

.quicklinks--item.migrate .quicklink--title {
  background: linear-gradient(-32deg, #F6BE3A 0%, #DB8300 31%);
}

.quicklinks--item:hover {
  transform: translateY(-12px);
  opacity: 1;
}

.quicklink--title {
  background: rgba(100, 100, 100, 0.5);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  padding: .6rem 0;
  bottom: 1rem;
  left: 5%;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

/*-- FOOTER --*/
footer {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 60px;
}

footer .sec-inner {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 90%;
  width: clamp(320px, 90%, 1880px);
}

footer .logo-slogan {
  display: flex;
  align-items: center;
}

footer .logo-slogan a + img {
  margin-left: 32px;
}

footer .social-links {
  width: 10vw;
  height: 10vw;
  max-width: 42px;
  max-height: 42px;
  transform: translateX(-64px);
}

footer .social-links img {
  width: 100%;
  height: 100%;
}

#btn__gotop {
  background: rgba(200, 200, 200, 0.5);
  border-radius: 24px;
  position: fixed;
  right: 32px;
  bottom: 64px;
  width: 10vw;
  height: 10vw;
  max-width: 42px;
  max-height: 42px;
}

#btn__gotop img {
  width: 100%;
}

#btn__gotop:hover {
  transition: .3s;
}

/* CONTACT FORMS */
#formWrapper {
  background: #025700;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility 1s;
}

#formWrapper .inner {
  width: 100%;
  height: 100%;
  position: relative;
}

#formWrapper iframe {
  width: 100%;
  height: 100%;
}

#btn-close {
  background: rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  display: grid;
  padding: 10px;
  place-items: center;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Responsive */
@media (min-width: 1024px) {
  html {
    font-size: 120%;
  }
}

@media (max-width: 990px) {
  html {
    font-size: 110%;
  }
  .company--logo {
    width: 160px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 100%;
  }
  .customer-service-info p {
    font-size: 1.4rem;
  }
  .section-hero {
    height: 100vh;
  }
  .hero--title {
    margin-left: 0;
  }
  .hero--title h1 {
    max-width: 80%;
  }
  .hero--img {
    align-self: flex-end;
    justify-self: flex-end;
  }
  .hero--img img {
    opacity: .75;
  }
  #formWrapper .inner {
    padding-top: 60px;
  }
  .btn-close {
    right: 1rem;
  }
  .plusplan--wrapper ul {
    columns: 1;
  }
  .plan-card {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  h2, .sec-inner h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    padding: 16px 0;
  }
  section {
    padding: 24px 0;
  }
  main::before {
    left: 0;
    right: 0;
  }
  .sec-inner {
    width: 95%;
  }
  .assist--wrapper {
    display: block;
  }
  .assist--wrapper h3 {
    transform: translateX(0);
    margin-bottom: 10px;
  }
  .plan-card {
    padding: .5rem;
  }
  .customer-service--wrapper {
    flex-direction: row;
  }
  .customer-service--wrapper img {
    display: none;
  }
  footer .sec-inner {
    flex-direction: row;
    align-items: flex-start;
  }
  footer .logo-slogan {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .logo-slogan a + img {
    margin: 20px 0 40px;
  }
  footer .social-links {
    transform: translateX(0);
  }
}

@media (max-width: 560px) {
  .quicklinks--wrapper {
    grid-template-columns: auto;
    gap: 1rem;
  }
  .quicklinks--item {
    width: 100%;
    height: 150px;
    opacity: .9;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 95%;
    line-height: 1;
  }
  .header {
    position: relative;
    padding: .6rem 0;
  }
  .company--logo img {
    width: 100%;
    max-width: 140px;
  }
  .section-links a {
    margin: 0 10px;
  }
  .section-hero {
    height: 80vh;
    padding: 0 24px;
  }
  .hero--title {
    margin-left: 0;
    margin-top: -2rem;
    align-self: center;
  }
  .hero--title h1 {
    max-width: 100%;
  }
  section {
    padding: 16px 0;
  }
  .hero--img {
    max-width: 100%;
  }
  .intro {
    width: 90%;
  }
  .intro p {
    font-size: 1rem;
  }
  .plans--wrapper {
    display: block;
  }
  .plan--img img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
  }
  .plusplan--wrapper {
    width: 100%;
  }
  .customer-service--wrapper {
    width: 100%;
  }
  .customer-service-info p {
    font-size: 1.25rem;
  }
  .contact-info--wrapper div {
    font-size: 0.95rem;
  }
  .contact-info--wrapper div:not(:first-child) span {
    display: none;
  }
  #btn__gotop {
    right: 20px;
    bottom: 32px;
  }
}
/*# sourceMappingURL=styles.css.map */