@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

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

/* Menu bar */
.main_box {
  position: relative;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(/images/side.jpeg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
}

.main_box .sidebar_menu {
  position: fixed;
  height: 100vh;
  width: 280px;
  left: -280px;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(90, 92, 106, 1) 0%, rgba(32, 45, 58, 1) 81.3%);
  box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: all 0.3s linear;
}

.sidebar_menu .logo {
  position: absolute;
  width: 100%;
  height: 80px;
  box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
  padding: 20px;
}

.sidebar_menu .menu {
  position: absolute;
  top: 80px;
  width: 100%;
}

.sidebar_menu .menu li {
  margin-top: 6px;
  padding: 14px 20px;
}

.sidebar_menu .menu i {
  color: #fff;
  font-size: 20px;
  padding-right: 8px;
}

.sidebar_menu .menu a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.sidebar_menu .menu li:hover {
  border-left: 1px solid #fff;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.sidebar_menu .social_media {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  list-style: none;
  cursor: pointer;
}

.sidebar_menu .social_media i {
  text-decoration: none;
  padding: 0 5px;
  color: #fff;
  opacity: 0.6;
  font-size: 20px;
}

.sidebar_menu .social_media i:hover {
  opacity: 1;
  transition: all 0.2s linear;
  transform: scale(1.01);
}

#check {
  display: none;
}

.main_box .btn_one i {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  left: 16px;
  line-height: 60px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s linear;
}

.sidebar_menu .btn_two i {
  font-size: 25px;
  line-height: 60px;
  position: absolute;
  left: 240px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s linear;
  color: #fff;
}

.btn_one i:hover {
  font-size: 29px;
}

.btn_two i:hover {
  font-size: 24px;
}

#check:checked~.sidebar_menu {
  left: 0;
}

#check:checked~.btn_one i {
  opacity: 0;
}

#check:checked~.sidebar_menu .btn_two i {
  opacity: 1;
}

/* Menu Bar H1 and H2 Tag */
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1 {
  font-size: 50px;
}

.text-box h2 {
  font-size: 25px;
  margin-top: 20px;
}

.text-box p {
  margin: 10px 0 40px;
  font-size: 15px;
  color: #fff;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 15px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.hero-btn:hover {
  border: 1px solid #e19243;
  background: #e19243;
  transition: 1s;
  border: 1px solid ff0000;
  box-shadow: 1px 1px #ff0000;
}

@media(max-width:700px) {
  .text-box h1 {
    font-size: 30px;
  }

  .text-box h2 {
    font-size: 20px;
  }
}

@media(max-width:414px) {
  .text-box h1 {
    font-size: 25px;
  }

  .text-box h2 {
    font-size: 15px;
  }
}

/* -----------Section 1 programs ---------- */
.program {
  width: 90%;
  margin: auto;
  text-align: center;
  padding-top: 40px;
}

.program h1 {
  font-size: 36px;
  font-weight: 600;
}

.program p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  padding: 10px;
  text-align: justify;
}

.row {
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
}

.program-col {
  flex-basis: 32%;
  background: #F6F7F8;
  border-radius: 10px;
  padding: 20px 12px;
  box-sizing: border-box;
  z-index: -1;
}

.icon-slash {
  text-align: Left;
  padding-left: 20px;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.program-col h3 {
  text-align: Left;
  font-weight: 600;
  margin: 10px 0;
  padding-left: 20px;
  font-size: 25px;
}

.program-col p {
  text-align: Left;
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  padding: 20px;
  text-align: justify;
}

.program-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media(max-width:700px) {

  .row {
    flex-direction: column;
  }

  .program-col {
    margin-bottom: 5%;
  }

}

/* Section 2 connect-now */

.connect-now {
  width: 100%;
  background-image: url("/images/connect-now.png");
  background-size: 100% 100%;
  height: 300px;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 40px;
  background-position: center;
  z-index: -1
}

.connect-now .connect-now-overlay {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 100%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
}

.connect-now .connect-now-overlay .connect-now-col {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.connect-now .connect-now-overlay .connect-now-col h2 {
  font-size: 30px;
  margin: 10px 0 40px;
}

@media(max-width:700px) {

  .connect-now .connect-now-overlay .connect-now-col {
    width: 90%;
  }
}

/*-- Section 3 Top Courses -- */
.top-course {
  width: 90%;
  margin: auto;
  text-align: center;
  padding-top: 40px;
}

.top-course h1 {
  font-size: 36px;
  font-weight: 600;
}

.row {
  margin-top: 3%;
  display: flex;
  justify-content: space-between;

}

.top-course-col {
  flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
  background: #F6F7F8;
  cursor: pointer;
  transition: .3s;
}

.top-course-col img {
  width: 100%;
  border-radius: 10px;
}

.top-course-col p {
  padding-left: 10px;
  color: #777;
  line-height: 25px;
  text-align: justify;
  padding: 10px;
  font-size: 14px;
}

.top-course-col h3 {
  margin-top: 16px;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 10px;
  font-weight: 600;
  font-size: 20px;
}

.top-course-col:hover {
  box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.top-course-col .read-more {
  padding: 5%;
  color: black;
}


.hero-btn2 {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  border: 1px solid #ff0303;
  padding: 12px 34px;
  font-size: 15px;
  background: transparent;
  position: relative;
  cursor: pointer;
  /* z-index: -1; */
}