:root {
  --main-color: #237936;
  --background-color: #EF8888;
}

.step {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", serif;
  color: #212D32;
  background-color: #F6FCFF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

main {
  width: 100%;
}

nav {
  display: flex;
  padding: 40px 40px 0;
}

h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
}

h2 {
  font-size: 28px;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

h4 {
  font-size: 18px;
}

p, li, label, input[type=text] {
  font-size: 17px;
  line-height: 26px;
}

video {
  width: 800px;
  margin: auto;
}

section {
  padding: 0;
}

.contentWidth {
  max-width: 1140px;
  margin: auto;
  padding: 40px 20px;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: 2px solid #FFFFFF !important;
  cursor: pointer;
  transition: background-color 0.3s;
}
input[type=radio]:checked {
  background-color: #212D32;
}

input[type=text] {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  border: 2px solid #B4B9BB;
  background-color: #FFFFFF;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Popup overlay styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.popup-box img {
  max-width: 100px;
}

.dashedSquare {
  border: 2px dashed var(--background-color);
  border-radius: 20px;
  padding: 20px;
}

body {
  background-color: var(--background-color);
}
body header {
  height: auto;
}
body nav {
  justify-content: flex-end;
}
body nav a path {
  transition: fill 0.3s;
}
body nav a:hover path {
  fill: var(--main-color);
}
body .content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
body h1 {
  font-size: clamp(22px, 4vw, 48px);
  color: var(--main-color);
  text-align: center;
  font-weight: 900;
}
body .headlineWrapper {
  display: flex;
  align-items: stretch;
  padding: 0 50px;
  gap: 50px;
}
body .headlineWrapper .img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
body .headlineWrapper .img img.big {
  width: 200px;
}
body .headlineWrapper h2, body .headlineWrapper .introductions {
  background: #FFFFFF;
  padding: 20px 30px;
  margin: 0 0 30px 0;
  filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.12));
  position: relative;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body .headlineWrapper h2::before, body .headlineWrapper .introductions::before {
  content: "";
  width: 50px;
  height: 30px;
  background-color: #FFFFFF;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  border-radius: 0;
  left: -49px;
  transform: skewY(20deg);
}
body .headlineWrapper .introductions {
  font-size: 18px;
  line-height: 1.5;
  flex-direction: column;
  gap: 5px;
}
body .headlineWrapper .introductions h3 {
  font-size: 22px;
}
body .headlineWrapper .introductions h3.f-28 {
  font-size: 28px;
}

