:root {
  --main-bg: #fffbf2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Fredoka", sans-serif;
}
p {
  font-size: 20px !important;
}
h1,
h2,
h3 {
  font-weight: 600;
}

p {
  color: #8f8f8f;
}

body {
  overflow-x: hidden;
  --torn-left-clip-path: polygon(
    3% 0,
    7% 1%,
    11% 0%,
    16% 2%,
    20% 0,
    23% 2%,
    28% 2%,
    32% 1%,
    35% 1%,
    39% 3%,
    41% 1%,
    45% 0%,
    47% 2%,
    50% 2%,
    53% 0,
    58% 2%,
    60% 2%,
    63% 1%,
    65% 0%,
    67% 2%,
    69% 2%,
    73% 1%,
    76% 1%,
    79% 0,
    82% 1%,
    85% 0,
    87% 1%,
    89% 0,
    92% 1%,
    96% 0,
    98% 3%,
    99% 3%,
    99% 6%,
    100% 11%,
    98% 15%,
    100% 21%,
    99% 28%,
    100% 32%,
    99% 35%,
    99% 40%,
    100% 43%,
    99% 48%,
    100% 53%,
    100% 57%,
    99% 60%,
    100% 64%,
    100% 68%,
    99% 72%,
    100% 75%,
    100% 79%,
    99% 83%,
    100% 86%,
    100% 90%,
    99% 94%,
    99% 98%,
    95% 99%,
    92% 99%,
    89% 100%,
    86% 99%,
    83% 100%,
    77% 99%,
    72% 100%,
    66% 98%,
    62% 100%,
    59% 99%,
    54% 99%,
    49% 100%,
    46% 98%,
    43% 100%,
    40% 98%,
    38% 100%,
    35% 99%,
    31% 100%,
    28% 99%,
    25% 99%,
    22% 100%,
    19% 99%,
    16% 100%,
    13% 99%,
    10% 99%,
    7% 100%,
    4% 99%,
    2% 97%,
    1% 97%,
    0% 94%,
    1% 89%,
    0% 84%,
    1% 81%,
    0 76%,
    0 71%,
    1% 66%,
    0% 64%,
    0% 61%,
    0% 59%,
    1% 54%,
    0% 49%,
    1% 45%,
    0% 40%,
    1% 37%,
    0% 34%,
    1% 29%,
    0% 23%,
    2% 20%,
    1% 17%,
    1% 13%,
    0 10%,
    1% 6%,
    1% 3%
  );
}

.main-container {
  width: 100%;

  display: flex;
  justify-content: center;
}

.weeChamp-body {
  overflow-x: hidden;
  width: 100%;
  max-width: 2000px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  max-width: 2000px;
  background-color: var(--main-bg);
  color: #fff;
  padding: 5px 4em;
  z-index: 99;
  position: fixed;
}

.nav-links a {
  font-weight: 600;
  color: rgb(65, 65, 65);
  font-size: 20px;
}

/* LOGO */
.logo {
  width: 3.5rem;
  text-align: center;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.1);
}

/* NAVBAR MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 0em;
  font-size: 18px;
}

/* .menu li:hover {
  background-color: rgb(243, 206, 42);

  border-radius: 15px;
}

.menu li a:hover {
  color: #fff;
} */
.menu li {
  padding: 5px 14px;
  border-radius: 5px;
  transition: 0.5s;
  font-size: 1.5rem;
}

/* #number {
  background-color: rgb(243, 206, 42);
  border-radius: 50rem;
} */

/* for mobile */
/*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type="checkbox"] {
  display: none;
}

/*HAMBURGER MENU*/
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
  color: #414141;
}

/* body::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: rgb(255, 230, 118);
  border-radius: 10px;
} */

/* background fixing */
.back-fixing {
  max-width: 2000px;
  width: 100%;
  height: 90vh;
  background-color: var(--main-bg);
  position: absolute;
}

/* home section */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  clip-path: var(--torn-left-clip-path);
  background-color: var(--main-bg);

  /* height: 70vh; */

  z-index: 1;
}

