@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

.landing_page{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  height: calc(100vh - 60px);
  background: rgb(236,236,244);
  background: -webkit-linear-gradient(left, rgba(236,236,244,1) 0%, rgba(219,219,235,0) 35%, rgba(228,238,240,1) 100%);
  background: -o-linear-gradient(left, rgba(236,236,244,1) 0%, rgba(219,219,235,0) 35%, rgba(228,238,240,1) 100%);
  background: linear-gradient(to right, rgba(236,236,244,1) 0%, rgba(219,219,235,0) 35%, rgba(228,238,240,1) 100%);
  margin-bottom: 30px;
}
.landing_page div{
  /* border: 1px solid red; */
}
.landing_img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing_img img{
  width: 80%;
  height: auto;
  margin: auto;
  /* height: 400px; */
  /* width: auto; */
}
.landing_heading{
  padding: 50px 40px 0px 100px;
}
.landing_heading h1{
  font-size: 50px;
  line-height: 60px;
  font-family: 'Montserrat', sans-serif;
  color:rgba(0,0,0,.9);
  margin-bottom: 20px;
  margin-top: 50px;
}
.landing_heading p{
  line-height: 18px;
  margin-bottom: 50px;
  width: 90%;
}
.landing_heading button,#start_btn{
  border: 1px solid rgb(255,120,61);
  background: rgb(255,120,61);
  border-radius: 25px;
  padding:10px 40px;
  color: #fff;
  transition: .3s;
  font-size: 20px;
  box-shadow: 0px 2px 5px 1px lightgray;
  display: block;
  cursor: pointer;
}
#start_btn{
  margin: auto;
  margin-top: 30px;
}
#start_btn:hover a{
    color: rgb(255,120,61)!important;
}
.landing_heading button a,#start_btn a{
  color: #fff;
}
.landing_heading button:hover,#start_btn:hover{
  background: #fff;
  color: rgb(255,120,61);
  transition: .3s;
}
.landing_heading button:hover a{
  color: rgb(255,120,61);
  transition: .3s;
}
.landing_heading button a:hover{
  color: rgb(255,120,61);
  transition: .3s;
}
.course_info_div1{
  margin: auto;
  background: rgb(59,56,55);
  min-height: 260px;
  border: 1px solid rgb(209,215,220);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  width: 100%;
}
.course_info_div1 h1{
  color: #fff;
  font-size: 22px;
}
.course_info_div1 .benefit_div{
}
.course_info_div1 .benefit_div p{
  margin: 10px 0px;
  color: rgb(237,244,245);
}

.course_info{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-bottom: 30px;
  width: auto;
  background:rgb(255,131,92);
  padding-left: 50px;
}
.course_info_img img{
  height: 50px;
  width: auto;
  border-radius: 50px;
}
.course_info_img{
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.course_info_img p{
    font-size: 30px;
    padding-left: 10px;
    color: #fff;
}
.course_info_div2{
  padding: 20px 70px;
}
.course_info_div2 .course_info_box{
  box-shadow: 0px 2px 5px 1px lightgray;
  float: right;
  width: 350px;
  background: #fff;
  height: auto;
  border-radius: 10px;

}
.course_info_box_img{
  padding: 10px
}
.course_info_box_img img{
  width: 100%;
  height: auto;
}
.course_info_box_img i {
  color: rgb(241,141,7);
}
/* ============================course Description============== */
.course_desc{
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  margin-top: 30px;
  width: 100%;
  padding:30px 30px 60px 30px;
  background: rgb(236,236,244);
}
/* .course_desc h1{
  font-size:35px;
  margin-bottom: 20px;
} */
.course_desc #course_desc_p{
}
.course_desc_toggle #course_desc_p{
  height: 125px;
  overflow: hidden;
  position: relative;
}
.course_desc_toggle.active #course_desc_p{
  height: auto;
}
.course_desc_toggle #course_desc_p::before{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  width:100%;
  border-radius: 10px;
  background: linear-gradient(transparent,rgba(236,236,244,.7));
}
#rm_content{
  border-radius: 5px;
  display: inline;
  cursor: pointer;
}
#rm_content::before{
  content: "Read less";
  color: rgb(241,141,7);
  font-weight: bold;
}
 .active2::after{
   content: "..Read More";
   color: rgb(241,141,7);
   font-weight: bold;
}
.course_desc .active2::before{
  display: none;
}
.course_desc .active #course_desc_p::before{
  display: none;
}
#course_content{
  font-weight: bolder;
  font-size: 35px;
  position: relative;
  text-align: center;
  margin: auto;
}
#course_content::after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform:translateX(-50%);
  height: 2px;
  width: 220px;
  border-radius: 10px;
  background: orange;
}
.course_desc_grid1{
  background: linear-gradient(90deg, rgba(236,236,244,1) 0%, rgba(219,219,235,0) 35%, rgba(228,238,240,1) 100%);
}
.course_desc_grid2 img{
  width: 70%;
  display: block;
  margin: auto;
  height: auto;
}

