/* @import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?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; */
  box-sizing: border-box;
}


h1 {
  font-family: "Poppins", "sans-serif";
  font-size: 3rem;
  letter-spacing: 0.1rem;
}

h2 {
  font-family: "Poppins", "sans-serif";
  font-size: 3rem;
  letter-spacing: 0.1rem;
  color: #1691fd;
}

h3 {
  font-family: "Poppins", "sans-serif";
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

p, a {
  font-family: 'Poppins', 'sans-serif';
  font-size: 20px;
  letter-spacing: 0.1rem;
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background-image: url('https://www.shutterstock.com/image-photo/api-businessman-touching-digital-global-600nw-2510983379.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.8);
  z-index: -1;
}

.hero h2 {
  max-width: 1000px;
}

.hero p {
  max-width: 1000px;
}

.info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
  align-items: center;
  justify-content: center;
  /* max-width: 1024px;
  margin-left: auto;
  margin-right: auto; */
}
.info p{
  font-size: 18px;
  /* font-weight: 500; */
  text-align: left;
  color: rgb(42, 37, 37);
  /* font-style:oblique; */
}

.info p i{
  font-size: 18px;
  padding-top: 20px;
  font-weight: 300;
  /* font-style:oblique; */
}

.col {
  flex: 1 1 300px;
  max-width: 640px;
  padding: 2rem;
}

.col .info-image {
  /* max-width: 400px; */
  width: 50%;
  height: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  display: flexbox;
}

.course-details {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: black;
  color: white;
  /* padding: 4rem; */
  /* margin-top: 4rem; */
  min-height: 60vh;
}

.course-details .col {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  width: 100%;
}

.course-details .col img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.text-steelblue {
  color: steelblue;
}

.btn {
  display: inline-block;
  /* margin: 0 auto; */
  /* margin-top: 2rem; */
  padding: 1rem;
  background-color:#1691fd;
  color: white;
  border: none;
  /* border-radius: 10px; */
  cursor: pointer;
  font-size: 18px;
  text-align: center;
}

.features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: 60vh;
  margin-top: 4rem;
  padding: 0 2rem;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 2px solid lightsteelblue;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
  max-width: 300px;
  width: 100%;
  text-align: center;
  min-height: 20vh;
}

.call-to-action {
  display: flex;
  flex-direction: column;
  background-color: black;
  text-align: center;
  min-height: 30vh;
  justify-content: center;
  padding: 4rem;
  color: white;
  margin-top: 4rem;
}

.call-to-action h2 {
  max-width: 1000px;
  margin: auto;
}

.cta {
  background-color: steelblue;
}

.five-steps {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  align-items: center;
  justify-content: center;
  /* max-width: 1000px; */
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  width: 100%;
}

.checklist {
  list-style: none;
  padding: 0;
}

.five-steps-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