.home-title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  position: relative;
  padding-top: 4em;
}

.home-title h1 {
  font-size: 5rem;
  line-height: 4rem;
}

.header-img {
  padding-top: 5rem;
  width: 28rem;
  position: relative;
}

.hr-lines::before {
  content: " ";
  display: block;
  height: 30px;
  width: 100%;
  position: relative;
  top: 70px;
  left: -3px;
  background: rgb(255 232 111);
  border-radius: 25px;
  z-index: -1;
}

.hr-lines-two::before {
  content: " ";
  display: block;
  height: 30px;
  width: 50%;
  position: relative;
  top: 70px;
  left: -3px;
  background: rgb(255 232 111);
  border-radius: 25px;
  z-index: -1;
}

.home-title-left p {
  margin: 15px 15px 20px 5px;
  font-size: 24px;
  font-weight: 500;
  color: #2f2f2f;
}

.home-title-left a {
  background: rgb(255 232 111);
  width: 20rem;
  padding: 8px 5rem;
  color: #2f2f2f;
  border-radius: 20px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: 0.2s ease-in-out;
  font-weight: 500;
}

.home-title-left a:hover {
  background-color: rgba(190, 153, 1, 0.664);
}

/* About section */

#about,
#feature,
#service,
#about-coach {
  padding-top: 6rem;
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
  /* height: 100vh; */

  margin-top: 30px;
  background-color: transparent;

  /* z-index: 0; */
}

#service {
  padding-bottom: 0 !important;
}

.feature-content {
  text-align: center;
  margin-bottom: 100px;
}

#about-para {
  font-size: 20px;
  /* line-height: 2.5rem; */
  color: #313131;
}

.feature-title,
.tool-title {
  width: 100%;
}
.about-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 0rem;
  padding: 2rem 5rem;
}
.para {
  /* padding: 2rem 3rem; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool-content {
  margin-top: 20px;
}

.about-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-title h1,
.feature-title h1,
.tool-title h1,
.coach-title h1 {
  font-size: 3.5rem;
  color: #000000;
  padding-top: 15px;
}

.coach-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.underline-div {
  position: absolute;
  bottom: 12px;
  z-index: -1;
}

.coach-title-underline {
  height: 15px;
  width: 450px;
  background-color: skyblue;
  border-radius: 20px;
}

.round-box {
  position: absolute;
  top: 10rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-line {
  text-align: center;
  width: 300px;
  height: 16px;
  background-color: #73dfed;
  border-radius: 20px;
  z-index: -1;
}

.yellow-back {
  text-align: center;
  width: 300px;
  height: 16px;
  background: rgb(255 232 111);
  border-radius: 20px;
  z-index: -1;
}

.round-box-yellow {
  position: absolute;
  top: 3.5rem;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-line-yellow {
  text-align: center;
  width: 300px;
  height: 16px;
  background: rgb(255 232 111);
  border-radius: 20px;
  z-index: -1;
}

.number-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5rem;
  left: 10px;
  width: 89%;
}

.about-title p,
.feature-title p {
  font-size: 1.4rem;
  color: #8f8f8f;
}

.side-img-girl {
  width: 35rem;
  z-index: 2;
}

.side-img-girl img {
  width: 35rem;
}

.about-penta {
  position: absolute;
  top: 2rem;
  right: -10rem;
}

.about-penta img {
  width: 20rem;
}

/* Feature section */
#feature,
#service,
#contact {
  width: 100%;
  clip-path: var(--torn-left-clip-path);
  position: relative;

  background-color: var(--main-bg);
  z-index: 0;
}

.feature-cards {
  margin-top: 4rem;
  position: relative;
  width: 100%;
  padding: 5rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2rem;
}

