/* Colours */
/* Fonts */
/* Reset */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
select,
textarea {
  border: solid 1px #e6e6e6;
}

button:focus,
input:focus,
select:focus,
option:focus {
  outline: none;
}

/* Typography */
body {
  font: 100% "Source Sans Pro", sans-serif;
  color: #154153;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Sans Pro", sans-serif;
  color: #154153;
  font-weight: bold;
}

/* Base */
.xdebug-var-dump {
  font-size: 14px;
}

.env.andy {
  border: solid 2px #f00;
}

.env.staging {
  border: solid 2px #ff8800;
}

a {
  color: #154153;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

.max-width {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.bold {
  font-weight: bold;
}

/* Buttons */
.button {
  padding: 15px 30px;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-radius: 15px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #DDD;
  border: 0;
  letter-spacing: 1px;
}
.button.primary {
  background-color: #06C2C9;
  color: #FFF;
}
.button.secondary {
  background-color: #E6EBFF;
  color: #154153;
  border: solid 1px #ccd0e2;
}
.button.medium {
  padding: 13px 25px;
  font-size: 14px;
}
.button.small {
  padding: 10px 20px;
  font-size: 12px;
}
.button.disabled {
  background-color: #DDD;
  cursor: default;
}
.button:hover, .button:visited {
  text-decoration: none;
}

#modal-backdrop {
  position: fixed;
  display: flex;
  justify-content: space-around;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

#modal-container {
  position: relative;
  max-height: 90%;
  max-width: 1058px;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #FFF;
  z-index: 1001;
  overflow: auto;
  color: #565656;
  font-size: 16px;
  line-height: 24px;
}
#modal-container .tcl-modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  color: #FFF;
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}

.tcl-modal {
  display: none;
}

.tcl-modal-active {
  display: inline-block;
}

/* Header */
.banner {
  padding: 10px 20px;
  background-color: rgba(230, 235, 255, 0.5);
  color: #154153;
}
.banner .container {
  display: flex;
  justify-content: space-between;
}
.banner a {
  text-decoration: underline;
}
.banner i {
  padding: 0 5px;
  cursor: pointer;
}

header {
  position: absolute;
  width: 100%;
  min-width: 350px;
  z-index: 30;
}
header .container {
  display: flex;
  position: relative;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
header img {
  position: relative;
  height: 40px;
}
header .menu .header {
  cursor: pointer;
}
header .menu .header .sub-menu {
  display: none;
}
header .menu .header.active > .sub-menu {
  display: flex;
}
header .menu a {
  color: #FFF;
}
header .menu a.active {
  text-decoration: underline;
}
header .menu .sub-menu {
  position: absolute;
  right: 20px;
  top: 80px;
  flex-direction: column;
}
header .menu .sub-menu li {
  margin-bottom: 30px;
  text-align: right;
}
header .menu .desktop {
  display: flex;
  font-size: 15px;
  align-items: center;
  color: #FFF;
  z-index: 2;
  white-space: nowrap;
}
header .menu .desktop .sub-menu {
  top: 70px;
}
header .menu .desktop li {
  margin-left: 30px;
}
header .menu .mobile {
  display: none;
}
header .menu .mobile .hamburger {
  display: inline-block;
  transform: rotate(90deg);
  font-weight: bold;
  color: #FFF;
}
header .menu .mobile .sub-menu {
  top: 50px;
  padding: 10px 20px;
  background-color: #0008;
}

@media (max-width: 850px) {
  header .menu .desktop {
    display: none;
  }
  header .menu .mobile {
    display: initial;
  }
}
/* Work with us */
#work-with-us {
  max-width: 600px;
}
#work-with-us .content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
#work-with-us .content div {
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#work-with-us .content p {
  margin-top: 20px;
  text-align: center;
}
#work-with-us .content .button-container {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 600px) {
  #work-with-us .content {
    flex-direction: column;
  }
  #work-with-us .partner {
    margin-top: 40px;
  }
}

