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

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Poppins;
    background-color: white;
    border: 10px solid #832122;
  }
  
  .header {
    /* text-align: center; */
    margin-left: 60px;
    /* margin-top: 40px; */
    /* padding: 25px; */
  }
  .detail{
    
    display: flex;
    justify-content: space-between;
  
  }
  .detail p{
    font-size: 28px;
  }
  .bullets{
    display: block;
    margin-top: 60px;
    text-align: center;
    align-items: center;
  }
  .infoatas{
    display: flex;
    margin-right: 100px;
    
  }
  .bullet1{
    background-color: #E30B18;
    width: 200px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
  }
  .bullet2{
    background-color: #E30B18;
    width: 200px;
    height: 80px;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
  }
  .bullet1, .bullet2 p{
    color: #fff;
  }
  
  /* Create two equal columns that floats next to each other */
  /* .column {
    float: left;
    width: 50%;
    padding: 10px;
  }
  
  .column img {
    margin-top: 15px;
  }
  
  /* Clear floats after the columns */
  /* .row:after {
    content: "";
    display: table;
    clear: both;
  } */ 

  .titleup {
    display: flex;
    justify-content: space-between;
  }

  .loginbtn {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 15px;
    color: black;
    border: 5px solid #832122;
    background-color: #fff;
    cursor: pointer;
  }
  
  .loginbtn:hover {
    background-color: rgba(131, 33, 34, 0.5);
  }
  
  /* Topnav CSS Decoration */
  .navbar {
    overflow: hidden;
    margin-top: 15px;
    cursor: pointer;
  }
  
  .navbar a {
    float: left;
    font-size: 14px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Poppins;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 14px;
    font-family: Poppins;  
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgba(131, 33, 34, 0.5);
    border-radius: 12px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: rgba(131, 33, 34, 0.5);
    border-radius: 0px;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .bgfooter {
    height: 200px;
    background-color: #1F2226;
    display: block;
  }

  .icon-bar {
    display: flex;
    justify-content: center;
    margin-right: 10px;
  }
  
  .icon-bar a {
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  .icon-bar a:hover {
    background-color: #000;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }
  
  .instagram {
    background: #b655ef;
    color: white;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .youtube {
    background: #bb0000;
    color: white;
  }
  
  .content {
    margin-left: 75px;
    font-size: 30px;
  }

/*----- Plan ------*/

.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
h1 {
  font-size: 36px;
  font-weight: 600;
}
/* p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
} */

.planheader{
  background-color: #E30B18;
  padding: 10px;
  border-radius: 10px;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.course-col {
  flex-basis: 31%;
  background: #fff3f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
}
h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.course-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
.badge {
  background-color: rgb(129, 0, 0);
  font-size: 12px;
  color: white;
  padding: 2px 5px;
  text-align: center;
  border-radius: 5px;
}
@media(max-width: 700px) {
  .row {
      flex-direction: column;
  }
}