/*  Fonts */
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:700");
@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,500,700,300");
/*------------------------------
          #GLOBAL
------------------------------*/
/*------------------------------
          #MIXINS
------------------------------*/
/*------------------------------
          #BASE
------------------------------*/
html,
body {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-size: 62.5%;
}

body {
  color: #000c21;
  font-family: "Ubuntu", Arial, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}

p {
  line-height: 171%;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}
p a:hover {
  color: #00aadf;
}

h2,
h3,
h4 {
  margin: 0 0 20px 0;
  font-family: "Playfair Display", Arial, Helvetica Neue, sans-serif;
  font-weight: 500;
}

/* H1 is used on the home page banner */
h1 {
  margin: 0 0 20px 0;
  color: #ffffff;
  font-size: 72px;
  font-size: 7.2rem;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(0, 12, 33, 0.3);
  text-transform: uppercase;
}

html.small h1 {
  font-size: 52px;
  font-size: 5.2rem;
}

/*
 * h2 is used as a title of a sub page(.subpage-content__heading) and as the
 * title of the featured article on the magazine page
 */
h2 {
  font-size: 36px;
  font-size: 3.6rem;
}

/* h3 is used as a featured arrangement */
h3 {
  color: #00aadf;
  font-size: 24px;
  font-size: 2.4rem;
}

/* h4 is used as a featured article */
h4 {
  color: #00aadf;
  font-size: 18px;
  font-size: 1.8rem;
}

h6 {
  margin: 0 0 20px 0;
  color: #ffffff;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(0, 12, 33, 0.3);
}

html.small h6 {
  font-size: 18px;
  font-size: 1.8rem;
}

/*------------------------------
          #CONTAINERS
------------------------------*/
.container {
  width: 90%;
  /* Standard width */
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .container {
    width: 1100px;
  }
}

/*------------------------------
          #HEADER
------------------------------*/
.header {
  padding: 25px 0 0 0;
}

.header__logo {
  float: left;
  height: 50px;
}

/*------- Cocktails header */
/*------- Magazine header */
/*------------------------------
          #NAVIGATION
------------------------------*/
.nav__item {
  display: inline-block;
  padding: 0 0 23px 0;
  margin: 0 0 0 40px;
  color: #414855;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 2px solid #ffffff;
  transition: border-bottom ease-out 0.3s, color ease-out 0.3s;
}
.nav__item:hover, .nav__item--active {
  color: #000c21;
  border-bottom: 2px solid #000c21;
}

/*------- Cocktails navigation */
.nav--cocktails {
  float: right;
  margin: 35px 0 0 0;
}

/*------- Magazine navigation */
.nav--magazine {
  margin: 40px 0 0 0;
}

/*------------------------------
          #MOBILE NAVIGATION
------------------------------*/
html.small .header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  padding: 0;
  background-color: #008db9;
  transform: translateX(-200px);
  transition: transform ease-out 0.3s;
  visibility: hidden;
}

/* Added by main.js when clicked on mobile-nav__toggle */
html.small .header--collapsed {
  transform: translateX(0);
  visibility: visible;
}

html.small .nav--cocktails {
  float: none;
  margin: 60px 0 0 0;
}

html.small .nav__item {
  display: block;
  padding: 20px;
  margin: 0 -5.5%;
  color: white;
  border: 0 solid #fff;
}
html.small .nav__item:hover, html.small .nav__item--active {
  color: white;
  background-color: #00aadf;
  border: 0 solid #fff;
}

/* So they don't fall under the main-subpage__content */
html.small .mobile-nav__bar,
html.small .header {
  z-index: 1;
}

/* To create space what the mobile-nav__bar takes up */
html.small .mobile-spacer {
  width: 100%;
  height: 60px;
}

/*------- Top mobile navigation bar */
html.small .mobile-nav__bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  text-align: center;
  background-color: #00aadf;
}

html.small .mobile-nav__logo {
  height: 34px;
  margin-top: 13px;
}

/*------- Toggle square */
html.small .mobile-nav__toggle {
  position: absolute;
  width: 60px;
  height: 60px;
  float: left;
  background-color: #008db9;
  cursor: pointer;
}

/*------- Toggle lines */
html.small .toggle__line {
  display: block;
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  background-color: white;
  opacity: 1;
  transition: all ease 0.3s;
}

html.small .toggle__line:nth-child(1) {
  top: 20px;
}

html.small .toggle__line:nth-child(2),
html.small .toggle__line:nth-child(3),
html.small .toggle__line:nth-child(4) {
  top: 29px;
}

html.small .toggle__line:nth-child(5) {
  top: 38px;
}

/*------- Toggle lines active */
html.small .toggle__line--open:nth-child(1),
html.small .toggle__line--open:nth-child(2),
html.small .toggle__line--open:nth-child(5) {
  opacity: 0;
}

html.small .toggle__line--open:nth-child(3) {
  transform: rotate(45deg);
}

html.small .toggle__line--open:nth-child(4) {
  transform: rotate(-45deg);
}

