@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
body {
  font-family: "IBM Plex Sans", sans-serif !important;
  margin: 0;
  padding: 0;
  background-color: #011E38;
  color: #F5F1EB;
  overflow-y: auto;
  width: 100vw;
  height: 100vh;
}
body .vinheta, body .header .navigation .nav-item {
  position: relative;
  overflow: hidden;
}
body .vinheta::before, body .header .navigation .nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
}
body.vertical-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: stretch;
  gap: 0px;
}
body.vertical-nav .header {
  width: 20%;
  height: 100vh;
}
body.vertical-nav .header .logo-connect {
  width: 100%;
  height: 100px;
}
body.vertical-nav .header .navigation {
  height: auto;
  flex-grow: 1;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  box-shadow: 10px 0 10px rgba(0, 0, 0, 0.2);
  margin-top: 45px;
  padding: 0px;
  padding-right: 10px;
  padding-left: 20px;
}
body.vertical-nav .header .navigation .nav-item {
  width: 90%;
}
body.vertical-nav .header .navigation .nav-item.active {
  transform: scale(1.2) skew(-20deg) translateX(30px);
  color: #F1C40F;
}
body.vertical-nav .contents {
  width: 70%;
  height: 100vh;
  padding: 0 20px;
  margin: 0 auto;
}
body .header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}
body .header .logo-connect {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}
body .header .logo-connect img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}
body .header .navigation {
  min-height: 12vh;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  flex-shrink: 0;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  background: #011E38;
  color: #F5F1EB;
}
@media screen and (max-width: 1280px) {
  body .header .navigation {
    justify-content: start;
    padding: 0 10px;
  }
}
body .header .navigation .nav-item {
  min-width: 150px !important;
  width: fit-content;
  height: 70px;
  perspective: 1000px;
  background: #264FEC;
  padding: 0 5px;
  border-radius: 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #F5F1EB;
  font-weight: bold;
  transition: 0.3s;
  transform: skew(-20deg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 1;
  flex-grow: 1;
  overflow: visible;
}
body .header .navigation .nav-item.active {
  transform: scale(1.2) skew(-20deg);
  color: #F1C40F;
}
body .header .navigation .nav-item .redlines {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: 5px;
  height: 120%;
}
body .header .navigation .nav-item .redlines .redline {
  width: 5px;
  height: 100%;
  background: #C70E0E;
  border-radius: 0px;
  z-index: 10;
}
body .header .navigation .nav-item .text {
  transform: skew(20deg) !important;
  padding: 0 15px;
  width: auto;
}
@media screen and (max-width: 1280px) {
  body .header .navigation .nav-item .text {
    font-size: 14px;
    padding: 0 20px;
  }
}
body .contents {
  width: 1280px;
  height: calc(90vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
body .contents::-webkit-scrollbar {
  width: 10px;
}
body .contents::-webkit-scrollbar-track {
  background: #011E38;
}
body .contents::-webkit-scrollbar-thumb {
  background: #264FEC;
  border-radius: 5px;
}
body .contents::-webkit-scrollbar-thumb:hover {
  background: #C70E0E;
}
@media screen and (max-width: 1280px) {
  body .contents {
    width: 100%;
    height: calc(90vh - 100px);
  }
}
body .contents main {
  position: relative;
  width: 100%;
  height: auto;
}
body .contents main::-webkit-scrollbar {
  width: 10px;
}
body .contents main::-webkit-scrollbar-track {
  background: #011E38;
}
body .contents main::-webkit-scrollbar-thumb {
  background: #264FEC;
  border-radius: 5px;
}
body .contents main::-webkit-scrollbar-thumb:hover {
  background: #C70E0E;
}
body .contents main.hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1280px) {
  body .contents main {
    width: 100%;
    padding: 20px;
  }
}
body .contents main h1,
body .contents main h2 {
  text-align: center;
  margin-top: 20px;
  padding: 0 90px;
  font-size: 20px;
}
body .contents main h1 {
  font-size: 30px;
  font-weight: bold;
}
body .contents main .divisor {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 8vw;
}
body .contents main .divisor .title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  background-color: #011E38 !important;
  width: fit-content;
  height: fit-content;
  padding: 2px;
  margin-top: -25px;
}
body .contents main .divisor hr {
  width: 100%;
}
body .contents main .cards-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}
body .contents main .cards-wrapper .card {
  width: 200px;
  height: 200px;
  perspective: 1000px;
  margin: 0 20px;
}
body .contents main .cards-wrapper .card.flipped .inner-card {
  transform: rotateY(180deg);
}
body .contents main .cards-wrapper .card .inner-card {
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
  cursor: pointer;
}
body .contents main .cards-wrapper .card .inner-card .front,
body .contents main .cards-wrapper .card .inner-card .back {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 16px;
  backface-visibility: hidden;
  padding: 10px;
}
body .contents main .cards-wrapper .card .inner-card .front {
  border: 1px solid #264FEC;
  color: white;
  background-color: #264FEC;
  color: #F5F1EB;
}
body .contents main .cards-wrapper .card .inner-card .back {
  background-color: #F5F1EB;
  color: black;
  transform: rotateY(180deg);
}
body .contents main .insight-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin: 40px auto 30px auto;
}
body .contents main .insight-wrapper .insight-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}
body .contents main .insight-wrapper .insight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  background: #F5F1EB;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 800px;
}
body .contents main .insight-wrapper .insight .insight-text {
  width: 96%;
  font-style: italic;
  color: #011E38;
  margin-bottom: 30px;
}
body .contents main .insight-wrapper .insight .video-box {
  width: 96%;
  background: #000;
  color: #F5F1EB;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
body .contents main .insight-wrapper .insight .video-box video {
  width: 100%;
  height: auto;
}
body .contents main .quiz {
  text-align: center;
  margin-top: 50px;
}
body .contents main .quiz p {
  width: 450px;
  font-size: 22px;
  margin: 0 auto;
  padding: 0px;
  padding-bottom: 15px;
  text-align: justify;
}
body .contents main .quiz button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 13px auto;
  padding: 13px 26px;
  border: 1px solid rgb(131.7881355932, 155.0677966102, 244.2118644068);
  border-radius: 0px;
  background: #264FEC;
  cursor: pointer;
  width: 390px;
  transition: 0.3s;
  font-size: 20px;
  color: #F5F1EB;
  transform: skew(-20deg);
}
body .contents main .quiz button span {
  transform: skew(20deg) !important;
}
body .contents main .quiz button:hover {
  background: #264FEC;
}
body .contents main .quiz button.correct {
  background: #2ECC71;
  transform: scale(1.3) skew(-20deg);
}
body .contents main .quiz button.incorrect {
  background: #C70E0E;
  transform: scale(1.3) skew(-20deg);
}
body .contents main .quiz .feedback {
  transition: height 0.3s ease-in-out;
  margin-top: 10px;
  font-weight: bold;
  font-size: 20px;
  width: 450px;
  text-align: justify;
  margin: 0 auto;
  /*
  &.correct {
      color: $green;
  }
  &.incorrect {
      color: $red;
  }
  */
}
body .contents main .back-button {
  margin-top: 40px;
  text-align: center;
}
body .contents main .back-button a {
  text-decoration: none;
  color: #F5F1EB;
  font-weight: bold;
}

.some {
  display: none;
}

/*# sourceMappingURL=index.css.map */
