html, body {
	max-width: 100%;
	overflow-x: hidden;
	font-family: 'Noto Sans TC', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: always;
}

body {
	background-color: #FFF;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
    min-height: 2000px;
}

img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	-ms-user-drag: none;
	user-drag: none;
}

img.full-expand {
    object-fit: cover;
    object-position: center center;
}

a:hover {
	text-decoration: none;
}

button:focus {
	outline: none !important;
}

.navbar-custom {
	padding: 1rem;
}

.navbar-custom::before {
	content:'';
	position:absolute;
	z-index: -1;
	width: 100%;
	height: 60px;
	top: -10px;
	left: 0;
	background-color: rgba(255,255,255, .98);
	opacity: 0;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.navbar-custom.navbar-shrink::before {
	top: 0;
	opacity:1;
}

.navbar-start {
	padding: 0;
}

.navbar-custom .navbar-brand img {
	height: 15px;
}

.navbar-custom .nav-link {
	font-size: 14px;
	font-weight:450;
	color:#142C57;
	padding: 0 15px !important;
	position:relative;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.navbar-custom .nav-link:hover {
	color: #142C57;
}

.navbar-custom .nav-link::after {
	content:'';
	position:absolute;
	z-index:2;
	width: 1px;
	height: 2px;
	bottom: -5px;
	left: 50%;
	background-color: #142C57;
	transform: translateX(-50%);
	opacity:0;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.navbar-custom .nav-link:hover::after, .navbar-custom .nav-link.active::after {
	width: calc(100% - 30px);
	opacity: 1;
}

.navbar-custom .nav-link span {
	display: none;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 11px;
	font-weight: 300;
	color: #076B9B;
	letter-spacing: 2px;
}

.nav-icon {
	margin: 0 0 0 15px;
	padding: 0 0 0 30px;
	line-height: 1;
	font-size: 15px;
	position: relative;
	display: flex;
	align-items: center;
}

.nav-icon::before {
	content:'';
	position:absolute;
	z-index:2;
	left: 0;
	top: 50%;
	width: 1px;
	height: 85%;
	transform: translateY(-48%);
	background-color: #142C57;
}

.nav-icon > .icon-link {
	margin: 0 15px 0 0;
}

.nav-icon > .icon-link:last-child {
    margin: 0;
}

.icon-link {
	font-size: 15px;
	color: #142C57 !important;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.icon-link:hover {
	color: #076B9B;
}

@media screen and (max-width: 1210px) and (min-width: 767px) {
  .navbar-custom .nav-link {
	padding: 0 8px !important;
   }
   
   .navbar-custom .nav-link:hover::after, .navbar-custom .nav-link.active::after {
	width: calc(100% - 16px);
   }
   
   .nav-icon {
	margin: 0 0 0 8px;
	padding: 0 0 0 16px;
   }
   
   .nav-icon > .icon-link {
    margin: 0 8px 0 0;
   }

   .nav-icon > .icon-link:first-child {
	margin: 0;
}
}

@media only screen and (max-width: 766px) {
   .navbar-custom {
	   padding: 0;
   }
   
   .navbar-custom .navbar-start {
	   padding: 1rem 30px .5rem 30px;
	   width: 100%;
	   display: flex;
	   align-items: center;
	   justify-content: space-between;
	   flex-direction: row;
	   z-index: 5;
   }
   
   .navbar-collapse {
	   margin: -64px 0 0 0;
	   padding: 94px 30px 30px 30px;
	   background-color: rgba(255,255,255, .92);
   }
   
   .navbar-custom .nav-item {
	   border-top: solid 1px rgba(0,0,0, .1);
   }
   
   .navbar-custom .nav-item:last-child {
	   border-top: solid 1px rgba(0,0,0, .1);
	   border-bottom: solid 1px rgba(0,0,0, .1);
   }
   
   .navbar-custom .nav-link {
	   display:flex;
	   font-size: 16px;
	   padding: 15px 0 !important;
	   align-items: center;
   }
   
   .navbar-custom .nav-link::after, .navbar-custom .nav-link.active::after {
	   display:none;
   }
   
   .navbar-custom .nav-link span {
	  display:inline-block;
	  margin: 0 0 0 auto;
   }
   
   .nav-icon {
	padding: 0;
	margin: 0 20px 0 auto;
    }
	
	.nav-icon > .icon-link {
		font-size: 16px;
	}
   
   .nav-icon > .icon-link:last-child {
	margin: 0;
   }
   
   .nav-icon::before {
	left: -20px;
   }
   
}

.navbar-toggler {
	position: relative;
	z-index: 9999;
	border: none;
	height: 22px;
	display: block;
	width: 22px;
	padding: 0 !important;
}
.navbar-toggler #nav-icon3 {
	width: 22px;
	height: 22px;
	display: block;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.navbar-toggler #nav-icon3 span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #142C57;
	border-radius: 0;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out
}

.navbar-toggler #nav-icon3 span:nth-child(1) {
	top: 3px
}
.navbar-toggler #nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
	top: 10px
}
.navbar-toggler #nav-icon3 span:nth-child(4) {
	top: 17px
}
.nav-open #nav-icon3 span:nth-child(1) {
	top: 11px;
	width: 0;
	left: 50%
}

