/* Google font  */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

.raleway {
  font-family: "Raleway", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 3.813rem;
}

.sub-title {
  font-size: 2.875rem;
  line-height: 3.563rem;
  font-weight: 700;
  color: #000;
}

p {
  font-size: 1.25rem;
  line-height: 1.563rem;
  font-weight: 400;
  color: rgb(17, 17, 17);
}

.btn {
  font-size: 1.25rem;
  font-weight: 600;
  width: 12.313rem;
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 10px 30px;
  border-radius: 0.75rem;
  background: rgb(254, 163, 1);
}

/* =========Nav Section========== */
header {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 20px;
  background: rgb(247, 247, 247);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  gap: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo p {
  font-weight: 700;
  color: #000;
  font-size: 2rem;
  line-height: 1.875rem;
}

ul li a {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Quicksand", sans-serif;
}

.menu-home {
  font-weight: 700;
  color: rgb(254, 163, 1);
}

.menu-about {
  color: rgb(1, 172, 253);
}

.menu-facilities {
  color: rgb(5, 212, 223);
}

.menu-admission {
  color: rgb(93, 88, 239);
}

/* =========Banner Section========== */
.banner-section {
  gap: 50px;
  display: flex;
  margin-top: 122px;
  align-items: center;
  justify-content: space-between;
}

.banner-text {
  flex: 1;
}

.banner-text p {
  margin: 24px auto;
}

.banner-text .btn {
  background-color: rgb(17, 17, 17);
}

.banner-img {
  flex: 1;
  display: flex;
  justify-content: end;
}

/* =========Curriculum Section========== */
.curriculum-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 60px 200px;

  background-image: url("../assets/bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.curriculum-content {
  text-align: center;
}

.curriculum-card {
  display: flex;
  gap: 32px;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding: 55px 40px;
  box-shadow: inset 0px 0px 28.3px 0.94px rgba(0, 0, 0, 0.05);
  background: linear-gradient(rgb(222, 245, 255), rgba(255, 255, 255, 0));
}

.curriculum-cards {
  gap: 30px;
  display: flex;
  margin-top: 80px;
}

.card-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: rgb(32, 32, 32);
}

.card-description {
  font-size: 1rem;
  color: rgb(128, 128, 128);
}

.red-more {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(100, 200, 255);
}
