/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {    
    font-family: Arial;
    color: #331d35;
    background-color: white;
}

a {
  color: #41307c;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-header {
    position: relative;
    max-height: 120px;
    background-color: #331d35;
}
.cd-header h1 {
  color: #ffffff;
  line-height: 1em;
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    height: 120px;
  }
  .cd-header h1 {
    line-height: 100px;
  }
}

.cd-main-content {
    position: relative;
    max-height: 100vh;
    height: 100vh;
}
.cd-main-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-main-content.is-fixed .cd-tab-filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.cd-main-content.is-fixed .cd-gallery {
  padding-top: 76px;
}
.cd-main-content.is-fixed .cd-filter {
  position: fixed;
  max-height: 100vh;
  overflow: hidden;
}
.cd-main-content.is-fixed .cd-filter form {
  max-height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-main-content.is-fixed .cd-filter-trigger {
  /*position: fixed;*/
}
@media only screen and (min-width: 768px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 100px;
  }
}

/* -------------------------------- 

xtab-filter 

-------------------------------- */
.cd-tab-filter-wrapper {
  background-color: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.cd-tab-filter-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.cd-tab-filter {
  /* tabbed navigation style on mobile - dropdown */
  position: relative;
  height: 60px;
  width: 140px;
  margin: 0 auto;
  /* z-index: 1; */
}
.cd-tab-filter::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.cd-tab-filter ul {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: inset 0 -2px 0 #41307c;
}
.cd-tab-filter li {
  display: none;
}
.cd-tab-filter li:first-child {
  /* this way the placehodler is alway visible */
  display: block;
}
.cd-tab-filter a {
  display: block;
  /* set same size of the .cd-tab-filter */
  height: 50px;
  width: 140px;
  line-height: 50px;
  padding-left: 14px;
}
.cd-tab-filter a.selected {
  background: #41307c;
  color: #ffffff;
}
.cd-tab-filter.is-open::after {
  /* small arrow rotation */
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.cd-tab-filter.is-open ul {
  box-shadow: inset 0 -2px 0 #41307c, 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cd-tab-filter.is-open ul li {
  display: block;
}
.cd-tab-filter.is-open .placeholder a {
  /* reduces the opacity of the placeholder on mobile when the menu is open */
  opacity: .4;
}
@media only screen and (min-width: 768px) {
  .cd-tab-filter {
    /* tabbed navigation style on medium devices */
    width: auto;
    cursor: auto;
  }
  .cd-tab-filter::after {
    /* hide the arrow */
    display: none;
  }
  .cd-tab-filter ul {
    background: transparent;
    position: static;
    box-shadow: none;
    text-align: center;
  }
  .cd-tab-filter li {
    display: inline-block;
  }
  .cd-tab-filter li.placeholder {
    display: none !important;
  }
  .cd-tab-filter a {
    display: inline-block;
    padding: 0 1em;
    width: auto;
    color: #9a9a9a;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3rem;
  }
  .no-touch .cd-tab-filter a:hover {
    color: #41307c;
  }
  .cd-tab-filter a.selected {
    background: transparent;
    color: #41307c;
    /* create border bottom using box-shadow property */
    box-shadow: inset 0 -2px 0 #41307c;
  }
  .cd-tab-filter.is-open ul li {
    display: inline-block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-tab-filter {
    /* tabbed navigation on big devices */
    width: 100%;
    float: right;
    margin: 0;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-tab-filter.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xgallery 

-------------------------------- */
.cd-gallery {
  padding: 26px 5%;
  width: 100%;
}
.cd-gallery li {
  /*margin-bottom: 1.6em;*/
  /*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);*/
  display: inline-block;
}
.cd-gallery li.gap {
  /* used in combination with text-align: justify to align gallery elements */
  opacity: 0;
  height: 0;
  display: inline-block;
}
.cd-gallery img {
  display: block;
  width: 220px;
  margin-left: 65px;
}
.cd-gallery .cd-fail-message {
  display: none;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-gallery {
    padding: 40px 3%;
  }
  .cd-gallery ul {
    text-align: justify;
  }
  .cd-gallery ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-gallery li {
    width: 48%;
    /*margin-bottom: 2em;*/
  }
}
@media only screen and (min-width: 1170px) {
  .cd-gallery {
    padding: 50px 4%;
    float: right;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-gallery li {
    width: 23%;
  }
  .cd-gallery.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xfilter 

-------------------------------- */
.cd-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 20px transparent;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
  -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cd-filter::before {
  /* top colored bar */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: #41307c;
  z-index: 2;
}
.cd-filter form {
  padding: 70px 20px;
}
.cd-filter .cd-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
  background: #37296a;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /* z-index: 3; */
}

.cd-close {
  z-index: 3;
}

.no-touch .cd-filter .cd-close:hover {
  background: #32255f;
}
.cd-filter.filter-is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  /*box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);*/
}
.cd-filter.filter-is-visible .cd-close {
  opacity: 1;
}
@media only screen and (min-width: 1170px) {
  .cd-filter {
    width: 20%;
  }
  .cd-filter form {
    padding: 70px 10%;
  }
}

.cd-filter-trigger {
  /*position: absolute;*/
  /*top: 0;
  left: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;*/
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  /*white-space: nowrap;*/
  background: transparent url("../img/cd-icon-filter.svg") no-repeat center center;
  z-index: 3;
}
.cd-filter-trigger.filter-is-visible {
  pointer-events: none;
}
@media only screen and (min-width: 1170px) {
  .cd-filter-trigger {
    width: auto;
    left: 2%;
    text-indent: 0;
    color: #9a9a9a;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 24px;
    background-position: left center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }
  .no-touch .cd-filter-trigger:hover {
    color: #41307c;
  }
  .cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover {
    color: #ffffff;
  }
}

/* -------------------------------- 

xcustom form elements 

-------------------------------- */
.cd-filter-block {
  margin-bottom: 1.6em;
}
.cd-filter-block h4 {
  /* filter block title */
  position: relative;
  margin-bottom: .2em;
  padding: 10px 0 10px 20px;
  color: #9a9a9a;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.no-touch .cd-filter-block h4:hover {
  color: #41307c;
}
.cd-filter-block h4::before {
  /* arrow */
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-filter-block h4.closed::before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cd-filter-block input, .cd-filter-block select,
.cd-filter-block .radio-label::before,
.cd-filter-block .checkbox-label::before {
    /* shared style for input elements */
    font-family: Arial;
    border-radius: 0;
    background-color: #ffffff;
    border: 2px solid #e6e6e6;
}
.cd-filter-block input[type='search'],
.cd-filter-block input[type='text'],
.cd-filter-block select {
  width: 100%;
  padding: .8em;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: none;
}
.cd-filter-block input[type='search']:focus,
.cd-filter-block input[type='text']:focus,
.cd-filter-block select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #41307c;
}
.cd-filter-block input[type='search'] {
  /* custom style for the search element */
  border-color: transparent;
  background-color: #e6e6e6;
  /* prevent jump - ios devices */
  font-size: 1.6rem !important;
}
.cd-filter-block input[type='search']::-webkit-search-cancel-button {
  display: none;
}
.cd-filter-block .cd-select {
  /* select element wrapper */
  position: relative;
}
.cd-filter-block .cd-select::after {
  /* switcher arrow for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-filter-block select {
  cursor: pointer;
  font-size: 1.4rem;  
}
.cd-filter-block select::-ms-expand {
  display: none;
}
.cd-filter-block .list li {
  position: relative;
  margin-bottom: .8em;
}
.cd-filter-block .list li:last-of-type {
  margin-bottom: 0;
}
.cd-filter-block input[type=radio],
.cd-filter-block input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-filter-block .checkbox-label,
.cd-filter-block .radio-label {
  padding-left: 24px;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-filter-block .checkbox-label::before, .cd-filter-block .checkbox-label::after,
.cd-filter-block .radio-label::before,
.cd-filter-block .radio-label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-filter-block .checkbox-label::before,
.cd-filter-block .radio-label::before {
  width: 16px;
  height: 16px;
  left: 0;
}
.cd-filter-block .checkbox-label::after,
.cd-filter-block .radio-label::after {
  /* check mark - hidden */
  display: none;
}
.cd-filter-block .checkbox-label::after {
  /* check mark style for check boxes */
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-check.svg") no-repeat center center;
}
.cd-filter-block .radio-label::before,
.cd-filter-block .radio-label::after {
  border-radius: 50%;
}
.cd-filter-block .radio-label::after {
  /* check mark style for radio buttons */
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  left: 5px;
}
.cd-filter-block input[type=radio]:checked + label::before,
.cd-filter-block input[type=checkbox]:checked + label::before {
  border-color: #41307c;
  background-color: #41307c;
}
.cd-filter-block input[type=radio]:checked + label::after,
.cd-filter-block input[type=checkbox]:checked + label::after {
  display: block;
}

@-moz-document url-prefix() {
  /* hide custom arrow on Firefox - select element */
  .cd-filter-block .cd-select::after {
    display: none;
  }
}



html {
    font-family: Arial;
}

       
        .fond {
            position: absolute;
            padding-top: 100px;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #00506b;
        }

         .style_prevu_kit {
			 position:relative;
		 }
            /* font-size: 8px; */
            /* display: inline-block; */
            /* border: 0;
            width: 300px;
            height: 350px; */
            /* position: relative; */
            /* -webkit-transition: all 200ms ease-in;
            -webkit-transform: scale(1);
            -ms-transition: all 200ms ease-in;
            -ms-transform: scale(1);
            -moz-transition: all 200ms ease-in;
            -moz-transform: scale(1);
            transition: all 200ms ease-in;
            transform: scale(1); 
        } */

            /*.style_prevu_kit:hover {
                z-index: 2 !important;
                -webkit-transition: all 200ms ease-in !important;
                -webkit-transform: scale(1.3) !important;
                -ms-transition: all 200ms ease-in !important;
                -ms-transform: scale(1.3) !important;
                -moz-transition: all 200ms ease-in !important;
                -moz-transform: scale(1.3) !important;
                transition: all 200ms ease-in !important;
                transform: scale(1.3) !important;
            }*/

.container {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 8px;
    /* width: 100%;
            height: 100%; */
    max-width: 300px;
    height: 330px;
    text-align: left;
    transform-origin: top left;
    /*transform: scale(0.55);*/
    
    margin: 0px;
}

        .image {
            display: block;
            width: 100%;
        }

        .overlay {
            position: absolute;
			border: 2px solid #6f72c7;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 98%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to left, transparent 1%, #c9c9c9 100%) ,url(https://winangay.qlbs.com.au/content/sbc/images/AdvisorBackground.jpg)no-repeat lavender;
			background-size: 300px 170px;
        }

        .overlay2 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom left, transparent 50%, rgba(0,36,110, 0) 50%) 0 60px/140% 80% no-repeat, center/cover;
        }

        .overlay3 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom, transparent 50%, rgba(112, 170, 215, 1.0) 0%) 0 0/160% 100% no-repeat, center/cover;
        }
		
		
		.overlayOppHubs {
            position: absolute;
			border: 2px solid #6f72c7;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 102%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #FFFFFF;
			background-size: 300px 170px;
        }

        .overlay2OppHubs {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom left, transparent 50%, rgba(0,36,110, 0) 50%) 0 60px/140% 80% no-repeat, center/cover;
        }

        .overlay3OppHubs {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom, transparent 50%, rgba(112, 170, 215, 1.0) 50%) 0 0/160% 100% no-repeat, center/cover;
        }
		
		

       .eventoverlay {
            position: absolute;
			border: 2px solid #6f72c7;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
			background: linear-gradient(to left, transparent 2%, #c9c9c9 100%) ,url(https://winangay.qlbs.com.au/content/sbc/images/background.jpg)no-repeat lavender;
			background-size: 300px 170px;
        }

        .eventoverlay2 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom left, transparent 50%, rgba(0,36,110, 0) 50%) 0 60px/140% 80% no-repeat, center/cover;
        }

        .eventoverlay3 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom, transparent 50%, rgba(112, 170, 215) 0%) 0 0/160% 100% no-repeat, center/cover;
        }

        /*.eventoverlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to top left, transparent 50%, rgba(21,107,173, 0) 50%) 0 0/35% 35% no-repeat, center/cover;
        }

        /*.eventoverlay2 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to top right, transparent 50%, rgba(0,36,110, 0.8) 50%) 220px 0/100% 80% no-repeat, center/cover;
        }

        .eventoverlay2 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom, transparent 35%, rgba(0,36,110, 0.8) 0%) 0 /100% 100% no-repeat, center/cover;
        }

        .eventoverlay3 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 1;
            transition: .5s ease;
            background-color: #008CBA;
            background: linear-gradient(to bottom, transparent 50%, rgba(21,107,173, 1.0) 0%) 0 0/160% 100% no-repeat, center/cover;
        }*/

        .top-left-block {
            color: white;
            position: absolute;
            top: 0;
            left: 0;
            max-width: 45%;
            height: 150px;
            margin: 10px;
        }

        .bottom-block {
            color: white;
            font-size: medium;
            position: absolute;
            top: 170px;
            left: 5px;
            right: 5px;
        }

        .eventbottom-block {
            color: white;
            font-size: medium;
            position: absolute;
            top: 160px;
            left: 5px;
            right: 5px;
        }

        .eventtitle-block {
            color: white;
            font-size: medium;
            position: absolute;
            top: 130px;
            left: 5px;
            right: 5px;
        }

        .footer-block {
            color: white;
            font-size: medium;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 5px;
        }

        /*.style_prevu_kit span, .style_prevu_kit p {
            font-size: 8px;
            -webkit-margin-after: 0;
            -webkit-margin-before: 0;
            margin: 0;
        }*/


        .style_prevu_kit span, .style_prevu_kit p {
            font-size: 8px;
            -webkit-margin-after: 0;
            -webkit-margin-before: 0;
            margin: 0;
        }


        a:link {
            text-decoration: none;
        }

        a:visited {
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
			color:black;
        }

        a:active {
            text-decoration: underline;
        }

        .name {
            /*font-weight: bold;*/
            font-size: 12px !important;
        }

        .title {
            font-size: 10px !important;
        }

        .full {
            width: 100%;
            margin: 3px;
            margin-bottom: 5px;
            /*font-style: italic;*/
        }