.nav-open #nav-icon3 span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}
.nav-open #nav-icon3 span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg)
}
.nav-open #nav-icon3 span:nth-child(4) {
	top: 11px;
	width: 0;
	left: 50%
}

.full-bg-50 {
	background: no-repeat center center scroll;
	background-size:auto 75%;
}

.full-bg-contain {
	background: no-repeat center center scroll;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	background-size:contain;
}

.full-bg-cover {
	background: no-repeat center center scroll;
	-moz-background-size:cover;
	-webkit-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
}

section.masthead {
    width: 100%;
    height: 100svh;
    max-height: 100vh;
    background-image: url(../img/open.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
    position: relative;
}

section.masthead::after {
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 10%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(244,245,245,1) 15%, rgba(244,245,245,0) 100%);
}

section.masthead .efx {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	opacity: .5;
	mix-blend-mode: overlay;
}

section.masthead .efx video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mouse-ani {
	position:absolute;
	z-index:5;
	width: 22px;
	height: 85px;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: no-repeat center bottom scroll;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	background-size:contain;
	background-image:url(../img/mouse.svg);
}

.mouse-ani .v1 {
	position: absolute;
	z-index: 1;
	width: 2px;
	height: 35px;
	top:0;
	left: 10px;
	background-color: rgba(12,66,80, .3);
}

.mouse-ani .v2 {
	position: absolute;
	z-index: 2;
	width: 2px;
	height: 8px;
	top:0;
	left: 10px;
	background-color: rgba(12,66,80, 1);
	animation: mouse-down 1.5s linear infinite;
}

@keyframes mouse-down {
  0% { top:0; opacity:1}
  70% {top: 27px; opacity:1}
  80% { top: 27px; opacity:0}
  100% { top: 27px; opacity:0}
}

.masthead .slogan {
	position:absolute;
	z-index: 5;
	width: 35%;
    min-width: 500px;
	height: auto;
	left: 50%;
	top:50%;
	transform:translate(-50%,-50%) scale(1.2);
	opacity: 0;
	filter: blur(5px);
	animation: slogan-ani 1.2s ease-in forwards;
}

.masthead.act .slogan {
    animation: slogan-ani 1.2s ease-in 1s forwards;
}

@keyframes slogan-ani {
  0% { 
    filter: blur(5px);
    transform:translate(-50%,-50%) scale(1.2);
	opacity: 0;
  }
  100% { 
    filter: blur(0);
    transform:translate(-50%,-50%) scale(1);
	opacity: 1;}
}

@media only screen and (max-width: 766px) {
	.masthead .slogan {
		width: 80%;
        min-width: 200px;
	}
}

section .section-inner {
    overflow: hidden;
}

#p1-1 {
    position: relative;
    background-image: url('../img/p1-1.jpg'); 
    padding: 150px 0;
}

#p1-1 .gt {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 15%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(244,245,245,1) 15%, rgba(244,245,245,0) 100%);   
}

#p1-1 .gb {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 15%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 100%);
}

#p1-1 .efx {
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	opacity: .5;
	mix-blend-mode: overlay;
	filter: grayscale(100%);
}

#p1-1 .efx video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#p1-2 {
    position: relative;
}

#p1-3 {
    position: relative;
    padding: 6rem 0;
    background-image: url('../img/p1-3.jpg');
}

#p1-2 .gt, #p1-3 .gt {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 10%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 100%);  
}

#p1-2 .gb {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 10%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 100%);
    opacity: 1;
}

#p1-2 .ft {
    position: absolute;
    left: 0;
    top: 0;
}

#p1-2 .ft:nth-child(1) {
    z-index: 1;
}

#p1-2 .ft:nth-child(2) {
    z-index: 2;
    animation: light-loop 2s ease-in-out infinite;
}

#p1-2 .ft:nth-child(3) {
    z-index: 3;
    animation: light-loop 2s ease-in-out infinite;
}

