p {
  line-height: 21px;
  margin: 0 0 1rem;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Arial;
}

img {
  max-width: 100%;
}

html {
  background: #ffffff;
}

body {
  font-family: 'Geometria';
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

body,
html,
.steps-wrap {
  height: 99%;
}

input {
  text-align: center;
}

/* Header */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 10px;
  z-index: 2;
  background-color: #212A35;
  justify-content: space-between;
}
.header .logo-geo {
  font-size: 38px;
}
.header .logo-geo .flag-icon {
  -webkit-mask: url(../images/polygon.svg);
          mask: url(../images/polygon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
.header .logo-geo .flag-icon::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 1px;
  left: 0;
  background-image: url(../images/polygon_frame.svg);
  background-position: center;
  background-size: cover;
}
.header .logo {
  width: 160px;
}

/* Steps */
.steps-wrap {
  max-width: 500px;
      width: 100%;
      margin: 0 auto;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100vh; /* Setze die Höhe auf 100% der Viewport-Höhe */
      position: relative;
}
.steps-wrap .honeycomb {
  position: absolute;
  max-width: 98%;
  z-index: 1;
}
.steps-wrap .honeycomb.honeycomb-1 {
  top: 0;
  left: 0;
}
.steps-wrap .honeycomb.honeycomb-2 {
  right: 0;
  bottom: 0;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.step {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: none;
  z-index: 2;
}
.step .girl-photo-wrap {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 5;
}
.step .girl-photo-wrap .girl-photo {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
}
.step .girl-photo-wrap .girl-photo::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52.3%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.3%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 3;
}

.photo-content {
    display: -ms-flexbox;
    display: flex;
    background: #323E4E;
}

.photo-content .geo-wrap {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7px 11px;

}

.photo-content .geo-wrap .geo-pin {
    max-width: 18px;
    margin-right: 6px;
}

.step-indicators {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.step-indicators li {
  background-color: transparent;
  margin-right: 3px;
  font-size: 11px;
  color: white;
  aspect-ratio: 1 / 1;
  height: 23px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-indicators li:last-child {
  margin-right: 0;
}
.step-indicators li.active {
  color: #111111;
  background-color: #F2A842;
}
.step .step-content-wrap {
  position: fixed;
  right: 20px;
  left: 20px;
  bottom: 20px;
  text-align: center;
  z-index: 6;
}
.step .step-content-wrap .step-title {
  font-size: 24px;
  line-height: 45px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 auto 10px;
}
.step .field-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 15px;
}
.step .field-wrap .field {
  position: relative;
}

.step .field-wrap .field input {
    font-size: 18px;
    line-height: 1;
    color: #0f0f0f;
    border-radius: 8px;
    padding: 15px;
    background-color: #ffffff;
    width: 100%;
    border: 1px solid #000;
}

.step .field-wrap .field .field-icon {
    display: inline-block;
    max-width: 20px;
    position: absolute;
    top: 48%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
    max-width: 20px;
}

.step .field-wrap .field input::-webkit-input-placeholder {
  color: rgba(40, 40, 40, 0.3);
  opacity: 1;
}
.step .field-wrap .field input:-ms-input-placeholder {
  color: rgba(40, 40, 40, 0.3);
  opacity: 1;
}
.step .field-wrap .field input::-ms-input-placeholder {
  color: rgba(40, 40, 40, 0.3);
  opacity: 1;
}
.step .field-wrap .field input::placeholder {
  color: rgba(40, 40, 40, 0.3);
  opacity: 1;
}
.step .field-wrap .field input:-ms-input-placeholder {
  color: rgba(40, 40, 40, 0.3);
}
.step .field-wrap .field input::-ms-input-placeholder {
  color: rgba(40, 40, 40, 0.3);
}
.step .field-wrap .field input:focus, .step .field-wrap .field input:active {
  outline: none;
}
.step .field-wrap .field.field-age input {
  text-align: center;
}
.step .field-wrap .error-wrap {
  font-size: 12px;
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  position: absolute;
  max-width: 300px;
  bottom: calc(100% + 10px);
  left: 20px;
  border-radius: 5px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  pointer-events: none;
}
.step .field-wrap .error-wrap.active-error {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: all;
}
.step .field-wrap .error-wrap::before {
  content: '';
  position: absolute;
  display: block;
  top: 100%;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #f5c6cb;
}
.step .field-wrap .error-wrap .close-error {
  width: 15px;
  height: 15px;
  line-height: 15px;
  position: absolute;
  text-align: center;
  top: 2px;
  right: 2px;
}
.step .field-wrap .error-wrap .close-error::before {
  content: 'x';
  line-height: 0;
  font-size: 14px;
  font-style: normal;
  display: inline-block;
}
.step .field-wrap .error-wrap .close-error:hover {
  cursor: pointer;
}
.step.field-step .step-title {
  margin-bottom: 20px;
}
.step#step3 .error-wrap {
  width: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -20px);
          transform: translate(-50%, -20px);
}
.step#step3 .error-wrap::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.step#step3 .error-wrap.active-error {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.step.final-step {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 50px;
  color: #0f0f0f;
}
.step.final-step .step-content-wrap {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.step.final-step .msg-title {
  font-size: 27px;
  margin: 0 auto 15px;
}
.step.final-step p {
  font-weight: 500;
}
.step.final-step #success-mail {
  color: #FFC629;
  font-weight: 800;
}

