* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

header {
  height: 80px;
  width: 100%;
  background-color: #25273e;
}

header .img {
  width: 100%;
  padding: 0;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .img img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

main {
  background-color: #dcdae5;
  width: 100%;
  height: calc(100% - 80px);
  min-height: 750px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  position: relative;
}

main h2 {
  padding: 10px 0 20px;
  text-align: center;
  font-size: 24px;
  color: #333;
  font-weight: 700;
}

.main_bg_start{
  width: 100%;
  height: 100%;
}

.main_bg {
  display: none;
  width: 100%;
  height: 100%;
}

.main_bg .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-animation-duration: 15s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  will-change: opacity
}
.main_bg_start .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: opacity
}

.main_bg_start .slide_start {
  background-image: var(--image-one);
  -webkit-animation: backgroundstart 1.5s ease-out;
  -moz-animation: backgroundstart 1.5s ease-out;
  -o-animation: backgroundstart 1.5s ease-out;
  animation: backgroundstart 1.5s ease-out;
}

.main_bg .slide01 {
  -webkit-animation-name: backgroundone;
}

.main_bg .slide02 {
  -webkit-animation-name: backgroundtwo;
}

.main_bg .slide03 {
  -webkit-animation-name: backgroundthree;
}

@-webkit-keyframes backgroundstart{
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes backgroundone {
  0% {
    background-image: var(--image-one);
    -webkit-opacity: 1;
    opacity: 1;
  }
  23% {
    background-image: var(--image-one);
    -webkit-opacity: 1;
    opacity: 1;
  }
  28% {
    background-image: var(--image-one);
    -webkit-opacity: .5;
    opacity: .5;
  }
  33% {
    background-image: var(--image-one);
    -webkit-opacity: 0;
    opacity: 0;
  }
  90% {
    background-image: var(--image-one);
    -webkit-opacity: 0;
    opacity: 0;
  }
  95% {
    background-image: var(--image-one);
    -webkit-opacity: 0.5;
    opacity: 0.5;
  }
  100% {
    background-image: var(--image-one);
    -webkit-opacity: 1;
    opacity: 1;
  }
}

@-webkit-keyframes backgroundtwo {
  0% {
    background-image: var(--image-two);
    -webkit-opacity: 0;
    opacity: 0;
  }
  23% {
    background-image: var(--image-two);
    -webkit-opacity: 0;
    opacity: 0;
  }
  28% {
    background-image: var(--image-two);
    -webkit-opacity: .5;
    opacity: .5;
  }
  33% {
    background-image: var(--image-two);
    -webkit-opacity: 1;
    opacity: 1;
  }
  56.5% {
    background-image: var(--image-two);
    -webkit-opacity: 1;
    opacity: 1;
  }
  61.5% {
    background-image: var(--image-two);
    -webkit-opacity: .5;
    opacity: .5;
  }
  66.5% {
    background-image: var(--image-two);
    -webkit-opacity: 0;
    opacity: 0;
  }
  100 {
    background-image: var(--image-two);
    -webkit-opacity: 0;
    opacity: 0;
  }
}

@-webkit-keyframes backgroundthree {
  0% {
    background-image: var(--image-three);
    -webkit-opacity: 0;
    opacity: 0;
  }
  56.5% {
     background-image: var(--image-three);
    -webkit-opacity: 0;
    opacity: 0;
  }
  61.5% {
    background-image: var(--image-three);
    -webkit-opacity: 0.5;
    opacity: 0.5;
  }
  66.5% {
    background-image: var(--image-three);
    -webkit-opacity: 1;
    opacity: 1;
  }
  90% {
    background-image: var(--image-three);
    -webkit-opacity: 1;
    opacity: 1;
  }
  95% {
    background-image: var(--image-three);
    -webkit-opacity: 0.5;
    opacity: 0.5;
  }
  100% {
    background-image: var(--image-three);
    -webkit-opacity: 0;
    opacity: 0;
  }
}

.hidden {
  display: none !important;
}

.content {
  width: 100%;
  max-width: 650px;
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
  padding: 0px;
}

#regForm {
  margin: 0 auto;
  padding: 15px 25px 20px;
  max-width: 100%;
}

