/*--------------------------------------------------------------
# CSS variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-primary: "Open Sans", "Noto Sans HK", sans-serif;
  --font-secondary: "Roboto", "Noto Sans HK", sans-serif;
}

/* Colors */
:root {
  --color-bg: #567189;
  --color-bg-rgb: 86, 113, 137;
  --color-bg-alt: #eff7fd;
  --color-bg-lite: #e6e9ec;
  --color-btn: #0371AC;
  --color-btn-em: #0089D2;
  --color-title: #997d47;
  --color-header: #0089D2;
  --color-sch-btn: #5c9f24;
  --color-sch-btn-em: #74c92d;
}

:root {
  --swiper-navigation-size: 40px;
  --swiper-navigation-sides-offset: 15px;
  --swiper-navigation-color: var(--color-bg-alt);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
/*  color: #666;
  background-color: var(--color-bg); */
  overflow-x: hidden;
}

a {
  color: var(--color-btn);
  text-decoration: none;
}

a:hover {
  color: var(--color-btn-em);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

.btn, .form-select, .form-control {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.btn {
  background: var(--color-btn);
  color: #fff;
  transition: 0.4s;
}

.btn:hover {
  background: var(--color-btn-em);
  color: #fff;
}

img.circular {
  border-radius: 50% !important;
}

.text-shadow {
	text-shadow: 2px 2px 2px #888;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 20;
  background: var(--color-btn);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-btn-em);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 99;
  height: 120px;
  transition: all 0.5s;
}

#header.sticked {
  background: #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  height: 60px;
}

#header .logo img {
  height: 77px;
  margin-top: 10px;
  transition: all 0.5s;
}

#header.sticked img {
  height: 45px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 16px 0 0 0;
}

.navbar ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  list-style: none;
  max-width: 1120px;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0;
}

.navbar a,
.navbar a:focus {
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 4px;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.5s;
  position: relative;
}

.navbar .social-icon a .fab,
.navbar .social-icon a:focus .fab {
  font-size: 18px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 33px;
  height: 33px;
  transition: 0.3s;
/*
  font-size: 16px;
  line-height: 0;
  color: #000;
  padding: 12px 0 0 5px;
  background-color: rgba(255, 255, 255, 0.7);
  transition: 0.5s;
  border-radius: 12px;
  width: 25px;
  height: 25px;
*/
}

.navbar .social-icon a .fab:hover {
  background-color: #fff;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .social-links {
  padding-left: 4px;
}

.navbar .social-links a {
  display: inline;
  padding-right: 4px;
}

.navbar .lang,
.navbar .lang:focus {
  margin-left: 22px;
  padding: 3px 15px;
  border-radius: 6px;
  color: #fff;
  font-weight: 400;
  border: 2px solid var(--color-btn);
}

.navbar .lang:hover,
.navbar .lang:focus:hover {
  background: var(--color-btn);
}

.navbar .lang:hover:before,
.navbar li:hover>.lang:before {
  visibility: hidden;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  text-shadow: #333 1px 0 4px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.navbar ul {
  display: none;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
/*
  background: rgba(17, 17, 17, 0.9);
*/
  background: #000;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
/*
  background: rgba(var(--color-bg-rgb), 0.95);
*/
  text-align: left;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.navbar-mobile .social-links a {
  padding: 10px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.navbar-mobile>ul>li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .social-links {
  padding: 15px 0 15px 10px;
}

.navbar-mobile .lang,
.navbar-mobile .lang:focus {
  margin: 15px;
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.1);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  text-shadow: 1px 1px 1px black;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span {
  font-size: 96px;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  text-shadow: 1px 1px 1px black;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-btn);
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  text-transform: uppercase;
  border: 2px solid var(--color-btn);
  background: var(--color-btn);
}

#hero .btn-get-started:hover {
  background: var(--color-btn-em);
  border-color: var(--color-btn-em);
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  #hero h2 span {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/**
* Video Frame
*/
#hero .video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .video-content {
  text-align: center;
}

#hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -99;
}

@media (min-aspect-ratio: 16/9) {
  #hero iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  #hero iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

/*--------------------------------------------------------------
# search-banner, topBanner
--------------------------------------------------------------*/
.search-banner,
.topBanner {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.topBanner {
  text-shadow: 0 0 10px black;
}

.search-banner {
  margin-bottom: 40px;
}

.search-banner .container-fluid::before,
.topBanner  .container-fluid::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.criteria-box {
  display: none;
}

.search-banner .criteria-box {
  display: flex;
}

.search-banner .input-group {
  display: flex;
}

.search-banner .input-group {
  display: none;
}

.search-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#hero .search-bar {
  bottom: 60px;
}

.search-banner .search-bar {
  bottom: -30px;
}

.search-banner .catImg {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.search-bar .btn {
  background: var(--color-sch-btn);
}

.search-bar .btn:hover {
  background: var(--color-sch-btn-em);
}

.criteria-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .search-banner {
    margin-bottom: 0;
  }
  .search-banner .input-group {
    display: flex;
  }
  .search-banner .criteria-box {
    display: none;
  }
  .search-banner .search-bar {
    bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Search Result Page
--------------------------------------------------------------*/
.search h1 {
  color: #fff;
  background-color: #1A5F89;
  font-size: 20px;
  text-align: center;
  padding: 20px 5px;
  border-radius: .375rem;
}
/*
.search h1::before {
    content: url("../images/Title-bg-l.jpg");
    height: 67px;
    float: left;
}
.search h1::after {
    content: url("../images/Title-bg-r.jpg");
    height: 67px;
    float: right;
}
*/

.search-criteria {
  padding: 20px 20px 20px 0;
  display: none;
}

.search-criteria h3 {
  color: #000;
  font-size: 16px;
  margin-top: 20px;
}

.search-criteria .form-control, .search-criteria .form-select {
  display: inline;
  padding: 5px;
  margin: 10px 0;
}

.filter button {
  display: block;
  margin: 30px auto 0 auto;
  padding: 5px 20px;
  width: auto;
}

.filter .month {
  display: inline-block;
  width: 63px
}

.search-result-wrap {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  width: 100%;
}

.search-result-wrap .result-img {
  width: 100%;
  border-bottom-left-radius: var(--bs-border-radius);
  border-top-left-radius: var(--bs-border-radius);
}

@media (max-width: 576px) {
  .search-result-wrap .result-img {
    border-bottom-left-radius: 0;
    border-top-right-radius: var(--bs-border-radius);
  }
}

.search-result-wrap .flex-row, .search-result-wrap h3 {
  font-size: 18px;
  color: var(--color-btn-em);
}

.search-result-wrap p {
  font-size: 16px;
  color: #444;
}

.search-result-wrap p span {
  display: inline-block;
  width: 40%;
}

.search-result-wrap p span:first-child {
  width: 58%;
}
/*
.search-result-wrap p span {
  display: inline-block;
  min-width: 150px;
}

.search-result-wrap p span:first-child {
  min-width: 200px;
}
*/

.search-result-wrap p i {
  color: #5c9f24;
}

.search-result-wrap .result-duration {
  text-align: right;
  width: 100px;
}

.search-result-wrap .result-price {
  font-size: 20px;
  font-weight: bold;
}

.search-result-wrap .result-price span {
  display: inline;
  font-weight: normal;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .search {
    background: linear-gradient(
      to right,
      #F8F4F1 0%,
      #F8F4F1 calc(50vw - 395px),
      #eee calc(50vw - 395px),
      #fff calc(50vw - 380px),
      #fff 100%
    );
  }
}

@media (min-width: 1400px) {
  .search {
    background: linear-gradient(
      to right,
      #F8F4F1 0%,
      #F8F4F1 calc(50vw - 455px),
      #eee calc(50vw - 455px),
      #fff calc(50vw - 440px),
      #fff 100%
    );
  }
}

.lightbox {
	display: block;
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 20px;
	background: rgba(0,0,0,0.8);
	background: transparent\9;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
}

.lightbox > div {
	background-color: white;
	margin: 0 auto;
	padding: 50px 10px 30px 20px;
	max-width: 500px;
}

.filter {
  position: relative;
  width: 100%;
  line-height: 1.5em;
}

.close {
  display: none;
}

.lightbox .close {
  display: block;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
}

.lightbox .close:hover {
  opacity: 1;
}

.lightbox .close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}

.lightbox .close:before {
  transform: rotate(45deg);
}

.lightbox .close:after {
  transform: rotate(-45deg);
}

.lightbox .month {
  width: 55px
}

.lightbox .filterHr {
  display: none;
}

.lightbox .filterCol {
  display: inline-block;
  width: 48%;
  vertical-align: top;
}

.lightbox #inner {
  height: 80vh;
  padding: 0 8px 0 3px;
  overflow-y: auto;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/

.pkg h3 {
  color: var(--color-title);
}


/*--------------------------------------------------------------
# Main Page Category
--------------------------------------------------------------*/
.main-cat {
  position: relative;
  margin-top: -320px;
  padding-top: 290px;
  padding-bottom: 50px;
  color: #fff;
  background-image: linear-gradient(rgb(0, 143, 204, 0), rgba(0, 143, 204, 1), rgba(0, 81, 150, 1));
  z-index: 1;
}

.main-cat p {
  color: #fff;
}

.main-cat .card {
  background-color: transparent;
  border: 0;
}

/*--------------------------------------------------------------
# Home Contact Us
--------------------------------------------------------------*/
.contactus h2 {
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: 600;
}

.contactus h2 {
  color: var(--color-title);
}

.contactus p {
  color: #1E1E1E;
}

.contactusimg img {
  padding-top: 30px;
}

@media (max-width: 1400px) {
  .contactusimg img {
    padding-top: 50px;
    width: 130px;
  }
}

/*--------------------------------------------------------------
# Main Page Promo
--------------------------------------------------------------*/
.promo {
  padding: 20px 0 50px 0;
}

.middleline {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) calc(50% - 1px),
    rgba(153, 125, 71,1) calc(50%),
    rgba(0,0,0,0) calc(50% + 1px)
  );
}

