body {
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	font-size: 1.25rem;
	line-height: 1.8;
	color: #000;
}

h1 {
	font-size: 2.5rem;
}

.subtitle {
	font-size: 1.6rem;
    font-weight: 500;
    padding: 30px 0;
	line-height: 1.8;
}

section {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media (max-width: 767.98px) {
h1 {
	font-size: 1.8rem;
}

.subtitle {
	font-size: 1.5rem;
}
}

@media (max-width: 575.98px) {
.subtitle {
	font-size: 1.25rem;
	line-height: 1.5;
	padding: 0;
}

body {
	font-size: 1rem;
}

section {
	padding-top: 30px;
	padding-bottom: 30px;
}
}



/* COOKIE ALERT
============================================================ */

.cookie-modal .modal {
	bottom: 0;
	top: inherit;
	padding-right: 0 !important;
}

.modal-backdrop {
    display: none;
	z-index: -1;
}

.cookie-modal .modal-content {
	border: none;
	border-radius: 0;
	background-color: #36071b;
	/* opacity: 0.6; */
}

.cookie-modal .modal-body {
	color: #fff;
	max-width: 800px;
	font-size: 14px;
	margin: 0 auto;	
	display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;	
}

.cookie-modal .modal-body a {
    text-decoration: underline;
	color: #fff;
}

.cookie-modal .modal-body a:hover {
    text-decoration: none;
	color: #fff;
}

.cookie-modal .modal-content button.close {
	text-shadow: none;
	opacity: 1;
	font-weight: 600;
	text-shadow: none;
    opacity: 1;
    color: #fff;
	margin-left: 10px;	
}

.cookie-modal .close:not(:disabled):not(.disabled):focus,
.cookie-modal .close:not(:disabled):not(.disabled):hover {
    color: #fff;
    opacity: .75;
}

.cookie-modal .modal-dialog {
    max-width: 100%;
	width: 100%;
    margin: 0;
}

@media (max-width: 575.98px) {
.cookie-modal .modal-body {
    font-size: 12px;
    padding: 10px 10px 10px 10px;
}

.cookie-modal .modal-content button.close {
	font-size: 1.25rem;	
}
}

html.modal-open {

    /* All of this stops the page from scrolling in the background, especially important on mobile devices. */
    -ms-overflow-style: scrollbar;
    overflow: hidden;
    height: 100%;

}

body.modal-open {

  /* This is the crucial rule to get rid of the page shift when opening a modal */
  overflow: auto !important;

  /* You may want to explore toggling this, depending on your circumstances (page length and/or presence of page scroll bars) */
  height: 100%;

}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #fff;
    background-color: #000;
	font-size: 14px;
}

.cookiealert.show {
    opacity: 0.5;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline;
	color: #fff;
}

.cookiealert a:hover {
    text-decoration: none;
	color: #fff;
}

.cookiealert .close {
    text-shadow: none;
	opacity: 1;
	font-weight: 600;
}

@media (max-width: 575.98px) {
.cookiealert {
    font-size: 12px;
    padding: 10px 20px 10px 10px;
}

.cookiealert .close {
	font-size: 1.25rem;
	padding-right: 10px;
}
}

/* FOOTER
============================================================ */

footer {
	background: #241C43;
	color: #ddd;
	font-size: 1rem;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

footer a,
footer a:hover {
	color: #ddd;
}

/* TERMS PAGE
============================================================ */

.terms-page section {
	padding-top: 80px;
}