body {
  font-family: 'Akrobat', sans-serif;
  color: #ffffff;
  min-height: 100vh;
  background-color: #021331;
  background-image: url("../img/bg.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  text-transform: uppercase;
  background-repeat: no-repeat;
  overflow-x: hidden;
  position: relative;
}

.container {
  padding-left: 9%;
  padding-right: 5%;
  width: 100%;
}

.header {
  padding: 14px 0;
  -webkit-box-shadow: 3px 5px 18px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 5px 18px rgba(0, 0, 0, 0.5);
}

.main {
  padding-top: 100px;
}

.main .main-container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.logo {
  display: block;
}

.logo img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.main-col {
  padding-bottom: 40px;
  position: relative;
}

.main-col h1 {
  font-size: 78px;
  font-weight: 400;
  line-height: 83.14px;
  font-weight: 900;
  margin-bottom: 80px;
}

.main-col h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 43.24px;
  margin-bottom: 30px;
}

.image-col {
  /*height: -webkit-calc(100vh - 198px);*/
  /*height: calc(100vh - 198px);*/
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  text-align: right;
}

.image-col img {
  display: inline-block;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.red-color {
  color: #ff0026;
}

.subscribe-form {
  max-width: 525px;
}

.input-field {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #021833;
  padding: 15px 20px;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  height: 64px;
}

.input-field .input {
  display: inline-block;
  position: relative;
  top: -5px;
  font-size: 25px;
  line-height: 1;
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border: none;
  border-bottom: 2px solid #021833;
  margin-left: 8px;
}

.input-field .input:focus,
.input-field .input:active {
  outline: none;
  border-bottom-color: #ff0026;
}

.error-text {
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #ff0026;
  border: none;
  color: #ffffff;
  padding: 15px 35px;
  cursor: pointer;
  margin-right: 30px;
}

.button:hover {
  opacity: 0.7;
}

.social {
  margin-top: 60px;
}

.social-item {
  display: inline-block;
}

.social-item:hover svg {
  fill: #ff0026;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-links-title {
  text-transform: none;
  opacity: .5;
  margin-right: 15px;
}
.footer-link {
  margin: 0 6px;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}
.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

/*------------------------------ MEDIA --------------------------*/

@media (orientation: portrait) and (min-width: 768px) {
  .image-col {
    /*height: -webkit-calc(100vh - 188px);*/
    /*height: calc(100vh - 188px);*/
    max-height: 500px;
  }
  body {
    overflow-y: hidden;
  }
  .main {
    height: 100%;
    padding-top: 0;
    padding-bottom: 20vh;
  }
  .main .main-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 1440px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .main {
    padding-top: 90px;
  }
  .main-col h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .main-col h2 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .input-field {
    margin-bottom: 15px;
  }
  .image-col {
    /*height: -webkit-calc(100vh - 188px);*/
    /*height: calc(100vh - 188px);*/
  }
}

@media (max-width: 991px) {
  .image-col {
    display: none;
  }
  .logo {
    max-width: 90px;
  }
  .main {
    padding-top: 50px;
  }
  .main-col h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
  }
  .social {
    margin-top: 30px;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .image-col {
    display: block;
  }
}

@media (max-width: 767px) {
  .image-col {
    display: none;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main {
    padding-top: 30px;
  }
  .main-col h1 {
    margin-bottom: 25px;
  }
  .main-col h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .subscribe-form {
    max-width: 290px;
  }
  .subscribe-form .input {
    max-width: 220px;
    width: 100%;
    font-size: 16px;
    line-height: 16px;
  }
  .subscribe-form .input-field {
    font-size: 16px;
    line-height: 16px;
    padding: 10px 14px;
  }
  .social-item svg {
    width: 30px;
    height: 30px;
  }
  .button {
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .social {
    margin-top: 20px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .main {
    padding-bottom: 0;
    height: auto;
  }
  .main-col .subscribe-form {
    max-width: none;
  }
  .main-col .subscribe-form .input-field {
    max-width: 290px;
  }
  .social {
    margin-top: 25px;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .main {
    padding-top: 5vh;
    height: -webkit-calc(100% - 120px);
    height: calc(100% - 120px);
  }
  .main .main-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .social {
    margin-top: 10px;
  }
}