* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;

  color: #07071a;
}
img {
  max-width: 100%;
  max-height: 100%;
}
.open-sans {
  font-family: "Open Sans", sans-serif;
}

.manrope {
  font-family: "Manrope", sans-serif;
}
.text-center {
  text-align: center;
}
.block {
  display: block;
}
.container {
  max-width: 1250px;
  padding: 0 20px;
  margin: auto;
}
.hidden {
  display: none;
}
.qustioner-container {
  align-content: center;
  min-height: 100vh;
}
.qustioner-section.mdSize {
  max-width: 650px;
  /* padding: 0 20px; */
  margin: auto;
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}
.progress .progress-item {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #07071a;
  opacity: 0.1;
  transition: all 0.3s ease;
}
.progress .progress-item.active {
  opacity: 1;
}
.qustioner-body .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .qustioner-body .title {
    font-size: 42px;
  }
}
.qustioner-body .text {
  font-size: 20px;
  font-weight: 200;
  opacity: 0.7;
}
.qustioner-body .banner {
  border-radius: 15px;
  overflow: hidden;
  margin: 24px 0;
}
.qustioner-body .banner img {
  display: block;
}
.qustioner-body .btnBox {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.qustioner-body .btnBox .btn {
  background: #783233;
  border-radius: 5px;
  padding: 18px 70px;
  color: #fff;
  border: none;
  font-family: manrope;
  font-size: 17px;
  position: relative;
}
.qustioner-body .btnBox .btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  animation: ripple-infinite 2.5s ease infinite;
  border-radius: 5px;
}
@keyframes ripple-infinite {
  0%,
  40%,
  50% {
    box-shadow: 0 0 0 0 rgba(120, 50, 51, 0.4);
  }
  85% {
    box-shadow: 0 0 0 20px rgba(120, 50, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(120, 50, 51, 0);
  }
}
.aboutBox {
  padding: 40px 0;
}
.aboutBox .aboutBox-body {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
  /* align-items: center; */
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .aboutBox .aboutBox-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}
.aboutBox .aboutBox-body .banner {
  padding-top: 84%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.aboutBox .aboutBox-body .banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  max-width: unset;
  max-height: unset;
}
.bannerBox .titleText {
  font-size: 15px;
  font-weight: 600;
}
.bannerBox .text {
  font-size: 11px;
  font-style: italic;
}
.aboutBox .aboutBox-body .aboutBox-body-item-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 200;
}

.aboutBox-body-item .title {
  font-size: 21px;
  margin-bottom: 30px;
}
.aboutBox-body-item .text {
  font-size: 19px;
}

.infoBox {
  background: #783233;
  color: #fff;
  padding: 50px 0;
}
.infoBox-body {
  padding: 0px 20px;
  max-width: 725px;
  margin: auto;
}
.infoBox .title {
  font-size: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.infoBox .text {
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: 200;
  line-height: 30px;
}

/* Accordion Styles */
.accordion {
  margin-top: 40px;
}

.accordion-item {
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}

/* .accordion-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
} */

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  transition: all 0.3s ease;
}
.accordion-header span {
  flex: 1;
  font-family: open sans;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .accordion-header span {
    font-size: 25px;
  }
}

/* .accordion-header:hover {
  background: rgba(255, 255, 255, 0.1);
} */

.accordion-header:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.accordion-header svg {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-header svg line,
.accordion-header svg polyline {
  stroke: #07071a;
  stroke-width: 1.5;
}
.accordion-header .accordion-header-icon {
  width: 76px;
  height: 76px;
  border-radius: 76px;
  overflow: hidden;
  margin-right: 20px;
}
.accordion-header .accordion-header-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-body {
  padding: 0 24px 24px;
}

.accordion-body p {
  color: #07071a;
  opacity: 0.5;
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .accordion-body p {
    padding-left: 96px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .accordion-header {
    padding: 16px 20px;
    font-size: 16px;
  }

  .accordion-body {
    padding: 0 20px 20px;
  }

  .accordion-body p {
    font-size: 15px;
  }
}
.footerBox {
  padding: 50px;
  text-align: center;
}
.footerBox .footerBox-body {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}
.footerBox .titleText {
  font-size: 23px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 24px;
}
.footerBox .text {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 24px;
  font-weight: 200;
}

.radioList {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.radioList .item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 26px;
  position: relative;
}
.radioList [type="radio"]:checked,
.radioList [type="radio"]:not(:checked) {
  position: absolute;
  left: 2px;
}
.radioList [type="radio"]:checked + label,
.radioList [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 45px;
  padding-top: 2px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .radioList [type="radio"]:checked + label,
  .radioList [type="radio"]:not(:checked) + label {
    font-size: 20px;
  }
}
.radioList [type="radio"]:checked + label:before,
.radioList [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.radioList [type="radio"]:checked + label:after,
.radioList [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 11px;
  height: 11px;
  /* background: #f87da9; */
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 7px solid #783233;
}
.radioList [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.radioList [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.btnList {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.btnList .btn {
  background: #f2f2f3;
  border: 1px solid #dadadc;
  font-size: 20px;
  padding: 18px 22px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btnList .btn {
    padding: 21px 27px;
  }
}
.btnList .btn.active {
  background: #783233;
  color: #fff;
}

.step4 .inputBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.step4 .inputBox input {
  width: 100%;
  height: 72px;
  padding: 23px 21px;
  border: 1px solid #dadadc;
  border-radius: 5px;
  font-size: 20px;
  outline: none;
  margin-bottom: 100px;
  transition: 0.3s;
}
.step4 .inputBox input.error {
  border-color: #783233;
}

.cardBtnBox {
  display: grid;

  align-items: center;
  gap: 20px;
}
.cardBtnBox.col-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .cardBtnBox.col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cardBtnBox.col-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .cardBtnBox.col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.cardBtnBox .cardBtn {
  border: 1px solid #dadadc;
  border-radius: 5px;
  overflow: hidden;
  background: #f2f2f3;
  cursor: pointer;
  position: relative;
}
.cardBtnBox .cardBtn .imageBox {
  padding-top: 100%;
  position: relative;
}
.cardBtnBox .cardBtn .imageBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cardBtnBox .cardBtn .textBox {
  padding: 15px;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cardBtnBox .cardBtn .textBox {
    padding: 21px;
    font-size: 21px;
  }
}
.cardBtnBox .cardBtn .checkMarkIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;

  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.518);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cardBtnBox .cardBtn.active .checkMarkIcon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.cardBtnBox .cardBtn .checkMarkIcon .iconBox {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 10px;
  border: 3px solid #07071a;
  background: #fff;
}

.thankYou {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.thankYou p {
  font-size: 20px;
  color: #07071aa5;
  font-weight: 200;
}

.formWrapper .textBox {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.formWrapper .textBox p {
  font-size: 20px;
  color: #07071aa5;
}

.formWrapper .formBox .formControl {
  width: 100%;
  height: 60px;
  padding: 16px;
  border: 1px solid #dadadc;
  border-radius: 5px;
  font-size: 20px;
  outline: none;
  margin-bottom: 24px;
  font-size: 14px;
  transition: 0.3s;
}
.formWrapper .formBox .formControl.error {
  border-color: #783233;
}
.formWrapper .formBox .formControl:focus {
  border-color: #783233;
}
.formWrapper .formBox .formControl::placeholder {
  color: #07071a55;
}

@media screen and (min-width: 768px) {
  .formWrapper .formBox .formControl {
    height: 72px;
    padding: 23px 21px;
    font-size: 16px;
  }
}
.formWrapper .formBox .btnBox {
  margin-top: 40px;
}
