* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #0040dd;
}

/***************************/
/* REUSABLE STYLING */
/***************************/

.container {
  max-width: 114.4rem;
  margin: 0 auto;
}

.padding-container {
  padding: 0 0 11.2rem;
}

.grid-2--columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tutor-btn,
.book-btn,
.social-btn,
.submit-btn,
.email-btn,
.start-btn,
.explore-btn,
.price-btn,
.select-btn--1,
.select-btn--2,
.recommended-btn,
.about-explore--btn {
  text-decoration: none;
  display: inline-block;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  cursor: pointer;
}

.start-btn,
.explore-btn,
.about-explore--btn .price-btn,
.select-btn--1,
.select-btn--2,
.recommended-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #23262c;
  font-size: 2rem;
  font-weight: 500;
  padding: 2.8rem;
  border-radius: 1.6rem;
  color: #fff;
}

.explore-btn,
.select-btn--1,
.select-btn--2,
.recommended-btn,
.price-btn {
  font-size: 1.6rem;
  max-width: 100%;
}

.start-btn,
.explore-btn,
.price-btn,
.select-btn--1,
.select-btn--2,
.recommended-btn,
.about-explore--btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #23262c;
  font-size: 2rem;
  font-weight: 500;
  padding: 2.8rem;
  border-radius: 1.6rem;
  color: #fff;
}

.explore-btn:hover,
.price-btn:hover,
.about-explore--btn:hover,
.start-btn:hover, .select-btn--1:hover, .select-btn--2:hover {
  color: #2d3139;
}

.recommended-btn {
  background-color: #34c750;
}

.recommended-btn:hover {
  color: #59d471;
}

.email-btn {
  background-color: #fff;
  color: #0040dd;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.tutor-btn {
  border: 0.2rem solid #fff;
  color: #fff;
}

.tutor-btn:hover {
  background-color: #2d3139;
}

.book-btn {
  color: #23262c;
  font-weight: 400;
  background-color: #fff;
  padding: 1.2rem 2rem;
}

.book-btn:hover,
.social-btn:hover {
  color: #e6e6e6;
}

.submit-btn {
  background-color: #fff;
  color: #0040dd;
  border: none;
  margin-top: 4rem;
}

.arrow {
  font-size: 2.4rem;
  transform: rotate(-45deg);
  display: flex;
}

.icon-container,
.about-icon--container,
.tutor-icon--container,
.icon-grid--container,
.pricing-icon--container,
.grid-container {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  align-items: center;
  column-gap: 30rem;
  margin: 0 auto;
}

.icon-grid--container {
  grid-template-columns: 1.3fr 0.7fr;
  justify-items: center;
  column-gap: 13.2rem;
  padding: 0 11.6rem 11.2rem;
}

.tutor-icon--container {
  column-gap: 13.2rem;
}

.grid-container {
  background-color: #23262c;
  border-radius: 2.8rem;
  grid-template-columns: 1fr 1fr;
  max-width: 114.4rem;
  height: 39.6rem;
  justify-items: center;
  padding: 0 0.8rem;
}

.explore-card--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #23262c;
  border-radius: 2.8rem;
  padding: 1.6rem;
  height: 100%;
  column-gap: 1.6rem;
  justify-content: center;
  position: relative;
}

.dotted-border {
  border: 0.3rem dotted #438eff;
  border-radius: 1.6rem;
}

.pricing-card,
.m-v--card,
.explore-card--1,
.explore-card--2,
.about-explore--card {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  color: #23262c;
  padding: 0 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-contents {
  padding: 4rem 2.8rem 2.4rem;
}

.m-v--card {
  padding: 4rem;
  width: 100%;
  height: 100%;
}

.card-wrap {
  padding: 4rem 2.8rem 2.4rem;
  height: auto;
}

.tag {
  display: inline-block;
  text-transform: capitalize;
  background-color: #0040dd;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
}

.purple-tag {
  background-color: #f3e8ff;
  color: #6b21a8;
}

.blue-tag {
  background-color: #dbeaff;
  color: #0040dd;
}

.green-tag {
  color: #007c4e;
  background-color: #d6fff0;
}

/***************************/
/* HEADER */
/***************************/

.header {
  max-width: 114.4rem;
  margin: 2.4rem auto 6.4rem;
  position: sticky;
  top: 3%;
  z-index: 99999;
}

.header-container {
  display: grid;
  grid-template-columns: 0.2fr 1.8fr;
  align-items: center;
  justify-content: space-between;
  background-color: #23262c;
  width: 100%;
  max-width: 100%;
  height: 8rem;
  padding: 0 2.4rem;
  border-radius: 1.6rem;
  position: relative;
}

.logo {
  width: 6.6rem;
  height: 5.6rem;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
}

.right-border {
  border-right: 0.4rem dotted #545961;
  height: 5.6rem;
}

.main-nav--list {
  display: flex;
  gap: 3.2rem;
  list-style: none;
  margin: 0 auto;
}

.main-nav--link {
  text-decoration: none;
  font-size: 1.4rem;
  color: #99a0a9;
}

.main-nav--link:hover {
  color: #fff;
}

.main-nav--link.active {
  color: #fff;
}

.btn-mobile--nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
  position: absolute;
  top: auto;
  right: 4.6%;
}

