@charset "UTF-8";
/* -----------------------------------------
   Home page slider
----------------------------------------- */
#home-slider {
  margin-bottom: 0;
}
#home-slider .slick-slide {
  height: 100vh;
  /*define the height of slide*/
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  position: relative;
}
#home-slider .slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 5px 10px;
}
#home-slider .slider-caption p, #home-slider .slider-caption h3 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#home-slider .slick-dots {
  height: 130px;
  width: 21px;
  position: absolute;
  right: 2%;
  top: 48%;
}
#home-slider .slick-dots li {
  transition: all 1s;
  margin: 0 0 4px;
}
#home-slider .slick-dots li button {
  width: 15px;
  height: 15px;
  border: 2px solid #fcfcfc;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  transition: all 1s;
}
#home-slider .slick-dots li button:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  background-color: transparent;
  transition: all 1s;
}
#home-slider .slick-dots li button:before {
  display: none;
}
#home-slider .slick-dots li:hover button:after {
  background-color: #fcfcfc;
}
#home-slider .slick-dots .slick-active {
  transition: all 1s;
}
#home-slider .slick-dots .slick-active button:after {
  transition: all 1s;
  background-color: #fcfcfc;
}

/* -----------------------------------------
   WordPress Core Classes
----------------------------------------- */
.alignnone {
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption.alignnone {
  margin: 0 1em 1em 0;
}
.wp-caption.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.wp-caption.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

/* -----------------------------------------
   General fixes
----------------------------------------- */
html, body {
  min-height: 100vh;
  height: auto;
}

#wpadminbar {
  opacity: 0.3;
  transition: 0.2s opacity linear;
  -webkit-transform: translateZ(0);
}
#wpadminbar:hover, #wpadminbar:focus {
  opacity: 1;
}

body {
  overflow-x: hidden;
  background-color: #fcfcfc;
  -webkit-font-smoothing: antialiased;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Input Styling */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
  padding: 0 10px;
  margin-bottom: 5px;
  height: 26px;
  line-height: 24px;
  color: #333;
  border: 1px solid #b382d5;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  background-color: #e8e8e8;
  /* STYLES GO THERE */
}

textarea[rows] {
  height: 150px;
  resize: none;
  /*Styles for TextArea*/
}

/* Placeholder styling */
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #d1d1d1;
  font-style: italic;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #d1d1d1;
  font-style: italic;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #d1d1d1;
  font-style: italic;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #d1d1d1;
  font-style: italic;
}

/* Responsive video container (YouTube, Vimeo) */
embed, iframe, object {
  max-width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Align Middle */
.align-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* -----------------------------------------
   Typography
----------------------------------------- */
a:focus {
  outline: none;
}

address {
  font-style: normal;
}

p:empty {
  display: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------
    Clearfix
----------------------------------------- */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/* ------------------------------------
    Basic Styles
------------------------------------- */
h1 {
  font-size: 120px;
  font-weight: 900;
  line-height: 88px;
  margin: 0 0 75px;
  text-transform: uppercase;
}

h2 {
  /*basic heading styles*/
}

h3 {
  /*basic heading styles*/
}

h4 {
  /*basic heading styles*/
}

h5 {
  /*basic heading styles*/
}

h6 {
  /*basic heading styles*/
}

p {
  line-height: 1.2;
  font-size: 16px;
  text-align: left;
}
p a:not([href*='tel:']) {
  text-decoration: underline;
}

ul {
  /*basic list styles*/
}
ul li {
  /*basic list-item styles*/
}

a {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #67308e;
}
a:hover, a:focus {
  color: #592a7b;
  /*basic hover and focus effects*/
}

.hidden {
  display: none;
}

.button {
  padding: 0;
  max-width: 250px;
  width: 100%;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -1px;
  display: inline-block;
  text-transform: uppercase;
  border: 3px solid #000;
  background-color: transparent;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.button:hover, .button:focus {
  background-color: #000;
  color: #fcfcfc;
}

#home-slider .slick-slide, .section-3 .img-wrapper, .gallery .columns .portfolio-item-cont .portfolio-link {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/*-------------------------------
        Paginator
-------------------------------*/
ul.pagination li a {
  padding: 0 7px;
  border-radius: 0;
}

.pagination.current {
  color: #fff;
  background: #67308e;
  padding: 1px 7px 2px 7px;
}

/* ------------------------------------
    Header Styles
------------------------------------- */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  background-color: #fcfcfc;
}
.header .row {
  max-width: 1480px;
}
.header .logo {
  display: inline-block;
  position: relative;
  top: -18px;
}
.header .logo-text {
  height: 100px;
  margin-left: 26px;
  display: inline-block;
  margin-top: 30px;
}
.header .logo-top {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 18px;
  font-size: 24px;
}
.header .logo-bot {
  font-weight: 300;
  font-size: 20px;
  line-height: 16px;
}

.scroll-down {
  position: absolute;
  height: 18px;
  width: 34px;
  bottom: 3%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(schevron-down.png)/*tpa=http://bocarro.be/wp-content/themes/maes/images/schevron-down.png*/;
}
.scroll-down:hover {
  bottom: 2.5%;
}
#lang_sel {
  height: auto;
  position: absolute;
  right: 15px;
  top: 5px;
}
#lang_sel li {
  width: 30px;
  float: none;
}
#lang_sel a {
  color: #000;
  font-size: 18px;
  line-height: 13px;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
