body {
  font-family: 'Open Sans', sans-serif;
}

.page-ads {
	/*height: 320px;*/
	/*max-width: 460px;*/

	width: 320px;
	height: 120px;
}

/* COOKIE ALERT */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
	border-radius: 0;
	border-top: 1px solid #000000;
	box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    background: #1c2134 
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
/* END COOKIE ALERT */

/* EFFECTS */

.btn-secondary {
    color: #fff;
    background-color: #3c496d;
    border-color: #000000;
}

.btn-secondary.active-filter {
    background-color: #6d7691;
    border-color: #000000;
}

.height-35vh {
	height: 35vh;
}

.height-45vh {
	height: 45vh;
}

.height-40vh {
	height: 50vh;
}

.section {
    padding-top: 100px;
    margin-top: -100px;
}

.parallax-window {
    width: 100%;
	height: 45vh;
    background: transparent;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

.text-shadow {
  text-shadow: 1px 1px #000000;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* BACKGROUND COLORS */
.background-color-ffffff {
    background-color: #ffffff;
}

.background-color-f6f6f6 {
    background-color: #f6f6f6;
}

.background-color-primary-dark {
    background-color: #1c2134;
}

.background-color-primary-regular {
    background-color: #282f4a;
}


/* BORDER COLORS */
.border-color-primary-dark {
    border-color: #1c2134;
}

.border-color-gray {
    border-color: #cccccc;
}

/* TEXT COLORS */
.text-color-white {
    color: #FFFFFF;
}

.text-color-black {
    color: #000000;
}

.text-color-black {
    color: #000000;
}

.text-color-primary-dark {
    color: #1c2134;
}

/* FONT SIZES */

.text-size-60 {
	font-size: 60px;
}

.text-size-50 {
	font-size: 50px;
}

.text-size-40 {
	font-size: 40px;
}

.text-size-35 {
	font-size: 35px;
}

.text-size-30 {
	font-size: 30px;
}

.text-size-25 {
	font-size: 25px;
}

.text-size-20 {
	font-size: 20px;
}

.text-size-15 {
	font-size: 15px;
}

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

.text-semi-bold {
  font-weight: 600;
}

.text-semi-medium {
  font-weight: 500;
}

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


