﻿/*1023*/
.container-flex .row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.container-flex .row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.container-flex .row.equal-height {
  display: flex; }

.container-flex .col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.container-flex .col-xs,
.container-flex .col-xs-1,
.container-flex .col-xs-2,
.container-flex .col-xs-3,
.container-flex .col-xs-4,
.container-flex .col-xs-5,
.container-flex .col-xs-6,
.container-flex .col-xs-7,
.container-flex .col-xs-8,
.container-flex .col-xs-9,
.container-flex .col-xs-10,
.container-flex .col-xs-11,
.container-flex .col-xs-12,
.container-flex .col-xs-offset-0,
.container-flex .col-xs-offset-1,
.container-flex .col-xs-offset-2,
.container-flex .col-xs-offset-3,
.container-flex .col-xs-offset-4,
.container-flex .col-xs-offset-5,
.container-flex .col-xs-offset-6,
.container-flex .col-xs-offset-7,
.container-flex .col-xs-offset-8,
.container-flex .col-xs-offset-9,
.container-flex .col-xs-offset-10,
.container-flex .col-xs-offset-11,
.container-flex .col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; }

.container-flex .col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%; }

.container-flex .col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.2%;
  max-width: 8.33333333%; }

.container-flex .col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.6%;
  max-width: 16.66666667%; }

.container-flex .col-xs-3 {
  -ms-flex-preferred-size: 24.97%;
  flex-basis: 24.97%;
  max-width: 25%; }

.container-flex .col-xs-4 {
  -ms-flex-preferred-size: 33.2%;
  flex-basis: 33.2%;
  max-width: 33.33333333%; }

.container-flex .col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%; }

.container-flex .col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 49.5%;
  max-width: 49.5%; }

.container-flex .col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.2%;
  max-width: 58.33333333%; }

.container-flex .col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.65%;
  max-width: 66.66666667%; }

.container-flex .col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.container-flex .col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.2%;
  max-width: 83.33333333%; }

.container-flex .col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.65%;
  max-width: 91.66666667%; }

.container-flex .col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.container-flex .start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start; }

.container-flex .center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.container-flex .end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end; }

.container-flex .top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.container-flex .middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.container-flex .bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

.container-flex .around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.container-flex .between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.container-flex .first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1; }

.container-flex .last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

@media only screen and (min-width: 48em) {
  .container-flex .container {
    width: 49rem; }
  .container-flex .col-sm,
  .container-flex .col-sm-1,
  .container-flex .col-sm-2,
  .container-flex .col-sm-3,
  .container-flex .col-sm-4,
  .container-flex .col-sm-5,
  .container-flex .col-sm-6,
  .container-flex .col-sm-7,
  .container-flex .col-sm-8,
  .container-flex .col-sm-9,
  .container-flex .col-sm-10,
  .container-flex .col-sm-11,
  .container-flex .col-sm-12,
  .container-flex .col-sm-offset-0,
  .container-flex .col-sm-offset-1,
  .container-flex .col-sm-offset-2,
  .container-flex .col-sm-offset-3,
  .container-flex .col-sm-offset-4,
  .container-flex .col-sm-offset-5,
  .container-flex .col-sm-offset-6,
  .container-flex .col-sm-offset-7,
  .container-flex .col-sm-offset-8,
  .container-flex .col-sm-offset-9,
  .container-flex .col-sm-offset-10,
  .container-flex .col-sm-offset-11,
  .container-flex .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
  .container-flex .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .container-flex .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .container-flex .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .container-flex .col-sm-3 {
    -ms-flex-preferred-size: 24.97%;
    flex-basis: 24.97%;
    max-width: 25%; }
  .container-flex .col-sm-4 {
    -ms-flex-preferred-size: 33.2%;
    flex-basis: 33.2%;
    max-width: 33.2%; }
  .container-flex .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .container-flex .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .container-flex .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .container-flex .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .container-flex .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .container-flex .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .container-flex .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .container-flex .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .container-flex .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .container-flex .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .container-flex .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .container-flex .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .container-flex .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .container-flex .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .container-flex .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .container-flex .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .container-flex .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .container-flex .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; } }

@media only screen and (min-width: 64em) {
  .container-flex .container {
    width: 65rem; }
  .container-flex .col-md,
  .container-flex .col-md-1,
  .container-flex .col-md-2,
  .container-flex .col-md-3,
  .container-flex .col-md-4,
  .container-flex .col-md-5,
  .container-flex .col-md-6,
  .container-flex .col-md-7,
  .container-flex .col-md-8,
  .container-flex .col-md-9,
  .container-flex .col-md-10,
  .container-flex .col-md-11,
  .container-flex .col-md-12,
  .container-flex .col-md-offset-0,
  .container-flex .col-md-offset-1,
  .container-flex .col-md-offset-2,
  .container-flex .col-md-offset-3,
  .container-flex .col-md-offset-4,
  .container-flex .col-md-offset-5,
  .container-flex .col-md-offset-6,
  .container-flex .col-md-offset-7,
  .container-flex .col-md-offset-8,
  .container-flex .col-md-offset-9,
  .container-flex .col-md-offset-10,
  .container-flex .col-md-offset-11,
  .container-flex .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
  .container-flex .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .container-flex .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .container-flex .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .container-flex .col-md-3 {
    -ms-flex-preferred-size: 24.97%;
    flex-basis: 24.97%;
    max-width: 25%; }
  .container-flex .col-md-4 {
    -ms-flex-preferred-size: 33.2%;
    flex-basis: 33.2%;
    max-width: 33.2%; }
  .container-flex .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .container-flex .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .container-flex .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .container-flex .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .container-flex .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .container-flex .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .container-flex .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .container-flex .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .container-flex .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .container-flex .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .container-flex .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .container-flex .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .container-flex .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .container-flex .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .container-flex .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .container-flex .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .container-flex .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .container-flex .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; } }

@media only screen and (min-width: 75em) {
  .container-flex .container {
    width: 76rem; }
  .container-flex .col-lg,
  .container-flex .col-lg-1,
  .container-flex .col-lg-2,
  .container-flex .col-lg-3,
  .container-flex .col-lg-4,
  .container-flex .col-lg-5,
  .container-flex .col-lg-6,
  .container-flex .col-lg-7,
  .container-flex .col-lg-8,
  .container-flex .col-lg-9,
  .container-flex .col-lg-10,
  .container-flex .col-lg-11,
  .container-flex .col-lg-12,
  .container-flex .col-lg-offset-0,
  .container-flex .col-lg-offset-1,
  .container-flex .col-lg-offset-2,
  .container-flex .col-lg-offset-3,
  .container-flex .col-lg-offset-4,
  .container-flex .col-lg-offset-5,
  .container-flex .col-lg-offset-6,
  .container-flex .col-lg-offset-7,
  .container-flex .col-lg-offset-8,
  .container-flex .col-lg-offset-9,
  .container-flex .col-lg-offset-10,
  .container-flex .col-lg-offset-11,
  .container-flex .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
  .container-flex .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .container-flex .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .container-flex .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .container-flex .col-lg-3 {
    -ms-flex-preferred-size: 24.97%;
    flex-basis: 24.97%;
    max-width: 25%; }
  .container-flex .col-lg-4 {
    -ms-flex-preferred-size: 33.2%;
    flex-basis: 33.2%;
    max-width: 33.2%; }
  .container-flex .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .container-flex .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .container-flex .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .container-flex .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .container-flex .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .container-flex .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .container-flex .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .container-flex .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .container-flex .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .container-flex .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .container-flex .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .container-flex .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .container-flex .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .container-flex .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .container-flex .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .container-flex .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .container-flex .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .container-flex .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; } }

body {
  color: #353535;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  background: #fff;
  /*line-height: 1.2em;*/ }