#lang_sel a:hover {
  color: #67308e;
}
#lang_sel li ul a, #lang_sel li ul a:link, #lang_sel li ul a:visited,
#lang_sel a.lang_sel_sel, #lang_sel a.lang_sel_sel:visited {
  background-color: transparent !important;
}
#lang_sel a.lang_sel_sel {
  background-image: none;
  background-color: transparent;
}
#lang_sel a, #lang_sel a.lang_sel_sel {
  color: #000 !important;
}
#lang_sel a.lang_sel_sel .icl_lang_sel_current {
  color: #67308e !important;
}
#lang_sel li ul a:hover {
  color: #67308e !important;
}
#lang_sel ul ul {
  width: 30px;
}
#lang_sel ul ul {
  border-top: none;
}
#lang_sel ul ul, #lang_sel a, #lang_sel a:visited {
  border: none !important;
}

/* ------------------------------------
    Content Styles
------------------------------------- */
.section-1 {
  height: 100vh;
  position: relative;
}
.section-1 .row {
  max-width: 100%;
}
.section-1 .caption {
  min-width: 340px;
  position: absolute;
  top: 55%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.section-1 .logo {
  text-align: center;
}
.section-1 .logo-text {
  margin-top: 30px;
  text-align: center;
}
.section-1 .logo-top {
  right: -5px;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
  line-height: 28px;
}
.section-1 .logo-bot {
  right: -2px;
  position: relative;
  font-weight: 300;
  letter-spacing: 3px;
}
.section-1 .logo-bot,
.section-1 .logo-top {
  color: #fcfcfc;
  text-align: center;
  font-size: 39px;
}

.contact-squares {
  margin-left: 0;
  position: absolute;
  top: 57%;
  left: 5%;
  list-style: none;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contact-squares i {
  position: relative;
  top: 0px;
  left: 6px;
}
.contact-squares li {
  position: relative;
  transition: all 1.5s;
}
.contact-squares li:hover a {
  top: -1px;
  left: 61px;
  opacity: 1;
}
.contact-squares li:hover .square-wrapper {
  cursor: pointer;
  background-color: #67308e;
}
.contact-squares li:hover .square-wrapper i {
  color: #fcfcfc;
}
.contact-squares li:last-child a {
  display: block;
  width: 4px;
  height: 34px;
  left: 3%;
  opacity: 1;
  min-width: 25px;
  background-color: transparent;
  border: 0px solid;
  position: relative;
  line-height: 1;
  padding-left: 4px;
  padding-top: 7px;
}
.contact-squares li:last-child a:hover {
  top: 0px;
  border: 0px solid;
}
.contact-squares li:last-child a i {
  font-size: 20px;
  left: 0;
}
.contact-squares li:last-child a:after, .contact-squares li:last-child a:before {
  display: none;
}
.contact-squares li:first-child i {
  left: 8px;
}
.contact-squares li:last-child i {
  left: 11px;
}
.contact-squares li:nth-child(2) i {
  font-size: 20px;
  left: 5px;
  top: -2px;
}
.contact-squares .square-wrapper {
  z-index: 100;
  height: 34px;
  width: 34px;
  font-size: 22px;
  margin-bottom: 35px;
  background-color: #fcfcfc;
  border: 1px solid #fcfcfc;
  transition: all .5s;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contact-squares i {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #67308e;
}
.contact-squares a {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -200px;
  width: auto;
  min-width: 136px;
  height: 36px;
  z-index: -1;
  font-size: 16px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  color: #67308e;
  transition: all .5s;
  border: 1px solid #fcfcfc;
  background-color: #fcfcfc;
  margin-bottom: 33px;
  opacity: 0;
}
.contact-squares a:after {
  content: '';
  right: -21px;
  top: -1px;
  width: 0;
  height: 0;
  position: absolute;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 20px solid #fcfcfc;
}
.contact-squares a:before {
  content: '';
  left: -21px;
  top: -1px;
  width: 0;
  height: 0;
  position: absolute;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 20px solid #fcfcfc;
}

.section-2 img {
  width: 100%;
}
.section-2 .row {
  max-width: 1030px;
  padding: 100px 15px;
}
.section-2 .diensten-title {
  color: #67308e;
  position: relative;
  left: -5px;
}
.section-2 .over-ons-content-col {
  padding-bottom: 80px;
}
.section-2 .diensten-content-col {
  padding-bottom: 40px;
}
.section-2 .over-ons-img-col {
  padding-right: 70px !important;
}

.section-3 h1 {
  padding-left: 20px;
}
.section-3 .columns {
  padding: 0 14px;
}
.section-3 .row {
  padding: 0 0 100px;
  max-width: 1050px;
}
.section-3 .link-col {
  position: relative;
  min-height: 250px;
}
.section-3 .realisaties-link-block, .section-3 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 13px;
  position: absolute;
  color: #fcfcfc;
}
.section-3 a {
  background-color: #67308e;
}
.section-3 a:hover {
  background-color: #000;
}
.section-3 a .wrapper {
  width: 100%;
  position: absolute;
  top: 55%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.section-3 a .wrapper span:nth-child(2) {
  margin-top: 20px;
}
.section-3 a span {
  display: block;
  color: #fcfcfc;
  font-weight: 300;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}
.section-3 a .button-down {
  font-weight: 600;
}
.section-3 a .plus {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 1px solid #fcfcfc;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.section-3 a .plus:after {
  top: -6%;
  left: 30%;
  content: '+';
  font-size: 35px;
  position: absolute;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.section-3 .img-wrapper {
  background-color: transparent;
  position: static;
  display: block;
  min-height: 250px;
  max-height: 250px;
  max-width: 300px;
}
.section-3 .img-wrapper:hover {
  opacity: .7;
}

.diensten-section {
  padding: 200px 0 70px;
}
.diensten-section .row {
  padding: 0 15px 80px;
  max-width: 1030px;
}
.diensten-section .row:last-child {
  padding-bottom: 0;
}
.diensten-section .diensten-content {
  display: inline-block;
  max-width: 575px;
}
.diensten-section .diensten-img {
  max-width: 100%;
  max-height: 200px;
  margin-bottom: 50px;
}
.diensten-section .right-img-col {
  text-align: center;
}
.diensten-section .right-img-col .wrapper {
  text-align: right;
}
.diensten-section .left-img-col {
  text-align: center;
}
.diensten-section .left-img-col .wrapper {
  text-align: left;
}
.diensten-section .right-img-cont {
  padding-right: 20px !important;
}
.diensten-section .left-img-cont {
  padding-left: 20px !important;
  text-align: right;
}
.diensten-section .left-img-cont .diensten-content {
  text-align: left;
}
.diensten-section .button-pink,
.diensten-section .pink {
  color: #67308e;
  border-color: #67308e;
}
.diensten-section .button-pink:hover {
  background-color: #67308e;
  color: #fcfcfc;
}

/* ------------------------------------
    Video
------------------------------------- */
#videoHolder {
  margin-bottom: 30px;
  padding-bottom: 60%;
}

/* ------------------------------------
	TMPL: Contacts
------------------------------------- */
.contact-info {
  margin-bottom: 0;
  position: relative;
}
.contact-info a, .contact-info span {
  padding-left: 45px;
  display: inline-block;
  margin-top: 0;
}
.contact-info a.contact-link, .contact-info span.contact-link {
  text-decoration: none;
}
.contact-info .fa {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 22px;
  color: #67308e;
}

.contact-link {
  font-size: 16px;
  color: #000;
  margin-top: 20px;
  text-decoration: none;
}
.contact-link:hover {
  color: #67308e;
}

.contact-page-row {
  max-width: 1030px;
  padding: 100px 0 80px;
}

.map-col {
  padding-top: 20px;
}
.map-col .acf-map {
  height: 330px;
}
.map-col address {
  font-style: normal;
  margin-top: 15px;
}
.map-col p {
  margin-bottom: 10px;
}

/*basic Gravity Form styles and fixes, if you dont need/use this comment or delete styles below*/
.gform_wrapper {
  /* Input Styling */
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="date"],
.gform_wrapper input[type="datetime"],
.gform_wrapper input[type="datetime-local"],
.gform_wrapper input[type="month"],
.gform_wrapper input[type="week"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="search"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="time"],
.gform_wrapper input[type="url"],
.gform_wrapper textarea {
  padding: 20px 15px;
  margin-bottom: 0;
  height: 65px;
  line-height: 28px;
  color: #333;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #e8e8e8;
  font-size: 18px;
  border: none;
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  /* STYLES GO THERE */
}
.gform_wrapper textarea[rows] {
  height: 160px;
  resize: none;
  /*Styles for TextArea*/
}

.gform_title {
  font-size: 25px;
  margin-top: 20px;
  font-weight: 600;
}

.gform_fields {
  margin: 0;
}

.gfield {
  list-style: none;
  position: relative;
  margin-bottom: 15px;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}
.gfield .gfield_label {
  font-size: 18px;
  position: absolute;
  top: 18px;
  left: 15px;
  -webkit-transition: -webkit-transform 0.3s, color 0.3s;
  transition: transform 0.3s, color 0.3s;
  -webkit-backface-visibility: hidden;
}
.gfield.selected {
  background-color: #67308e;
  padding: 20px 5px 5px;
}
.gfield.selected.gfield_error {
  background-color: #d10d01;
}
.gfield.selected input {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
  height: 40px;
  line-height: 40px;
}
.gfield.selected textarea {
  background-color: #fff;
  height: 135px;
}
.gfield.selected .gfield_label {
  -webkit-transform: translate3d(-15px, -21px, 0) scale3d(0.75, 0.75, 1);
  transform: translate3d(-15px, -21px, 0) scale3d(0.75, 0.75, 1) translateZ(1px);
  color: #fff;
}

.gfield_error input, .gfield_error textarea {
  border-color: red;
}

.gform_confirmation_message {
  margin-top: 50px;
  margin-bottom: 15px;
}

.gform_footer {
  text-align: left;
  /*alining of submit button*/
}
.gform_footer input[type='submit'] {
  text-transform: uppercase;
  font-weight: bold;
  line-height: 42px;
  padding: 0;
  display: inline-block;
  color: #fcfcfc;
  border-color: #67308e;
}
.gform_footer input[type='submit']:hover {
  background-color: #000;
  border-color: #000;
}

.validation_error {
  display: none;
}

.validation_message {
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
}

button, form .button, input[type='submit'] {
  background-color: #67308e;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "Roboto", sans-serif;
  padding: 10px 20px;
}
button:hover, button:focus, form .button:hover, form .button:focus, input[type='submit']:hover, input[type='submit']:focus {
  background-color: #4b2368;
  outline: none;
}

.gform_confirmation_message {
  font-size: 20px;
  color: #9049c1;
  padding: 10px 10px 10px 40px;
  background: rgba(103, 48, 142, 0.1);
  border: 2px solid #67308e;
  position: relative;
}
.gform_confirmation_message:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  width: 25px;
  color: #34A853;
  height: 25px;
  top: 50%;
  left: 10px;
  margin: -13px 0 0 0;
  font-size: 25px;
  line-height: 25px;
}

/* ------------------------------------
    Gallery
------------------------------------- */
/*Gallery styles, if you dont need/use this comment or delete styles below*/
.gallery {
  padding-top: 50px;
}
.gallery .columns {
  float: left !important;
}
.gallery .columns .portfolio-item-cont {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.gallery .columns .portfolio-item-cont .album-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 33px;
  font-size: 12px;
  color: #fff;
  background-color: #67308e;
  padding-left: 10px;
  padding-right: 10px;
  -moz-transition: bottom 0.3s ease;
  -o-transition: bottom 0.3s ease;
  -webkit-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
}
.gallery .columns .portfolio-item-cont .album-name:hover {
  color: #fff;
}
.gallery .columns .portfolio-item-cont:hover .portfolio-link:before {
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.gallery .columns .portfolio-item-cont:hover .album-name {
  bottom: 0;
}
.gallery .columns .portfolio-item-cont .portfolio-link {
  display: block;
  width: 100%;
  height: 210px;
  position: relative;
}
.gallery .columns .portfolio-item-cont .portfolio-link:before {
  content: '\f067';
  font-family: FontAwesome;
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 33px;
  border: 2px solid #67308e;
  background-color: #fff;
  color: #67308e;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.gallery .columns .portfolio-item-cont .portfolio-link img {
  display: block !important;
  width: 100%;
}

.fancybox-skin {
  border-radius: 0;
  box-shadow: none;
}

.fancybox-next span, .fancybox-prev span, .fancybox-close {
  background-image: url("icons-s7052e667bd.png")/*tpa=http://bocarro.be/wp-content/themes/maes/images/icons-s7052e667bd.png*/;
  background-repeat: no-repeat;
  background-size: cover;
  width: 51px;
  height: 51px;
}

.fancybox-next span {
  background-position: 0 0;
  right: -24px;
}

.fancybox-prev span {
  background-position: 0 -51px;
  left: -24px;
}

.fancybox-close {
  background-position: 0 -102px;
}
.fancybox-close:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 40.0625em) {
  .gallery .columns .portfolio-item-cont .album-name {
    bottom: 0;
  }
}
/* ------------------------------------
    Footer Styles
------------------------------------- */
.footer {
  background-color: #1c1c1c;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer .row {
  padding: 74px 0 57px;
  max-width: 1030px;
}
.footer .contacts-wrapper {
  text-align: right;
}
.footer .contact-links,
.footer address {
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
}
.footer .contact-links a,
.footer address a {
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.footer .contact-links a:hover,
.footer address a:hover {
  color: #67308e;
}
.footer .contact-links a:hover:after,
.footer address a:hover:after {
  color: #fcfcfc;
}
.footer .contact-links a:after,
.footer address a:after {
  margin: 0 8px 0 12px;
  content: '/';
  display: inline-block;
}
.footer address a:after {
  display: none;
}
.footer .logo-text {
  display: inline-block;
  margin-top: 15px;
  color: #fcfcfc;
}
.footer .logo-top {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 17px;
  font-size: 18px;
}
.footer .logo-bot {
  top: -3px;
  position: relative;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
}
.footer .copy {
  margin-top: 25px;
  text-align: right;
  color: #fcfcfc;
  font-size: 14px;
  position: relative;
}
.footer .copy:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: -23px;
  width: 50px;
  height: 2px;
  background-color: #67308e;
}
.footer .copy .nomurphy:before {
  /*change delimeter if you need*/
  content: "\00a0\00a0/\00a0\00a0 ";
}
.footer .copy .nomurphy a {
  color: #fcfcfc;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
.footer .copy .nomurphy a:hover {
  border-bottom-color: #fcfcfc;
}

.row-for {
  padding-top: 100px;
}

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

.page-row {
  padding-top: 140px;
}
