:root {
  font-size: 10px;
  --app-height: 100%;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  height: var(--app-height);
  color: #424242;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(to right, #005c97, #363795);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  position: relative;
  height: 100%;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
}
@media screen and (min-width: 400px) {
  main {
    position: relative;
    height: 100%;
    width: 50%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
  }
}
main::-webkit-scrollbar {
  width: 0px;
}
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
}
@media screen and (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}
.spacer {
  display: block;
  height: 8px;
  width: 8px;
}
.spacer--large {
  height: 16px;
  width: 16px;
}
.hidden {
  display: none !important;
}
.hidden--visibility {
  visibility: hidden !important;
}
section {
  position: relative;
  width: 100%;
}
.scroll-overflow {
  height: var(--app-height);
}
header {
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.7s;
  font-size: 2rem;
  color: #f5f5f5;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contact {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1192px) and (min-height: 825px) {
  .contact {
    align-items: center;
  }
}
.contact .form {
  width: 100%;
  height: 100%;
  max-height: 376px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}
.contact .form__step {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #f5f5f5;
}
.contact .form__step > :not(:last-child) {
  margin-bottom: 16px;
}
.contact .form__step__catch-phrase {
  align-self: flex-start;
}
.contact .form__step .text-input {
  width: 100%;
}
.contact .form__step .text-input > label {
  color: #f5f5f5;
  margin-bottom: 4px;
  font-size: 1.8rem;
}

.contact .form__step .text-input > label :after {
  content: none;
  vertical-align: top;
  font-size: 1.2rem;
}
.contact .form__step .text-input.required > label:after {
  content: ' *';
  color: #e53935;
}
.contact .form__step .text-input > input[type='text'],
.contact .form__step .text-input input[type='email'],
.contact .form__step .text-input input[type='tel'],
.contact .form__step .text-input textarea {
  width: 100%;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  background: #f5f5f540;
  font-family: inherit;
  font-size: 2rem;
  color: #f5f5f5;
  outline: none;
}
.contact .form__step .text-input > input[type='text'] ::placeholder,
.contact .form__step .text-input input[type='email'] ::placeholder,
.contact .form__step .text-input input[type='tel'] ::placeholder,
.contact .form__step .text-input textarea ::placeholder {
  color: rgba(245, 245, 245, 0.502);
}
.contact .form__step .buttons-wrapper {
  display: flex;
  align-items: center;
  align-self: flex-end;
}
.contact .form__step .buttons-wrapper > :not(:last-child) {
  margin-right: 16px;
}
.contact .form__step .button {
  position: relative;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: inherit;
  background: #f5f5f540;
  color: #f5f5f5;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}
.contact .form__step .button > i.fas.fa-spinner {
  animation: spin 5s infinite linear;
  transform-origin: center;
}
.contact .form__step .button:disabled,
.contact .form__step .button[disabled] {
  cursor: not-allowed;
  background: repeating-linear-gradient(
    -55deg,
    #f5f5f540 1px,
    #f5f5f533 2px,
    #f5f5f533 11px,
    #f5f5f540 12px,
    #f5f5f540 20px
  );
  background-size: 300% 100%;
  background-repeat: repeat-x;
  animation: background 5s infinite linear;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.contact .form__step .button > :not(:last-child) {
  margin-right: 8px;
}
.contact .form__step--first .sentence {
  height: 350px;
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  margin: -4px;
}
.contact .form__step--first .sentence * {
  user-select: none;
}
.contact .form__step--first .sentence > :not(:last-child) {
  margin-right: 8px;
}
.contact .form__step--first .sentence__step {
  display: flex;
}
.contact .form__step--first .sentence__step > :not(:last-child) {
  margin-right: 8px;
}
.contact .form__step--first .sentence__step p {
  white-space: nowrap;
}
.contact .form__step--first .sentence__step__options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact .form__step--first .sentence__step__options label {
  font-style: italic;
  text-decoration: underline;
  cursor: pointer;
}
.contact .form__step--first .sentence__step__options > input[type='radio'] {
  display: none;
}
.contact
  .form__step--first
  .sentence__step--filled
  .sentence__step__options
  > input[type='radio']:not(:checked)
  + label {
  display: none;
}
.contact .form__step--third #phone {
  padding-left: 56px;
}
.contact .form__step--third .iti {
  display: block;
}
.contact .feedback-messages {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1192px) {
  .contact .feedback-messages {
    flex-direction: row;
  }
}
.contact .message {
  font-size: 2.8rem;
  color: #f5f5f5;
}
@media (min-width: 1192px) {
  .contact .message {
    font-size: 3.4rem;
  }
}
.iti__country-list {
  border: none;
  background: none;
  border-radius: 0px 0px 5px 5px;
  border: none !important;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.iti__country-list::-webkit-scrollbar {
  width: 0px;
}
.iti__divider {
  display: none;
}
.iti__country {
  margin: 0;
  padding: 8px;
  font-size: 1.8rem;
  color: #f5f5f5;
  background-image: linear-gradient(to right, #005c97, #363795);
  background-size: 100vw 100vh;
  background-position: center;
}
