@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,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');

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  /* background: linear-gradient(#09717a,#ffffff,#ffffff); */
}

.home-main {
  width: 100%;
  height: auto;
  background-color: #09717a;
  /* display: flex; */
}

.home-head {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
}

.home-head img {
  width: 7rem;
  margin-left: 5%;
}

.home-container {
  display: flex;
  align-items: center;
  gap: 150px;
}

.home-img {
  width: 400px;
  height: 500px;
  /* background-color: yellowgreen; */
  margin-left: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-img img {
  width: 18rem;
}

.home-content {
  width: 50%;
  padding-right: 30px;
  /* background-color: violet; */
}

.home-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.home-content p {
  color: rgb(212, 212, 212);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5rem;
  /* text-align: justify; */
  /* width: 650px; */
}

.home-content button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #c4a189;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .home-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }

  .home-content {
    width: 90%;
    margin: auto;
    padding: 0;
  }
}

@media (max-width: 550px) {
  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-content p {
    font-size: 0.9rem;
  }

  .home-img img {
    width: 15rem;
  }

  .home-container {
    gap: 0px;
  }

  .home-img {
    width: 0%;
  }
}

.course-main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  padding: 50px 0;
  background: linear-gradient(#09717a, #ffffff);
  /* background-color: #ffee0018; */
}

.course-head {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
}

/* .course-head img {
  width: 7rem;
  margin-left: 5%;
} */

.course-content-head {
  width: 90%;
  height: 100px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 20px;
  color: #ffffff;
}

.course-content-box-main {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 20px 0;
}

.course-content-box-main a {
  text-decoration: none;
  color: #09717a;
}

.course-content-boxes {
  height: 65px;
  /* border: 1px solid; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: white;
  border-left: 5px solid #c4a189;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .home-content h2 {
    font-size: 50px;
    color: #a75519;
  }

  .home-content p {
    font-size: 15px;
    line-height: 25px;
  }

  .home-content span {
    color: #09717a;
  }
}

/* #a75519 #09717a #c4a189 */