* {}

@font-face {
  /* font-family: 'Faktum';
  src: url('/fonts/Faktum-Regular.woff2') format('woff2'),
    url('/fonts/Faktum-Regular.woff') format('woff'); */
    /* .poppins-medium { */
      font-family: "Poppins", serif;
      font-weight: 500;
      font-style: normal;
    /* } */
}

:root {
  --primary: rgb(20, 99, 255);
  /* Blue */
  --secondary: rgb(14, 11, 61);
  /* Black (or Dark Blue) */
  --white: rgb(255, 255, 255);
  /* White */
  --light-gray: rgb(247, 249, 252);
  /* Light Gray */
}

.bg-white-1 {
  background-color: var(--white);
}

body {
  background-color: rgb(255, 255, 255);
  padding: 0 10%;
  scroll-behavior: smooth;
  margin-bottom: 300px;
}

nav {
  box-sizing: border-box;
  padding: 28px 32px;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
  transition: 300ms;
}

nav ul li {
  margin: 0 15px;
  cursor: pointer;
  color: rgb(83, 84, 121);
  border-radius: 40px;
  padding: 4px 16px;
}

nav ul li:hover {
  background-color: rgb(247, 249, 252);
}

.login {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  padding: 4px 24px;
  border-radius: 40px;
  border: medium;
  cursor: pointer;
  /* font-family: "Inter"; */
  font-size: 14px;
  /* font-weight: 500; */
  background-color: rgb(247, 249, 252);
  transition: 120ms;
  color: rgb(14, 11, 61);
}

.banner-title {
  font-size: 54px;
  line-height: 72px;
  letter-spacing: -0.04em;
  font-weight: 600;
  /* font-family: Faktum, -apple-system, BlinkMacSystemFont, Inter; */
  word-break: normal;
  text-transform: none;
  white-space: normal;
  cursor: inherit;
  margin-top: 8px;
}

.banner-description {
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.01em;
  margin: 8px 0px 0px;
  font-weight: 400;
  font-family: Inter, Helvetica, Arial, sans-serif;
  text-align: center;
  word-break: normal;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
  cursor: inherit;
  appearance: none;
}

.black_or_blue {
  color: var(--secondary);
}

.blue {
  color: var(--primary);
}

@media (min-width: 970px) {
  .dJPIdZ .svgHolder {
    transition: 0.444s cubic-bezier(0.7, 0.39, 0, 1.01);
    transform: scaleX(0.4);
    opacity: 0;
  }

  .dJPIdZ .svgHolder.animate {
    transform: scaleX(1);
    opacity: 1;
    position: relative;
  }
}

.dots>ul>li {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin: 0 2px;
}

.dots ul li:nth-child(1) {
  background-color: rgb(250, 133, 164);
}

.dots ul li:nth-child(2) {
  background-color: rgb(255, 229, 110);
}

.dots>ul>li:nth-child(3) {
  background-color: rgb(82, 226, 130);
}

.navigate-main-site {
  font-size: 10px;
  font-weight: 500;
  border-radius: 12px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  line-height: 24px;
  margin: 0px auto;
  transform: translateX(-25px);
  will-change: transform;
  transition: width 400ms, background-color 200ms 300ms, color 50ms 300ms;
  width: 133px;
  height: 24px;
  background-color: rgb(247, 249, 252);
  color: rgb(0, 93, 255);
}

.form-input {
  appearance: none;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  border-radius: 6px;
  color: rgb(0, 0, 0);
  font-size: 14px;
  padding: 8px 12px;
  transition: border-color 0.1s, background-color 0.1s, box-shadow 0.2s;
  border: 1px solid rgb(234, 239, 245);
  display: block;
  width: 100%;
}

.form-container {
  /* border:1px solid black; */
}

form {
  margin: 0 20px;
}

form label {
  display: block;
  /* font-weight: bold; */
  margin-bottom: 5px;
  color: var(--secondary);
  font-size: 14px;
}

.form-group {
  margin: 16px 0 0 0;
  /* border:1px solid black; */
}

.Submit-btn {
  display: inline-block;
  background: rgb(14, 11, 61);
  box-shadow: rgba(107, 110, 148, 0.16) 0px 32px 64px -12px;
  border-radius: 8px;
  padding: 8px 12px 8px 12px;
  color: var(--white);
  font-size: 14px;
}

