
header {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #EBEDEE;
  z-index: 99;
}
header .container-fluid{
  height: 64px;
}

.hamberger_navigation{
  display: none;
}

.hamberger_menu_img{
  position: absolute;
  height: 20%;
  bottom: 0;
  right: 0;
}

#menuToggle
{
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  top: 3px;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
 #menuToggle span {
  display: block;
  width: 33px;
  height: 2px;
  margin-bottom: 8px;
  position: relative;
  background: #ababab;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 2px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  /* overflow-y: auto; */
  width: calc(100vw + 8px);
  height: calc(100vh + 8px);
  margin: -52px 0 0 -30px;
  /* padding: 50px; */
  /* padding-top: 125px; */
  background: #ffffff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  align-content: flex-start;
  padding-right: var(--bs-gutter-x,.75rem);
  padding-left: var(--bs-gutter-x,.75rem);
  justify-content: center;
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu a {
  display: block;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  /* transform: none; */
  transform: scale(1.0, 1.0);
  opacity: 1;
}

.navbar-nav {
  display: flex;
  flex-direction: row-reverse;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

header nav.navbar {
  /* padding: 9px 0; */
  padding: 0;
  max-width: 1704px;
  margin: auto;
}
header nav.navbar .navbar-toggler {
  border: none;
}
header nav.navbar .navbar-brand {
  display: flex;
}
header nav.navbar .navbar-brand img {
  height: 44px;
}
header nav.navbar .nav-item {
  margin: 0 10px;
}
header nav.navbar .nav-item .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: #6F6F6F;
}
header nav.navbar .nav-item .nav-link.active {
  color: #016BAF;
}
header nav.navbar .collapse {
  justify-content: end;
  margin-right: -18px;
}

header nav.navbar .collapse .speckled, header nav.navbar .collapse .navbar-toggler{
  display: none;
}

header nav.navbar .container-fluid hr#hr_line{
  position: relative;
  height: 44px;
  width: 1px;
  border-width: 1px;
  background-color: #EBEDEE;
  right: 32px;
  opacity: 1;
}

.slogan_area{
  margin-left: 20px;
}

.text_desktop{
  display: inline-block;
}
.text_mobile{
  display: none;
} 

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: var(--bs-gutter-x,24px);
  padding-left: var(--bs-gutter-x,24px);
}

@media screen and (max-width: 991.98px) {
  .hamberger_navigation{
    display: inline-block;
    padding-right: 16px;
  }
  
  header nav.navbar .container-fluid {
    justify-content: start;
  }
  header nav.navbar .container-fluid .collapse {
    background-color: white;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
  }
  header nav.navbar .container-fluid .collapse .navbar-nav {
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 4;
  }
  header nav.navbar .container-fluid .collapse .navbar-nav .nav-item {
    margin: 20px auto;
  }
  header nav.navbar .container-fluid .collapse .navbar-toggler {
    display: block;
    position: absolute;
    z-index: 3;
    height: 48px;
    width: 48px;
    left: 30px;
    top: 30px;
  }
  header nav.navbar .container-fluid .collapse .speckled {
    display: block;
    position: absolute;
    z-index: 3;
    right: -100px;
    bottom: 0;
  }
  header nav.navbar .navbar-brand img {
    height: 32px;
  }
  header nav.navbar .container-fluid hr#hr_line {
    height: 32px;
    right: 28px;
  }
}
@media screen and (max-width: 991.98px) {
  header .navbar-brand {
    max-width: 138px;
  }
}
main footer {
  align-items: center;
  align-content: center;
  border-top: 1px solid #EDF7FD;
  position: absolute;
  bottom: 0;
  color: #EDF7FD;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 214px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
main footer a {
  color: white;
  text-decoration: none;
}
main footer a:hover {
  border-bottom: 1px solid white;
}
main footer canvas {
  position: absolute;
}
main footer .service-list {
  display: flex;
  justify-content: center;
  list-style: none;
  width: 100%;
}
main footer .service-list + div {
  margin: auto;
}
main footer .service-list li {
  margin: 0 12px;
}
main footer .service-list li .name {
  color: white;
  padding-right: 8px;
  position: relative;
}
main footer .service-list li .name::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 16px;
  width: 1px;
  background-color: #EDF7FD;
}
main footer .service-list li span + * {
  padding-left: 5px;
}

@keyframes bg-move {
  0% {
  background-position: 50% 50%;
  }
  100% {
  background-position: 0% 0%;
  }
  }
  
  @-webkit-keyframes bg-move {
  0% {
  background-position: 50% 50%;
  }
  100% {
  background-position: 0% 0%;
  }
  }