.topic_box{
  width: 100%;
  margin: auto;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* border: 1px solid red; */
  background:rgb(255,131,92);
  padding: 40px 10px;
}
.topic_div{
  width: 250px;
  margin: 15px;
  background: #fff;
  border-radius: 10px;
}
.topic_div{
  padding: 15px;
  box-shadow: 2px 2px 10px 1px #3b3837;
  background: #3b3837;
  color: #fff;
}
.topic_div p {
  padding: 4px 5px;
  font-weight: bold;
  font-size:16px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 15px;
  background: rgb(255,120,61);
  color: #fff;
}
.topic_div ul {
  list-style: none;
  /* text-align: center; */
}
.topic_div ul li {
  padding: 2px;
  position: relative;
  font-size: 17px;
  border-left: 2px solid #f2b4a0;
  padding-left: 18px;
}
.topic_div ul{
  padding-left: 15px;
}
.topic_div ul li::after{
  content:"";
  position: absolute;
  top:15px;
  left: 0px;
  height: 2px;
  width: 10px;
  background:#f2b4a0;
}
/* =========================== instructor ========================== */
.instructor{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
  margin-bottom: 40px;
  /* border: 1px solid red; */
}
.testimonial_head{
  margin-top: 80px;
}

.testimonial_head h1,.intro_head h1{
  font-weight: bolder;
  font-size: 35px;
  position: relative;
  text-align: center;
  margin: auto;
}
.testimonial_head h1::after,.intro_head h1::after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform:translateX(-50%);
  height: 2px;
  width: 170px;
  border-radius: 10px;
  background: orange;
}
#introduction{
  padding: 10px;
}
.intro_head h1{
  margin-top: 30px;
}
.introduction_div{
  padding: 20px;
  width: 60%;
  margin: auto;
  justify-content: center;
}
.introduction_div iframe,.introduction_div video{
  width: 100%;
}

