@font-face {
	font-family: "Mont";
	src: url("fonts/mont-extralightdemo.woff2") format("woff2"),
		url("fonts/mont-extralightdemo.woff") format("woff"),
		url("fonts/mont-extralightdemo.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Mont";
	src: url("fonts/mont-heavydemo.woff2") format("woff2"),
		url("fonts/mont-heavydemo.woff") format("woff"),
		url("fonts/mont-heavydemo.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}

html {
    overflow-y: hidden;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    position: inherit;
}

body {
	background-color: #ebebeb;
    font-family: "Mont";
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0,0,0,0.3);
    margin: 0;
    overflow-x: hidden;
    background-image: url(img/underconstruction_bg.jpg);
    background-size: 120% 120%;
    background-position: center center;
    animation: shrink 15s infinite alternate;
}

.images-holder {
	height: 100%;
    width: 100%;
	overflow: hidden;
	margin: 0 auto;
	position: absolute;
}

.images-holder .sc-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.75);
}

.images-holder .sc-overlay .logo{
    position: absolute;
    bottom: 0;
	padding-bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.images-holder .sc-overlay .content {
	top: 50%;
    left: 50%;
	position: relative;
	text-align: center;
	width: 650px;
    max-width: 100%;
	height: auto;
	display: block;
	transform: translate(-50%, -50%);
	color: #fff;
    padding: 0 50px;
}

.images-holder .sc-overlay .content a{
    color: #ff116b;
    text-decoration: none;
}

.images-holder .sc-overlay .content a:hover{
    text-decoration: underline;
}

.images-holder img {
	display: inline-block;
	float: left;
	margin: 0;
	padding: 0;
	border: 0;
}

.bottom-nav-holder {
	height: 75px;
	background-color: #fff;
	width: 100%;
}


@keyframes shrink {
    0% {
      background-size: 120% 120%;
    }
    100% {
      background-size: 100% 100%;
    }
  }

  @media (max-width: 578px){
      body{
          background-size: cover;
          animation: none;
      }
    .images-holder .sc-overlay .content{
        padding: 0px 20px;
    }
  }