@media screen and (max-width: 991.98px) {
  main footer {
    height: 150px;
  }
}
@media screen and (max-width: 575.98px) {
  main footer {
    height: 170px;
  }
  main footer .service-list {
    flex-direction: column;
    padding-left: 3px;
  }
  main footer .service-list li {
    text-align: left;
  }
  main footer .service-list + div {
    padding: 0 15px;
    margin: 0;
  }
}
@keyframes bg-move {
  0% {
    background-size: 105% 105%;
  }
  100% {
    background-size: 110% 110%;
  }
}
@keyframes move-tab {
  0% {
    width: 100vw;
  }
  100% {
    width: 120vw;
  }
}
@keyframes move-mobile {
  0% {
    width: 200vw;
  }
  100% {
    width: 240vw;
  }
}
@keyframes fade {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes btn-download {
  0% {
    background-position: 0px;
  }
  100% {
    background-position: -344px;
  }
}
@keyframes top {
  0% {
    opacity: 0;
    top: 169px;
  }
  100% {
    opacity: 1;
    top: 149px;
  }
}
@keyframes top-mobile {
  0% {
    opacity: 0;
    top: 128px;
  }
  100% {
    opacity: 1;
    top: 108px;
  }
}
@keyframes white-1 {
  0% {
    opacity: 0;
    top: -190px;
  }
  100% {
    opacity: 1;
    top: -210px;
  }
}
@keyframes white-1-tab {
  0% {
    opacity: 0;
    top: 20px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes white-1-mobile {
  0% {
    opacity: 0;
    top: -45px;
  }
  100% {
    opacity: 1;
    top: -65px;
  }
}
@keyframes white-2 {
  0% {
    opacity: 0;
    top: 42px;
  }
  100% {
    opacity: 1;
    top: 32px;
  }
}
@keyframes white-2-tab {
  0% {
    opacity: 0;
    top: 42px;
  }
  100% {
    opacity: 1;
    top: 180px;
  }
}
@keyframes blue-2 {
  0% {
    opacity: 0;
    top: 245px;
  }
  100% {
    opacity: 1;
    top: 225px;
  }
}
@keyframes blue-2-tab {
  0% {
    opacity: 0;
    top: 120px;
  }
  100% {
    opacity: 1;
    top: 100px;
  }
}
@keyframes blue-2-mobile {
  0% {
    opacity: 0;
    top: 50px;
  }
  100% {
    opacity: 1;
    top: 30px;
  }
}
@keyframes blue-3 {
  0% {
    opacity: 0;
    top: calc(28.7vw + 20px);
  }
  100% {
    opacity: 1;
    top: 28.7vw;
  }
}
@keyframes blue-3-tab {
  0% {
    opacity: 0;
    top: 320px;
  }
  100% {
    opacity: 1;
    top: 300px;
  }
}
@keyframes blue-3-mobile {
  0% {
    opacity: 0;
    top: calc(30vw + 20px);
  }
  100% {
    opacity: 1;
    top: 30vw;
  }
}
html {
  font-size: 24px;
}

#top {
  height: 260px;
}
#top .poind-grid {
  position: relative;
  z-index: 3;
  height: 400px;
}
#top .poind-grid img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-name: fade;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-duration: 10s;
}
#top .poind-grid img:nth-child(1) {
  opacity: 0;
  animation-direction: alternate;
}
#top .poind-grid img:nth-child(2) {
  opacity: 1;
  animation-direction: alternate-reverse;
}
#top #gold-speckled-1 {
  position: absolute;
  right: 30px;
  top: calc(260px + 10vw);
  z-index: 3;
}
#top::after {
  background-image: url("../../images/img_organic_shapes_1.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  height: 21vw;
  width: 100%;
  top: 260px;
  z-index: 2;
}
#top .free-block {
  opacity: 0;
  animation-name: top;
  animation-delay: 0s;
  animation-duration: 4s;
  animation-fill-mode: both;
  width: 860px;
}

/* #blue-area-1 {
  position: relative;
  height: 1125px;
  background-image: url("../../images/img_cover_1.png");
  background-size: 105% 105%;
  background-position: 50% 50%;
  animation-name: bg-move;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: both;
  animation-duration: 10s;
} */