/* Buttons */
.btns-wrap,
.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.btn-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap .btn {
  width: 100%;
}

.btns-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btns-wrap.multiple-btn .btn {
  width: 48%;
  margin-bottom: 15px;
}
.btns-wrap.multiple-btn .btn:last-child {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.btn {
  font-family: 'Geometria';
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  background: #FFC629;
  width: 49%;
  height: 60px;
  border: none;
  border-radius: 60px;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
.btn.text-uppercase {
  text-transform: uppercase;
}
.btn.disabled {
  position: relative;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.8;
}
.btn.disabled:before {
  content: '';
  display: block;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  position: absolute;
  top: 20px;
  right: 10px;
  left: auto;
}

/* Preload */
.preload,
.preload-img:after,
.preload-img:before {
  content: '';
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

small.disclaimer {
	color: white;
	font-size: 10px;
	font-weight: 100;
	margin: 11px 0px 0px 0px;
	padding: 0px;
	display: flow;
}

small.disclaimer a {
	color: #dbdbdb;
}

#response-box {
    font-size: 12px;
    display: block;
    margin: 10px 0px;
    padding: 5px;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

#response-box.error {
    background: #f33;
    color: #fff;
}

#response-box.success{
	background:#33ff5a;
	color:#000;
}

#loadinggif {
	width: 80px;
}

.ufooter {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    list-style: none;
    background: #2a2a2a;
    margin: 0;
    padding: 10px;
    color: white;
    max-width: 100%;
    overflow: auto;
}

small.ufooter {
    margin: 0px;
    font-size: 10px;
    text-align: center;
    padding: 0 20% 15px 20%;
    font-weight: 100;
}

.ufooter li {
    padding: 0px 18px;
    font-size: 14px;
}

.ufooter li:not(:last-child) {
    border-right: 0.5px solid #363636;
}

.ufooter li a, .ufooter a {
    color: white;
	font-weight: 100;
	text-decoration: none;
}

.ufooter li a:hover {
	text-decoration: underline;
}

footer {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
    .ufooter li {
        padding: 0px 18px;
        font-size: 11px;
    }

    small.ufooter {
      margin: 0px;
      font-size: 10px;
      text-align: justify;
      padding: 10px;
      font-weight: 100;
    }

    footer {
      margin-top: 0px;
    }
}

.preload-img.preload-img1,
.girl-photo.girl-1 {
  background-image: url("1.jpg");
}

.preload-img.preload-img2,
.girl-photo.girl-2 {
  background-image: url("2.jpg");
}

.preload-img.preload-img3,
.girl-photo.girl-3 {
  background-image: url("3.jpg");
}

.preload-img.preload-img4,
.girl-photo.girl-4 {
  background-image: url("4.jpg");
}

