 /* GENERAL */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300&display=swap');
/* old font:  'Archivo Narrow', Verdana, Arial, sans-serif; */
 :root{
	--brandColor: #5e1737;
 }
/* 
 html, body {
	height: 100%;
  } */

html {
	scroll-behavior: smooth !important;
	image-rendering: -webkit-optimize-contrast;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	letter-spacing: 0.3px;
}


.container-fluid {
 	width: 90% !important;
}

.row {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

a {
    color: #000000;
}

a:hover {
	text-decoration: none;
    color: #000000;
}

ul {
    list-style-type: none;
    padding-left: none !important;
    padding-inline-start: 0;
}

li {
    display: inline;
}

.block-ul li {
	display: block;
}


.paddingx {
	padding: 0 10px 0 10px !important;
}

.paddingxy {
	padding: 15px 10px 15px 10px !important;
}

/* ---------------------------------------------------- */
/* 						H Tags							*/
/* ---------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
	font-weight: 600;
	font-style: normal;
}

h1, .h1{
	font-size: 24px;
}

h2, .h2{
	font-size: 20px;
}

h3, .h3{
	font-size: 16px;
}

h4, .h4{
	font-size: 15px;
}

h5, .h5{
	font-size: 14px;
}

h6, .h6{
	font-size: 12px;
}


@media (min-width: 768px) {
	h1, .h1{
		font-size: 22px;
	}
	
	h2, .h2{
		font-size: 20px;
	}
}

@media (min-width: 1024px) {
	h1, .h1{
		font-size: 24px;
	}
	
	h2, .h2{
		font-size: 20px;
	}
	
	h3, .h3{
		font-size: 18px;
	}
	
	h4, .h4{
		font-size: 16px;
	}
	
	h5, .h5{
		font-size: 15px;
	}
}

.title {
	font-size: 40px;
	font-weight: 100;
}

/* BUTTONS */
.btn-primary {
    background-color: var(--brandColor);
    color: #ffffff;
    border-radius: 0;
    border: none;
}

.btn-primary:hover {
	background: var(--brandColor);
    filter: opacity(0.9);
}

.btn-primary.disabled, .btn-primary:disabled {
	background-color: #444;
}

.btn-primary:not(:disabled):not(.disabled).active {
	background-color: #555;
	border-color: #555;
}



.bg-lightGrey {
    background-color: #e5e5e5 !important;
}

.bg-lighterGrey {
	background-color: #f4f4f4 !important;
}

.bg-notice {
	/* background-color: #76962a; */
	background-color: #ff0000;
}

button:focus, input {
    outline: none !important;
}

@media only screen and (max-width: 767px){
	.basenoarrow {
		padding-left: 31px !important;
	}
	
	.noarrow {
		padding-left: 16px !important;
	}
}

/* EFFECTS */

.hov-opc {
	transition: opacity, 0.3s;
}

.hov-opc:hover {
	opacity: 0.7;
}

iframe {
	width: 100% !important;
}

.border-silver {
	border-color: silver !important;
}