#blue-area-1 {
  position: relative;
  height: 1125px;
  background-image: url(../../images/img_cover_1.png);
  top: 0.3rem;
  animation: floating 1s linear infinite;
  background-size: 105% 105%;
  /* background-position: 50% 50%; */
  animation-name: bg-move;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: both;
  animation-duration: 10s;
  }

  @keyframes floating {
    from {
      transform: translateY(-0.02rem);
    }
    to {
      transform: translateY(0.02rem);
    }
  }


/* #blue-area-1 img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100vw;
  animation-name: move-tab;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: both;
}
#blue-area-1 img:nth-child(1) {
  animation-duration: 8s;
  animation-delay: 0s;
}
#blue-area-1 img:nth-child(2) {
  animation-duration: 10s;
  animation-delay: -2s;
}
#blue-area-1 img:nth-child(3) {
  animation-duration: 12s;
  animation-delay: -4s;
} */

#blue-area-1 img {
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
width: 100vw;
-webkit-animation-name: move-tab;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-webkit-animation-fill-mode: both;
animation-name: move-tab;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-fill-mode: both;
}
  #blue-area-1 img:nth-child(1) {
  -webkit-animation-duration: 8s;
  -webkit-animation-delay: 0s;
  animation-duration: 8s;
  animation-delay: 0s;
  }
  #blue-area-1 img:nth-child(2) {
  -webkit-animation-duration: 10s;
  -webkit-animation-delay: -2s;
  animation-duration: 10s;
  animation-delay: -2s;
  }
  #blue-area-1 img:nth-child(3) {
  -webkit-animation-duration: 12s;
  -webkit-animation-delay: -4s;
  animation-duration: 12s;
  animation-delay: -4s;
  }

#blue-area-2 {
  height: 1068px;
  padding: 30px 0px 100px;
  background-image: url("../../images/img_bg_1.jpg");
  background-attachment: fixed;
  background-size: 100% 150%;
  background-position: center cnter;
}
#blue-area-2 h3 {
  margin-bottom: 80px;
}
#blue-area-2 .free-block {
  width: 100%;
  top: 225px;
  opacity: 0;
}
#blue-area-2 .free-block.animated {
  animation-name: blue-2;
  animation-delay: 0s;
  animation-duration: 4s;
  animation-fill-mode: both;
}
#blue-area-2 #spotlight {
  position: relative;
}
#blue-area-2 #spotlight::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 38px;
  background-image: url("../../images/img_gold_speckled_4.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  left: calc(50% - 96px);
  z-index: -1;
}
#blue-area-2 #fusion {
  position: relative;
}
#blue-area-2 #fusion::before {
  content: "";
  display: block;
  position: absolute;
  width: 57px;
  height: 59px;
  background-image: url("../../images/img_gold_speckled_5.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  left: calc(50% - 104px);
  bottom: -2px;
  z-index: -1;
}
#blue-area-2 #connections {
  position: relative;
}
#blue-area-2 #connections::before {
  content: "";
  display: block;
  position: absolute;
  width: 53px;
  height: 50px;
  background-image: url("../../images/img_gold_speckled_6.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  left: calc(50% - 105px);
  bottom: 0;
  z-index: -1;
}

#blue-area-3 {
  height: 1400px;
  background-image: url("../../images/img_bg_2.jpg");
  background-attachment: fixed;
  background-size: 100% 150%;
  background-position: center cnter;
}
#blue-area-3 #gold-speckled-8 {
  position: absolute;
  left: calc(50% - 138px);
  top: calc(28.7vw + 80px);
  z-index: 3;
}
#blue-area-3 .free-block {
  width: 100%;
  opacity: 0;
}
#blue-area-3 .free-block.animated {
  animation-name: blue-3;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-fill-mode: both;
}
#blue-area-3 .free-block h3 {
  margin-bottom: 72px;
}

#white-area-1 {
  height: 522px;
}
#white-area-1 #gold-speckled-2 {
  position: absolute;
  left: 26vw;
  top: -34vw;
  z-index: 3;
}
#white-area-1 #gold-speckled-3 {
  position: absolute;
  right: 22vw;
  bottom: -14vw;
  z-index: 3;
}
#white-area-1 .free-block {
  width: 795px;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
}
#white-area-1 .free-block.animated {
  animation-name: white-1;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-fill-mode: both;
}
#white-area-1 .free-block h3 + p {
  margin: 70px 0 20px;
}
#white-area-1 .free-block h3 + p + p {
  margin: 20px 0 80px;
}
#white-area-1::before {
  background-image: url("../../images/img_organic_shapes_2.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  height: 27.6vw;
  width: 100%;
  bottom: 522px;
  z-index: 2;
}
#white-area-1::after {
  background-image: url("../../images/img_organic_shapes_3.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  height: 11.1vw;
  width: 100%;
  top: 520px;
  z-index: 2;
}

