/* Globals */
html {
	height: 100%;
}

body {
	font-size: 16px;
	line-height: 170%;
	min-height: 100%;
	height: 100%;
	color: #1A1A1A;
	font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	image-rendering: -moz-auto;
	image-rendering: -o-auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: auto;
	-ms-interpolation-mode: nearest-neighbor;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

hr{
  color: #D9D9D9;
  opacity: 1;
}

/* Logo */

.logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.logo img {
  width: 158px;
}

/* Global basic component styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  color: #1A1A1A;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #1A1A1A;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

h4 {
  font-size: 20px;
}

h5 {
    font-size: 20px;
  }

a {
  color: #4A4A4A;
}

a:hover,
a:focus,
a:active {
  color: #4A4A4A;
  text-decoration: none;
}

a.password-lost {
  text-decoration: underline;
}

.btn {
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 24px 10px;
  font-size: 16px;
  letter-spacing: 0.43px;
  cursor: pointer;
  transition: none;
  font-weight: 400;
}

.btn-small{
  padding: 7px 18px 8px;
}

.btn a:focus,
.btn a:active,
.btn a:hover,
.btn:focus,
.btn:active,
.btn:hover {
  color: #fff;
}

.btn svg {
  margin-right: 5px;
  display: inline-block;
}

.btn:not(:hover) {
  transition: 0.2s ease box-shadow;
}

.btn:hover {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease box-shadow;
}

.btn:focus,
.btn:active {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
  transition: 0.1s ease all;
}

.btn.btn-default {
  color: #555;
  border-color: #ccc;
  border: 1px solid #ccc;
}

.btn.btn-outline{
  border: 1px solid #fff;
  transition: 0.2s ease all;
}

.btn.btn-outline:hover{
  background: #fff;
  color: #222;
}

.btn.btn-default,
.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default:active {
  background-color: #fff;
}

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background-color: #B51324;
}

.btn.btn-secondary,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
  background-color: #333;
}

.btn.btn-success,
.btn.btn-success:hover,
.btn.btn-success:focus,
.btn.btn-success:active {
  background-color: #96b138;
}

.btn.btn-warning,
.btn.btn-warning:hover,
.btn.btn-warning:focus,
.btn.btn-warning:active {
  background-color: #f3b611;
}

.btn.btn-danger,
.btn.btn-danger:hover,
.btn.btn-danger:focus,
.btn.btn-danger:active {
  background-color: #a81818;
}

.btn.btn-inactive,
.btn.btn-inactive:focus,
.btn.btn-inactive:active {
  background-color: #fff;
  color: #ACACAC;
  border: 1px solid #ddd;
}

.btn.btn-inactive:hover {
  color: #FFFFFF;
  background-color: #DD0970;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}

/* Inputs */

.input-wrap {
  position: relative;
}

.input-inline {
  display: inline-block;
}

label.label {
  margin-bottom: 5px;
}

/* Modal */

.modal-open .modal {
	padding: 0 !important;
}

.modal-dialog,
.modal.show .modal-dialog {
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	width: calc(100vw - 60px);
	max-width: 1000px;
	max-height: calc(100vh - 60px);
	overflow-y: auto;
}

.small .modal-dialog,
.modal.show.small .modal-dialog {
	max-width: 400px;
	font-size: 16px;
}


.modal .close {
	text-shadow: none;
	font-weight: 300;
	font-size: 24px;
}

.modal-title {
	font-size: 28px;
	padding: 0px 10px;
}


.modal-body {
	padding: 15px 25px;
}

/* Word wraps */

.word-wrap {
  word-break: keep-all;
  display: inline-block;
}


/* Global container/grid styles */

.wrapper {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
}

footer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  margin: auto 0 0 0;
  width: 100%;
  flex-shrink: 0;
}

.footer-bar {
  background-color: #1A1A1A;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 20px;
  width: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  position: relative;
}

header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  z-index: 99;
}