.instructor_box{
  width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.instructor_box div{
  /* border: 1px solid red; */
}
.instructor_box img{
  height: 200px;
  width:200px;
  border-radius: 50%;
  margin-top: 30px;
}
.instructor_box div:nth-child(2){
  text-align: left;
  padding-left: 30px;
}
.instructor_box div:nth-child(2) h3{
  font-size: 13px;
    color: rgb(157,149,147);
}
.instructor_box div:nth-child(2) p{
  font-size: 20px;
  font-weight: bold;
  color: rgb(255,120,61);
}

@media only screen and (max-width:1076px){
    .instructor{
      grid-template-columns: 1fr;
    }

}

@media only screen and (max-width:940px){

  .landing_page{
    height: auto;
  }
  .landing_img{
    padding: 40px 0px 0px 0px;

  }
  /* .landing_img img{
    margin-top: 20px;
    height: 300px;
    width: auto;
  } */
  .landing_heading h1{
    font-size: 30px;
    line-height: 40px;
    margin-top: 30px;
  }
  .landing_heading p{
    line-height: 18px;
    margin-bottom: 30px;
    width: 100%;
  }

  .course_info{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 20px;
  }
  /* .course_info h1{
    font-size: 35px;
    margin-top: 30px;
  } */
  .course_info_img img{

  }
  #inst_img{
  height: 50px;
  width: 50px;
  }
  .course_info_img{
  }
  .course_info_img p{
    font-size: 25px;
    padding-left: 10px;
    padding-top: 0;
  }
  .course_info_div2{
    padding: 20px 70px;
  }
  .course_info_div2 .course_info_box{
    box-shadow: 0px 2px 5px 1px lightgray;
    width: 300px;
    height: auto;

  }
  .course_info_box_img img{
    height: auto;
    width: 100% ;
  }
  .course_info_box_img i {
    color: rgb(241,141,7);
  }
}
@media only screen and (max-width:850px){
  .landing_img img{
    height: 250px;
  }
  .landing_heading h1{
    font-size: 25px;
    line-height: 40px;
    margin-top: 30px;
  }
  .landing_heading p{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .landing_heading button{
    padding:5px 30px;
    color: #fff;
    transition: .3s;
    font-size: 16px;
    box-shadow: 0px 2px 5px 1px lightgray;
  }
  .course_info_div2{
    padding: 10px 30px;
  }
  .course_info_div2 .course_info_box{
    width: 260px;
    height: auto;
  }
  .course_info_box_img img{
    height: auto;
    width: 100% ;
  }
}
@media only screen and (max-width:700px){
  .landing_page{
    display: flex;
    flex-direction: column-reverse;
    height:auto;
  }
  .landing_heading{
    padding: 50px 30px 0px 30px;
  }
  .landing_img{
    padding: 0px;
    margin: 0px;
  }
  .landing_img img{
    padding: 0;
    height: 250px;
    display: block;
    margin: auto;
    margin-top: 40px;
  }
  .landing_heading{
    text-align: center;
  }
  .landing_heading h1{
    font-size: 30px;
    margin-top: 0px;
  }
  .landing_heading p{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .landing_heading button{
    padding:5px 30px;
    color: #fff;
    transition: .3s;
    font-size: 16px;
    box-shadow: 0px 2px 5px 1px lightgray;
    margin: auto;
    margin-bottom: 25px;
  }
  .course_info{
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    /* margin: auto; */
    padding-bottom: 20px;
  }

.course_info_div2{
  display: block;
  margin:auto;
  padding: 10px;
  margin: 0px;
}
.course_info_img{
  display: flex;
  justify-content: center;
}
.course_info_img img{
  height: 50px;
}
.course_info_div2 .course_info_box{
  box-shadow: 0px 2px 5px 1px lightgray;
  /* width: 80%; */
  background: #fff;
  height: auto;
  float: none;
  border-radius: 10px;
  display: block;
  margin: auto;

}
/* .course_info h1{
  font-size: 30px;
  margin-top: 20px;
  text-align: center;
} */
.course_info_img{
  margin-top: 0px;
}
.course_info_img img{
  height: 40px;
}
.course_info_box_img img{
  height: 200px;
  width: 100% ;
}
.course_desc{
  display: grid;
  grid-template-columns:1fr;
}
.course_desc_grid2 img{
  margin-top: 30px;
}
.introduction_div{
  padding: 20px;
  width: 90%;
  margin: auto;
  justify-content: center;
}
.introduction_div iframe,.introduction_div video{
  width: 100%;
}
}
  @media only screen and (max-width:550px){
    .course_info{
    }
    /* .course_info h1{
      margin-top: 50px;
      font-size: 30px;
      margin-bottom: 15px;
      color: #fff;
    } */
    .course_info_div2{
      margin-top: 20px;
    }

    /* .course_desc h1{
      font-size:35px;
      margin-bottom: 20px;
    } */
    .course_desc_toggle h1{
      font-size:25px;
    }
    #course_content{
      font-size: 25px;
    }
    #course_content::after{
      width: 130px;
    }
    .instructor{
      grid-template-columns: 1fr;
    }
    .instructor_box{
      grid-template-columns: 1fr;
      margin: auto;
      width: 350px;
    }
    .instructor_box div:nth-child(2){
      text-align: center;
      padding-left: 0px;
    }

}
  @media only screen and (max-width:390px){
    .instructor_box{
      grid-template-columns: 1fr;
      margin: auto;
      width: 300px;
    }
    .instructor_box div:nth-child(2){
      text-align: center;
      padding-left: 0px;
    }

}
