#main {
  background: url(img/bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#main:before {
  content: '';
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  display: flex;
}
#main .logo {
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}
#main h1 {
  font-size: 37px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  font-weight: 500;
  line-height: 44px;
}
#main h1 span {
  color: #ffd600;
  display: block;
  text-align: center;
  font-weight: 700;
}
#main input.send {
  color: #000000;
  background-color: #fff700;
  width: 233px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  border: none;
  font-weight: 700;
  position: relative;
}
#main input {
  outline: none!important;
}
#main input.phone-input {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 7px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 233px;
}
#main .intl-tel-input {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 233px;
}
#main .send-btn {
  position: relative;
  width: 233px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
#main .send-btn:before {
  display: block;
  transform: skewX(-45deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  width: 45px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-85px);
  animation-name: flash;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
body {
  font-family: Roboto;
}
html {
  margin-top: 0 !important;
}
#main .container:before {
  display: none;
}
#main .container:after {
  display: none;
}
#main .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
ul#language-chooser {
  padding: 0;
  margin: 0;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
}
ul#language-chooser li.active a {
  opacity: 1;
  text-decoration: underline;
}
ul#language-chooser li {
  list-style: none;
}
ul#language-chooser li a {
  display: block;
  color: white;
  opacity: 0.8;
  text-decoration: none;
}
@-webkit-keyframes flash {
  20% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes flash {
  20% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes flash-md {
  30% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes flash-md {
  30% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes flash-lg {
  40% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes flash-lg {
  40% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.menu-right {
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.9);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  transform: translateX(100%);
}
.menu-right.active {
  transform: translateX(0%);
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
}
.close-btn .fa {
  font-size: 20px;
  color: white;
  opacity: 1;
}
.menu-right ul {
  padding: 0;
  margin: 0;
}
.menu-right ul li {
  margin-bottom: 10px;
  display: block;
}
.menu-right ul li a {
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  #main h1 {
    font-size: 29px;
  }
  #main {
    padding-top: 15px;
    padding-bottom: 10px;
    min-height: calc(100vh - 25px);
  }
  #main .container {
    min-height: calc(100vh - 25px);
    
  }
  #main span {
    font-size: 29px;
  }
  #main li span {
    font-size: 15px;
  }
  #main .container {
    justify-content: flex-start;
  }
  #main input.phone-input {
    font-size: 18px;
  }
  ul#language-chooser {
    flex-direction: column;
  }
  .menu-btn {
    text-align: right;
    position: relative;
    z-index: 50;
    margin-bottom: 50px;
  }
  .menu-btn .fa {
    color: white;
    opacity: 1;
    font-size: 20px;
  }
}
