/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 8px;
}
 
::-webkit-scrollbar-thumb {
  background: black; 
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1d1584; 
}

/* HEADER */
*{
  padding: 0;
  margin: 0;
	list-style: none;
  text-decoration: none;
  overflow-x: hidden;
}
body{
  
  font-family: 'sf_pro_displaybold', sans-serif;
}
nav{
    height: 80px;
    background:  #0f1c2d;
    background: #0f1c2d;
    overflow: hidden;
}  
nav img{
	position: absolute;
	width: 80px;
	top: 0px;
  left: 5%;
  transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
}
nav img:hover {
    opacity: 0.5;
    cursor: pointer;
}
nav ul{
  float: right;
  margin-right: 25px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 15px;
}
nav ul li a{
  position: relative;
  padding: 5px 0;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}
nav ul li a:before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
	background: rgb(0, 0, 0);
  transform: scaleY(0);
  transform-origin: right;
  transition: transform .4s linear;
}
nav ul li a:hover:before{
  transform: scaleY(1);
  transform-origin: top;
}
label #btn,
label #cancel{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}

/* OTHER DEVICES */
@media (max-width: 1118px){
  nav img{
    left: 8%;
  }
}
@media (max-width: 944px){
  nav img{
    width: 120px;
		top: 8px;
		left: 6%;
  }
	nav ul li a{
		font-size: 17px;
	}
}
@media (max-width: 860px){
  label #btn{
    display: block;
    overflow-y: auto;
  }
  ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0f1c2d;
    background: #0f1c2d;
    top: -99%;
    opacity: 0;
    /*left: -100%;*/
    text-align: center;
    transition: all .5s;
    z-index: 4;
    overflow-y: auto;
  }
  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
    overflow-y: auto;
  }
  nav ul li a{
    font-size: 20px;
  }
  #check:checked ~ ul{
    opacity: 100%;
    top: 80px;
  }
	#check:checked ~ label #btn{
    display: none;
  }
	#check:checked ~ label #cancel{
    display: block;
  }
}

