/*
* strip-unit - Unit stripper [10px = 10]
* param - $num : the value with a unit suffix, E.g: 10px
* return - $result : the value without any suffix, E.g: 10
* E.g. strip-unit(100px) = 100
*/
/*
* pxToEM - Convert PX value to EM value [100px = 6.25em]
* param - $target : the value in px without 'px' suffix, E.g: 100
* return - $result : the value in em with 'em' suffix, E.g: 6.25em
* E.g. pxToEM(100) = 6.25em
*/
/*
* u - PX and REM constrictor
* param - $property : css property, E.g: padding
* param - $values... : list of values for the property, note values are multiplied by $pixelBase, E.g.: 10, 20, 30, 40
* return - $result : the css property with values applied in pixels
* E.g. @include u(padding, 10, 20, 30, 40) = padding: 100px, 200px, 300px, 400px;
*/
/*! _general-styling */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #445464;
  font-family: "sofia-pro-soft", sans-serif; }

/* =============================================================================
   Utilities
   ========================================================================== */
.white-border {
  border: 7.5px solid #fff; }

.goldText {
  color: #8B6F4E; }

/* =============================================================================
   Typography
   ========================================================================== */
h1 {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 48px;
  color: #445464;
  margin: 25px 0;
  line-height: 1.2;
  font-weight: 100;
  padding: 0;
  text-transform: uppercase; }

h2 {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #445464;
  margin: 15px 0;
  line-height: 1.2;
  background: none;
  padding: 0;
  text-transform: uppercase; }

h3 {
  font-family: "caflisch-script-pro", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #8b6f4e;
  margin: 15px 0;
  line-height: 1.2;
  padding: 0; }

h4,
h5,
h6 {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #445464;
  margin: 25px 0;
  line-height: 1.2;
  padding: 0; }

h5 {
  font-weight: 900;
  font-size: 18px; }

h6 {
  font-size: 14px;
  font-weight: 100; }

p,
td,
li,
dd {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.5; }

/*! _header */
.navbar-nav:not(.mm-spn) ul li:hover ul.lev2 {
  display: flex !important;
  opacity: 1;
  visibility: visible; }

.navbar-nav:not(.mm-spn) ul li a,
.navbar-nav:not(.mm-spn) ul li span {
  padding: 15px 10px;
  font-weight: 100;
  font-size: 15px;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }
  .navbar-nav:not(.mm-spn) ul li a.last,
  .navbar-nav:not(.mm-spn) ul li span.last {
    padding-right: 0;
    margin-right: 50px; }
  .navbar-nav:not(.mm-spn) ul li a.lev1,
  .navbar-nav:not(.mm-spn) ul li span.lev1 {
    padding: 20px 15px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    display: block;
    text-align: center;
    border-left: 1px solid #dadfe1;
    min-height: 62px;
    position: relative;
    width: 140px; }
    .navbar-nav:not(.mm-spn) ul li a.lev1:before,
    .navbar-nav:not(.mm-spn) ul li span.lev1:before {
      -webkit-transition: all 0.6s ease;
      -moz-transition: all 0.6s ease;
      -o-transition: all 0.6s ease;
      transition: all 0.6s ease;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 15px solid #fff;
      content: "";
      position: absolute;
      bottom: -15px;
      left: 0;
      right: 0;
      margin: auto; }

.navbar-nav:not(.mm-spn) ul li span.lev1 {
  border-color: #8b6f4e;
  background: #8b6f4e;
  color: #fff !important; }
  .navbar-nav:not(.mm-spn) ul li span.lev1:before {
    border-top-color: #8b6f4e; }

.navbar-nav:not(.mm-spn) ul li a.lev1:hover {
  border-color: #8b6f4e;
  background: #8b6f4e;
  color: #fff !important; }
  .navbar-nav:not(.mm-spn) ul li a.lev1:hover:before {
    border-top-color: #8b6f4e; }

.navbar-nav:not(.mm-spn) ul li ul.lev2 {
  display: flex;
  flex-wrap: wrap;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  left: -140px;
  padding: 20px 0;
  padding-left: 180px;
  width: 550px;
  /*height: 165px;*/
  min-height: 165px;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  border-top: 5px solid #8b6f4e;
  /*-webkit-transition: opacity 0.4s ease 0.2s;
                    -moz-transition: opacity 0.4s ease 0.2s;
                    -o-transition: opacity 0.4s ease 0.2s;
                    transition: opacity 0.4s ease 0.2s;
                    animation-name: show;
                    animation-duration: 0.4s;*/
  transition: all 0.4s ease; }
  .navbar-nav:not(.mm-spn) ul li ul.lev2:before {
    width: 100%;
    content: "";
    position: absolute;
    top: -14px;
    height: 9px;
    background: none;
    left: 0; }
  .navbar-nav:not(.mm-spn) ul li ul.lev2 li {
    width: 50%;
    flex: 0 0 auto; }

@media (max-width: 1200px) {
  .c2-header .navbar button.navbar-toggler {
    margin-right: auto; } }

.c2-header {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }
  .c2-header .navbar-brand {
    position: relative;
    display: inline-block; }
    @media (max-width: 1200px) {
      .c2-header .navbar-brand {
        width: 200px; } }
    @media (max-width: 500px) {
      .c2-header .navbar-brand {
        width: 59px;
        height: 58px;
        overflow: hidden;
        padding: 12px;
        box-sizing: content-box;
        border-right: 1px solid #dadfe1; } }
    .c2-header .navbar-brand img {
      height: auto !important;
      width: 100%;
      -webkit-transition: all 0.6s ease;
      -moz-transition: all 0.6s ease;
      -o-transition: all 0.6s ease;
      transition: all 0.6s ease; }
      @media (max-width: 500px) {
        .c2-header .navbar-brand img {
          width: 255px;
          max-width: none;
          position: absolute;
          top: 0;
          left: 0; } }
      .c2-header .navbar-brand img.light {
        opacity: 1;
        display: inline; }
      .c2-header .navbar-brand img.dark {
        opacity: 0;
        display: none; }
  .c2-header.sticky {
    background: #425363 !important; }
    .c2-header.sticky .navbar-brand img.light {
      opacity: 0;
      display: none; }
    .c2-header.sticky .navbar-brand img.dark {
      opacity: 1;
      display: inline; }
    .c2-header.sticky .navbar-nav:not(.mm-spn) ul li span.lev1 {
      color: #fff !important;
      border-color: #768591; }
      .c2-header.sticky .navbar-nav:not(.mm-spn) ul li span.lev1:before {
        border-top-color: #425363; }
      .c2-header.sticky .navbar-nav:not(.mm-spn) ul li span.lev1:hover:before {
        border-top-color: #8b6f4e; }
    .c2-header.sticky .navbar-nav:not(.mm-spn) ul li a.lev1 {
      color: #fff !important;
      border-color: #768591; }
      .c2-header.sticky .navbar-nav:not(.mm-spn) ul li a.lev1:before {
        border-top-color: #425363; }
      .c2-header.sticky .navbar-nav:not(.mm-spn) ul li a.lev1:hover:before {
        border-top-color: #8b6f4e; }

/* SEARCH */
@media (min-width: 1200px) {
  .c2-header .navigation-container {
    max-width: 1180px; } }

.c2-header.sticky .c2-header__search__icon {
  background: #8b6f4e; }
  .c2-header.sticky .c2-header__search__icon i {
    color: #fff !important; }

.c2-header__search__icon {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
  float: right;
  cursor: pointer;
  position: absolute;
  z-index: 999;
  top: -21px;
  right: 0;
  opacity: 1;
  padding: 32px 30px;
  color: #445464;
  font-weight: 100;
  font-size: 28px;
  text-align: right;
  background: #dadfe1; }
  @media (max-width: 1200px) {
    .c2-header__search__icon {
      padding: 25px 30px;
      top: 0; } }
  @media (max-width: 500px) {
    .c2-header__search__icon {
      padding: 28px 30px;
      top: 0; } }
  .c2-header__search__icon:hover {
    opacity: 0.8; }

.c2-header__search__box {
  display: none;
  top: 84px;
  right: 0;
  z-index: 9999999999999;
  padding-right: 0;
  padding-top: 0;
  opacity: 1; }
  @media (max-width: 1200px) {
    .c2-header__search__box {
      top: 92px; } }
  @media (max-width: 500px) {
    .c2-header__search__box {
      top: 98px; } }
  .c2-header__search__box .c2pgitm_wrap {
    margin: 0; }
  .c2-header__search__box .c2form_zero form div {
    display: flex;
    align-items: center; }
  .c2-header__search__box .c2form_zero input.form {
    box-shadow: none;
    background: #dedede;
    width: 215px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.375rem 1rem;
    border: 1px solid #ddd;
    font-weight: 100;
    font-size: 15px;
    font-family: "Roboto Slab", Helvetica, Sans-serif;
    border-radius: 0.25rem;
    margin-right: 80px; }
    .c2-header__search__box .c2form_zero input.form:hover, .c2-header__search__box .c2form_zero input.form:focus {
      width: 335px;
      background: #fff; }
      @media (max-width: 500px) {
        .c2-header__search__box .c2form_zero input.form:hover, .c2-header__search__box .c2form_zero input.form:focus {
          width: 270px; } }
  .c2-header__search__box .c2form_buttons {
    position: absolute;
    top: 0;
    right: 0; }
    .c2-header__search__box .c2form_buttons button {
      padding: 0.375rem 1rem !important;
      font-weight: 600;
      font-family: "Roboto Slab";
      text-transform: uppercase;
      margin: 0 !important;
      border-top-left-radius: 0 !important;
      border-bottom-left-radius: 0 !important; }

@keyframes show {
  0% {
    display: flex !important;
    visibility: visible;
    opacity: 0; }
  1% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.mm-ocd__content .navbar-nav.mm-spn {
  background: #445464 !important; }
  .mm-ocd__content .navbar-nav.mm-spn--navbar ul:before {
    border-top: 1px solid #777 !important; }
  .mm-ocd__content .navbar-nav.mm-spn--navbar:before {
    border-top: 2px solid #fff !important;
    border-left: 2px solid #fff !important; }
  .mm-ocd__content .navbar-nav.mm-spn--navbar:after {
    color: #fff;
    opacity: 1 !important;
    font-family: "Roboto Slab"; }
  .mm-ocd__content .navbar-nav.mm-spn ul li {
    background: #445464; }
    .mm-ocd__content .navbar-nav.mm-spn ul li:before {
      border-top: 2px solid #fff;
      border-right: 2px solid #fff; }
    .mm-ocd__content .navbar-nav.mm-spn ul li:after {
      border-top: 1px solid #777;
      opacity: 1; }
    .mm-ocd__content .navbar-nav.mm-spn ul li a {
      color: #fff;
      text-transform: uppercase;
      font-family: "Roboto Slab"; }

.search-mobile {
  display: flex; }
  @media (min-width: 1200px) {
    .search-mobile {
      display: none; } }

/*! _footer */
.c2-footer .columns-container {
  padding-bottom: 3.5rem; }
  .c2-footer .columns-container .columns-wrapper .footer-column {
    padding: 1.5rem 0; }
    @media (min-width: 768px) {
      .c2-footer .columns-container .columns-wrapper .footer-column {
        padding: 0 1.5rem; } }
    .c2-footer .columns-container .columns-wrapper .footer-column.column-1 {
      text-align: center; }
      @media (min-width: 768px) {
        .c2-footer .columns-container .columns-wrapper .footer-column.column-1 {
          text-align: left; } }
      .c2-footer .columns-container .columns-wrapper .footer-column.column-1 img.footerLogo {
        width: 250px;
        margin-bottom: 25px;
        display: block; }
      @media (max-width: 768px) {
        .c2-footer .columns-container .columns-wrapper .footer-column.column-1 img {
          margin: 0 auto; } }
    .c2-footer .columns-container .columns-wrapper .footer-column.column-2 {
      border-top: 1px solid #8b6f4e;
      border-bottom: 1px solid #8b6f4e; }
      @media (min-width: 768px) {
        .c2-footer .columns-container .columns-wrapper .footer-column.column-2 {
          border-right: 1px solid #8b6f4e;
          border-left: 1px solid #8b6f4e;
          border-top: unset;
          border-bottom: unset; } }
      .c2-footer .columns-container .columns-wrapper .footer-column.column-2 p.telNo:before {
        content: "\f87b";
        font-weight: 900;
        font-family: "Font Awesome 5 Pro";
        font-size: 18px;
        margin-right: 8px;
        color: #8d6f4b; }
    .c2-footer .columns-container .columns-wrapper .footer-column.column-3.socials-container {
      display: flex;
      justify-content: center; }
      .c2-footer .columns-container .columns-wrapper .footer-column.column-3.socials-container .smIcon {
        font-size: 1.85rem;
        color: #fff;
        border-left: 1px solid #fff;
        height: max-content;
        padding: 0 1rem;
        transition: color 0.3s ease; }
        .c2-footer .columns-container .columns-wrapper .footer-column.column-3.socials-container .smIcon:hover {
          color: #8d6f4b; }
  .c2-footer .columns-container #train {
    background: url(/p/1/moving_train.png);
    display: block;
    width: 223px;
    height: 70px;
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0; }
    .c2-footer .columns-container #train:after {
      animation-name: pulse;
      -webkit-animation-name: pulse;
      animation-duration: 3s;
      -webkit-animation-duration: 3s;
      animation-iteration-count: infinite;
      -webkit-animation-iteration-count: infinite;
      background: url(/p/1/train_after.png);
      width: 110px;
      height: 30px;
      content: "";
      display: block;
      background-size: cover;
      position: absolute;
      left: 7px;
      top: 0px; }
    .c2-footer .columns-container #train.animatedTrain {
      -webkit-animation: train-move 1s 1s ease-out forwards;
      animation: train-move 1s 1s ease-out forwards;
      -ms-animation: train-move 1s 1s ease-out forwards;
      -moz-animation: train-move 1s 1s ease-out forwards;
      -o-animation: train-move 1s 1s ease-out forwards;
      animation-duration: 60s;
      -webkit-animation-duration: 60s;
      -ms-animation-duration: 60s;
      -o-animation-duration: 60s;
      -moz-animation-duration: 60s; }
      .c2-footer .columns-container #train.animatedTrain.goRight {
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
        left: -225px;
        -webkit-animation: goBack 1s 1s ease-out forwards;
        animation: goBack 1s 1s ease-out forwards;
        -ms-animation: goBack 1s 1s ease-out forwards;
        -moz-animation: goBack 1s 1s ease-out forwards;
        -o-animation: goBack 1s 1s ease-out forwards;
        animation-duration: 60s;
        -webkit-animation-duration: 60s;
        -ms-animation-duration: 60s;
        -o-animation-duration: 60s;
        -moz-animation-duration: 60s; }

.c2-footer .footer_copyright-container {
  background-color: #8d6f4b; }
  .c2-footer .footer_copyright-container .footer_copyright-wrapper:before {
    content: "";
    position: absolute;
    top: 0; }
  .c2-footer .footer_copyright-container .footer_copyright-wrapper .footer_copyright {
    display: flex;
    align-items: center; }
    .c2-footer .footer_copyright-container .footer_copyright-wrapper .footer_copyright p {
      margin: 0; }
      .c2-footer .footer_copyright-container .footer_copyright-wrapper .footer_copyright p a {
        color: #fff;
        text-decoration: none; }
        .c2-footer .footer_copyright-container .footer_copyright-wrapper .footer_copyright p a:hover {
          text-decoration: underline; }

.c2-footer .row {
  margin-left: auto !important;
  margin-right: auto !important; }

@-webkit-keyframes train-move {
  100% {
    right: 100%; } }

@keyframes train-move {
  100% {
    right: 100%; } }

@-moz-keyframes train-move {
  100% {
    right: 100%; } }

@-ms-keyframes train-move {
  100% {
    right: 100%; } }

@-o-keyframes train-move {
  100% {
    right: 100%; } }

@-webkit-keyframes goBack {
  100% {
    left: 100%; } }

@keyframes goBack {
  100% {
    left: 100%; } }

@-moz-keyframes goBack {
  100% {
    left: 100%; } }

@-ms-keyframes goBack {
  100% {
    left: 100%; } }

@-o-keyframes goBack {
  100% {
    left: 100%; } }

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite; }

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); }
  50% {
    transform: scale(1);
    opacity: 1;
    transform: translateY(8%) rotate(4deg); }
  100% {
    transform: scale(0.6);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.65);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
    transform: translateY(8%) rotate(4deg); }
  100% {
    -webkit-transform: scale(0.65);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); } }