nav {
  width: 100%;
  height: 60px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

nav .container{
  position: relative;
}

header a {
  text-decoration: none;
}

.nav-fixed-top {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}

.topbar{
	height: 34px;
}

.nav-fixed-top + div {
  margin-top: 34px;
  border: none;
  top: 0;
  left: 0;
  right: 0;
  position: relative;
}

.navigation {
  transition: all 0.2s ease;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
}

.nav-shadow {
  background-color: #000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/* Responsive utilities */

.menu {
  position: fixed;
  background-color: rgba(255, 255, 255, 1);
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: 0;
  padding: 0;
  width: 80vw;
  max-width: 320px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
  z-index: 99;
}

.menu li a .icon {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

#navigation:not(:checked) ~ header .menu {
  left: -80vw;
  transition: left 0.4s ease;
  box-shadow: none;
}

.menu a {
  color: #333;
  display: block;
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.menu a:hover {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.1);
}

#navigation:checked ~ header .nav-toggle {
  border-top: 2px solid RGBA(0, 0, 0, 0);
  margin-top: 4px;
}

#navigation:checked ~ header .nav-toggle::after {
  transform: rotate(45deg);
  top: 8px;
  right: 0.5px;
}

#navigation:checked ~ header .nav-toggle::before {
  transform: rotate(-45deg);
  top: 8px;
  left: 0.5px;
}

.nav-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border-top: 2px solid rgba(255, 255, 255, 1);
  width: 22px;
  height: 30px;
  transition: 0.3s ease all;
  margin-top: 13px;
}

.nav-toggle:after {
  content: "";
  border-top: 2px solid rgba(255, 255, 255, 1);
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 22px;
  transition: 0.3s ease all;
  top: -9px;
}

.nav-toggle:before {
  content: "";
  border-top: 2px solid rgba(255, 255, 255, 1);
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 22px;
  transition: 0.3s ease all;
  top: 5px;
}

.hidden-toggle {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

#navigation:not(:checked) ~ header .hidden-toggle {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
}

.menu li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.menu li.active a{
  background-color: #000000;
  color: #fff;
}

.menu li:last-child {
  margin-right: 0;
}


/* Media queries */

@media (min-width: 576px) {}

@media (min-width: 768px) {
  /* Globals */
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }
	
	h5 {
    font-size: 20px;
  }

  /* Nav */
  .logo img {
    margin-bottom: 1px;
    width: auto;
  }

  nav {
    width: 100%;
    height: 100px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    color: #333;
  }

  .nav-fixed-top {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
  }

  .topbar{
	  height: 44px;
  }

  .nav-fixed-top + div {
    margin-top: 44px;
    border: none;
    top: 0;
    left: 0;
    right: 0;
    position: relative;
  }

  .btn {
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 28px 10px;
    font-size: 16px;
    letter-spacing: 0.43px;
    cursor: pointer;
    transition: none;
    font-weight: 400;
  }

  .btn-small{
    padding: 7px 18px 8px;
  }
}

@media (min-width: 992px) {
  /* Menu essentials */
  .nav-toggle {
    display: none;
  }
  .hidden-toggle {
    display: none;
  }
  nav .container {
    justify-content: space-between;
  }
  .menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    background-color: transparent;
    box-shadow: none;
    position: static;
    width: auto;
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    flex-direction: row;
    color: #333;
    align-items: center;
    padding: 0;
    font-weight: 400;
  }
  .menu a {
    display: inline;
    width: auto;
    padding: 0 0 3px;
    border-bottom: none;
    color: #fff;
    position: relative;
    transition: 0.3s ease all;
    overflow: hidden;
    font-size: 16px;
}
.menu a.contact-btn{
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 24px 10px;
  font-size: 16px;
  letter-spacing: 0.43px;
  cursor: pointer;
  transition: none;
  font-weight: 400;
  background-color: #B51324;
  display: flex;
}
  .menu a:hover {
    box-shadow: none;
  }
  .menu li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-right: 40px;
    width: auto;
    padding: 0;
  }
  .menu li.active a:after{
    left: 0;
  }
  .menu li.active a{
  background-color: transparent;
  color: #fff;
}
  .menu a:after{
    content: "";
    width: 100%;
    height: 2px;
    background: #B51324;
    position: absolute;
    bottom: 0px;
    left: -100%;
    transition: 0.3s ease all;
  }
  .menu a:hover::after {
    left: -0%;
    }
  
  .menu li svg {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    line-height: 5px;
    margin-top: 4px;
  }
  .menu li a .icon {
    display: none;
  }
  .menu li:last-child {
    margin-right: 0;
  }
  .topbar ul.top-pointers span {
    display: inline-block
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 27px;
  }

  h4 {
    font-size: 27px;
  }
	h5 {
    font-size: 22px;
  }
}