/* Banner */
#banner {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    background-color: #111111;
    color: rgba(255, 255, 255, 0.5);
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    background-image: url("../assets/img/quantum4winner.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 0;
    display: -ms-flexbox;
    height: 35rem !important;
    min-height: 35rem;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%; }
    #banner input, #banner select, #banner textarea {
      color: #ffffff; }
    #banner a {
      color: #ce1b28; }
    #banner strong, #banner b {
      color: #ffffff; }
    #banner h2, #banner h3, #banner h4, #banner h5, #banner h6 {
      color: #ffffff; }
    #banner blockquote {
      border-left-color: rgba(255, 255, 255, 0.25); }
    #banner code {
      background: rgba(255, 255, 255, 0.075);
      border-color: rgba(255, 255, 255, 0.25); }
    #banner hr {
      border-bottom-color: rgba(255, 255, 255, 0.25); }
    #banner input[type="submit"],
    #banner input[type="reset"],
    #banner input[type="button"],
    #banner button,
    #banner .button {
      background-color: transparent;
      box-shadow: inset 0 0 0 1px #ffffff;
      color: #ffffff !important; }
      #banner input[type="submit"]:hover,
      #banner input[type="reset"]:hover,
      #banner input[type="button"]:hover,
      #banner button:hover,
      #banner .button:hover {
        box-shadow: inset 0 0 0 1px #ce1b28;
        color: #ce1b28 !important; }
        #banner input[type="submit"]:hover:active,
        #banner input[type="reset"]:hover:active,
        #banner input[type="button"]:hover:active,
        #banner button:hover:active,
        #banner .button:hover:active {
          background-color: rgba(206, 27, 40, 0.25); }
      #banner input[type="submit"].primary,
      #banner input[type="reset"].primary,
      #banner input[type="button"].primary,
      #banner button.primary,
      #banner .button.primary {
        box-shadow: none;
        background-color: #ce1b28;
        color: #ffffff !important; }
        #banner input[type="submit"].primary:hover,
        #banner input[type="reset"].primary:hover,
        #banner input[type="button"].primary:hover,
        #banner button.primary:hover,
        #banner .button.primary:hover {
          background-color: #e2212f;
          box-shadow: none; }
          #banner input[type="submit"].primary:hover:active,
          #banner input[type="reset"].primary:hover:active,
          #banner input[type="button"].primary:hover:active,
          #banner button.primary:hover:active,
          #banner .button.primary:hover:active {
            background-color: #b71824; }
    #banner label {
      color: #ffffff; }
    #banner input[type="text"],
    #banner input[type="password"],
    #banner input[type="email"],
    #banner input[type="tel"],
    #banner input[type="search"],
    #banner input[type="url"],
    #banner select,
    #banner textarea {
      background-color: rgba(255, 255, 255, 0.075);
      border-color: rgba(255, 255, 255, 0.25); }
      #banner input[type="text"]:focus,
      #banner input[type="password"]:focus,
      #banner input[type="email"]:focus,
      #banner input[type="tel"]:focus,
      #banner input[type="search"]:focus,
      #banner input[type="url"]:focus,
      #banner select:focus,
      #banner textarea:focus {
        border-color: #ce1b28;
        box-shadow: 0 0 0 1px #ce1b28; }
    #banner select {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(255, 255, 255, 0.25)' /%3E%3C/svg%3E"); }
      #banner select option {
        color: rgba(255, 255, 255, 0.5);
        background-color: #111111; }
    #banner input[type="checkbox"] + label,
    #banner input[type="radio"] + label {
      color: rgba(255, 255, 255, 0.5); }
      #banner input[type="checkbox"] + label:before,
      #banner input[type="radio"] + label:before {
        background: rgba(255, 255, 255, 0.075);
        border-color: rgba(255, 255, 255, 0.25); }
    #banner input[type="checkbox"]:checked + label:before,
    #banner input[type="radio"]:checked + label:before {
      background-color: #ce1b28;
      border-color: #ce1b28;
      color: #ffffff; }
    #banner input[type="checkbox"]:focus + label:before,
    #banner input[type="radio"]:focus + label:before {
      border-color: #ce1b28;
      box-shadow: 0 0 0 1px #ce1b28; }
    #banner ::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.4) !important; }
    #banner :-moz-placeholder {
      color: rgba(255, 255, 255, 0.4) !important; }
    #banner ::-moz-placeholder {
      color: rgba(255, 255, 255, 0.4) !important; }
    #banner :-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.4) !important; }
    #banner ul.alt li {
      border-top-color: rgba(255, 255, 255, 0.25); }
    #banner table tbody tr {
      border-color: rgba(255, 255, 255, 0.25); }
      #banner table tbody tr:nth-child(2n + 1) {
        background-color: rgba(255, 255, 255, 0.075); }
    #banner table th {
      color: #ffffff; }
    #banner table thead {
      border-bottom-color: rgba(255, 255, 255, 0.25); }
    #banner table tfoot {
      border-top-color: rgba(255, 255, 255, 0.25); }
    #banner table.alt tbody tr td {
      border-color: rgba(255, 255, 255, 0.25); }
    #banner .highlights .content {
      background: #111111;
      box-shadow: 0px 0px 4px 1px rgba(255, 255, 255, 0.025); }
    #banner .testimonials .content {
      background: #111111;
      box-shadow: 0px 0px 4px 1px rgba(255, 255, 255, 0.025); }
      #banner .testimonials .content .credit strong {
        color: #ce1b28; }
    #banner > .inner {
      -moz-transform: scale(1.0);
      -webkit-transform: scale(1.0);
      -ms-transform: scale(1.0);
      transform: scale(1.0);
      -moz-transition: opacity 1s ease, -moz-transform 1s ease;
      -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
      -ms-transition: opacity 1s ease, -ms-transform 1s ease;
      transition: opacity 1s ease, transform 1s ease;
      opacity: 1;
      position: relative;
      z-index: 3; }
      #banner > .inner > :last-child {
        margin-bottom: 0; }
    #banner h1 {
      font-size: 7rem;
      margin-bottom: 1rem; }
    #banner p {
      font-size: 1.5rem; }
    #banner a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none; }
      #banner a:hover {
        color: #ffffff; }
    #banner video {
      -moz-transform: translateX(50%) translateY(50%);
      -webkit-transform: translateX(50%) translateY(50%);
      -ms-transform: translateX(50%) translateY(50%);
      transform: translateX(50%) translateY(50%);
      bottom: 50%;
      height: auto;
      min-height: 100%;
      min-width: 100%;
      overflow: hidden;
      position: absolute;
      right: 50%;
      width: auto; }
    #banner:before {
      -moz-transition: opacity 3s ease;
      -webkit-transition: opacity 3s ease;
      -ms-transition: opacity 3s ease;
      transition: opacity 3s ease;
      -moz-transition-delay: 2s;
      -webkit-transition-delay: 2s;
      -ms-transition-delay: 2s;
      transition-delay: 2s;
      /*background: #111111;*/
      content: '';
      display: block;
      height: 100%;
      left: 0;
      opacity: 0.45;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 1; }
    #banner:after {
      /* background: #0f1c2d; */ 
      content: ' ';
      display: block;
      height: 100%;
      left: 0;
      opacity: 0.6;
      position: absolute;
      top: 0;
      webkit-linear-gradientidth: 100%;
      width: 100%;
      z-index: 1; }
    #banner.small {
      height: 30vh !important;
      min-height: 30vh; }
    @media screen and (max-width: 1280px) {
      #banner video {
        display: none; } }
   
    @media screen and (max-width: 480px) {
      #banner p {
        font-size: 1rem; } }
    body.is-preload #banner .inner {
      -moz-transform: scale(0.99);
      -webkit-transform: scale(0.99);
      -ms-transform: scale(0.99);
      transform: scale(0.99);
      opacity: 0; }
    body.is-preload #banner:before {
      opacity: 1; }