.preload-img.preload-img5,
.girl-photo.girl-5 {
  background-image: url("5.jpg");
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* RTL */
.lang-he {
  direction: rtl;
}
.lang-he .header {
  direction: ltr;
}
.lang-he .step .girl-photo-wrap .girl-photo .photo-content .geo-wrap .geo-pin {
  margin-right: auto;
  margin-left: 6px;
}
.lang-he .step .girl-photo-wrap .girl-photo .photo-content .step-indicators li:first-child {
  margin-right: 0;
}
.lang-he .step .girl-photo-wrap .girl-photo .photo-content .step-indicators li:last-child {
  margin-right: 3px;
}

/* Responsive */
.isDesk .step .step-content-wrap {
  position: absolute;
}

.isMobile.isAndroid.keyboard-open .step.step-field .step-content-wrap .step-title {
  font-size: 27px;
  line-height: 35px;
  margin-bottom: 5px;
}
.isMobile.isAndroid.keyboard-open.small-size .step .step-content-wrap {
  position: absolute;
}

.isMobile.iOs .step .step-content-wrap {
  position: absolute;
}

/* Screen 320px */
@media (max-width: 479px) {
  .step .step-content-wrap .step-title {
    font-size: 30px;
    line-height: 38px;
  }

  .header .logo-geo .flag-icon::after {
    bottom: 2px;
  }
}
/* Large height mobile size: Galaxy S20+/S20 Ultra */
/* Large height mobile size: Iphone XS/8 Plus/7 Plus/6s Plus, Gallaxy S8/S9 */
@media (max-width: 479px) and (max-height: 650px) {
  .step .step-content-wrap .step-title {
    font-size: 25px;
    line-height: 35px;
  }
  .step.step-field .step-content-wrap .step-title {
    font-size: 27px;
    line-height: 34px;
    margin-bottom: 15px;
  }
  .step .field-wrap .field input {
    padding: 20px 25px;
  }

  .btn {
    height: 55px;
  }

  .isMobile.isAndroid.keyboard-open .step .field-wrap .field input {
    padding: 15px 20px;
  }
  .isMobile.isAndroid.keyboard-open .step.step-field .step-content-wrap .step-title {
    font-size: 21px;
    line-height: 28px;
  }
}
/* Iphone 8/7/6S, Galaxy S5/S6/S7 */
@media (max-width: 400px) and (max-height: 570px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/* Galaxy S10/S9/S8 Keyboard Opened */
@media (max-width: 500px) and (max-height: 390px) {
  .isMobile.isAndroid.keyboard-open .step .field-wrap {
    margin-bottom: 10px;
  }
  .isMobile.isAndroid.keyboard-open .step .field-wrap .field input {
    padding: 20px;
  }
  .isMobile.isAndroid.keyboard-open .step.step-field .step-content-wrap .step-title {
    font-size: 31px;
    line-height: 35px;
    margin-bottom: 10px;
  }
}
/* Galaxy S5/S6/S7 Keyboard Opened */
@media (max-width: 500px) and (max-height: 356px) {
  .isMobile.isAndroid.keyboard-open .step .field-wrap .field input {
    padding: 15px 20px;
  }

  .isMobile.isAndroid.keyboard-open .step.step-field .step-content-wrap .step-title {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 500px) and (max-height: 310px) {
  .isMobile.isAndroid.keyboard-open .step.step-field .step-content-wrap .step-title {
    font-size: 25px;
    line-height: 28px;
  }
  .isMobile.isAndroid.keyboard-open .step#step4 .step-content-wrap {
    bottom: 10px;
  }
  .isMobile.isAndroid.keyboard-open .step#step4.step-field .step-content-wrap .step-title {
    font-size: 21px;
    line-height: 22px;
  }
  .isMobile.isAndroid.keyboard-open .step#step4 .btn {
    height: 51px;
  }
  .isMobile.isAndroid.keyboard-open.lang-fr .step.step-field .step-content-wrap .step-title {
    font-size: 19px;
    line-height: 20px;
    margin-bottom: 5px;
  }
  .isMobile.isAndroid.keyboard-open.lang-fr .step .field-wrap {
    margin-bottom: 10px;
  }
  .isMobile.isAndroid.keyboard-open.lang-fr .btn {
    height: 51px;
  }

  .isMobile.isAndroid.keyboard-open .step .field-wrap {
    margin-bottom: 15px;
  }
  .isMobile.isAndroid.keyboard-open .step#step4 .field-wrap {
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) and (max-height: 260px) {
  .isMobile.isAndroid.keyboard-open .step#step4 .step-content-wrap {
    bottom: 35px;
  }
}
/* Iphone SE */
@media (max-width: 400px) and (max-height: 460px) {
  .iOs .header {
    padding-top: 10px;
  }
  .iOs .header .logo {
    width: auto;
  }
  .iOs .header .logo-geo {
    font-size: 32px;
  }
  .iOs .step .step-content-wrap .step-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .iOs .btn {
    height: 55px;
  }
  .iOs .step .field-wrap .field input {
    font-size: 15px;
    padding: 15px 20px;
  }
  .iOs .step.step-field .step-content-wrap .step-title {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .iOs .step.final-step {
    padding-bottom: 0;
  }
  .iOs .step.final-step .step-content-wrap {
    bottom: auto;
    position: relative;
    left: auto;
    right: auto;
    font-size: 16px;
  }
  .iOs .step.final-step .msg-title {
    font-size: 23px;
    margin: 0 auto 7px;
  }
}