.card-tool {
  width: 600px;
  margin: 15px 0px 0px 15px;
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.show-content {
  display: none;
  color: #2f2f2f;
  transition: 2s ease-in;
  font-size: 2rem;
}

.card-tool:hover .show-content {
  display: block;
  text-align: justify;
  transition: 2s ease-in;
  font-size: 15px;
}

.card-content h3 {
  font-size: 1.7rem;
  text-align: left;
}

.card-content p {
  font-size: 1.5rem;
  text-align: left;
}

.card-content p span {
  color: #2d2d2d;
  font-size: 1rem;
  text-align: justify;
  transition: 0.2s ease-in;
  line-height: 1rem;
}

.card-icon img {
  width: 5rem;
}

/* Testimonial section */
.testimonials {
  text-align: center;
  width: 100%;
  padding: 20px;
  position: relative;
}

.testimonials-slide {
  height: max-content;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  gap: 25px;
}

.title-testimonial h2 {
  font-size: 3rem;
}

.testimonial-content {
  padding: 15px;
  font-size: 1.2rem;
  font-family: "Dancing Script", cursive;
  letter-spacing: 0.5px;
  /* line-height: 3rem; */
  width: 50%;
}

.testimonial-user img {
  width: 5rem;
}

.testimonial-user h2 {
  font-family: "Dancing Script", cursive;
  font-weight: 500;
}

.testimonial-user {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* testimonial slider */

.slick-slide {
  margin: 0px 20px;
  position: relative;
  width: 100%;
  text-align: center;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  text-align: center;
  width: 90%;
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Service section */
#service {
  height: max-content !important;
}

.tool-para {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  padding: 20px 65px;
  /* display: flex; */
  /* align-items: center;
  justify-content: center; */
  font-size: 1.5rem;
}

.tool-para p {
  color: #000000 !important;
  text-align: justify;
}

.penta-shapes {
  width: 100%;
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.left img {
  position: absolute;
  width: 7rem;
  top: 18rem;
}

.right img {
  width: 15rem;
  position: absolute;
  right: 0;
  top: -10em;
}

.tool-list {
  text-align: center;
  position: relative;
  width: 100%;
  margin-top: 5rem;
}

.list-pic {
  width: 60rem;
  overflow: hidden;
}

/* About the coach */
.coach_details {
  padding: 1rem 2rem;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.coach-avatar img {
  width: 25rem;
}

/* .coach-content {
  padding: 2rem;
  text-align: center;
  font-size: 1.5rem;
  transition:  0.3s ease;
} */

.coach-content:not(:last-child) {
  margin-bottom: 50px;
}

.hide {
  display: none;
}

.coach-content-text {
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s ease;
  padding: 2rem;
  text-align: center;
  font-size: 1.5rem;
}

.coach-content p span {
  /* padding: 2rem; */
  text-align: center;
  /* font-size: 1.5rem !important; */
}

.read-more-btn {
  border: none;
  background-color: rgba(255, 204, 0, 0.66);
  padding: 10px 10px;
  font-size: 20px;
  color: rgb(65, 65, 65);
  width: 150px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  transform: scale(1);
}
.read-more-btn:hover {
  transform: scale(1.1);
  color: #2f2f2f;
  background-color: rgba(190, 153, 1, 0.664);
}

.read-more {
  margin-bottom: 10px;
}

.coach-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coach-content p span {
  color: #8f8f8f;
  /* font-size: 1.5rem; */
  /* font-size: 1.5rem; */
  /* font-weight: 600; */
}

/* contact section */
#contact {
  position: relative;
  width: 100%;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content {
  width: 70%;
  text-align: center;
  padding: 20px 25px;
}

.contact-content h4 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.contact-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #2a2a2a;
}

.contact-content p {
  font-weight: 400;
  font-size: 1.2rem;
  color: #585858 !important;
  margin-bottom: 15px;
}

.work-to {
  padding: 0.5rem 2rem;
  /* width: 45%; */
  font-weight: 600;
  border-radius: 15px;
  border: none;
  font-size: medium;
  /* font-size: 2rem; */
  font-family: "Fredoka", sans-serif;
  background: rgba(255, 204, 0, 0.66);
  margin-bottom: 2rem;
  color: #2f2f2f;
}

.navbar-gallery {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  max-width: 2000px;
  background-color: var(--main-bg);
  color: #fff;
  padding: 5px 4em;
  z-index: 99;
}

.gallery-title {
  text-align: center;
  margin-top: 10px;
}

.gallery-wrapper {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.what-we-do-card-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 100px;
}
.tailor-card {
  background-color: white;
  padding: 10px 30px;
  border-radius: 10px;
}
.group-card {
  background-color: white;
  padding: 10px 30px;
  border-radius: 10px;
  width: 400px;
}

/* .list{

} */

.gallery-section {
  background-color: var(--main-bg);
}

.gallery-image {
  width: 250px;
  height: 200px;
}

.title-wrapper {
  width: 100%;
  position: relative;
}

.gallery-line {
  text-align: center;
  width: 300px;
  height: 16px;
  background-color: #73dfed;
  border-radius: 20px;
  z-index: -1;
}

.how-we-do-yellow-back {
  width: 240px;
  height: 15px;
  background-color: rgba(255, 204, 0, 0.66);
  border-radius: 20px;
}

.how-we-do-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 3rem;
}

.how-we-do-round-box {
  position: absolute;
  bottom: 7px;
  z-index: -1;
}

.gallery-title::before {
  position: absolute;
  bottom: 5px;
  z-index: -3;
  border-radius: 10px;
  content: "";
  z-index: 0;
  background-color: cyan;

  height: 10px;
  width: 7%;
}

.gallery_section {
  padding: 5rem 0;
}

.video-section {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.video-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-right {
  position: relative;
}
.about-trophy {
  position: absolute;
  right: 10px;
}

/* ABOUT COACH */

#about-coach-description.expanded {
  max-height: none;
}

/* Certificate and yt video */
.certificate {
  position: relative;
  width: 100%;
  height: 700px;
  margin: 5rem 0rem;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trophy_sec {
  /* width: 100%; */
  /* height: 100%; */
  position: relative;
}
.certificate-penta {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.certificate-penta img {
  width: 10rem;
  z-index: -1;
}
.yt_iframe {
  width: 70%;
}

/* APPLYING MEDIA QUERIES */

@media (max-width: 1360px) {
  .contact-content h4 {
    font-size: 2.5rem;
  }

  .contact-content h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 1280px) {
  .home-title h1 {
    font-size: 4rem;
  }

  .side-shape {
    width: 190px;
  }

  .coach_details {
    display: flex;
    flex-direction: column;
  }

  .small-girl {
    width: 27rem;
  }

  .home-title h1 {
    font-size: 4rem;
    line-height: 3rem;
  }

  .hr-lines::before {
    top: 55px;
  }

  .hr-lines-two::before {
    top: 55px;
  }

  .header-img {
    width: 36rem;
  }

  /* about setion */
  #about,
  #feature,
  #service,
  #about-coach {
    padding: 0;
    height: auto;
  }

  .how-we-do-title {
    margin-top: 5rem;
  }

  .about-penta {
    z-index: -1;
  }

  .round-box {
    top: 3.5rem;
  }

  /* Feature section */
  .feature-cards {
    padding: 3rem;

    grid-template-columns: repeat(2, 1fr);
  }

  /* service section */
  .right img {
    width: 12rem;

    top: -13em;
  }

  /* contact */
  .contact-content {
    width: 70%;
  }

  .contact-content h4 {
    font-size: 2.1rem;
  }

  .contact-content h1 {
    font-size: 2.4rem;
  }

  .work-to {
    font-size: 1.5rem;
  }
}

@media (max-width: 1090px) {
  .header-img {
    width: 25rem;
  }
  .about-content {
    padding: 1rem 2rem;
    flex-direction: column;
  }
  .how-we-do-title {
    margin-top: 5rem;
  }
}

@media (max-width: 990px) {
  .back-fixing {
    height: 45vh;
  }

  #feature,
  #home,
  #about,
  #feature,
  #service #about-coach {
    height: max-content;

    padding-top: 0;
  }

  /* navbar */
  .navbar {
    padding: 2px 0rem;
  }

  /* homa page */
  .home-title {
    margin-top: 5rem;
    padding: 5px 10px;
  }

  .home-title h1 {
    font-size: 3rem;
    line-height: 2rem;
  }

  .hr-lines::before {
    height: 15px;
    top: 35px;
    left: -3px;
  }

  .hr-lines-two::before {
    height: 15px;
    width: 60%;
    top: 35px;
    left: -3px;
  }

  .header-img {
    width: 25rem;
  }

  /* about section */
  #about,
  #feature {
    margin: 0;
    padding-top: 0;
  }

  .about-title h1,
  .feature-title h1,
  .tool-title h1,
  .coach-title h1 {
    font-size: 2.5rem;
  }

  .how-we-do-title {
    margin-top: 5rem;
  }

  .round-box {
    top: 2.5rem;
  }

  .round-line,
  .yellow-back {
    width: 200px;
  }

  .about-penta {
    z-index: -1;
  }

  /* Feature */
  .card-tool {
    margin-top: 0;
  }

  /* service section */
  .right img {
    width: 9rem;
    top: -8em;
  }

  .left img {
    width: 6rem;
    top: 13rem;
  }

  .list-pic {
    width: 55rem;
  }

  /* contact section */
  .contact-content h4 {
    font-size: 2rem;
  }

  .contact-content h1 {
    font-size: 2.2rem;
  }

  .coach-avatar img {
    width: 20rem;
  }

  .coach_details {
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: center;
    height: auto;
  }

  .side-img-girl img {
    width: 25em;
  }
  .what-we-do-card-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 18px !important;
  }
  .back-fixing {
    height: 36vh;
  }

  /* Responsive menu */
  .menu {
    display: none;
    position: absolute;
    background-color: var(--main-bg);
    margin-top: 10px;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
    z-index: 99;
  }

  .menu li:hover {
    display: inline-block;
    transition: 0.3s ease;
    background-color: none;
  }

  .menu li + li {
    margin-top: 12px;
  }

  input[type="checkbox"]:checked ~ .menu {
    display: block;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding-bottom: 1.5rem;
  }

  .navbar {
    padding: 2px 2rem;
  }

  .logo {
    width: 3rem;
  }

  .hamburger {
    display: block;
  }

  .number-nav {
    display: none;
  }

  /* home */
  .header-img {
    width: 17rem;
  }

  .home-title h1 {
    font-size: 2.5rem;
    line-height: 2rem;
  }

  .home-title-left p {
    margin: 5px 6px 10px 5px;
    font-size: 14px;
  }

  .home-title-left a {
    padding: 5px 20px;
    font-size: 1rem;
  }

  .hr-lines::before {
    top: 35px;
  }

  .hr-lines-two::before {
    top: 35px;
  }

  .coach-title-underline {
    width: 200px;
    height: 10px;
  }

  /* About */

  .about-title h1,
  .feature-title h1,
  .tool-title h1,
  .coach-title h1 {
    font-size: 2.5rem;
  }

  .how-we-do-title {
    margin-top: 5rem;
  }

  .about-penta {
    z-index: -1;
    right: -3rem;
  }

  .about-penta img {
    width: 10rem;
  }

  .round-box {
    position: absolute;
    top: 3rem;
    width: 100%;
  }

  .round-line,
  .yellow-back {
    width: 140px;
    height: 10px;
  }

  /* Feature */

  .feature-cards {
    padding: 3rem;
    margin-top: 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .card-tool {
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .card-content h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .card-content p {
    font-size: 1rem;
    text-align: center;
  }

  .card-icon img {
    width: 6rem;
  }

  /* Testimonials */
  .testimonial-content {
    width: 100%;
    font-size: 1rem;
    /* line-height: 2rem; */
    width: 100% !important;
  }

  .title-testimonial h2 {
    font-size: 2rem;
  }

  .round-box-yellow {
    top: 2.8rem;
  }

  .round-line-yellow {
    width: 150px;
    height: 12px;
  }

  .testimonial-content {
    padding: 0;
  }

  .testimonial-user img {
    width: 4rem;
  }

  /* Tools */
  .list-pic {
    width: 40rem;
  }

  .tool-para {
    margin-top: 5px;
    width: 100%;
    padding: 15px 2rem;
    font-size: 1.2rem;
  }

  .coach_details {
    flex-direction: column;
    padding: 0;
    align-items: center;
    height: auto;
  }

  .coach-avatar img {
    margin-top: 1.5rem;
    width: 15rem;
  }

  /* contact section */
  .contact-content {
    width: 80%;
  }

  .contact-content h4 {
    font-size: 1.9rem;
  }

  .contact-content h1 {
    font-size: 2.2rem;
  }

  .work-to {
    font-size: 1.2rem;
  }
  .certificate {
    padding: 10px;
    flex-direction: column;
  }
  .yt_iframe {
    width: 100%;
  }
}

@media (max-width: 600px) {
  p {
    font-size: 14px !important;
  }
  .navbar {
    padding: 0px 2rem;
    position: relative;
  }

  .home-title {
    flex-direction: column-reverse;
    padding: 0;
    gap: 50px;
  }

  #home {
    height: fit-content;
    padding: 25px;
  }

  .home-title h1 {
    font-size: 2.3rem;
  }

  .header-img {
    padding-top: 0;
    width: 15rem;
  }

  .home-title-left p {
    margin: 5px 6px 10px 5px;
    font-size: 12px;
  }

  .home-title-left a {
    padding: 5px 20px;
    font-size: 18px;
  }

  /* About */
  #about,
  #feature,
  #service {
    margin: 0;
    padding-top: 15px;
  }

  .about-title h1,
  .feature-title h1,
  .tool-title h1,
  .coach-title h1 {
    padding-top: 2rem;
    font-size: 1.5rem;
  }

  .round-box {
    position: absolute;
    top: 4rem;
    width: 100%;
  }

  .coach-back {
    top: 3rem;
  }

  .round-line {
    width: 140px;
  }

  .about-title p,
  .feature-title p {
    font-size: 16px;
  }

  .coach-content-text {
    padding: 0;
  }
  .coach-content p {
    font-size: 1rem;
    padding: 1.5rem;
    margin-left: 0%;
    margin-top: 1rem;
    width: 100%;
    line-height: 1.5rem;
  }

  /*.coach-content p span {*/
  /*  font-size: 1rem;*/
  /*}*/

  .read-more-btn {
    display: inline;
    margin-bottom: 10px;
    font-size: small;
    padding: 5px;
    width: 120px;
  }

  /* Feature */
  .card-tool {
    flex-direction: column;
    gap: 0;
  }

  .feature-cards {
    gap: 15px;
  }

  /* Testimonials */
  .testimonial-content {
    width: 100%;
    font-size: 1rem;
    /* line-height: 1.5rem; */
  }

  .title-testimonial h2 {
    font-size: 1.5rem;
  }

  .round-box-yellow {
    top: 2.2rem;
  }

  .round-box-yellow {
    top: 2.2rem;
  }

  .coach-content {
    padding: 0;
    text-align: justify;
  }

  /* .coach-content p{
    padding: 0 1.5rem 0;
  } */

  /* tools    */
  .tool-para {
    font-size: 1rem;
  }

  .left img {
    width: 4rem;
    top: 10rem;
  }

  .right img {
    width: 5rem;
    top: -11em;
  }

  .tool-pic {
    margin-top: 2rem;
    width: 40rem;
  }

  .tool-list {
    margin: 0;
  }

  .list-pic {
    width: 30rem;
  }

  .coach-avatar img {
    width: 12rem;
  }

  /* contact section */
  .contact-content {
    width: 90%;
    padding: 20px 0px;
  }

  .contact-content h4 {
    font-size: 1.1rem;
  }

  .contact-content h1 {
    font-size: 1.5rem;
  }

  .work-to {
    font-size: 1rem;
  }

  .contact-content p {
    font-size: 1rem;
  }
}

@media (max-width: 440px) {
  .list-pic {
    margin-top: 2rem;
    width: 28rem;
  }
}