.icon-mobile--nav {
  width: 3.2rem;
  height: 3.2rem;
  color: #fff;
}

.icon-mobile--nav[name="close-outline"] {
  display: none;
}

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

.btn-container {
  display: flex;
  justify-content: space-between;
  gap: 5.6rem;
}

.header-btn {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

/***************************/
/* HERO SECTION */
/***************************/

.hero-section {
  max-width: 114.4rem;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 50rem 38rem;
  column-gap: 13.6rem;
  border-radius: 1.6rem;
  padding: 9.8rem 6.4rem;
}

.hero-heading,
.hero-primary--text {
  font-size: 3.6rem;
}

.hero-heading {
  font-weight: 500;
  padding: 0 0 1.6rem;
}

.hero-subtext {
  font-size: 2rem;
  color: #75acff;
  padding: 1.6rem 0 3.2rem;
}

.social-btn {
  color: #0040dd;
  background-color: #fff;
  text-transform: capitalize;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

.hero-img {
  width: 38rem;
  height: 38.4rem;
}

/***************************/
/* COURSES SECTION */
/***************************/

.course-section {
  max-width: 114.4rem;
  margin: 6.4rem auto 11.2rem;
}

.course-container {
  background-color: #438eff;
  max-width: 100%;
  border-radius: 1.6rem;
  padding: 2.4rem 4rem;
  display: flex;
  justify-content: space-between;
}

.course-name {
  font-size: 2rem;
  color: #dbeaff;
  text-transform: capitalize;
}

/***************************/
/* EXPLORE SECTION */
/***************************/

.explore-cards--section {
  max-width: 114.4rem;
  margin: 0 auto 11.2rem;
}

.explore-primary--text {
  font-size: 2.4rem;
  margin: 0 0 4rem;
}

.explore-subtext {
  font-size: 2rem;
}

.smile-icon--img {
  width: 21.6rem;
  height: 21.6rem;
  object-fit: cover;
}

.levels {
  display: flex;
  gap: 0.8rem;
  padding: 0 0 2.4rem;
}

.card-heading {
  font-size: 3.6rem;
  line-height: 1.3;
  font-weight: 500;
  color: #23262c;
  padding: 0 0 1.6rem;
}

.card-tertiary--text,
.card-subtext,
.card-subtext--1 {
  font-size: 1.6rem;
  color: #0040dd;
}

.card-tertiary--text,
.card-subtext {
  padding: 0 0 0.8rem;
}

.card-subtext:last-child {
  padding: 0;
}

.card-subtext,
.card-subtext--1 {
  color: #777e88;
}

.badge-img {
  width: 14.92rem;
  height: 15.561rem;
  position: absolute;
  top: -17%;
  right: 0;
}

/***************************/
/* TESTIMONIAL SECTION */
/***************************/

.testimonial-section {
  margin: 0 auto 11.2rem;
}

.testimonial-heading {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 0 2.4rem;
}
.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 1.6rem;
  row-gap: 1.6rem;
}
.testimonial-cards {
  background-color: #438eff;
  border-radius: 1.6rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.testimonial-text {
  font-size: 2rem;
  line-height: 1.5;
}

.student-details {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.5;
  margin-top: auto;
}

.student-name {
  font-size: 1.6rem;
}

.student-level {
  font-size: 1.4rem;
  font-weight: 300;
}

.testimonial-img {
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  object-fit: cover;
}

/***************************/
/* WHY US SECTION */
/***************************/

.why-us--section {
  margin: 0 auto 11.2rem;
}

.why-us--container {
  padding: 7.6rem 6.4rem 2.8rem;
}
.why-us--heading {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 0 1.6rem;
}

.why-us--subtext {
  font-size: 3.6rem;
  line-height: 1.5;
}

.why-us--img {
  width: 21.6rem;
  height: 21.6rem;
}

.why-us {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  padding: 6.4rem 0;
}

.why-card--text {
  font-size: 2rem;
  padding: 1.6rem 0 0;
}

/***************************/
/* FOOTER SECTION */
/***************************/

.footer-section {
  max-width: 114.4rem;
  margin: 0 auto 2rem;
}

.footer-container {
  border-top: 0.3rem dotted #438eff;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
}

.footer-nav--container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 6.7rem;
}

.footer-logo--img {
  width: 6.6rem;
  height: 5.6rem;
  object-fit: cover;
}

.email-text {
  text-decoration: none;
  font-size: 1.4rem;
}

.email-text,
.footer-icons {
  color: #fff;
}

.footer-socials,
.footer-icons {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.footer-social--icon {
  border: 0.1rem solid #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  padding: 1.7rem;
}

.copyright-text {
  font-size: 1.4rem;
  color: #668ceb;
  text-wrap: nowrap;
}

/***************************/
/* ABOUT SECTION */
/***************************/

.about-section {
  position: relative;
}

.about-img--container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-img {
  display: inline-block;
  width: 21.5rem;
  height: 27.7rem;
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
}

.background-img {
  height: auto;
  max-width: 100%;
}

.centered-text {
  margin-top: 15.5rem;
  text-align: center;
  line-height: 1.3;
}

.about-primary--text,
.about-subtext {
  font-size: 3.6rem;
  font-weight: 500;
}

.about-subtext {
  font-weight: 400;
}

.journey-container {
  position: relative;
  margin: 6.4rem auto 11.2rem;
}

.about-card,
.about-card--2,
.about-card--3,
.about-card--4 {
  background-color: #438eff;
  max-width: 50%;
  height: auto;
  padding: 2.4rem;
  border-radius: 1.6rem;
  margin: 0 0 2.8rem;
}

.about-card--2,
.about-card--4 {
  margin-left: auto;
}

.about-card--4 {
  margin-bottom: 0;
}

.who-we--are--text {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 300;
}

.who-we--are--text span {
  font-weight: 400;
}

.line-1--img,
.line-2--img,
.line-3--img {
  position: absolute;
}

.line-1--img {
  top: 10%;
  right: 25%;
}

.line-2--img {
  left: 15%;
  top: 40%;
  z-index: -1;
}

.line-3--img {
  bottom: 18%;
  right: 25%;
}

/***************************/
/* MISSION & VISION SECTION */
/***************************/

.m-v--section {
  max-width: 114.4rem;
  margin: 0 auto;
}

.m-v--container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #23262c;
  border-radius: 2.8rem;
  padding: 1.6rem;
  column-gap: 1.6rem;
  height: auto;
  align-items: center;
  justify-items: center;
  position: relative;
}

.m-v--heading,
.m-v--subtext {
  font-size: 1.6rem;
  color: #0040dd;
}

.m-v--subtext {
  color: #777e88;
}

.m-v-primary--text {
  color: #23262c;
  font-size: 3.6rem;
  padding: 0.8rem 0 1.6rem;
}

/***************************/
/* WHY SECTION */
/***************************/

.why-section {
  margin: 11.2rem auto;
}

.why-container {
  padding: 6.4rem;
}

.why-us-mini--container {
  display: flex;
  gap: 3.2rem;
  padding: 6.4rem 0 0;
}

.why-heading {
  font-size: 2rem;
  padding-bottom: 1.6rem;
}

.why-text {
  font-size: 1.6rem;
  color: #75acff;
  line-height: 1.5;
}

/***************************/
/* WHY SECTION */
/***************************/

.cards-section {
  margin: 0 auto 11.2rem;
  max-width: 114.4rem;
}

.card-heading--text {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 0 3.2rem;
}

.about-card--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #23262c;
  border-radius: 2.8rem;
  padding: 1.6rem;
  max-width: 100%;
  height: 100%;
  column-gap: 1.6rem;
  align-items: center;
  justify-items: center;
  position: relative;
}