/*------------------------------
          #BANNER
------------------------------*/
.banner {
  width: 100%;
  min-height: 400px;
  text-align: center;
  background: url("../images/banner.jpg") no-repeat fixed center top;
  background-size: cover;
}

html.large .banner {
  min-height: 300px;
}

html.medium .banner,
html.small .banner {
  min-height: 200px;
}

.banner__button {
  margin: 40px 20px 0 20px;
}

/*------- Subpage banner */
.banner__subpage {
  min-height: 200px;
}

/*------- Cocktails banner */
.banner--cocktails {
  padding: 10% 0;
}

/*------- Magazine banner */
.banner--magazine {
  padding: 0;
}

/*------------------------------
          #MAIN SUBPAGE
------------------------------*/
/*
 * [1] to make up for the transform:
 * normal padding - translate:
 *           60px - 120px = -60px
 *
 */
.main-subpage {
  background: #f2f5fa;
}

.main-subpage__content {
  padding: 60px 175px;
  margin: 0 0 -60px 0;
  /* [1] */
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-120px);
}
.main-subpage__content--detail-page {
  text-align: left;
}

html.large .main-subpage__content,
html.medium .main-subpage__content,
html.small .main-subpage__content {
  margin: 0 0 -100px 0;
  /* [1] */
  transform: translateY(-160px);
}

html.medium .main-subpage__content,
html.small .main-subpage__content {
  padding: 40px;
}

.subpage-content__heading {
  padding: 0 0 20px 0;
  position: relative;
  color: #000c21;
}
.subpage-content__heading:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  position: relative;
  top: 18px;
  bottom: 0;
  right: 0;
  left: 50%;
  /* to get it in the middle */
  transform: translateX(-50%);
  /* to get it in the middle */
  background-color: #fdce20;
}
.subpage-content__heading--detail-page:after {
  left: 0;
  transform: none;
}

.subpage-content__button {
  margin: 20px 0 0 0;
}

/*------- Over ons afbeeldingen */
.subpage-content__company-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

/*------- Arrangement detail side bar */
.subpage__sidebar {
  text-align: right;
}

/*------- Contact page */
.contact__form {
  margin: 20px 0 0 0;
  text-align: left;
}

.contact__details {
  margin: 20px 0 0 0;
  text-align: right;
}

html.small .contact__details {
  text-align: left;
}

.contact__link {
  display: block;
  margin: 0 0 16px 0;
  color: #000c21;
  opacity: 1;
  transition: all 0.3s ease-in;
}
.contact__link:hover {
  opacity: 0.6;
}

.contact__icon-wrapper {
  display: inline-block;
  margin: 0 0 0 6px;
  width: 16px;
  height: 16px;
  text-align: center;
  vertical-align: middle;
}

html.small .contact__icon-wrapper {
  float: left;
  margin: 0 10px 0 0;
}

.contact__icon {
  max-width: 16px;
  max-height: 16px;
}

.contact-details__title {
  margin: 0 0 20px 0;
  color: #000c21;
  line-height: 1;
}

/* to add extra spacing above this title */
.contact-details__title--nested {
  margin: 40px 0 20px 0;
}

/*------------------------------
          #ARTICLE TILES
------------------------------*/
.article-tile__wrapper {
  background-color: #ffffff;
}

.article-tile__block {
  display: table-cell;
  width: 50%;
  height: 100%;
}

.article-tile__text {
  padding: 30px 40px;
  border-left: 4px solid #00aadf;
}

.article-tile__image {
  background: url("../images/article-image.jpg") no-repeat scroll center center;
  background-size: cover;
  border-right: 4px solid #00aadf;
}

/*------- Sizes article tiles */
.article-tile--50 {
  display: inline-block;
  width: 48%;
}

.article-tile--50:nth-child(odd) {
  margin: 0 0 0 2%;
}

.article-tile--50:nth-child(even) {
  margin: 0 2% 0 0;
}

.article-tile--100 {
  display: table;
  width: 100%;
  margin: 0 0 40px 0;
}

/*------------------------------
          #FEATURED BLOCKS
------------------------------*/
.featured__articles {
  padding: 60px 0;
  background-color: #f2f5fa;
}

.featured-articles__category {
  display: block;
  margin: 0 0 20px 0;
  color: #00aadf;
  font-family: "Ubuntu", Arial, Helvetica Neue, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.featured__arrangementen {
  padding: 60px 0 0 0;
  text-align: center;
}

.arrangement__button {
  margin: 0 0 60px 0;
}

.arrangement__icon {
  max-width: 150px;
  margin: 0 0 20px 0;
  vertical-align: bottom;
}

.arrangement__detail {
  position: relative;
  margin-top: 30px;
}
.arrangement__detail:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 38px;
  right: 0;
  left: 50%;
  /* to get it in the middle */
  transform: translateX(-50%);
  /* to get it in the middle */
  background-color: #fdce20;
}
.arrangement__detail--sidebar:after {
  left: auto;
  transform: none;
}

