*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family:'Courier New', Courier, monospace;
}

h1{
    font-size: 2.5rem;
    font-weight:700;
    color: rgb(35, 35, 85);
}

span{
    font-size : .9rem;
    color : #757373;
}

h6{
    font-size: 1.1rem;
    color: rgb(24, 24, 49);
}

nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

nav img{
    height : 30px;
    cursor:pointer;
}

nav .navigation ul{
    display : flex;
    justify-content: flex-end;
    align-items: center;
}

nav .navigation ul li{
    list-style: none;
    margin-left: 30px;
}

nav .navigation ul li a{
    text-decoration: none;
    color:rgb(21,21,100);
    font-size:16px;
    font-weight: 500;
}

nav .navigation ul li a.active,
nav .navigation ul li a:hover{
    color : orangered;
}


.navigation .dropdown ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  
  .navigation .dropdown ul li {
    min-width: 130px;
  }
  
  .navigation .dropdown ul a {
    padding: 10px 0px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
  }
  
  .navigation .dropdown ul a i {
    font-size: 12px;
  }
  
  .navigation .dropdown ul a:hover,
  .navigation .dropdown ul .active:hover,
  .navigation .dropdown ul li:hover>a {
    color: #e83605;
  }
  
  .navigation .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navigation .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navigation .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navigation .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navigation .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }

#home{
    background-image: linear-gradient(rgba(19, 141, 221, 0.47), rgba(11, 117, 170, 0.7));
    height:60vh;
    padding:30px;
}

.home-img{
    width:630px;
}

.btn{
    margin-top: 30px;
}

.btn a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: white;
    font-weight: 600;
    border-radius: 5px;
}

.btn a.yellow{
    transition: 0.3s ease-in-out;
}

.btn a.yellow:hover{
    color: white;
    background-color: rgb(255, 97, 40);
}


#features{
    padding: 5vw 8vw 5vw 8vw;
    text-align: center;
}

#features .fea-base{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap:1rem;
    margin-top: 50px;
}

 .fea-box{
    padding: 20px 5px 0 20px;
    background: rgb(231, 224, 224);
    border-radius: 20px;
    /* text-align: start; */
    align-items: center;
}

#features .fea-box i{
    font-size: 2.5rem;
    color: rgb(44,44,80);
}

#features .fea-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(46,46,87);
    padding: 13px 0 7px 0;
}
#features .fea-box p{
    font-size: 1rem;
    font-weight: 600;
    color: rgb(88, 88, 90);
}

#course{
    padding: 8vw  8vw 0 4vw;
    text-align: center;
    margin-bottom: 40px;
}

.course-box .courses{
    margin-bottom: 20px;
    position: relative;
}

.course-item .btn a{
    background-color: rgb(244, 111, 29);
    color: white;
}

.course-item .btn a:hover{
    color : rgb(244, 111, 29);
    background-color: white;
}

#course img{
    width: 100%;
    height: 40%;
    background-size: cover;
    background-position: center;
}

.course-item {
    text-align: start;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background-image: linear-gradient(rgba(57, 157, 223, 0.47), rgba(111, 191, 230, 0.7));
  }
  .course-content {
    padding: 15px;
}

.course-content .desc p{
    color:black;
  }

 .course-content h3 a {
    color: #37423b;
    transition: 0.3s;
    text-decoration: none;
  }
  
 .course-content h3 a:hover {
    color: orangered;
  }
  
 .course-content p {
    font-size: 14px;
    color: #777777;
  }
  
 .course-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
  }
  
 .course-content .price {
    margin: 0;
    font-weight: 700;
    font-weight: bolder;
    font-size: 18px;
    color: #37423b;
  }


.course-content .cost{
    /* bottom: 100px; */
    margin-top: -57px;
    background-color: rgb(243, 82, 14);
    color:white;
    font-weight: bold;
    line-height: 70px;
    width:70px;
    height:70px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 15px;
}



#register{
    padding: 6vw 8vw 6vw 8vw;
    background-image: linear-gradient(rgba(112, 120, 162, 0.5), rgba(45, 50, 118, 0.5)),url(assets/img/events-1.jpg);
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#register .reminder{
    color:#fff;
}
#register .reminder h1{
    font-size: 2.5rem;
    font-weight:700;
    color:#fff;
}
#register .reminder .time{
    display: flex;
    margin-top: 40px;
}
#register .reminder .time .date{
    align-items: center;
    padding:13px 33px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    border-radius: 5px;
    margin:0 5px 10px 5px;
    border: 1px solid rgba(31,38,135,0.18);
    font-size: 1.1rem;
    font-weight: 900;
}

#register .form{
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
}

#register .form input{
    margin:15px 0;
    padding: 15px 10px;
    border: 1px solid rgb(84,40,241);
    outline: none;
}

#register .form a.yellow{
    color: white;
    background-color: orangered;
}

#register .form a.yellow:hover{
    color: orangered;
    background-color: white;
    border:1px solid orangered;
    transition: 0.3s ease;
}

/* footer */

#footer {
    color: #ffffff;
    font-size: 14px;
    background: #e9edeb;
  }
  
  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #092342b8;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff9f9;
  }
  
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #5fcf80;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: orangered;
  }  

  #footer .copyright{
    color:#37423b
  }

  #footer .credits {
    color:#777777;
    padding-top: 5px;
    font-size: 13px;
  }
  
  #footer .credits a {
    color: rgb(24, 24, 49);
    transition: 0.3s;
  }
  
  #footer .credits a:hover {
    color: orangered;
  }
  
  #footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: orangered;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .social-links a:hover {
    background: white;
    color: orangered;
    border: 1px solid orangered;
    text-decoration: none;
  }

  