.card {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.dropdown {
  width: 200px;
  max-width: 300px;
  position: relative;
}

.dropdown-selected {
  background-color: #f7f9fc;
  padding: 6px;
  /* border: 2px solid #1463ff; */
  box-shadow: rgba(107, 110, 148, 0.16) 0px 32px 64px -12px;
  border: 1px solid rgb(234, 239, 245);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-options {
  list-style: none;
  margin: 5px 0 0;
  padding: 6px 0;
  display: none;
  /* Hidden initially */
  position: absolute;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(107, 110, 148, 0.16) 0px 32px 64px -12px;
  border: 1px solid rgb(234, 239, 245);
  border-radius: 8px;
  z-index: 10;
}

.dropdown-options li {
  padding: 6px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-options li:hover {
  background-color: rgba(20, 99, 255, 0.1);
}

.third-banner-wrapper {
  width: 100%;
  /* min-height: 1052px; */
  background: rgb(3, 1, 34);
  /* margin-top: 86px; */
  position: relative;
  border-radius: 20px;
  color: #fff;
}

.text-Highlights {
  color: rgb(255, 201, 51);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.seconder-Highlights {
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.04em;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.sub-Highlights {
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: rgb(179, 184, 208);
}

.document-btn {
  background-color: rgb(255, 255, 255);
  transition: 125ms;
  margin: 32px 0px 0px;
  padding: 0px 12px 0px 24px;
  min-width: 100px;
  width: auto;
  min-height: 56px;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  border-radius: 50px;
  gap: 4px;
  border: medium;
  cursor: pointer;
  text-transform: none;
  box-shadow: rgba(113, 116, 152, 0.08) 0px 1px 2px;
  min-height: 40px;
  height: 40px;
}
.register-btn {
  background-color: rgb(255, 255, 255);
  transition: 125ms;
  margin: 32px 0px 0px;
  padding: 0px 12px 0px 24px;
  min-width: 100px;
  width: auto;
  min-height: 56px;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  border-radius: 50px;
  gap: 4px;
  border: medium;
  cursor: pointer;
  text-transform: none;
  box-shadow: rgba(113, 116, 152, 0.08) 0px 1px 2px;
  min-height: 40px;
  height: 40px;
}
.register-btn:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(113, 116, 152, 0.12) 0px 6px 12px -4px;
}

.text-for-document {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  margin: 0px;
  font-weight: 500;
  /* font-family: Inter, Helvetica, Arial, sans-serif; */
  word-break: normal;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
  cursor: inherit;
  appearance: none;
  color: rgb(14, 11, 61) !important;
}

.four-banner-wrapper {
  width: 100%;
  min-height: 1052px !important;
  background-color: rgb(247, 249, 252);
  border-radius: 24px;
  margin-top: 200px;
  overflow: hidden;
}

.four-wrapper {
  padding: 88px 44px;
  text-align: initial;
}
.four-wrapper-Course-Details {
  padding: 88px 20px 88px 44px ;
  text-align: initial;
}

.four-header {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.04em;
  margin: 32px 0px 0px;
  font-weight: 600;
  word-break: normal;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
  cursor: inherit;
  appearance: none;
}
.blue-text{
  color:rgb(114, 20, 255);
}

.cta-left-small{
  position: absolute;
  height: 100%;
  /* width: 100%; */
  left: -150px;
  top: -44px;
  right: 0;
  bottom: 0;
  color: transparent;
}
.cta-left-big{
  position: absolute;
  left: -200px;
  /* top: 0; */
  right: 0;
  bottom: 50px;
  color: transparent;
}

.cta-right-big{
  /* top: 0; */
  position: absolute;
  height: 100%;
  right: -200px;
  bottom: 50px;
  color: transparent;
}
.cta-right-big2{
  top: -30px;
  position: absolute;
  height: 100%;
  right: -150px;
  color: transparent;
}

.Testimonials-sub-Highlights{
  font-size: 14px;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: rgb(179, 184, 208);
}

.accordion-sec{
  max-width: 728px;
  box-sizing: border-box;
  padding: 40px 24px;
  background-color: rgb(247, 249, 252);
  border-radius: 16px;
  margin: 40px auto 0px;
  position: relative;
  overflow: hidden;
  padding: 88px 96px 56px;
}

.jwKSpm{
  width: 39px;
  height: 39px;
  background: rgb(0, 93, 255);
  border-radius: 39px;
  overflow: hidden;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}

.jwKSpm .questionMark {
  animation: 2.4s cubic-bezier(0.58, 0.47, 0, 1.23) infinite bounceRotate;
}

@keyframes bounceRotate {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(19deg) scale(1.2);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/*  */


/* Sidebar Container */
.sidebar-container {
  position: relative;
  border: 5px solid #000;
}

/* Toggle Button Styles */
.menu-toggle {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  width: 30px;
  cursor: pointer;
}

.toggle-open {
  font-size: 16px;
}

.toggle-close {
  font-size: 16px;
  display: none; /* Initially hidden */
}

/* Sidebar Styles */
.sidebar {
  position:absolute ;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px 20px;
  transition: all 0.4s ease-in-out;
  z-index: 100;
  opacity: 0;
}

.sidebar.visible {
  left: 0;
  opacity: 1;
}

/* Menu Item Styles */
.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-link {
  margin: 15px 0;
  transition: color 0.3s;
  color: rgb(108, 111, 147);
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.04em;
  /* margin: 0px; */
  font-weight: 600;
  font-family: Faktum, -apple-system, BlinkMacSystemFont, Inter;
  word-break: normal;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
  cursor: pointer;
  appearance: none;
  /* cursor: pointer; */
}

.menu-link:hover {
  color: #03a9f5;
}

@media (max-width: 1100px) {
  body{
    padding: 0 5%;
  }
}


.footer-container{
  box-sizing: border-box;
  padding: 24px;
  background-color: rgb(247, 249, 252);
  border-radius: 12px;
}

.footer-title{
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
  margin: 0px;
  font-weight: 400;
  font-family: Inter, Helvetica, Arial, sans-serif;
  word-break: normal;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
  cursor: inherit;
  appearance: none;
  color: rgb(83, 84, 121);
}
.title{
  font-family: Inter, Helvetica, Arial, sans-serif;
}
.gray{
  color: rgb(83, 84, 121);
}
.four-wrapper-Course-Details::before{
  content: "";
  background-image: url("/imgs/team_background.webp");
  background-size: cover;
  width: 576px;
  height: 633px;
  position: absolute;
  top: 0px;
  right: 0px;
  border-top-right-radius: 24px;
  z-index: 0 !important;
}
@media (max-width: 1200px) {
  .four-wrapper-Course-Details::before{
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 900px) {
  .four-wrapper-Course-Details::before{
    width: 30%;
    height: 400px;
  }
}
@media (max-width: 600px) {
  .four-wrapper-Course-Details::before{
    display: none;
  }
}