@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";
@import "https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined";
html {
  font-size: 14px; }
  @media (min-width: 992px) {
    html {
      font-size: 16px; } }

body {
  color: #58595B;
  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+ */ }

a {
  color: #000;
  -webkit-transition: color .15s, border .15s;
  -o-transition: color .15s, border .15s;
  transition: color .15s, border .15s; }
  a:hover {
    color: black;
    text-decoration: none; }

button:focus {
  outline: 0; }

hr {
  border-top: 1px solid #58595B; }

label {
  font-size: 0.9375rem; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #808183 !important; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #808183 !important; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #808183 !important; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #808183 !important; }

.bg-primary {
  background-color: #000 !important; }

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

.border-primary {
  border-color: #000 !important; }

.border-danger {
  border-color: #C0382B !important; }

.border-md-right {
  border-right: 1px solid #DDD; }

.container {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px; }

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

/* row */
[class*="icon_"] {
  position: relative;
  top: 1px; }

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

.text-danger {
  color: #C0382B !important; }

.text-muted {
  color: #808183 !important; }

.text-gray {
  color: #808183 !important; }

.text-black {
  color: #000 !important; }

.text-sm {
  font-size: 0.9375rem !important; }

.text-line-through {
  text-decoration: line-through; }

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.3; }

.form .h1, .form .h2, .form .h3, .form .h4, .form .h5, .form .h6,
.form h1, .form h2, .form h3, .form h4, .form h5, .form h6 {
  color: #000; }

h1, .h1 {
  font-size: 2rem; }

h2, .h2 {
  font-size: 1.6rem; }

h3, .h3 {
  font-size: 1.4rem; }

h4, .h4 {
  font-size: 1.2rem; }

h5, .h5 {
  font-size: 1rem; }

h6, .h6 {
  font-size: 0.8rem; }

.font-weight-medium {
  font-weight: 500 !important; }

.btn {
  min-width: 120px;
  border-radius: 0; }
  .btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: 0; }
  .btn.disabled, .btn:disabled {
    opacity: 0.325; }
  .btn [class*="icon"] {
    margin-right: 0.375rem; }

.btn-lg {
  font-size: 1.125rem; }

.btn-primary {
  border: 1px solid #000;
  background-color: #000; }
  .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
    border-color: black;
    background-color: black; }
  .btn-primary.disabled, .btn-primary:disabled {
    border: 1px solid #000;
    background-color: #000; }

.btn-secondary {
  border: 1px solid #808183;
  background-color: #808183; }
  .btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
    border-color: #000;
    background-color: #000; }
  .btn-secondary.disabled, .btn-secondary:disabled {
    border: 1px solid #808183;
    background-color: #808183; }

.btn-slide {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 10.5rem;
  min-height: 50px;
  border: 1px solid #000;
  border-radius: 0;
  background-color: #fff; }
  .btn-slide:hover:after {
    width: 100%; }
  .btn-slide:hover span {
    color: #fff;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .btn-slide:after {
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    content: '';
    width: 0%;
    height: 100%;
    background-color: #000;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s; }
  .btn-slide span {
    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;
    font-size: 1.0625rem;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: color .3s, -webkit-transform .3s;
    transition: color .3s, -webkit-transform .3s;
    -o-transition: color .3s, transform .3s;
    transition: color .3s, transform .3s;
    transition: color .3s, transform .3s, -webkit-transform .3s; }
    @media (min-width: 768px) {
      .btn-slide span {
        font-size: inherit; } }

.card {
  border-radius: 0; }

.card-course {
  margin-bottom: 2.5rem;
  border: 0;
  -webkit-box-shadow: 0px 3px 6px #808183;
  box-shadow: 0px 3px 6px #808183; }
  .card-course .card-image {
    height: 16.25rem; }
    .card-course .card-image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
  .card-course .card-header {
    padding: 0.6rem 2rem;
    border: 0;
    border-radius: 0 !important;
    background-color: #000;
    text-align: center; }
  .card-course .card-title {
    max-width: 100%;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0;
    color: #fff;
    font-size: 1.1875rem;
    letter-spacing: 2px; }
    @media (min-width: 768px) {
      .card-course .card-title {
        font-size: 1.25rem; } }
  .card-course .card-body {
    padding: 1rem 2rem; }
  .card-course .card-table {
    width: 100%; }
    .card-course .card-table th, .card-course .card-table td {
      padding: 0.25rem 0; }
    .card-course .card-table th {
      width: 10%;
      padding-right: 0.5rem;
      font-size: 0.875rem;
      font-weight: 400;
      color: #808183;
      letter-spacing: 0.7px;
      white-space: nowrap; }
    .card-course .card-table td b {
      font-size: 1.125rem;
      font-weight: 500; }
    .card-course .card-table td small {
      font-size: 0.875rem; }
    .card-course .card-table td.date {
      font-size: 1.125rem;
      font-weight: 500;
      color: #000; }
    .card-course .card-table td.location {
      font-size: 1.125rem;
      font-weight: 500;
      max-width: 237px;
      display: inline-block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap; }
      @media (min-width: 400px) {
        .card-course .card-table td.location {
          max-width: 276px; } }
      @media (min-width: 768px) {
        .card-course .card-table td.location {
          max-width: 209px; } }
      @media (min-width: 992px) {
        .card-course .card-table td.location {
          max-width: 323px; } }
      @media (min-width: 1200px) {
        .card-course .card-table td.location {
          max-width: 242px; } }
  .card-course .card-btn-group {
    padding: 0.75rem 0; }

.custom-select {
  padding-left: 1rem;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff url("../images/icon/arrow_carrot-down.svg") no-repeat right 0.75rem top 0.3125rem;
  background-size: auto 1.5rem; }
  .custom-select:focus {
    border-color: #000;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

.custom-control {
  padding-left: 1.6rem; }

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #000;
  background-color: #000; }

.custom-control-input:focus ~ .custom-control-label::before {
  border-color: #000 !important;
  -webkit-box-shadow: none;
  box-shadow: none; }

.custom-control-input:active ~ .custom-control-label::before {
  border-color: #000 !important;
  background-color: transparent !important; }

.custom-control-label {
  cursor: pointer; }
  .custom-control-label:before, .custom-control-label:after {
    top: 1px;
    left: -1.6rem;
    width: 19px;
    height: 19px; }
  .custom-control-label:before {
    border-radius: 0; }

.custom-checkbox .custom-control-label::before {
  border-radius: 0; }

.col-form-label {
  color: #000; }

.form-control {
  color: #000;
  border: 1px solid #fff;
  border-radius: 0; }
  .form-control:focus {
    border-color: #000;
    -webkit-box-shadow: 0 0 0 0.1rem #000;
    box-shadow: 0 0 0 0.1rem #000; }
  .form-control:disabled, .form-control[readonly] {
    border: 1px solid #c9c9c9;
    background-color: #c9c9c9; }

.form-control-underline {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #58595B;
  border-radius: 0; }
  .form-control-underline:focus {
    border-bottom: 1px solid #000; }

.form-group {
  position: relative;
  margin-bottom: 1.5rem; }
  @media (min-width: 768px) {
    .form-group {
      margin-bottom: 2rem; } }

.error.help-block {
  bottom: -1.4rem;
  left: 0;
  position: absolute; }

.help-block {
  color: #C0382B; }

.list-group-item {
  border-top: 1px solid #DDD; }
  .list-group-item:last-child {
    padding-bottom: 0; }
  .list-group-item:focus, .list-group-item:hover {
    z-index: 0; }

.modal-content {
  border-radius: 0; }

.modal-body {
  padding: 1.5rem; }

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #000; }

.modal-title {
  font-weight: 500; }

.modal .close {
  padding: 0.625rem 1rem;
  font-size: 2.25rem; }

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
  padding: 1rem 0;
  background-color: #fff; }
  @media (min-width: 992px) {
    .header {
      position: relative; } }

.brand__col {
  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; }

.brand__link {
  width: 100%;
  text-align: center; }

.brand__image {
  max-height: 28px; }
  @media (min-width: 768px) {
    .brand__image {
      max-height: 32px; } }
  @media (min-width: 992px) {
    .brand__image {
      max-height: 40px; } }

.quick {
  z-index: 1000; }
  @media (max-width: 767px) {
    .quick {
      right: 1rem;
      bottom: 1rem;
      position: fixed; } }
  @media (min-width: 768px) {
    .quick {
      top: 50%;
      right: 1%;
      position: fixed; } }
  .quick__close {
    top: -13px;
    right: -10px;
    position: absolute;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0;
    padding: 0; }
  .quick__banner {
    display: block; }
    .quick__banner img {
      width: 50px; }
      @media (min-width: 768px) {
        .quick__banner img {
          width: 100%; } }

.section {
  padding: 2rem 0; }

.section-hero {
  position: relative;
  min-height: 100px;
  text-align: center; }

.section-header {
  position: relative;
  z-index: 2;
  text-align: center; }
  @media (min-width: 768px) {
    .section-header {
      margin-bottom: -0.4rem; } }
  @media (min-width: 992px) {
    .section-header {
      margin-bottom: -0.6rem; } }
  .section-header.--product {
    margin-bottom: 0;
    background-color: #fff; }
    @media (min-width: 992px) {
      .section-header.--product {
        right: 0;
        bottom: 0;
        left: 0;
        position: absolute;
        width: calc(100% - 40px);
        max-width: 1200px;
        margin: 0 auto;
        margin-bottom: -1.5%;
        padding: 0; } }
    @media (min-width: 1200px) {
      .section-header.--product {
        margin-bottom: -19px; } }
    .section-header.--product .section-header__title {
      margin-bottom: 0;
      padding: 1rem 1rem 0;
      letter-spacing: 3px; }
      @media (min-width: 768px) {
        .section-header.--product .section-header__title {
          padding-top: 1.25rem; } }
      @media (min-width: 992px) {
        .section-header.--product .section-header__title {
          margin-bottom: -.25rem; } }
  .section-header img {
    max-width: 100%; }
    @media (max-width: 575px) {
      .section-header img {
        height: 16px;
        -o-object-fit: cover;
        object-fit: cover; } }
  .section-header__title {
    margin-bottom: -.5rem;
    font-size: 1.625rem;
    color: #000;
    letter-spacing: 24px;
    text-align: center;
    overflow: hidden; }
    @media (min-width: 768px) {
      .section-header__title {
        font-size: 1.75rem; } }
    .section-header__title span {
      margin-right: -24px; }

.footer {
  padding: 3rem 0 2rem;
  color: #fff;
  font-size: 0.9375rem;
  background: transparent -webkit-gradient(linear, left top, right top, from(#8AA6D6), color-stop(50%, #BFB1CB), to(#FFC0C8)) 0% 0% no-repeat padding-box;
  background: transparent -webkit-linear-gradient(left, #8AA6D6 0%, #BFB1CB 50%, #FFC0C8 100%) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(left, #8AA6D6 0%, #BFB1CB 50%, #FFC0C8 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #8AA6D6 0%, #BFB1CB 50%, #FFC0C8 100%) 0% 0% no-repeat padding-box; }
  @media (min-width: 768px) {
    .footer {
      padding: 4rem 0 3rem; } }
  .footer a {
    color: #fff; }
    .footer a:hover {
      text-decoration: underline; }
  .footer__logo {
    max-width: 116px; }
    @media (min-width: 992px) {
      .footer__logo {
        max-width: 100%; } }
  .footer__info {
    line-height: 1.6; }

.section-main {
  margin: 3rem 0; }
  @media (min-width: 768px) {
    .section-main {
      margin: 4rem 0; } }

.menu {
  margin: 2rem 0;
  text-align: center; }
  @media (min-width: 768px) {
    .menu {
      margin: 3rem 0; } }
  .menu__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .menu__btn {
    margin-right: .75rem; }
    @media (min-width: 768px) {
      .menu__btn {
        margin-right: 2rem; } }
    .menu__btn:last-child {
      margin-right: 0; }
    @media (max-width: 575px) {
      .menu__btn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: auto;
        min-height: auto;
        padding: .5rem;
        font-size: 1rem; } }

.banner__item {
  width: 100%;
  height: 100%;
  padding-bottom: 135%; }
  @media (min-width: 768px) {
    .banner__item {
      height: auto;
      padding-bottom: 39%; } }

.banner__link {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%; }

.banner__image {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden; }
  .banner__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  .banner__image video {
    width: 100%;
    -webkit-transform: scale(1.002);
    -ms-transform: scale(1.002);
    transform: scale(1.002); }

@media (min-width: 768px) {
  .news {
    padding: 0 3.125rem; } }

.news__carousel .owl-item {
  padding: 0 5px 8px; }

.feature__content {
  padding: 2rem 0;
  text-align: center; }
  @media (min-width: 768px) {
    .feature__content {
      padding: 4rem 2rem; } }

.feature__image {
  width: 100%; }

.feature__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #000; }
  .feature__title:after {
    display: block;
    content: "";
    width: 70px;
    margin: .75rem auto 0;
    border-bottom: 3px solid #808183; }

.feature__text {
  margin-bottom: .5rem;
  line-height: 1.8; }
  @media (min-width: 768px) {
    .feature__text {
      margin-bottom: 1rem; } }

.notice ul {
  padding-left: 1.25rem; }
  @media (min-width: 768px) {
    .notice ul {
      padding-left: 1.75rem; } }
  .notice ul li {
    margin-bottom: 0.5rem; }

.product__summary {
  margin-bottom: 2rem;
  color: #000;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8; }
  @media (min-width: 768px) {
    .product__summary {
      margin: 2rem 0 3rem;
      font-size: 1.125rem; } }

.product__content {
  padding: 1rem 0;
  border-top: 1px solid #808183;
  border-bottom: 1px solid #808183; }
  @media (min-width: 768px) {
    .product__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 2rem 0; } }

@media (min-width: 768px) {
  .product__content-table {
    width: 50%; } }

.product__content-table th, .product__content-table td {
  padding: 0.7rem 1rem; }

.product__content-table th {
  width: 92px;
  padding-right: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #808183; }

.product__content-table td {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 1.5px; }

.product__order-btn {
  margin-top: 2rem;
  text-align: center; }
  @media (min-width: 768px) {
    .product__order-btn {
      margin-top: 2.75rem; } }

.checkout {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 6%;
  background-color: #ACACAC; }

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff; }
  .quantity.--disabled {
    background-color: #c9c9c9; }
    .quantity.--disabled .quantity__btn {
      display: none; }
    .quantity.--disabled .quantity__count:focus {
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none; }
  .quantity__btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    min-width: 80px;
    max-width: 100%;
    padding: 0;
    color: #808183;
    font-size: 1.5625rem; }
    .quantity__btn i {
      position: relative;
      top: 1px;
      font-size: 1.5rem; }
  .quantity__count {
    position: relative;
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    height: calc(2.25rem + 2px);
    border: 0;
    outline: 0;
    text-align: center; }
    .quantity__count:focus {
      border: 1px solid #000;
      -webkit-box-shadow: 0 0 0 0.1rem #000;
      box-shadow: 0 0 0 0.1rem #000; }
    .quantity__count:disabled, .quantity__count[readonly] {
      border: 1px solid #c9c9c9;
      background-color: #c9c9c9; }

.collapse-close {
  top: 0.6rem;
  right: 0.8rem;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.65;
  font-size: 1.5rem; }

.location__image {
  width: 100%; }

.location__map .map {
  width: 100%;
  height: 212px; }

.location__title {
  padding: 1rem;
  color: #fff;
  font-size: 1.25rem;
  background-color: #000;
  text-align: center; }
  .location__title i {
    top: -2px;
    font-size: 1.625rem;
    vertical-align: middle; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  /*font-size: 28px;*/
  font-size: 2rem;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  /*font-size: 12px;*/
  font-size: 0.75rem;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  /*top: -40px;*/
  top: -44px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  /*font-size: 12px;*/
  font-size: 0.75rem;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/*
 *  Owl Carousel - Core
 */
.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: #808183;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #000;
      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: 8px;
      height: 8px;
      margin: 5px 7px;
      background: #DDD;
      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: #808183; }

.mfp-close-btn-in .mfp-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: auto;
  top: 1rem;
  right: .75rem; }
  @media (min-width: 576px) {
    .mfp-close-btn-in .mfp-close {
      right: 1rem; } }
  @media (min-width: 1200px) {
    .mfp-close-btn-in .mfp-close {
      right: 1.5rem; } }
  .mfp-close-btn-in .mfp-close i {
    top: 0;
    font-size: 1.5rem; }
    @media (min-width: 768px) {
      .mfp-close-btn-in .mfp-close i {
        font-size: 2rem; } }

.mfp-container {
  padding: 0; }

.owl-theme button:focus {
  outline: 0; }

.owl-theme .owl-nav {
  margin-top: 0; }
  .owl-theme .owl-nav [class*='owl-']:hover {
    color: #000;
    background-color: transparent; }
  .owl-theme .owl-nav button.owl-prev,
  .owl-theme .owl-nav button.owl-next {
    top: 50%;
    position: absolute;
    color: #000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .owl-theme .owl-nav button.owl-prev {
    left: -72px; }
  .owl-theme .owl-nav button.owl-next {
    right: -72px; }
  .owl-theme .owl-nav .disabled {
    display: none; }

.owl-theme .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem; }

.owl-theme-slide .owl-nav,
.owl-theme-slide .owl-dots {
  right: 0;
  bottom: 3%;
  left: 0;
  position: absolute;
  height: 24px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .owl-theme-slide .owl-nav,
    .owl-theme-slide .owl-dots {
      bottom: 8%; } }

.owl-theme-slide .owl-nav {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1240px;
  padding: 0 20px; }
  .owl-theme-slide .owl-nav [class*='owl-']:hover {
    opacity: 0.5; }
  .owl-theme-slide .owl-nav button.owl-prev,
  .owl-theme-slide .owl-nav button.owl-next {
    width: 10%;
    -webkit-transition: opacity .15s;
    -o-transition: opacity .15s;
    transition: opacity .15s; }
    @media (min-width: 992px) {
      .owl-theme-slide .owl-nav button.owl-prev,
      .owl-theme-slide .owl-nav button.owl-next {
        width: auto; } }
    .owl-theme-slide .owl-nav button.owl-prev img,
    .owl-theme-slide .owl-nav button.owl-next img {
      position: relative;
      top: -1px;
      width: 100%; }
      @media (min-width: 992px) {
        .owl-theme-slide .owl-nav button.owl-prev img,
        .owl-theme-slide .owl-nav button.owl-next img {
          width: auto; } }

.owl-theme-slide .owl-dots {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 70%;
  padding: 0 20px; }
  @media (min-width: 992px) {
    .owl-theme-slide .owl-dots {
      max-width: 840px; } }
  .owl-theme-slide .owl-dots:before {
    top: 50%;
    right: 20px;
    left: 20px;
    position: absolute;
    content: '';
    border-bottom: 1px solid #fff;
    opacity: 0.8;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media (min-width: 768px) {
      .owl-theme-slide .owl-dots:before {
        border-bottom: 2px solid #fff; } }
  .owl-theme-slide .owl-dots .owl-dot {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: opacity .15s;
    -o-transition: opacity .15s;
    transition: opacity .15s; }
    @media (min-width: 768px) {
      .owl-theme-slide .owl-dots .owl-dot {
        height: 6px; } }
    .owl-theme-slide .owl-dots .owl-dot:hover {
      opacity: .5; }
    .owl-theme-slide .owl-dots .owl-dot.active {
      opacity: 1; }

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