#p1-2 .ft:nth-child(4) {
    z-index: 4;
    animation: light-loop 2s ease-in-out infinite;
}

#p1-2 .ft:nth-child(5) {
    z-index: 5;
    animation: light-loop 2s ease-in-out infinite;
}

#p1-2 .ft:nth-child(6) {
    z-index: 6;
    animation: light-loop 2s ease-in-out infinite;
}

#p1-2 .ft:nth-child(7) {
    z-index: 7;
    animation: light-loop 2s ease-in-out infinite;
}

#p1-2 .ft:nth-child(8) {
    z-index: 8;
    animation: light-loop 2s ease-in-out infinite;
}


@keyframes light-loop {
  0% { filter: brightness(100%) saturate(100%);}
  50% {filter: brightness(90%) saturate(180%);}
  100% { filter: brightness(100%) saturate(100%);}
}


@media only screen and (max-width: 766px) {
    #p1-2 {
        padding: 30px 0 0 0;
    }

    #p1-2 .gt, #p1-3 .gt {
        height: 30px;
    }

    #p1-2 .gb {
        opacity: 0;
    }
}

#p2-1 {
    background-color: #399dd9;
    padding: 5rem 0 0 0;
}

#p2-2 {
    background-color: #eeeeef;
    padding: 5rem 0;
}

#p2-3 {
    padding: 5rem 0;
}

#p2-4 {
    padding: 5rem 0 0 0;
    aspect-ratio: 5/3;
    background-image: url('../img/p2-4.jpg');
}

@media only screen and (max-width: 766px) {
    #p2-2 {
        padding: 5rem 0 2rem 0;
    }
    #p2-3 {
        padding: 5rem 0 3rem 0;
    }
    #p2-4 {
        aspect-ratio: inherit;
        height: 85vh;
    }
}

#p3-1 {
    background-color: #1688c4;
    padding: 5rem 0 0 0;
} 

#p3-2 {
    background-color: #eeeeef;
    padding: 0;
}

#p3-3 {
    padding: 5rem 0;
}

@media only screen and (max-width: 766px) {
    #p3-2, #p3-3 {
        padding:5rem 0 3rem 0;
    } 
}

#p4-1 {
    padding: 0;
}

#p4-2 {
    padding: 5rem 0 0 0;
}

#p4-3 {
    padding: 3rem 0 0 0;
    aspect-ratio: 20/12;
    background-image: url('../img/p4-3.jpg');
}

#p5 {
    padding: 5rem 0 0 0;
}

#p6 {
    position: relative;
    background-image: url('../img/p1-1.jpg'); 
    padding: 6rem 0;
    min-height: 500px;
}

#p6 .gt {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 10%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 100%);  
}

@media only screen and (max-width: 766px) {
    #p4-1, #p4-2, #p5 {
        padding:5rem 0 3rem 0;
    }
    #p4-3 {
        aspect-ratio: inherit;
        height: 80vh;
    }
}

.main {
    color: #231815;
}

.main.wt {
    color: #fff;
}

.main h2 {
    font-weight: 600;
    font-size: 32px;
    margin: 0 0 15px 0;
    letter-spacing: 4px;
}

.main h3 {
    font-weight: 600;
    font-size: 28px;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    transform: translateX(-1px);
}

.main h3.en {
    font-weight: 400;
}

.main h4 {
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #076B9B;
}

.main h4 span {
    color: #231815;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin: 5px 0 0 0;
}

.main p {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
}

.main h5.ns {
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
    letter-spacing: 2px;
    padding: 0 0 10px 0;
    border-bottom: solid 1px #076B9B;
    margin: 0 0 20px 0;
    white-space: nowrap;
}

.main h5.ns .bw {
    color: #076B9B;
    font-size: 26px;
    letter-spacing: 1px;
    margin: 0 0 0 3px;
    font-weight: 600;
    padding: 0 3px;
}

.main h5 {
    font-weight: 600;
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.main .sub {
    padding: 0 0 0 20px;
    position: relative;
}

.main .sub::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    width: 4px;
    height: 95%;
    background-color: #076B9B;
    display: block;
    transform: translateY(-50%);
}

.main.wt .sub::before {
    background-color: #fff;
}

.main .sub h3, .main .sub h5 {
    margin: 0 0 10px 0;
}

.main .sub p {
    margin: 0;
    line-height: 1;
}

.main .sub p.alt {
    margin: 0;
    line-height: 2;
}