a {
  color: #353535;
  text-decoration: none;
  transition: color, background-color 0.3s ease-in-out; }
  a:hover, a:focus {
    color: #0351a0;
    text-decoration: none; }
  a.nolink:hover {
    text-decoration: none; }
  a.underline-hover:hover {
    text-decoration: none; }
    a.underline-hover:hover > span {
      border-bottom: solid 1px #353535; }
  a.link-blue {
    color: #0351a0; }

a.nolink:hover, a.nolink:visited, a.nolink:focus, a.nolink:active {
  text-decoration: none;
  color: inherit; }

a:focus,
button {
  outline: none; }

textarea {
  font-family: "Lato", sans-serif, sans-serif;
  font-size: 16px;
  font-size: 1rem; }

img {
  border: none;
  max-width: 100%; }

input[type="checkbox"] {
  display: none; }

input[type="checkbox"] + label {
  position: relative;
  padding-left: 24px;
  color: #979797;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px; }
  input[type="checkbox"] + label:before {
    content: '';
    display: inline-block;
    height: 15px;
    width: 15px;
    border: 1px solid #cacaca;
    position: absolute;
    top: 4px;
    left: 0; }
  @media (max-width: 767px) {
    input[type="checkbox"] + label {
      font-size: 14px; } }

input[type="checkbox"]:checked + label:before {
  color: #353535;
  content: "\f00c";
  height: 15px;
  width: 15px;
  border: 1px solid #cacaca;
  font: normal normal normal 14px/1 FontAwesome; }

.underline {
  text-decoration: underline; }

.full-width {
  width: 100%; }

.full-width-height {
  width: 100%;
  height: 100%; }

@media (min-width: 1200px) {
  .container-full {
    padding: 0; } }

.relative {
  position: relative; }

.ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  .ul li {
    list-style: none;
    display: inline-block; }

.mb-s {
  margin-bottom: 15px; }

.block {
  display: block; }

.inline-block {
  display: inline-block; }

.f-light {
  font-weight: 300; }

.f-regular {
  font-weight: normal; }

.f-medium {
  font-weight: 500; }

.bold {
  font-weight: bold; }

.display-none {
  display: none; }

h1,
h2,
h3,
h4,
h5 {
  font-family: "Lato", sans-serif; }

h1 {
  font-size: 70px;
  font-weight: 700; }

h3 {
  font-size: 30px;
  font-weight: 400; }

.uppercase {
  text-transform: uppercase; }

.background-gray {
  background-color: #cacaca; }

.socials {
  position: relative;
  padding-left: 48px; }
  .socials:before {
    content: 'Share';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px; }
  .socials a {
    width: 34px;
    height: 34px;
    display: block;
    border: 1px solid;
    font-size: 18px;
    border-radius: 50%;
    position: relative; }
    .socials a i {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .socials a.facebook {
      color: #2e3192; }
    .socials a.twitter {
      color: #00aeef; }
    .socials a.google {
      color: #ff0000; }

/*form elements*/
.btn {
  font-size: 14px;
  text-transform: uppercase;
  color: #0351a0;
  border: 2px solid #0351a0;
  border-radius: 18px;
  padding: 0 20px;
  line-height: 34px;
  background-color: #fff;
  color: #0351a0;
  letter-spacing: 1px; }
  .btn:hover {
    color: #fff;
    background-color: #0351a0; }
  .btn.btn-red {
    color: #fff;
    background-color: rgba(204, 0, 1, 0.9);
    border-color: rgba(204, 0, 1, 0.9); }
  .btn.btn-select {
    box-shadow: none;
    border: 1px solid #cacaca;
    line-height: 50px;
    height: 52px;
    border-radius: 0;
    color: #979797;
    text-transform: none; }
    .btn.btn-select.selected {
      color: #353535; }
    .btn.btn-select:hover, .btn.btn-select:focus {
      background: transparent; }
    .btn.btn-select .caret {
      background: url(/ClientResources/public/assets/images/icon-select.png) no-repeat center center;
      border: none;
      display: block;
      width: 16px;
      height: 16px;
      margin-top: -8px !important; }

.btn-add {
  display: inline-block;
  text-transform: uppercase;
  color: #979797;
  position: relative;
  padding-left: 20px; }
  .btn-add:before {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -8px;
    content: '+';
    font-size: 24px; }

.visiable-none {
  visibility: hidden; }

.tour {
  text-align: center;
  margin-bottom: 40px; }
  .tour .img-container {
    display: block;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 250px;
    margin-bottom: 14px; }
  .tour .tour-title {
    position: absolute;
    padding: 0;
    background: #0351a0;
    /* The Fallback */
    background: rgba(3, 81, 160, 0.5);
    right: 0;
    bottom: 55px;
    width: 100%;
    font-weight: 300;
    text-align: center; }
    .tour .tour-title h3 {
      margin: 0;
      padding: 15px 10px;
      color: #fff;
      line-height: 1;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 36px;
      letter-spacing: 1px; }
    .tour .tour-title small {
      display: block;
      padding: 4px 10px;
      color: #fff;
      background: #0351a0;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 3px; }
  .tour .s-des {
    height: 48px;
    margin-bottom: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 24px; }
  .tour.regular .img-container {
    min-height: 0;
    width: 490px;
    text-align: left;
    color: #fff;
    margin-bottom: 0; }
    .tour.regular .img-container .tour-schedule {
      background: #0351a0;
      /* The Fallback */
      background: rgba(3, 81, 160, 0.8);
      letter-spacing: 1px;
      text-transform: uppercase; }
      .tour.regular .img-container .tour-schedule .tour-name {
        margin: 0;
        padding: 15px 15px;
        font-size: 21px; }
      .tour.regular .img-container .tour-schedule .time {
        padding: 10px 0;
        margin-bottom: 5px;
        background-color: #0351a0; }
        .tour.regular .img-container .tour-schedule .time .col {
          float: left;
          width: 50%;
          padding: 0 0 0 18px; }
          @media (max-width: 480px) {
            .tour.regular .img-container .tour-schedule .time .col {
              width: 100%;
              padding-right: 18px; } }
        .tour.regular .img-container .tour-schedule .time .day {
          margin: 0 0 3px;
          font-size: 14px; }
        .tour.regular .img-container .tour-schedule .time .date {
          font-size: 18px;
          font-weight: 700; }
    .tour.regular .img-container .tour-code {
      float: left;
      line-height: 27px;
      font-size: 14px;
      width: 50%;
      padding-left: 18px;
      background-color: #cacaca;
      color: #353535; }
      @media (max-width: 480px) {
        .tour.regular .img-container .tour-code {
          width: 100%;
          padding-right: 15px; } }
  .tour.regular .tour-status {
    float: left;
    line-height: 27px;
    padding-left: 18px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    background-color: #00a651;
    width: 50%; }
    @media (max-width: 480px) {
      .tour.regular .tour-status {
        width: 100%;
        padding-right: 15px; } }
    .tour.regular .tour-status.off {
      background-color: #ff0000; }
    .tour.regular .tour-status.limited {
      background-color: #f7941d; }
    .tour.regular .tour-status.on-request {
      background-color: purple; }
  @media (max-width: 1023px) {
    .tour {
      margin-bottom: 30px !important; }
      .tour .tour-title h3 {
        padding: 10px 10px;
        font-size: 30px; } }
  @media (max-width: 767px) {
    .tour {
      margin-bottom: 20px !important; }
      .tour .tour-title h3 {
        font-size: 25px; }
      .tour.regular .img-container {
        width: 100%; } }

.tariff .table-responsive {
  margin-bottom: 35px; }
  .tariff .table-responsive.has-tour-date-info {
    margin-bottom: 15px; }
  .tariff .table-responsive.no-airlines .table {
    border-bottom: 0; }

.tariff .table {
  margin-bottom: 0;
  border-bottom: solid 1px #f2f6fa; }

.tariff td, .tariff th {
  padding: 0;
  border: none !important;
  font-size: 16px;
  line-height: 1 !important;
  font-weight: 400;
  padding: 19px 10px !important;
  letter-spacing: 1px; }
  .tariff td.book, .tariff th.book {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    text-align: right; }
    .tariff td.book .btn, .tariff th.book .btn {
      margin-right: 10px; }
  .tariff td:first-child, .tariff th:first-child {
    padding-left: 32px !important;
    text-transform: uppercase;
    width: 52%; }

.tariff th {
  background-color: #2d2d2d;
  color: #fff;
  text-transform: uppercase; }

.tariff tr:nth-child(even) {
  background-color: #f2f6fa; }

.tariff tr:hover td {
  background-color: #f2f6fa !important; }

.tariff tr.fire td.book {
  background: url(/ClientResources/public/assets/images/icon-fire.svg) no-repeat;
  background-position: right 135px center;
  background-size: 19px 31px; }
  @media (max-width: 767px) {
    .tariff tr.fire td.book {
      background: none; } }

@media (max-width: 767px) {
  .tariff tr.fire td:first-child {
    background: url(/ClientResources/public/assets/images/icon-fire.svg) no-repeat;
    background-position: left 5px center;
    background-size: 19px 31px; } }

.tariff .tour-date-more-info {
  margin-bottom: 35px;
  font-size: 14px; }
  @media (min-width: 768px) {
    .tariff .tour-date-more-info.no-airlines {
      padding-left: 15px;
      padding-right: 15px; } }

@media (max-width: 767px) {
  .tariff td:first-child, .tariff th:first-child {
    padding-left: 15px !important; } }

.form-group {
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    .form-group {
      margin-bottom: 20px; } }
  .form-group.sub {
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .form-group.sub {
        margin-bottom: 10px; } }

.form-label {
  margin-bottom: 15px; }

.form-control {
  box-shadow: none;
  border: 1px solid #cacaca;
  line-height: 50px;
  height: 52px;
  border-radius: 0; }
  .form-control::-webkit-input-placeholder {
    /* Chrome */
    text-transform: uppercase; }
  .form-control:-ms-input-placeholder {
    /* IE 10+ */
    text-transform: uppercase; }
  .form-control::-moz-placeholder {
    /* Firefox 19+ */
    text-transform: uppercase; }
  .form-control:-moz-placeholder {
    /* Firefox 4 - 18 */
    text-transform: uppercase; }

.has-success .form-control {
  box-shadow: none;
  border-color: #cacaca; }
  .has-success .form-control:focus {
    box-shadow: none;
    border-color: inherit; }

.help-block {
  font-size: inherit; }

.form-error {
  color: #a94442; }

.tab-content {
  margin-top: 50px;
  margin-bottom: 100px; }
  @media (max-width: 767px) {
    .tab-content {
      margin-top: 0;
      margin-bottom: 0; } }
  .tab-content .tab-pane h1, .tab-content .tab-pane h2, .tab-content .tab-pane h3 {
    margin-top: 0; }

.panel-group {
  margin-bottom: 0; }
  .panel-group .panel {
    border: none;
    box-shadow: none; }
    .panel-group .panel .panel-heading {
      background-color: #cacaca;
      border-radius: 0; }
      .panel-group .panel .panel-heading .panel-title {
        background: url(/ClientResources/public/assets/images/icon-close.png) no-repeat right center; }
        .panel-group .panel .panel-heading .panel-title a {
          font-size: 16px;
          line-height: 31px;
          text-transform: uppercase;
          display: inline-block;
          width: 100%;
          padding-right: 28px;
          color: #35363a; }
    .panel-group .panel .panel-body {
      border: none !important;
      font-size: 16px; }
    .panel-group .panel.active .panel-heading {
      background: #0351a0; }
      .panel-group .panel.active .panel-heading .panel-title {
        background: url(/ClientResources/public/assets/images/icon-open.png) no-repeat right center; }
        .panel-group .panel.active .panel-heading .panel-title a {
          color: #fff; }
          .panel-group .panel.active .panel-heading .panel-title a:hover {
            color: #fff; }

@media (max-width: 767px) {
  body {
    font-size: 14px; }
  h1 {
    font-size: 36px; }
  h2 {
    font-size: 28px; }
  h3 {
    font-size: 18px; }
  p {
    font-size: 14px; } }

.visible-none {
  visibility: hidden; }

.mask {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #333;
  /* The Fallback */
  background: rgba(51, 51, 51, 0.3); }

/* loading */
.loadding-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5); }
  .loadding-box .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

body.modal-open.loading .loadding-box {
  display: block;
  z-index: 999; }

/* end */
.view-more-text-block .more-text {
  display: none; }

body {
  overflow-x: hidden; }

.header-top {
  background: #fff url(/ClientResources/public/assets/images/bg-pattern.png) no-repeat right center;
  background-size: auto 100%; }
  .header-top a {
    line-height: 107px; }
    @media (max-width: 767px) {
      .header-top a {
        transition: none; } }
  .header-top .logo {
    margin-bottom: 0;
    margin-top: 0;
    float: left; }
    .header-top .logo img {
      max-width: 316px; }
  .header-top .phone {
    font-size: 22px;
    color: #0351a0;
    background: url(/ClientResources/public/assets/images/icon-phone.svg) no-repeat left center;
    background-size: 40px 40px;
    padding-left: 60px;
    margin-left: 40px;
    float: right; }
  .header-top .menu-top {
    float: right; }
    .header-top .menu-top a {
      font-size: 13px;
      color: #0351a0;
      padding: 0 3px; }
  @media (min-width: 768px) and (max-width: 1200px) {
    .header-top a {
      line-height: 40px; }
    .header-top .phone {
      margin-top: 27px; } }
  @media (min-width: 1201px) and (max-width: 1366px) {
    .header-top a {
      line-height: 100px; } }
  @media (max-width: 767px) {
    .header-top {
      text-align: center;
      background-size: cover; }
      .header-top a {
        line-height: 1.5; }
      .header-top .logo {
        float: none;
        padding: 0; }
        .header-top .logo img {
          max-width: 70%; }
      .header-top .phone {
        margin-top: 0;
        float: none;
        margin: 15px auto;
        display: inline-block;
        line-height: 40px; }
      .header-top .menu-top {
        float: none; }
      .header-top .navbar-toggle {
        margin: 10px 0 0; }
        .header-top .navbar-toggle .icon-bar {
          background-color: #cd1c1f; } }

.header-bottom {
  border-top: 6px solid #cd1c1f;
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 1s; }
  @media (max-width: 1023px) {
    .header-bottom .container {
      width: 100%; } }

.sf-menu {
  float: none;
  width: 100%;
  margin-bottom: 0; }
  .sf-menu a {
    border: none; }
  .sf-menu > li {
    text-align: center;
    border: none;
    width: 20%;
    background: transparent; }
    .sf-menu > li > a {
      color: #0351a0;
      text-transform: uppercase;
      font-size: 15px;
      font-weight: 400;
      line-height: 53px; }
      @media (max-width: 1023px) {
        .sf-menu > li > a {
          font-size: 14px; } }
      @media (max-width: 767px) {
        .sf-menu > li > a {
          font-size: 15px; } }
      @media (max-width: 1023px) {
        .sf-menu > li > a.sf-with-ul {
          padding-right: 4px; }
          .sf-menu > li > a.sf-with-ul:after {
            right: 2px; } }
      .sf-menu > li > a:hover {
        background-color: #0351a0;
        color: #fff;
        font-size: 15px;
        font-weight: 700; }
    .sf-menu > li.sfHover > a {
      color: #fff;
      font-size: 15px;
      font-weight: 700; }
    .sf-menu > li.active > a {
      background-color: #0351a0;
      color: #fff;
      font-weight: 700; }
    .sf-menu > li > ul {
      width: 100%;
      text-align: left; }
      .sf-menu > li > ul > li > a {
        text-transform: uppercase;
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #fff;
        line-height: 41px;
        padding: 0 33px; }
        .sf-menu > li > ul > li > a:hover, .sf-menu > li > ul > li > a:focus {
          color: #fff;
          background-color: #0351a0; }
      .sf-menu > li > ul > li.active {
        background: #0351a0; }
      .sf-menu > li > ul ul > li > a {
        font-style: italic;
        font-weight: 400 !important;
        line-height: 41px;
        padding: 0 45px;
        color: #fff; }
      .sf-menu > li > ul ul > li.active {
        background: #0351a0; }
  @media (min-width: 992px) {
    .sf-menu > li:first-child > a:first-child {
      padding-right: 2.5em; } }

.hero {
  margin-top: -59px; }
  @media (max-width: 1024px) {
    .hero {
      margin-top: -66px; } }
  @media (max-width: 767px) {
    .hero {
      margin-top: 0; } }
  .hero .hero-item {
    min-height: 600px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: none; }
    .hero .hero-item:first-child {
      display: block; }
  .hero.slick-initialized .hero-item {
    display: block; }
  .hero .hero-text {
    text-align: center;
    color: #fff;
    position: absolute;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
    .hero .hero-text .info {
      background: #0351a0;
      /* The Fallback */
      background: rgba(3, 81, 160, 0.6); }
      .hero .hero-text .info h1 {
        text-transform: uppercase;
        line-height: 88px;
        margin: 0; }
      .hero .hero-text .info p {
        margin: 0;
        font-size: 28px;
        font-weight: 300;
        font-style: italic;
        line-height: 60px;
        background: #0351a0;
        /* The Fallback */
        background: rgba(3, 81, 160, 0.7); }
    .hero .hero-text .btn {
      margin-top: 8px;
      margin-bottom: 42px;
      font-size: 18px;
      line-height: 45px;
      border-radius: 25px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%); }
  .hero .slick-slide {
    position: relative; }
  .hero .slick-prev,
  .hero .slick-next {
    width: 41px;
    height: 41px;
    margin-top: -20.5px; }
    .hero .slick-prev:before,
    .hero .slick-next:before {
      content: '';
      background: url(/ClientResources/public/assets/images/icon-next.png) no-repeat center center;
      display: block;
      width: 41px;
      height: 41px; }
  .hero .slick-prev {
    left: 25px; }
    .hero .slick-prev:before {
      transform: rotate(180deg); }
  .hero .slick-next {
    right: 25px; }
  .hero .slick-dots {
    bottom: 28px; }
    @media (min-width: 768px) {
      .hero .slick-dots {
        bottom: 45px; } }
    .hero .slick-dots li {
      width: auto;
      height: auto;
      margin: 0 6px; }
      .hero .slick-dots li button {
        width: 16px;
        height: 16px;
        border: 2px solid #fff;
        border-radius: 50%; }
        .hero .slick-dots li button:before {
          content: ''; }
      .hero .slick-dots li.slick-active button {
        background-color: #fff; }
  @media (max-width: 767px) {
    .hero .hero-item {
      min-height: 400px; }
    .hero .hero-text {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      bottom: initial; }
      .hero .hero-text .info h1 {
        line-height: 60px; }
      .hero .hero-text .info p {
        font-size: 14px;
        line-height: 36px; }
      .hero .hero-text .btn {
        font-size: 14px;
        line-height: 30px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%); }
    .hero .slick-dots li button {
      width: 12px;
      height: 12px; } }

#mobilenav {
  background-color: #0351a0;
  height: 100%;
  margin: 0 auto;
  z-index: 1000201; }
  #mobilenav .mm-btn {
    width: 30px;
    margin: 0 auto; }
  #mobilenav a {
    color: #fff;
    text-transform: uppercase; }
  #mobilenav .mm-next:after {
    border-color: rgba(255, 255, 255, 0.8); }
  #mobilenav .mm-prev:before {
    border-color: rgba(255, 255, 255, 0.8); }
  #mobilenav .mm-close:before,
  #mobilenav .mm-close:after {
    border-radius: 5px;
    height: 5px;
    margin-top: -4px;
    ontent: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff; }
  #mobilenav .mm-close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    content: ''; }
  #mobilenav .mm-close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.mm-page {
  position: initial; }

.subnav {
  background-color: #cacaca;
  border: none;
  border-radius: 0 !important; }
  .subnav .navbar-nav {
    width: 100%;
    text-align: center;
    display: flex; }
    .subnav .navbar-nav > li {
      width: 20%;
      border-left: 1px solid #fff; }
      .subnav .navbar-nav > li:last-child {
        border-right: 1px solid #fff; }
      .subnav .navbar-nav > li > a {
        display: inline-block;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
        background-color: #cacaca;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: none; }
        .subnav .navbar-nav > li > a:hover {
          color: #fff;
          background-color: transparent; }
      .subnav .navbar-nav > li.active {
        background-color: #b72126; }
        .subnav .navbar-nav > li.active a {
          color: #fff;
          background-color: transparent; }
      .subnav .navbar-nav > li:hover, .subnav .navbar-nav > li.open {
        background-color: #b72126; }
    .subnav .navbar-nav.school-tour > li {
      width: 25%; }
  .subnav .navbar-collapse {
    margin-left: -15px;
    margin-right: -15px; }
  .subnav .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    border: none;
    width: 100%;
    text-align: center;
    min-width: 100px;
    max-height: calc(100vh - 100px);
    overflow-y: auto; }
    .subnav .dropdown-menu > li > a {
      background-color: #cacaca;
      text-transform: uppercase;
      line-height: 52px; }
      .subnav .dropdown-menu > li > a:hover {
        color: #fff;
        background-color: #b72126; }
  .subnav .dropup.open > a {
    color: #fff;
    background-color: #b72126; }
  .subnav .dropup .dropdown-menu {
    margin-bottom: 0;
    border-bottom: 1px solid #fff; }
  .subnav .caret {
    position: absolute;
    right: 7px;
    top: 46%; }
  .subnav#tab-info .navbar-header {
    background-color: #b72126;
    color: #fff;
    position: relative; }
    .subnav#tab-info .navbar-header > span {
      line-height: 50px;
      text-align: center;
      text-transform: uppercase; }
    .subnav#tab-info .navbar-header .navbar-toggle {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 20px;
      padding: 4px 5px; }
  @media (max-width: 767px) {
    .subnav .navbar-toggle .icon-bar {
      background-color: #fff; }
    .subnav .navbar-nav {
      margin: 0;
      display: initial; }
      .subnav .navbar-nav > li {
        width: 100%;
        border: none !important; } }

.menu-social {
  position: absolute;
  left: 0;
  top: 100px; }
  .menu-social li a {
    display: block;
    width: 64px;
    height: 64px;
    background-image: url(/ClientResources/public/assets/images/icon-socials.png);
    background-repeat: no-repeat; }
  .menu-social li.twitter a {
    background-position: 0 -64px; }
  .menu-social li.google a {
    background-position: 0 -128px; }
  .menu-social li.youtube a {
    background-position: 0 -192px; }
  .menu-social li.instagram a {
    background-position: 0 -256px; }

#wrapper {
  padding-top: 175px; }
  @media (max-width: 1023px) {
    #wrapper {
      padding-top: 149px; } }
  @media (max-width: 767px) {
    #wrapper {
      padding-top: 130px; } }

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10; }
  header.headerfixed {
    -webkit-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.75); }
    header.headerfixed .header-top {
      margin-top: -117px; }
      @media (max-width: 1023px) {
        header.headerfixed .header-top {
          margin-top: -126px; } }
      @media (max-width: 767px) {
        header.headerfixed .header-top {
          margin-top: 0;
          padding-bottom: 7px; } }
      @media (max-width: 767px) {
        header.headerfixed .header-top .phone {
          display: none; } }
    @media (max-width: 767px) {
      header.headerfixed .header-bottom {
        display: none; } }

@media (min-width: 1200px) {
  header .container {
    padding: 0; }
  header .header-top .menu-top > .list-inline {
    margin-bottom: 0;
    margin-top: 10px; }
  header .header-top .phone {
    letter-spacing: 2px;
    margin-top: 8px; }
  header .sf-menu > li > a {
    letter-spacing: 1px; }
  .subnav .container {
    padding: 0; }
  .hero .hero-text .info h1 {
    letter-spacing: 7px; }
  .hero .hero-text .info p {
    letter-spacing: 1.5px; }
  .hero .hero-text .btn {
    letter-spacing: 2px;
    padding-right: 30px;
    padding-left: 30px; } }

.hero-searchbox {
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .hero-searchbox {
      margin-top: -68px;
      margin-bottom: 30px; } }
  .hero-searchbox .box-wrapper {
    padding: 17px 0;
    border-radius: 50px;
    background-color: #0351a0;
    color: #fff; }
    @media (max-width: 767px) {
      .hero-searchbox .box-wrapper {
        border-radius: 20px; } }
    @media (max-width: 767px) {
      .hero-searchbox .box-wrapper .col-xs-12 {
        padding-left: 0;
        padding-right: 0; } }
    .hero-searchbox .box-wrapper .form-control {
      height: 44px;
      line-height: 38px;
      border-radius: 3px;
      font-size: 16px;
      padding-top: 3px;
      padding-bottom: 3px; }
      @media (max-width: 1023px) {
        .hero-searchbox .box-wrapper .form-control {
          margin-bottom: 10px; } }
    .hero-searchbox .box-wrapper .bootstrap-select {
      padding-top: 0;
      padding-bottom: 0; }
      .hero-searchbox .box-wrapper .bootstrap-select .btn.btn-select {
        height: 44px;
        line-height: 38px;
        border-radius: 3px;
        font-size: 16px;
        padding-top: 2px;
        padding-bottom: 3px;
        border: none;
        color: inherit; }
        @media (max-width: 1023px) {
          .hero-searchbox .box-wrapper .bootstrap-select .btn.btn-select {
            margin-bottom: 10px; } }
        .hero-searchbox .box-wrapper .bootstrap-select .btn.btn-select .caret {
          background: none;
          display: inline-block;
          width: 0;
          height: 0;
          margin-left: 2px;
          vertical-align: middle;
          border-top: 8px dashed;
          border-right: 5px solid transparent;
          border-left: 5px solid transparent;
          margin-top: -3px !important; }
    .hero-searchbox .box-wrapper .title-col {
      padding-top: 8px; }
      @media (max-width: 1023px) {
        .hero-searchbox .box-wrapper .title-col {
          padding-top: 0px;
          margin-bottom: 10px; } }
      @media (max-width: 1200px) {
        .hero-searchbox .box-wrapper .title-col {
          padding-top: 0; } }
    @media (min-width: 768px) {
      .hero-searchbox .box-wrapper .btn-col {
        padding-top: 3px; } }
    .hero-searchbox .box-wrapper .btn-col .btn {
      display: block;
      width: 100%;
      background-color: #39b54a;
      color: #fff; }

footer {
  background-color: #0351a0;
  color: #fff;
  padding: 15px 0 0 0;
  margin-top: 20px; }
  @media (min-width: 768px) {
    footer .multi-columns {
      font-size: 90%; } }
  footer .multi-columns a {
    color: #fff; }
    footer .multi-columns a:hover {
      text-decoration: underline; }
  footer .multi-columns h1, footer .multi-columns h2, footer .multi-columns h3 {
    margin-top: 20px;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      footer .multi-columns h1, footer .multi-columns h2, footer .multi-columns h3 {
        margin-bottom: 10px; } }
  footer .multi-columns ul.list-unstyled {
    margin: 0;
    padding: 0; }
    footer .multi-columns ul.list-unstyled li {
      margin-bottom: 0px; }
  footer .multi-columns p {
    margin-bottom: 0px; }
  footer .social {
    padding-top: 10px;
    margin-bottom: 30px; }
    footer .social ul {
      margin: 0;
      padding: 0; }
      footer .social ul li {
        display: inline-block;
        margin: 0 5px; }
        footer .social ul li a {
          display: block;
          padding: 5px;
          width: 37px;
          height: 36px;
          border: solid 1px #fff;
          border-radius: 50%;
          color: #fff;
          font-size: 18px; }
          footer .social ul li a .fa {
            position: relative;
            left: -2px; }
  footer ul.footer-bar {
    margin-bottom: 0;
    text-align: center;
    background-color: #fff;
    color: #0351a0; }
    footer ul.footer-bar li {
      padding: 0 25px !important; }
      footer ul.footer-bar li a {
        font-size: 14px;
        color: #0351a0;
        line-height: 70px; }
        footer ul.footer-bar li a:hover {
          text-decoration: underline; }
      footer ul.footer-bar li.client-logos {
        margin-left: -10px;
        margin-right: -10px; }
        @media (max-width: 767px) {
          footer ul.footer-bar li.client-logos {
            padding: 10px 0 15px !important; } }
        footer ul.footer-bar li.client-logos .img-holder {
          display: inline-block;
          padding-left: 10px;
          padding-right: 10px; }
        footer ul.footer-bar li.client-logos img {
          height: 52px; }
      footer ul.footer-bar li.copyright {
        font-size: 14px; }
      footer ul.footer-bar li.fb-link {
        padding: 0 !important; }
        footer ul.footer-bar li.fb-link a {
          display: block;
          width: 60px;
          height: 70px;
          position: relative; }
          footer ul.footer-bar li.fb-link a i {
            font-size: 24px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
      @media (max-width: 767px) {
        footer ul.footer-bar li {
          padding: 0 15px !important; }
          footer ul.footer-bar li.copyright {
            display: block; } }

#featured-tour {
  margin-top: 70px; }
  #featured-tour .tour {
    margin-bottom: 30px; }
  @media (max-width: 767px) {
    #featured-tour {
      margin-top: 30px; } }

.summary {
  margin-bottom: 30px; }
  .summary .title {
    margin-bottom: 20px; }
    .summary .title h2 {
      margin: 0 0 10px;
      font-size: 22px;
      text-transform: uppercase; }
  @media (min-width: 768px) {
    .summary {
      margin-bottom: 68px;
      margin-top: 60px; }
      .summary .title {
        margin-bottom: 50px; }
        .summary .title h2 {
          float: left;
          font-size: 30px;
          letter-spacing: 3px; }
        .summary .title .btn {
          float: right; }
      .summary p {
        font-size: 18px; } }

.form-filter {
  margin-bottom: 40px;
  margin-top: -12px;
  padding: 0 15px; }
  @media (max-width: 767px) {
    .form-filter {
      padding: 0; } }
  .form-filter label {
    font-weight: 400;
    font-size: 18px;
    color: #353535;
    line-height: 51px;
    margin-right: 26px;
    margin-bottom: 0; }
  .form-filter .form-control {
    width: 155px;
    padding: 0 25px; }
  .form-filter .form-group {
    position: relative;
    line-height: 51px; }
  .form-filter .form-group + .form-group {
    margin-left: 17px; }
  .form-filter .btn {
    margin-right: 15px; }
  @media (min-width: 1200px) {
    .form-filter .form-control {
      width: 315px; } }
  @media (max-width: 767px) {
    .form-filter label {
      margin: 0 auto;
      text-align: center; }
    .form-filter .form-control {
      width: 100%; }
    .form-filter .form-group + .form-group {
      margin-left: 0; }
    .form-filter .btn {
      margin: 0 auto;
      text-align: center; } }

.tour-list {
  *zoom: 1; }

.tour-list:before, .tour-list:after {
  content: "";
  display: table; }

.tour-list:after {
  clear: both; }

.tour-list .tour {
  float: left; }

.tour-list .tariff {
  margin-left: 503px; }
  .tour-list .tariff .tourdate-des {
    margin-bottom: 15px; }

@media (max-width: 1023px) {
  .tour-list .tour {
    float: none; }
    .tour-list .tour.regular .img-container {
      width: auto; }
  .tour-list .tariff {
    margin: 0; } }

.tour-list.package-tour .tour.regular .time {
  padding: 10px 15px;
  font-size: 14px; }
  @media (max-width: 480px) {
    .tour-list.package-tour .tour.regular .time {
      text-align: center; } }
  .tour-list.package-tour .tour.regular .time > span {
    margin-right: 10px; }
    @media (max-width: 480px) {
      .tour-list.package-tour .tour.regular .time > span {
        display: block;
        margin-bottom: 5px; } }
  .tour-list.package-tour .tour.regular .time .btn {
    padding: 0 11px;
    background: transparent;
    color: #fff;
    border-color: #fff; }
    .tour-list.package-tour .tour.regular .time .btn:hover {
      background: #fff;
      color: #0351a0; }

.tour-list.package-tour td, .tour-list.package-tour th {
  padding-left: 7px !important;
  padding-right: 7px !important; }
  .tour-list.package-tour td:first-child, .tour-list.package-tour th:first-child {
    padding-left: 15px !important;
    text-transform: uppercase;
    width: auto; }
    @media (max-width: 767px) {
      .tour-list.package-tour td:first-child, .tour-list.package-tour th:first-child {
        padding-left: 30px !important; } }
  .tour-list.package-tour td.book, .tour-list.package-tour th.book {
    min-width: 125px; }
    @media (max-width: 767px) {
      .tour-list.package-tour td.book, .tour-list.package-tour th.book {
        min-width: 0; } }
    .tour-list.package-tour td.book .btn, .tour-list.package-tour th.book .btn {
      margin-right: 0; }

.tour-list.package-tour tr.fire td.book {
  background-position: right 107px center; }

.tour-list.package-tour .download {
  padding-top: 12px !important;
  padding-bottom: 12px !important; }
  .tour-list.package-tour .download > a {
    display: block;
    height: 30px;
    line-height: 30px;
    background: url("/ClientResources/public/assets/images/ico-download.svg") left top 2px no-repeat;
    background-size: 30px 33px;
    padding-left: 40px; }

#map {
  height: auto; }

.map-title {
  margin-bottom: 20px;
  font-weight: 300;
  font-style: italic; }
  .map-title h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 3px;
    margin-top: 25px;
    margin-bottom: 3px; }
  .map-title p {
    margin-bottom: 0;
    font-size: 18px; }
  @media (max-width: 767px) {
    .map-title h2 {
      font-size: 20px; }
    .map-title p {
      font-size: 14px; } }

#tab-regular .tab-pane.text-block {
  font-size: 16px; }
  @media (max-width: 767px) {
    #tab-regular .tab-pane.text-block {
      font-size: 14px; } }

@media (min-width: 1200px) {
  #featured-tour {
    margin-top: 70px; }
    #featured-tour .row:last-child .tour {
      margin-bottom: 30px; }
  #tab-regular {
    margin-top: 20px;
    margin-bottom: 20px; } }

.page-title, .page-excerpt {
  margin-bottom: 50px; }

.page-title {
  position: relative; }
  @media (min-width: 1200px) {
    .page-title .socials {
      position: absolute;
      right: 26%;
      top: 0; } }
  @media (max-width: 767px) {
    .page-title {
      margin-bottom: 20px;
      font-size: 20px; } }

form .help-block {
  margin-bottom: 0;
  font-size: 14px; }

.form-tailor {
  margin-bottom: 85px; }
  .form-tailor input[type='checkbox'] {
    display: inline;
    margin: 0;
    visibility: hidden;
    margin-left: -13px; }
  .form-tailor textarea {
    line-height: 1.5; }
  .form-tailor .btn-remove {
    margin-top: 16px;
    display: inline-block;
    color: #979797;
    font-size: 14px; }
  .form-tailor .btn-add {
    font-size: 14px; }
  .form-tailor .form-filter {
    margin-bottom: inherit;
    margin-top: inherit;
    padding: inherit; }
    .form-tailor .form-filter .form-group {
      line-height: inherit; }
    .form-tailor .form-filter .form-control {
      width: 100%; }

.form-booking {
  margin-bottom: 85px;
  opacity: 0; }
  .form-booking.initialized {
    opacity: 1; }
  .form-booking button[type=submit] {
    margin-top: 60px; }
  .form-booking .form-control, .form-booking .btn {
    font-size: 16px; }
  .form-booking .g-recaptcha {
    margin-bottom: 35px;
    margin-top: 70px; }
  .form-booking .link, .form-booking .link-edit {
    color: #0351a0; }
    .form-booking .link:hover, .form-booking .link-edit:hover {
      text-decoration: underline; }
  .form-booking .link-edit {
    margin-left: 10px; }
  @media (min-width: 1200px) {
    .form-booking .tour-detail li + li {
      padding-left: 20px; } }

.form-review {
  margin-bottom: 85px; }
  .form-review .form-group > label {
    font-size: 20px;
    margin-bottom: 30px; }
  .form-review input[type="checkbox"] + label {
    color: #353535;
    text-transform: none; }
  @media (min-width: 1200px) {
    .form-review .list-inline li + li {
      margin-left: 20px; }
    .form-review .link-edit {
      font-size: 14px;
      margin-left: 50px; } }

.traveller {
  margin-bottom: 40px; }
  .traveller > li + li {
    margin-top: 15px; }
  .traveller .btn-attach {
    display: block;
    padding-right: 5px;
    padding-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px; }
    .traveller .btn-attach.has-error {
      border-color: red; }
  .traveller .form-group {
    margin-bottom: 15px; }
  .traveller .btn-removetraveller, .traveller .attach-help-text {
    font-size: 15px; }

.fileUpload {
  position: relative;
  overflow: hidden; }
  .fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0); }

.text-upper {
  text-transform: uppercase; }

/*standard-content-page */
.page-section {
  margin-bottom: 50px; }
  @media (max-width: 767px) {
    .page-section {
      margin-bottom: 30px; } }
  .page-section .section-title {
    margin-top: 0;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .page-section .section-title {
        margin-bottom: 15px; } }

.content-section {
  margin-bottom: 50px; }
  @media (max-width: 767px) {
    .content-section {
      margin-bottom: 30px; } }
  .content-section p {
    margin-bottom: 15px; }
  .content-section h2, .content-section h3, .content-section h4, .content-section h5, .content-section h6 {
    margin-top: 0;
    font-weight: bold; }
  .content-section a {
    color: #0351a0; }
    .content-section a:hover {
      text-decoration: underline; }
  .content-section .page-title {
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: normal; }
  @media (max-width: 767px) {
    .content-section {
      margin-bottom: 30px; } }
  .content-section.embed-video .video {
    display: block;
    position: relative;
    width: 100%; }
    .content-section.embed-video .video .mask {
      text-align: center;
      font-size: 100px;
      color: #fff; }
      @media (max-width: 767px) {
        .content-section.embed-video .video .mask {
          font-size: 70px; } }
      .content-section.embed-video .video .mask:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2; }
  .content-section.embed-video .caption {
    margin-top: 10px; }
  @media (max-width: 767px) {
    .content-section.text-image .left {
      margin-bottom: 10px; } }
  @media only screen and (min-width: 768px) {
    .content-section.text-image.rtl .left, .content-section.text-image.rtl .right {
      float: right; } }

.content-links-block a {
  color: #0351a0; }
  .content-links-block a:hover {
    text-decoration: underline; }

/* end */
/* brochure page */
.brochure-request-form .form-title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: normal; }

.brochure-request-form .select-brochures .form-group {
  margin-bottom: 10px; }
  .brochure-request-form .select-brochures .form-group .control-label {
    padding-left: 30px;
    padding-top: 15px; }
    @media (max-width: 767px) {
      .brochure-request-form .select-brochures .form-group .control-label {
        padding-left: 15px; } }

.brochure-request-form button[type='submit'] {
  padding-left: 40px;
  padding-right: 40px; }

/* end */
.school-enquire-form {
  margin-top: 30px; }

.newsletter-form .newsletter-title {
  margin: 0;
  font-size: 26px; }
  @media (max-width: 767px) {
    .newsletter-form .newsletter-title {
      font-size: 20px; } }

.newsletter-form .form-block-success {
  display: none; }
  .newsletter-form .form-block-success .success-message {
    padding: 30px 15px;
    text-align: center; }

.newsletter-form.footer .newsletter-title {
  margin-bottom: 20px;
  text-align: center; }

.newsletter-form.footer .form-block .form-group {
  margin-bottom: 15px; }
  .newsletter-form.footer .form-block .form-group .form-control {
    height: 42px;
    line-height: initial;
    padding-top: 0;
    padding-bottom: 0; }

/* video page*/
section.videos-listing {
  padding-top: 20px; }
  section.videos-listing .page-title {
    margin-bottom: 17px; }
  section.videos-listing .section-summary {
    margin-bottom: 27px; }
  section.videos-listing .video-thumb {
    position: relative; }
    section.videos-listing .video-thumb:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-color: rgba(3, 81, 160, 0.8);
      opacity: 0;
      transition: all 0.2s ease; }
    section.videos-listing .video-thumb > img {
      width: 100%; }
    section.videos-listing .video-thumb .fa {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      color: #fff;
      opacity: 0;
      transition: all 0.2s ease;
      font-size: 50px; }
      @media (max-width: 1023px) {
        section.videos-listing .video-thumb .fa {
          opacity: 1; } }
      section.videos-listing .video-thumb .fa:hover {
        color: #cccccc; }
  section.videos-listing .video-player {
    margin-bottom: 24px; }
    section.videos-listing .video-player .thumb {
      background: url("") center center no-repeat;
      background-size: cover; }
      section.videos-listing .video-player .thumb .fa {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2; }
        @media (max-width: 767px) {
          section.videos-listing .video-player .thumb .fa {
            width: 80px; } }
  section.videos-listing .video-name,
  section.videos-listing .other-video-title {
    font-size: 20px; }
    @media (min-width: 1025px) {
      section.videos-listing .video-name,
      section.videos-listing .other-video-title {
        font-size: 30px; } }
  section.videos-listing .video-description {
    margin-bottom: 80px; }
  section.videos-listing .video-name {
    margin-bottom: 0;
    color: #0351a0;
    font-weight: normal; }
  section.videos-listing .other-video-title {
    margin-bottom: 25px;
    font-weight: normal;
    letter-spacing: 3px; }
    @media (min-width: 1025px) {
      section.videos-listing .other-video-title {
        margin-bottom: 35px; } }
  section.videos-listing .other-videos {
    margin-bottom: 100px; }
    section.videos-listing .other-videos .item {
      margin-bottom: 25px;
      text-align: center;
      color: #0351a0; }
      @media (min-width: 1025px) {
        section.videos-listing .other-videos .item {
          margin-bottom: 45px; } }
      section.videos-listing .other-videos .item .video-thumb {
        margin-bottom: 15px; }
        section.videos-listing .other-videos .item .video-thumb:hover:before,
        section.videos-listing .other-videos .item .video-thumb:hover .fa {
          opacity: 1; }
      section.videos-listing .other-videos .item .name {
        overflow: hidden;
        text-overflow: ellipsis;
        height: 51px; }
        @media (max-width: 767px) {
          section.videos-listing .other-videos .item .name {
            overflow: auto;
            height: auto; } }

/* end video page */
.ui-widget {
  font-size: inherit; }

section.faqtabbed-section .tabs {
  border-radius: 0;
  border: 0;
  padding: 0; }
  section.faqtabbed-section .tabs > ul {
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: left; }
    section.faqtabbed-section .tabs > ul > li {
      display: inline-block;
      list-style-type: none;
      border: solid 1px #a2a2a2;
      margin-right: 10px;
      margin-bottom: 10px; }
      section.faqtabbed-section .tabs > ul > li a {
        display: block;
        padding: 10px 20px; }
    section.faqtabbed-section .tabs > ul.ui-tabs-nav {
      border-radius: 0;
      border: 0;
      background: transparent; }
      section.faqtabbed-section .tabs > ul.ui-tabs-nav li {
        margin: 0 10px 10px 0;
        border-radius: 0; }
        section.faqtabbed-section .tabs > ul.ui-tabs-nav li.ui-tabs-active {
          padding-bottom: 0; }
      section.faqtabbed-section .tabs > ul.ui-tabs-nav .ui-tabs-anchor {
        padding: 10px 20px; }
    section.faqtabbed-section .tabs > ul .ui-state-active, section.faqtabbed-section .tabs > ul .ui-widget-content .ui-state-active, section.faqtabbed-section .tabs > ul .ui-widget-header .ui-state-active {
      background: #0351a0;
      border-color: #0351a0; }
  section.faqtabbed-section .tabs .ui-tabs-panel {
    padding: 0; }

.tour-date-des {
  margin-bottom: 40px; }

section.link-tiles {
  margin-bottom: 0; }

section.list-link-tiles .list-item {
  margin-bottom: 45px; }
  @media (min-width: 768px) {
    section.list-link-tiles .list-item {
      margin-bottom: 55px; } }

section.list-link-tiles .image-col {
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    section.list-link-tiles .image-col {
      margin-bottom: 0; } }
  section.list-link-tiles .image-col .img-container img {
    width: 100%; }

section.list-link-tiles .tile-name {
  margin-top: 0; }

@media (min-width: 768px) {
  section.list-link-tiles .standard-content {
    margin-bottom: 15px; } }

.section-searchresult {
  padding-top: 20px; }
  @media (min-width: 768px) {
    .section-searchresult {
      padding-top: 50px; } }
  .section-searchresult .search-result-noti {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #b72126;
    color: #fff;
    letter-spacing: 1px;
    line-height: normal; }
    .section-searchresult .search-result-noti h4 {
      margin-bottom: 6px; }
  .section-searchresult .search-options {
    margin-bottom: 15px; }
    .section-searchresult .search-options .panel .panel-heading {
      letter-spacing: 1px; }
    @media (min-width: 768px) {
      .section-searchresult .search-options .panel .panel-body {
        padding-left: 30px; } }
    .section-searchresult .search-options .panel .panel-body .checkbox input[type=checkbox] + label {
      text-transform: none;
      color: #353535; }
    .section-searchresult .search-options .panel .panel-body .form-filter {
      padding: 15px 0 0;
      margin: 0; }
      .section-searchresult .search-options .panel .panel-body .form-filter .form-group + .form-group {
        margin-left: 0; }
      .section-searchresult .search-options .panel .panel-body .form-filter .form-group {
        margin-bottom: 15px;
        line-height: normal; }
        .section-searchresult .search-options .panel .panel-body .form-filter .form-group .form-control {
          width: 100%;
          height: 48px;
          line-height: 46px;
          padding: 0 15px; }
    @media (min-width: 768px) {
      .section-searchresult .search-options .panel.tour-date .panel-body {
        padding-left: 15px; } }
  .section-searchresult .search-result-title {
    margin-bottom: 26px;
    letter-spacing: 1px; }
    .section-searchresult .search-result-title h1 {
      margin-top: 15px;
      margin-bottom: 10px;
      font-weight: normal;
      font-size: 30px; }
      @media (max-width: 480px) {
        .section-searchresult .search-result-title h1 {
          font-size: 26px; } }
  .section-searchresult .search-results .tour {
    padding-bottom: 27px;
    margin-bottom: 27px;
    border-bottom: solid 1px #cacaca;
    text-align: left; }
    .section-searchresult .search-results .tour h3 {
      margin-top: 0;
      margin-bottom: 8px;
      padding: 14px 15px;
      font-size: 23px;
      background-color: #0351a0;
      color: #fff;
      font-weight: normal; }
      .section-searchresult .search-results .tour h3 a {
        color: #fff; }
        .section-searchresult .search-results .tour h3 a:hover {
          text-decoration: none; }
      @media (max-width: 480px) {
        .section-searchresult .search-results .tour h3 {
          font-size: 21px; } }
    .section-searchresult .search-results .tour .img-container {
      display: block;
      float: left;
      width: 40%;
      height: 220px;
      min-height: 0;
      margin-bottom: 0;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center; }
      @media (min-width: 1025px) {
        .section-searchresult .search-results .tour .img-container {
          height: 220px; } }
      @media (max-width: 480px) {
        .section-searchresult .search-results .tour .img-container {
          float: none;
          width: 100%;
          margin-bottom: 10px; } }
      .section-searchresult .search-results .tour .img-container .img-responsive {
        width: 100%; }
    .section-searchresult .search-results .tour .tour-detail {
      margin-left: 42%; }
      @media (max-width: 480px) {
        .section-searchresult .search-results .tour .tour-detail {
          margin-left: 0; } }
      .section-searchresult .search-results .tour .tour-detail .price-container {
        margin-bottom: 10px;
        overflow: auto; }
        .section-searchresult .search-results .tour .tour-detail .price-container:after {
          content: '';
          display: block;
          clear: both;
          height: 0; }
      .section-searchresult .search-results .tour .tour-detail .subheading, .section-searchresult .search-results .tour .tour-detail .price {
        float: left;
        padding: 13px 5px;
        letter-spacing: 1px;
        font-size: 96%; }
        @media (min-width: 1200px) {
          .section-searchresult .search-results .tour .tour-detail .subheading, .section-searchresult .search-results .tour .tour-detail .price {
            padding: 13px 15px;
            font-size: 100%; } }
        @media screen and (min-width: 768px) and (max-width: 992px) {
          .section-searchresult .search-results .tour .tour-detail .subheading, .section-searchresult .search-results .tour .tour-detail .price {
            float: none;
            width: 100% !important;
            padding: 7px;
            text-align: center !important;
            font-size: 100%; } }
        @media (max-width: 320px) {
          .section-searchresult .search-results .tour .tour-detail .subheading, .section-searchresult .search-results .tour .tour-detail .price {
            float: none;
            width: 100% !important;
            padding: 7px;
            text-align: center !important;
            font-size: 100%; } }
        @media screen and (max-width: 680px) {
          .section-searchresult .search-results .tour .tour-detail .subheading, .section-searchresult .search-results .tour .tour-detail .price {
            float: none;
            width: 100% !important;
            padding: 7px;
            text-align: center !important;
            font-size: 100%; } }
      .section-searchresult .search-results .tour .tour-detail .subheading {
        width: 35%;
        text-align: center;
        background-color: #cacaca;
        white-space: nowrap;
        overflow: hidden; }
        @media (min-width: 1200px) {
          .section-searchresult .search-results .tour .tour-detail .subheading {
            width: 40%; } }
        .section-searchresult .search-results .tour .tour-detail .subheading small {
          font-size: 14px; }
      .section-searchresult .search-results .tour .tour-detail .price {
        width: 65%;
        text-align: right;
        background-color: #00a651;
        color: #fff;
        font-weight: bold;
        white-space: nowrap;
        overflow: hidden; }
        @media (min-width: 1200px) {
          .section-searchresult .search-results .tour .tour-detail .price {
            width: 60%; } }
        .section-searchresult .search-results .tour .tour-detail .price span {
          font-weight: normal;
          font-size: 14px;
          margin-right: 8px; }
      .section-searchresult .search-results .tour .tour-detail .standard-content {
        position: relative;
        padding: 0;
        margin-bottom: 15px; }
        @media (min-width: 1200px) {
          .section-searchresult .search-results .tour .tour-detail .standard-content {
            padding: 0 15px; } }
        .section-searchresult .search-results .tour .tour-detail .standard-content .viewmore {
          position: absolute;
          right: 0;
          bottom: 0;
          z-index: 1;
          background-color: #fff;
          display: none; }
          @media (min-width: 1200px) {
            .section-searchresult .search-results .tour .tour-detail .standard-content .viewmore {
              right: 15px; } }
          .section-searchresult .search-results .tour .tour-detail .standard-content .viewmore a {
            text-decoration: underline; }
        .section-searchresult .search-results .tour .tour-detail .standard-content .dotdotdot {
          max-height: 105px;
          min-height: 105px;
          overflow: hidden; }
          @media (max-width: 767px) {
            .section-searchresult .search-results .tour .tour-detail .standard-content .dotdotdot {
              right: 15px;
              min-height: 0; } }
          .section-searchresult .search-results .tour .tour-detail .standard-content .dotdotdot.truncated {
            max-height: none;
            overflow: auto; }
          .section-searchresult .search-results .tour .tour-detail .standard-content .dotdotdot.ddd-truncated + .viewmore {
            display: inline-block; }
      @media (max-width: 480px) {
        .section-searchresult .search-results .tour .tour-detail .btns {
          text-align: center; } }
      .section-searchresult .search-results .tour .tour-detail .btns .btn {
        padding: 0 14px;
        margin-bottom: 10px; }
        .section-searchresult .search-results .tour .tour-detail .btns .btn:hover {
          text-decoration: none; }
        .section-searchresult .search-results .tour .tour-detail .btns .btn.brochure {
          margin-right: 13px; }
        .section-searchresult .search-results .tour .tour-detail .btns .btn.view-tour {
          margin-right: 12px; }

section.section-blog {
  padding: 30px 0; }
  @media (max-width: 767px) {
    section.section-blog {
      padding: 0 0 15px; } }
  section.section-blog .sidebar-widget {
    margin-bottom: 15px;
    letter-spacing: 1px; }
    section.section-blog .sidebar-widget > h5 {
      margin: 0;
      padding: 17px 15px;
      background-color: #0351a0;
      color: #fff;
      letter-spacing: 3px;
      text-transform: uppercase; }
    section.section-blog .sidebar-widget > ul {
      margin: 0;
      padding: 15px 0 15px 0;
      list-style: none; }
      @media (min-width: 1025px) {
        section.section-blog .sidebar-widget > ul {
          padding-left: 25px; } }
      section.section-blog .sidebar-widget > ul li {
        list-style: none;
        margin-bottom: 7px; }
      section.section-blog .sidebar-widget > ul.widget-post li .post-meta {
        color: #cacaca; }
      section.section-blog .sidebar-widget > ul.widget-tag li {
        display: block;
        float: left;
        margin-right: 15px;
        margin-bottom: 5px;
        text-transform: uppercase; }
        section.section-blog .sidebar-widget > ul.widget-tag li a {
          display: block;
          padding: 7px 17px;
          border-radius: 20px;
          background-color: #b72126;
          color: #fff; }
  section.section-blog .blog-post-hr > hr {
    margin: 50px 0; }
    @media (max-width: 767px) {
      section.section-blog .blog-post-hr > hr {
        margin: 30px 0; } }
  section.section-blog .blog-post-hr > .warning {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px; }
  section.section-blog .blog-post .post-media {
    margin-bottom: 20px; }
  section.section-blog .blog-post .post-tag {
    margin-bottom: 18px; }
    section.section-blog .blog-post .post-tag a {
      display: inline-block;
      padding: 7px 17px;
      margin-right: 15px;
      margin-bottom: 5px;
      border-radius: 20px;
      background-color: #b72126;
      color: #fff;
      text-transform: uppercase; }
  section.section-blog .blog-post .post-header {
    margin-top: 0;
    margin-bottom: 16px;
    text-transform: uppercase; }
    section.section-blog .blog-post .post-header h2 {
      margin: 0;
      font-size: 22px;
      letter-spacing: 1px; }
  section.section-blog .blog-post .post-meta {
    margin-bottom: 29px;
    font-size: 14px; }
    @media (max-width: 767px) {
      section.section-blog .blog-post .post-meta {
        margin-bottom: 15px;
        font-size: 12px; } }
    section.section-blog .blog-post .post-meta a {
      color: #0351a0; }
  section.section-blog .blog-post .post-entry {
    margin-bottom: 27px; }
  section.section-blog .pagination-nav {
    margin-bottom: 30px; }
    section.section-blog .pagination-nav ul {
      padding: 0;
      margin: 0;
      list-style: none; }
      section.section-blog .pagination-nav ul li {
        display: inline-block;
        padding: 5px 10px;
        list-style: none; }
        section.section-blog .pagination-nav ul li.active {
          font-weight: bold; }
          @media (max-width: 767px) {
            section.section-blog .pagination-nav ul li.active {
              font-size: 1.2em; } }
  section.section-blog .blog-post-detail {
    margin-bottom: 30px; }
    section.section-blog .blog-post-detail .blog-post .post-header {
      margin-top: 20px;
      margin-bottom: 25px;
      font-size: 28px; }
      @media (max-width: 767px) {
        section.section-blog .blog-post-detail .blog-post .post-header {
          margin-top: 0; } }
    section.section-blog .blog-post-detail .blog-post .post-entry {
      margin-bottom: 31px; }
      @media (max-width: 767px) {
        section.section-blog .blog-post-detail .blog-post .post-entry {
          margin-bottom: 20px; } }
    section.section-blog .blog-post-detail .blog-post .post-meta {
      margin-bottom: 32px; }
      @media (max-width: 767px) {
        section.section-blog .blog-post-detail .blog-post .post-meta {
          margin-bottom: 20px; } }

.page-section.tour-highlights .conditions {
  margin-bottom: 40px; }
  .page-section.tour-highlights .conditions .icon {
    position: relative; }
    .page-section.tour-highlights .conditions .icon img {
      width: 80px;
      height: 80px; }
      .page-section.tour-highlights .conditions .icon img + span {
        display: block;
        font-weight: bold;
        padding-top: 10px;
        font-size: 0.9em; }
      @media (max-width: 767px) {
        .page-section.tour-highlights .conditions .icon img {
          width: 60px;
          height: 60px; } }
    .page-section.tour-highlights .conditions .icon:before {
      content: " ";
      display: block;
      width: 100%;
      height: 1px;
      background: #cacaca;
      position: absolute;
      left: 0;
      top: 40px;
      z-index: -1; }
      @media (max-width: 767px) {
        .page-section.tour-highlights .conditions .icon:before {
          top: 30px; } }
    .page-section.tour-highlights .conditions .icon:first-child:before {
      width: 50%;
      left: auto;
      right: 0; }
    .page-section.tour-highlights .conditions .icon:last-child:before {
      width: 50%; }

.page-section.tour-highlights .highlights .tour .img-container {
  overflow: hidden; }

.page-section.tour-highlights .highlights .tour .tour-title {
  bottom: 50%;
  transform: translateY(50%);
  background: #0351a0;
  /* The Fallback */
  background: rgba(3, 81, 160, 0.7); }
  .page-section.tour-highlights .highlights .tour .tour-title h3 {
    font-size: 20px; }
    @media (max-width: 767px) {
      .page-section.tour-highlights .highlights .tour .tour-title h3 {
        font-size: 18px; } }
  .page-section.tour-highlights .highlights .tour .tour-title small {
    background: transparent;
    text-transform: none;
    max-height: 200px;
    overflow: hidden;
    text-overflow: ellipsis; }

.page-section.tour-highlights .highlights .tour .tour-title-hover {
  opacity: 0;
  transition: opacity .2s ease-in-out; }

.page-section.tour-highlights .highlights .tour:hover .tour-title {
  opacity: 0; }

.page-section.tour-highlights .highlights .tour:hover .tour-title-hover {
  opacity: 1; }

.page-section.customer-testimonials .content-slider .item {
  text-align: center; }
  .page-section.customer-testimonials .content-slider .item .stars {
    position: relative;
    display: inline-block;
    bottom: -19px;
    padding: 16px 22px 0;
    background: #f7f7f7;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px; }
    .page-section.customer-testimonials .content-slider .item .stars > i {
      float: left;
      margin: 0 1px;
      font-size: 27px;
      color: #ffc90c; }
      @media (max-width: 767px) {
        .page-section.customer-testimonials .content-slider .item .stars > i {
          font-size: 24px; } }
  .page-section.customer-testimonials .content-slider .item .testimonial {
    padding: 33px;
    background: #f7f7f7; }
    @media (max-width: 767px) {
      .page-section.customer-testimonials .content-slider .item .testimonial {
        padding: 30px 20px 20px; } }
    .page-section.customer-testimonials .content-slider .item .testimonial .date {
      text-transform: uppercase;
      margin-bottom: 15px; }
    .page-section.customer-testimonials .content-slider .item .testimonial .content {
      margin-bottom: 15px; }
    .page-section.customer-testimonials .content-slider .item .testimonial .link a {
      color: #0351a0; }

.page-section.customer-testimonials .content-slider .slick-prev, .page-section.customer-testimonials .content-slider .slick-next {
  width: 31px;
  height: 31px;
  top: 57%;
  opacity: 0.6;
  transition: opacity 0.1s;
  background: url("/ClientResources/public/assets/images/ico-arrow-left-round.png") center center no-repeat; }
  .page-section.customer-testimonials .content-slider .slick-prev:before, .page-section.customer-testimonials .content-slider .slick-next:before {
    display: none; }
  .page-section.customer-testimonials .content-slider .slick-prev:hover, .page-section.customer-testimonials .content-slider .slick-next:hover {
    opacity: 1; }

.page-section.customer-testimonials .content-slider .slick-prev {
  left: -62px; }

.page-section.customer-testimonials .content-slider .slick-next {
  background-image: url("/ClientResources/public/assets/images/ico-arrow-right-round.png");
  right: -62px; }

.page-section.customer-testimonials .content-slider .slick-dots {
  bottom: -40px; }
  .page-section.customer-testimonials .content-slider .slick-dots li {
    width: auto;
    height: auto; }
    .page-section.customer-testimonials .content-slider .slick-dots li button {
      width: 30px;
      height: 3px;
      padding: 0;
      background: #cacaca; }
      .page-section.customer-testimonials .content-slider .slick-dots li button:before {
        display: none; }
    .page-section.customer-testimonials .content-slider .slick-dots li.slick-active button {
      background: #b72126; }

.form-group.custom-datepicker-control {
  position: relative;
  /*iOS fix*/ }
  .form-group.custom-datepicker-control:after {
    content: '';
    display: block;
    position: absolute;
    width: 46px;
    height: 50px;
    right: 1px;
    top: 1px;
    z-index: 1;
    background: #fff url("/ClientResources/public/assets/images/ico-calendar.png") center center no-repeat;
    pointer-events: none; }
  .form-group.custom-datepicker-control input[type="date"] {
    display: block;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 52px;
    line-height: 52px;
    min-width: 96%;
    font-family: Lato, sans-serif !important;
    font-size: 16px !important;
    text-align: left !important; }
