/* 
Paars: #702283
Donkerpaars: #2a002b
Oranje: #f7a600
*/


/* general styles */
html, body, h1, h2, h3, h4, p, form, ul, li, ol{
  margin: 0px;
  padding: 0px;
}
html, body{
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
body{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6em;
  color: #000;
  background-color: #FFF;
}

a{
  outline: 0;
  color: inherit;
  text-decoration: none;
}

img{
  border: 0;
}

textarea{ 
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  resize: none;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
sub { 
  top: 0.4em; 
}

.clear{
  display: block;
  clear: both;
  min-height: 0px !important;
}

div.container{
  width: 100%;
  margin: 0px;
  padding: 0px;
}
div.centerContent{
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
}
.text-center{
  text-align: center;
}

.textTable{
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.textCell{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.flex{
  display: flex;
}
.justify-space-between{
  justify-content: space-between;
}

/*      HEADER      */
header{
  width: 100%;
  z-index: 2;
  position: relative;
  background-color: #702283;
  color: #FFF;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

header div.topMenu nav {
  display: flex;
  justify-content: space-between;
}

div.topMenu{
  background-color: #e6ddef;
  color: rgb(85,33,103);
  padding-top: 20px;
  padding-bottom: 20px;
}
div.topMenu div.headerSearch form{
  display: flex;
}
input.inputSearch{
  -webkit-appearance: none;
  display: block;
  background-color: #FFF;
  color: #702283;
  height: 30px;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 40px;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0px;
  box-sizing: border-box;
  border: none;
}
div.topMenu div.headerSearch button{
  background-color: #FFF;
  color: #702283;
  border: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  cursor: pointer;
  text-align: center;
}
header div.topMenu nav>ul>li{
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 2px;
}

div.menuHolder{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: initial;
  height: 70px;
}
header a.logoHolder{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  z-index: 10;
  white-space: nowrap;
}
header a.logoHolder img{
  height: 100%;
}
header a.logoHolder span{
  line-height: 1em;
  font-size: 0.9em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin-left: 20px;
}

header li.socials{
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: 0px;
}
header li.socials a{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}
header li.socials a.fa-brands,
header li.socials a.fa-solid{
  font-size: 24px;
}
header li.socials a img{
  height: 24px;
}
header li.socials a span{
  line-height: 1em;
  font-size: 0.9em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin-left: 10px;
}

header div.menuHolder nav{
  box-sizing: border-box;
  margin-left: 50px;
}
header nav>ul{
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: end;
}
header nav ul li{
  list-style-type: none;
  line-height: 1em;
  font-size: 0.9em;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0px;
  box-sizing: border-box;
}
header div.menuHolder nav>ul>li{
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 2px;
}
header nav>ul>li>a {
  display: flex;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
header div.menuHolder nav>ul>li span.border{
  display: none;
  width: 100%;
  height: 4px;
  background-color: #f7a600;
  position: absolute;
  left: 0px;
  top: 40px;
}
header div.menuHolder nav>ul>li:hover span.border{
  display: block;
}
header div.menuHolder nav>ul>li:hover div.submenuHolder{
  display: block;
}

header nav ul li a i{
  padding-left: 5px;
  color: #f7a600;
}

header nav ul li div.submenuHolder{
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  width: 100%;
  box-sizing: border-box;
  top: 140px;
  background-color: #e6ddef;
  padding-top: 10px;
  padding-bottom: 40px;
}

header nav ul li div.submenuHolder div.centerContent{
  display: flex;
  align-items: end;
  justify-content: end;
  min-height: 100px;
}

header nav ul li div.submenuHolder div.centerContent ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  padding-right: 30px;
}

header nav ul li ul li{
  padding-top: 20px;
  text-transform: none;
  font-weight: 600;
  color: #702283;
  padding-right: 30px;
  text-align: left;
}
header nav ul li ul li a:hover{
  text-decoration: underline;
}



/*nav ul li a{*/
/*  display: block;*/
/*  margin: 0px;*/
/*  padding: 0px;*/
/*  height: 100%;*/
/*  width: 100%;*/
/*  box-sizing: border-box;*/
/*  color: inherit;*/
/*}*/
nav ul li.menuButton{
  display: none;
}
nav ul li.mobileMenuItem{
  display: none;
}


/*      CONTENT      */
div.headerImage{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 0px;
  padding-top: 20%;
  position: relative;
}
div.headerImage.home{
  padding-top: 28.5%;
}
div.slideShow{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
div.slideShow div.slide{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


div.headerImage div.headerText{
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  color: #FFF;
  line-height: 1.5em;
  border-left: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
div.headerImage div.headerText div.centerContent{
  height: 100%;
}
div.headerImage div.headerText div.textTable{
  width: 50%;
  float: right;
  text-align: justify;
}
div.headerImage div.headerText div.textCell p{
  border-right: solid 4px #f7a600;
  padding-right: 15px;
}

div.headerAngle,
div.footerAngle{
  width: 100%;
  height: 0px;
  padding-top: 2.74%;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -1px;
  background-image: url('../images/witte-hoek.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
}
div.footerAngle{
  top: -1px;
  bottom: auto;
  background-image: url('../images/witte-hoek-boven.png');
}
div.footerAngle.left{
  background-image: url('../images/witte-hoek-links.png');
}

article{
  padding-top: 90px;
  position: relative;
}
article div.textHolder{
  padding-bottom: 100px;
}
article h1,
article h2,
article div.quote h3,
div.headerText,
div.newsHolder a.newsItem span.title,
div.eventHolder a.newsItem span.title{
  color: #702283;
  font-size: 1.25em;
  line-height: 1em;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-left: solid 4px #f7a600;
  padding-left: 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
  display: block;
  text-align: left;
}
article h2{
  margin-bottom: 20px;
  line-height: 1.4em;
}

article div.textHolder p em{
  display: block;
  font-style: normal;
  color: rgb(112,34,131);
}
article div.textHolder a:not(.ctaButton){
  color: #702283;
}
article div.textHolder h2 strong,
article div.textHolder p strong,
article div.textHolder li strong{
  color: #f7a600;
}

article div.textHolder ul {
  list-style: none;
  margin-left: 25px;
}
article div.textHolder ul li{
  position: relative;
}
article:not(.news) div.textHolder ul li::before {
  content: "\2013";
  color: #f7a600;
  font-weight: bold;
  display: block;
  position: absolute;
  left: -25px;
  top: 0px;
}
article div.textHolder ul li{
  padding-bottom: 10px;
}

article div.textHolder h3,
article div.textHolder span.searchTitle{
  color: #702283;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 20px;
}

div.quote{
  position: relative;
  background-color: #d8ebf0;
  text-align: center;
  padding-top: 5%;
  padding-bottom: 7%;
  margin-bottom: 60px;
}
article div.quote h3{
  color: #702283;
  display: inline-block;
  border-left: none;
  padding-left: 0px;
  margin-bottom: 0px;
  padding-bottom: 5px;
  border-bottom: solid 4px #f7a600;
}

.ctaButton,
input.submitButton{
  background-color: #702283;
  color: #FFF;
  display: inline-block;
  padding: 15px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 40px;
  position: relative;
}
.ctaButton:hover{
  background-color: #f7a600;
}
.ctaButton img{
  position: absolute;
  right: -200px;
  bottom: -80px;
  display: block;
  width: 220px;
}

img.graphic1{
  position: absolute;
  left: -450px;
  top: -200px;
  width: 250px;
}
img.graphic2{
  position: absolute;
  right: -500px;
  top: -350px;
  width: 350px;
}
img.graphic3{
  position: absolute;
  left: -450px;
  top: 500px;
  width: 350px;
}
footer img.graphic{
  position: absolute;
  right: -450px;
  top: -250px;
  width: 300px;
}
.twoCols{
  column-count: 2;
  column-gap: 40px;
}
.twoCols img{
  display: block;
  width: 100%;
}



/*      HOME    */
article.home div.textHolder{
  padding-bottom: 30px;
}
div.crosslinks{
  position: relative;
  background-color: #d8ebf0;
  text-align: center;
  padding-top: 7%;
  padding-bottom: 70px;
}
div.crosslinks h2{
  margin-bottom: 10px;
}
div.crosslinks h2 span{
  display: block;
}
div.crosslinks h2 span:first-child{
  padding-bottom: 10px;
}
div.crosslinks h2:last-of-type{
  border: none;
  padding: 0px;
  color: #f7a600;
  line-height: 1.5em;
}
div.crosslinkHolder{
  margin-top: 30px;
  display: flex;
}
div.crosslinkHolder a{
  color: #702283;
  text-align: center;
  font-weight: 800;
  margin-right: 70px;
  white-space: nowrap;
  text-transform: uppercase;
  width: 25%;
}
div.crosslinkHolder a:hover{
  color: #f7a600;
}
div.crosslinkHolder .crosslink img{
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 20px;
}

div.newsBlock{
  padding-top: 100px;
  margin-bottom: 60px;
}
div.newsBlock div.centerContent{
  display: flex;
  align-items: stretch;
  width: 1000px;
}
/* === Basissettings === */
:root { --gap: 20px; }              /* 3×320 + 2×20 = 1000 */

div.newsBlock .centerContent{
  display: flex;
  align-items: stretch;
  width: 1000px;
}

/* Header + navigatie */
.carouselHeader{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.carouselNavigation .nav{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #702283;
  color: white;
  border: none;
}

.carouselNavigation .nav[disabled]{ opacity:.4; cursor:default; }

/* === Layout: split links/rechts === */
/* Rij met links vaste kaart en rechts carousel */
.newsSplit{
  display: flex;
  align-items: stretch;
  gap: var(--gap);
}

/* === Kaarten === */
.card{
  box-sizing: border-box;            /* voorkom extra breedte door padding/border */
  overflow: hidden;
  width: 320px;                      /* featured links exact 320px */
}
/* Featured links: NIET krimpen, exact 320px */
.card.featured{
  flex: 0 0 320px;   /* geen shrink, geen grow, basis 320px */
  width: 320px;      /* (extra zekerheid) */
  box-sizing: border-box;
}
.card img{ display:block; width:100%; height:auto; }
.card h3{ margin:.75rem 1rem 0; text-transform:uppercase; font-size:0.9em; letter-spacing:2px; min-height: 48px; }
.newsletter .card h3{min-height: 0px; }
.card .date{ display:block; margin:.25rem 1rem .5rem;}
.card .date,
.card__meta li{ text-transform: uppercase; font-weight: 400; font-size: 0.8em; letter-spacing: 1px; }
.card a{ display:inline-block; margin:.5rem 1rem 1rem; color: #702283; font-weight: 400; }
.newsletter .card a{ margin: 0px; }
article.news .newsText .card__meta{ margin-left: 0px;}

/* kleurvarianten */
.card.orange, .searchResult.orange{ background:#feedda; }
.card.blue, .searchResult.blue { background:#d8ebf0; }
.card.purple, .searchResult.purple{ background:#efe3f6; }
.card.orange h3, .searchResult.orange span.searchTitle{ color:#f7a600; }
.card.blue h3, .searchResult.blue span.searchTitle{ color:rgb(0,159,227); }
.card.purple h3, .searchResult.purple span.searchTitle{ color:#702283; }

/* === Carousel rechts === */
.carousel{
  flex: 1 1 auto;
  min-width: 0;      /* voorkomt overflow */
}
.carousel .track{
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0;
}
.carousel .card{
  flex: 0 0 calc((100% - var(--gap)) / 2); /* 2 per view */
  width: auto;
  scroll-snap-align: start;
}
.card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 8px;
  margin-left: 15px;
}
article.news .card__meta {
  margin-left: 15px;
}
article.news .card__meta li {
  padding-bottom: 0px;
}

.card__meta li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  column-gap: 10px;
  line-height: 1.2em;
  padding-bottom: 0px;
}
.card__meta i {
  font-size: 15px;
  line-height: 1;        /* geen extra verticale ruimte */
  color: #702283;           /* kleur naar wens */
  margin-top: 0px;
  text-align: center;
}

/* Scrollbar verbergen maar wel scrollbaar */
.carousel .track::-webkit-scrollbar{ display:none; }
.carousel .track{ -ms-overflow-style:none; scrollbar-width:none; }

/* === Responsief === */
@media (max-width:700px){
  .newsSplit{ flex-direction: column; }
  .card{ width:100%; }               /* featured op volle breedte */
  .carousel .card{ flex-basis:100%; }/* rechts 1 per view */
}

div.coffeeNote{
  display: flex;
  margin-left: 200px;
  position: relative;
  margin-top: 30px;
}
div.coffeeNote img{
  width: 70px;
  position: absolute;
  top: 0px;
  left: -50px;
}
div.coffeeNote span{
  padding-top: 40px;
  text-align: center;
  padding-left: 20px;
  color:#702283;
  font-weight: 400;
  line-height: 1.2em;
}


/*      NEWS    */
.filterButton{
  margin-left: 20px;
}
article.faq img.graphic1{
  top: 150px;
}
article.contact img.graphic1,
article.news img.graphic1{
  top: -150px;
}
article.contact img.graphic2,
article.faq img.graphic2,
article.news img.graphic2{
  top: -150px;
}
article.news img.graphic3{
  top: 600px;
}

article.news div.textHolder{
  padding-bottom: 50px;
}
div.newsHolder{
  width: 100%;
}
div.newsHolder a.newsItem,
div.newsText{
  display: block;
  background-color: #feeed5;
  padding: 25px;
  padding-top: 35px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

article.news div.newsHolder{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

div.pageNav{
  text-align: center;
  box-sizing: border-box;
  text-transform: uppercase;
}
div.pageNav a{
  font-weight: 300;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
div.pageNav a.active,
div.pageNav a:hover{
  color: #702283;
  font-weight: 800;
}
div.pageNav a:first-of-type{
  padding-left: 20px;
}

div.eventHolder{
  width: 32%;
  margin-left: 3%;
  float: left;
  padding-bottom: 100px;
}
div.eventHolder a.newsItem{
  display: block;
  margin-bottom: 30px;
  position: relative;
}

div.eventHolder a.newsItem img.schrijfin1,
div.eventHolder a.newsItem img.schrijfin2{
  position: absolute;
  display: block;
  right: -170px;
  top: 320px;
}
div.eventHolder a.newsItem img.schrijfin2{
  right: 20px;
  top: auto;
  bottom: -120px
}

div.eventHolder a.newsItem span.imageHolder{
  display: block;
  width: 100%;
  height: 0px;
  padding-top: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
article.home div.eventHolder a.newsItem span.imageHolder{
  padding-top: 58%;
}

article.home div.newsHolder,
article.home div.eventHolder{
  float: none;
}

article.album.details h1 a.ctaButton,
article.news h1 a.ctaButton{
  color: #FFF;
  display: block;
  float: right;
  margin-top: 0px;
  font-weight: 300;
  margin-top: -15px;
  font-size: 0.5em;
}

article.news div.textHolder div.imageOverlayHolder{
  position: relative;
}
article.news div.textHolder img.newsImage{
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
article.news div.textHolder div.imageOverlay{
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-image: url('../images/overlay.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: center center;
}

/*      FOTOALBUM     */
article.album.details,
article.album.list{
  width: 100%;
}
article.album div.textHolder{
  padding-bottom: 40px;
  font-weight: bold;
  color: #f7a600;
}

div.albumHolder{
  font-size: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
div.albumHolder a{
  position: relative;
  margin: 0px;
  padding: 0px;
  margin-bottom: 40px;
  background-size: cover;
  background-position: center center;
  width: 300px;
  height: 225px;
}
div.albumHolder a span.overlay{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(112, 34, 131, 0.5);
}
div.albumHolder a span.overlay span{
  display: block;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  letter-spacing: 1px;
}
div.albumHolder a span.overlay span strong{
  font-weight: 700;
}
div.albumHolder a span.overlay span i{
  color: #f7a600;
}
div.pictureHolder{
  font-size: 0px;
  line-height: 0px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
div.pictureHolder a{
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
}
div.pictureHolder a img{
  display: block;
  margin: 0px;
  padding: 0px;
  width: 320px;
  height: 240px;
  object-fit: cover;
}
a.CTAbutton{
  margin-top: 20px;
  display: block;
  position: relative;
  color: #000;
  font-size: 1.5em;
  font-weight: 300;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  padding-left: 20px;
  padding-right: 60px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
a.CTAbutton i{
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 1.6em;
}
a.CTAbutton.back{
  display: inline-block;
  padding-left: 50px;
  padding-right: 0px;
  font-size: 1.25em;
  width: 320px;
  box-sizing: border-box;
  text-align: left;
}
a.CTAbutton.back i{
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 1.6em;
}

/*      TEAM     */
article div.teamHolder{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
article div.teamHolder div.team{
  width: 22%;
}
article div.teamHolder div.team img{
  width: 100%;
}
article div.teamHolder div.team h3 {
  margin-bottom: 5px;
}
article div.teamHolder div.team p {
  color: #702283;
  font-size: 1em;
  line-height: 1.2em;
  border-left: solid 4px #f7a600;
  padding-left: 10px;
  margin-bottom: 40px;
  box-sizing: border-box;
  display: block;
  text-align: left;
}
@media (max-width:1024px){
  article div.teamHolder div.team{
    width: 45%;
  }
}
@media (max-width:500px){
  article div.teamHolder div.team{
    width: 100%;
  }
}


/*      FAQ     */
article.faq div.textHolder{
  padding-bottom: 50px;
}
div.faqHolder{
  margin-top: 50px;
}
div.faqHolder div.faq{
  border-bottom: solid 1px #feeed5;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
div.faqHolder div.faq h2{
  text-transform: none;
  line-height: 1.2em;
  border: none;
  padding: 0px;
  cursor: pointer;
  margin-bottom: 0px;
  letter-spacing: 1px;
}
div.faqHolder div.faq h2 span{
  font-size: 0.7em;
}
div.faqHolder div.faq div{
  display: none;
  margin-top: 8px;
}
div.faqHolder div.faq ul{
  margin-left: 30px;
  margin-top: 10px;
}
div.faqHolder div.faq ul li{
  padding-bottom: 0px;
}




/*      CONTACT    */
div.contactForm{
  text-align: center;
  padding-top: 40px;
}
div.footerContact div.contactForm{
  text-align: left;
}
div.contactForm h3{
  text-align: left;
  color: #702283;
  font-weight: 400;
}

div.formCol{
  width: 48.5%;
  float: left;
}
div.formCol.last{
  margin-left: 3%;
}
input.inputText, select.inputSelect, label{
  -webkit-appearance: none;
  display: block;
  position: relative;
  background: none;
  color: #702283;
  height: 40px;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 10px;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border-radius: 0px;
  box-sizing: border-box;
  border: #f7a600 solid 1px;
  text-align: left;
}
input.inputText:last-of-type{
  margin-bottom: 0px;
}
textarea.inputArea{
  display: block;
  position: relative;
  background: none;
  border: #f7a600 solid 1px;
  color: #702283;
  height: 90px;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  padding: 10px;
  padding-left: 20px;
  width: 100%;
  border-radius: 0px;
  box-sizing: border-box;
}

div.footerContact input.inputText, div.footerContact select.inputSelect, div.footerContact label, div.footerContact textarea.inputArea{
  background-color: #FFF;
}

article.news textarea.inputArea{
  height: 140px;
}


input.inputText.error, select.inputSelect.error, textarea.inputArea.error{
  background-color: #f7a600;
}
div.formCol p{
  font-size: 0.6em;
  text-align: left;
  font-weight: 400;
}
input.submitButton{
  -webkit-appearance: none;
  display: inline-block;
  background-color: #feedda;
  color: #702283;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
}
input.submitButton:hover{
  background-color: #702283;
  color: #FFF;
}
div.footerContact input.submitButton{
  background-color: #702283;
  color: #FFF;
}
div.footerContact input.submitButton:hover{
  background-color: #feedda;
  color: #702283;
}
div.footerContact div.formCol p{
  text-align: right;
  color: #702283;
}

input.inputSearch::-webkit-input-placeholder,
input.inputText::-webkit-input-placeholder,
textarea.inputArea::-webkit-input-placeholder{ /* Chrome/Opera/Safari */
  color: #702283;
}
input.inputSearch::-moz-placeholder,
input.inputText::-moz-placeholder,
textarea.inputArea::-moz-placeholder{ /* Firefox 19+ */
  color: #702283;
}
input.inputSearch::-moz-placeholder,
input.inputText::-moz-placeholder,
textarea.inputArea:-ms-input-placeholder{ /* IE 10+ */
  color: #702283;
}
input.inputSearch:-moz-placeholder,
input.inputText:-moz-placeholder,
textarea.inputArea:-moz-placeholder{ /* Firefox 18- */
  color: #702283;
}



/*      FOOTER      */
footer{
  text-align: left;
}
div.footerContact{
  background-image: url('../images/footer-bg.jpg');
  background-size: 100% auto;;
  background-repeat: repeat-y;
  background-position: center center;
  padding-top: 7%;
  padding-bottom: 5%;
  position: relative;
}
div.footerContact div.footerText p,
div.footerContact div.footerText b{ 
  display: block;
  color: #702283;
  font-size: 1.25em;
  line-height: 1em;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
div.footerContact div.footerText p{
  border-left: solid 4px #702283;
  padding-left: 20px;
  color: #FFF;
  margin-bottom: 10px;
}
div.footerContact div.footerText p span,
div.footerContact div.footerText b span{
  display: block;
}
div.footerContact div.footerText p span:first-child,
div.footerContact div.footerText b span:first-child{
  padding-bottom: 10px;
}
div.footerContact div.contactPic{
  border: solid 4px #f7a600;
  border-radius: 160px;
  width: 320px;
  height: 320px;
  background-image: url('../uploads/image/112_0.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0px;
  top: -220px;
}

div.footerInfo{
  display: flex;
  align-items: stretch;
  padding-top: 95px;
  padding-bottom: 95px;
}
div.footerCol{
  width: 25%;
  box-sizing: border-box;
}
div.footerCol:nth-child(2){
  border-left: solid 2px #f7a600;
  border-right: solid 2px #f7a600;
  text-align: center;
  font-size: 0px;
  line-height: 0px;
}

div.footerCol:nth-child(3){
  width: 50%;
  padding-left: 60px;
}
div.footerCol h3{
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-size: 0.9em;
  font-weight: 800;
  color: #702283;
}
div.footerCol nav ul li{
  position: relative;
  display: block;
  list-style-type: none;
  padding: 0px;
  line-height: 1.6em;
  font-size: 1em;
  cursor: pointer;
  margin: 0px;
  box-sizing: border-box;
}
div.footerCol nav ul li a:hover{
  text-decoration: underline;
}

div.footerCol p{
  line-height: 1.6em;
}
div.footerCol p b{
  font-weight: 800;
  color: #702283;
  font-size: 1.1em;
  letter-spacing: 1px;
}
div.footerCol p span{
  color: #702283;
  font-weight: 800;
}
div.footerCol p a:hover{
  text-decoration: underline;
}
div.footerCol a.logoHolder{
  display: inline-block;
  height: 100%;
  width: 120px;
}
div.footerCol a.logoHolder img{
  display: inline-block;
  width: 100%;
}
div.copyright{
  background-color: #fdd491;
  font-size: 0.5em;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
  color: #702283;
  padding-top: 30px;
  padding-bottom: 30px;
  letter-spacing: 1px;
}
div.copyright br{
  display: none;
}
div.copyright p{
  display: inline;
}
div.copyright a:hover{
  text-decoration: underline;
}

article div.textHolder a.searchResult{
  display: block;
  padding: 20px;
  margin-bottom: 10px;
}
article div.textHolder a.searchResult span.searchTitle{
  display: block;
  text-transform:uppercase;
  font-size:0.9em;
  letter-spacing:2px;
  margin-bottom: 10px;
}
article div.textHolder a.searchResult span.searchText{
  display: block;
}