/* Common Style */

body {
  font-family: "Roboto", sans-serif;
  /* font-family: 'Satoshi', sans-serif; */
}

.center_text{
  text-align: center;
}

.uppercase_text{
  text-transform: uppercase;
}

.red_text{
  color: #FF3300;
}

.blue_text{
  color: #2D6CDF;
}
.black_text{
  color: #000;
}
.white_text{
  color: #fff;
}

.float_right {
  float: right;
}

.margin_left{
  margin-left: 7px;
}

.margin_top{
  margin-top: -12px;
}

.padding_top_25 {
  padding-top: 25px;
}

.header_section {
  padding: 5px 0px;
  background-color: transparent;
}

.title_text{
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
}

.sub_title_text{
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
}

.card_title_text{
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}

.list_image {
    width: 25px;
    height: 30px;
    margin-right: 10px;
}

.list_content {
    display: inline-flex;
}

.arrow-list-text{
  font-size: 16px;
}

.Courses_card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  margin: 10px 0px;
  border-radius: 20px;
  border: 2px solid #2D6CDF;
  box-shadow: 0px 5px 0px 0px #2D6CDF;
  background-color: #F8FAFF;
  overflow: hidden;
  cursor: pointer;
}

.main_banner_section {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.Courses_card_padding {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.explore_wrapper {
  margin-top: auto;
}

.Explore_btn {
  padding: 10px 15px;
  background-color: #2D6CDF;
  color: #FFF;
  border: none;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.Explore_btn:hover{
  padding: 10px 15px;
  background-color: #043FAA;
  color: #FFF;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.header-logo {
  width: 150px;
}

.header-right-logo {
  width: 150px;
}

.main_banner_section {
  width: 100%;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

a{
  color: #000;
}

a:hover{
  color: #000 !important;
  text-decoration: none !important;
}

.height_card1{
  height: 475px;
}
.height_card2{
  height: 620px;
}

.college2_section{
  padding: 50px 0px;
  background-color: #FFF6F6;
}

.mobileonly {
  display: none !important;
}

.desktoponly {
  display: block !important;
}

@media only screen and (max-width: 480px) {
  .mobileonly {
    display: block !important;
  }

  .desktoponly {
    display: none !important;
  }

  .sub_title_text{
  font-size: 18px !important;
  line-height: 28px !important;
  padding: 0px 0 10px 0 !important;
  margin-bottom: .5rem;
}


}

@media only screen and (max-width: 768px) {

  .padding_top_25 {
  padding-top: 0px;
}

.height_card1{
  height: auto;
}
.height_card2{
  height: auto;
}

  .Courses_card {
    margin: 5px 0px;
  }
  .Courses_card_padding{
    padding: 10px 15px;
  }
  .card_title_text {
    font-size: 16px;
    line-height: 26px;
}
.arrow-list-text {
    font-size: 14px;
}

.college2_section{
    padding: 20px 0px;
  }

  .title_text{
  font-size: 28px;
  line-height: 10px;
}

.sub_title_text{
  font-size: 22px;
  line-height: 32px;
  padding: 20px 0 10px 0;
  margin-bottom: 0;
}

}