
/* CSS Document */
@charset "UTF-8";



header,main,section,nav,div,ol,ul,li,a,span,input,textarea {
    box-sizing: border-box;
}

body {
	margin:0;
	padding: 0;
	/*background-color: #FFF;	*/
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	/*background: rgb(161,193,201);
    background: linear-gradient(0deg, rgba(161,193,201,1) 0%, rgba(61,88,117,1) 100%);*/
	font-family:"Times New Roman", Times, Noto Sans TC;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.75px;
    color: #53403d;
}

h1 {
    /*color: #597090;*/
    color: #674a46;
	font-size: 24px;
	text-align: center;
	font-weight: 100;
    margin-bottom: 20px;
    font-family: "Noto Serif HK", serif;
}

h2 {
    color: #674a46;
	font-size: 36px;
    line-height: 56px;
    letter-spacing: 1.75px;
	text-align: center;
	font-weight: bold;
    font-family: "Noto Serif HK", serif;
    margin-bottom: 10px;
    /*font-family:"Times New Roman", Times, "Noto Serif";*/

}

h3 {
    color: #674a46;
	font-size: 24px;
    line-height: 42px;
    letter-spacing: 1.75px;
	text-align: center;
	font-weight: 700;
    font-family: "Noto Serif HK", serif;
    margin-bottom: 10px;
    /*font-family:"Times New Roman", Times, "Noto Serif";*/

}

h4 {
    font-family: "Noto Serif HK", serif;
}


main {
    width: 100%;
    overflow: hidden;
}


.h2-span-en {
    font-weight: 300;
    padding-top: 15px;
}
@keyframes mask-cover-white {
    0%{
        width: 100%;
        height: 100vh;
        opacity: 1;
        filter: blur(80px);
        transform: scale(1.5);
        margin-top: -80px;
    }
    100%{
        width: 100%;
        height: 0vh;
        opacity: 1;
        filter: blur(0);
    }
}
.mask-cover-white {
    width: 0;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgb(255,255,255);
    z-index: 888;
    animation-name: mask-cover-white; /*兩個動畫名稱*/
    animation-duration: 1.5s; /*一次完整動畫時間分別為4秒與6秒*/
}
@keyframes mask-cover-panel {
    0%{
        width: 100%;
        height: 100vh;
        opacity: 1;
        z-index: 888;
    }
    100%{
        width: 100%;
        height: 100vh;
        opacity: 0;
        z-index: 888;
    }
}
.mask-cover-panel {
    width: 0;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgb(161,193,201);
    background: linear-gradient(0deg, rgba(161,193,201,1) 0%, rgba(61,88,117,1) 100%);
    z-index: -2;
    
    animation-name: mask-cover-panel; /*兩個動畫名稱*/
    animation-duration: 1.5s; /*一次完整動畫時間分別為4秒與6秒*/
}



header {
    position: fixed;
    z-index: -1!important;
    width: 100%;
    height: 100vh;
    background-image: url("../images/backgorund_sky.jpg");
    background-size: cover;
    background-position: top center;
}


.header-logo {
    position: fixed;
    left: 50px;
    top: 50px;
    width: 150px;
}

.float-logo-panel-pc {
        display: flex;
    }
    
    .float-logo-panel-mb {
        display: none;
    }

@keyframes blur-in-head-content {
    0%{
        filter: blur(10px);
        opacity: 0;
    }
    25%{
        filter: blur(10px);
        opacity: 0;
        margin-top: 20px;
    }
    100%{
        filter: blur(0);
        opacity: 1;
        margin-top: 0px;
    }
}

.hello-word {
    width: 100%;
    animation-name: blur-in; /*兩個動畫名稱*/
    animation-duration: 2.8s; /*一次完整動畫時間分別為4秒與6秒*/
}
@keyframes blur-in-head-content-margin {
    0%{
        opacity: 0;
        margin-top: 50px;
    }
    100%{
        opacity: 1;
        margin-top: 0px;
    }
}
.h-w-pc {
    width: 100%;
    padding-top: 20%;
    opacity: 1;
    animation-name: blur-in-head-content-margin; 
    animation-duration: 2.4s; 
}

.h-w-mb {
    display: none;
}

