@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.logo-top {
  background-color: #FFF6F6;
}

.logo-top .wrapper {
  padding: 10px 100px;
}

.legal-top {
  background-color: #D9534F;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

.hero {
  width: 100%;
  height: 100%;
}

.logo_q{
  width: 150px;
}

.hero {
  background-image: url(./image/homepage-smap-mobile.jpg);
  width: 100%;
  /* height: 500px; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .banner img {
  width: 60%;
}

.flex {
  /* width: 100%;
  height: 100%; */
  /* background-color: red; */
  display: flex;
  /* gap: 100px; */
  /* justify-content: space-around; */
  justify-content: right;
}

/* .flex .left-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
} */

 /* .right-form{
  background-color: #fff3f3;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 40%;
}  */

/* .right-form form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
   margin-left: 100px; 
 }  */

.wrapperr {
  max-width: 500px;
  width: 100%;
  background: #f6f5f5;
  margin: 50px auto;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.125);
  padding: 30px;
  border-radius: 20px;
  margin-right: 20px;
}

.wrapperr .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fec107;
  text-transform: uppercase;
  text-align: center;
}

.wrapperr .form {
  width: 100%;
}

.wrapperr .form .inputfield {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.wrapperr .form .inputfield label {
  width: 200px;
  color: #757575;
  margin-right: 10px;
  font-size: 14px;
}

.wrapperr .form .inputfield .input,
.wrapperr .form .inputfield .textarea {
  width: 100%;
  outline: none;
  border: 1px solid #d5dbd9;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.wrapperr .form .inputfield .textarea {
  width: 100%;
  height: 125px;
  resize: none;
}

.wrapperr .form .inputfield .custom_select {
  position: relative;
  width: 100%;
  height: 37px;
}

.wrapperr .form .inputfield .custom_select:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  border: 8px solid;
  border-color: #d5dbd9 transparent transparent transparent;
  pointer-events: none;
}

.wrapperr .form .inputfield .custom_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  height: 100%;
  border: 0px;
  padding: 8px 10px;
  font-size: 15px;
  border: 1px solid #d5dbd9;
  border-radius: 3px;
}

.wrapperr .form .inputfield .input:focus,
.wrapperr .form .inputfield .textarea:focus,
.wrapperr .form .inputfield .custom_select select:focus {
  border: 1px solid #fec107;
}

.wrapperr .form .inputfield p {
  font-size: 14px;
  color: #757575;
}
.wrapperr .form .inputfield .check {
  width: 15px;
  height: 15px;
  position: relative;
  display: block;
  cursor: pointer;
}
.wrapperr .form .inputfield .check input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.wrapperr .form .inputfield .check .checkmark {
  width: 15px;
  height: 15px;
  border: 1px solid #D9534F;
  display: block;
  position: relative;
}
.wrapperr .form .inputfield .check .checkmark:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 9px;
  height: 7px;
  border: 2px solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-45deg);
  display: none;
}
.wrapperr .form .inputfield .check input[type="checkbox"]:checked ~ .checkmark {
  background: #D9534F;
}

.wrapperr
  .form
  .inputfield
  .check
  input[type="checkbox"]:checked
  ~ .checkmark:before {
  display: block;
}

.wrapperr .form .inputfield .btn {
  width: 100%;
  padding: 8px 10px;
  font-size: 15px;
  border: 0px;
  background-color: #eb6560;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  outline: none;
}

.wrapperr .form .inputfield .btn:hover {
  background: #D9534F;
}

.wrapperr .form .inputfield:last-child {
  margin-bottom: 0;
}

@media (max-width: 420px) {
  .wrapperr .form .inputfield {
    flex-direction: column;
    align-items: flex-start;
  }
  .wrapperr .form .inputfield label {
    margin-bottom: 5px;
  }
  .wrapperr .form .inputfield.terms {
    flex-direction: row;
  }
}

.form-step {
  display: none;
}

.form-step-active {
  display: block;
}

/* Style for the previous button */
.btn-prev {
  background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;

  background-color: #d9615d;
  color: #fff;
  padding: 5px 15px;
  margin-top: 15px;
  border-radius: 5px;
}

.btn-prev:hover {
  background-color: #d9615d;
  color: #000;
}

/* Style for the next button */
.btn-next {
  background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;

  background-color: #e26964;
  color: #fff;
  padding: 5px 15px;
  margin-top: 15px;
  margin-left: 5px;
  border-radius: 5px;
}

.btn-next:hover {
  background-color: #e46662;
  color: #000;
}

#steps {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 120px;
  background-color: #6b6a6a;
}

#steps .one,
.two,
.three {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#steps .one,
.two,
.three p {
  font-weight: bold;
  color: #fff;
}

#steps .one .red-box {
  padding: 10px 20px;
  width: fit-content;
  /* background-color: #fe6607; */
  /* font-size: 2vw; */
  color: #f6f5f5;
  border-radius: 10px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
}

#steps .two .box {
  width: fit-content;
  padding: 10px 20px;
  /* font-size: 2vw; */
  color: #f6f5f5;
  background-color: transparent;
  border-radius: 10px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
}

