/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  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 {
  -ms-transform: scale(1.3, 1.3);
  -webkit-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%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	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: #869791;
  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: #D6D6D6;
  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: #869791; }

@-webkit-keyframes animatedBackground {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }

@keyframes animatedBackground {
  from {
    background-position: 0 0; }
  to {
    background-position: 100% 0; } }

html, body {
  min-height: 100vh; }

body {
  color: #55595c; }

a {
  color: #55595c;
  -webkit-transition: color 0.1s ease;
  -o-transition: color 0.1s ease;
  transition: color 0.1s ease; }
  a:hover {
    color: #000000; }

.lead {
  font-size: 17px;
  font-weight: normal; }

img {
  max-width: 100%; }

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  position: relative; }

.container-lg {
  max-width: 1270px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #55595c;
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 3px; }

.arrow-down {
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #55595c;
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 3px; }

.badge {
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 100px;
  border: 2px solid #55595c;
  color: #55595c;
  width: 130px; }
  .badge.sent, .badge.completed {
    background-color: #e1ffe1; }
  .badge.incomplete {
    background-color: #ff7676;
    color: #ffffff; }
  .badge.new {
    background-color: #e1feff; }
  .badge.in-transit {
    background-color: #fffee1; }

@font-face {
  font-family: 'Theano Didot Regular';
  font-style: normal;
  font-weight: normal;
  src: local("Theano Didot Regular"), url("../fonts/TheanoDidot-Regular.woff") format("woff"); }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 2; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Theano Didot Regular', serif;
  font-weight: normal;
  letter-spacing: 0.6px;
  font-weight: 300; }

h1 {
  font-size: 30px; }
  @media (min-width: 992px) {
    h1 {
      font-size: 40px; } }

h2 {
  font-size: 20px; }
  @media (min-width: 992px) {
    h2 {
      font-size: 30px; } }

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100; }
  .site-header .top {
    background-color: rgba(85, 89, 92, 0.35);
    -webkit-box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.7);
    box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.7);
    padding: 15px; }
  .site-header .bottom {
    background-color: rgba(85, 89, 92, 0.35);
    padding: 15px; }
  .site-header .site-logo {
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 180px; }
  .site-header .search input {
    border: 0;
    border-radius: 10px;
    padding: 5px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    display: block;
    width: 135px; }
    @media (min-width: 576px) {
      .site-header .search input {
        margin: 0; } }
    .site-header .search input::-webkit-input-placeholder {
      letter-spacing: 3px;
      color: #ffffff;
      text-align: center;
      width: 100%; }
    .site-header .search input:-ms-input-placeholder {
      letter-spacing: 3px;
      color: #ffffff;
      text-align: center;
      width: 100%; }
    .site-header .search input::-ms-input-placeholder {
      letter-spacing: 3px;
      color: #ffffff;
      text-align: center;
      width: 100%; }
    .site-header .search input::placeholder {
      letter-spacing: 3px;
      color: #ffffff;
      text-align: center;
      width: 100%; }
  .site-header .social-links ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: right; }
    .site-header .social-links ul li {
      display: inline-block; }
      .site-header .social-links ul li:first-child {
        margin-left: 0; }
      @media (min-width: 650px) {
        .site-header .social-links ul li {
          margin-left: 5px; } }
      .site-header .social-links ul li a {
        display: inline-block;
        height: 22px;
        width: 22px; }
        .site-header .social-links ul li a:hover {
          -webkit-animation: heartBeat 1s;
          animation: heartBeat 1s; }
  .site-header .site-nav .mobile-site-logo {
    display: none; }
  .site-header .site-nav .mobile-menu-btn {
    color: #fff;
    border: none;
    background-color: transparent;
    font-size: 30px; }
    @media (min-width: 992px) {
      .site-header .site-nav .mobile-menu-btn {
        display: none; } }
  .site-header .site-nav ul {
    list-style-type: none;
    margin: 15px -30px 0;
    padding: 0;
    text-align: center;
    display: none;
    background-color: #fff; }
    @media (min-width: 992px) {
      .site-header .site-nav ul {
        display: block;
        margin: 0;
        background-color: transparent; } }
    .site-header .site-nav ul li {
      margin-bottom: 20px; }
      @media (min-width: 992px) {
        .site-header .site-nav ul li {
          display: inline-block;
          width: 23%;
          margin-bottom: 0px; } }
      .site-header .site-nav ul li:first-child {
        padding-top: 15px; }
        @media (min-width: 992px) {
          .site-header .site-nav ul li:first-child {
            padding-top: 0; } }
      .site-header .site-nav ul li:last-child {
        padding-bottom: 15px; }
        @media (min-width: 992px) {
          .site-header .site-nav ul li:last-child {
            padding-bottom: 0; } }
      .site-header .site-nav ul li a {
        color: #55595C;
        font-size: 20px;
        text-decoration: none;
        text-transform: uppercase; }
        @media (min-width: 992px) {
          .site-header .site-nav ul li a {
            color: #ffffff; } }
        .site-header .site-nav ul li a:after {
          content: "";
          width: 30px;
          height: 3px;
          background-color: rgba(255, 255, 255, 0.5);
          display: block;
          margin: 4px auto 0; }
        .site-header .site-nav ul li a:hover:after {
          background-color: white; }
  .site-header .site-nav .search {
    display: none; }

.site-header.scrolled,
.site-header.no-transparent {
  position: fixed; }
  .site-header.scrolled .bottom,
  .site-header.no-transparent .bottom {
    border: 0;
    background-color: #e6e6e7; }
  .site-header.scrolled .top,
  .site-header.no-transparent .top {
    display: none; }
  .site-header.scrolled .site-nav .mobile-site-logo,
  .site-header.no-transparent .site-nav .mobile-site-logo {
    float: left;
    max-width: 200px;
    margin-top: 7px;
    display: block; }
    @media (min-width: 992px) {
      .site-header.scrolled .site-nav .mobile-site-logo,
      .site-header.no-transparent .site-nav .mobile-site-logo {
        display: none; } }
  .site-header.scrolled .site-nav .mobile-menu-btn,
  .site-header.no-transparent .site-nav .mobile-menu-btn {
    color: #55595C;
    float: right; }
  .site-header.scrolled .site-nav ul,
  .site-header.no-transparent .site-nav ul {
    background-color: transparent; }
    .site-header.scrolled .site-nav ul li a,
    .site-header.no-transparent .site-nav ul li a {
      color: #55595c; }
      .site-header.scrolled .site-nav ul li a:after,
      .site-header.no-transparent .site-nav ul li a:after {
        background-color: #d6d6d7; }
      .site-header.scrolled .site-nav ul li a:hover:after,
      .site-header.no-transparent .site-nav ul li a:hover:after {
        background-color: #8a8c8e; }
  .site-header.scrolled .site-nav .search,
  .site-header.no-transparent .site-nav .search {
    display: none; }
    @media (min-width: 992px) {
      .site-header.scrolled .site-nav .search,
      .site-header.no-transparent .site-nav .search {
        position: absolute;
        left: 15px;
        top: 90px;
        display: block; } }
    .site-header.scrolled .site-nav .search input,
    .site-header.no-transparent .site-nav .search input {
      color: #fff;
      background-color: #d8d8d8;
      background-color: rgba(216, 216, 216, 0.35); }
      .site-header.scrolled .site-nav .search input::-webkit-input-placeholder,
      .site-header.no-transparent .site-nav .search input::-webkit-input-placeholder {
        color: #55595c; }
      .site-header.scrolled .site-nav .search input:-ms-input-placeholder,
      .site-header.no-transparent .site-nav .search input:-ms-input-placeholder {
        color: #55595c; }
      .site-header.scrolled .site-nav .search input::-ms-input-placeholder,
      .site-header.no-transparent .site-nav .search input::-ms-input-placeholder {
        color: #55595c; }
      .site-header.scrolled .site-nav .search input::placeholder,
      .site-header.no-transparent .site-nav .search input::placeholder {
        color: #55595c; }

.site-footer {
  color: #949698;
  text-align: center;
  padding-bottom: 7px;
  padding-top: 7px;
  border-top: 1px solid #949698;
  font-size: 12px; }
  @media (min-width: 992px) {
    .site-footer {
      text-align: left; } }
  .site-footer .footer-nav {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    .site-footer .footer-nav li {
      display: inline-block; }
      .site-footer .footer-nav li:after {
        content: "|";
        margin-left: 5px; }
      .site-footer .footer-nav li:last-child:after {
        content: "";
        margin: 0; }
      .site-footer .footer-nav li a {
        color: #949698; }
  .site-footer .copyright {
    text-align: center; }
    @media (min-width: 992px) {
      .site-footer .copyright {
        text-align: right; } }

section {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (min-width: 992px) {
    section {
      padding-top: 120px;
      padding-bottom: 120px; } }
  section.fullscreen {
    color: #ffffff;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    text-align: center;
    position: relative; }
    @media (min-width: 992px) {
      section.fullscreen {
        min-height: 100vh; } }
    section.fullscreen:before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      background-color: rgba(0, 0, 0, 0.3); }
    section.fullscreen .container {
      position: relative; }
    section.fullscreen h1 {
      text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
      margin-top: 250px;
      margin-bottom: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 300; }
      @media (min-width: 992px) {
        section.fullscreen h1 {
          margin-top: 300px;
          margin-bottom: 0; } }
    section.fullscreen a.scroll {
      color: #ffffff;
      position: absolute;
      bottom: 10px;
      left: 50%;
      font-size: 50px;
      margin-left: -22px; }
  section.first {
    padding-top: 110px; }
    @media (min-width: 992px) {
      section.first {
        padding-top: 120px; } }
  section.stretch {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
  section header.page-title {
    background-size: cover;
    background-position: center;
    min-height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    text-align: center;
    color: #ffffff;
    margin-top: -60px;
    margin-bottom: 30px;
    position: relative; }
    @media (min-width: 992px) {
      section header.page-title {
        min-height: 275px;
        margin-top: -120px;
        margin-bottom: 60px; } }
    section header.page-title:before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      background-color: rgba(0, 0, 0, 0.3); }
    section header.page-title .container {
      position: relative; }
    section header.page-title h1 {
      text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7); }
    section header.page-title h4 {
      text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
      margin-top: 30px; }
      @media (min-width: 992px) {
        section header.page-title h4 {
          margin-top: 60px; } }

.info-box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
  margin-right: 40px; }
  .info-box_wrap .info-box-widget {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media (min-width: 992px) {
      .info-box_wrap .info-box-widget {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row; } }
    .info-box_wrap .info-box-widget > div:last-child {
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }
    .info-box_wrap .info-box-widget .photo {
      max-height: 300px;
      width: auto !important;
      max-width: 100%;
      margin: auto; }
      @media (min-width: 992px) {
        .info-box_wrap .info-box-widget .photo {
          max-height: 630px;
          margin-right: -50px; } }
    .info-box_wrap .info-box-widget .info-box {
      background-color: #ffffff;
      -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
      max-width: 600px; }
      @media (min-width: 992px) {
        .info-box_wrap .info-box-widget .info-box {
          margin-left: -50px; } }
      .info-box_wrap .info-box-widget .info-box header {
        padding: 30px 30px 0;
        text-align: center;
        font-size: 18px;
        font-weight: 300; }
      .info-box_wrap .info-box-widget .info-box article {
        padding: 30px; }

.contact-widget {
  text-align: right;
  padding: 10px 30px;
  font-size: 13px;
  color: #c4c5c6;
  position: fixed;
  right: 10px;
  bottom: 35px; }
  .contact-widget .links {
    font-size: 30px; }
    .contact-widget .links a {
      color: #c4c5c6; }
      .contact-widget .links a:hover {
        color: #949698; }

.region-carousel {
  margin-top: 60px; }
  .region-carousel .img-box {
    text-align: center; }
    .region-carousel .img-box img {
      margin-bottom: 30px;
      width: 80%;
      margin-left: auto;
      margin-right: auto; }
      @media (min-width: 992px) {
        .region-carousel .img-box img {
          width: 100%; } }
    .region-carousel .img-box a {
      text-decoration: none; }
    .region-carousel .img-box h4 {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: normal; }
  .region-carousel .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media (min-width: 992px) {
      .region-carousel .owl-nav .owl-prev, .region-carousel .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        margin-top: -20px; } }
    .region-carousel .owl-nav .owl-prev:hover, .region-carousel .owl-nav .owl-next:hover {
      color: #55595C;
      background-color: transparent; }
    .region-carousel .owl-nav .owl-next {
      right: 0; }

.info-box-carousel {
  margin-top: 60px; }
  .info-box-carousel .item {
    padding: 10px; }
  .info-box-carousel .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media (min-width: 992px) {
      .info-box-carousel .owl-nav .owl-prev, .info-box-carousel .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        margin-top: -20px; } }
    .info-box-carousel .owl-nav .owl-prev:hover, .info-box-carousel .owl-nav .owl-next:hover {
      color: #55595C;
      background-color: transparent; }
    .info-box-carousel .owl-nav .owl-next {
      right: 0; }

.team-member {
  margin-bottom: 30px; }
  .team-member img {
    width: 100%; }
  .team-member .row {
    margin-top: 7px; }
  .team-member .col p, .team-member .col-auto p {
    text-transform: uppercase;
    margin: 0; }
  .team-member .more button {
    color: #55595c;
    background-color: transparent;
    border: 0;
    padding: 0; }
    .team-member .more button:hover {
      text-decoration: underline; }
  .team-member .more .more-content {
    display: none; }
  .team-member .contact-member {
    text-align: right; }
    .team-member .contact-member p {
      text-transform: none;
      font-size: 13px;
      color: #c4c5c6; }
    .team-member .contact-member .links {
      font-size: 30px; }
      .team-member .contact-member .links a {
        color: #c4c5c6; }
        .team-member .contact-member .links a:hover {
          color: #55595c; }

.classic-section {
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; }
  .classic-section .box {
    -webkit-box-shadow: 7px 5px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 7px 5px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 30px;
    margin: 30px 0; }
    @media (min-width: 992px) {
      .classic-section .box {
        margin: 0; } }
    .classic-section .box p {
      font-size: 11px;
      margin-bottom: 5px; }
  @media (min-width: 992px) {
    .classic-section {
      padding-top: 60px; } }
  .classic-section h4 {
    margin-left: 20px; }

.testimonial-container {
  margin-top: 20px; }
  @media (min-width: 992px) {
    .testimonial-container {
      margin-top: 60px; } }

.testimonial {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 11px; }
  @media (min-width: 992px) {
    .testimonial {
      text-align: center;
      max-width: 420px;
      margin: 0 auto; } }
  .testimonial h2 {
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .testimonial h2 {
        margin-bottom: 30px; } }
  .testimonial .name {
    margin-top: 30px;
    font-size: 14px; }

.area-menu {
  text-align: center; }
  .area-menu a:hover {
    text-decoration: none; }
  .area-menu h4 {
    margin-bottom: 50px; }
    @media (min-width: 576px) {
      .area-menu h4 {
        margin-bottom: 100px; } }
  .area-menu img {
    margin: 0 auto 30px; }
    @media (min-width: 576px) {
      .area-menu img {
        margin: 0 auto 70px; } }

.private-block {
  border-radius: 15px;
  margin-bottom: 40px;
  background-color: #E6E6E6; }
  .private-block header {
    background-color: #D0D1D2;
    padding: 15px 40px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px; }
    .private-block header .row {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .private-block header .row > div:last-child {
        text-align: right; }
    .private-block header h4 {
      margin-top: 6px;
      margin-bottom: 5px; }
    .private-block header .show-hide {
      text-align: right; }
      .private-block header .show-hide button {
        color: #55595c;
        font-size: 12px;
        font-weight: 500;
        border: 0;
        background-color: transparent;
        padding: 0;
        margin: 0;
        text-transform: uppercase; }
    .private-block header ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .private-block header ul li {
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        margin-left: 10px;
        padding: 0 20px;
        border: 2px solid transparent;
        border-bottom: 0;
        position: relative;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px; }
        .private-block header ul li.open {
          border-left: 2px solid #55595c;
          border-right: 2px solid #55595c;
          border-top: 2px solid #55595c;
          border-top-right-radius: 10px;
          border-top-left-radius: 10px; }
        .private-block header ul li > span {
          cursor: pointer; }
        .private-block header ul li.search {
          display: none;
          font-size: 16px;
          font-weight: normal;
          padding: 0;
          margin-left: 0; }
          @media (min-width: 600px) {
            .private-block header ul li.search {
              display: block; } }
          .private-block header ul li.search input {
            border: 2px solid #55595c;
            border-radius: 10px;
            padding: 5px;
            background-color: #dedfe0;
            margin: 0 auto;
            display: block;
            width: 135px;
            padding: 0 5px; }
            .private-block header ul li.search input::-webkit-input-placeholder {
              letter-spacing: 3px;
              text-align: center;
              width: 100%; }
            .private-block header ul li.search input:-ms-input-placeholder {
              letter-spacing: 3px;
              text-align: center;
              width: 100%; }
            .private-block header ul li.search input::-ms-input-placeholder {
              letter-spacing: 3px;
              text-align: center;
              width: 100%; }
            .private-block header ul li.search input::placeholder {
              letter-spacing: 3px;
              text-align: center;
              width: 100%; }
          .private-block header ul li.search button {
            display: none; }
        .private-block header ul li ul {
          display: none;
          background-color: #D0D1D2;
          position: absolute;
          top: 18px;
          left: -2px;
          right: -2px;
          border-left: 2px solid #55595c;
          border-right: 2px solid #55595c;
          border-bottom: 2px solid #55595c;
          border-bottom-right-radius: 10px;
          border-bottom-left-radius: 10px; }
          .private-block header ul li ul li {
            margin-left: 0;
            padding: 5px;
            text-align: center; }
  .private-block .private-block-content {
    padding: 10px; }
    @media (min-width: 992px) {
      .private-block .private-block-content {
        padding: 40px; } }
    .private-block .private-block-content table {
      width: 100%; }
      .private-block .private-block-content table th, .private-block .private-block-content table td {
        white-space: nowrap; }
      .private-block .private-block-content table button {
        border: 0;
        background-color: transparent;
        padding: 0;
        margin: 0;
        min-width: auto; }
    .private-block .private-block-content form {
      margin: 0 auto; }
      .private-block .private-block-content form h2 {
        margin-top: 60px;
        border-bottom: 1px solid #D0D1D2;
        padding-bottom: 10px;
        margin-bottom: 10px; }
        .private-block .private-block-content form h2:first-child {
          margin-top: 0; }
      .private-block .private-block-content form .select2-container {
        display: block; }
      .private-block .private-block-content form .select2-container .select2-selection--single {
        height: 38px; }
      .private-block .private-block-content form .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 38px; }
      .private-block .private-block-content form .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px; }
      .private-block .private-block-content form .select2-container--default .select2-selection--single {
        border: 1px solid #ced4da;
        border-radius: .25rem; }
      .private-block .private-block-content form .input-group-append i {
        margin-left: 3px;
        margin-right: 3px; }
    .private-block .private-block-content .buttons {
      text-align: right; }
    .private-block .private-block-content .order-info {
      display: none;
      text-align: left; }
      .private-block .private-block-content .order-info > td {
        padding-left: 60px;
        padding-right: 60px; }
      .private-block .private-block-content .order-info .row {
        margin-bottom: 5px; }
        .private-block .private-block-content .order-info .row .col {
          line-height: 30px; }
      .private-block .private-block-content .order-info strong {
        min-width: 90px;
        display: inline-block;
        margin-right: 10px; }
      .private-block .private-block-content .order-info .delivery-address strong,
      .private-block .private-block-content .order-info .billing-address strong {
        min-width: 140px; }
      .private-block .private-block-content .order-info table {
        width: auto; }
        .private-block .private-block-content .order-info table td {
          padding: .3rem .75rem; }
      .private-block .private-block-content .order-info .sales-taxes strong,
      .private-block .private-block-content .order-info .shipping strong,
      .private-block .private-block-content .order-info .total strong {
        min-width: 95px; }
    .private-block .private-block-content .payment-method-tabs {
      max-width: 500px;
      margin: 40px auto 0; }
    .private-block .private-block-content .payment-method-tab-content {
      max-width: 500px;
      margin: auto;
      padding: 20px;
      border: 1px solid #D0D1D2;
      background-color: rgba(255, 255, 255, 0.2); }
    .private-block .private-block-content .checkout-button {
      margin-top: 40px;
      margin-left: auto;
      margin-right: auto; }
  .private-block footer {
    border-top: 2px solid #d0d1d2;
    padding-top: 10px;
    text-align: right;
    padding: 15px; }
    .private-block footer button {
      color: #55595c;
      margin-left: 20px;
      border-radius: 10px;
      border: 2px solid #55595c;
      background-color: #D0D1D2;
      text-transform: uppercase;
      font-weight: 500;
      font-size: 14px; }
  .private-block.basket .private-block-content {
    display: none; }
  .private-block button {
    color: #55595c;
    border-radius: 10px;
    border: 2px solid #55595c;
    background-color: #D0D1D2;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    min-width: 100px; }
    .private-block button.nostyle {
      border: 0;
      padding: 0;
      margin: 0;
      background-color: transparent;
      font-size: 16px;
      font-weight: normal;
      min-width: auto;
      text-transform: none;
      border-radius: 0; }
    .private-block button.lg {
      font-size: 18px;
      min-width: 200px; }

.select2-dropdown {
  border: 1px solid #ced4da;
  border-radius: .25rem; }

.login-page {
  background-size: cover;
  background-position: center;
  background-image: url("../img/home-background.jpg"); }
  .login-page .site-header {
    padding: 15px;
    position: relative; }
    .login-page .site-header .site-logo {
      text-align: center;
      display: block;
      margin: 0 auto;
      max-width: 260px; }
      @media (min-width: 992px) {
        .login-page .site-header .site-logo {
          max-width: 291px; } }
      .login-page .site-header .site-logo img {
        max-width: 100%; }
        @media (min-width: 992px) {
          .login-page .site-header .site-logo img {
            max-width: 291px; } }
  .login-page .login-box {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.4);
    max-width: 450px;
    margin: 0 auto;
    padding: 40px; }
    @media (min-width: 768px) {
      .login-page .login-box {
        padding: 80px; } }
    .login-page .login-box h2 {
      margin: 0 0 80px;
      text-align: center; }
    .login-page .login-box form label {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 20px; }
    .login-page .login-box form input {
      border: 0;
      border-bottom: 2px solid #ffffff;
      background-color: transparent;
      width: 100%;
      margin-bottom: 50px;
      color: #ffffff; }
    .login-page .login-box form button {
      background-color: transparent;
      border: 0;
      color: #ffffff;
      float: right;
      font-size: 35px; }
  .login-page .site-footer {
    color: #fff;
    border-top: 0; }
    .login-page .site-footer .footer-nav li a {
      color: #fff; }

.home {
  background-image: url("../img/home-background.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-animation: animatedBackground 40s linear infinite;
  animation: animatedBackground 40s linear infinite; }
  .home:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.3); }
  .home .site-header {
    padding: 15px;
    position: relative; }
  .home button {
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    border-radius: 999px;
    font-size: 80px;
    padding: 30px;
    width: 180px;
    height: 180px;
    position: relative;
    border: 0; }
    .home button i.fa-play {
      margin-left: 15px; }
  .home .nav-links {
    text-align: center;
    margin-top: 60px; }
    .home .nav-links h4 {
      margin-bottom: 30px; }
      @media (min-width: 992px) {
        .home .nav-links h4 {
          margin-bottom: 0; } }
    .home .nav-links a {
      font-size: 18px;
      color: #ffffff;
      text-decoration: none;
      text-transform: uppercase; }
      .home .nav-links a:after {
        content: "";
        width: 30px;
        height: 3px;
        background-color: rgba(255, 255, 255, 0.5);
        display: block;
        margin: 7px auto 0; }
      .home .nav-links a:hover:after {
        background-color: white; }
  .home .site-footer {
    color: #fff;
    border-top: 0; }
    .home .site-footer .footer-nav li a {
      color: #fff; }

#video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%; }

.customer-page {
  background-size: cover;
  background-position: center; }
  .customer-page .site-header {
    padding: 15px;
    position: relative;
    background-color: #e6e6e7; }
    .customer-page .site-header .search input {
      color: #55595c;
      background-color: #d8d8d8; }
      .customer-page .site-header .search input::-webkit-input-placeholder {
        color: #55595c; }
      .customer-page .site-header .search input:-ms-input-placeholder {
        color: #55595c; }
      .customer-page .site-header .search input::-ms-input-placeholder {
        color: #55595c; }
      .customer-page .site-header .search input::placeholder {
        color: #55595c; }
    .customer-page .site-header .shop-nav ul {
      list-style-type: none;
      margin: 20px 0 0;
      padding: 0;
      text-align: center; }
      @media (min-width: 768px) {
        .customer-page .site-header .shop-nav ul {
          text-align: right;
          margin: 0; } }
      .customer-page .site-header .shop-nav ul li {
        display: inline-block;
        margin-right: 20px;
        position: relative; }
        @media (min-width: 768px) {
          .customer-page .site-header .shop-nav ul li {
            margin-right: 3px; } }
        @media (min-width: 870px) {
          .customer-page .site-header .shop-nav ul li {
            margin-right: 20px; } }
  .customer-page .login-box {
    max-width: 450px;
    margin: 0 auto;
    padding: 40px; }
    @media (min-width: 768px) {
      .customer-page .login-box {
        padding: 80px;
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3); } }
    .customer-page .login-box h2 {
      margin: 0 0 80px;
      text-align: center; }
    .customer-page .login-box form label {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 20px; }
    .customer-page .login-box form input {
      border: 0;
      border-bottom: 2px solid #55595c;
      background-color: transparent;
      width: 100%;
      margin-bottom: 50px;
      color: #55595c; }
    .customer-page .login-box form button {
      background-color: transparent;
      border: 0;
      float: right;
      font-size: 35px;
      color: #55595c; }
