html, body, pre, code, kbd, samp, input, button, select, option, textarea {
  font-family: var(--font-theme);
  font-weight: var(--font-medium);
}
p {
  line-height: 150%;
  margin: 0px 0 20px 0;
}
strong {
  font-weight: var(--font-bold)
}
a {
  text-decoration: none;
  outline: none;
  color: var(--color-black);
  cursor: pointer;
}
button, a, input[type="button"] {
  outline: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-bold);
  font-size: 100%;
  line-height: 140%;
  font-family: var(--font-theme);
}
p a {
  color: var(--color-theme-2);
  font-weight: var(--font-medium);
}
p a:hover {
  color: var(--color-theme-2);
}
.is-hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.fig-img {
  position: relative;
}
.fig-img img {
  width: 100%;
  min-width: inherit;
  height: auto;
}
/*--theme CSS--*/
body {
  font-size: 20px;
  color: var(--color-theme-1);	
}

.infogram-embed{
	margin-top: -10px;
}

.loader-screen-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  transform: translateZ(0);
  background-image: url("../images/loader.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  background-color: #e9eaee;	
}
body.is-loaded .loader-screen-wrapper {
  opacity: 0;
}
body::-webkit-scrollbar {
  background-color: var(--color-theme-1);
  width: 0.5rem;
  border-radius: 0.2rem;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-theme-2);
  border-radius: 0.2rem;
}
.main-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease-in;
  padding: 0px 0px 0px 0px;
  text-align: center;
}
.section-wrapper {
  padding: 80px 0px;
}
.section-headline{
  font-size: 250%;
  font-weight: var(--font-semibold);
  margin: 0 0 20px 0;
}
.header-wrapper {
  padding-top: 60px;	
}
.bg-wrapper{
  background-color: var(--color-white);
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
  display: inline-block;
  width: 120px;
  margin-bottom: 10px;
}
.logo svg {
  width: 100%;
  height: auto;
  min-width: inherit;
  vertical-align: middle;
}
.header-wrapper h1 {
  font-size: 230%;
  font-family: 'Bebas Neue', cursive;	
  font-weight: var(--font-regular);
  margin: 0 0 0px 0;
}

.header-wrapper h1 span{
	color: var(--color-theme-2);
}

.header-wrapper p.slogan {
  font-weight: var(--font-medium);
  font-size: 85%;
  opacity: 0.9;
}
.banner-block {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 51%;
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-top: 30px;
}
.content-block {
  padding-top: 60px;
}
.content-block p:last-child {
  margin: 10px;
}

.credit-list{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.credit-list li{
	width: 33.333%;
	margin: 30px 0px;
}
.credit-list li h3{
	font-size: 100%;
	margin-bottom: 2px;
}
.credit-list li h3 a:hover{
	color: var(--color-theme-2);
}
.credit-list li p{
	margin: 0;
	font-size: 85%;
	opacity: 0.9;
}
.credit-list li p a, .slogan a{
	border-bottom: 2px solid var(--color-transparent);
}

.credit-list li p a:hover, .slogan a:hover{
	border-bottom: 2px solid var(--color-theme-2);
}
a.no-url{
	border: 0px solid !important;
	pointer-events: none;
}
.credits-wrapper{
	margin-top: -10px;
}