#white-area-2 {
  height: 422px;
}
#white-area-2 #gold-speckled-7 {
  position: absolute;
  right: 12vw;
  bottom: -8vw;
  z-index: 4;
}
#white-area-2 .free-block {
  width: 972px;
  transform: translate(-50%, 0);
  left: 50%;
  opacity: 0;
}
#white-area-2 .free-block.animated {
  animation-name: white-2;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-fill-mode: both;
}
#white-area-2 .free-block h3 {
  margin-bottom: 80px;
}
#white-area-2::before {
  background-image: url("../../images/img_organic_shapes_4.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  height: 6.7vw;
  width: 100%;
  bottom: 422px;
  z-index: 2;
}
#white-area-2::after {
  background-image: url("../../images/img_organic_shapes_5.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  height: 28.7vw;
  width: 100%;
  top: 418px;
  z-index: 2;
}

body {
  font-family: "Noto Sans TC R", "Noto Sans TC M", "Noto Sans TC B","Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
  position: relative;
}

.btn-back-top {
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 90;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.btn-download {
  position: fixed;
  background: url("../../images/btn_5g_talent_plan_download_heif.svg") 0 0 no-repeat;
  background-size: 350px 172px;
  width: 175px;
  height: 172px;
  bottom: 108px;
  right: -24px;
  z-index: 90;
  animation: btn-download steps(2, end) 1.5s infinite both;
}
.btn-download.stop {
  animation-play-state: paused;
}

.btn-download:focus:not(:focus-visible) {
  outline: none;
  }
  .btn-download:active {
    outline-color: transparent;
  }
  .btn-download:focus {
    box-shadow: none !important;
    
  }

 

.anchor {
  height: 0;
  margin-bottom: 70px;
}

main {
  margin: 64px auto 0;
  overflow: hidden;
}
main h1, main .h1 {
  font-family: "Noto Serif TC", "sans-serif", "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
  font-size: 5.67rem;
  letter-spacing: 32px;
}
main h1 {
  font-weight: 600;
}
main .h1 {
  font-weight: 500;
}
main h2, main .h2 {
  font-family: "Noto Serif TC", "sans-serif", "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
  font-size: 4.67rem;
  letter-spacing: 10px;
}
main h2 {
  font-weight: 600;
}
main .h2 {
  font-weight: 500;
}
main h3, main .h3 {
  font-family: "Noto Serif TC", "sans-serif", "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
  font-size: 2.33rem;
}
main h3 {
  font-weight: 600;
}
main .h3 {
  font-weight: 500;
}
main .h4 {
  font-family: "Noto Serif TC", "sans-serif", "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
  font-size: 1.67rem;
  font-weight: 500;
}
main .h6 {
  font-family: "Noto Serif TC", "sans-serif", "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
main p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
}
main p.sign {
  font-family: "Noto Serif TC", "sans-serif", "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
  position: relative;
  color: #6F6F6F;
  letter-spacing: 1px;
  /* width: 438px; */
  width: 528px;
  margin: auto;
}
main p.sign .name {
  letter-spacing: 6px;
  margin-left: 12px;
}
main p.sign::before {
  content: "";
  display: block;
  background-color: #6F6F6F;
  position: absolute;
  height: 1px;
  width: 72px;
  left: 0;
  top: 50%;
}
main p.sign::after {
  content: "";
  display: block;
  background-color: #6F6F6F;
  position: absolute;
  height: 1px;
  width: 72px;
  right: 0;
  top: 50%;
}
main .row {
  margin: 0;
}
main .btn.btn-gold {
  background: linear-gradient(to bottom, #CAA773, #BA9966);
  color: white;
  transition: 0.3s;
}
main .btn.btn-gold:hover {
  background: #016BAF;
}
main .btn.btn-radius {
  border-radius: 37px;
}
main a.read-more-link {
  color: white;
  display: block;
  padding: 0 12px;
  text-decoration: none;
}
main a.read-more-link:hover {
  text-decoration: underline;
}
main a.read-more-link img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
main .area {
  color: white;
  position: relative;
  background: #016BAF;
}
main .area .content {
  position: relative;
  margin: auto;
  max-width: 1704px;
  /* max-width: calc(1704px - 72px); */
  z-index: 5;
  /* padding-left: 20px; */
}

main .area .content .free-block {
  position: absolute;
}
main .area.bg-white {
  color: #1D1D1B;
}
main .area .color-light-white {
  color: #EDF7FD;
}

@media screen and (max-width: 991.98px) {
  html {
    font-size: 20px;
  }
  #top {
    height: 292px;
  }
  #top #gold-speckled-1 {
    right: -40%;
  }

  .slogan_area{
    margin-left: 0;
  }
  
  #top .free-block {
    width: 550px;
    left: 64px;
  }
  #top::after {
    transform: translate(-50%, 0);
    left: 50%;
    top: 220px;
    height: 47vw;
    width: 230%;
  }
  #blue-area-1 {
    height: calc(230px + 47vw);
  }
  #blue-area-2 {
    height: 666px;
  }
  #blue-area-2 h3 {
    margin-bottom: 80px;
  }
  #blue-area-2 .free-block.animated {
    animation-name: blue-2-tab;
  }
  #blue-area-2 #spotlight::before {
    width: 24px;
    height: 18px;
    left: calc(50% - 60px);
  }
  #blue-area-2 #fusion::before {
    width: 24px;
    height: 24px;
    left: calc(50% - 65px);
    bottom: 4px;
  }
  #blue-area-2 #connections::before {
    width: 24px;
    height: 24px;
    left: calc(50% - 65px);
  }
  #blue-area-3 {
    height: 1120px;
  }
  #blue-area-3 #gold-speckled-8 {
    top: 370px;
  }
  #blue-area-3 .free-block {
    top: 300px;
    opacity: 0;
  }
  #blue-area-3 .free-block.animated {
    animation-name: blue-3-tab;
    animation-delay: 0s;
    animation-duration: 2s;
    animation-fill-mode: both;
  }
  #blue-area-3 .free-block h3 {
    margin-bottom: 72px;
  }
  #white-area-1 #gold-speckled-2 {
    left: 20vw;
    top: -18vw;
  }
  #white-area-1 #gold-speckled-3 {
    right: -25%;
    bottom: -50%;
  }
  #white-area-1 .free-block {
    width: 640px;
  }
  #white-area-1 .free-block.animated {
    animation-name: white-1-tab;
  }
  #white-area-1::before {
    transform: translate(-50%, 0);
    left: 50%;
    width: 230%;
  }
  #white-area-1::after {
    transform: translate(-50%, 0);
    height: 16vw;
    width: 230%;
    left: 50%;
  }
  #white-area-2 {
    height: 400px;
  }
  #white-area-2 #gold-speckled-7 {
    right: -20%;
    bottom: -280px;
  }
  #white-area-2 .free-block h3 {
    margin-bottom: 80px;
  }
  #white-area-2::before {
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 376px;
    height: 120px;
    width: 230%;
  }
  #white-area-2::after {
    transform: translate(-50%, 0);
    left: 45%;
    height: 640px;
    width: 230%;
    top: 250px;
  }
  main h1, main .h1 {
    font-size: 4rem;
  }
  main h2, main .h2 {
    font-size: 2.8rem;
  }
  main h3, main .h3 {
    font-size: 2rem;
  }
  main h4, main .h4 {
    font-size: 1.67rem;
  }
  main h6, main .h6 {
    font-size: 0.8rem;
  }
  main p {
    font-size: 0.8rem;
  }
  main p.sign {
    width: 412px;
  }
  main a.read-more-link img {
    /* height: 106px; */
  }
}
@media screen and (max-width: 768px) {
#top .free-block {
  left: 24px;
  }

  #white-area-2::before {
    bottom: 366px;
    height: 15vh;
  }
}


