:root {
  --white: #fff;
  --primary: #25d9f8;
  --secondary: #cb75f6;
  --accent: #ff4949;
  --gray: #f5f5f5;
  --border: #ddd;
  --text: #555;
  --primary-font: "Barlow", sans-serif;
}
body,
html {
  color: var(--text);
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  padding-top: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--primary-font);
  color: #111;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--accent);
}

b,
strong {
  font-weight: bold;
}

input,
textarea {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#header-custom {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  transition: 0.3s;
}
#header-custom .row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4px 0;
  --bs-gutter-x: 0;
}
.header-top {
  padding: 10px 0;
}
#header-custom .logo-link {
  display: flex;
  width: auto;
}
#header-custom .header-logo {
  max-width: 250px;
}
.header-bottom {
  background-color: #25d9f8;
  padding: 10px 0;
}
.header-bottom p {
  color: var(--white);
  font-weight: 700;
}
.quiz-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 150px 0;
  background: url(../images/1.webp) no-repeat center / cover;
  z-index: 1;
}
.quiz-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(37, 217, 248, 0.2);
  z-index: -1;
}
#form-area {
  background-color: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
#form-area .form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#form-area h2 {
  width: 100%;
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
  background-color: rgba(37, 217, 248, 0.2);
  padding: 10px;
  border-radius: 10px;
}
.heading-sub {
  margin-bottom: 20px;
  font-style: 14px;
  color: var(--text);
  text-align: center;
}
.grid-answers {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 10px;
  margin-bottom: 20px;
}
.grid-answers button {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--secondary);
  background-color: rgba(203, 117, 246, 0.2);
  transition: all 0.4s ease;
  border-radius: 10px;
  font-weight: 700;
}
.grid-answers button:hover,
.grid-answers button.selected {
  border: 1px solid var(--primary);
  background-color: rgba(37, 217, 248, 0.2);
}
.answer-comments {
  width: 100%;
  margin-bottom: 20px;
  padding: 6px;
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(to right, rgba(203, 117, 246, 0.2), rgba(37, 217, 248, 0.2));
}
.submit-buton {
  background-color: var(--primary);
  padding: 12px 48px;
  border-radius: 10px;
  border: none;
  outline: none;
  color: var(--white);
  font-weight: 700;
  transition: all 0.4s ease;
  pointer-events: all;
}
.submit-buton:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.submit-buton:hover {
  background-color: var(--secondary);
}
#registrationForm {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
#registrationForm input {
  padding: 12px 16px;
  border: 1px solid rgba(37, 217, 248, 0.2);
  border-radius: 10px;
  outline: none;
}
#registrationForm input:focus {
  border-color: var(--primary);
}
#registrationForm button {
  margin-top: 30px;
}
#registrationForm .checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-left: 0;
}
#registrationForm .checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 5px;
  border: 1px solid var(--primary);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: var(--white);
}
#registrationForm .checkbox input::after {
  content: "";
  height: 20px;
  width: 20px;
}
#registrationForm .checkbox input:checked {
  border: 1px solid var(--accent);
  background-color: var(--accent);
}
#registrationForm .checkbox input:checked::after {
  content: "";
  background: url(../images/check.svg) no-repeat center;
  background-size: 10px auto;
}
#registrationForm .checkbox label {
  padding: 0;
}
#registrationForm .checkbox label,
#registrationForm .checkbox input {
  cursor: pointer;
}
#registrationForm .checkbox a {
  color: var(--accent);
  margin: 0 auto;
  transition: 0.3s;
}
#registrationForm .checkbox a:hover {
  color: var(--primary);
}
#services {
  padding: 80px 0;
}
#services .col-md-6 {
  margin-bottom: 10px;
}
#services .title {
  max-width: 70%;
  margin: 0 auto 30px;
  text-align: center;
}
.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 40px 20px;
  row-gap: 16px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  transition: all 0.4s ease;
  background-color: rgba(37, 217, 248, 0.2);
}
.service-box img {
  width: 50px;
  transition: all 0.4s ease;
}
.service-box h3 {
  margin-bottom: 0;
}
.service-box:hover {
  background-color: var(--primary);
  color: white !important;
}
.service-box:hover img {
  filter: brightness(1000%) invert(1);
}

footer {
  padding: 50px 0 30px;
  background-color: rgba(37, 217, 248, 0.2);
}
footer .col-lg-3 a {
  color: var(--accent);
}
footer .col-lg-3 a:hover {
  color: #212529;
}
.footer-top {
  padding-bottom: 30px;
  row-gap: 20px;
}
.cs_footer_bottom {
  padding: 30px 0 0;
  border-top: 1px solid var(--primary);
}
.cs_footer_bottom ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 16px 30px;
  padding-left: 0;
  margin: 0;
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 10px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
#cookPopup p {
  margin: 0;
  text-align: center;
  font-size: 16px;
}
#cookPopup a {
  color: var(--accent);
  transition: all 0.4s ease;
}
#cookPopup a:hover {
  color: var(--text);
}
.cookPopup_btn {
  background-color: var(--accent);
  padding: 12px 48px;
  border-radius: 10px;
  border: none;
  outline: none;
  color: var(--white);
  font-weight: 700;
  transition: all 0.4s ease;
}
.cookPopup_btn:hover {
  background: var(--primary);
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}

.show {
  display: flex !important
}
@media screen and (max-width: 992px) {
  .cs_footer_bottom ul {
    justify-content: flex-start;
    padding-top: 20px;
    gap: 10px 16px;
  }
  #services .title {
    max-width: 100%;
    font-size: 32px;
  }
  .service-box h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .quiz-section {
    padding: 140px 0 50px;
  }
  #form-area {
    padding: 50px 20px;
  }
  #form-area h2 {
    font-size: 28px;
  }
  .quiz-section .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  #header-custom .header-logo {
    width: 200px;
  }
  .header-bottom p {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  #form-area h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  #registrationForm button {
    margin-top: 10px;
  }
  #registrationForm .checkbox label {
    font-size: 14px;
  }
    .header-bottom p {
      font-size: 12px;
    }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
  line-height: normal;
  color: var(--second-color);
  line-height: 1.6em;
}
.thanks p b {
  color: var(--accent);
}
.thanks p.thanks-text {
  color: var(--accent);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}

.docs {
  word-break: break-word;
  padding: 150px 0 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 36px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: normal;
  line-height: 1.6em;
}
.docs a {
  text-decoration: none !important;
  color: var(--accent);
}
.docs a:hover {
  color: var(--primary);
}