input,
select {
  background: #ffffff;
  padding: 10px;
  height: 50px;
  width: 100%;
  margin: 0 auto 15px;
  font-size: 15px !important;
  font-family: 'Montserrat', sans-serif !important;
  border: 1px solid #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=checkbox] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.select-container, .select-containertwo {
  position:relative; 
  display: inline;
  width: 80%;
}

.select-container:after, .select-containertwo:after {
  content:""; 
  width:0; 
  height:0; 
  position:absolute; 
  pointer-events: none;
}

.select-container:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 1.2em;
  right: .75em;
  border-top: 8px solid black;
  opacity: 0.5;
}

.select-containertwo:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 1.2em;
  right: .75em;
  border-top: 8px solid black;
  opacity: 0.5;
}

select::-ms-expand {
    display: none;
}

/*input:focus,
select:focus {
  border: 1px solid #ff4e8c;
  box-shadow: 0 0 1px #ff4e8c;
}*/

.step {
  display: none;
}

.step.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.step span {
  display: block;
  text-align: center;
  font-size: 20px;
  padding-bottom: 35px;
}

.row {
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.buttonnext {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

button {
  border: none;
  box-shadow: 0 2px 4px 0 rgba(155, 155, 155, 0.2);
  background-image: var(--button-bg) !important;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  outline: none;
  padding: 0 20px;
  width: fit-content;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

button img {
 height: 20px;
 width: auto;
 margin-left: 2px;
 margin-bottom: -2px;
}

.action-button-loading {
  left: 50%;
  transform: translateX(-50%);
}

.red0 {
  animation: fadeInUpzero 1s;
}

.terms {
  display: none;
  max-width: 260px;
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  line-height: 22px;
  animation: fadeInUpzero 1s;
}

.terms a {
  font-size: 12px;
  color: #ff4f89;
  text-decoration: underline;
}

@-webkit-keyframes fadeInUpzero {
  0% {
    -webkit-opacity: 0;
    -webkit-transform: translateY(30px);
  }
  100% {
    -webkit-opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUpzero {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


#errors {
  display: none;
}

#errors {
  text-align: center;
  color: #d20000;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.buttons {
  width: 100%;
}

.buttonemailactive {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-con.oauth .btn.btn-microsoft-oauth {
  border: solid 1px #2f2f2f;
  background: #2f2f2f;
  color: #fff
}

.btn-con.oauth .btn.btn-microsoft-oauth span.icon-bg {
    border: 2px solid #2f2f2f;
}

.btn-con.oauth .btn.btn-microsoft-oauth i.icon {
  left: 12px;
}

.btn-con.oauth .btn.btn-microsoft-oauth span:last-child {
  font-weight: 300;
}

.btn-con.oauth .btn.btn-google-oauth, .btn-con.oauth .btn.btn-yahoo-oauth, .btn-con.oauth .btn.btn-microsoft-oauth {
  width: 338px;
}

.btn-con.oauth .btn.btn-otheremails-oauth {
  max-width: 100%;
  width: 338px;
  padding: 15px;
  border-radius: 0;
  position: relative;
  margin: 5px auto 0;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.btn-con.oauth .btn.btn-otheremails-oauth {
  border: solid 1px #000;
  background: #fff;
}

.btn-con.oauth .btn.btn-otheremails-oauth span.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 46px;
  height: 100%;
  background: #fff;
}

.btn-con.oauth .btn.btn-otheremails-oauth span.icon-bg {
  border: 2px solid #fff;
}

.btn-con.oauth .btn.btn-otheremails-oauth i.icon {
  z-index: 10;
  width: 30px;
  position: absolute;
  height: 19px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;    
  font-variant: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


@media only screen and (max-height: 650px) {
  .content {
    top: 100px;
  }
}

@media only screen and (max-width: 1350px) {
  main h2 {
    line-height: 1.4;
  }
  .content {
    max-width: 450px;
  }

  .select-container {
    width: 90%;
  }

  .row {
    width: 90%;
  }
}

@media only screen and (max-width: 1200px) {
  header .img {
    padding: 0;
    justify-content: center;
  }
}

@media only screen and (max-width: 820px) {
  main h2 {
    padding: 10px 30px;
    font-size: 22px;
  }
  .content {
    max-width: 100%;
    top: 80px;
  }
  .main_bg_start .slide,
  .main_bg .slide {
    background-position: center 0;
  }
  .main_bg_start .slide_start {
     background-image: var(--image-one-mobile);
    -webkit-animation: backgroundstart 1.5s ease-out;
    -moz-animation: backgroundstart 1.5s ease-out;
    -o-animation: backgroundstart 1.5s ease-out;
    animation: backgroundstart 1.5s ease-out;
  }
  @-webkit-keyframes backgroundone {
    0% {
      background-image: var(--image-one-mobile);
      -webkit-opacity: 1;
      opacity: 1;
    }
    23% {
      background-image: var(--image-one-mobile);
      -webkit-opacity: 1;
      opacity: 1;
    }
    28% {
      background-image: var(--image-one-mobile);
      -webkit-opacity: .5;
      opacity: .5;
    }
    33% {
      background-image: var(--image-one-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
    90% {
      background-image: var(--image-one-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
    95% {
      background-image: var(--image-one-mobile);
      -webkit-opacity: 0.5;
      opacity: 0.5;
    }
    100% {
      background-image: var(--image-one-mobile);
      -webkit-opacity: 1;
      opacity: 1;
    }
  }

  @-webkit-keyframes backgroundtwo {
    0% {
      background-image: var(--image-two-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
    23% {
      background-image: var(--image-two-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
    28% {
      background-image: var(--image-two-mobile);
      -webkit-opacity: .5;
      opacity: .5;
    }
    33% {
      background-image: var(--image-two-mobile);
      -webkit-opacity: 1;
      opacity: 1;
    }
    56.5% {
      background-image: var(--image-two-mobile);
      -webkit-opacity: 1;
      opacity: 1;
    }
    61.5% {
      background-image: var(--image-two-mobile);
      -webkit-opacity: .5;
      opacity: .5;
    }
    66.5% {
      background-image: var(--image-two-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
    100 {
      background-image: var(--image-two-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
  }

  @-webkit-keyframes backgroundthree {
    0% {
      background-image: var(--image-three-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
    56.5% {
      background-image: var(--image-three-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
    61.5% {
      background-image: var(--image-three-mobile);
      -webkit-opacity: 0.5;
      opacity: 0.5;
    }
    66.5% {
      background-image: var(--image-three-mobile);
      -webkit-opacity: 1;
      opacity: 1;
    }
    90% {
      background-image: var(--image-three-mobile);
      -webkit-opacity: 1;
      opacity: 1;
    }
    95% {
      background-image: var(--image-three-mobile);
      -webkit-opacity: 0.5;
      opacity: 0.5;
    }
    100% {
      background-image: var(--image-three-mobile);
      -webkit-opacity: 0;
      opacity: 0;
    }
  }
}
  
@media only screen and (max-width: 700px) {
  .main_footer p {
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .main_footer p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 550px) {
  .main_footer p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 500px) {
  main {
    min-height: 450px;
  }

  main h2 {
    font-size: 18px;
  }

  .buttons {
    width: 90%;
    margin: 0 auto;
  }

  .content {
    top: 60px;
  }

  #regForm {
    padding: 5px 25px 20px;
  }

  .step span {
    font-size: 18px;
    padding-bottom: 25px;
  }

  #errors {
    font-size: 14px;
  }

  .main_footer p {
    font-size: 17px;
  }

  .main_footer .hidden_mobile {
    display: none;
  }
}

@media only screen and (max-width: 410px) {
  input,
  select {
    font-size: 16px;
  }

  #regForm {
    padding: 5px 20px 25px;
  }

}

@media only screen and (max-width: 380px) {
  .main_footer p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 360px) {
  .main_footer p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 340px) {
  #regForm {
    padding: 10px 20px 25px;
  }

  main h2 {
    font-size: 16px;
  }

  .step span {
    font-size: 16px;
  }

}

@media only screen and (max-width: 330px) {
  .main_footer p {
    font-size: 14px;
  }
}

.country {
  width: calc(30% - 10px);
}

.region {
  width: 70%;
}

.full {
  width: 100%;
}