@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Advent+Pro:wght@300;500;600&display=swap");

body {
  margin: 0px;
  padding: 0px;
}

/* NAVBAR CSS START*/

#navbar {
  height: 90px;
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  transition: transform 0.5s ease-in-out;
  z-index: 999;
  background-color: #2a53c1;
}

.navbar {
  height: 65px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  bottom: 25px;
  margin-top: 0px;
  width: 70%;
  margin: auto;
  border-radius: 5px;
  box-shadow: 0 0.4px 0.4px rgba(0, 0, 0, 0.022), 0 1px 1px rgba(0, 0, 0, 0.031),
    0 2.1px 2.1px rgba(0, 0, 0, 0.039), 0 4.4px 4.4px rgba(0, 0, 0, 0.048),
    0 12px 12px rgba(0, 0, 0, 0.07);
}
.ul-list {
  display: flex;
  align-items: center;
  padding-left: 0px;
  list-style: none;
  box-sizing: border-box;
  z-index: 2;
  display: flex;
  height: 100%;
  margin: auto;
  /* border: 1px solid red; */
}

.ul-list li {
  text-transform: capitalize;
  height: 40px;
  margin: 0px;
  padding: 0px;
  height: 100%;
}
.ul-list-li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ul-list-li a {
  text-decoration: none;
  color: #0e1c40;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 0px 25px;
  transition: color 0.4s ease 0s;
}
.ul-list-li:hover a {
  color: rgb(182, 182, 182);
}
.logo {
  display: flex;
  align-items: center;
  position: relative;
  /* height: 80px; */
}
.cruxe-logo {
  height: 100%;
  width: 120px;
  margin-left: 20px;
  color: #ffffff;
}

.logo span {
  color: #0e1c40;
  font-weight: 500;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-family: "Advent Pro", sans-serif;
  letter-spacing: 1px;
}
.cruxe-logo img {
  height: 100%;
  width: 100%;
}
.social-logo {
  color: #ffffff;
  font-size: 1.5rem;
  padding: 10px;
  margin-right: 10px;
  position: absolute;
  right: 20px;
}
.social-logo i {
  padding: 4px;
  color: #ffffff;
}
.dropdown div:nth-child(1) {
  font-size: 17px;
  padding: 0px 25px;
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #0e1c40;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  transition: color 0.4s ease 0s;
}
.dropdown div:nth-child(1):hover {
  color: rgb(182, 182, 182);
  cursor: pointer;
}
.fa-caret-down {
  padding-left: 10px;
}
.dropdown-container {
  border-radius: 8px;
  display: none;
  width: 250px;
  height: 310px;
  position: absolute;
  margin: 0px;
}

.dropdown-container ul {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  list-style: none;
  padding: 0px;
  height: 100%;
  justify-content: space-around;
  background-color: #2a53c1;
}
.dropdown-container ul li {
  display: block;
  margin: 0px;
  padding: 20px 0px 20px 20px;
  height: 64px;
  border: none;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(250, 249, 249);
}
.dropdown-container ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border: none;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
.dropdown:hover .dropdown-container {
  display: block;
}

.dropdown-container ul li:hover {
  background: rgb(221, 221, 221);
}
.dropdown-container ul li:hover a {
  color: black;
}
.for-res {
  text-decoration: none;
  display: none;
}
#menu-container {
  display: none;
}
#menu-wrapper {
  overflow: hidden;
  max-width: 100%;
  cursor: pointer;
}

#menu-wrapper #hamburger-menu {
  position: relative;
  width: 25px;
  height: 20px;
  margin: 10px;
}

#menu-wrapper #hamburger-menu span {
  opacity: 1;
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  color: black;
  background-color: #2a53c1;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
}

#menu-wrapper #hamburger-menu span:nth-child(1) {
  top: 0;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
  top: 9px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
  top: 18px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(135deg);
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-60px);
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