@media only screen and (max-width: 766px) {
    .main h2 {
        font-size: 30px;
    }
    
    .main h3 {
        font-size: 24px;
    }
    
    .main p {
        font-size: 12px;
    }

    .main h5.ns {
        font-size: 12px;
        letter-spacing: 0;
    }

    .main h5 {
        font-size: 16px;
    }

    .main h5.ns .bw {
        font-size: 18px;
        letter-spacing: 0;
        padding: 0 2px;
    }
}

.swipe-ani {
    width: 100px;
    height: 20px;
    background-image: url('../img/swipe1.svg');
    display: inline-block;
    margin: 0 auto;
}

.swipe-ani.alt {
    background-image: url('../img/swipe1w.svg');
}

.swipe-ani img {
    width: 100px;    transform: translateX(-20px);
    animation: swipe-m 3s ease-in-out infinite;
}

@keyframes swipe-m {
    0% { transform: translateX(-12px);}
    50% {transform: translateX(12px);}
    100% { transform: translateX(-12px);}
  }

.container-inner {
	width: 100%;
}

.overflow-x-auto {
	overflow-x: auto;
}

.add-text {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

.add-text.alt {
    right: 27px;
}

.wtt {
    position: absolute;
    z-index: 3;
    left: 20px;
    top: 20px;
    color: #fff;
}

.wtt h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
}

.wtt h5 {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.ap1-1 {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}

.ap1-11 {
    position: relative;
    width: 100%;
    aspect-ratio: 10/11;
}

.ap1-44 {
    position: relative;
    width: 100%;
    aspect-ratio: 100/44;
}

.ap1-593 {
    position: relative;
    width: 100%;
    aspect-ratio: 1000/593;
}

.ap1-675 {
    position: relative;
    width: 100%;
    aspect-ratio: 1000/675;
}

.ap2-11 {
    position: relative;
    width: 100%;
    aspect-ratio: 20/11;
}

.ap2-85 {
    position: relative;
    width: 100%;
    aspect-ratio: 200/85;
}

.ap2-21 {
    position: relative;
    width: 100%;
    aspect-ratio: 20/21;
}

.ap2-22 {
    position: relative;
    width: 100%;
    aspect-ratio: 20/22;
}

.ap2-1075 {
    position: relative;
    width: 100%;
    aspect-ratio: 200/90;
}

.ap1-68 {
    position: relative;
    width: 100%;
    aspect-ratio: 100/68;
}


@media only screen and (max-width: 766px) {
    .ap1-675 {
        aspect-ratio: 1/1;
    }
    .ap2-1075 {
        aspect-ratio: 1000/975;
    }
}

.vbl {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 0;
    width: 4px;
    height: 5rem;
    background-color: #1688c4;
    transform: translate(-50%, -50%);
}

.swd {
    filter: drop-shadow(1px 0px 8px #000000);
-webkit-filter: drop-shadow(1px 0px 8px #000000);
-moz-filter: drop-shadow(1px 0px 8px #000000);
}

.swd2 {
    filter: drop-shadow(1px 0px 8px rgba(0,0,0,.15));
    -webkit-filter: drop-shadow(1px 0px 8px rgba(0,0,0,.15));
    -moz-filter: drop-shadow(1px 0px 8px rgba(0,0,0,.15));
}

.map {
    width: 100%;
    aspect-ratio: 10/4.9;
}

#loading {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.9);
  }
  @keyframes lds-rolling {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @-webkit-keyframes lds-rolling {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .lds-rolling {
    position: relative;
  }
  .lds-rolling div, .lds-rolling div:after {
    position: absolute;
    width: 86px;
    height: 86px;
    border: 6px solid #294D6D;
    border-top-color: transparent;
    border-radius: 50%;
  }
  .lds-rolling div {
    -webkit-animation: lds-rolling 1s linear infinite;
    animation: lds-rolling 1s linear infinite;
    top: 100px;
    left: 100px;
  }
  .lds-rolling div:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .lds-rolling {
    width: 200px !important;
    height: 200px !important;
    -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
    transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  }

  #myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 0; /* Place the button at the bottom of the page */
    right: 0px; /* Place the button 30px from the right */
    z-index: 9999; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #fff; /* Set a background color */
    color: #294D6D; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px 15px 10px 15px;
    border-radius: 0px; /* Rounded corners */
    font-size: 1rem; /* Increase font size */
  }
  #myBtn:hover {
    color: #fff;
    background-color: #294D6D; /* Add a dark-grey background on hover */
  }

  .btn-custom {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(12,66,80,1) 100%);
    border: none;
    -webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
  }

  .btn-custom:hover {
    color: #fff;
    background: #2ca6e0;
  }