#banner h1 {
  font-family: 'sf_pro_displaybold', sans-serif;
  z-index: 2; 
  color: #cacaca; 
  margin-top: 150px;
}
@media (max-width: 860px){
  #banner h1 {
    font-size: 6rem;
  }
} @media (max-width: 600px){
  #banner h1 {
    font-size: 5rem;
  }
} @media (max-width: 500px){
  #banner h1 {
    font-size: 4rem;
  }
}
.stack-top{
  max-width: 100%;
  max-height: 100%;
}

/* CARDS */

.line {
  width: 0px;
  height: 0px;
  background: #494949;
  border: 0px;
  margin: 50px auto 30px auto;
}
.container {
    width: 1500px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    overflow-y: hidden;
}
.getstarted_title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 45px;
}
@media (max-width: 860px){
  .getstarted_title {
    font-size: 28px;
  }
} @media (max-width: 600px){
  .getstarted_title {
    font-size: 23px;
  }
} @media (max-width: 500px){
  #banner h1 {
    font-size: 17px;
  }
}

.container .card {
    position: relative;
}
.face {
  border-style: groove;
  border-color: #333;
}
.container .card .face {
    width: 450px;
    height: 250px;
    transition: 0.5s;
    
}
.container .card .face.face1 {
    position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(150px);
    border-radius: 3px;
    
}
.container .card:hover .face.face1 {
    /*background: #a9aeb4;*/
    transform: translateY(0);
}
.container .card .face.face1 .content {
    
    opacity: 1;
    transform: 0.5s;
}
.container .card:hover .face.face1 .content {
    opacity: 1;
}
.container .card .face.face1 .content img {
  display: flex;
  margin: auto;
  justify-content: center;
  width: 450px;
  height: 250px;
}
.container .card .face.face1 .content h3 {
    transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
    margin: 15px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 2.5em;
    /*-webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;*/
    
}
.container .card:hover .face.face1 .content h3 {
    opacity: 0;
}
.container .card .face.face2 {
    position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;  
    box-sizing: border-box; 
    transform: translateY(-150px);
    opacity: 0%;
}
.container .card:hover .face.face2 {
    background: #fff;
    opacity: 100%;
    transform: translateY(0);
}
.container .card .face.face2 .content p {
    margin: 0;
    padding: 0;
    font-size: 30px;
    text-align: center;
}
.container .card .face.face2 .content a {
  transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
    font-weight: 900;
    color: #333;
    text-align: center;
    text-transform: uppercase;
}


@media screen and (max-width: 1800px) {
    .container {
        width: 1000px;
    }
    .container .card .face {
        width: 300px;
        height: 200px;
    }
    .container .card .face.face1 {
      transform: translateY(100px);
    }
    .container .card .face.face1 .content img {
      width: 300px;
      height: 200px;
    }
    .container .card .face.face2 {
        transform: translateY(-100px);
    }
    .container .card .face.face2 .content p {
        font-size: 20px;
    }
    .container .card .face.face2 .content a {
        font-size: 20px;
    }
    .container .card .face.face1 .content h3 {
      font-size: 1.6em;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      vertical-align: middle;
    }
}

@media screen and (max-width: 1500px) {
  .container {
      width: 750px;
  }
  .container .card .face {
      width: 225px;
      height: 150px;
  }
  .container .card .face.face1 {
      transform: translateY(75px);
  }
  .container .card .face.face1 .content img {
    width: 225px;
    height: 150px;
  }
  .container .card .face.face2 {
      transform: translateY(-75px);
  }
  .container .card .face.face2 .content p {
      font-size: 15px;
  }
  .container .card .face.face2 .content a {
      font-size: 15px;
  }
  .container .card .face.face1 .content h3 {
    font-size: 1.25em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    vertical-align: middle;
  }
}

