@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;400;500;600;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}
.sched-site .container {
  width: 90%;
  margin: 0 auto;
}
.sched-site header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.03);
}
.sched-site header .infoHeader {
  background-color: #04233b;
  color: #fff;
}
.sched-site header .infoHeader .infohead {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
@media (max-width: 767px) {
  .sched-site header .infoHeader .infohead {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.sched-site header nav {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
.sched-site header nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .sched-site header nav .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.sched-site header nav .logo svg {
  width: 200px;
}
.sched-site header nav ul {
  display: flex;
  list-style-type: none;
  direction: rtl;
}
@media (max-width: 767px) {
  .sched-site header nav ul {
    display: none;
  }
}
.sched-site header nav ul li {
  margin: 10px;
}
header nav ul a {
  font-size: 16px;
  text-decoration: none;
  color: black;
}

.sched-site .program-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.sched-site .main-title {
  text-align: center;
  font-weight: bold;
}
.sched-site .program-div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sched-site .program-div .file-program {
  text-align: center;
  text-decoration: none;
  background-color: #e8948a;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  margin-top: 40px;
}
/*
ul li{
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top:20px;
}
ul li .title-task{
  width: 20%;
  display: flex;
  background-color: #0c8cc0;
  border-radius: 8px;
  padding: 10px;
}
ul li .title-task span{
    padding: 15px;
    border: 4px solid #0c8cc0;
    border-radius: 50%;
    display: flex;
    background: #fff;
    justify-content: center;
    align-items: center;
}
ul li .title-task p{
    text-align: center;
    font-weight: 600;
    color: #fff;
}
ul li table{
  width: 80%;
}
ul li table thead{
  text-align: center;
}
ul li table thead tr th{
    background: #ebc72f;
    border-radius: 8px;
    color: #fff;
}
ul li table tbody{
    text-align: center;
    font-size: 14px;
}
ul li table tbody tr td{
  padding: 15px;
  background: darkturquoise;
  border-radius: 8px;
  color: #fff;
}*/