.provider, .footer, .pfooter {
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 8px !important;
    color: rgb(108, 166, 211);
}

        .provider {
            font-weight: bold;
            font-size: 12px !important;
        }

        .heading {
            color: rgb(108, 166, 211);
        }

        .text {
            /*max-width: 95%;*/
            margin-bottom: 5px;
            font-size: 6.5px !important;
        }

        .accent {
        }

        * {
            box-sizing: border-box;
        }

        .content {
            /*width: 1400px;*/
            margin: 0 auto;
            /*margin-top: 80px;*/
            border: 1px;
        }

        .col1 {
            float: left;
            padding: 5px;
            /*background-color: white;*/
            /*width:800px;*/
            height: 400px;
            text-align: center;
        }



        .col2 {
            float: right;
        }

        .bg {
            display: inline-block;
            width: 370px;
            height: 270px;
            background-size: 370px 270px;
        }


        .box {
            display: inline-block;
            width: 370px;
            height: 270px;
            transition: all ease-in 0.3s;
        }

        .boxnoanimate {
            display: inline-block;
            width: 370px;
            height: 270px;
        }

        .box:hover {
            background-color: rgba(0,0,0, 0.5);
        }

            .box:hover .texte {
                background-color: transparent;
                margin-top: 40px;
            }

.texte {
    position: absolute;
    display: inline-block;
    width: 370px;
    text-align: center;
    padding: 20px 0;
    color: #ffffff;
    text-transform: uppercase;
    font-family: Arial;
    font-size: 20px;
    text-shadow: 0px 2px 2px rgba(0,0,0,0.8);
    margin-top: 207px;
    background-color: rgba(0,0,0,0.7);
    transition: all ease-in 0.3s;
}