@media screen and (max-width: 600px) {
  #top .free-block {
    left: 16px;
    }
  }


@media screen and (max-width: 575.98px) {
  html {
    font-size: 16px;
  }

  #top {
    height: 232px;
  }
  #top #gold-speckled-1 {
    width: 320px;
    right: -35%;
    top: 180px;
  }
  #top .poind-grid {
    height: 143px;
    overflow: hidden;
  }
  #top .poind-grid img {
    height: auto;
    width: 250vw;
    left: -150vw;
  }
  #top .free-block {
    width: calc(100vw - 40px);
    max-width: 280px;
    left: 20px;
    animation-name: top-mobile;
  }
  #top::after {
    left: calc(50% - 155px);
    top: 170px;
  }
  #blue-area-1 img {
    left: 25%;
    animation-name: move-mobile;
  }
  #blue-area-2 {
    height: 860px;
  }
  #blue-area-2 #spotlight::before {
    background-size: 100%;
    width: 28px;
    height: 23px;
    left: calc(50% - 72px);
  }
  #blue-area-2 #fusion::before {
    background-size: 100%;
    width: 28px;
    height: 28px;
    left: calc(50% - 72px);
    bottom: 6px;
  }
  #blue-area-2 #connections::before {
    background-size: 100%;
    width: 28px;
    height: 28px;
    left: calc(50% - 72px);
    bottom: 2px;
  }
  #blue-area-2 .free-block.animated {
    animation-name: blue-2-mobile;
  }
  #blue-area-2 .free-block h3 {
    margin-bottom: 45px;
  }
  #blue-area-2 .free-block .row .col-12 {
    margin: 25px 0;
  }
  #blue-area-3 {
    /* height: 1450px; */
    height: 1800px;
  }
  #blue-area-3 #gold-speckled-8 {
    top: calc(30vw + 70px);
    left: calc(50% - 80px);
    width: 66px;
  }
  #blue-area-3 .free-block.animated {
    animation-name: blue-3-mobile;
  }
  #blue-area-3 .free-block h3 {
    margin-bottom: 40px;
  }
  #blue-area-3 .free-block .row .col-12 {
    margin: 30px 0;
  }
  #white-area-1 {
    height: 600px;
  }
  #white-area-1 #gold-speckled-2 {
    width: 155px;
    top: -155px;
  }
  #white-area-1 #gold-speckled-3 {
    width: 265px;
    bottom: -25%;
  }
  #white-area-1 .free-block {
    width: calc(100vw - 40px);
    /* max-width: 280px; */
  }
  #white-area-1 .free-block.animated {
    animation-name: white-1-mobile;
  }
  #white-area-1 .free-block h3 + p {
    margin: 40px 0 10px;
  }
  #white-area-1 .free-block h3 + p + p {
    margin: 10px 0 40px;
  }
  #white-area-1::before {
    left: 10%;
    bottom: 598px;
    height: 52vw;
  }
  #white-area-1::after {
    top: 598px;
  }
  #white-area-2 {
    height: 700px;
  }
  #white-area-2 #gold-speckled-7 {
    width: 192px;
    bottom: -50px;
  }
  #white-area-2 .free-block {
    width: calc(100vw - 40px);
    /* max-width: 280px; */
    top: 0;
  }
  .free-block.text-center h3 ,#white-area-2 .free-block h3 {
    margin-bottom: 40px;
  }
  #white-area-2::before {
    height: 15.3vw;
    bottom: 698px;
  }
  #white-area-2::after {
    top: 590px;
    height: 63vw;
  }
  .btn-download {
    width: 165px;
    right: -16px;
  }
  .btn-download img {
    width: 100%;
  }
  main h1, main .h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  main h2, main .h2 {
    font-size: 3.5rem;
  }
  main h3, main .h3 {
    font-size: 1.75rem;
  }
  main h4, main .h4 {
    font-size: 1.67rem;
  }
  main h6, main .h6 {
    font-size: 1.125rem;
  }
  main p {
    font-size: 1.125rem;
  }
  main p.sign {
    width: calc(100vw - 40px);
    max-width: 372px;
    margin-top: 24px;
  }
  main p.sign::before, main p.sign::after {
    width: 39px;
  }
  .text_desktop{
    display: none;
  }
  .text_mobile{
    display: inline-block;
  } 
}
@media screen and (max-width: 520px) {
  #blue-area-3 {
    height: 1700px;
  } 
}

@media screen and (max-width: 414px) {
  header nav.navbar .navbar-brand img {
    height: 28px;
  }
  header nav.navbar .container-fluid hr#hr_line {
    height: 28px;
    right: 28px;
  }
  main p.sign {
    width: calc(100vw - 20px);
    max-width: 348px;
  }
  main p.sign::before, main p.sign::after {
    width: 24px;
  }
  #blue-area-3 {
    height: 1600px;
  } 
}

@media screen and (max-width: 379px) {
  header nav.navbar .navbar-brand img {
    height: 24px;
  }
  header nav.navbar .container-fluid hr#hr_line {
    height: 24px;
  }
  #blue-area-3 {
    height: 1500px;
  } 
}

@media screen and (max-width: 346px){
  header nav.navbar .navbar-brand img {
    height: 20px;
  }
  .container-fluid hr#hr_line {
    height: 20px;
  }
  #blue-area-3 {
    height: 1400px;
  } 
}