footer {
  margin-top: 40px;
  padding: 40px 0;
  background-color: #214051;
  color: #E6EBFF;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .link-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
footer .link-container > div {
  margin: 0 10px;
  margin-bottom: 40px;
}
footer .link-container h3 {
  margin-bottom: 30px;
  font-size: 16px;
  color: #E6EBFF;
  text-transform: uppercase;
}
footer .link-container li {
  margin-bottom: 10px;
}
footer .link-container a {
  color: #E6EBFF;
}
footer .link-container p {
  font-size: 12px;
  line-height: 2;
}
footer .link-container .social-links .im {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
footer .link-container .social-links .im i {
  margin-right: 10px;
  font-size: 1.2em;
}
footer .link-container .social-links .im a {
  margin-bottom: 10px;
  font-size: 0.9em;
}
@media (max-width: 600px) {
  footer .link-container {
    flex-direction: column;
  }
}
footer .info-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
footer .info-container .safetravels {
  display: flex;
  align-items: center;
}
footer .info-container .safetravels .logo {
  display: inline-block;
  width: 120px;
  height: 120px;
  background-image: url(/assets/images/safe-travels-white-logo.png);
  background-position: 50%;
  background-size: 100px;
  background-repeat: no-repeat;
}
footer .info-container .safetravels:hover .logo, footer .info-container .safetravels.active .logo {
  background-image: url(/assets/images/safe-travels-blue-logo.png);
}
footer .info-container .info {
  text-align: center;
  font-size: 12px;
}
footer .info-container .heart {
  display: inline-block;
  height: 14px;
  width: 20px;
  background-image: url(/assets/images/heart.png);
  background-size: 14px;
  background-position: 50%;
  background-repeat: no-repeat;
}
footer .newsletter {
  margin-bottom: 20px;
}
footer .newsletter h3 {
  font-size: 16px;
  color: #E6EBFF;
  text-transform: uppercase;
  text-align: center;
}
footer .newsletter .message {
  max-width: 500px;
  margin: 20px auto 20px auto;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
}
footer .newsletter .message.errors {
  background-color: #F00;
  border: solid 1px #F00;
}
footer .newsletter .message.hidden {
  display: none;
}
footer .newsletter .message.ok {
  background-color: #06bb06;
  border: solid 1px #06bb06;
  text-align: center;
}
footer .newsletter .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
footer .newsletter input {
  width: initial;
  margin: 10px 10px 0 0;
  padding: 5px 10px;
  border: solid 1px #FFF;
  border-radius: 5px;
  color: #000;
}
footer .newsletter input[name=email] {
  min-width: 200px;
}
footer .newsletter .button {
  margin-top: 10px;
}
footer #social {
  margin-bottom: 20px;
  text-align: center;
}
footer #social a {
  font-size: 1.2em;
  margin-right: 10px;
  color: #FFF;
}
footer #social a:last-of-type {
  margin-right: initial;
}

/* City view */
#hero {
  display: flex;
  position: relative;
  height: 400px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
#hero:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}
#hero .breadcrumbs {
  width: 100%;
  margin-top: 80px;
  z-index: 2;
  color: #FFF;
  text-shadow: 1px 1px 1px #000;
}
#hero .breadcrumbs a {
  color: #FFF;
  text-shadow: 1px 1px 1px #000;
}
#hero .breadcrumbs span {
  margin: 0px 10px;
}
#hero .content {
  text-align: center;
  z-index: 1;
  margin-bottom: 200px;
}
#hero h1 {
  color: #FFF;
  text-shadow: 1px 1px 1px #000;
  font-size: 40px;
}
#hero h1 span {
  font-size: 50px;
}

#description {
  position: relative;
  max-width: 900px;
  margin: -90px auto 0 auto;
  padding: 40px 20px;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  box-shadow: 0 0 10px 0 #b9b9b9;
  z-index: 2;
  background-color: #FFF;
}

#attractions {
  margin-top: 40px;
}
#attractions h2 {
  text-align: center;
}
#attractions .container {
  display: flex;
  margin-top: 40px;
  flex-direction: row;
  flex-wrap: wrap;
}
#attractions .attraction {
  position: relative;
  display: flex;
  height: 250px;
  min-width: 300px;
  margin: 5px;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  justify-content: space-between;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#attractions .attraction .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  overflow: hidden;
  color: #FFF;
  background-color: #0008;
}
#attractions .attraction .name {
  height: 60px;
  font-size: 18px;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
}
#attractions .attraction .description {
  height: 0;
  overflow: hidden;
  font-size: 14px;
  transition: height 500ms;
  transition-timing-function: ease;
}
#attractions .attraction:hover .description {
  height: 60px;
}