* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

@font-face {
  font-family: Europa Grotesk SH;
  src: url('../../assets/fonts/EuropaGroteskSH-Med.otf');
}

@-webkit-keyframes showBlock {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes showBlock {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* container */
.container {
  padding: 0 58px;
}

/* wrapper */
.wrapper {
  background: #13171f;
  min-height: 100vh;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wrapperInner {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  max-height: calc(100vh - 148px);
  height: 100%;
  overflow: auto;
  border-radius: 12px;
}
.wrapperInner::-webkit-scrollbar {
  display: none;
}
.wrapperInner {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* header */
.header {
  background: #86918f;
  border-radius: 12px 12px 0px 0px;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.headerLogo img {
  display: block;
  width: 80px;
}
.headerTitle {
  font-family: 'Europa Grotesk SH';
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  color: #ffffff;
}
.headerSub {
  font-family: 'Arial';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  margin-top: 5px;
}
.all {
  scroll-behavior: smooth;
  overflow: auto;
}

/* content */
.content {
  padding: 50px 0;
  background: #fff;
}
.contentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
.contentBox {
  display: none;
}
.contentBoxQuestions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 53%;
}
.contentBoxQuestionBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px;
  background: #eceaea;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  opacity: 0;
}
.contentBoxQuestionTime {
  font-family: 'Arial';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}
.contentBoxQuestionSub {
  font-family: 'Arial';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
}
.contentBoxAnswers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 60px;
  width: 47%;
  margin-left: auto;
  opacity: 0;
}
.contentBoxAnswersWithForm {
  width: 100%;
}
.contentBoxAnswerBox {
  font-family: 'Arial';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  background: #75aa9b;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border: 0;
  padding: 12px 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.contentBoxAnswerBox.selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  color: #000000;
}
.contentBoxAnswerBox.notSelected {
  display: none;
}

/* footer */
.footer {
  background: #343434;
  border-radius: 0px 0px 12px 12px;
  padding-top: 54px;
  padding-bottom: 83px;
}
.footerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footerLogo {
  margin-top: 30px;
}
.footerLogo img {
  display: block;
  width: 60px;
}
.footerText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.footerSub {
  font-family: 'Arial';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #ffffff;
}