.middleline img {
  width: 30vw;
  max-width: 262px;
}

.middleline .promo-en-img {
  width: 50vw;
  max-width: 442px;
}

.promo-wrap {
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
}

.promo-title {
  height: 110px;
  text-align: center;
  padding: 30px 5px;
}

.promo-txt {
  height: 50px;
  padding: 0 20px;
  color: #666;
  font-size: 16px;
  font-weight: bold;
}

.promo-txt span span {
  font-size: 14px;
  font-weight: normal;
}

@media (min-width: 768px) {
	.promo-title {
		height: 140px;
	}
}

@media (min-width: 1200px) {
	.promo-title {
		height: 110px;
	}
}

/*--------------------------------------------------------------
# Main Page Blog
--------------------------------------------------------------*/
.blog {
  padding: 20px 0 50px 0;
}

.blog-wrap {
  position: relative;
  height: 600px;
  width: 100%;
  padding: 5% 0 0 5%;
}

.blog-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: #DABDA2;
  z-index: -1;
}

.blog-photo {
  width: 100%;
  height: 100%;
  background-image: url('../images/Deep1_1206 1.png');
  background-size: cover;
  padding: 5% 5% 5% 60%;
}

.blog-corner {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #000;
  border-radius: 30px;
}

.blog-content {
  width: 100%;
  height: 100%;
  background-color: #000;
  line-height: 2;
  color: #fff;
  overflow-y: auto;
  padding-right: 5px;
}

.blog-content::-webkit-scrollbar-track
{
	border: 2px solid black;
	background-color: #aaa;
	border-radius: 6px;
}