#menu-container .menu-list .menu-submenu {
  padding-top: 20px;
  padding-bottom: 20px;
}
#menu-container .menu-list {
  padding-left: 0;
  display: block;
  position: absolute;
  width: 60%;
  background: #2a53c1;
  box-shadow: rgba(100, 100, 100, 0.2) 6px 2px 10px;
  z-index: 999;
  overflow-y: scroll;
  overflow-x: hidden;
  right: -100%;
  top: 41px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  max-height: 100vh;
  list-style: none;
}
#menu-container .menu-list li a {
  text-decoration: none;
  color: #ffffff;
}

#menu-container .menu-list li.accordion-toggle,
#menu-container .menu-list .menu-login {
  font-size: 17px;
  padding: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #ffffff;
}
#menu-container .menu-list li:first-of-type {
  border-top: 0;
}

.accordion-toggle,
.accordion-content {
  cursor: pointer;
  font-size: 16px;
  position: relative;
  letter-spacing: 1px;
}

.accordion-content {
  display: none;
}

/* NAVBAR CSS END */

/* HERO CARDS CSS START */

.top-pick-container {
  width: 1400px;
  margin: 200px auto auto;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  color: #0e1c40;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.top-pick-heading {
  font-weight: 900;
  font-size: 8.1em;
}
.top-pick-heading p {
  margin: 0px;
}

.top-pick-container p:hover {
  cursor: pointer;
}
.editors-pick-wrapper {
  padding: 0px 12px 12px 12px;
  margin-top: 0px;
}
.editors-pick {
  font-weight: 800;
  font-size: 2rem;
  margin: 0px;
  color: #0e1c40;
  font-family: "Montserrat", sans-serif;
}
.editors-pick-wrapper:hover {
  cursor: pointer;
}
.editors-pick-para {
  text-transform: capitalize;
  margin: 0px;
  margin-top: 3px;
  font-weight: 700;
  font-size: small;
  color: #0e1c40;
  font-family: "Montserrat", sans-serif;
}

.Maincontent-container {
  width: 1400px;
  margin: auto;
  height: 120vh;
  display: flex;
}
.Content-cards {
  height: 100%;
  width: 65%;
}
.card-1 {
  width: 95%;
  height: 42%;
  display: flex;
  align-items: center;
  box-shadow: -1px 15px 30px -12px black;
  border-radius: 19px;
}
.img-card1 {
  width: 50%;
  height: 100%;
  padding-left: 20px;
  padding: 0px;
}
.img-card1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 0px;
  margin: 0px;
  border-radius: 19px 0px 0px 19px;
}

.card-1-text {
  height: 100%;
  width: 50%;
}

.cardtext-container {
  height: 100%;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.classtext-headingpara {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 25px;
  letter-spacing: 0.5px;
  word-spacing: 0.9px;
  font-family: "Montserrat", sans-serif;
}
.classtext-headingpara p {
  margin: 0px;
  margin-top: 20px;
  padding: 0px;
}

.classtext-content {
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  padding: 5px;
  padding-top: 15px;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.25rem;
  opacity: 8;
  height: auto;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  margin-top: 15px;

  border-top: 1px solid rgb(196, 196, 196);
  /* height: 280px; */
}
.classtext-content p {
  padding: 0px;
  margin: 0px;
}
.cardtext-container:hover p {
  color: #2a53c1;
  cursor: pointer;
}

.card-23-container {
  margin-top: 50px;
  width: 95%;
  height: 55%;
  display: flex;
  justify-content: space-between;
}
.card-2 {
  height: 100%;
  width: 49%;
  box-shadow: -1px 15px 30px -12px black;
  border-radius: 19px;
  overflow: hidden;
}

.img-card2 {
  width: 100%;
  height: 30%;
  object-fit: cover;
  box-sizing: border-box;
}
.img-card2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px 19px 0px 0px;
}
.img-card3 {
  width: 100%;
  height: 40%;
  background-size: cover;
  object-fit: cover;
  box-sizing: border-box;
}
.img-card3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px 19px 0px 0px;
}
.card2text {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  height: 70%;
}
.card2text :hover p {
  color: #2a53c1;
  cursor: pointer;
}
.card2-headingpara {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 21px;
  height: 50px;
  letter-spacing: 0.5px;
  word-spacing: 0.9px;
  font-family: "Montserrat", sans-serif;
}
.card2-headingpara p {
  margin: 0px;
}
.card2-para {
  margin-top: 15px;
  padding-top: 10px;
  color: black;
  font-size: 0.87rem;
  overflow: hidden;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  border-top: 1px solid rgb(196, 196, 196);
  overflow: hidden;

  opacity: 0.9;
}
.card2-para p {
  margin: 0px;
}
.read-more {
  display: flex;
  justify-content: flex-end;
}
.read-more a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #a7a7a7;
}
.right-cards {
  width: 35%;
  margin: auto;
  height: 100%;
  padding-left: 15px;
  box-sizing: border-box;
}

