@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #63251c;
  --primary-dark: #3a1611;
  --secondary: #ca5219;
  --secondary-light: #ecd2b8;
  --dark: #222222;
  --grey: #444444;
  --light: #f5f5f5;
  --light1: #fff5eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) var(--secondary-light);
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
  /* font-family: "Lato", sans-serif; */
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 24px;
}

.full-img {
  width: 100%;
}

.f20 {
  font-size: 20px;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.light-bg {
  background-color: var(--light);
}

.inner-sec {
  padding: 20px 0;
}

header {
  width: 100%;
  padding: 10px;
  border-bottom: solid 0px var(--secondary-light);
  /* background-color: var(--primary-dark); */
}

.logo img {
  width: 100%;
  max-width: 250px;
}

.squear-logo img {
  width: 100%;
  max-width: 92px;
}

.main-title-bg {
  background-color: var(--primary);
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.main-title {
  font-weight: 500;
  color: var(--primary);
  font-size: 30px;
  padding-top: 10px;
  /* color: var(--white); */
}

.search-main {
  width: 100%;
  min-height: 50px;
  border-radius: 10px;
  /* background-color: var(--light1); */
  /* background-color: var(--primary); */
}

.search-bar {
  width: 100%;
  height: 150px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-bar-main {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.search-bar {
  width: 100%;
  height: 52px;
  background-color: #fff;
  border: solid 1px var(--secondary-light);
  border-radius: 10px;
}

.search-bar input[type="text"] {
  width: 85%;
  height: 50px;
  outline: none;
  border-radius: 0px;
  padding-left: 10px;
  margin-right: auto;
  border: none;
  border-radius: 10px 0 0 10px;
}

.search-bar button {
  background-color: var(--secondary);
  color: #fff;
  border: none;
  outline: none;
  position: absolute;
  right: 0px;
  display: block;
  padding: 10px 25px;
  height: 50px;
  font-weight: 500;
  border-radius: 0px 10px 10px 0px;
}

.search-icon {
  position: absolute;
  left: 5px;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0.5;
}

.accordion-container {
  width: 100%;
  margin: auto;
  display: block;
}

li.accordion ul {
  margin: 0;
  padding: 0;
  background: #fff;
  margin: 0 !important;
  border-top: 0px solid #fff;
  display: none;
  color: black;
}

li.accordion ul .txt {
  padding: 0px 10px 10px 15px;
  margin: 0;
  font-size: 14px;
  background-color: #fff;
  color: var(--dark) !important;
}

li.accordion ul .txt li a {
  display: block;
  color: var(--dark);
  padding: 5px;
  border-bottom: solid 1px #f8f8f8;
}

li.accordion ul .txt li:last-child a {
  border: none;
}

li.accordion span {
  display: block;
  background: var(--white);
  font-size: 14px;
  padding: 10px;
  margin-top: 5px;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  text-align: left;
}

li.accordion {
  /* border-left: 3px solid #396afc; */
  list-style: none;
}
li.accordion span i {
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
  color: var(--dark);
  transition: 0.3s;
}

li.accordion.open span i {
  transform: rotate(90deg);
  transition: 0.3s;
}

.course-cont {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  border: solid 0px var(--light);
  box-shadow: 0 0 5px #999;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.4s;
}

.course-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.course-cont:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.grey-bg {
  background-color: #f8f6f0;
}

.course-details {
  padding: 10px;
  /* min-height: 185px; */
}

.course-details h1 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.rating-img {
  width: 80px;
}

.course-details small {
  opacity: 0.5;
}

.duration {
  font-size: 14px;
  color: var(--grey);
  font-weight: 400;
  opacity: 0.6;
}

.price {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.course-btn {
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--primary);
  color: var(--primary);
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 14px;
}

.course-btn:hover {
  color: var(--white);
  background-color: var(--primary);
}

footer {
  text-align: center;
  padding: 5px;
  background-color: var(--primary-dark);
}

footer p {
  font-size: 14px;
  color: #d5d5d5;
  margin-bottom: 0;
  font-weight: 500;
}

.list {
  margin-top: 10px;
  padding-left: 20px;
  margin-bottom: 30px;
}

.list li {
  position: relative;
  padding-left: 10px;
  color: var(--dark);
  margin-bottom: 5px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #666;
}

.levels-list li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 20px;
}

.levels-list li a {
  padding: 7px 15px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--primary);
  transition: all 0.3s;
  display: block;
}

.levels-list li a:hover {
  background-color: var(--primary-dark);
}

.general-ins {
  min-height: 660px;
}

.general-ins p {
  color: var(--dark);
  position: relative;
  padding-left: 20px;
}

.general-ins p span {
  position: absolute;
  left: 0;
}

.general-ins p strong {
  color: var(--primary);
}

.test-btn {
  padding: 14px 30px;
  border-radius: 30px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  background-color: var(--primary);
  transition: all 0.4s;
}

.test-btn:hover {
  background-color: var(--primary-dark);
}

.test-header {
  width: 100%;
  min-height: 60px;
  /* background-color: var(--primary); */
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
  /* background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
  border-bottom: solid 0px var(--secondary-light);
}

.user-img {
  width: 40px;
}

.timer {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.timer span {
  font-weight: 700;
  color: var(--white);
}

#timer {
  width: 80px;
  padding: 5px;
  background-color: var(--primary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.subject-header {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px 10px 0 0;
}

.subject-header h5 {
  font-size: 16px;
  margin: 0;
}

.subject-header h6 {
  margin: 0;
  font-size: 14px;
}

.exam-sec {
  width: 100%;
  padding: 20px;
  background-color: var(--white);
  min-height: 500px;
  border-radius: 0 0 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 12px;
}

.exam-sec h1 {
  font-size: 20px;
  font-weight: 600;
}

/* Custom radio buttons */
.form-check-input + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-right: 15px;
  font-size: 16px;
}
.form-check-input + label:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 14px;
  position: absolute;
  top: 2px;
  left: 0;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 50%;
}
.form-check-input {
  display: none !important;
}
.form-check-input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.exam-btn-sec {
  margin-top: 50px;
}

.prev-btn {
  padding: 8px 12px;
  border-radius: 5px;
  background-color: var(--grey);
  color: var(--white);
  transition: all 0.3s;
}

.next-btn {
  padding: 8px 12px;
  border-radius: 5px;
  background-color: var(--primary);
  color: var(--white);
  transition: all 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  opacity: 0.7;
}

.rev-btn {
  padding: 5px;
  background-color: var(--secondary-light);
  border-radius: 4px;
  transition: all 0.3s;
}

.rev-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.question-num-sec {
  width: 100%;
  padding: 10px;
  /* background-color: var(--light1); */
  border-radius: 10px;
  /* box-shadow: 0 0 5px #999; */
  border: solid 1px #e8e8e8;
}

.question-num-sec h5 {
  font-size: 16px;
}

.question-num-sec-inner {
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: 10px;
  scrollbar-width: thin; /* for Firefox */
  scrollbar-color: #999 #f0f0f0; /* for Firefox */
}

.question-num-sec-inner li {
  margin-bottom: 15px;
}

.question-num-sec-inner li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: solid 1px #999;
  box-shadow: 0 0 5px #d5d5d5;
  font-weight: 500;
}