.nav-content-menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: .4s;
    flex-direction: row;
}
.nav-content-menu span {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.nav-content-menu-button {
    width: 50px;
    height: 50px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
}

.nav-content-menu-button img {
    width: 55%;
}

.nav-content-menu-button-panel {
    background-color: #FFF;
    padding: 15px 0 25px 0;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

@keyframes nav-open-pc {
    0%{
        filter: blur(10px);
        opacity: 0;
        width: 0;
    }
    100%{
        filter: blur(0);
        opacity: 1;
        width: auto;
    }
}

/*.nav-content-menu ul {
    transition: .4s;
    background-color: #FFF;
    padding: 25px;
    border-radius: 25px 0 0 25px;
}*/



@keyframes nav-pc-in {
    0%{
        filter: blur(10px);
        opacity: 0;
        top: 80px;
    }
    100%{
        filter: blur(0);
        opacity: 1;
        top: 30px;
    }
}

.nav-pc-01 {
    position: fixed;
    left: calc(100% - 80px);
    top: 30px;
    z-index: 8;
    display: flex!important;
    align-items: flex-start;
    animation-name: nav-pc-in; 
    animation-duration: 2s;
    transition: .4s;
}

.nav-pc-01:hover {
    position: fixed;
    left: calc(100% - 255px);
    top: 30px;
    z-index: 8;
    display: flex;
    align-items: flex-start;
    animation-name: nav-pc-in; 
    animation-duration: 2s; 
}

.nav-pc-01 ul {
    transition: .4s;
    background-color: #FFF;
    padding: 25px;
    border-radius: 25px 0 0 25px;
    flex-direction: column;
    align-items: flex-end;
}

.nav-pc-01 ul li {
    display: flex;
    transition: .4s;
}

.nav-pc-01 ul li:hover {
    display: flex;
    
}

.nav-pc-01 ul li a {
    color: #604440;
    text-decoration: none;
    font-size: 18px;
    font-family:"Times New Roman", Times, Noto Sans TC;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: solid 1px #FFF;
    transition: .4s;
}

.nav-pc-01 ul li a:hover {
    color: #59708d;
    border-bottom: solid 1px #CCC;
    transition: .4s;
}

.nav-oc {
    display: none!important;
}




/* 星空 css */


@keyframes rotatestar {
  0% {
    transform: perspective(800px) rotateZ(20deg) rotateX(-40deg) rotateY(0);
  }
  100% {
    transform: perspective(800px) rotateZ(20deg) rotateX(-40deg) rotateY(-360deg);
  }
}

#starspanle {
    position: fixed;
    z-index: -1;
}
.stars {
  transform: perspective(800px);
  transform-style: preserve-3d;
  position: absolute;
  bottom: 0;
  perspective-origin: 50% 100%;
  left: 50%;
  animation: rotatestar 90s infinite linear;
}

.star {
  width: 2px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0 -1200px;
  transform: translate3d(0, 0, -1200px);
  backface-visibility: hidden;
    
}

/* 星空 css end */


main section {
    width: 100%;
}

.head-content {
    position: absolute;
    width: 100%;
    padding: 0 0 50px 50px;
}
.head-content p {
    font-size: 40px;
    line-height: 56px;
    color: #FFF;
    font-family: "Times New Roman", Times, Noto Sans TC;
}

#float-logo-panel {
    width: 125px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50px;
    top: 0;
    padding: 30px 0 30px 0;
    border-radius: 0 0 75px 75px;
    background-color: #FFF;
    z-index: 66;
}

/*.float-logo {
    width: 125px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50px;
    top: 0;
    padding: 30px 0 30px 0;
    border-radius: 0 0 75px 75px;
    background-color: #FFF;
    z-index: 66;
}*/

.float-logo img {
    width: 55%;
}


@keyframes blur-in {
    0%{
        filter: blur(10px);
    }
    100%{
        filter: blur(0);
    }
}

