/*
 *  Owl Carousel - Core
 */
@import "https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,500,700&display=swap";
@import "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap";
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #8aceb1;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #FFF;
      display: block;
      -webkit-backface-visibility: visible;
      -webkit-transition: opacity 200ms ease;
      -o-transition: opacity 200ms ease;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #8aceb1; }

html {
  font-size: 15px; }
  @media (min-width: 992px) {
    html {
      font-size: 16px; } }

body {
  color: #58595B !important;
  font-family: "Roboto", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  /* ios5+ */ }

ele {
  overflow: auto; }

a {
  color: #58595B; }
  a:hover {
    color: #A0CDB1; }

button:focus {
  outline: 0; }

.container {
  max-width: 1200px; }

.container-lg {
  max-width: 930px; }

@font-face {
  font-family: 'ElegantIcons';
  src: url("../fonts/ElegantIcons.eot");
  src: url("../fonts/ElegantIcons.eot?#iefix") format("embedded-opentype"), url("../fonts/ElegantIcons.woff") format("woff"), url("../fonts/ElegantIcons.ttf") format("truetype"), url("../fonts/ElegantIcons.svg#ElegantIcons") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon] {
  position: relative;
  top: 1px;
  font-style: normal; }
  [data-icon]:before {
    font-family: 'ElegantIcons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased; }

.bg-light {
  background-color: #80818326 !important; }

.bg-gray {
  background-color: #BDBFC1 !important; }

.text-primary {
  color: #A0CDB1 !important; }

.btn {
  border-radius: 0; }
  .btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

.btn-primary {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-color: #A0CDB1;
  background-color: #A0CDB1; }
  .btn-primary:hover {
    border-color: #DB8379;
    background-color: #DB8379; }
  .btn-primary:active {
    border-color: #DB8379 !important;
    background-color: #DB8379 !important; }

.btn-xl {
  min-width: 270px;
  padding: 1rem;
  font-size: 2rem;
  border-radius: 30px 0 !important; }

.btn-hover-box {
  position: relative;
  z-index: 1;
  color: #fff;
  border-color: #fff;
  border-radius: 20px 0;
  overflow: hidden; }
  @media (min-width: 992px) {
    .btn-hover-box {
      border-radius: 30px 0; } }
  .btn-hover-box:hover, .btn-hover-box:active {
    color: #fff !important;
    border-color: #A0CDB1 !important;
    background-color: transparent !important; }
  .btn-hover-box:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  .btn-hover-box:hover:before {
    bottom: -20%; }
  .btn-hover-box:hover:after {
    top: -20%; }
  .btn-hover-box:before, .btn-hover-box:after {
    width: 130%;
    height: 130%;
    position: absolute;
    display: block;
    content: "";
    background-color: #A0CDB1;
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out; }
  .btn-hover-box:before {
    bottom: -160%;
    left: -50%; }
  .btn-hover-box:after {
    top: -160%;
    right: -50%; }
  .btn-hover-box span {
    position: relative;
    z-index: 1; }

.carousel-progress .item-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; }

.carousel-progress .owl-dots {
  bottom: 12%;
  left: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%; }
  @media (min-width: 992px) {
    .carousel-progress .owl-dots {
      bottom: 10%; } }
  .carousel-progress .owl-dots .owl-dot {
    width: 38px;
    margin: 0 10px;
    border: 2px solid #A0CDB1;
    border-radius: 25px; }
    @media (min-width: 992px) {
      .carousel-progress .owl-dots .owl-dot {
        margin: 0 15px; } }
    .carousel-progress .owl-dots .owl-dot span {
      width: 0;
      height: 6px;
      margin: 0;
      background-color: transparent; }
      .carousel-progress .owl-dots .owl-dot span.running {
        -webkit-animation-play-state: running !important;
        animation-play-state: running !important;
        -webkit-animation: progress-running 5s linear forwards !important;
        animation: progress-running 5s linear forwards !important; }

@-webkit-keyframes progress-running {
  from {
    width: 0; }
  to {
    width: 100%; } }

@keyframes progress-running {
  from {
    width: 0; }
  to {
    width: 100%; } }
      .carousel-progress .owl-dots .owl-dot span.paused {
        -webkit-animation-play-state: paused !important;
        animation-play-state: paused !important;
        -webkit-animation: progress-paused 0s linear forwards !important;
        animation: progress-paused 0s linear forwards !important; }

@-webkit-keyframes progress-paused {
  to {
    width: 0; } }

@keyframes progress-paused {
  to {
    width: 0; } }
    .carousel-progress .owl-dots .owl-dot.active span {
      width: 100%;
      background: -webkit-gradient(linear, left top, right top, from(rgba(138, 206, 177, 0)), to(#8aceb1));
      background: -webkit-linear-gradient(left, rgba(138, 206, 177, 0), #8aceb1);
      background: -o-linear-gradient(left, rgba(138, 206, 177, 0), #8aceb1);
      background: linear-gradient(to right, rgba(138, 206, 177, 0), #8aceb1);
      -webkit-animation: progress-init 5s linear forwards;
      animation: progress-init 5s linear forwards; }

@-webkit-keyframes progress-init {
  from {
    width: 0; }
  to {
    width: 100%; } }

@keyframes progress-init {
  from {
    width: 0; }
  to {
    width: 100%; } }

.carousel-progress .play, .carousel-progress .stop {
  width: 26px;
  height: 26px;
  margin: 0 10px;
  font-size: 2rem;
  cursor: pointer; }
  @media (min-width: 992px) {
    .carousel-progress .play, .carousel-progress .stop {
      margin: 0 15px; } }

.carousel-progress .play {
  display: none;
  background: url(../img/icons/icon_play.svg) 0 0 no-repeat;
  background-size: cover; }

.carousel-progress .stop {
  background: url(../img/icons/icon_pause.svg) 0 0 no-repeat;
  background-size: cover; }

.nav-category {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: -40px;
  margin-bottom: 20px;
  overflow-x: auto; }
  @media (min-width: 768px) {
    .nav-category {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .nav-category .nav-item {
    margin: 0 .5rem; }
    @media (min-width: 768px) {
      .nav-category .nav-item {
        margin: 0 2rem; } }
  .nav-category .nav-link {
    padding: .5rem;
    white-space: nowrap;
    text-align: center; }
    .nav-category .nav-link.active {
      color: #DB8379; }

.pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem; }
  .pagination .page-item.active .page-link {
    color: #DB8379;
    background-color: transparent; }
  .pagination .page-item.disabled .page-link {
    color: #A2A4A7;
    opacity: .5; }
  .pagination .page-item .page-link {
    color: #A2A4A7;
    font-size: 1.25rem;
    font-weight: bold;
    border: 0; }
    .pagination .page-item .page-link:hover {
      color: #DB8379;
      background-color: transparent; }
    .pagination .page-item .page-link:focus {
      -webkit-box-shadow: none;
      box-shadow: none; }

.header {
  width: 100%;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7); }
  @media (min-width: 992px) {
    .header {
      width: 100%;
      height: 65px; } }
  .header .container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 13px;
    border-bottom: 3px solid #fff; }
    @media (min-width: 992px) {
      .header .container {
        padding-top: 23px; } }
  .header .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    @media (min-width: 350px) {
      .header .navbar-nav .nav-item {
        margin: 0 6px; } }
    @media (min-width: 768px) {
      .header .navbar-nav .nav-item {
        margin: 0 21px; } }
    @media (min-width: 992px) {
      .header .navbar-nav .nav-item {
        margin: 0 41px; } }
    .header .navbar-nav .nav-link {
      display: none;
      padding: .5rem;
      font-size: 1.125rem;
      white-space: nowrap; }
      @media (min-width: 992px) {
        .header .navbar-nav .nav-link {
          font-size: 1.25rem; } }
      .header .navbar-nav .nav-link:first-child {
        display: block; }
      .header .navbar-nav .nav-link.active {
        color: #A0CDB1; }
    .header .navbar-nav .nav-brand {
      margin-top: 6px; }
      @media (min-width: 992px) {
        .header .navbar-nav .nav-brand {
          margin-top: 0; } }
      .header .navbar-nav .nav-brand img {
        height: 36px; }
        @media (min-width: 992px) {
          .header .navbar-nav .nav-brand img {
            height: 50px; } }

main.content {
  min-height: calc(100vh - 50px);
  padding: 68px 0; }
  @media (min-width: 992px) {
    main.content {
      min-height: calc(100vh - 65px); } }

.main-footer {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: calc(11% + 10px);
  font-size: 14px;
  color: #fff;
  text-align: center;
  pointer-events: none; }
  @media (min-width: 768px) {
    .main-footer {
      font-size: 1rem; } }

.footer {
  padding: 32px 10px;
  color: #fff;
  background-color: #A0CDB1;
  letter-spacing: 1.6px; }
  @media (min-width: 768px) {
    .footer {
      padding-left: 0;
      padding-right: 0; } }
  .footer a {
    color: #fff; }
  .footer .social-list {
    list-style: none;
    margin: 0;
    padding: 0; }
    .footer .social-list li {
      display: inline-block; }
    .footer .social-list img {
      width: 38px; }

.main-section-opening {
  top: 0;
  left: 0;
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #A0CDB1;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  -o-transition: transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s; }
  .main-section-opening.is-hidden {
    -webkit-transform: translateY(-101%);
    -ms-transform: translateY(-101%);
    transform: translateY(-101%); }

.opening-logo {
  width: 395px;
  height: 164px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 395px;
  flex: 0 0 395px;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6); }
  @media (min-width: 992px) {
    .opening-logo {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); } }
  .opening-logo .logo {
    top: 0;
    left: 85px;
    position: absolute;
    width: 231px;
    height: 95px; }
    .opening-logo .logo span {
      opacity: 0; }
    .opening-logo .logo .logo-outer {
      stroke-dasharray: 620;
      stroke-dashoffset: 620;
      -webkit-animation: dash 1s ease-out forwards;
      animation: dash 1s ease-out forwards; }

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0; } }

@keyframes dash {
  to {
    stroke-dashoffset: 0; } }
    .opening-logo .logo .logo-d {
      top: 29px;
      left: 32px;
      position: absolute;
      width: 37px;
      height: 38px;
      background: url(../img/opening/logo_d.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 1s ease-out forwards;
      animation: fade-in 0.5s 1s ease-out forwards; }
    .opening-logo .logo .logo-i {
      top: 29px;
      left: 84px;
      position: absolute;
      width: 15px;
      height: 37px;
      background: url(../img/opening/logo_i.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 1.25s ease-out forwards;
      animation: fade-in 0.5s 1.25s ease-out forwards; }
    .opening-logo .logo .logo-a {
      top: 28px;
      left: 110px;
      position: absolute;
      width: 39px;
      height: 38px;
      background: url(../img/opening/logo_a.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 1.5s ease-out forwards;
      animation: fade-in 0.5s 1.5s ease-out forwards; }
    .opening-logo .logo .logo-n {
      top: 28px;
      left: 159px;
      position: absolute;
      width: 39px;
      height: 38px;
      background: url(../img/opening/logo_n.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 1.75s ease-out forwards;
      animation: fade-in 0.5s 1.75s ease-out forwards; }
  .opening-logo .text {
    top: 118px;
    left: 0;
    position: absolute; }
    .opening-logo .text span {
      opacity: 0; }
    .opening-logo .text .text-line {
      top: -6px;
      left: 85px;
      position: absolute;
      width: 230px;
      height: 34px;
      background: url(../img/opening/text_line.png) 0 0 no-repeat;
      -webkit-transform: translate(0, 30%);
      -ms-transform: translate(0, 30%);
      transform: translate(0, 30%);
      -webkit-animation: fade-in 0.5s 2.25s ease-out forwards;
      animation: fade-in 0.5s 2.25s ease-out forwards; }
    .opening-logo .text .text-d {
      top: 0;
      left: 0;
      position: absolute;
      width: 78px;
      height: 27px;
      background: url(../img/opening/text_d.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 2.25s ease-out forwards;
      animation: fade-in 0.5s 2.25s ease-out forwards; }
    .opening-logo .text .text-i {
      top: 0;
      left: 92px;
      position: absolute;
      width: 102px;
      height: 26px;
      background: url(../img/opening/text_i.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 2.25s ease-out forwards;
      animation: fade-in 0.5s 2.25s ease-out forwards; }
    .opening-logo .text .text-a {
      top: 0;
      left: 206px;
      position: absolute;
      width: 103px;
      height: 24px;
      background: url(../img/opening/text_a.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 2.25s ease-out forwards;
      animation: fade-in 0.5s 2.25s ease-out forwards; }
    .opening-logo .text .text-n {
      top: 0;
      left: 322px;
      position: absolute;
      width: 73px;
      height: 26px;
      background: url(../img/opening/text_n.png) 0 0 no-repeat;
      -webkit-animation: fade-in 0.5s 2.25s ease-out forwards;
      animation: fade-in 0.5s 2.25s ease-out forwards; }

@-webkit-keyframes fade-in {
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0); } }

@keyframes fade-in {
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0); } }

.main-section-carousel {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100vh; }
  .main-section-carousel .btn-more {
    top: 50%;
    left: 50%;
    position: absolute;
    padding: 10.5px 34.4px;
    font-size: 1.125rem;
    -webkit-transform: scale(1) translate(-50%, -50%);
    -ms-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%); }
    @media (min-width: 992px) {
      .main-section-carousel .btn-more {
        padding: 16.8px 60.2px;
        font-size: 1.5rem; } }

.news-item {
  margin-bottom: 2rem;
  padding: 0 1rem; }
  @media (min-width: 992px) {
    .news-item {
      margin-bottom: 1.5rem;
      padding: 1.5rem;
      border: 1px solid #BDBFC1; } }
  .news-item a {
    display: block;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    .news-item a:hover {
      color: #58595B !important;
      text-decoration: none; }
      .news-item a:hover .news-more:after {
        width: 100%; }
  .news-item figure {
    margin: 0; }
  .news-item .news-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 56%; }
  .news-item .news-header {
    margin-top: 1.25rem;
    margin-bottom: .25rem; }
    .news-item .news-header .category {
      color: #A0CDB1;
      letter-spacing: 1.6px; }
    .news-item .news-header .date {
      font-size: 0.9375rem;
      font-weight: 300; }
  .news-item .news-title {
    border-top: 3px solid #A0CDB1;
    border-bottom: 3px solid #A0CDB1;
    padding-top: .5rem;
    padding-bottom: .5rem; }
    .news-item .news-title h5 {
      -webkit-line-clamp: 2;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      word-wrap: break-word;
      height: 46px;
      margin-bottom: 0;
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.4;
      letter-spacing: 1.8px; }
      @media (min-width: 992px) {
        .news-item .news-title h5 {
          height: 50px; } }
  .news-item .news-content p {
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    word-wrap: break-word;
    height: 3.5625rem;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 1.3125rem;
    line-height: 1.4;
    letter-spacing: 0.35px; }
  .news-item .news-content,
  .news-item .news-more {
    display: none; }
    @media (min-width: 992px) {
      .news-item .news-content,
      .news-item .news-more {
        display: block; } }
  .news-item .news-more {
    position: relative;
    display: inline-block;
    padding: 0 1rem .375rem 0;
    font-size: 0.75rem;
    border: 0; }
    .news-item .news-more:after {
      position: absolute;
      bottom: 0;
      display: block;
      width: 0%;
      content: '';
      border-bottom: 2px solid #A0CDB1;
      -webkit-transition: width .3s;
      -o-transition: width .3s;
      transition: width .3s; }
    .news-item .news-more:hover:after {
      width: 100%; }

.news-view {
  border: 0;
  padding: 0; }
  .news-view .news-header {
    margin-bottom: .75rem; }
    @media (min-width: 992px) {
      .news-view .news-header {
        margin-top: 1.75rem; } }
    .news-view .news-header .category {
      font-size: 1.125rem;
      letter-spacing: 1.8px;
      line-height: 1.2; }
  .news-view .news-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 92px;
    padding-top: 1rem;
    padding-bottom: 1rem; }
    .news-view .news-title h1 {
      margin-bottom: 0;
      font-size: 1.5625rem;
      line-height: 1.3;
      letter-spacing: 2.5px; }
  .news-view .news-content-display {
    margin-top: 1rem; }
    .news-view .news-content-display img {
      max-width: 100% !important;
      height: auto !important; }

.btns {
  margin-top: 3.75rem; }

.btns a {
  min-width: 100px;
  background-color: #BDBFC1;
  color: #fff;
  margin: 0 25px;
  border-radius: 0 !important;
  border: 0 !important; }
  @media (min-width: 992px) {
    .btns a {
      min-width: 120px; } }

.btns a:hover {
  color: #fff;
  background-color: #a3a6a8; }

.work-list {
  margin-top: -10px; }

.work-item {
  padding: 10px; }
  .work-item a {
    display: block; }
    .work-item a:hover {
      color: #58595B !important;
      text-decoration: none; }
  .work-item figure {
    margin: 0;
    position: relative;
    overflow: hidden; }
    .work-item figure:hover .work-image {
      top: -80px; }
    .work-item figure:hover figcaption {
      bottom: 0;
      opacity: 1; }
  .work-item .work-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 75%;
    top: 0;
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: top 0.3s;
    -o-transition: top 0.3s;
    transition: top 0.3s; }
  .work-item figcaption {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: -80px;
    padding: 32px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .work-item figcaption h5 {
      max-width: 100%;
      display: block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap;
      margin-bottom: 0;
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.4;
      letter-spacing: 1.8px; }

.work-view {
  padding-top: 35px; }
  @media (min-width: 992px) {
    .work-view {
      padding-top: 70px; } }
  .work-view .work-header {
    margin-bottom: 2rem; }
    .work-view .work-header h1 {
      margin-bottom: 1rem;
      font-size: 1.5625rem;
      line-height: 1.3;
      letter-spacing: 1.8px;
      text-align: center; }
      @media (min-width: 992px) {
        .work-view .work-header h1 {
          margin-bottom: 2rem; } }
    .work-view .work-header p {
      max-width: 714px;
      margin: 0 auto;
      font-size: 1.125rem;
      text-align: center; }
  .work-view .work-content-display img {
    max-width: 100% !important;
    height: auto !important; }

#map {
  height: 250px;
  width: 100%; }
  @media (min-width: 768px) {
    #map {
      height: 360px; } }

.form-contact {
  border-top: 3px solid #58595B;
  border-bottom: 3px solid #58595B;
  margin-bottom: 1.5rem; }
  .form-contact .row {
    margin-left: 0px;
    margin-right: 0px;
    border-bottom: 1px solid #58595B; }
    .form-contact .row:last-child {
      border-bottom: 0; }
    .form-contact .row > .col,
    .form-contact .row > [class*=col-] {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-top: .75rem;
      padding-bottom: .75rem;
      border-bottom: 1px solid #58595B; }
      @media (min-width: 768px) {
        .form-contact .row > .col,
        .form-contact .row > [class*=col-] {
          border-left: 1px solid #58595B;
          border-bottom: 0; } }
      @media (min-width: 768px) {
        .form-contact .row > .col:first-child,
        .form-contact .row > [class*=col-]:first-child {
          border: 0; } }
    .form-contact .row > [class*=col-md-12] {
      border: 0; }
  .form-contact .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0; }
    .form-contact .form-group label {
      margin-bottom: 0;
      white-space: nowrap; }
  .form-contact .form-control {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent; }
    .form-contact .form-control:focus {
      border: none;
      -webkit-box-shadow: none;
      box-shadow: none; }

.help-block {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  color: #DB8379;
  text-align: left; }
  .help-block:empty {
    margin-top: 0; }

.contact-action .btns {
  width: 120px;
  background-color: #BDBFC1;
  color: #fff;
  margin: 0;
  font-size: 1.125rem;
  border-radius: 0 !important;
  border: 0 !important;
  font-weight: bold; }
  .contact-action .btns:hover {
    background-color: #A0CDB1; }

.g-recaptcha > div {
  margin: 0 auto; }

/*# sourceMappingURL=style.css.map */