@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap);
body,
div,
li,
p,
section,
span,
ul {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.steps-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
}
.steps-content {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-height: 625px) {
  .steps-content {
    overflow-y: auto;
  }
}
.step__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 0 30px;
}
.stepOne {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  font-family: Montserrat;
  font-weight: 500;
  color: #1b2f47;
  padding: 0 30px;
  margin: 0 auto;
}
.step__title {
  padding: 10px 20px;
  font-size: 16px;
  background: #1b2f47;
  max-width: max-content;
  border-radius: 20px;
  color: #fff;
}
.stepOne__content {
  text-align: center;
  color: #1b2f47;
  font-size: 16px;
}
.steps-list {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 30px 0 30px;
}
.steps-item {
  max-width: 220px;
}
.steps-item img {
  display: block;
  width: 100%;
}
.steps-item:not(:last-of-type) {
  margin-right: 30px;
}
.steps-position {
  background: #fff;
  font-size: 32px;
  padding: 15px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.steps-position img {
  max-width: 40px;
}
.steps-info {
  font-size: 14px;
  padding: 15px;
  background: #1b2f47;
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  word-break: break-word;
  border-radius: 10px;
  color: #fff !important;
  text-transform: none !important;
  white-space: pre-wrap;
}
.init-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  background: #1b2f47;
  padding: 10px 40px;
  max-width: max-content;
  margin: 0 auto 50px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  outline: 0;
  text-transform: uppercase;
  margin-top: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
.init-btn::after {
  content: "";
  display: block;
  margin-left: 18px;
  background: url(../img/arrow-btn.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 8px;
  height: 16px;
}
.init-btn:hover {
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}
.stepTwo {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 500;
  color: #1b2f47;
  padding: 20px 30px 0;
  transform: translate(100%);
  transform-origin: right;
  transition: 0.3s ease-in-out;
  max-width: 1200px;
  margin: 0 auto;
}

.back-btn {
  max-width: max-content;
  background: 0 0;
  border: none;
  outline: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: Montserrat;
  color: silver;
  cursor: pointer;
}
.back-btn::before {
  content: "⟵";
  font-size: 30px;
  line-height: 20px;
  margin-right: 2px;
  color: silver;
}
.progress-bar {
  position: relative;
  width: 100%;
  margin: 20px auto 30px;
}
.progress {
  width: 100%;
  height: 4px;
  background: #d6d6d6;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 0 2px grey;
}
.progress-fill {
  background: #1987c2;
  width: 0;
  height: 100%;
  transition: 0.3s ease-in-out;
  box-shadow: inset 0 -13px 8px #37b9ff;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.steptwo-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.steptwo-form label {
  padding-left: 10px;
}
.steptwo-form input {
  border: none;
  outline: 0;
  border-bottom: 1px solid #6f8190;
  padding-left: 10px;
  font-family: Montserrat;
  font-weight: 500;
  color: #1b2f47;
  font-size: 16px;
  max-width: 450px;
}
.steptwo-form input[type="radio" i] {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
  margin-right: 10px;
}
.steptwo-form input[type="text" i],
.steptwo-form input[type="email" i],
.steptwo-form input[type="tel" i] {
  margin-top: 20px;
}
.steptwo-form input::-webkit-input-placeholder {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 500;
  color: #657281;
}
.form-content {
  position: relative;
  height: 100%;
}
.email-content,
.name-content,
.phone-content {
  display: flex;
  flex-direction: column;
}
.phone-content label {
  margin-bottom: 20px;
}
.name-category {
  width: 100%;
  height: 100%;
  max-width: 70%;
  margin: 0 auto;
}
.title {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.step-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9da5ab;
  font-weight: 600;
  margin-left: auto;
  position: relative;
  max-width: 115px;
  text-align: center;
}
.step-about span {
  max-width: 100%;
  white-space: break-spaces;
}
.step-about img {
  max-width: 40px;
}
.step__title {
  height: max-content;
}
.contact-category {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(110%);
  transition: 0.2s ease-in-out;
  top: 0;
  left: 0;
  background: #fff;
}
.contact-category .back-btn {
  position: absolute;
  top: 250px;
}

@media (max-width: 992px) {
  .contact-category .back-btn {
    top: 225px;
  }
}

.contact-content {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
.email-content {
  margin-bottom: 40px;
}
.service-category {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(110%);
  transition: 0.2s ease-in-out;
  top: 0;
  left: 0;
  background: #fff;
}
.service-category .back-btn {
  position: absolute;
  top: 393px;
}
@media (max-width: 992px) {
  .service-category .back-btn {
    top: 327px;
  }
}
@media (max-width: 768px) {
  .service-category .back-btn {
    top: 398px;
  }
}
@media (max-width: 375px) {
  .service-category .back-btn {
    top: 450px;
  }
}
@media (max-width: 350px) {
  .service-category .back-btn {
    top: 470px;
  }
}
.service-content {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
.service-content span {
  text-align: center;
  width: 100%;
  display: block;
}
.has-service {
  display: flex;
  justify-content: space-around;
  max-width: 40%;
  padding: 50px 0;
  margin: 0 auto;
}
.has-service button {
  padding: 10px 30px;
  background: #4c0cc2;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  outline: 0;
  display: flex;
  align-items: center;
  transition: 0.2s all;
}
.has-service button:first-child {
  margin-right: 40px;
}
.selected {
  box-shadow: 0 0 5px #5600c7;
  transform: scale(1.2);
}
.has-service button:hover {
  transform: scale(1.2);
  transition: 0.2s all;
}
.has-service .yes-btn::before {
  content: "";
  background: url(../img/handyes.png);
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  margin-right: 10px;
}
.has-service .no-btn::before {
  content: "";
  background: url(../img/badhand.png);
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  margin-right: 10px;
}
.has-service button:active,
.has-service button:hover {
  background: rgba(76, 12, 194, 0.5);
}
.service-op-content {
  display: flex;
  flex-direction: column;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.2s ease-in-out;
}
.service-op-content .next-btn {
  position: relative;
}
.toggle {
  transform: scaleY(1);
  transition: 0.2s ease-in-out;
}
.question-category {
  height: 100%;
  position: absolute;
  transform: translate(110%);
  transition: 0.2s ease-in-out;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}

.question-category .back-btn {
  position: absolute;
  top: 294px;
}
@media (max-width: 992px) {
  .question-category .back-btn {
    top: 217px;
  }
}
@media (max-width: 768px) {
  .question-category .back-btn {
    top: 230px;
  }
}
@media (max-width: 425px) {
  .question-category .back-btn {
    top: 300px;
  }
}
.question-content {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
.question-content span {
  width: 100%;
  text-align: center;
  display: block;
}
.question-op-content {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.urgency-category {
  height: 100%;
  position: absolute;
  transform: translate(110%);
  transition: 0.2s ease-in-out;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
.urgency-category .back-btn {
  position: absolute;
  top: 250px;
}
@media (max-width: 992px) {
  .urgency-category .back-btn {
    top: 220px;
  }
}
.urgency-content {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
.urgency-content span {
  width: 100%;
  display: block;
  text-align: center;
}
.urgency-op-content {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.urgency-op-content input {
  cursor: pointer;
}
.company-category {
  height: 100%;
  position: absolute;
  transform: translate(110%);
  transition: 0.2s ease-in-out;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
.company-category .back-btn {
  position: absolute;
  top: 369px;
}
@media (max-width: 992px) {
  .company-category .back-btn {
    top: 375px;
  }
}
.company-content {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
.company-content span {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes love {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}
.option-content {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.option-content input[type="text" i] {
  width: 100%;
  padding: 0;
}
.option-content label {
  margin-right: auto;
  padding: 0;
}
.company-content span img {
  max-width: 30px;
  margin-left: 10px;
  animation: love 1.5s infinite;
}
.company-op-content {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.company-op-content .option-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.company-op-content .option-content:not(:first-of-type) {
  margin-top: 40px;
}
.about-category {
  height: 100%;
  position: absolute;
  transform: translate(110%);
  transition: 0.2s ease-in-out;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
@media (max-width: 1280px) {
  .about-category {
    overflow-y: auto;
  }
}
.about-category .back-btn {
  position: absolute;
  top: 270px;
}
.about-two .back-btn {
  top: 320px;
}

.about-content {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}
.aboutOne {
  margin-bottom: 20px;
}
.aboutOne .option-content,
.aboutTwo .option-content {
  margin-top: 10px;
}
.next-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  background: #1b2f47;
  padding: 10px 40px;
  max-width: max-content;
  margin: 0 auto 20px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  outline: 0;
  text-transform: uppercase;
  margin-top: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
.next-btn::after {
  content: "";
  display: block;
  margin-left: 18px;
  background: url(../img/arrow-btn.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 8px;
  height: 16px;
}
.next-btn:hover {
  transform: scale(1.2);
  transition: 0.2s all;
}
.stepThree {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(110%);
  transition: 0.2s ease-in-out;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.stepThree__content p:nth-child(1) {
  text-align: center;
  font-size: 20px;
  display: block;
  margin-bottom: 40px;
}
.stepThree__content p {
  text-align: center;
}
.terms-content {
  margin-top: 20px;
  margin-bottom: 20px;
}
.terms-content a {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #44c4ff;
  text-decoration: none;
}
.end-btn {
  font-family: Montserrat;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  background: #44c4ff;
  padding: 10px 40px;
  max-width: max-content;
  margin: 0 auto;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  outline: 0;
  margin-top: 40px;
  animation: pulse 1.5s infinite;
  color: white;
  box-shadow: 0 0 0 0 rgba(68, 196, 255, 0.5);
  text-decoration: none;
}
.end-btn:hover {
  animation: none;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(68, 196, 255, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgb(68, 196, 255, 0);
  }
}
.open {
  transform: translate(0);
  transition: 0.2s ease-in-out;
}
.error {
  color: red;
  font-family: Montserrat;
  font-size: 14px;
  display: block;
  line-height: 15px;
}
@media only screen and (max-width: 992px) {
  .stepOne {
    overflow-y: auto;
  }
  .step__logo {
    padding: 0;
  }
  .title {
    position: relative;
  }
  .stepTwo {
    padding-top: 20px !important;
    height: 100vh;
  }

  .steptwo-form {
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0 -20px;
    /* height: 100%; */
  }
  .steptwo-form .step-about {
    display: none;
  }
  .step__title {
    margin: 0 auto;
  }
  .steps-list {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
  .steps-item {
    margin-right: 0 !important;
    min-height: 85px;
  }
  .steps-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .step-about {
    display: none;
  }
  .has-service {
    max-width: 100% !important;
  }
  .question-content label {
    max-width: 70%;
  }
  .next-btn {
    position: relative !important;
    margin: 20px auto 20px !important;
  }
  .service-op-content label {
    max-width: 70%;
  }

  .about-category,
  .company-category,
  .question-category,
  .stepThree,
  .urgency-category {
    overflow-y: auto;
  }
  .about-content label {
    max-width: 70%;
  }
  .about-content,
  .company-content,
  .contact-content,
  .name-category,
  .question-content,
  .service-content,
  .urgency-content {
    max-width: 100%;
  }

  .back-btn {
    padding: 0 !important;
  }
}
.iti__flag {
  background-image: url(../img/flags.png);
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(../img/flags@2x.png);
  }
}
.iti__selected-flag {
  background-color: transparent !important;
}