.blog-content::-webkit-scrollbar
{
	width: 8px;
}

.blog-content::-webkit-scrollbar-thumb
{
	border-radius: 80px;
	background-color: #fff;
}


.blog-content a {
  color: #fff;
}

@media (max-width: 768px) {
  .blog-photo {
    padding: 5%;
  }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.aboutus {
  background-color: #000;
  letter-spacing: 1px;
  font-size: 1.2em;
  line-height: 2;
}

.staff img {
  width: 40%;
}

.staff h5, .staff h6 {
  color: var(--color-header);
}

.wilson {
  width: 70%;
  margin-top: 100px;
  padding-bottom: 100px;
  padding-right: 50px
}

.wilsonphoto {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
}


.nav-pills .nav-link {
    padding: 4px 6px;
    border: 1px solid #2d3b56;
    margin: 0 8px;
    color: #2d3b56;
    min-width: 80px;
    text-align: center;
    border-radius: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-pills .nav-link.active, .nav-pills .show {
    color: #ffffff;
    background-color: #2d3b56;
}



@media (max-width: 767px) {
  .aboutus {
    font-size: 1.1em;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .aboutus {
    font-size: 1em;
    line-height: normal;
  }
}


@media (min-width: 575px) {
  .nav-pills .nav-link {
      padding: 4px 10px;
      margin: 0 10px;
      min-width: 100px;
  }
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.media-header {
  color: #1e1e1e;
  height: 400px;
}


.media-header form {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.media-header .btn {
  background: var(--color-sch-btn);
}

.media-header .btn:hover {
  background: var(--color-sch-btn-em);
}

.media .card-img-top {
    width: 100%;
    height: 16vw;
    object-fit: cover;
}

.media h5 {
  color: var(--color-header);
}


@media (max-width: 1199px) {
  .media-header {
    height: 350px;
  }
  .media-header div:first-child {
    background-size: auto 85%;
  }
}


@media (max-width: 767px) {
  .media-header {
    height: 300px;
  }
  .media-header div:first-child {
    background-size: auto 75%;
  }
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.content {
  padding-top: 100px;
}

.content h1 {
  margin-bottom: 50px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  padding: 50px 0 30px 0;
  font-size: 14px;
  color: #1E1E1E;
  box-shadow: 0 20px 30px -20px #bbb inset;
}

#footer h3 {
  margin: 0 0 40px 0;
  padding: 2px 0 2px 0;
  font-size: 24px;
  font-weight: 400;
  color: #00519C;
  line-height: 1;
}

#footer h4 {
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-header);
}


#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #00519C;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--color-btn-em);
  text-decoration: none;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00519C;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color-btn-em);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-btn);
  color: #000;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--color-btn-em);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #000;
}

.footerLoc {
  margin-bottom: 30px;
}

.footerLoc ul {
  position: relative;
  width: 130px;
  transition: 0.3s;
}

.footerLoc li ul {
  position: absolute;
  left: 130px;
  top: 0px;
  display: none;
}



/*--------------------------------------------------------------
# Transition Period
--------------------------------------------------------------*/


table.AccomTable { border: 0; width: 100%; border-collapse: collapse; border-spacing: 0; margin-bottom: 10px; }
table.AccomTable TH { border: 1px solid #ccc; background-color: #b0c4de; color: #3366ff; padding: 3px 5px; font: normal 22px impact; }
table.AccomTable TD {  border: 1px solid #CCC; padding: 2px 5px; color: #000000; FONT-FAMILY: Tahoma, Verdana, Arial, Geneva, Helvetica, sans-serif; }
table.AccomTable TD.heading { border: 1px solid #CCC; padding: 2px 5px; font-weight: bold; FONT-FAMILY: Tahoma, Verdana, Arial, Geneva, Helvetica, sans-serif; }
table.AccomTable TD.body { border: 1px solid #CCC; padding: 2px 5px; FONT-FAMILY: Tahoma, Verdana, Arial, Geneva, Helvetica, sans-serif; }
