html {
	font-size: 62.5%;
}
body {
	font-size: 1.8rem;
	color: #202125;
	background: #f5f5f5;
}
a {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	color: #000;
}
a:hover {
	color: #be172c;
}
h1, .h1 {
	font-size: 3.5rem;
	font-weight: 700;
}
h2, .h2 {
	font-size: 3rem;
	font-weight: 700;
}
h3, .h3 {
	font-size: 2.5rem;
	font-weight: 700;
}
h4, .h4 {
	font-size: 2.2rem;
	font-weight: 700;
}
p {
	margin-bottom: 1.5rem;
}
section {
	position: relative;
}


/* NAVBAR */
.nav-primary {
	background: #58585a;
	height: 52px;
	margin: 0 -15px;
	position: relative;
}
.nav-primary.fixed, .nav-primary.open {
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
}
.hamburger {
	line-height: 52px;
	position: absolute;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	width: 123px;
	height: 52px;
	padding: 0 0 0 56px;
}
.hamburger:hover {
	color: #fff;
	text-decoration: none;
}
.hamburger span {
	background: #fff;
    display: block;
    position: absolute;
    left: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
/*    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;*/
    width: 25px;
    height: 3px;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 24px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger span:nth-child(4) { top: 32px; }

/* CONTACT FORM */
.form-field {
  display: block;
  margin-bottom: 16px;
}
.form-field__label {
  font-size: 1rem;
  -webkit-transform: translateY(-11px);
  transform: translateY(-11px);
  display: block;
  font-weight: normal;
  left: 0;
  margin: 0;
  padding: 12px 12px 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
}
.form-field__control {
  background: #f4f4f4;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
  border: 1px solid #b8b8b8;
}
.form-field__input,
.form-field__textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	color: #333;
	display: block;
	margin-top: 20px;
	outline: 0;
	padding: 0 12px 5px 12px;
	width: 100%;
}
.form-field__input:-ms-input-placeholder ~ .form-field__label,
.form-field__textarea:-ms-input-placeholder ~ .form-field__label {
  font-size: 1rem;
  transform: translateY(0);
}
.form-field__input:placeholder-shown ~ .form-field__label,
.form-field__textarea:placeholder-shown ~ .form-field__label {
  font-size: 1.8rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.form-field__input:focus ~ .form-field__label,
.form-field__textarea:focus ~ .form-field__label {
  color: #be172c;
  font-size: 1rem;
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
}
.form-field__control.active {
	border-color:#be172c
}
.form-field__textarea {
  height: 150px;
}


/* ACCORDION */
dl.accordion dt {
	padding: 0;
	text-align: left;
	margin: 10px 0 0;
	background: #f5f5f5;
}
dl.accordion dt a {
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 20px 50px 20px 20px;
	position: relative;
	line-height: normal;
	background: transparent;
}
dl.accordion dt a:after {
	content: '';
	display: table;
	width: 10px;
	height: 10px;
	border: 2px solid #a6a8b0;
	border-width: 0 0 2px 2px;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -8px;
}
dl.accordion dt a:hover:after {
	border-color: #be172c;
}
dl.accordion dt.faq-active a:after {
	-moz-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}
dl.accordion dt.faq-active a {
	text-decoration: none;
}
dl.accordion dd {
	display: none;
	margin: 0;
	background: #f5f5f5;
	padding: 0 20px 20px 20px;
	margin: 0;
	text-align: left;
}



/* OVERLAY */
body.noscroll {
	overflow: hidden;
}
.overlay {
	position: fixed;
    top: 0px;
	bottom: 0;
    left: 0;
	right: 0;
    background-color: rgba(0, 0, 0, 0.75);
	z-index: 100;
	display: none;
	overflow: auto;
}
.overlay-close, .overlay-close-hot {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 3rem;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.overlay-close span {
	width: 50px;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	top: 25px;
}
.overlay-close span:nth-child(1) {
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.overlay-close span:nth-child(2) {
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.overlay-content {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    outline: 0;
}

/* BUTTONS */
.btn {
	
}
.btn-primary {
	
}
:hover.btn-primary {
	
}

/* COLORS */


@media (min-width: 576px) {
	
} /* end min-width: 576px */

@media (min-width: 768px) {
	
} /* end min-width: 768px */

@media (min-width: 992px) {
	
} /* end min-width: 992px */

@media (min-width: 1200px) {
	
} /* end min-width: 1200px */