@media screen and (max-width: 900px) {
  .container {
      width: 500px;
  }
  .container .card .face {
      width: 150px;
      height: 100px;
  }
  .container .card .face.face1 {
    transform: translateY(50px);
  }
  .container .card .face.face1 .content img {
    width: 150px;
    height: 100px;
  }
  .container .card .face.face2 {
      transform: translateY(-50px);
  }
  .container .card .face.face2 .content p {
      font-size: 10px;
  }
  .container .card .face.face2 .content a {
      font-size: 10px;
  }
  .container .card .face.face1 .content h3 {
    font-size: 0.83em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    vertical-align: middle;
  }
}
@media screen and (max-width: 600px) {
  .container {
      width: 333.3px;
  }
  .container .card .face {
      width: 100px;
      height: 90px;
  }
  .container .card .face.face1 {
    transform: translateY(45px);
  }
  .container .card .face.face1 .content img {
    width: 100px;
    height: 90px;
  }
  .container .card .face.face2 {
      transform: translateY(-45px);
  }
  .container .card .face.face2 .content p {
      font-size: 6.6px;
  }
  .container .card .face.face2 .content a {
      font-size: 6.6px;
  }
  .container .card .face.face1 .content h3 {
    font-size: 0.555em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    vertical-align: middle;
  }
}

/* ABOUT ***********************************************/

#about {
  align-items: center;
  text-align: center;
  overflow: hidden;
}
#about img {
  width: 240px;
  transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
  overflow-y: hidden;
}

#about img:hover {
  opacity: 0.5;
}
#about h4 {
  font-family: 'sf_pro_displaybold', sans-serif;
  font-size: 25px;
}

#about p {
  padding-top: 40px;
  width: 800px;
  margin: 0 auto 0 auto;
  font-family: 'sf_pro_displaybold', sans-serif;
  font-size: 20px;
  font-weight:normal;
  font-style:bold;
}

.wersindwirtext {
  font-family: 'sf_pro_displaybold', sans-serif;
  font-size: 20px;
  font-weight:normal;
  font-style:normal;
}

#about h3 {
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
  font-size: 45px;
}
@media (max-width: 860px){
  #about h3 {
    font-size: 28px;
  }
} @media (max-width: 600px){
  #about h3 {
    font-size: 23px;
  }
} @media (max-width: 500px){
  #about h3 {
    font-size: 23px;
  }
}
#about p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 25px;
}
@media screen and (max-width: 1500px) {
  #about p {
    width: 650px;
  }
}
@media (max-width: 860px){
  #about p {
    font-size: 28px;
    width: 550px;
  }
} @media (max-width: 600px){
  #about p {
    font-family: 'sf_pro_displaybold', sans-serif;
    font-size: 23px;
    width: 450px;
  }
}
@media (max-width: 500px){
  #about p {
    font-family: 'sf_pro_displaybold', sans-serif;
    font-size: 23px;
    width: 250px;
  }
}

/* FOOTER */
footer{
  bottom: 0;
}
.footer-distributed{
	background: rgb(41,44,47);
  background: rgba(41,44,47,1);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
 
	padding: 55px 50px;
	margin-top: 80px;
}
 
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

.footer-left a {
  margin-right: 15px;
}
 
.footer-distributed .footer-left{
	width: 40%;
}
 
.footer-distributed h3{
	color:  #ffffff;
	font: normal 36px 'Cookie', cursive;
  margin: 0;
}
 
.footer-distributed h3 span{
	color:  #5383d3;
}
 
 
.footer-distributed .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}
 
.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
}
 
.footer-distributed .footer-company-name{
	color:  #8f9296;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}
 
 
.footer-distributed .footer-center{
	width: 35%;
}
 
.footer-distributed .footer-center i{
	background-color:  #33383b;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
  vertical-align: middle;
  overflow: hidden;
}
 
.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}
 
.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff;
	vertical-align: middle;
	margin:0;
}
 
.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}
 
.footer-distributed .footer-center p a{
	color:  #ffffff;
	text-decoration: none;;
}
 
.footer-distributed .footer-right{
	width: 20%;
}
 
.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}
 
.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}
 
.footer-distributed .footer-icons{
  margin-top: 25px;
}
 
.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 5px;
	font-size: 30px;
	text-align: center;
	line-height: 35px;
  margin-right: 3px;
  transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
}
.footer-distributed .footer-icons a i  {
  margin-top: 3px;
  color: #ffffff;
}
.footer-center div i {
  transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
}
.footer-distributed .footer-icons a:hover, .footer-center div i:hover {
  background-color: #ffffff;
}

.footerleftimg {
  width: 70px;
  transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
}
 
.footerleftimg:hover {
  opacity: 0.5;
}

.footerheader {
  transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;
}
.footerheader:hover {
  opacity: 0.5;
  color: rgb(133, 133, 133);
}

@media (max-width: 880px) {
 
	.footer-distributed{
		font: bold 14px sans-serif;
	
	}
 
	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}
 
	.footer-distributed .footer-center i{
		margin-left: 0;
	}
	.main {
		line-height: normal;
		font-size: auto;
	}
}

body {
  
  overflow-y: hidden;
}