.desc {
    position: absolute;
    width: 370px;
    margin-top: 150px;
    text-decoration: none;
    text-align: center;
    font-family: Arial;
    font-style: italic;
    font-size: 14px;
    line-height: 1.4;
    color: transparent;
    text-shadow: 0px 2px 2px rgba(0,0,0,0);
    transition: all ease-in 0.3s;
}

        .see-more {
            text-decoration: underline;
        }

.legend {
    text-align: center;
    font-family: Arial;
    font-size: 11px;
    color: rgb(192,192,192);
}

        .form-box {
            padding-top: 10px;
            padding-bottom: 10px;
            font-size: 15px;
            margin-left: 30px;
            width: 200px;
        }



        .on {
            color: #ffffff;
            text-shadow: 0px 2px 2px rgba(0,0,0,0.8);
        }



        .grow table {
            transition: 1s ease;
        }



        table:hover + input {
            display: block;
        }

        /*.grow table:hover {
            -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
            transform: scale(1.2);
            transition: 1s ease;
        }*/

        .showme {
            display: none;
        }

        .showhim:hover .showme {
            display: block;
        }

        .cd-gallery ul {
          height:100% !important;
          width:100% !important;
        }

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    color: initial;
    padding:5px;
}

.cd-filter-trigger {
    display: block;
}

/*.cd-filters {
    display:none;
}*/

@media only screen and (min-width: 768px) {
    .cd-filter-trigger {
        display: none;
    }

}

.dropdown {
    padding-right: 35px !important;
    width: 200px !important;
}

.div-table {
    display: table;
    width: auto;
}

.div-table-row {
    display: table-row;
    width: auto;
    clear: both;
}

.div-table-col {
    float: left; /* fix for  buggy browsers */
    display: table-column;
}

.hyperlink-button {
    text-decoration: none !important;
    background-color: #4236a7;
    padding: 4px 50px 4px 50px;
	border: 3px solid #ffffff;
    text-align: center;
    font-weight: bold;
    color: white;
    border-radius: 2em;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}