/*! normalize.css 2011-11-04T15:38 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block; }

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */
audio:not([controls]) {
  display: none; }

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none; }

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Keeps page centred in all browsers regardless of content height
 * 3. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  /* 1 */
  overflow-y: scroll;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 3 */ }

/*
 * Addresses margins handled incorrectly in IE6/7
 */
body {
  margin: 0; }

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
body,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted; }

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active {
  outline: 0; }

/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 */
h1 {
  font-size: 2em; }

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q {
  quotes: none; }

/* 2 */
q:before,
q:after {
  content: '';
  content: none; }

small {
  font-size: 75%; }

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin-left: 0;
  padding: 0 0 0 40px; }

dd {
  margin: 0 0 0 40px; }

nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

/*
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden; }

/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0; }

/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0; }

/*
 * Define consistent border, margin, and padding
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  /* 1 */
  *margin-left: -7px;
  /* 2 */ }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal;
  /* 1 */ }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */ }

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Removes inner padding that is displayed in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  width: 100%;
  height: 100%; }

.grid {
  float: left;
  margin: 0;
  padding: 0;
  display: block; }

.centred {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px; }



.hidetext {
  text-indent: -9999px;
  overflow: hidden; }

.hide {
  display: none; }

html, body {
  width: 100%;
  height: 100%;
  font-family: "montserrat", sans-serif; }

p, a, h1, h2, h3, h4, h5, h6, li {
  font-family: "montserrat", sans-serif; }

input {
  font-family: "montserrat", sans-serif; }

h1 {
  font-size: 60px;
  color: #174283;
  font-weight: bold;
  margin-bottom: 20px; }

h2 {
  font-size: 48px;
  color: #174283;
  font-weight: bold;
  margin-bottom: 20px; }

h3 {
  font-size: 48px;
  color: #174283;
  font-weight: lighter;
  margin-bottom: 20px; }

h4 {
  color: #999999;
  font-size: 24px;
  font-weight: bold; }

.page {
  width: 100%; }

* {
  box-sizing: border-box; }