.stepMenu {
  background-image: url(../images/main/stepMenuBg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.stepMenu li {
  list-style: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  color: #A5B7BF;
  background-color: #FFFFFF;
  border: 5px solid var(--background-color);
}
.stepMenu li.checked {
  background-color: var(--main-color);
  color: #FFFFFF;
  font-weight: 700;
}

.taskContainer {
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(152, 169, 178, 0.111);
  border-radius: 20px;
  padding: 50px 40px;
  background-color: #FFFFFF;
}
.taskContainer .resultWrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
.taskContainer .resultWrapper p {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.taskContainer h4 {
  color: #212D32;
  font-weight: 900;
}

footer {
  color: var(--main-color);
}
footer .contentWidth {
  max-width: 1140px;
  padding: 40px 20px 0;
}
footer .copy {
  border-top: 1px solid var(--main-color);
  text-align: center;
  display: block;
  padding: 30px 20px;
  font-weight: 700;
}
footer .copy p {
  font-size: 14px;
}

.resultMessage .correct, .resultMessageMatching .correct {
  color: green;
}
.resultMessage .incorrect, .resultMessageMatching .incorrect {
  color: red;
}

.step1 .draggable-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
}
.step1 .draggable-item img {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.step1 .draggable-item p {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--main-color);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -15px;
}
.step1 .dropzones-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px 50px;
  align-items: center;
}
.step1 .dropzone {
  width: 100%;
  height: 170px;
  border: 2px solid #212D32;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step1 .dropzone p {
  display: none;
}
.step1 .dropzone img {
  box-shadow: none;
}
.step1 .dropzone.correct {
  border-color: green;
  background-color: green;
}
.step1 .dropzone.incorrect {
  background-color: red;
  border-color: red;
}
.step1 .draggable-item[style*="opacity: 0.5"] {
  pointer-events: none;
}
.step1 .ui-draggable-dragging {
  cursor: grabbing;
}

.options label {
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #212D32;
  position: relative;
  display: block;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.options label.correct {
  color: #FFFFFF;
  border-color: green;
  background-color: green;
}
.options label.incorrect {
  color: #FFFFFF;
  border-color: red;
  background-color: red;
}
.options label input {
  position: absolute;
  z-index: -1;
}

.question {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.arrow-container {
  display: none !important;
}

#step3 .arrow-container {
  display: block !important;
}

.step3 .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.step3 .left-column {
  text-align: center;
}
.step3 .left-column, .step3 .right-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step3 .matching-item, .step3 .matching-target {
  border: 2px solid #212D32;
  border-radius: 10px;
  cursor: pointer;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step3 .matching-item {
  font-size: 24px;
  font-weight: 900;
  padding: 25px 20px;
  transition: background-color 0.3s;
}
.step3 .matching-target {
  padding: 15px 20px;
}
.step3 .selected {
  background-color: var(--background-color);
}
.step3 .correct {
  border-color: green;
}
.step3 .incorrect {
  border-color: red;
}

.card {
  width: 100%;
  height: 150px;
  background-color: var(--main-color);
  background-image: url(../images/ws2/pexesoBg.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}

.card.flipped {
  transform: rotateY(180deg);
}

.card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 15px;
  background-color: var(--main-color);
  border: 2px solid #212D32;
  transition: background-color 0.3s, opacity 0.3s;
  display: none;
}

.card.flipped img {
  background-color: #FFFFFF;
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.memory-game {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
  color: #212D32;
}
.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.none {
  display: none;
}
.none.block {
  display: block;
}

.post-password-form {
  max-width: 1140px;
  padding: clamp(50px, 10vw, 100px) 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.post-password-form p {
  font-size: clamp(16px, 4vw, 20px);
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.post-password-form input {
  border-radius: 10px;
  padding: 10px 20px;
  width: 100%;
  max-width: 200px;
  border: 1px solid #B4B9BB;
}
.post-password-form input[type=submit] {
  display: table;
  padding: clamp(10px, 2vw, 15px) clamp(30px, 6vw, 40px);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.16px;
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  color: #FFFFFF;
  background-color: var(--main-color);
  transition: background-color 0.3s;
}
.post-password-form input[type=submit]:hover {
  background-color: #212D32;
}

.button {
  display: table;
  padding: clamp(10px, 2vw, 15px) clamp(30px, 6vw, 40px);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.16px;
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button.primary {
  color: #FFFFFF;
  background-color: #005A85;
  transition: background-color 0.3s;
}
.button.primary:hover {
  background-color: #212D32;
}
.button.secondary {
  color: #212D32;
  background-color: #F6FCFF;
  transition: background-color 0.3s;
}
.button.secondary:hover {
  background-color: #A5B7BF;
}
.button.light {
  color: #212D32;
  background-color: #FFFFFF;
  transition: background-color 0.3s, color 0.3s;
}
.button.light:hover {
  color: #FFFFFF;
  background-color: #212D32;
}
.button.transparent {
  color: #FFFFFF;
  background-color: transparent;
  transition: background-color 0.3s, border-color 0.3s;
  border: 2px solid #FFFFFF;
}
.button.transparent:hover {
  color: #FFFFFF;
  background-color: #212D32;
  border-color: #212D32;
}
.button.dark {
  color: #FFFFFF;
  background-color: #212D32;
  transition: background-color 0.3s, color 0.3s;
  text-transform: inherit;
  font-size: 16px;
  font-weight: 700;
}
.button.dark:hover {
  background-color: #005A85;
}
.button.bg {
  color: #FFFFFF;
  background-color: var(--main-color);
  transition: background-color 0.3s, color 0.3s;
  text-transform: inherit;
  font-size: 16px;
  font-weight: 700;
  display: block;
}
.button.bg:disabled {
  opacity: 0 !important;
  cursor: unset !important;
  display: none;
}
.button.bg:hover {
  background-color: #005A85;
  color: #FFFFFF;
}
.button.main {
  color: #FFFFFF;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16px;
  transition: background-color 0.3s, opacity 0.3s;
  opacity: 1;
}
.button.main:hover {
  background-color: #212D32;
}
.button.main:disabled {
  opacity: 0.5;
  background-color: var(--main-color);
  cursor: not-allowed;
}

.font-p {
  font-family: "Mulish", serif !important;
}

.font-s {
  font-family: "Mulish", serif !important;
}

.f-22 {
  font-size: clamp(18px, 6vw, 22px);
}

.f-12 {
  font-size: 12px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.lh-0 {
  line-height: 0;
}

.tt-up {
  text-transform: uppercase !important;
}

.tt-in {
  text-transform: initial !important;
}

.tt-low {
  text-transform: lowercase !important;
}

.tt-cap {
  text-transform: capitalize !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-j {
  text-align: justify !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100%;
}

.mw-1000 {
  max-width: 1000px;
  margin: auto;
  overflow: auto;
}
.mw-1000 .content {
  min-width: 1000px;
}

.h-100 {
  height: 100vh;
}

.h-100p {
  height: 100%;
}

.anchor {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hiden {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.wrap {
  flex-wrap: wrap;
}

.d-column {
  flex-direction: column;
}

.j-start {
  justify-content: flex-start;
}

.j-between {
  justify-content: space-between !important;
}

.j-around {
  justify-content: space-around;
}

.j-center {
  justify-content: center !important;
}

.j-end {
  justify-content: flex-end !important;
}

.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.gap-50 {
  gap: 50px;
}

.gap-40 {
  gap: 40px;
}

.gap-30 {
  gap: 30px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-grid {
  display: grid;
}

.gtp-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gtp-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gtp-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gtp-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gtp-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-primary {
  color: #005A85 !important;
}

.c-secondary {
  color: #F6FCFF !important;
}

.c-ternary {
  color: #A5B7BF !important;
}

.c-light {
  color: #FFFFFF !important;
}

.c-dark {
  color: #212D32 !important;
}

.bg-primary {
  background: #005A85 !important;
}

.bg-secondary {
  background: #F6FCFF !important;
}

.bg-ternary {
  background: #A5B7BF !important;
}

.bg-light {
  background: #FFFFFF !important;
}

.bg-dark {
  background: #212D32 !important;
}

.bg-main-color {
  background-color: var(--main-color);
}/*# sourceMappingURL=worksheet-2.css.map */