
/*//////////////FONTS///////////////*/

body {
  margin: 0;
}

h1,.h1 {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 720px) {
  h1 {
    font-size: 1.4rem;
  }
}


h2,.h2 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #4d4d4f;
  text-transform: uppercase;
}

h3,.h3 {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 1200px) {
  h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 720px) {
  h3 {
    font-size: 1.2rem;
  }
}

h4,.h4 {
  font-family: 'Arial', sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  margin-bottom: 0;
  color: #4d4d4f;
  letter-spacing: 1.5px;
}

p {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 100;
  font-size: 1.4rem;
  color: #ffffff;
  margin-top: 0;
}
@media only screen and (max-width: 1200px) {
  p {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 720px) {
  p {
    font-size: 1rem;
  }
}

strong {
  font-weight: 500;
  color: #d2232a;
}

hr {
  width: 60px;
  height: 5px;
  background-color: #4d4d4f;
  border: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: #95cff1;
}
.background {
  background-size: 100% auto;
  background-repeat: repeat-y;
}
/*//////////////LAYOUT///////////////*/



.banner {
  width: auto;
  height: 100%;
}



.row {
  margin: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}
@media only screen and (max-width: 1300px) {
  .row {

  }
}

.column {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  height: 100vh;
}

.img {
  height: auto;
  width: 100%;
}

.logo {
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1200px) {
  .logo {
    width: 600px;
  }
}
@media only screen and (max-width: 720px) {
  .logo {
    width: 350px;
  }
}

.bg-left {
  width: 50%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.bg-right {
  width: 50%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
