html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, ul, li {
  display: block;
}

ol, ul {
  list-style: none;
}

img {
  vertical-align: middle;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

body {
  min-height: 100vh;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/*
	@media only screen and (min-width : 901px) {
		.test{ background: red; }
	}
*/
/*
	----------------
	Main
	----------------
*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  background: #111;
  font-family: "Open Sans", Tahoma, sans-serif;
  font-size: 1.3rem;
  color: #dfdfdf;
  line-height: 1.8;
}

/* .gradient-overlay{
	min-height: 100vh;
	background-image: linear-gradient(to bottom, rgba(17,17,17,0.85) 0%, rgba(17,17,17,1) 100vh);
} */
a {
  color: #dfdfdf;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.width {
  max-width: 1040px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.width.narrow {
  max-width: 600px;
}

.width.wide {
  max-width: 1700px;
}

@media only screen and (max-width: 900px) {
  .width {
    width: calc(100% - 20px);
  }
}
/*
	----------------
	Typography
	----------------
*/
* + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
  margin-top: 50px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media only screen and (max-width: 900px) {
  .text-center-t {
    text-align: center;
  }

  .text-left-t {
    text-align: left;
  }

  .text-right-t {
    text-align: right;
  }
}
@media only screen and (max-width: 500px) {
  .text-center-m {
    text-align: center;
  }

  .text-left-m {
    text-align: left;
  }

  .text-right-m {
    text-align: right;
  }
}
.text-uppercase {
  text-transform: uppercase;
}

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

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

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

.nowrap {
  white-space: nowrap;
}

.email-link {
  unicode-bidi: bidi-override;
  direction: rtl;
}

/*
	----------------
	Layout
	----------------
*/
img {
  vertical-align: top;
  max-width: 100%;
}

p {
  margin-bottom: 12.5px;
}

* + p {
  margin-top: 12.5px;
}

p + p {
  margin-top: -2.5px;
}

body .margin-top {
  margin-top: 25px;
}

body .margin-top-2x {
  margin-top: 50px;
}

body .margin-bottom {
  margin-bottom: 25px;
}

body .margin-bottom-2x {
  margin-bottom: 50px;
}

body .no-margin {
  margin: 0;
}

body .no-margin-top {
  margin-top: 0;
}

body .no-margin-bottom {
  margin-bottom: 0;
}

@media only screen and (max-width: 900px) {
  body .margin-top-t {
    margin-top: 25px;
  }

  body .margin-top-2x-t {
    margin-top: 50px;
  }

  body .margin-bottom-t {
    margin-bottom: 25px;
  }

  body .margin-bottom-2x-t {
    margin-bottom: 50px;
  }

  body .no-margin-t {
    margin: 0;
  }
}
@media only screen and (max-width: 500px) {
  body .margin-top-m {
    margin-top: 25px;
  }

  body .margin-top-2x-m {
    margin-top: 50px;
  }

  body .margin-bottom-m {
    margin-bottom: 25px;
  }

  body .margin-bottom-2x-m {
    margin-bottom: 50px;
  }

  body .no-margin-m {
    margin: 0;
  }
}
body .padding-top {
  padding-top: 25px;
}

body .padding-top-2x {
  padding-top: 50px;
}

body .padding-bottom {
  padding-bottom: 25px;
}

body .padding-bottom-2x {
  padding-bottom: 50px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

/* Hide toggle elements */
[data-toggle],
[data-slideToggle] {
  display: none;
}

.hide {
  display: none !important;
}

/*
	----------------
	Font Awesome icons
	----------------
*/
/*  data-icon='&#xf066;' */
[data-icon]:before,
[data-iconAfter]:after {
  content: attr(data-icon);
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  margin-right: 8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

[data-iconAfter]:after {
  margin-right: 0;
  margin-left: 5px;
  content: attr(data-iconAfter);
}

/*
	----------------
	Vertical align with transform
	----------------
*/
.valign-parent {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.valign {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*
	----------------
	Fluid typography: font-size: calc( minpx + (max - min) * (100vw - minScreen) / (maxScreen - minScreen) );
	----------------
*/
/* @media only screen and (min-width : 901px) {
	.class-name{ font-size: 160px }
}

@media only screen and (max-width : 900px) {
	.class-name{
		font-size: calc( 30px + (160 - 30) * (100vw - 400px) / (900 - 400) );
	}
} */
/*
	----------------
	Display a warning to IE9 users and below
	----------------
*/
.ie body {
  padding-bottom: 42px;
}

.ie-warning {
  background: #ad4646;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
}

.ie-warning a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/*
	----------------
	Flexbox
	----------------
*/
.flex,
.flex-inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* Set defaults */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-height {
  min-height: 100%;
}

/* Set defaults: elements only occupy necessary space */
.flex > *,
.flex-inline > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.flex-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}

.flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.flex-align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

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

.flex-justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex00auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.flex10auto {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.flex11auto {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.flex01auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*
	----------------
	FLEX COLUMNS
	----------------
*/
.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.columns > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.columns-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

/* Column widths */
.cols1 > * {
  width: 100%;
}

.cols2 > * {
  width: 50%;
}

.cols3 > * {
  width: calc(100% / 3);
}

.cols4 > * {
  width: 25%;
}

.cols5 > * {
  width: 20%;
}

.cols6 > * {
  width: calc(100% / 6);
}

.cols7 > * {
  width: calc(100% / 7);
}

.cols8 > * {
  width: 12.5%;
}

.cols9 > * {
  width: calc(100% / 9);
}

.cols10 > * {
  width: 10%;
}

/* ..for tablets */
@media only screen and (max-width: 900px) {
  .cols1-t > * {
    width: 100%;
  }

  .cols2-t > * {
    width: 50%;
  }

  .cols3-t > * {
    width: calc(100% / 3);
  }

  .cols4-t > * {
    width: 25%;
  }

  .cols5-t > * {
    width: 20%;
  }

  .cols6-t > * {
    width: calc(100% / 6);
  }

  .cols7-t > * {
    width: calc(100% / 7);
  }

  .cols8-t > * {
    width: 12.5%;
  }

  .cols9-t > * {
    width: calc(100% / 9);
  }

  .cols10-t > * {
    width: 10%;
  }
}
/* ..for mobiles */
@media only screen and (max-width: 500px) {
  .cols1-m > * {
    width: 100%;
  }

  .cols2-m > * {
    width: 50%;
  }

  .cols3-m > * {
    width: calc(100% / 3);
  }

  .cols4-m > * {
    width: 25%;
  }

  .cols5-m > * {
    width: 20%;
  }

  .cols6-m > * {
    width: calc(100% / 6);
  }
}
/* Individual column widths */
.col1 {
  width: 10%;
}

.col2 {
  width: 20%;
}

.col25 {
  width: 25%;
}

.col3 {
  width: 30%;
}

.col33 {
  width: calc(100% / 3);
}

.col4 {
  width: 40%;
}

.col5 {
  width: 50%;
}

.col6 {
  width: 60%;
}

.col66 {
  width: calc(100% / 1.5);
}

.col7 {
  width: 70%;
}

.col75 {
  width: 75%;
}

.col8 {
  width: 80%;
}

.col9 {
  width: 90%;
}

.col10 {
  width: 100%;
}

/* ..for tablets */
@media only screen and (max-width: 900px) {
  .col1-t {
    width: 10%;
  }

  .col2-t {
    width: 20%;
  }

  .col25-t {
    width: 25%;
  }

  .col3-t {
    width: 30%;
  }

  .col33-t {
    width: calc(100% / 3);
  }

  .col4-t {
    width: 40%;
  }

  .col5-t {
    width: 50%;
  }

  .col6-t {
    width: 60%;
  }

  .col66-t {
    width: calc(100% / 1.5);
  }

  .col7-t {
    width: 70%;
  }

  .col75-t {
    width: 75%;
  }

  .col8-t {
    width: 80%;
  }

  .col9-t {
    width: 90%;
  }

  .col10-t {
    width: 100%;
  }
}
/* ..for mobiles */
@media only screen and (max-width: 500px) {
  .col1-m {
    width: 10%;
  }

  .col2-m {
    width: 20%;
  }

  .col25-m {
    width: 25%;
  }

  .col3-m {
    width: 30%;
  }

  .col33-m {
    width: calc(100% / 3);
  }

  .col4-m {
    width: 40%;
  }

  .col5-m {
    width: 50%;
  }

  .col6-m {
    width: 60%;
  }

  .col66-m {
    width: calc(100% / 1.5);
  }

  .col7-m {
    width: 70%;
  }

  .col75-m {
    width: 75%;
  }

  .col8-m {
    width: 80%;
  }

  .col9-m {
    width: 90%;
  }

  .col10-m {
    width: 100%;
  }
}
.column-gutter5 {
  margin: -5px;
}

.column-gutter5 > * {
  padding: 5px;
}

.column-gutter10 {
  margin: -10px;
}

.column-gutter10 > * {
  padding: 10px;
}

.column-gutter15 {
  margin: -15px;
}

.column-gutter15 > * {
  padding: 15px;
}

.column-gutter20 {
  margin: -20px;
}

.column-gutter20 > * {
  padding: 20px;
}

.columns[class*='column-gutter'] {
  margin-top: 0;
  margin-right: 0;
}

.columns[class*='column-gutter'] > * {
  padding-top: 0;
  padding-right: 0;
}

/*
	----------------
	LISTS
	----------------
*/
.list-dots li {
  padding-left: 16px;
}

.list-dots li:before {
  content: "\2022";
  float: left;
  width: 16px;
  margin-left: -16px;
}

.list-numbers {
  counter-reset: numList;
}

.list-numbers > li {
  counter-increment: numList;
  padding-left: 30px;
}

.list-numbers > li:before {
  content: counter(numList) ".";
  float: left;
  width: 25px;
  margin-left: -30px;
  text-align: right;
  opacity: 0.65;
}

.list-spacing > li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.list-borders > li:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}

/*
	----------------
	FORMS
	----------------
*/
/* Checkbox and radio size */
/* Input styles */
/* Input:active */
/* Dropdown menu */
/* Dropdown item hover */
/* Dropdown item selected */
.form-list .fr {
  padding-top: 6px;
  padding-bottom: 6px;
}

.form-list .fr:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

/* Stacked layout */
.form-vertical label:not(.label-inline) {
  margin-bottom: 2px;
  display: inline-block;
}

/* The column layout is only visible for tablets and desktops */
@media only screen and (min-width: 501px) {
  .form-columns .fr.no-label {
    padding-left: 140px;
  }

  .form-columns label:not(.label-inline) {
    float: left;
    width: 140px;
    padding-right: 10px;
    line-height: 22px;
    margin-top: 14px;
    text-align: right;
  }

  .form-columns label:not(.label-inline) + input,
  .form-columns label:not(.label-inline) + select,
  .form-columns label:not(.label-inline) + textarea,
  .form-columns label:not(.label-inline) + .selectric-wrapper {
    width: calc(100% - 140px);
    margin-left: 140px;
  }
}
/* Stack the column layout on mobiles */
@media only screen and (max-width: 500px) {
  .form-columns label:not(.label-inline) {
    margin-bottom: 2px;
    display: inline-block;
  }
}
.form-list .columns {
  margin: 0;
  margin-left: -12px;
}

.form-list .columns > * {
  padding-left: 12px;
}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input.input-text,
select {
  border: 1px solid #303030;
  color: #eee;
  background: #1a1a1a;
  box-shadow: none;
  padding: 0 14px;
  line-height: 48px;
  /* To cater for border */
  height: 50px;
  font-family: "Open Sans", Tahoma, sans-serif;
  font-size: 1.3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
  display: block;
  outline: none;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input.input-text:focus {
  outline: none;
  color: #fafafa;
  background: #1d1d1d;
  border-color: #393939;
}

::-webkit-input-placeholder {
  color: #aaa;
  opacity: 1;
}

::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #aaa;
  opacity: 1;
}

::placeholder {
  color: #aaa;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.1;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.1;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.1;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0.1;
}

textarea {
  width: 100%;
  resize: vertical;
  height: auto;
  line-height: 1.7;
  padding: 14px;
}

/* .form-validate-styles input.validate:not(:focus):valid{
	background-color: #f3fce8;
	border-color: #a4ce84;
	color: #567f36;
} */
.form-validate-styles input.validate:not(:focus):invalid {
  background-color: #fceaea;
  border-color: #e5abab;
  color: #7c3636;
}

label {
  cursor: pointer;
}

@media only screen and (max-width: 500px) {
  /* Prevent iOS from zooming on inputs */
  textarea,
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  input.input-text,
  select {
    font-size: 16px;
  }
}
/*
	----------------
	SELECT MENUS
	----------------
*/
.selectric-wrapper {
  color: #eee;
  font-size: 1.3rem;
}

.selectric {
  border: 1px solid #303030;
  background: #1a1a1a;
}

/* Select:active */
.selectric-open .selectric {
  border-color: #393939;
  background: #1d1d1d;
}

/* Dropdown menu */
.selectric-items {
  background: #1d1d1d;
  border-color: #393939;
  color: #eee;
}

/* Dropdown menu hover */
.selectric-items li:not(.disabled):hover {
  background: rgba(255, 255, 255, 0.02);
  color: #eee;
}

/* Dropdown menu selected */
.selectric-items li.selected,
.selectric-items li.selected:not(.disabled):hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.selectric .label {
  line-height: 48px;
  height: 48px;
  margin-left: 14px;
}

.selectric .select-button {
  height: 48px;
}

/* Prevent 1px jog */
.selectric-wrapper {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.selectric-items {
  margin-top: -1px;
  z-index: auto;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 10px;
  padding-top: 5px;
}

.selectric-above .selectric-items {
  margin-top: auto;
  margin-bottom: -1px;
  border-width: 1px 1px 0px 1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px -10px 10px;
  padding-top: 0;
  padding-bottom: 5px;
}

/* .selectric-items:before{
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	border-bottom: 1px dashed currentColor;
	opacity: 0.1;
}

	.selectric-above .selectric-items:before{
		top: auto;
		bottom: 0;
	} */
.selectric-items ul,
.selectric-items li {
  line-height: 20px;
}

.selectric-items li {
  background-clip: content-box;
  color: currentColor;
  padding-left: 14px;
}

.selectric-items li.disabled {
  background: none;
}

.selectric-items li.selected:not(.disabled):after {
  content: "\f00c";
  font-family: 'FontAwesome';
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size: 14px;
  margin-left: 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 0.3;
}

/* Hide placeholder item in dropdown menu */
.selectric-items li.selected.disabled {
  display: none;
}

/*
	----------------
	CHECK BOX and RADIO BUTTONS
	----------------
*/
/* Checkbox */
.input {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 3px;
  width: 16px;
  height: 16px;
}

/* Hide input */
.input input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.input input:disabled {
  cursor: default;
}

/* Pseudo input */
.input input ~ span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
}

.input input:disabled ~ span {
  opacity: 0.4;
}

/* Checkbox */
.input input[type='checkbox'] ~ span {
  color: #444;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  box-shadow: inset rgba(0, 0, 0, 0.2) 0px 1px 2px;
}

/* Checkbox: hover */
.input input[type='checkbox']:not(:disabled):hover ~ span,
.input input[type='checkbox']:not(:disabled):focus ~ span {
  border-color: rgba(0, 0, 0, 0.5);
}

/* Checkbox: focus */
.input input[type='checkbox']:not(:disabled):focus ~ span {
  box-shadow: inset rgba(0, 0, 0, 0.2) 0px 1px 2px, rgba(0, 0, 0, 0.1) 0px 0px 0px 3px;
}

/* Checkbox: checked */
.input input[type='checkbox']:checked ~ span {
  border-color: rgba(0, 0, 0, 0.6);
}

/* Checkbox: tick */
.input input[type='checkbox'] ~ span:before {
  content: "\f00c";
  display: block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0) scale(0);
  transform: translate(0, 0) scale(0);
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  font-size: 10px;
  line-height: 14px;
}

.input input[type='checkbox']:checked ~ span:before {
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}

/* Radio */
.input input[type='radio'] ~ span {
  background: #fff;
  color: #444;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  box-shadow: inset rgba(0, 0, 0, 0.2) 0px 1px 3px;
}

/* Radio: hover */
.input input[type='radio']:not(:disabled):hover ~ span,
.input input[type='radio']:not(:disabled):focus ~ span {
  border-color: rgba(0, 0, 0, 0.5);
  box-shadow: inset rgba(0, 0, 0, 0.3) 0px 1px 3px;
}

/* Radio: focus */
.input input[type='radio']:not(:disabled):focus ~ span {
  box-shadow: inset rgba(0, 0, 0, 0.3) 0px 1px 3px, rgba(0, 0, 0, 0.1) 0px 0px 0px 3px;
}

/* Radio: checked */
.input input[type='radio']:checked ~ span {
  box-shadow: inset rgba(0, 0, 0, 0.3) 0px 1px 3px;
  border-color: rgba(0, 0, 0, 0.5);
}

/* Radio: dot */
.input input[type='radio'] ~ span:before {
  background: currentcolor;
  content: "";
  width: 8px;
  height: 8px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.input input[type='radio']:checked ~ span:before {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

/* Inherit text colour */
.input-inherit textarea,
.input-inherit input[type="text"],
.input-inherit input[type="email"],
.input-inherit input[type="password"],
.input-inherit input[type="search"],
.input-inherit input.input-text,
.input-inherit select {
  border-color: currentcolor;
  color: currentcolor;
}

.input-inherit textarea:focus,
.input-inherit input[type="text"]:focus,
.input-inherit input[type="email"]:focus,
.input-inherit input[type="password"]:focus,
.input-inherit input[type="search"]:focus,
.input-inherit input.input-text:focus {
  color: currentcolor;
  border-color: currentcolor;
}

.input-inherit ::-webkit-input-placeholder {
  color: currentcolor;
  opacity: 0.4;
}

.input-inherit ::-moz-placeholder {
  color: currentcolor;
  opacity: 0.4;
}

.input-inherit :-ms-input-placeholder {
  color: currentcolor;
  opacity: 0.4;
}

.input-inherit ::placeholder {
  color: currentcolor;
  opacity: 0.4;
}

.input-inherit .selectric-wrapper {
  color: currentcolor;
}

.input-inherit .selectric {
  border-color: currentcolor;
}

/* Select:active */
.input-inherit .selectric-open .selectric {
  border-color: currentcolor;
}

/* Dropdown menu */
.input-inherit .selectric-items {
  border-color: currentcolor;
  color: currentcolor;
}

.input-inherit .selectric-items li:not(.disabled) {
  opacity: 0.7;
}

/* Dropdown menu hover */
.input-inherit .selectric-items li:not(.disabled):hover {
  color: currentcolor;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.97) 100%), -webkit-linear-gradient(top, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.97) 100%), linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  opacity: 1;
}

/* Dropdown menu selected */
.input-inherit .selectric-items li.selected,
.input-inherit .selectric-items li.selected:hover {
  color: currentcolor;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.94) 100%), -webkit-linear-gradient(top, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.94) 100%), linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  opacity: 1;
}

.input-inherit .input input[type='checkbox'] ~ span,
.input-inherit .input input[type='radio'] ~ span {
  color: currentColor;
  border-color: currentColor;
  box-shadow: none;
}

.input-inherit .input input[type='checkbox']:not(:disabled):hover ~ span,
.input-inherit .input input[type='checkbox']:not(:disabled):focus ~ span,
.input-inherit .input input[type='radio']:not(:disabled):hover ~ span,
.input-inherit .input input[type='radio']:not(:disabled):focus ~ span {
  border-color: currentColor;
  box-shadow: none;
}

/* Checkbox: checked */
.input-inherit .input input[type='checkbox']:checked ~ span,
.input-inherit .input input[type='radio']:checked ~ span {
  border-color: currentColor;
}

/* Ninja forms */
.ninja-forms-required-items {
  margin-bottom: 20px;
}

/*
	----------------
	Ratio blocks
	----------------
*/
.ratio {
  background: #333;
  color: #fff;
  position: relative;
}

.ratio:before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
  /* 16:9 */
}

.ratio-100:before {
  padding-bottom: 100%;
}

.ratio-50:before {
  padding-bottom: 50%;
}

.ratio-33:before {
  padding-bottom: 33%;
}

.ratio > *,
.ratio iframe[src*="youtube"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio > .valign {
  height: auto;
  top: 50%;
}

/* Tabs */
.tab-wrap nav {
  text-align: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-links {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
  position: relative;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
}

.tab-links li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 200px;
  position: relative;
  z-index: 5;
}

.tab-links li:last-child {
  z-index: 1;
}

.tab-links a {
  padding: 10px 20px;
  display: block;
  color: #999;
  position: relative;
}

.tab-links a:hover,
.tab-links .selected a {
  color: #fff;
}

.tab-links .selected {
  position: relative;
  z-index: 10;
}

.tab-links li:last-child:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  content: '';
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

/* Move the cell */
.tab-links li:nth-last-child(2).selected ~ li:last-child:before {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.tab-links li:nth-last-child(3).selected ~ li:last-child:before {
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
}

.tab-links li:nth-last-child(4).selected ~ li:last-child:before {
  -webkit-transform: translateX(-300%);
  transform: translateX(-300%);
}

.tab-links li:nth-last-child(5).selected ~ li:last-child:before {
  -webkit-transform: translateX(-400%);
  transform: translateX(-400%);
}

.tab-links li:nth-last-child(6).selected ~ li:last-child:before {
  -webkit-transform: translateX(-500%);
  transform: translateX(-500%);
}

.tab-links li:nth-last-child(7).selected ~ li:last-child:before {
  -webkit-transform: translateX(-600%);
  transform: translateX(-600%);
}

@media only screen and (max-width: 715px) and (min-width: 560px) {
  .tab-links li {
    width: 160px;
  }
}
/*
	----------------
	Mobile tabs
	----------------
*/
@media only screen and (max-width: 559px) {
  .tab-links {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }

  .tab-links li {
    width: auto;
    border-radius: 22px;
  }

  .tab-links .selected {
    background: rgba(255, 255, 255, 0.1);
  }

  .tab-links li:last-child:before {
    display: none;
  }
}
.tab-content > li {
  display: none;
}

.tab-content > li.selected {
  display: block;
  -webkit-animation: tab-fade 0.5s;
  animation: tab-fade 0.5s;
}

@-webkit-keyframes tab-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes tab-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
	----------------
	Masonry
	----------------
*/
.masonry .column {
  float: left;
}

.masonry .size-1of1 {
  width: 100%;
}

.masonry .size-1of2 {
  width: 50%;
}

.masonry .size-1of3 {
  width: calc(100% / 3);
}

.masonry .size-1of4 {
  width: 25%;
}

.masonry {
  margin-left: -6px;
  margin-right: -6px;
}

.masonry .column {
  padding: 0 6px;
}

.masonry .column > div {
  margin-bottom: 12px;
}

@media screen and (max-width: 400px) {
  .masonry[data-columns]::before {
    content: '1 .column.size-1of1';
  }
}
@media screen and (min-width: 401px) and (max-width: 620px) {
  .masonry[data-columns]::before {
    content: '2 .column.size-1of2';
  }
}
@media screen and (min-width: 621px) and (max-width: 1124px) {
  .masonry[data-columns]::before {
    content: '3 .column.size-1of3';
  }
}
@media screen and (min-width: 1125px) {
  .masonry[data-columns]::before {
    content: '4 .column.size-1of4';
  }
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Raleway", Tahoma, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.6rem;
}

hr {
  box-sizing: content-box;
  margin: 20px 0;
  padding: 0;
  border: 0;
  font-size: 0;
  height: 3px;
  color: inherit;
}

hr:after {
  content: '';
  width: 50px;
  display: inline-block;
  height: 3px;
  overflow: hidden;
  background: currentcolor;
}

.page-title {
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  color: #fff;
}

.page-title:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  z-index: -1;
  background: url("../images/hero-families.jpg") no-repeat 50% 50%;
  background-size: cover;
  opacity: 0.4;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.page-title:after {
  content: '';
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

main > .page-title:first-child {
  margin-top: -40px;
}

.page-title p:last-of-type {
  margin-bottom: 0;
}

/*
	----------------
	HEADER
	----------------
*/
.site-header {
  background: #111;
  position: relative;
  z-index: 100;
}

.logo {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo a {
  width: 350px;
  height: 100px;
  background: url("../images/logo-long.png") no-repeat 50% 50%;
  background-size: contain;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
}

/*
	----------------
	NAVIGATION
	----------------
*/
.navigation-wrap {
  position: relative;
  height: 55px;
  font-family: "Raleway", Tahoma, sans-serif;
}

.navigation {
  color: #dfdfdf;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px;
  font-size: 1.3rem;
  line-height: 55px;
  text-transform: uppercase;
  font-weight: bold;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

.sticky-navigation .site-header {
  background: none;
}

.sticky-navigation .navigation {
  position: fixed;
  background: #111;
}

/* Align list items */
.navigation > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation > ul > li {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.navigation > ul > li:not(:first-of-type):before {
  content: '';
  position: absolute;
  left: -3px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: #888;
  pointer-events: none;
}

/* Navigation link */
.navigation > ul > li > a {
  color: currentColor;
  padding: 0 26px;
  display: block;
}

/* :hover */
.navigation > ul > li:hover {
  color: #fff;
}

/* .active */
.navigation > ul > li.active {
  color: #fff;
}

/* .active text styles */
.navigation > ul > li.active > a {
  font-weight: bold;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .site-header,
  .sticky-navigation .navigation {
    background: rgba(20, 20, 20, 0.7);
    -webkit-backdrop-filter: blur(30px) saturate(140%);
    backdrop-filter: blur(30px) saturate(140%);
  }
}
/*
	----------------
	Mobile navigation
	----------------
*/
/*@media only screen and (max-width: 750px) {
  body:before {
    content: "";
    display: block;
    height: 55px;
  }

  .mobile-nav-active body {
    overflow: hidden;
  }
}*/
/* Can either be fixed or absolute */
.mobile-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.mobile-header {
  color: #fff;
  background: #000;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px;
  padding: 0 10px;
  height: 55px;
  position: relative;
  z-index: 10100;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.mobile-header a {
  color: currentColor;
}

.mobile-logo {
  float: left;
  line-height: 55px;
  font-weight: bold;
  font-size: 1.6rem;
}

.mobile-nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 0 15px;
  height: 40px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mobile-nav-toggle:before {
  content: "\f0c9";
  font-family: 'FontAwesome';
  display: inline-block;
  width: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav-active .mobile-nav-toggle:before {
  content: "\f00d";
}

/* Navigation */
.mobile-navigation {
  background: #1a1a1a;
  text-align: center;
  color: #ddd;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform ease-in-out 0.3s;
  transition: -webkit-transform ease-in-out 0.3s;
  transition: transform ease-in-out 0.3s;
  transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
  display: block;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5050;
  width: 100%;
  height: 100vh;
  padding: 55px 0 20px 0;
  /* this fixes the buggy scrolling on webkit browsers */
  -webkit-overflow-scrolling: touch;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .mobile-navigation {
    background: rgba(20, 20, 20, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
.mobile-nav-active .mobile-navigation {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  overflow: auto;
}

.mobile-navigation ul {
  margin: 0;
}

.mobile-navigation > ul {
  margin-bottom: 60px;
}

.mobile-navigation .nav-dropdown ul {
  font-size: 0.9em;
}

.mobile-navigation a {
  color: currentColor;
  display: block;
  padding: 15px 0;
}

/* Hide or show header elements depending on width */
@media only screen and (min-width: 751px) {
  .mobile-header-wrap,
  .hide-header-desktop {
    display: none;
  }
}
/*@media only screen and (max-width: 750px) {
  .navigation,
  .hide-header-mobile {
    display: none;
  }
}*/
/*
	----------------
	FOOTER
	----------------
*/
#footer {
  color: #bbb;
  text-align: center;
  padding: 0 0 20px 0;
}

#footer p {
  margin-bottom: 0;
}

#footer p:not(:last-of-type) {
  margin-bottom: 5px;
}

.footer-social li {
  display: inline-block;
  font-size: 30px;
  padding: 0 10px;
}

/*
	----------------
	CONTENT
	----------------
*/
main {
  padding: 40px 0;
}

/* Buttons */
button:not([class]),
.button,
input[type="submit"],
.ninja-forms-form-wrap input[type='submit'] {
  color: #fff;
  background: #555;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0 20px;
  height: 40px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Open Sans", Tahoma, sans-serif;
  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
  background: #7b7b7b;
  color: #fff;
}

button:active,
.button:active,
input[type="submit"]:active {
  position: relative;
  top: 1px;
}

/* White buttons */
button.button-white,
.button.button-white,
input[type="submit"].button-white {
  color: #555;
  background: #fff;
  border-color: #fff;
}

/* Transparent button */
button.button-ghost,
.button.button-ghost,
input[type="submit"].button-ghost {
  color: #555;
  background: transparent;
  border-color: #555;
}

button.button-ghost:hover,
.button.button-ghost:hover,
input[type="submit"].button-ghost:hover {
  color: #fff;
  background: #555;
}

/* Transparent white button */
button.button-ghost-white,
.button.button-ghost-white,
input[type="submit"].button-ghost-white {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

button.button-ghost-white:hover,
.button.button-ghost-white:hover,
input[type="submit"].button-ghost-white:hover {
  color: #555;
  background: #fff;
}

/*
	----------------
	Index page
	----------------
*/
.category-images {
  text-align: center;
  color: #fff;
  text-shadow: black 0px 4px 16px;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 300;
}

/*
	----------------
	Fluid typography: font-size: calc( minpx + (max - min) * (100vw - minScreen) / (maxScreen - minScreen) );
	----------------
*/
@media only screen and (min-width: 1801px) {
  .category-images {
    font-size: 54px;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1800px) {
  .category-images {
    font-size: calc( 30px + (54 - 30) * (100vw - 900px) / (1800 - 900) );
  }
}
@media only screen and (min-width: 1140px) {
  .category-images {
    margin: 0 0 -40px -40px;
  }

  .category-images > * {
    padding: 0px 0px 40px 40px;
  }
}
.category-images a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: inherit;
  padding-bottom: 60px;
  height: 2000px;
  max-height: calc(100vh - 276px);
  position: relative;
}

.index-card {
  background: no-repeat 50% 50%;
  background-size: cover;
  border-radius: 3px;
  box-shadow: inset rgba(255, 255, 255, 0.2) 0px 2px 0px, inset rgba(255, 255, 255, 0.1) 0px 0px 0px 2px, rgba(0, 0, 0, 0.7) 0px 10px 50px;
}

.hero-families {
  background-image: url("../images/hero-families.jpg");
}

.hero-weddings {
  background-image: url("../images/hero-weddings.jpg");
}

.hero-corporate {
  background-image: url("../images/hero-corporate.jpg");
}

.category-images h2 {
  position: relative;
  font-size: inherit;
  line-height: inherit;
}

.category-images h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media only screen and (min-width: 901px) {
  .index-card {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }

  .category-images:hover .index-card {
    opacity: 0.5;
  }

  .category-images .index-card:hover {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .category-images h2 {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }

  .category-images .index-card:hover h2 {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  .category-images .index-card:hover h2:after {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media only screen and (max-width: 900px) {
  .category-images a {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
  }

  .category-images a {
    padding-bottom: 0px;
    height: calc(33vh - 50px);
    min-height: 100px;
  }
}
/*
	----------------
	Weddings
	----------------
*/
.page-weddings .page-title:before {
  background-image: url("../images/hero-weddings.jpg");
}

/*
	----------------
	Corporate
	----------------
*/
.page-corporate .page-title:before {
  background-image: url("../images/hero-corporate.jpg");
}

/*
	----------------
	Contact
	----------------
*/
@media only screen and (min-width: 901px) {
  .contact-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .contact-columns > div {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .contact-columns .contact-form-left {
    width: 320px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .contact-form-left {
    text-align: center;
  }

  .contact-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
/*
	----------------
	RESPONSIVE
	----------------
*/
/* Resolution dependent classes */
@media only screen and (min-width: 901px) {
  .hide-desktop {
    display: none !important;
  }
}
@media only screen and (min-width: 501px) and (max-width: 900px) {
  .hide-tablet-only {
    display: none !important;
  }

  .block-tablet-only {
    display: block !important;
  }
}
@media only screen and (max-width: 900px) {
  .hide-tablet {
    display: none !important;
  }

  .block-tablet {
    display: block !important;
  }
}
@media only screen and (max-width: 500px) {
  .hide-mobile {
    display: none !important;
  }

  .block-mobile {
    display: block !important;
  }
}