html.small .arrangement__detail--sidebar:after {
  left: 0;
}

/*------------------------------
          #FORMS
------------------------------*/
/*------- LABEL */
label {
  display: block;
}

/*------- TEXTAREA */
textarea {
  min-height: 140px;
}

/*------- INPUT & TEXTAREA */
input,
textarea {
  padding: 14px 20px;
  width: 100%;
  color: #94a3bf;
  font-weight: 400;
  background-color: #f2f5fa;
  border: 0;
  border-bottom: 4px solid #d7deeb;
}

/*------- FORM CLASSES */
/*  This is the wrapper around a form item.*/
.form__item {
  margin: 0 0 20px 0;
}

/*  This is the class for a form item title.*/
.form__title-item {
  margin: 0 0 5px 0;
  font-weight: 500;
}

/* An error when the user fills out the form wrongly */
.form__error {
  color: red;
  margin: 4px 0 0 0;
}

/*------- BUTTON */
button,
.button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 0 solid #fff;
  cursor: pointer;
  transition: background 0.3s ease-in;
}

/* Button sizes */
.button--small {
  padding: 10px 30px;
  font-size: 12px;
  font-size: 1.2rem;
}

.button--normal {
  padding: 14px 30px;
  font-size: 14px;
  font-size: 1.4rem;
}

.button--normal-line {
  padding: 12px 26px;
  font-size: 14px;
  font-size: 1.4rem;
}

/* Button styling */
.button--primary {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 12, 33, 0.3);
  background-color: #fdce20;
}
.button--primary:hover {
  background-color: #eebb00;
}

.button--alternative {
  color: #ffffff;
  background-color: #00aadf;
}
.button--alternative:hover {
  background-color: #008db9;
}

.button--line {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 12, 33, 0.6);
  background-color: transparent;
  border: 2px solid #ffffff;
  box-shadow: 0 0 6px rgba(0, 12, 33, 0.6);
}
.button--line:hover {
  color: #00aadf;
  text-shadow: none;
  background-color: #ffffff;
}

/*------- Button with back arrow and primary-color background */
.button--back {
  padding: 10px 20px 10px 30px;
  background: #00aadf url("../images/icons/arrow-white--left.png") no-repeat scroll 12px center;
  background-size: 6px;
}

/*------- SPACING FOR BUTTONS */
.button--40-horizontal {
  margin: 0 40px;
}

.button--40-vertical {
  margin: 40px 0;
}

.button--40-left {
  margin-left: 40px;
}

.button--40-right {
  margin-right: 40px;
}

.button--40-top {
  margin-top: 40px;
}

.button--40-bottom {
  margin-bottom: 40px;
}

/*------------------------------
          #FOOTER
------------------------------*/
.footer {
  width: 100%;
  padding-top: 25px;
  text-align: center;
  background-color: #414855;
}

/*------- Footer elements */
.footer__element {
  display: inline-block;
  vertical-align: middle;
}

/* LOGO */
.footer__logo {
  float: left;
}

.footer__logo-image {
  height: 50px;
}

/* CONTACT INFO */
.footer__contact-info {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: left;
}

/* LINK contact info */
.footer-contact-info__link {
  display: block;
  margin: 0 0 10px 0;
  opacity: 1;
  transition: all 0.3s ease-in;
}
.footer-contact-info__link:hover {
  opacity: 0.8;
}
.footer-contact-info__link:last-child {
  margin: 0;
}

/* ICON contact info */
.footer-contact-info__icon {
  max-width: 16px;
  max-height: 16px;
  margin: 0 12px 0 0;
  vertical-align: middle;
}

/* TEXT contact info */
.footer-contact-info__text {
  color: #ffffff;
  vertical-align: middle;
}

/* SOCIAL MEDIA */
.footer__social-media {
  float: right;
  margin: 10px 0 0 0;
}

/* ICON social media */
.footer-social-media__icon {
  max-height: 30px;
  max-width: 30px;
  vertical-align: middle;
}

/* LINK social media */
.footer-social-media__link {
  margin: 0 40px 0 0;
  opacity: 1;
  transition: all 0.3s ease-in;
}
.footer-social-media__link:hover {
  opacity: 0.8;
}
.footer-social-media__link:last-child {
  margin: 0;
}

.footer__bar {
  width: 100%;
  padding: 10px 0;
  margin: 25px 0 0 0;
  text-align: center;
  background-color: #2d333d;
}

.footer__copyright-info {
  color: #414855;
  font-size: 12px;
  font-size: 1.2rem;
}

html.small .footer__element {
  display: block;
}

html.small .footer__logo,
html.small .footer__social-media {
  float: none;
}

html.small .footer__contact-info {
  margin: 20px 0;
  text-align: center;
}

/*------------------------------
          #BASIC STYLES
------------------------------*/
.clear:after {
  content: "" !important;
  display: table !important;
  clear: both !important;
}

.temp__taleft {
  text-align: left;
}

/*# sourceMappingURL=style.css.map */
