body {
	font-family: 'Quicksand';
	font-size: 1.1rem;
	letter-spacing: .033rem;
	color: #222;
}
main {
	min-height: 120vh;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Slab';
}



/* container 

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
	.container {
		max-width: 1380px;
	}
}

 container */



/* scroll top */
.scroll-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 40px;
	width: 40px;
	transform: translateY(70px);
	text-align: center;
	font-size: 1.6rem;
	color: #222;
	background-color: orange;
	z-index: 100;
	transition: .4s .4s;
}
.scroll-top-scroll {
	transform: translateY(0);
}
/* scroll top */



/* section */
.section {
	padding-top: 100px;
	padding-bottom: 100px;
}
.section hr {
	margin-top: 100px;
	margin-bottom: 100px;
}
/* section */



/* button */
.btn-standard {
	padding: .5rem 1.75rem;
	background-color: orange;
	border: 1px solid orange;
	border-radius: 22px;
	font-weight: 600;
	cursor: pointer;
}
/* button */



/* accordion */
.card {
	background-color: transparent;
	border: 0px solid transparent;
	border-bottom: 1px solid rgba(0,0,0,.125);
	border-radius: 0rem;
}
.card-header {
	padding: 1.5rem 0rem 1.25rem 0rem;
	background-color: rgba(0,0,0,.0);
	border-bottom: 0px solid transparent;
	cursor: pointer;
	position: relative;
}
.card-header:hover h4,
.card-header:hover i {
	color: #4a96d2;
}
.accordion-arrow {
	font-size: 1.2rem;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.4s;
}
.rotate {
	transform: rotate(-180deg) translateY(50%) !important;
}
.card-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 0rem 0rem 1.25rem 0rem;
}
/* accordion */



/* cookie */
.cookie {
	height: auto;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 17px 0;
	background-color: rgba(0,74,134,.9);
	color: #fff;
	font-size: .9rem;
	z-index: 500;
}
.cookie p {
	padding: 0;
	margin: 0;
}
.cookie a {
	color: orange;
}
.cookie .btn-standard {
	padding: 6px 20px;
}

@media screen and (max-width: 768px) {
	.cookie p {
		margin-bottom: 15px;
	}
	.cookie .btn-standard {
		width: 100%;
		padding: 6px 20px;
	}
}
@media (min-width: 768px) and (max-width: 992px) {
	.cookie .btn-standard {
		width: 48%;
		padding: 6px 20px;
	}
}

.cookie .first {
	margin-top: 6px;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}
.cookie .first:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: rgba(0,74,134,1);
}
.close-cookie {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 1.2rem;
}
.close-cookie a {
	color: #fff;
}
.close-cookie a:hover {
	color: orange;
}
/* cookie */