/***************************/
/* TUTOR SECTION */
/***************************/

.tutor-section {
  max-width: 114.4rem;
  margin: 0 auto 18rem;
}

.tutor-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 13.2rem;
}

.tutor-icon--container .tutor-img--icon {
  justify-self: end;
}

.tutor-meet {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tutor-meet--text {
  font-size: 3.6rem;
  font-weight: 500;
}

.tutor-meet--subtext {
  color: #75acff;
  font-size: 2rem;
}

.card-text-container {
  padding: 10.15rem 6.4rem 10.05rem 0;
  display: grid;
  column-gap: 11.3rem;
  grid-template-columns: 1fr 1fr;
  position: relative;
  align-items: center;
}

.card-background {
  background-color: #23262c;
  width: 42.7rem;
  height: auto;
  border-radius: 2.8rem;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 13%;
  left: 6%;
}

.tutor-card {
  width: 100%;
  height: 100%;
  color: #23262c;
  background-color: #fff;
  border-radius: 2rem;
  padding: 0 1.2rem 1.2rem;
}

.card-content,
.card-content--1 .card-contents {
  padding: 4rem 2.8rem 2.4rem;
  /* margin-bottom: 2.4rem; */
}

.tutor-img {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 0.4rem;
  object-fit: cover;
  margin: 0 0 3.2rem;
}

.tutor-name {
  font-size: 3.6rem;
  font-weight: 500;
  padding-bottom: 1.6rem;
}

.tutor-tag,
.tutor-tag--1 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lesson-number {
  font-size: 1.6rem;
  color: #777e88;
  padding: 1.6rem 0 3.2rem;
}

.fee-container {
  display: flex;
  gap: 5.6rem;
}

.fee-text {
  color: #0040dd;
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 0.8rem;
}

.lesson-fee {
  font-size: 2rem;
  font-weight: 500;
}

.tutor-arr {
  font-size: 2rem;
  transform: rotate(-45deg);
  display: flex;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  grid-column: 2/3;
}

.name {
  font-size: 3.6rem;
  font-weight: 500;
}

.tutor-native {
  font-size: 2rem;
  font-weight: 400;
}

.tutor-bio,
.tutor-qualification {
  font-size: 1.6rem;
  line-height: 1.5;
}

.tutor-qualification {
  margin-top: 1.6rem;
}

/***************************/
/* PRICING SECTION */
/***************************/

.pricing-cards--section {
  margin-bottom: 11.2rem;
}

.package-container {
  display: flex;
  flex-direction: column;
  gap: 9.8rem;
}

.plan-text--box {
  padding: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.choose-plan--text,
.choose-plan--subtext {
  font-size: 3.6rem;
  font-weight: 500;
}

.choose-plan--subtext {
  font-weight: 400;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #23262c;
  max-width: 100%;
  height: 100%;
  column-gap: 1.6rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: 2.8rem;
  position: relative;
}

.lesson-type--include,
.lesson-type--include--1 {
  display: flex;
  gap: 0.8rem;
  padding: 0 0 2.4rem;
}

.plan-type {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0 0 0.8rem;
}

.plan-price {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 0 1.6rem;
}

.lesson-total,
.lesson-period {
  font-size: 1.6rem;
  line-height: 1.5;
}

.pricing-text--container {
  padding: 6.4rem;
}

.text-box--heading,
.text-box--subtext {
  font-size: 3.6rem;
  font-weight: 500;
}

.text-box--subtext {
  font-weight: 400;
}

.text-box {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.value-badge--img {
  max-width: 10.7rem;
  height: 11.16rem;
  position: absolute;
  top: -11%;
  right: -1%;
}

.pricing-text--card {
  display: flex;
  gap: 3.2rem;
  padding: 8rem 0 0;
}

.card-box--heading {
  font-size: 2rem;
  font-weight: 500;
  padding: 0 0 1.6rem;
}

.card-box--text {
  font-size: 1.6rem;
  color: #75acff;
}

/***************************/
/* CONTACT SECTION */
/***************************/

.contact-section {
  margin-bottom: 11.2rem;
}

.contact-containher {
  padding: 6.4rem;
}

.contact-text--box {
  padding: 0 0 6.4rem;
  border-bottom: 0.3rem dotted #438eff;
}

.hello-text,
.enquiry-text {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 0 0 1.6rem;
}

.enquiry-text {
  font-weight: 400;
}

.contact-text {
  font-size: 2rem;
  color: #75acff;
  padding: 0 0 3.2rem;
}

/***************************/
/* CONTACT FORM */
/***************************/

.contact-container {
  padding: 6.4rem;
}

.form {
  padding: 6.4rem 0 0;
}

.form-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.8rem;
  margin-bottom: 2.4rem;
}
.label-name {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

::placeholder {
  color: #dbeaff;
}

.input-name,
.message-area {
  color: #dbeaff !important;
  background-color: #438eff;
  border: none;
  font-size: 1.2rem;
  border-radius: 0.4rem;
  padding: 1.2rem;
  width: 100%;
  height: 4rem;
}

.message-area {
  height: 10.6rem;
  margin-bottom: 3.2rem;
}
