@font-face {
  font-family: 'GothamLight';
  src: url('../assets/fonts/Gotham-Light.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'GothamBold';
  src: url('../assets/fonts/Gotham-Bold.otf') format('opentype');
  font-display: swap;
}

.hide {
  display: none !important;
}

body {
  margin: 0;
  font-family: 'GothamLight', sans-serif;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin-top: 0;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.2;
}

p {
  font-size: 1em;
}
@media (min-width: 1023px) and (max-width: 1440px) {
  p {
    font-size: 0.9em;
  }
}

.mb0 {
  margin-bottom: 0;
}
.mb1 {
  margin-bottom: 1em;
}
.mb2 {
  margin-bottom: 2em;
}

.main {
  position: relative;
  background: linear-gradient(
      90deg,
      #000000 -34.48%,
      rgba(0, 0, 0, 0.839457) 15.22%,
      rgba(0, 0, 0, 0.599008) 50.93%,
      rgba(0, 0, 0, 0) 109.34%
    ),
    url('../assets/images/background_solna.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}
.wrapper {
  padding: 0 6%;
  max-width: 1440px;
  margin: 0 auto;
}
.content {
  width: 100%;
  min-height: calc(100vh - 1em);
  padding: 0.5em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .content {
    width: 70%;
  }
}
@media (min-width: 1367px) {
  .content {
    width: 50%;
  }
}
@media (min-width: 1600px) {
  .content {
    width: 40%;
  }
}
.logo {
  width: 80%;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .logo {
    width: 55%;
  }
}
@media (min-width: 1024px) {
  .logo {
    width: 45%;
  }
}
.title {
  font-size: 30px;
}
@media (min-width: 768px) {
  .title {
    font-size: 50px;
  }
}
.subscribe-form {
  display: flex;
  flex-direction: column;
}
input[type='email'],
input[type='text'] {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  align-self: flex-start;
  font-family: 'GothamLight', sans-serif;
  width: 94%;
  padding: 1em 0 1em 1em;
}
@media (min-width: 768px) {
  input[type='email'],
  input[type='text'] {
    width: 80%;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #ffffff !important;
}
input[type='email']:focus-visible,
input[type='text']:focus-visible {
  outline: none;
}
input[type='email'] {
  margin-bottom: 1em;
}
input[type='text'] {
  margin-bottom: 0.5em;
}

input[type='submit'] {
  background-color: #f15a22;
  border: none;
  color: #ffffff;
  align-self: flex-start;
  padding: 16px 64px;
  text-transform: uppercase;
  font-family: 'GothamBold';
  letter-spacing: 0.05em;
  cursor: pointer;
  width: 100%;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
}
input[type='submit']:hover {
  background-color: #ffffff;
  color: #f15a22;
}
@media (min-width: 768px) {
  input[type='submit'] {
    width: unset;
  }
}
.submit-info {
  margin-top: 0.5em;
}
.submit-info.error {
  color: red;
}
.social {
  margin-top: 1em;
}
.social a {
  width: 35px;
  display: inline-block;
}
.social-logo {
  width: 100%;
}
.social a:first-of-type {
  margin-right: 0.5em;
}