.error_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 300px;
  align-items: center; }
  .error_container a {
    background: #174283;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px; }

.error_container--message {
  max-width: 80%; }

.landing_fullpage {
  background-image: url("/images/interface/background.png");
  width: 100%; }
  .landing_fullpage h1 {
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #174283;
    margin-bottom: 0; }
  .landing_fullpage img {
    max-width: 100%; }

.home_page_description {
  width: 100%;
  font-weight: 300; }

.newsletter_signup {
  font-family: "montserrat", sans-serif;
  width: 100%;
  background: #FF6666;
  padding: 20px;
  box-sizing: border-box; }
  .newsletter_signup form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .newsletter_signup p {
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #174283;
  font-family: "montserrat", sans-serif; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #174283;
  font-family: "montserrat", sans-serif; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #174283;
  font-family: "montserrat", sans-serif; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #174283;
  font-family: "montserrat", sans-serif; }

.text_input--signup {
  margin-right: 20px;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 5px;
  border: white;
  padding: 10px;
  box-sizing: border-box;
  font-size: 13px;
  font-family: "montserrat", sans-serif;
  color: #174283; }

.submit_input--signup {
  background: transparent;
  border: 2px solid black;
  font-size: 13px;
  border-radius: 5px;
  padding: 10px;
  font-family: "montserrat", sans-serif; }

.submit_input--signup:hover {
  background: black;
  color: white; }

@media (max-width: 560px) {
  .newsletter_signup {
    width: 100%; }
    .newsletter_signup form {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; }
    .newsletter_signup .text_input--signup {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px; }
    .newsletter_signup .submit_input--signup {
      -webkit-align-self: center;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; } }

.sub_header {
  display: none; }

.main_header {
  width: 100%;
  max-width: 100vw;
  background: #174283;
  /*display:-ms-flexbox;
	display:flex;
	position:relative;
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
	margin-bottom:10px;
	-ms-flex-pack:justify;
	    justify-content:space-between;
	-ms-flex-align: center;
	    align-items: center;
	        border-bottom:2px solid $branding;*/ }

.header_banner {
  width: 100%;
  padding: 8px 35px;
  text-align: right;
  /*display: flex;
    align-items: center;
    justify-content: flex-end;*/ }
  .header_banner a {
    color: white;
    text-decoration: none;
    margin-left: 20px; }
  .header_banner .hamburger_menu {
    display: none; }

.social_icons {
  margin-left: 20px;
  display: none; }
  .social_icons a {
    margin-left: 10px; }

.search_icon--white {
  display: none; }

.header_banner--branding_search {
  width: 100%;
  padding: 0 35px 20px; }

.main_logo {
  width: 27%;
  margin-top: -20px; }
  .main_logo img {
    width: 100%;
    display: block; }

.header_links_container {
  float: right;
  font-weight: 600; }

.language {
  font-weight: 300; }

.language_container {
  display: none;
  background: white;
  width: 160px;
  padding: 10px;
  position: absolute;
  right: 35px;
  top: 60px;
  z-index: 1000;
  -moz-box-shadow: 0px 3px 8px #646464;
  -webkit-box-shadow: 0px 3px 8px #646464;
  box-shadow: 0px 3px 8px #646464; }
  .language_container a {
    color: #174283;
    margin-bottom: 10px; }

.language_links {
  text-align: left; }
  .language_links a {
    margin-left: 0;
    margin-bottom: 10px;
    width: 100%;
    float: left; }
  .language_links a:last-child {
    margin-bottom: 0; }

.triangle_languages {
  width: 70px;
  height: 85px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 0px -17px rgba(0, 0, 0, 0.5);
  top: -85px;
  right: 15px;
  position: absolute; }

.triangle_languages:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  transform: rotate(45deg);
  /* Prefixes... */
  top: 75px;
  left: 25px;
  box-shadow: 0px -1px 6px -2px rgba(0, 0, 0, 0.5); }

.search_container {
  display: flex;
  align-items: center;
  margin-top: 38px; }
  .search_container img {
    max-width: 30px;
    margin-left: 10px; }
  .search_container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    border-radius: 0;
    background: white;
    width: 220px;
    color: #174283;
    border: 1px solid #D3D3D3; }

.search_input--text {
  width: auto !important;
  display: inline-block;
  border-right: 0 !important; }

.navigation_container {
  width: 100%;
  /*border-top:1px solid #b3b3b3;*/
  padding: 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white; }

.main_nav {
  margin-top: 15px;
  /*margin-bottom: 10px;*/ }

.main_nav ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: right; }

.main_nav > li > ul {
  min-width: 10em;
  padding: 4px 0;
  border: 1px solid #CCC; }

.main_nav li {
  padding: 0px;
  z-index: 1000;
  display: inline-block;
  border-bottom: 5px solid transparent;
  padding-bottom: 10px;
  margin-right: 10px; }

.main_nav > ul > li {
  display: inline-block; }

.main_nav ul li a {
  display: block;
  text-decoration: none;
  color: #727272;
  font-size: 16px;
  font-weight: 300; }

.main_nav ul li > a {
  padding: 6px; }

.main_nav a {
  color: #727272;
  font-weight: 700;
  text-decoration: none; }

.main_nav ul ul {
  display: none;
  position: absolute;
  min-width: 160px;
  max-width: 260px;
  text-align: left;
  top: 46px; }

.main_nav li:hover, .main_nav li.here {
  border-bottom: 5px solid #174283;
  padding-bottom: 10px;
  display: inline-block; }
  .main_nav li:hover a, .main_nav li.here a {
    color: #174283; }
  .main_nav li:hover ul a, .main_nav li.here ul a {
    color: #727272; }
  .main_nav li:hover li, .main_nav li.here li {
    border-bottom: 0;
    padding-bottom: 0; }

.main_nav ul li:hover > ul {
  display: block; }

.main_nav ul ul > li {
  position: relative;
  width: 100%; }

.main_nav ul ul > li a {
  padding: 7px;
  height: auto;
  background-color: #f2f2f2;
  font-size: 14px;
  color: #727272;
  font-weight: bold;
  border-bottom: 0; }

.main_nav ul ul > li a:hover {
  color: #174283; }

.main_nav ul ul ul {
  position: absolute;
  left: 100%;
  top: 0; }

.last_nav ul {
  right: 0; }

.last_nav ul ul ul {
  left: -100%; }

.active a {
  color: #174283; }

.main_nav_mobile_container {
  display: none;
  /*position:absolute;
	right:0;
	top:0;*/ }

.main_nav_mobile_button {
  float: right;
  margin-top: 0;
  /*position: absolute;
  	right: 5%;
  	top: -18%;*/ }

.main_nav_mobile_button ul {
  width: 40px;
  padding-left: 0;
  margin-top: 0; }

.main_nav_mobile_button li {
  list-style: none;
  width: 100%;
  margin-top: 6px;
  height: 5px;
  background-color: #174283;
  border-radius: 5px;
  position: relative;
  float: right; }

.search_container {
  float: right; }
  .search_container form {
    display: flex;
    margin-bottom: 14px;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0; }
  .search_container .search_input--text {
    color: #174283; }

.text_input--submit {
  background: #174283;
  border: 0;
  color: white;
  font-size: 12px;
  padding: 8px;
  font-family: "montserrat", sans-serif; }

.secondary_logo {
  flex-grow: 1;
  display: none; }
  .secondary_logo img {
    display: block;
    max-width: 150px;
    width: 100%; }

.search_submit--blue {
  display: none; }

.scrolled {
  position: fixed;
  z-index: 999;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
  background: white;
  animation: fadeIn 0.7s; }
  .scrolled .secondary_logo {
    display: block; }
  .scrolled .hamburger--secondary {
    display: flex; }
    .scrolled .hamburger--secondary .hamburger-inner, .scrolled .hamburger--secondary .hamburger-inner:after, .scrolled .hamburger--secondary .hamburger-inner:before {
      background-color: #174283; }
  .scrolled .search_container {
    margin-top: 0; }
  .scrolled .main_logo {
    display: none; }
  .scrolled .navigation_container {
    display: none; }
  .scrolled .search_icon--white {
    display: block; }
  .scrolled .header_banner--branding_search {
    display: none; }
  .scrolled .main_nav {
    display: flex; }
  .scrolled .navigation_container--flex {
    display: flex; }
  .scrolled .header_banner {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    .scrolled .header_banner a {
      color: #174283; }
  .scrolled .social_icons {
    display: flex; }
    .scrolled .social_icons a {
      color: #174283; }
  .scrolled .search_submit--blue {
    display: block; }
  .scrolled .search_submit--white {
    display: none; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.search_icon--mobile {
  display: none;
  float: right;
  max-width: 30px; }

.hamburger {
  display: none;
  padding-right: 0; }

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  color: #174283;
  background-color: #008ad8;
  width: 32px; }

.mega_nav {
  display: none;
  padding: 20px;
  width: 100%;
  background: #f2f2f2; }
  .mega_nav ul {
    list-style: none;
    width: 100%; }
  .mega_nav li {
    width: 100%; }
  .mega_nav a {
    font-size: 16px;
    color: #727272;
    font-weight: bold;
    text-decoration: none;
    padding: 3px;
    display: block;
    float: left;
    width: 100%; }

.maga_nav--title {
  width: 100%;
  background: #174283;
  color: white;
  font-weight: bold;
  padding: 5px 10px; }

.mega_nav--title__green {
  background: #99cc33; }

.mega_nav--title__grey {
  background: #cccccc; }

.mega_nav--col {
  margin-right: 20px;
  width: 16%; }

.double_width_col {
  width: 32%; }
  .double_width_col ul {
    width: 48%; }
  .double_width_col ul:first-child {
    padding-right: 2%; }
  .double_width_col ul:last-child {
    padding-left: 2%; }

/*\\\\\\\\\\\\\\ EMAIL POPUP //////////////////*/
.email_signup_pop_up_container {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none; }

.popup_content_container {
  background: white;
  width: 50%;
  display: flex;
  flex-direction: column;
  position: relative; }

.popup_content_container--left {
  width: 100%;
  padding: 20px; }
  .popup_content_container--left input[type='text'], .popup_content_container--left input[type='email'] {
    width: 33.333%;
    padding: 10px 5px;
    font-family: "myriad-pro", sans-serif;
    border: 1px solid #D3D3D3;
    max-width: none;
    display: block;
    float: left;
    /*margin-bottom:20px;
    	margin-top:20px;*/ }
  .popup_content_container--left input[type='email'] {
    border-left: 0;
    width: 33.333%; }
  .popup_content_container--left .pop_up_logo {
    width: 100%; }
    .popup_content_container--left .pop_up_logo img {
      width: 100%; }

.popup_content_container--right {
  width: 100%;
  min-height: 450px; }

.sign_up--button__popup {
  width: 33.333%;
  background: #174283;
  color: white;
  padding: 10px 0;
  border: none; }

.sign_up--text__popup {
  width: 50%; }

.email_pop_up_close_button {
  color: white;
  font-size: 21px;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  /*border-radius: 50%;
    border: 2px solid white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight:bold;
    background:$branding;*/ }

.homepage--arrow {
  display: none; }

.homepage--arrow_greater_than_1 {
  display: block; }

/*
.caleran-container{
	left: 900px!important;
}*/
/*
.caleran-box-arrow-top:after, .caleran-box-arrow-top:before {
	left:345px;
}
*/
@media all and (max-width: 920px) {
  .nav_image {
    display: none; }
  .hamburger {
    display: inline-block; }
  .search_container {
    width: 100%;
    margin: 14px 0; }
    .search_container .text_input--search {
      flex-grow: 1; }
  .main_nav_mobile_container {
    display: block; }
  .header_banner--branding_search {
    position: relative; }
  .navigation_container {
    padding: 0; }
  .main_header .main_nav {
    width: 100%;
    display: none;
    margin-top: 0;
    margin-bottom: 15px;
    left: 0;
    top: 58px;
    /*ul ul ul > li a {
				background-color: #e5e5e5;
				color: $branding;
			}*/ }
    .main_header .main_nav ul {
      list-style: none;
      padding-left: 0; }
    .main_header .main_nav li {
      background: #174283;
      width: 100%;
      border-bottom: white solid 2px;
      position: relative;
      text-align: left;
      padding-bottom: 0; }
      .main_header .main_nav li a {
        text-decoration: none;
        font-size: 15px;
        color: white;
        padding: 10px;
        display: block; }
    .main_header .main_nav .has-children > a:after {
      content: '+';
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      font-size: 18px;
      padding: 0.55em 0.5em; }
    .main_header .main_nav .has-children > a.active:after {
      content: "-"; }
    .main_header .main_nav ul ul {
      display: none;
      max-width: 100%;
      position: relative; }
      .main_header .main_nav ul ul li {
        background: #e5e5e5;
        padding: 0;
        border-bottom: none;
        /*a:hover{
		  				color:$branding;
		  			}*/ }
        .main_header .main_nav ul ul li a {
          font-weight: normal;
          padding: 1.5% 3%;
          color: #ffffff; }
    .main_header .main_nav ul li:hover > ul {
      display: none; }
    .main_header .main_nav li:hover {
      background: #f2f2f2; }
      .main_header .main_nav li:hover a {
        color: #174283; }
    .main_header .main_nav ul ul > li a:hover {
      background-color: #174283;
      color: #ffffff; }
    .main_header .main_nav ul ul > li a {
      background-color: #f2f2f2;
      color: #727272; }
    .main_header .main_nav ul ul ul {
      position: relative;
      left: 0; }
      .main_header .main_nav ul ul ul li {
        background: #e5e5e5; }
  .scrolled .main_nav {
    display: flex;
    top: 0; }
  .scrolled .search_container {
    display: flex; }
    .scrolled .search_container form {
      width: 100%; }
  .main_logo {
    width: 50%;
    flex-grow: 1; }
    .main_logo img {
      width: 50%;
      margin-top: 10px;
      margin-bottom: 10px; }
  .filter_search_mobile {
    display: block; }
  .search_side_bar_container {
    width: 100%;
    margin-right: 0; }
  .search_page_container {
    padding: 0 15px; }
  .search_side_bar_results {
    width: 100%;
    margin-bottom: 30px; }
  .search_filter_options {
    flex-wrap: wrap; }
  .appartment_listing--item {
    flex-wrap: wrap; }
  .appartment_item--content {
    width: 100%;
    order: 2; }
  .appartment_item--image {
    width: 100%;
    min-height: 192px; }
  .appartment--features {
    flex-wrap: wrap; }
  .appartment_rating {
    width: 100%;
    text-align: left; }
  .appartment_title {
    width: 100%;
    text-align: left;
    font-size: 21px; }
  .appartment_key_info {
    text-align: left; }
  .appartment_price {
    text-align: left; }
  .search_container {
    display: none; }
  .navigation_container {
    border-top: 0;
    margin-top: 0; }
  .header_banner--branding_search {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0; }
  .social_icons {
    display: none; }
  .search_icon--mobile {
    margin-right: 50px; }
  .header_banner--branding_search .search_icon--mobile {
    display: none; }
  .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    color: #174283;
    background-color: white; } }

@media (max-width: 600px) {
  .header_banner {
    padding: 8px 16px; }
  .header_links_container {
    font-size: 14px; }
  .secondary_logo img {
    display: block;
    width: 100%; }
  .social_icons {
    display: flex;
    margin-left: 0;
    font-size: 14px;
    display: none; }
  .header_banner--branding_search {
    padding: 0 16px; }
  .main_logo {
    width: 50%;
    flex-grow: inherit; }
    .main_logo img {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 10px; }
  .search_container {
    flex-wrap: wrap; }
    .search_container select {
      width: 100%;
      margin-bottom: 10px; }
    .search_container .search_input--text {
      width: 100% !important;
      margin-bottom: 10px; }
  .search_icon--mobile {
    display: block;
    margin-right: 0;
    display: none; }
  .main_imgae_container {
    height: 250px; }
  .scrolled .header_banner .header_links_container {
    display: none; }
  .scrolled .header_banner .social_icons {
    display: none; }
  .scrolled .header_banner .hamburger_menu {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
    /*.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
				color:white;
				background:white;
			}*/ }
  .scrolled .sub_header {
    background-color: #174283;
    width: 100%;
    padding: 10px;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: white; }
    .scrolled .sub_header a {
      color: white;
      text-decoration: none; }
    .scrolled .sub_header .header_links_container {
      display: flex;
      align-items: center;
      margin-left: -10px; }
      .scrolled .sub_header .header_links_container a {
        margin-left: 10px; }
    .scrolled .sub_header .enquire {
      display: flex;
      align-items: center; }
    .scrolled .sub_header .social_icons {
      margin-left: -10px;
      display: flex;
      align-items: center; }
    .scrolled .sub_header .language {
      display: flex;
      flex-direction: column;
      font-size: 0.8em;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: bold; }
    .scrolled .sub_header .language_links {
      color: #174283; }
      .scrolled .sub_header .language_links a {
        color: #174283; }
  .mega_nav {
    width: 100%; }
  .mega_nav--col, .double_width_col {
    width: 100%;
    margin-bottom: 20px; }
  .popup_content_container {
    width: 90%;
    flex-wrap: wrap; }
  .popup_content_container--left {
    width: 100%; }
    .popup_content_container--left input[type='text'], .popup_content_container--left input[type='email'] {
      width: 100%;
      margin-top: 0; }
    .popup_content_container--left input[type='email'] {
      border-left: 1px solid #D3D3D3; }
  .popup_content_container--right {
    width: 100%; } }

@media (min-width: 601px) and (max-width: 820px) {
  .popup_content_container {
    width: 80%; }
  .person_container {
    padding-right: 0; }
  .person_item1_of_2 {
    margin-right: 2%; }
  .person_item2_of_2 {
    margin-left: 2%; } }

@media (min-width: 821px) and (max-width: 960px) {
  .popup_content_container {
    width: 70%; }
  .caleran-container {
    left: 300px !important; } }

/*
@media (min-width:961px) and (max-width:1100px){
	.link--email_address, .link--email_phone, .link--email_email{
		display:none;
	}

	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}


@media	(min-width:1101px) and (max-width:1200px){
	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}


@media	(min-width:1201px) and (max-width:1400px){
	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}

@media	(min-width:1401px) and (max-width:1550px){
	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}

@media	(min-width:1551px) and (max-width:1700px){
	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}

@media	(min-width:1701px) and (max-width:1750px){
	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}

@media	(min-width:1751px) and (max-width:1900px){
	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}

@media	(min-width:1901px) and (max-width:3000px){
	.caleran-container {
	    left: inherit !important;
	    right: 255px;
	}
}*/
.main_footer {
  background: #174283;
  width: 100%;
  color: white;
  padding: 35px;
  padding-bottom: 65px; }

.logo_container--footer {
  width: 20%; }

.footer_banner {
  width: 100%;
  background: #174283;
  padding: 8px 0;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid white;
  display: none; }
  .footer_banner a {
    color: white;
    text-decoration: none; }

.logo_container--footer {
  width: 20%; }
  .logo_container--footer img {
    width: 100%; }

.footer_nav_container {
  width: 100%;
  margin-bottom: 30px; }

.footer_list_container {
  width: 16.666666%; }
  .footer_list_container ul {
    list-style: none;
    padding-left: 0; }
  .footer_list_container a {
    color: white;
    text-decoration: none;
    font-size: 14px; }
  .footer_list_container .footer_nav--title {
    font-weight: bold; }
  .footer_list_container .footer_nav--ul {
    margin-bottom: 0; }
    .footer_list_container .footer_nav--ul a {
      font-weight: bold; }
  .footer_list_container .footer_nav--ul__siteInfo {
    margin-top: 0; }

.footer_nav--ul__site {
  font-weight: bold; }

.go_travel_container {
  width: 100%;
  margin-bottom: 20px; }
  .go_travel_container img {
    width: 30%; }

.go_travel--copy {
  font-size: 10px; }
  .go_travel--copy a {
    color: white;
    text-decoration: none; }

.snow_cab_container {
  width: 100%; }
  .snow_cab_container img {
    width: 20%; }

.footer_legals--left {
  width: 50%;
  font-size: 14px; }

.footer_legals--right {
  width: 50%;
  font-size: 14px; }

.abta_container {
  width: 100%;
  text-align: right; }
  .abta_container img {
    max-width: 100%; }

.newsletter_signup_container {
  width: 100%;
  margin-bottom: 80px;
  text-align: right; }
  .newsletter_signup_container form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }

.sign_up--search {
  padding: 10px 8px;
  border: 0; }

.sign_up--button {
  padding: 6px 10px;
  background: #174283;
  color: white;
  font-size: 16px;
  font-weight: 300;
  border: 0;
  margin-left: 20px;
  border-radius: 0;
  flex-grow: 1; }

.footer_legals {
  width: 100%; }

.sign_up--text::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #174283;
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: bold; }

.sign_up--text::-moz-placeholder {
  /* Firefox 19+ */
  color: #174283;
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: bold; }

.sign_up--text:-ms-input-placeholder {
  /* IE 10+ */
  color: #174283;
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: bold; }

.sign_up--text:-moz-placeholder {
  /* Firefox 18- */
  color: #174283;
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: bold; }

.footer_strip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .footer_strip p {
    font-size: 12px; }
  .footer_strip img {
    max-width: 250px; }
  .footer_strip .footer_story--title {
    font-size: 18px; }

.newsletter_signup_container--footer {
  background: white;
  padding: 20px;
  width: 45%; }
  .newsletter_signup_container--footer form {
    display: flex;
    width: 100%; }
  .newsletter_signup_container--footer p {
    font-size: 12px;
    color: #174283;
    margin-bottom: 0; }

.footer_story {
  max-width: 500px;
  padding: 20px; }

.sign_up--search {
  border: 1px solid #aaaaaa; }

@media (max-width: 400px) {
  .footer_list_container {
    width: 100%; } }

@media (max-width: 600px) {
  .footer_banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .footer_list_container {
    width: 100%; }
  .main_footer {
    padding: 16px; }
  .newsletter_signup_container form {
    flex-wrap: wrap; }
  .sign_up--search {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 15px;
    max-width: none;
    border: 1px solid #aaaaaa !important; }
  .footer_legals--left {
    width: 100%; }
  .footer_legals--right {
    width: 100%; }
  .abta_container {
    text-align: left;
    margin-top: 10px; }
  .footer_strip {
    flex-direction: column; }
    .footer_strip img {
      max-width: 150px; }
  .newsletter_signup_container--footer {
    width: 100%; }
    .newsletter_signup_container--footer form {
      flex-wrap: wrap;
      flex-direction: column; } }

@media (min-width: 401px) and (max-width: 601px) {
  .footer_list_container {
    width: 50%; } }

@media (min-width: 601px) and (max-width: 900px) {
  .newsletter_signup_container {
    padding-left: 30px; }
    .newsletter_signup_container form {
      flex-wrap: wrap; }
  .footer_list_container {
    width: 33%; }
  .sign_up--search {
    width: 100%;
    display: block;
    float: left; }
  .footer_strip {
    flex-wrap: wrap; }
  .newsletter_signup_container--footer {
    width: 100%; } }

@media (min-width: 900px) and (max-width: 1100px) {
  .newsletter_signup_container--footer {
    width: 100%; }
    .newsletter_signup_container--footer form {
      flex-wrap: wrap; }
  .sign_up--search {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #aaaaaa !important; }
  .footer_list_container {
    width: 25%; } }

.main_content {
  width: 100%; }

.main_content--title {
  width: 100%;
  margin-top: 10px; }
  .main_content--title h1 {
    color: #174283;
    margin-top: 0;
    font-weight: 300; }

.main_imgae_container {
  width: 100%;
  margin-bottom: 20px;
  height: 400px;
  /*img{
		width:100%;
	}*/ }

.side_bar {
  width: 28%;
  margin-right: 2%;
  border: 1px solid #c1c1c1;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 50px; }
  .side_bar ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0; }
  .side_bar li {
    position: relative;
    border-bottom: 1px solid #174283; }
  .side_bar a {
    padding-left: 2%;
    padding-right: 2%;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #174283;
    padding: 3%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .side_bar .here {
    background: #174283; }
    .side_bar .here a {
      color: white; }

.bread_crumbs {
  width: 100%; }
  .bread_crumbs ul {
    list-style: none;
    padding-left: 0; }
  .bread_crumbs li {
    display: inline-block;
    color: #909090; }
  .bread_crumbs li:after {
    content: '/';
    padding-left: 10px; }
  .bread_crumbs li:last-child:after {
    content: ''; }
  .bread_crumbs a {
    color: #909090;
    text-decoration: none; }
  .bread_crumbs a:hover {
    color: #727272; }

.two_thirds {
  width: 70%;
  padding: 0px 0 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.main_content--words {
  width: 100%;
  margin-bottom: 20px; }
  .main_content--words .words_container {
    width: 100%; }
    .main_content--words .words_container p {
      font-size: 14px;
      margin-top: 0;
      color: #727272; }
    .main_content--words .words_container h1 {
      margin-top: 0; }
    .main_content--words .words_container a {
      color: #174283; }
    .main_content--words .words_container ul li, .main_content--words .words_container ol li {
      font-size: 14px;
      color: #727272; }

table {
  width: 100%;
  background: #f1f1f1; }
  table tr td:first-child {
    text-align: left;
    padding: 10px 5px;
    font-size: 14px; }
  table tr td {
    text-align: center; }
  table th {
    color: #174283;
    font-size: 14px; }

.table_overflow_container {
  width: 100%;
  min-width: 100%;
  overflow: auto; }

.main_content--video {
  width: 100%;
  margin-bottom: 20px; }

.video_embed {
  width: 58%;
  margin-left: 2%; }

.video_description {
  width: 40%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0.25px solid #c1c1c1; }
  .video_description h2 {
    font-size: 23px;
    margin: 0; }
  .video_description a {
    color: #174283; }

.main_content--downloads {
  width: 100%;
  margin-bottom: 20px; }

.main_content--carousel {
  width: 100%;
  margin-bottom: 20px; }

.owl-controls {
  position: absolute;
  bottom: 15px;
  text-align: center;
  width: 100%; }

.owl-theme .owl-controls .owl-page span {
  background: #174283; }

.download_item {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border: 2px solid #174283;
  padding: 10px;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }
  .download_item p {
    margin: 0; }

.button--download {
  background: #174283;
  padding: 7px 10px;
  color: white;
  text-decoration: none; }

.video_title {
  width: 100%;
  background: #174283;
  color: white;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "montserrat", sans-serif; }

/*.video_description{
	width:100%;
	padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border:2px solid $branding;
    font-family:$bodyFont;
}*/
.search_result_container {
  width: 100%;
  border-bottom: 2px solid #174283; }
  .search_result_container p {
    margin: 0; }

.search_results--header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  background: #174283;
  padding: 10px;
  color: white; }
  .search_results--header a {
    background: white;
    color: #174283;
    text-decoration: none;
    padding: 5px;
    font-size: 14px; }

.search_results--summary {
  width: 100%;
  padding: 10px;
  border-left: 2px solid #174283;
  border-right: 2px solid #174283; }
  .search_results--summary p {
    color: black; }

.person_container {
  width: 100%;
  padding-right: 20%;
  margin: 30px 0; }

.person_item {
  width: 30%;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  margin-bottom: 20px; }

.person_item2_of_3 {
  margin-right: 5%;
  margin-left: 5%; }

.cleardiv--2 {
  display: none;
  width: 100%;
  height: 1px;
  overflow: hidden; }

.cleardiv--3 {
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden; }

.person_item--image_container {
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 20px;
  border-radius: 15px 15px 0 0;
  text-align: center; }
  .person_item--image_container h2 {
    margin: 0;
    padding-bottom: 50px;
    font-size: 34px;
    color: white; }

.person_main_image_container {
  width: 50%;
  float: right; }
  .person_main_image_container img {
    width: 100%;
    display: block; }

.person_content {
  padding: 20px;
  width: 100%; }
  .person_content h3 {
    font-size: 24px;
    color: #666666;
    font-weight: bold;
    margin: 0 0 10px 0; }
  .person_content p {
    font-size: 12px;
    margin: 0; }

.contact_form_container {
  width: 70%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px; }
  .contact_form_container .form_container {
    width: 100%; }

.contact_form--item {
  width: 100%;
  margin-bottom: 20px;
  font-family: "montserrat", sans-serif; }
  .contact_form--item label {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 5px; }
  .contact_form--item textarea {
    width: 100%;
    height: 300px;
    border-color: #D3D3D3; }
  .contact_form--item .contact_input--text {
    width: 100%;
    padding: 10px;
    font-family: "montserrat", sans-serif; }

.contact_half_width {
  width: 49%; }

.contact_right_margin {
  margin-right: 1%; }

.contact_left_margin {
  margin-left: 1%; }

.contact_input--submit {
  background: #174283;
  border: 2px solid #174283;
  color: white;
  padding: 10px; }

.contact_input--submit:hover {
  background: white;
  color: #174283; }

.main_content--audio {
  width: 100%;
  border: 2px solid #174283;
  margin-bottom: 10px; }

.audio_content_container {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.audio_title {
  width: 100%;
  background: #174283;
  color: white;
  padding: 10px; }

.audio_description {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #174283; }
  .audio_description p {
    margin: 0; }

.enquire_form_container {
  border: 1px solid #d3d3d3;
  padding: 20px; }

.contact-quarter {
  width: 48%; }

.contact-quarter__margin-left {
  margin-left: 2%; }

.contact-quarter__margin-right {
  margin-right: 2%; }

.enquire_input--select {
  -webkit-appearance: none;
  padding: 10px;
  background: white;
  border-radius: 0;
  width: 100%;
  border: 1px solid #D3D3D3;
  margin-right: 20px; }

.enquire_form--select_container {
  width: 25%;
  margin-right: 20px; }

input[type='text'], input[type='email'] {
  border: 1px solid #D3D3D3;
  padding: 10px 5px; }

textarea {
  border: 1px solid #D3D3D3; }

.form-label {
  font-weight: 300 !important;
  margin-bottom: 5px; }

/* SECTION CODE START */
.breadcrumbs_container {
  width: 100%;
  padding: 0 30px;
  color: #727272; }
  .breadcrumbs_container a {
    color: #727272;
    text-decoration: none;
    font-size: 14px; }

.section_title {
  width: 100%; }
  .section_title h2 {
    font-weight: 600;
    color: #727272;
    font-size: 24px; }

.section_carousel {
  width: 100%;
  position: relative;
  margin: 30px 0; }

.section_carousel--items {
  width: 100%;
  /*margin-left:5%;
		margin-right:5%;*/ }

.carousel_slide {
  width: 100%; }
  .carousel_slide img {
    width: 100%;
    display: block; }

.left_arrow--section_carousel, .right_arrow--section_carousel {
  max-width: 25px; }

.left_arrow--section_carousel {
  position: absolute;
  top: 45%;
  left: 150px; }

.right_arrow--section_carousel {
  position: absolute;
  top: 45%;
  right: 150px; }

.section--image_spotlight {
  width: 100%;
  margin: 30px 0; }

.image_spotlight--item {
  width: 20%;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .image_spotlight--item img {
    width: 100%;
    display: block; }

.image_spotlight--item:first-child {
  margin-left: 0; }

.image_spotlight--item:last-child {
  margin-right: 0; }

.section--blog_carousel {
  width: 100%;
  margin: 0;
  position: relative; }
  .section--blog_carousel .blog_carousel--items {
    width: 100%; }
  .section--blog_carousel .left_arrow {
    position: absolute;
    top: 45%;
    left: -40px; }
  .section--blog_carousel .right_arrow {
    position: absolute;
    top: 45%;
    right: -40px; }
  .section--blog_carousel .carousel_slide {
    padding-right: 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.blog_carousel--image {
  width: 100%; }

.blog_carousel--title {
  font-weight: 600;
  width: 100%;
  color: #4d4d4d; }

.blog_carousel--summary {
  width: 100%;
  color: #727272; }
  .blog_carousel--summary a {
    color: #727272;
    text-decoration: none; }

.section--accommodation_spotlight {
  width: 100%;
  margin: 0;
  position: relative; }
  .section--accommodation_spotlight .blog_carousel--items {
    width: 100%; }
  .section--accommodation_spotlight .left_arrow {
    position: absolute;
    top: 45%;
    left: -40px; }
  .section--accommodation_spotlight .right_arrow {
    position: absolute;
    top: 45%;
    right: -40px; }
  .section--accommodation_spotlight .carousel_slide {
    padding: 0 9px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.accommodation--price {
  font-weight: bold; }
  .accommodation--price p {
    margin: 0 10px 0 0; }

.appartment_listing {
  width: 100%; }

.appartment_listing--item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px; }

.appartment_item--content {
  width: 60%;
  background: #f2f2f2;
  padding: 10px 20px; }

.appartment_item--image {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 20px;
  position: relative; }

.appartment_title {
  font-size: 24px;
  font-weight: bold;
  color: #174283;
  width: 50%; }
  .appartment_title p {
    margin: 0; }
  .appartment_title a {
    color: inherit;
    text-decoration: none;
    float: right; }

.appartment_rating {
  width: 50%;
  text-align: left; }

.appartment_key_info {
  width: 100%;
  font-size: 14px;
  color: #727272; }

.appartment_price {
  font-size: 24px;
  font-weight: bold;
  color: #727272;
  width: 100%; }
  .appartment_price p {
    margin: 0; }

.appartment_content--left {
  float: left;
  width: 40%; }
  .appartment_content--left ul {
    margin: 40px 0 0 0;
    padding-left: 0;
    list-style: none; }
  .appartment_content--left li {
    font-size: 14px;
    font-weight: bold; }

.appartment_content--right {
  float: right;
  text-align: right;
  width: 100%; }

.appartment--features {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap; }

.appartment_feature {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #174283;
  font-weight: bold; }
  .appartment_feature span {
    font-weight: normal; }
  .appartment_feature img {
    max-width: 50px;
    margin-right: 10px; }

.appartment_copy_container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.readmore_button {
  background: #174283;
  color: white;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 24px; }

.readmore_button:after {
  content: '\003E';
  padding-left: 20px;
  font-size: 20px;
  font-weight: normal; }

.featured--icon {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 100px; }

.section_spotlight--six {
  width: 100%;
  margin: 0;
  position: relative; }
  .section_spotlight--six .left_arrow {
    position: absolute;
    top: 45%;
    left: -40px; }
  .section_spotlight--six .right_arrow {
    position: absolute;
    top: 45%;
    right: -40px; }
  .section_spotlight--six .carousel_slide {
    padding: 0 9px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.spotlight_six_carousel--summary {
  font-size: 14px;
  color: #727272; }
  .spotlight_six_carousel--summary span {
    font-weight: bold; }
  .spotlight_six_carousel--summary a {
    color: #727272;
    text-decoration: none;
    font-weight: bold; }

.scrollToTop {
  padding: 14px;
  text-align: center;
  background: #174283;
  font-weight: bold;
  color: white;
  text-decoration: none;
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  z-index: 1000;
  border: 1px solid white; }

.scrollToTop:hover {
  text-decoration: none; }

.parallax {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.resort--map {
  margin-bottom: 50px;
  width: 50%; }

.accoodation_summary_container {
  width: 50%;
  padding-left: 20px; }

.faqEntry {
  width: 100%;
  border: 1px solid #c1c1c1;
  padding: 15px;
  margin-bottom: 20px; }

.faqEntry__header {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.toggleFaq {
  border: solid #174283 2px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 38px;
  padding: 10px;
  color: #174283;
  text-decoration: none; }

.faq_container {
  width: 70%;
  margin-right: 30%; }
  .faq_container h2 {
    font-size: 22px;
    color: #174283; }

.faq--title {
  font-weight: bold;
  font-size: 22px;
  color: #174283; }

.widget--arrow__4 {
  display: block; }

.freeform-column select {
  -webkit-appearance: none;
  padding: 10px;
  background: white;
  border-radius: 0;
  width: 100%;
  border: 1px solid #D3D3D3;
  margin-right: 20px; }

@media (max-width: 680px) {
  .freeform-row {
    flex-wrap: wrap;
    margin: 0 !important; }
    .freeform-row .freeform-column {
      width: 100%;
      margin: 0 !important; }
    .freeform-row .freeform-input {
      width: 100%; }
  .side_bar {
    width: 100%;
    display: none; }
  .two_thirds {
    width: 100%;
    padding: 0; }
  .download_item {
    padding: 6px; }
  .scrollToTop {
    width: 100%;
    top: auto;
    bottom: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 0; }
  .image_spotlight--item {
    padding-right: 0;
    width: 32%;
    margin-bottom: 2%; }
  .image_spotlight--item__mobile {
    margin: 0 2% 2% 2%; }
  /*.words_container{
		h1{
			font-size: 40px;
			margin-top:0;
		}
		h2{
			font-size: 34px;
		}
		h3{
			font-size: 34px;
		}
	}*/
  .contact_half_width {
    width: 100%; }
  .contact_left_margin {
    margin-left: 0;
    margin-right: 0; }
  .contact_right_margin {
    margin-left: 0;
    margin-right: 0; }
  .contact_form_container {
    padding: 0; }
  h1 {
    font-size: 40px;
    margin-top: 0; }
  h2 {
    font-size: 34px; }
  h3 {
    font-size: 34px; }
  .section--accommodation_spotlight {
    margin: 0; }
  .section--accommodation_spotlight .right_arrow {
    top: 45%;
    right: 10px; }
  .section--accommodation_spotlight .left_arrow {
    top: 45%;
    left: 10px; }
  .section_spotlight--six .right_arrow {
    top: 45%;
    right: 10px; }
  .section_spotlight--six .left_arrow {
    top: 45%;
    left: 10px; }
  .person_container {
    padding: 0; }
  .person_item {
    width: 100%; }
  .main_content--video {
    width: 100%; }
  .video_embed {
    width: 100%;
    margin-left: 0; }
  .video_description {
    width: 100%;
    margin-bottom: 20px; }
  .widget--arrow__3 {
    display: block; }
  .faq_container {
    width: 100%; }
  .person_item2_of_3 {
    margin-left: 0;
    margin-right: 0; }
  .person_item1_of_2 {
    margin-right: 0; }
  .person_item2_of_2 {
    margin-left: 0; }
  .appartment_feature {
    width: 50%; } }

@media (min-width: 681px) and (max-width: 851px) {
  .section--accommodation_spotlight .right_arrow {
    top: 45%;
    right: -35px; }
  .section--accommodation_spotlight .left_arrow {
    top: 45%;
    left: -35px; }
  .section_spotlight--six .right_arrow {
    top: 45%;
    right: -35px; }
  .section_spotlight--six .left_arrow {
    top: 45%;
    left: -35px; }
  .person_item {
    width: 48%; }
  .person_container {
    padding-right: 0; }
  .person_item2_of_3 {
    margin-left: 0;
    margin-right: 0; }
  .person_item1_of_2 {
    margin-right: 2%; }
  .person_item2_of_2 {
    margin-left: 2%; }
  .widget--arrow__3 {
    display: block; }
  .cleardiv--3 {
    display: none; }
  .cleardiv--2 {
    display: block; } }

.news_wrapper {
  width: 100%; }

.newsListing__item {
  width: 100%;
  margin-bottom: 40px; }

.newsListing__item__image {
  width: 100%; }
  .newsListing__item__image img {
    width: 100%;
    display: block; }

.newsListing__item__details {
  width: 100%; }
  .newsListing__item__details h2 {
    margin-top: 0; }
  .newsListing__item__details a {
    color: #174283;
    text-decoration: none; }
  .newsListing__item__details .readMore {
    padding: 10px;
    background: #174283;
    color: white; }

.news_item_entry {
  width: 100%; }

.news_item_content {
  width: 100%; }

.blog_page_container {
  width: 100%; }

.blog_content_container {
  width: 100%; }

.news_item_entry {
  width: 70%; }
  .news_item_entry h1 {
    margin-top: 0; }

.pagination_container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px; }
  .pagination_container a {
    width: 50px;
    height: 50px;
    background: #f4f2f2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-left: 10px;
    color: #174283; }
  .pagination_container .current {
    width: 50px;
    height: 50px;
    background: #f4f2f2;
    background: #174283;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-left: 10px;
    color: white; }

.blog_key_info {
  text-transform: uppercase;
  width: 100%;
  color: #909090;
  margin-bottom: 30px; }
  .blog_key_info p {
    margin: 0; }

.blog_summary {
  width: 100%;
  font-size: 14px;
  margin-bottom: 40px; }
  .blog_summary p {
    margin: 0;
    color: #909090; }
  .blog_summary a {
    color: #909090;
    text-decoration: none; }

.blog_title h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0; }

.blog_title a {
  color: #174283;
  text-decoration: none; }

.blog_page_title {
  font-weight: 300; }

.blog_listing {
  width: 100%; }

.blog_content_container {
  width: 100%; }

.blog_listing--item {
  width: 100%; }
  .blog_listing--item img {
    display: block;
    width: 100%; }

.newsListing__item__details__date, .tag_container {
  display: inline-block;
  float: left; }

.readmore--blog {
  font-weight: bold; }

@media (max-width: 600px) {
  .blog_page_container {
    padding-left: 0;
    padding-right: 0; }
  .news_item_entry {
    width: 100%; }
  .blog_content_container {
    width: 100%; }
  .blog_title h2 {
    font-size: 20px; } }

.whole_page_popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000; }

.login_container {
  width: 60%;
  display: flex; }
  .login_container a {
    color: #174283;
    text-decoration: none; }
  .login_container h1 {
    color: #174283;
    margin-top: 0;
    margin-bottom: 12px; }
  .login_container .registar_now--button {
    color: white;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    border-radius: 3px; }

.login_col {
  width: 60%;
  background: white;
  padding: 30px;
  box-sizing: border-box; }
  .login_col h3 {
    margin-top: 0;
    margin-bottom: 5px; }

.sign_up_col {
  width: 40%;
  background: #174283;
  padding: 30px;
  box-sizing: border-box;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center; }
  .sign_up_col h2 {
    margin-top: 0; }

.login_close {
  color: #174283;
  text-decoration: none; }

.text_input--login {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 8px; }

.remember_me {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 14px; }

.submit--login {
  display: block;
  float: left;
  background: #174283;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  color: white; }

.signup_container {
  width: 100%; }

.signup_form_container {
  width: 100%; }

.sign_up--form_item {
  width: 100%; }

.sign_up--text_input {
  width: 100%;
  padding: 6px; }

.sign_up--submit {
  background: #174283;
  border: 2px solid #174283;
  color: white;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px; }

.sign_up--submit:hover {
  background: transparent;
  border: 2px solid #174283;
  color: #174283;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px; }

.sign_up--form_item__smallleft {
  width: 48%;
  margin-right: 2%; }

.sign_up--form_item__smallright {
  width: 48%;
  margin-left: 2%; }

.sign_up--form_item__small {
  width: 100%;
  margin-left: 0;
  margin-right: 0; }

.edit_profile--header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .edit_profile--header h1 {
    margin-bottom: 0; }
  .edit_profile--header a {
    color: #174283;
    text-decoration: none; }

@media (max-width: 680px) {
  .whole_page_popup {
    position: relative; }
  .login_container {
    flex-direction: column;
    width: 90%;
    padding: 5% 0; }
  .login_col {
    width: 100%; }
  .sign_up_col {
    width: 100%; }
  .sign_up--form_item__smallleft {
    width: 100%;
    margin-right: 0; }
  .sign_up--form_item__smallright {
    width: 100%;
    margin-left: 0; } }

.comment_container_form {
  width: 100%;
  border: 2px solid #174283; }

.comments-box {
  width: 100%; }

.comments-container {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  float: left; }

.comment_container {
  margin-bottom: 20px;
  width: 100%;
  display: block;
  float: left; }

.comment_container--header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  background: #174283;
  color: white;
  padding: 10px; }
  .comment_container--header p {
    margin: 0;
    font-weight: bold; }
  .comment_container--header a {
    color: white;
    text-decoration: none; }

.comment-form-container {
  width: 100%;
  padding: 10px;
  border: none;
  display: block;
  float: left; }

.form-group textarea {
  height: 100px;
  width: 100%;
  border: 1px solid #D3D3D3; }

input[type='text'] {
  width: 100%;
  padding: 10px 5px;
  font-family: "myriad-pro", sans-serif;
  border: 1px solid #D3D3D3; }

.name-input .form-group {
  width: 100%;
  padding: 10px 5px;
  font-family: "myriad-pro", sans-serif;
  border: 1px solid #D3D3D3; }

.btn-default {
  background: #174283;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 20px;
  border: 2px solid #174283;
  display: block;
  float: left;
  width: auto !important; }

.btn-default:hover {
  background: #174283;
  color: white;
  border-color: #174283; }

.dropdown-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%; }
  .dropdown-menu a {
    color: #174283 !important; }
  .dropdown-menu li a {
    padding-right: 0 !important; }
  .dropdown-menu span {
    padding-right: 0 !important; }

.comment-heading .title {
  color: #174283; }

.meta-buttons a {
  color: #174283; }

.comment-heading .dropdown-toggle {
  color: #174283; }

.comment-heading .dropdown {
  text-align: right;
  position: relative; }

.comment-heading .dropdown-menu > li > a {
  color: #174283; }

.comment-single .comment-form {
  width: 100%;
  float: left; }

.edit-comment-form {
  width: 100%;
  float: left;
  display: block; }
  .edit-comment-form .form-control {
    width: 100%;
    display: block;
    float: left;
    height: 100px; }

.main_content_container {
  width: 100%;
  position: relative; }

.homepage_carousel {
  width: 100%;
  position: relative; }

.homepage_carousel_slide {
  width: 100%;
  height: 400px;
  /*img{
		width:100%;
		display:block;
	}*/ }
  .homepage_carousel_slide a {
    text-decoration: none;
    padding: 0 20px;
    text-align: center; }
  .homepage_carousel_slide h1 {
    color: white;
    font-size: 50px; }

.left_arrow, .right_arrow {
  max-width: 25px; }

.left_arrow {
  position: absolute;
  top: 45%;
  left: 25px; }

.right_arrow {
  position: absolute;
  top: 45%;
  right: 25px; }

.promotion_container {
  display: none;
  padding: 12px;
  background: #174283;
  color: white;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  position: fixed;
  right: -62px;
  float: none;
  top: 50%;
  width: 165px;
  text-align: center;
  z-index: 998;
  border: 1px solid white; }

.promotion_content_container {
  max-width: 500px;
  position: fixed;
  right: 39px;
  top: 41%;
  z-index: 999;
  display: none; }
  .promotion_content_container img {
    width: 100%; }

.promotion--button {
  color: white;
  font-family: "montserrat", sans-serif;
  text-decoration: none; }

.close_promotion {
  background: #174283;
  color: white; }

@media (max-width: 600px) {
  .promotion_container {
    display: none; }
  .homepage_carousel_slide {
    height: 250px; }
    .homepage_carousel_slide h1 {
      font-size: 40px; }
  .left_arrow {
    position: absolute;
    top: 45%;
    left: 30px; }
  .right_arrow {
    position: absolute;
    top: 45%;
    right: 30px; } }

.search_filter_options {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between; }

.search_side_bar_container {
  width: 28%;
  margin-right: 2%;
  border: 1px solid #b3b3b3;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 50px; }

.search_side_bar_results {
  width: 70%; }

.search_page_container {
  width: 100%;
  padding: 0 30px; }

.text_input--search {
  margin-bottom: 10px;
  margin-top: 0; }

.serach--reset_button {
  background: #174283;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
  border: 0;
  margin-right: 10px;
  font-size: 16px;
  padding: 10px; }

.filter_title {
  color: #174283;
  font-weight: bold;
  padding-left: 20px;
  margin-bottom: 0; }

.search_filter_section {
  width: 100%; }
  .search_filter_section label {
    padding-left: 9px;
    font-weight: bold;
    color: #727272; }

.filter_select_item select {
  background: transparent;
  color: #174283;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 2px 7px; }

.filter_select_item option {
  color: #174283; }

.filter_pagignation a {
  padding: 0 5px;
  border: 1px solid #727272;
  font-size: 14px;
  display: block;
  float: left;
  margin-right: 2px;
  text-decoration: none;
  color: #727272; }

.search_numbers {
  color: #727272; }
  .search_numbers p {
    margin: 0; }

.filter_search_mobile {
  background: #174283;
  width: 100%;
  color: white;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  margin-bottom: 15px;
  display: none; }

.no_search--contact {
  width: 100%; }
  .no_search--contact a {
    display: inline-block; }

@media (max-width: 600px) {
  .filter_search_mobile {
    display: block; }
  .search_side_bar_container {
    width: 100%;
    margin-right: 0;
    display: none; }
  .search_page_container {
    padding: 0 15px; }
  .search_side_bar_results {
    width: 100%;
    margin-bottom: 30px; }
  .search_filter_options {
    flex-wrap: wrap; }
  .appartment_listing--item {
    flex-wrap: wrap; }
  .appartment_item--content {
    width: 100%;
    order: 2; }
  .appartment_item--image {
    width: 100%;
    min-height: 192px; }
  .appartment--features {
    flex-wrap: wrap; }
  .appartment_rating {
    width: 100%;
    text-align: left; }
  .appartment_title {
    width: 100%;
    text-align: left;
    font-size: 21px; }
  .appartment_key_info {
    text-align: left; }
  .appartment_price {
    text-align: left; }
  .search_container {
    display: none; }
  .navigation_container {
    border-top: 0;
    margin-top: 0; }
  .header_banner--branding_search {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap; } }

@media (min-width: 601px) and (max-width: 919px) {
  .appartment_listing--item {
    flex-wrap: wrap; }
  .appartment_item--content {
    width: 100%;
    order: 2; }
  .appartment_item--image {
    width: 100%;
    min-height: 192px; }
  .appartment--features {
    flex-wrap: wrap; }
  .appartment_rating {
    width: 100%;
    text-align: left; }
  .appartment_title {
    width: 100%;
    text-align: left;
    font-size: 21px; }
  .appartment_key_info {
    text-align: left; }
  .appartment_price {
    text-align: left; }
  input[type='text'] {
    flex-grow: 1; }
  .search_container select {
    flex-grow: 1; } }

.parallax {
  background-attachment: scroll; }

.main_content {
  z-index: 100;
  position: relative;
  background: #fff; }

.main_content--words .words_container--3_1 {
  width: 33%;
  padding-right: 10px; }

.main_content--words .words_container--3_2 {
  width: 33%;
  padding-left: 10px;
  padding-right: 10px; }

.main_content--words .words_container--3_3 {
  width: 33%;
  padding-left: 10px; }

.main_content--words .words_container--2_1 {
  width: 50%;
  padding-right: 10px; }

.main_content--words .words_container--2_2 {
  width: 50%;
  padding-left: 10px; }

@media (max-width: 620px) {
  .main_content--words .words_container--3_1 {
    width: 100%;
    padding-right: 0px; }
  .main_content--words .words_container--3_2 {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px; }
  .main_content--words .words_container--3_3 {
    width: 100%;
    padding-left: 0px; }
  .main_content--words .words_container--2_1 {
    width: 100%;
    padding-right: 0px; }
  .main_content--words .words_container--2_2 {
    width: 100%;
    padding-left: 0px; } }