.section-01-panel {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.s-01-p-img {
    width: 100%;
    animation-name: blur-in; 
    animation-duration: 2s; 
}

.s-01-p-img-mb {
    display: none;
}

.section-02-panel {
    background-color: #d8c2a1;
    margin-top: -22px;
    padding: 160px 0;
    display: flex;
    flex-direction: column;
}

.section-02-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

.section-02-content h1 {
    color: #FFFFFF;
    font-family: "Noto Serif TC", serif!important;
}

.section-02-content p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.section-02-conetnt-img {
    width: 100%;
    max-width: 1200px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section02-content-img-left {
    width: calc(100% / 5* 1);
    display: flex;
    justify-content: flex-start;
}

.section02-content-img-left img {
    width: 80%;
    margin-top: -20px;
}



.section02-content-img-center {
    width: calc(100% / 5* 3);
}

.section02-content-img-center img {
    width: 100%;
}

.section02-content-img-right {
    width: calc(100% / 5* 1);
    display: flex;
    justify-content: flex-end;
}

.section02-content-img-right img {
    width: 80%;
    margin-top: -20px;
}


.section02-content-img-left-img {
    opacity: 0;
    transform: translateX(360px) scale(0.5);
}
.section02-content-img-right-img {
    opacity: 0;
    transform: translateX(-360px) scale(0.5);
}

.section-02-img-main {
    filter: drop-shadow(0px 0px 120px #fff6e9);
    opacity: 0;
    transform: scale(0.5);
}

.section02-content-img-left img , .section02-content-img-right img {
    height: 458px;
}

.section-slogan {
    width: 100%;
    padding-top: 100px;
    display: flex;
}

.section-slogan-img {
    width: 100%;
    transform: translateX(100%);
    opacity: 0;
}



.section-03-panel {
    width: 100%;
    padding-bottom: 100px;
    display: flex;
    background-color: #d8c2a1;
}

.section-03-content {
    width: 100%;
    display: flex;
    padding-right: 10%;
}

.s03left-content {
    width: calc(100% / 5* 3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.s03left-content > img {
    width: 68%;
    filter: drop-shadow(0px 0px 120px #fff6e9);
}


.s03right-content {
    width: calc(100% / 5* 2);
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
}

.s03right-content h1 {
    text-align: left!important;
}

.s03right-content h2 {
    text-align: left!important;
}

.s03right-content h3 {
    text-align: left!important;
}

.s03right-content p {
    text-align: left!important;
    
}

.s03left-content {
    transform: translateX(50%);
    opacity: 0;
}

.s03right-content {
    transform: translateX(80%);
    opacity: 0;
}


.section-04-panel {
    width: 100%;
    padding-bottom: 100px;
    display: flex;
    background-color: #d8c2a1;
}

.section-04-content {
    width: 100%;
    display: flex;
    padding-left: 10%;
}

.s04left-content {
    width: calc(100% / 5* 2);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.s04right-content-main-img {
    width: 68%;
}

.s04right-content {
    width: calc(100% / 5* 3);
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.s04left-content h1 {
    text-align: left!important;
}

.s04left-content h2 {
    text-align: left!important;
}

.s04left-content h3 {
    text-align: left!important;
}

.s04left-content p {
    text-align: left!important;
    
}

.s04left-content {
    transform: translateX(-40%);
    opacity: 0;
}

.s04right-content {
    transform: translateX(-30%);
    opacity: 0;
}

.index-go-works {
    display: flex;
    text-decoration: none;
    color: #674a46;
    padding: 20px 30px;
    font-size: 22px;
    border: solid 1px #674a46;
    border-radius: 80px;
    transition: .4s;
    margin-top: 30px;
}

.index-go-works:hover {
    background-color: #FFF;
    color:  #674a46;
    padding: 20px 30px;
    border: solid 1px #FFFFFF;
    border-radius: 80px;
    filter: drop-shadow(0px 0px 120px #fff6e9);
}

.section-05-panel {
    width: 100%;
    background-color: #d8c2a1;
}

.section-05-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-05-content h2 {
    color: #674a46;
    font-size: 38px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-align: center;
    margin-bottom: 10px;
    font-family: "Times New Roman", Times, "Noto Serif";
}
/*
.work-slideshow {
    width: 100%;
    display: flex;
}

.work-slideshow .work-slideshow-content {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #FFF;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.work-slideshow .work-slideshow-content > img {
    width: 100%;
    transition: .5s;
    opacity: .6;
}

.work-slideshow .work-slideshow-content > img:hover {
    width: 100%;
    transition: .5s;
    transform: scale(1.1);
    opacity: 1;
}


.work-slideshow  > ul {
    width: 100%;
}


.work-slideshow-conetnt {
    width: 100%;
    height: 30vh;
    display: flex;
}*/

.scroll-panel {
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    opacity: .8;
    transition: .4s;
}

.scroll-panel:hover {
    opacity: 1;
}

.backtotop {
    width: 100%;
}

@keyframes golink-white {
    0%{
        width: 0;
        opacity: 0;
    }
    100%{
        width: 100%;
        opacity: 1;
    }
}

.golink-cover-panel {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 988;
    width: 100%;
    height: 100vh;
    transform: scale(1.5);
    filter: blur(20px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    background-color: #FFF;
    animation-name: golink-white;
    animation-duration: 2s;
}

/* --About Page-- */
@keyframes about-in-animate{
    0%{
        opacity: 0;
        filter: blur(5px);
    }
    100%{
        opacity: 1;
        filter: blur(0px);
    }
}
.about-header {
    position: relative;
    /* background-color: #D8C2A7 !important; */
    background-image: none;
    height: auto;
    display: flex;
    /* background-image: url(../images/blank.png); */
    z-index: 6 !important;
    justify-content: center;
    animation-name: about-in-animate;
    animation-duration: 3s;
    z-index: 1;
}

.about-body {
    background-color: #d9c6a6;
}

.about-header-panel {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-header-content {
    display: flex;
    color: #0a1828 !important;
    flex-direction: column;
    align-items: flex-start;
    text-align: left !important;
    position: absolute;
    left: calc(50% - 460px);
    top: 120px;
}

.about-header-content h1 {
    font-size: 68px;
    line-height: 88px;
    color: #0a1828 !important;
    font-family: "Times New Roman", Times, "Noto Serif";
    text-align: left !important;
    margin-bottom: 78px;
}

.about-header-content h2 {
    font-size: 26px;
    color: #0a1828!important;
    font-family: "Noto Serif HK", serif!important;
    text-align: left!important;
}

.about-header-content h2 p {
    font-size: 22px;
    line-height: 34px;
}


.about-header-img-pc {
    width: 1920px;
}

.about-header-img-mb {
    display: none;
}

.about-us-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-brief p {
    text-align: center;
}

.about-description {
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    max-width: 1366px;
    display: flex;
    align-items: center;
    align-items: center;
}

.about-description > div {
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-description > div > p {
    padding: 0 15%;
}

.about-description-center img {
    width: 100%;
    height: auto;
    margin-top: 80px;
}

.about-description-center-img {
    transform: scale(.5);
    opacity: 0;
}

.about-description-left {
    transform: translateX(100px);opacity: 0;
}
.about-description-right {
    transform: translateX(-100px);opacity: 0;
}
.about-brief {
    opacity: 0;
}

.about-focus , .about-explore {
    width: 5%;
}

/*.service-box {
    transform: translateY(100px);opacity: 0;
}*/

.service-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.service-content {
    width: 100%;
    max-width: 1366px;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content ol {
    width: 100%;
    display: flex;
}

.service-content ol li {
    width: calc(100% / 3);
    padding: 5% 5% 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #d9c6a6;
    transition: .4s;
}

.service-content ol li strong {
    color: #FFFFFF!important;
}

/*
.service-content ol li:hover {
    background-color: #e0d0b5;
    border-radius: 40px;
    filter: drop-shadow(5px 5px 10px #FFF);
    color: #FFFFFF!important;
}
*/


.service-content ol li > img {
    width: 60%;
    display: flex;
    margin-bottom: 30px;
}

/*  WORKS Page  */

.pages-body {
    background-color: #d8c2a1;
}

.works-header {
    position: relative;
    /* background-color: #D8C2A7 !important; */
    background-image: none;
    height: 30vh;
    display: flex;
    /* background-image: url(../images/blank.png); */
    z-index: 6 !important;
    justify-content: center;
}

.works-float-logo-panel-mb {
    display: none;
    position: fixed;
    left: 0;
    top: 30px;
    width: 220px;
    background-color: #FFF;
    border-radius: 0 50px 50px 0;
    align-items: center;
    padding: 20px 0;
}

.works-float-logo-panel-mb-img {
    width: 70%;
    margin-left: 30px;
}

.works-float-logo-panel-mb2 {
    position: fixed;
    left: 30px;
    top: 0;
    display: flex;
    width: 150px;
    height: 195px;
    background-color: #FFF;
    border-radius: 0 0 75px 75px;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px -80px 55px rgba(98, 71, 39, 0.5));
}
.works-float-logo-panel-mb a {
    width: 100%;
    display: flex;
    justify-content: center;
    border: none;
}
.works-float-logo-panel-mb2 a {
    width: 100%;
    display: flex;
    justify-content: center;
    border: none;
}

.works-float-logo-panel-mb-img2 {
    width: 60%;
}

.page-works-header-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-works-header-content h1 {
    color: #674a46;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 1.75px;
    font-weight: bold;
    font-family: "Noto Serif TC", serif;
}

.page-works-header-content > p {
    display: flex;
    font-size: 20px;
    color: #674a46;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-works-header-content > p span {
    font-size: 16px!important;
    padding: 20px 0;
}

.section-01-works-panel {
    width: 100%;
    display: flex;
    justify-content: center;
}



.works-list-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.works-list-panel ul {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #674a46!important;
}

.works-list-panel ul li {
    width: calc(80% / 3);
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.works-list-panel ul li:hover .works-list-item-img-panel {
    /*box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);*/
    filter: drop-shadow(15px 18px 25px rgba(98,71,39,0.75));
}

.works-list-panel ul li a {
    text-decoration: none;
}

.works-list-item-img-panel {
    width: 100%;
    overflow: hidden;
    display: flex;
    transition: .4s;
}

/*.works-list-item-img-panel:hover {
    
    filter: drop-shadow(15px 18px 25px rgba(98,71,39,0.75));
}*/

.works-list-item-img-panel img {
    width: 100%;
    transition: 0.5s;
    opacity: .7;
}
/*.works-list-item-img-panel:hover img {
    transform: scale(1.08);
	transition: 0.5s;
}*/

.works-list-panel ul li:hover .works-list-item-img-panel  img {
    transform: scale(1.08);
	transition: 0.5s;
    opacity: 1;
}

.works-list-item-content {
    width: 100%;
    display: flex;
    padding: 20px 0 0 0;
    /*color: #48617f;*/
    color: #674a46;
    justify-content: space-between;
    align-items: center;
}

.works-list-item-content h4 {
    font-size: 24px;
    line-height: 40px;
    font-weight: bold;
    font-family: "Noto Serif TC", serif;
    color: #674a46;
}

.works-list-item-content-right button {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 200;
    border: solid 1px #674a46;
    background-color: #ffffff00;
    border-radius: 28px;
    color: #674a46;
    transition: .4s;
}

.works-list-item-content-right button img {
    width: 50%;
}

.works-list-item-content-right button:hover {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 200;
    border: solid 1px #FFF;
    background-color: #ffffff;
    border-radius: 28px;
    color: #674a46;
}

.works-page-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-page-link ol {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.works-page-link ol li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #674a46;
    text-decoration: none;
    font-size: 20px;
    margin: 0 10px;
    border-radius: 25px;
    transition: .4s;
}

.works-page-link ol li a:hover {
    background-color: #FFF;
    border: none;
}

.works-page-link ol li a {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #674a46;
    text-decoration: none;
    font-size: 20px;
    margin: 0 10px;
}

.works-page-link span {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 10px;
    color: #674a46;
    text-decoration: none;
    font-size: 20px;
    margin: 0 20px;
}

.works-page-link span a {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 10px;
    color: #674a46;
    text-decoration: none;
    font-size: 20px;
}
.current-link {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #674a46;
    text-decoration: none;
    font-size: 20px;
    background-color: #ffffffb5;
    border-radius: 25px;
}

/*  背景暈影  */
.bouncing-blob {
  width: 32vw;
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform-origin: left top;
}

/*淺咖啡色*/
.bouncing-blob--blue {
  background: #fef0dc;
}

.bouncing-blob--white {
  background: #ffffff;
  z-index: 2;
  width: 15vw;
}
/*深咖啡色*/
.bouncing-blob--purple {
  background: #c2a882;
}
/*超淺咖啡色*/
.bouncing-blob--pink {
  background: #e6dfd5;
}

.bouncing-blobs-container {
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bouncing-blobs-glass {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(140px);
  -webkit-backdrop-filter: blur(140px);
  pointer-events: none;
}

.bouncing-blobs {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 1200px) {
    .bouncing-blobs-glass {
        backdrop-filter: blur(120px);
        -webkit-backdrop-filter: blur(120px);
    }
}

@media (max-width: 500px) {
  .bouncing-blob {
    width: 60vw;
  }
  .bouncing-blob--white {
    width: 30vw;
  }
  .bouncing-blobs-glass {
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(90px);
  }
}
/*  FOOTER  */

footer {
    width: 100%;
}

.footer-panel {
    width: 100%;
    display: flex;
    background-color: #d8c2a1;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content h2 {
    color: #674a46;
    font-size: 38px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: 1.75px;
    text-align: center;
    margin-bottom: 10px;
    font-family: "Times New Roman", Times, "Noto Serif";
}

.footer-content p {
    padding: 10px 0 20px;
}

.footer-content-info {
    width: 100%;
    max-width: 1200px;
    display: flex;
}


.footer-content-info > div {
    width: calc(100% /3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* --footer end-- */



.works-footer {
    width: 100%;
    display: flex;
    padding: 100px 0 0 0;
    flex-direction: column;
    align-items: center;
}  
   
.works-footer-panel {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}   
       
.works-footer-content-info {
    width: 100%;
    max-width: 1200px;
    display: flex;
}    

.works-footer-content-info > div {
    width: calc(100% /3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-right {
    width: 100%;
    text-align: center;
    font-size: 10px;
    color: #674a46;
    position: relative;
    margin-top: 50px;
}

    .works-copy-right {
        width: 100%;
        background-color: #000;
    }
    
.pages-copy-right {
    width: 100%;
    font-size: 12px;
    text-align: center;
    padding: 10px 10%;
}

/*@keyframes contact-fadein {
    0%{
        opacity: 0;
        filter: blur(10px);
    }
    100%{
        opacity: 1;
        filter: blur(0);
    }
}*/

.send-ofa-msg-content {
    display: flex;
    width: 100%;
    font-size: 16px;
    animation-name: contact-fadein;
    animation-duration: 2s;
}

.send-ofa-msg-content form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.send-ofa-msg-content form input {
    width: 100%;
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    border: solid 1px #88726f;
    background-color: #ffffff4a;
    transition: .5s;
}
.send-ofa-msg-content form textarea {
    width: 100%;
    height: 30vh;
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    border: solid 1px #88726f;
    background-color: #ffffff4a;
    transition: .5s;
}

.send-ofa-msg-content form input:hover , .send-ofa-msg-content form textarea:hover {
    background-color: #ffffff;
}

.send-ofa-msg-content form input:active , .send-ofa-msg-content form input:active {
    background-color: #ffffff;
}

.send-ofa-msg-content label{
    display: block;
    margin-bottom: 10px;
}

.send-ofa-msg-content .send-msg-left {
    width: 50%;
}

.send-ofa-msg-content .send-msg-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.send-msg-left > div , .send-msg-right > div {
    width: calc(100% - 20px);
    margin-bottom: 20px;
}

.send-msg-bottom {
    width: 100%;
}

.send-msg-bottom input {
    margin-bottom: 20px;
}

.send-msg-bottom textarea {
    margin-bottom: 40px;
}

.send-msg-button {
    width: 200px;
    height: 78px;
    display: flex;
    text-decoration: none;
    color: #ffffff;
    padding: 0;
    font-size: 18px;
    letter-spacing: 4px;
    border: none;
    
    border-radius: 80px;
    margin-left: 30px;
    align-items: center;
    justify-content: flex-start;
    filter: drop-shadow(8px 12px 15px rgba(255, 255, 255, .5));
    transition: .4s;
    overflow: hidden;
}

.send-msg-button:hover {
    filter: drop-shadow(8px 12px 15px rgba(255, 255, 255, 0));
    border: none;
    transition: .4s;
}

.hover-background {
    width: 100%;
    height: 100%;
    display: flex;
    background: rgb(45, 183, 218);
    background: linear-gradient(319deg, rgb(189 163 124) 0%, rgba(103, 74, 70, 1) 100%);
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.action-content {
    width: 1px;
    height: 78px;
    font-size: 1px;
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    transition: .4s;
    margin-left: -1px;
    
}

.send-msg-button:hover .action-content {
    width: 200px;
    height: 78px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: #FFF;
    margin-left: 0px;
    color: #674a46;
}


.contact-header {
    position: relative;
    /* background-color: #D8C2A7 !important; */
    background-image: none;
    height: 0;
    display: flex;
    /* background-image: url(../images/blank.png); */
    z-index: 6 !important;
    justify-content: center;
}

.contact-send-ofa-msg-content {
    display: flex;
    width: 60%;
    font-size: 16px;
    flex-direction: column;
    align-items: center;
}

.contact-content > .send-ofa-msg-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8% 6% 5% 6%;
}

.contact-content > .send-ofa-msg-content h2 {
    text-align: center!important;
    margin-bottom: 20px!important;
}

.contact-content > .send-ofa-msg-content p {
    text-align: center!important;
    margin-bottom: 20px!important;
}
.contact-content > .send-ofa-msg-content label {
    margin-bottom: 10px;
}

label > span {
    color: #B60003!important;
    font-weight: bold!important;
}



.contact-footer-panel {
    position: fixed;
    bottom: 0;
    width: 50%;
    right: 0;
    color: #FFF;
    font-size: 14px;
    display: flex;
    background-color: #d8c2a100;
    flex-direction: column;
    align-items: center;
    /* padding: 100px 0; */
}

/* -- FOOTER end --  */


/* 作品頁 */
.show-works {
    width: 100%;
    display: flex;
    justify-content: center;
}
.show-works-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.show-works-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.show-works-content img {
    width: 100%;
}

.show-works-header-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.show-works-header-content h1 {
    color: #674a46;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 1.75px;
    font-weight: bold;
    font-family: "Noto Serif TC", serif;
}
.show-works-header-content > p {
    display: flex;
    font-size: 20px;
    color: #674a46;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.web-link-content a {
    display: flex;
    text-decoration: none;
    color: #674a46;
    padding: 20px 30px;
    font-size: 18px;
    border: solid 1px #674a46;
    border-radius: 80px;
    transition: .4s;
}

.web-link-content a:hover {
    background-color: #FFF;
    color:  #674a46;
    padding: 20px 30px;
    border: solid 1px #FFFFFF;
    border-radius: 80px;
    filter: drop-shadow(0px 0px 120px #fff6e9);
}

.web-link-content {
    padding-top: 60px;
}

@keyframes contact-img-in {
    0%{
        opacity: 0;
        transform: translateX(-200px);
        filter: blur(10px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}
.contact-cover-img {
    width: 55%;
    position: fixed;
    bottom:0;
    left: calc(50% - 20px);
    animation-name: contact-img-in;
    animation-duration: 2s;
}

.scroll-down-panel {
    position: fixed;
    width: 120px;
    display: flex;
    bottom: 30px;
    margin-left: calc(50% - 60px);
}

.scroll-down-panel img {
    width: 120px; 
}


#thx-page {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 500px;
    background-image: url("../images/thank_page.jpg");
    background-size: cover;
    background-position: top center;
}

/* ------------------ pad版 如果使用者視窗寬度 <= 1280px ----------------------- */

@media screen and (min-width: 768px) and (max-width: 1280px) {	

}

/* ----------------------------------------- 手機css ----------------------------------------- */

@media screen and  (max-width: 768px) {

    
    input, textarea {
        font-size: initial;
    }
    
    h2 {
        color: #674a46;
        font-size: 28px;
        line-height: 48px;
        letter-spacing: 1.75px;
        text-align: center;
        font-weight: bold;
        margin-bottom: 10px;
        /* font-family: "Times New Roman", Times, "Noto Serif"; */
    }
    
    h3 {
        color: #674a46;
        font-size: 20px;
        line-height: 34px;
        letter-spacing: 1.75px;
        text-align: center;
        font-weight: 700;
        margin-bottom: 10px;
        /* font-family: "Times New Roman", Times, "Noto Serif"; */
    }
	#starspanle {
		position: fixed;
	}
    
    header {
        position: fixed;
        z-index: -1 !important;
        width: 100%;
        height: 90vh;
        background-image: url(../images/backgorund_sky.jpg);
        background-size: cover;
        background-position: top center;
    }
    
    .h-w-pc {
        display: none;
    }
    
    .h-w-mb {
        display: flex;
        width: 100%;
        padding-top: 25%;
        animation-name: blur-in-head-content-margin; 
        animation-duration: 2s; 
    }
    
    #float-logo-panel {
        display: none;
        width: 150px;
        height: 60px;
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        left: 0;
        top: 20px;
        padding: 0;
        border-radius: 0 30px 30px 0;
        background-color: #FFF;
        z-index: 66;
    }
    
.float-logo img {
    width: 70%;
    margin-left: -10px;
}
    
    /*選單*/
    
    .nav-panel {
        position: fixed;
        top: 0;
        left: 0;
    }
    
    nav {
        position: fixed;
        right: 30px;
        top: 30px;
        z-index: 8;
        display: none;
    }    
    .nav-content-menu span {
        display: none;
    }
    .nav-content-menu-button-panel {
        display: none!important;
        background-color: rgb(0 0 0 / 0%);
        padding: 15px 0 25px 0;
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 30px;
    }
    
    /*.nav-content-menu ul {
        transition: .4s;
        background-color: rgb(0 0 0 / 0%);
        padding: 0;
        border-radius: 0;
    }*/
    
    
    
    
    .float-logo-panel-pc {
        display: none;
    }
    
    .float-logo-panel-mb {
        display: flex;
    }
    
    @keyframes nav-mb-in {
        0%{
            filter: blur(10px);
            opacity: 0;
            top: 0px;
            transform: scale(.1);
            border-radius: 1080px;
            filter: blur(5px);
        }
        100%{
            filter: blur(0);
            opacity: 1;
            top: 0px;
            transform: scale(1);
            border-radius: 0;
            filter: blur(0);
        }
    }
    .nav-pc-02 {
        width: 100%;
        height: 100vh;
        background-color: #57708eeb;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 8;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        -o-backdrop-filter: blur(3px);
        -moz-backdrop-filter: blur(3px);
        animation-name: nav-mb-in;
        animation-timing-function: ease-in;
        animation-duration: .3s;
    }
    
    .nav-pc-02 ul {
        transition: .4s;
        background-color: rgb(0 0 0 / 0%);
        padding: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-pc-02 ul li {
        display: flex;
        transition: .4s;
    }

    .nav-pc-02 ul li:hover {
        display: flex;

    }

    .nav-pc-02 ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        font-family: "Times New Roman", Times, Noto Sans TC;
        padding: 25px 15px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-bottom: solid 1px #ffffff75;
        transition: .4s;
    }
    
    .nav-pc-02 ul li:last-child a {
        border: none;
    }


    .nav-pc-02 ul li a:hover {
        color: #59708d;
        border-bottom: solid 1px #CCC;
        transition: .4s;
    }
    
    .nav-oc {
        display: flex!important;
        position: fixed;
        right: 20px;
        top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 866;
    }
    
    .nav-open {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        border-radius: 25px;
        border: none;
        background-color: #FFF;
    }
    .nav-open-img {
        width: 40%;
    }
    
    .nav-close {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        border-radius: 25px;
        border: none;
        background-color: #FFF;
    }
    .nav-close-img {
        width: 40%;
    }
    
    
    .section-01-panel {
        display: flex;
        align-items: flex-end;
        width: 100%;
        height: 90vh;
        overflow: hidden;
    }
    .s-01-p-img {
        display: none;
        
    }

    .s-01-p-img-mb {
        width: 100%;
        display: flex;
        animation-name: blur-in; /*兩個動畫名稱*/
        animation-duration: 2s; /*一次完整動畫時間分別為4秒與6秒*/
    }
    
    .header-logo {
        position: fixed;
        left: 20px;
        top: 20px;
        width: 100px;
    }
    
    .head-content {
        /*display: none;*/
        position: absolute;
        width: 100%;
        padding: 0 0 0 10%;
        overflow: hidden;
        /*background-color: #d8c2a1;*/
    }
    
    .head-content p {
        font-size: 26px;
        line-height: 34px;
        color: #FFF;
        font-family: "Times New Roman", Times, Noto Sans TC;
    }

    
    .section-02-panel {
        background-color: #d8c2a1;
        margin-top: -22px;
        padding: 150px 0 120px 0;
        display: flex;
        flex-direction: column;
    }
    
    .section-02-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 5%;
        opacity: 0;
    }
    
    .section-02-conetnt-img {
        width: 100%;
        height: 250px;
        max-width: 1200px;
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .section02-content-img-center {
        width: 100%;
    }
    
    .section02-content-img-left {
        display: none;
    }
    
    .section02-content-img-right {
        display: none;
    }
    
    .section-03-panel {
        width: 100%;
        display: flex;
        padding-right: 0;
        padding: 0 10%;
        flex-direction: column;
        align-items: center;
    }
    
    
    
    .section-03-content {
        width: 100%;
        display: flex;
        padding-right: 0;
        padding: 0;
        flex-direction: column;
        align-items: center;
    }
    
    
    
    .s03right-content {
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .s03left-content  {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .s03left-content-main-img {
        width: 100%!important;
        filter: drop-shadow(0px 0px 120px #fff6e9);
    }
    .s03left-content h1 {
        text-align: center!important;
    }

    .s03left-content h2 {
        text-align: center!important;
    }

    .s03right-content h3 {
        text-align: center!important;
    }

    .s03right-content p {
        text-align: center!important;

    }   
    
.section-04-panel {
    width: 100%;
    padding: 50px 0;
    display: flex;
    background-color: #d8c2a1;
}

    .section-04-content {
        width: 100%;
        display: flex;
        padding-left: 0;
        padding: 0 10%;
        justify-content: center;
        flex-direction: column;
    }

    .s04left-content {
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .s04left-content h1 {
        text-align: center!important;
    }

    .s04left-content h2 {
        text-align: center!important;
    }

    .s04left-content h3 {
        text-align: center!important;
    }

    .s04left-content p {
        text-align: center!important;

    } 
    
    .s04right-content {
        width: 100%;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    
    .s04right-content-main-img {
        width: 100% !important;
        opacity: 1;
    }   
    
    
    /*  Works-page */
    
    .works-header {
        position: relative;
        background-image: none;
        height: auto;
        display: flex;
        z-index: 6 !important;
        justify-content: center;
    }
    

    
    .works-float-logo-panel-mb {
        width: 150px;
        height: 60px;
        position: fixed;
        display: flex;
        align-items: center;
        left: 0;
        top: 20px;
        padding: 0;
        border-radius: 0 30px 30px 0;
        background-color: #FFF;
        z-index: 66;
    }

    .works-float-logo-panel-mb-img {
        width: 70%;
        margin-left: 15px;
    }

    .works-float-logo-panel-mb2 {
        display: none;
    }
    
    
    .page-works-header-content {
        width: 100%;
        max-width: 800px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 150px 10% 50px 10%;
        /* margin-top: 100px; */
    }
    
    .page-works-header-content > p {
        display: flex;
        font-size: 20px;
        line-height: 32px;
        color: #674a46;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .page-works-header-content > p span {
        line-height: 28px;
    }
    
.works-list-panel ul {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    color: #674a46 !important;
    flex-direction: column;
}
    
.works-list-panel ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}
    
.works-list-item-img-panel img {
    width: 100%;
    transition: 0.5s;
    opacity: 1;
}
    
.works-list-item-content-left h4 {
    font-size: 24px;
    line-height: 40px;
    font-weight: bold;
    color: #674a46;
    font-family: "Noto Serif HK", serif!important;
}
    .works-list-item-content-right button img {
        width: 18px;
    }

    .footer-content-info {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content-info > div {
        width: 80%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .works-footer-content-info {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
    }
    
    
    .works-footer-content-info > div {
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    
    .show-works-header-content{
        padding: 150px 0 60px 0;
    }
    
    .footer-panel {
        width: 100%;
        display: flex;
        background-color: #d8c2a1;
        flex-direction: column;
        align-items: center;
        padding: 50px 10%;
    }
    .send-msg-button {
        width: 200px;
        height: 78px;
        display: flex;
        text-decoration: none;
        color: #ffffff;
        padding: 0;
        font-size: 18px;
        letter-spacing: 4px;
        border: none;
        border-radius: 80px;
        margin-left: 0;
        margin: 0 auto 0!important;
        align-items: center;
        justify-content: flex-start;
        filter: drop-shadow(8px 12px 15px rgba(255, 255, 255, .5));
        transition: .4s;
        overflow: hidden;
    }
    
    .contact-content > .send-ofa-msg-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 120px 10% 0 10%;
    }
    
    .contact-content > .send-ofa-msg-content h2 {
        margin-bottom: 20px;
    }
    
    .contact-content > .send-ofa-msg-content p {
        text-align: center;
        margin-bottom: 20px;
    }
    
    
    
    .contact-footer-panel {
        position: fixed;
        bottom: 0;
        width: 100%;
        right: 0;
        color: #FFF;
        font-size: 12px;
        line-height: 18px;
        display: flex;
        background: rgb(0,0,0);
        background: linear-gradient(0deg, rgba(0,0,0,0.6068802521008403) 0%, rgba(253,187,45,0) 100%);
        flex-direction: column;
        align-items: center;
        padding: 10px 0 10% 10px 10%;
    }    
    
    .contact-img-panel{
        display: flex;
        width: 100%;
        margin-top: 50px;
    }
    
    .contact-cover-img {
        width: 130%;
        position: relative;
        left: -15%;
    }
    
    .about-header-img-pc {
        width: 1920px;
        display: none;
    }

    .about-header-img-mb {
        display: block;
        max-width: 100%;
        height: auto;
    }
    
    .about-header-img {
        width: 100%;
    }
    
    .about-header-content {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 25% 0 0 10%;
    }
.about-header-content h1 {
    font-size: 40px;
    line-height: 58px;
    color: #0a1828 !important;
    font-family: "Times New Roman", Times, "Noto Serif";
    text-align: left !important;
    margin-bottom: 30px;
}
.about-header-content h2 {
    font-size: 18px;
    color: #0a1828 !important;
    font-family: "Noto Serif HK", serif !important;
    text-align: left !important;
}
    
.about-header-content h2 p {
    font-size: 16px;
    line-height: 34px;
}    
    
    .about-brief {
        width: 100%;
        display: flex;
    }
    .about-brief {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
.about-us-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding: 50px 10%;
}
.about-description {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    max-width: 1366px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
    .about-description > div {
        width: 100%;
        display: flex;
        align-items: flex-start;
    }
    
    .about-description-left {
        padding-left: 5%;
        border-left: solid 1px #FFF;
        margin-top: 80px;
    }
    
    .about-description-left img {
        margin-right: 5%;
    }
    
    .about-description-right {
        padding-right: 5%;
        border-right: solid 1px #FFF;
    }
    
    .about-description-right img {
        margin-left: 5%;
    }
    .about-description-center img {
        width: 100%;
        height: auto;
        margin: 60px 0 40px 0;
    }

    .about-description > div > p {
        padding: 0;
    }
    .service-content ol {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .service-content ol li {
        width: 100%;
        padding: 12%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background-color: #d9c6a6;
        transition: .4s;
        border-bottom: dotted 1px #FFF;
    }
    
    .service-content ol li:last-child {
        border-bottom: none;
    }
    
    #thx-page {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        height: 500px;
        background-image: url("../images/thank_page_mb.jpg");
        background-size: cover;
        background-position: top center;
    }
    
}
