html {
  font-size: 50%;
  background: none;
  margin: 0;
}

select:focus,
input:focus,
textarea:focus {
  outline: none !important;
}

* {
  box-sizing: border-box;
}

body {
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

h2,
p,
span,
div,
input,
select {
  font-family: inherit !important;
  margin: 0;
}

.p-background {
  position: fixed;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.5s ease;
}

.p-background::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    rgba(74, 74, 74, 0.5),
    rgba(74, 74, 74, 0.5)
  );
}

.p-background--1 {
  background-image: url(../images/image-background-mobile-1.gif);
}
.p-background--2 {
  background-image: url(../images/image-background-mobile-2.gif);
}
.p-background--3 {
  background-image: url(../images/image-background-mobile-3.gif);
}

.p-backgrounds-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
}

.p-steps {
  position: absolute;
  top: 0;
  width: 100%;
}

.p-step {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #000;
}

.p-step-header {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  background-color: #333333;
  border-bottom: 1px solid #fff;
  text-align: center;
  padding: 1.2rem;
}

.p-step-body {
  padding: 1.4rem 0;
  background-color: #000;
}

.p-step-text {
  font-size: 2rem;
  line-height: 2.8rem;
  margin-bottom: 1.4rem;
  color: #fff;
  padding: 0 2.4rem;
  text-align: center;
}

.giff{
  width: 60%;
  margin: 30px auto;
    background-color: #000;
}

.p-step-option {
  height: 6rem;
  margin: 0 0.5rem;
  padding-left: 5rem;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #53585f;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.p-step-option::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  background-image: url("../images/icon-checkmark.svg");
  width: 3rem;
  height: 3rem;
  background-size: 3rem;
  transition: opacity 0.3s ease;
}

.p-step-option--checked {
  background-color: #8e0000;
}

.p-step-option--checked::after {
  opacity: 1;
}

.p-step-option:not(:last-child) {
  margin-bottom: 0.5rem;
}

.p-step-button-wrapper {
  display: flex;
}

.p-step-button {
  height: 6rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  text-decoration: none;
  color: #fff;
  background-color: #ff0000;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.p-step-button:hover {
  background-color: #990000;
}

.p-step-button--primary {
  background-color: #ca0000;
}

.p-step-button--multiple {
  width: 50%;
}

.p-step-progress {
  width: 70%;
  margin: 0 auto;
}

.p-step-progress-data {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.4rem;
}

.p-step-progress-bar {
  width: 100%;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 3rem;
  padding: 2px;
}

.p-step-progress-bar-inner {
  width: 7%;
  height: 100%;
  background-color: #ff0000;
  border-radius: 3rem;
}



#step_2,
#step_3,
#step_4,
#step_5,
#step_6,
#step_7,
#step_8,
#step_9,
#step_10,
#step_11,
#step_12 {
  display: none;
}

@media screen and (min-width: 440px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 550px) {
  .p-steps {
    width: 55rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 990px) {
  .p-background--1 {
    background-image: url(../images/image-background-1.gif);
  }
  .p-background--2 {
    background-image: url(../images/image-background-2.gif);
  }
  .p-background--3 {
    background-image: url(../images/image-background-3.gif);
  }
}