.right-cards-content {
  height: 92%;
}
.right-cards-content-container {
  display: flex;
  border-left: none;
  border-right: none;
  height: 22%;
  gap: 3px;
  align-items: center;
  margin-top: 20px;
  box-shadow: -1px 15px 30px -12px black;
  border-radius: 19px;
}

.right-cards-content a {
  text-decoration: none;
}
.right-cc-image {
  height: 100%;
  width: 65%;
}
.right-cc-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 19px;
  border-radius: 19px 0px 0px 19px;
}
.right-cc-text {
  width: 35%;
  overflow: hidden;
  height: 100%;
  display: inline-block;
  padding: 5px;
  color: black;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.right-cc-text:hover {
  color: #2a53c1;
}
.right-cc-text p {
  margin: 0px;
}
.nameforhover:hover {
  color: #4056f7;
  cursor: pointer;
}
.dt-hover:hover {
  color: black;
}

/* HERO CARDS CSS END */

/* cards css */
.Astronomy-cards {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
.Economics-cards {
  background-color: rgb(245, 245, 245);
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.Movie-cards {
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.History-cards {
  background-color: rgb(245, 245, 245);
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.Stocks-cards {
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.Technology-cards {
  background-color: rgb(245, 245, 245);
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.Sports-cards {
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.food-cards {
  background-color: rgb(245, 245, 245);
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.Whatis-cards {
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.Howto-cards {
  background-color: rgb(245, 245, 245);
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.Breakthrough-cards {
  position: relative;
  margin: 150px auto;
  padding-top: 30px;
}
.cards-heading-container {
  height: 350px;
  position: absolute;
  top: 100px;
  color: #28365c;
  width: 100%;
  top: 0;
  background-color: #2a53c1;
  box-sizing: border-box;

  /* align-items: center; */
}
.content-cards-wrapper {
  display: flex;
  justify-content: space-around;
  /* outline: 1px solid red; */
  align-items: center;
}
.cards-heading-container:hover {
  cursor: pointer;
}
.cards-heading-container p {
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  font-size: 3rem;
  padding-left: 20px;

  color: #ffffff;
  margin: 0px;
}
#submit-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #2a53c1;
  padding: 5px 15px;
  background: rgb(255, 255, 255);
  width: 120px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  border: 1.8px solid #2a53c1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  height: 40px;
  /* margin-top: 40px; */
  box-sizing: border-box;
  border-radius: 8px;
}

#submit-btn:hover {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: rgb(255, 255, 255);
  background: #2a53c1;
  border: 1.4px solid white;
}

.cards-heading:hover {
  color: #2a53c1;
}
.svg-heading {
  width: 90px;
  height: 90px;
}

.cards-logo-text {
  display: flex;
  height: 110px;
  padding-top: 5px;
  padding-left: 20px;
  align-items: center;
}
.slider-wrapper {
  position: relative;
  /* border: 1px solid red; */
  margin-top: 150px;
  /* position: absolute; */
}
.slider {
  height: 700px;
  overflow: hidden;
}
.snip1336 {
  position: relative;
  overflow: hidden;
  margin: 10px;
  width: 420px;
  height: 650px;
  color: #000000;
  text-align: left;
  line-height: 1.4em;
  background-color: #ffffff;
  display: inline-block;
  filter: grayscale(100%);
  border-radius: 19px;
  box-shadow: -1px 15px 30px -12px black;
}
.slick-active {
  filter: none;
}
.snip1336 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.snip1336 img {
  width: 100%;
  vertical-align: top;
  opacity: 0.85;
  object-fit: contain;
  height: 200px;
}

.snip1336 figcaption {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  position: relative;
}
.snip1336 figcaption:before {
  position: absolute;
  content: "";
  bottom: 103%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 425px;
  border-color: transparent transparent transparent #ffffff;
}
.card-content-wrapper {
  width: 90%;
  margin: 0px auto;
}
.title-card {
  height: 65px;
  font-size: inherit;
  overflow: hidden;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin-top: 13px;
  word-spacing: 0.5px;
}
.title-card:hover {
  color: #2a53c1;
  cursor: pointer;
}
.title-card p {
  padding: 0px;
  margin: 0px;
}

.summery {
  height: 335px;
  margin-top: 10px;
  font-size: 13px;
  overflow: hidden;
  font-weight: 500;
  color: #000000;
  font-family: "DM Sans", sans-serif;
  border-top: 1px solid rgb(196, 196, 196);
  padding-top: 15px;
  overflow: hidden;
}

.summery p {
  padding: 0px;
  margin: 0px;
}
.snip1336 .profile {
  border-radius: 50%;
  position: absolute;
  top: -20%;
  left: 25px;
  z-index: 1;
  /* max-width: 60px; */
  width: 60px;
  height: 60px;
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}
.snip1336 .profile img {
  object-fit: none;
  height: 90%;
  width: 80%;
}
.readme-container {
  margin-top: 20px;
  display: flex;
  border-radius: 0px 0px 19px 19px;
  color: rgb(206, 206, 206);
  background-color: #2a53c1;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1rem;
}
.min-read {
  width: 50%;
  display: flex;
  justify-content: center;
  border-right: 1px solid rgb(54, 54, 54);
  align-items: center;
}
.readme-box {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  text-decoration: none;
  align-items: center;
}
.readme-box a {
  text-decoration: none;
  color: #ffffff;
}
.cards {
  display: inline-block;
  width: 420px;
  /* height: 530px; */
  margin: 0px 10px;
  border-radius: 19px;
  box-shadow: -1px 15px 30px -12px black;
}
.cards .card-img-container {
  height: 200px;
  width: 100%;
}
.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px 19px 0px 0px;
}

.nxt {
  position: absolute;
  top: 37%;
  right: 5%;
  cursor: pointer;
  z-index: 2;
  height: 75px;
  width: 75px;
  filter: invert(27%) sepia(51%) saturate(2752%) hue-rotate(212deg)
    brightness(88%) contrast(92%);
  opacity: 0.9;
}
.prv {
  opacity: 0.9;
  position: absolute;
  top: 37%;
  left: 5%;
  cursor: pointer;
  z-index: 2;
  height: 75px;
  width: 75px;
  filter: invert(27%) sepia(51%) saturate(2752%) hue-rotate(212deg)
    brightness(88%) contrast(92%);
}

.illustration {
  margin-top: 100px;
  width: 100%;
  position: relative;
  /* height: 200px; */
}
.illustration img {
  width: 100%;
  object-fit: contain;
}
.image-text-ill {
  position: absolute;
  top: 0;
  left: 0;
  /* outline: 1px solid red; */
  font-size: 2.5rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.footer-content {
  background: #172a47;
  color: #ffffff;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;

  letter-spacing: 2px;
  word-spacing: 1px;
  font-weight: 500;
}
.footer-content p a {
  text-decoration: none;
  color: #2a53c1;
  font-size: 2rem;
  font-weight: 500;
  word-spacing: 1px;
}
.fa-heart {
  color: red;
  font-size: 2rem;
}