#steps .three .box {
  width: fit-content;
  padding: 10px 20px;
  /* font-size: 2vw; */
  color: #f6f5f5;
  background-color: transparent;
  border-radius: 10px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
}

#info {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#info div {
  width: 30%;
}

#info h2 {
  font-size: 2vw;
}

#info p {
  font-size: 1.2vw;
}

footer .links {
  font-size: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .descriptions {
  font-size: 12px;
  padding: 0 20px;
  color: #757575;
}

footer .descriptions p {
  text-align: center;
}

/* .last-section { */
  /* margin-top: 200px; */
  /* background-color: #58ff63; */
/* } */

.text-12{
  font-size: 1.3vw;
  color: #808080;
}

.how-it-works {
  text-align: center;
  padding: 50px 0;
  background-color: #d9534f; /* Match the red color from the image */
  color: #ffffff; /* White text color */
}

.how-it-works h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  flex: 1;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon {
  margin-bottom: 20px;
}

.icon img {
  width: 80px;
  height: 80px;
}

.step p {
  font-size: 1em;
  margin: 0;
}

.latest-prizes{
  text-align: center;
  background-color: #7899a29e;
}

.latest-prizes h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.prizes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.prize {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  flex: 1;
  max-width: 250px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.prize img {
  max-width: 100%;
  border-radius: 10px;
}

.prize p {
  font-size: 1.2em;
  margin: 10px 0;
}

.enter-btn {
  background-color: #d9534f; /* Match the red color from the image */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.enter-btn:hover {
  background-color: #c9302c;
}


.footer-container {
  display: flex;
  justify-content: space-around;
  padding: 20px 50px;
  background-color: #B50018;
  color: #fff;
}

.footer-logo {
  text-align: center;
  max-width: 300px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 1em;
  margin: 10px 0;
  color: #fff;
}

.footer-links {
  max-width: 200px;
}

.footer-links h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00; /* Light yellow color on hover */
}

.footer-disclaimer {
  background-color: #B50018; /* Slightly darker red for the disclaimer section */
  color: #ffffff;
  padding: 20px 50px;
  font-size: 0.8em;
  text-align: center;
}

.footer-disclaimer p {
  margin: 10px 0;
}





.form-step {
  display: none;
}
.form-step-active {
  display: block;
}
.inputfield {
  margin-bottom: 20px;
}
.inputfield label {
  display: block;
  margin-bottom: 5px;
}
.inputfield input[type="text"],
.inputfield input[type="number"],
.inputfield input[type="email"],
.inputfield input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.inputfield .btn-next,
.inputfield .btn-prev,
.inputfield .btn {
  /* background-color: #007bff; */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}
.inputfield .btn-next:hover,
.inputfield .btn-prev:hover,
.inputfield .btn:hover {
  background-color: #de3a34;
}
.inputfield .terms {
  display: flex;
  align-items: center;
}
.inputfield .terms label {
  margin-right: 10px;
}
.inputfield .terms p {
  margin: 0;
}
.inputfield .terms a {
  color: #4987e4;
}
.input-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.input-group label {
  background-color: #007bff;
  color: #fff;
  padding: 5px 5px;
  border: none;
  /* border-radius: 10px; */
  cursor: pointer;
  margin: 5px;
  flex: 1;
  text-align: center;
}
.input-group input[type="radio"]:checked + label,
.input-group input[type="checkbox"]:checked + label {
  background-color: #0062cc;
}
.input-group input[type="radio"],
.input-group input[type="checkbox"] {
  display: none;
}

#step-2 h2, label{
  font-size: 15px;
}

select[multiple] {
  height: 100px; /* Adjust height as needed */
  /* width: 100%; Adjust width as needed */
}



/* responsive */

@media (max-width: 950px) {
  .flex {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  #steps {
    margin-top: 520px;
  }
  #steps p {
    font-size: 2.5vw;
  }
}

@media (max-width: 600px) {
  .footer-container{
    flex-direction: column;
    align-items: center;
  }
  .footer-links h3{
    color: yellow;
  }
  .footer-links{
    text-align: center;
  }
}

/* cookie-box */

.cookie-box{
  width: 100%;
  margin: auto;
}

.subcontainer{
  width: 85%;
  margin: auto;
}

#cookies{
  width: 100%;
  position: fixed;
  bottom: 0;
  color: #fff;
  background-color: #09162f;
  z-index: 1;
  display: none;
}

.cookies{
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cookies p{
  margin-bottom: 0;
}

#cookie-btn{
  border-radius: 5px;
  padding: 10px;
  background-color: #e4c91b;
  border: none;
  font-family: inherit;
  font-weight: 600;
  border: 2px solid rgb(205, 203, 203);
}

#cookie-btn:hover{
  background-color: #007bff;
  color: #fff;
  transition: linear 0.3s;
}

@media (max-width:1600px) {
  .cookie-box{
    width: 100%;
  }
}

@media (max-width:1024px) {
  .cookies{
    padding: 10px 0;
  }
}