.question-num-sec-inner li a.active {
  background-color: rgb(40, 167, 69);
  color: var(--white);
  border-color: rgb(40, 167, 69);
}

/* Webkit browsers */
.question-num-sec-inner::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}

.question-num-sec-inner::-webkit-scrollbar-track {
  background: #f0f0f0; /* track color */
  border-radius: 5px;
}

.question-num-sec-inner::-webkit-scrollbar-thumb {
  background-color: #999; /* thumb color */
  border-radius: 5px; /* roundness of the thumb */
  border: 2px solid #f0f0f0; /* space around thumb */
}

.question-num-sec-inner::-webkit-scrollbar-thumb:hover {
  background-color: #cc5200; /* hover color */
}

/* Remove top and bottom arrows */
.question-num-sec-inner::-webkit-scrollbar-button {
  display: none !important;
  height: 0;
  background: transparent;
}

.rv-sec {
  width: 100%;
  padding: 10px;
  border-top: solid 1px #e8e8e8;
  border-bottom: solid 1px #e8e8e8;
  background-color: var(--light);
  font-size: 14px;
}

.answered {
  width: 30px;
  height: 30px;
  background-color: rgb(40, 167, 69);
  color: var(--white);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.not-answered {
  width: 30px;
  height: 30px;
  background-color: #d40000;
  color: var(--white);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.not-visited {
  width: 30px;
  height: 30px;
  background-color: #999;
  color: var(--white);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.marked-for-review {
  width: 30px;
  height: 30px;
  background-color: var(--secondary-light);
  color: var(--dark);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.mh-820 {
  min-height: 820px;
}

.banner {
  width: 100%;
  min-height: 550px;
  background-color: var(--primary-dark);
  position: relative;
}

.banner-img-cont {
  position: relative;
  width: 100%;
  height: 550px;
}

.banner-img {
  width: 100%; 
  max-width: 600px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-text {
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.banner-text h1 {
  color: var(--white);
  font-size: 34px;
}

.banner-text h2 {
  color: var(--white);
  opacity: 0.9;
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 30px;
}

.banner-botttom {
  width: 100%;
  position: absolute;
  bottom: -270px;
}

.banner-bottom-cont {
  width: 100%;
  min-height: 100px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
}

.bbc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100px;
}

.bbc-icon-cont {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.bbc-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bbc-icon img {
  width: 50px;
}

.banner-bottom-cont p {
  font-size: 14px;
  line-height: inherit;
}

.fw-500 {
  font-weight: 500;
}

.section-two {
  margin-top: 280px;
}

.title {
  font-size: 32px;
  color: var(--primary);
  font-weight: 600;
}

.section-two h5 {
   color: var(--primary-dark);
   font-weight: 600;
   margin-bottom: 0px; 
}

.upskill-sec {
  width: 100%;
  min-height: 500px;
  position: relative;
  background: url(../images/upskilling-banner.jpg) no-repeat center;
  background-size: cover;
}

.upskill-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upskill-cont {
  width: 100%;
  min-height: 500px;
  background-color: rgba(58, 22, 17, 0.9);
  padding: 30px;
}

.upskill-box {
  padding: 20px 15px 10px;
  background-color: var(--white);
  border-radius: 10px;
  min-height: 225px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.upskill-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.psy-banner {
  width: 100%;
  min-height: 530px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.psy-banner h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
}

.psy-banner h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.psy-banner-cont {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.psy-box-cont {
  width: 100%;
  min-height: 340px;
  padding: 20px;
  box-shadow: 0 0 0px #d5d5d5;
  border-radius: 10px;
  border: solid 0px var(--light1);
}

.psy-box-cont h4 {
  font-weight: 600;
  color: var(--dark);
  font-size: 20px;
  margin-top: 20px;
}

.psy-icon {
  width: 55px;
  height: 55px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.psy-icon img {
 filter: invert();
}

.language-list li {
  display: inline-flex;
  width: 150px;
  height: 70px;
  background-color: var(--white);
  text-align: center;
  margin: 10px;
}

.language-list li a {
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transition: all 0.5s;
}

.language-list li a:hover {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: var(--primary);
  color: #fff;
}

.sub-cont {
  padding: 12px;
  background-color: var(--white);
  border-left: solid 5px var(--primary);
  margin-left: 10px;
}

.sub-cont p {
  margin: 0;
  padding-left: 0;
}

.left-subject h4 {
  width: 100%;
  padding: 10px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  font-size: 20px;
}

.right-subject h4 {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-dark);
  color: var(--white);
  text-align: center;
  font-size: 20px;
}

.subject-drag-list {
  padding: 10px;
  border: solid 1px var(--primary);
  min-height: 530px;
}

.subject-drag-list li {

  padding: 10px;
  border: solid 1px #e8e8e8;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 500;
  cursor: move;
  margin-bottom: 5px;
}

.subject-drag-list li i {
  cursor: pointer;
}

.subject-drag-list li:last-child {
  margin-bottom: 0;
}

.droppable-hover {
      background-color: #fadfca !important;
}