@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Neue-Montreal";
  src: url("/website/assets/font/NeueMontreal-Regular.otf");
}
:root {
  --primary_color: #006b4f !important;
  --secondary_color: #ee2d43 !important;
  --border_color: #ccc9c9 !important;
  --white_color: #ffffff !important;
  --text_color: #333 !important;
  --red_color: #ce2e28 !important;
  --green_color: #00312d !important;
  --lightGreen_color: #94d227;
  --yellow_color: #daac50;
  --primary_font: "Poppins" !important;
  --secondary_font: "Inter" !important;
  --tarnary_font: "Neue-Montreal" !important;
}

/* Compare Hero section ============================== */
.courseHeroSection {
  width: 100%;
  height: 349px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}
.courseHeroSection-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.courseHeroSectionContainer {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.courseHeroSectionContainer h1 {
  margin: 0;
  margin-top: 4rem;
  font-size: 50px;
  font-weight: 400;
  font-family: var(--tarnary_font);
  color: var(--white_color);
}
.courseHeroSectionContainer p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--secondary_font);
  color: var(--white_color);
}
/* Compare List section ============================== */
.courselist-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 5rem;
}
.couselist-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.courseItemContainer {
  margin-top: -2rem;
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--white_color);
  padding: 1rem;
  border-radius: 10px;
}
.courselist-item {
  width: 32%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 10px;
  background: linear-gradient(
    134.21deg,
    rgba(255, 255, 255, 0.7) 24.26%,
    rgba(239, 239, 239, 0.4) 76.92%
  );
  border: 1px solid var(--border_color);
}
.courselist-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.courseIcon {
  width: 35px;
  height: 35px;
}
.coursetitle {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  font-weight: 500;
  color: var(--text_color);
}
.course-fetures-box {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.course-fetures-box p {
  margin: 0;
  font-family: var(--secondary_font);
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}
.view-courses-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--secondary_font);
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary_color);
  text-decoration: none !important;
}
.view-courses-btn i {
  font-size: 16px;
  font-weight: 600;
}

.courseAdsContainer {
  width: 16%;
}

@media screen and (max-width: 1660px) {
  .courseAdsContainer {
    width: 17%;
  }
  .courselist-item {
    width: 31%;
  }
}

@media screen and (max-width: 1440px) {
  .courseAdsContainer {
    width: 18%;
  }
}

@media screen and (max-width: 1280px) {
  .courseAdsContainer {
    width: 19%;
  }
  .courselist-item {
    width: 48%;
  }
}
@media screen and (max-width: 990px) {
  .courseItemContainer {
    width: 100%;
  }
  .courselist-item {
    width: 31%;
  }
}

@media screen and (max-width: 768px) {
  .courseHeroSection {
    height: 250px;
  }
  .courseHeroSectionContainer h1 h1 {
    margin-top: 3rem;
    font-size: 34px;
  }
  .courseHeroSectionContainer h1 p{
    font-size: 16px;
  }
  .couselist-container{
    margin-top: 1rem;
  }
  .courseItemContainer{
    margin-top: 0;
  }
  .courselist-item {
    width: 48%;
  }
}
@media screen and (max-width: 600px) {
  .courseHeroSection {
    height: 200px;
  }
  .courseHeroSectionContainer {
    padding: 1rem;
  }
  .courseHeroSectionContainer h1 {
    font-size: 24px;
  }
  .courseHeroSectionContainer p{
    font-size: 14px;
  }
  .courseHeroSectionContainer p br{
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .courselist-item {
    width: 100%;
  }
  .courselist-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .course-fetures-box {
    margin-top: 0;
  }
}