header {
  height: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/header-bg.jpg");
  position: relative;
  background-size: cover;
}

@media (max-width: 576px) {
  header {
    padding: 20px;
  }
}

header .conatiner-fluid {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

header::before {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #202243;
  opacity: 0.7;
  top: 0;
  left: 0;
  content: '';
}

.search-overlay h1, .search-overlay h2, .search-overlay h3, .search-overlay h4, .search-overlay h5, .search-overlay h6 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
}

.search-overlay form {
  width: 100%;
}

.search-overlay .input {
  background-color: #f1f3f6;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  margin-top: 20px;
}

.search-overlay .input input {
  width: 100%;
  border: 0;
  background-color: transparent;
  padding-left: 20px;
}

.search-overlay .input button {
  width: 45px;
  height: 45px;
  background-color: #202243;
  border-radius: 8px;
  border: 0;
  color: #fff;
  font-size: 24px;
}

.news-wrapper {
  padding: 40px 0 !important;
}

.news-wrapper .group-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (min-width: 1440px) {
  .news-wrapper .time-table p, .news-wrapper .time-table ul li {
    font-size: 18px !important;
  }
}

@media (max-width: 992px) and (min-width: 576px) {
  .news-wrapper .time-table {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .news-wrapper {
    padding-bottom: 0 !important;
  }
  .news-wrapper .time-table {
    margin-bottom: 15px;
  }
}

.news-wrapper .time-table {
  padding-bottom: 0;
  min-height: 170px;
}

.news-wrapper .time-table:hover .arrow-btn {
  opacity: 1;
}

.news-wrapper .time-table img {
  max-width: 180px;
  min-width: 180px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.news-wrapper .time-table i {
  font-size: 50px;
  color: #B2B2B2;
}

.news-wrapper .time-table h1, .news-wrapper .time-table h2, .news-wrapper .time-table h3, .news-wrapper .time-table h4, .news-wrapper .time-table h5, .news-wrapper .time-table h6 {
  font-size: 22px;
  margin-bottom: -10px;
}

.news-wrapper .time-table .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.news-wrapper .time-table .arrow-btn {
  display: grid;
  width: 50px;
  height: 50px;
  background-color: #202243;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  place-content: center;
  font-size: 24px;
  transform: translateY(25px);
  opacity: 0;
}

.content-wrapper {
  text-align: center;
  padding: 30px 0 !important;
}

@media (max-width: 992px) {
  .content-wrapper .box {
    flex-direction: column;
  }
  .content-wrapper .box h1, .content-wrapper .box h2, .content-wrapper .box h3, .content-wrapper .box h4, .content-wrapper .box h5, .content-wrapper .box h6 {
    margin-bottom: 15px !important;
    font-size: 20px !important;
  }
}

.content-wrapper .box {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  justify-content: space-around;
}

.content-wrapper .box h1, .content-wrapper .box h2, .content-wrapper .box h3, .content-wrapper .box h4, .content-wrapper .box h5, .content-wrapper .box h6 {
  font-size: 24px;
  margin-bottom: 0;
}

.content-wrapper .box .btn {
  border-radius: 24px;
}

.content-wrapper .box .btn i {
  vertical-align: middle;
}

@media (max-width: 992px) and (min-width: 576px) {
  footer .footer-box {
    margin-top: 0 !important;
  }
}

@media (max-width: 576px) {
  footer {
    padding-top: 20px !important;
  }
  footer .address {
    border: 0 !important;
  }
  footer .footer-box, footer .social {
    margin-top: 10px;
  }
  footer .social {
    padding-bottom: 20px;
  }
  footer .footer-box {
    justify-content: center;
  }
}

footer .address {
  text-align: center;
  padding-bottom: 0;
}

footer .address img {
  width: 60px !important;
}

footer .social li {
  padding-right: 10px;
  border-right: 1px solid #4D4D4D;
  margin-left: 0 !important;
}

footer .social li:last-child {
  border: 0;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

.breadcrumbs ul {
  display: flex;
  justify-content: center;
}

.breadcrumbs ul li {
  padding-right: 10px;
  position: relative;
  margin-left: 10px;
}

.breadcrumbs ul li:last-child a {
  color: #989898;
}

.breadcrumbs ul li:last-child::before {
  display: none;
}

.breadcrumbs ul li::before {
  position: absolute;
  right: -15px;
  top: 3px;
  content: "\EA6E";
  font-family: remixicon !important;
  width: 20px;
  height: 20px;
  font-size: 14px;
}

.background.breadcrumbs {
  background-color: #f1f3f6;
}

.news-wrapper.inner {
  background-color: #f1f3f6;
}

@media (max-width: 992px) and (min-width: 576px) {
  .news-wrapper.inner .content img {
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

@media (max-width: 576px) {
  .news-wrapper.inner .content img {
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .news-wrapper.inner .author {
    flex-direction: column;
  }
  .news-wrapper.inner .author .date {
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

.news-wrapper.inner .content .url-link {
  font-size: 18px;
  color: #4285F4;
  text-decoration: underline;
  display: inline-block;
  margin: 15px 0;
}

.news-wrapper.inner .content img {
  max-width: 780px;
  min-width: 780px;
  width: 100%;
}

.news-wrapper.inner .content ul {
  padding-left: 20px;
}

.news-wrapper.inner .content ul li {
  color: #8F8F8F;
  font-size: 14px;
  margin: 10px 0;
  position: relative;
}

.news-wrapper.inner .content ul li::before {
  position: absolute;
  left: -20px;
  width: 15px;
  height: 2px;
  background-color: #202243;
  top: 9px;
  content: '';
}

.news-wrapper.inner .time-table.details .author {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.news-wrapper.inner .small {
  border-bottom: 1px solid #E8E8E8;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.09) !important;
}

.news-wrapper.inner .small h1, .news-wrapper.inner .small h2, .news-wrapper.inner .small h3, .news-wrapper.inner .small h4, .news-wrapper.inner .small h5, .news-wrapper.inner .small h6 {
  font-size: 20px !important;
  color: #4285F4;
  text-decoration: underline;
}

.news-wrapper.inner .time-table {
  border-radius: 0 !important;
  text-align: left;
  padding: 20px 30px;
}

.news-wrapper.inner .time-table h1, .news-wrapper.inner .time-table h2, .news-wrapper.inner .time-table h3, .news-wrapper.inner .time-table h4, .news-wrapper.inner .time-table h5, .news-wrapper.inner .time-table h6 {
  font-size: 32px;
  margin-bottom: 12px;
}

.news-wrapper.inner .time-table p {
  color: #8F8F8F;
  font-size: 14px;
}

.news-wrapper.inner .time-table .author {
  display: flex;
}

.news-wrapper.inner .time-table .author .writter {
  display: flex;
  align-items: center;
}

.news-wrapper.inner .time-table .author .writter p {
  margin-left: 10px;
  margin-bottom: 0;
  color: #878787;
  font-size: 14px;
}

.news-wrapper.inner .time-table .author .writter img {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  min-width: unset !important;
  max-width: unset !important;
  margin: 0 !important;
}

.news-wrapper.inner .time-table .author .date {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.news-wrapper.inner .time-table .author .date span {
  margin-left: 10px;
  margin-bottom: 0;
  color: #878787;
  font-size: 14px;
}

.news-wrapper.inner .time-table .author .date i {
  font-size: 14px;
  display: grid;
  place-content: center;
  background-color: #f1f3f6;
  width: 30px;
  height: 30px;
  color: #333;
  border-radius: 50%;
}

.list-details {
  background-color: #f1f3f6;
}

@media (max-width: 992px) and (min-width: 576px) {
  .list-details .list-content img {
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

@media (max-width: 576px) {
  .list-details .list-content img {
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .list-details .author {
    flex-direction: column;
  }
  .list-details .author .date {
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

.list-details .list-content .url-link {
  font-size: 18px;
  color: #4285F4;
  text-decoration: underline;
  display: inline-block;
  margin: 15px 0;
}

.list-details .list-content img {
  max-width: 780px;
  min-width: 780px;
  width: 100%;
}

.list-details .list-content ul {
  padding-left: 20px;
}

.list-details .list-content ul li {
  color: #8F8F8F;
  font-size: 14px;
  margin: 10px 0;
  position: relative;
}

.list-details .list-content ul li::before {
  position: absolute;
  left: -20px;
  width: 15px;
  height: 2px;
  background-color: #202243;
  top: 9px;
  content: '';
}

.list-details .time-table.details .author {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.list-details .time-table.details .catagory {
  max-width: 100%;
  flex: 0 0 100%;
  margin-top: 15px;
}

.list-details .time-table.details .catagory ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.list-details .time-table.details .catagory ul li {
  margin: 0 10px;
}

.list-details .time-table.details .catagory ul li:first-child {
  margin-left: 0 !important;
}

.list-details .time-table.details .catagory ul a {
  background-color: #f1f3f6;
  display: block;
  padding: 3px 10px;
  border-radius: 4px;
}

.list-details .small {
  border-bottom: 1px solid #E8E8E8;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.09) !important;
}

.list-details .small h1, .list-details .small h2, .list-details .small h3, .list-details .small h4, .list-details .small h5, .list-details .small h6 {
  font-size: 20px !important;
  color: #4285F4;
  text-decoration: underline;
}

.list-details .time-table {
  border-radius: 0 !important;
  text-align: left;
  padding: 20px 30px;
}

.list-details .time-table h1, .list-details .time-table h2, .list-details .time-table h3, .list-details .time-table h4, .list-details .time-table h5, .list-details .time-table h6 {
  font-size: 32px;
  margin-bottom: 12px;
}

.list-details .time-table p {
  color: #8F8F8F;
  font-size: 14px;
}

.list-details .time-table .author {
  display: flex;
}

.list-details .time-table .author .writter {
  display: flex;
  align-items: center;
}

.list-details .time-table .author .writter p {
  margin-left: 10px;
  margin-bottom: 0;
  color: #878787;
  font-size: 14px;
}

.list-details .time-table .author .writter img {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  min-width: unset !important;
  max-width: unset !important;
  margin: 0 !important;
}

.list-details .time-table .author .date {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.list-details .time-table .author .date span {
  margin-left: 10px;
  margin-bottom: 0;
  color: #878787;
  font-size: 14px;
}

.list-details .time-table .author .date i {
  font-size: 14px;
  display: grid;
  place-content: center;
  background-color: #f1f3f6;
  width: 30px;
  height: 30px;
  color: #333;
  border-radius: 50%;
}

.news.inner {
  background-color: #f1f3f6;
}

.news.inner .group-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (max-width: 992px) and (min-width: 576px) {
  .news.inner .content img {
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

@media (max-width: 576px) {
  .news.inner .content img {
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .news.inner .author {
    flex-direction: column;
  }
  .news.inner .author .date {
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

.news.inner .content .url-link {
  font-size: 18px;
  color: #4285F4;
  text-decoration: underline;
  display: inline-block;
  margin: 15px 0;
}

.news.inner .content img {
  max-width: 780px;
  min-width: 780px;
  width: 100%;
}

.news.inner .content ul {
  padding-left: 20px;
}

.news.inner .content ul li {
  color: #8F8F8F;
  font-size: 14px;
  margin: 10px 0;
  position: relative;
}

.news.inner .content ul li::before {
  position: absolute;
  left: -20px;
  width: 15px;
  height: 2px;
  background-color: #202243;
  top: 9px;
  content: '';
}

.news.inner .time-table.details .author {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.news.inner .small {
  border-bottom: 1px solid #E8E8E8;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.09) !important;
}

.news.inner .small h1, .news.inner .small h2, .news.inner .small h3, .news.inner .small h4, .news.inner .small h5, .news.inner .small h6 {
  font-size: 20px !important;
  color: #4285F4;
  text-decoration: underline;
}

.news.inner .caption h1, .news.inner .caption h2, .news.inner .caption h3, .news.inner .caption h4, .news.inner .caption h5, .news.inner .caption h6 {
  font-size: 20px !important;
  color: #4285F4;
  text-decoration: underline;
}

.news.inner .time-table, .news.inner .box {
  border-radius: 0 !important;
  text-align: left;
  padding: 20px 30px;
  background-color: #fff;
}

.news.inner .time-table h1, .news.inner .time-table h2, .news.inner .time-table h3, .news.inner .time-table h4, .news.inner .time-table h5, .news.inner .time-table h6, .news.inner .box h1, .news.inner .box h2, .news.inner .box h3, .news.inner .box h4, .news.inner .box h5, .news.inner .box h6 {
  font-size: 32px;
  margin-bottom: 12px;
}

.news.inner .time-table p, .news.inner .box p {
  color: #8F8F8F;
  font-size: 14px;
}

.news.inner .time-table .author, .news.inner .box .author {
  display: flex;
}

.news.inner .time-table .author .writter, .news.inner .box .author .writter {
  display: flex;
  align-items: center;
}

.news.inner .time-table .author .writter i, .news.inner .box .author .writter i {
  font-size: 14px;
  display: grid;
  place-content: center;
  background-color: #f1f3f6;
  width: 30px;
  height: 30px;
  color: #333;
  border-radius: 50%;
  margin-right: 5px;
}

.news.inner .time-table .author .writter p, .news.inner .box .author .writter p {
  margin-left: 10px;
  margin-bottom: 0;
  color: #878787;
  font-size: 14px;
}

.news.inner .time-table .author .writter img, .news.inner .box .author .writter img {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  min-width: unset !important;
  max-width: unset !important;
  margin: 0 !important;
}

.news.inner .time-table .author .date, .news.inner .box .author .date {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.news.inner .time-table .author .date span, .news.inner .box .author .date span {
  margin-left: 10px;
  margin-bottom: 0;
  color: #878787;
  font-size: 14px;
}

.news.inner .time-table .author .date i, .news.inner .box .author .date i {
  font-size: 14px;
  display: grid;
  place-content: center;
  background-color: #f1f3f6;
  width: 30px;
  height: 30px;
  color: #333;
  border-radius: 50%;
  margin-right: 5px;
}

.reaction {
  padding: 50px 0;
}

.reaction .box {
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-around;
}

.reaction .box h1, .reaction .box h2, .reaction .box h3, .reaction .box h4, .reaction .box h5 {
  color: #6B6B6B;
  font-size: 24px;
}

.reaction .box .action {
  display: flex;
}

.reaction .box a {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: 0;
  background-color: transparent;
}

.reaction .box a i {
  font-size: 50px;
  color: #fff;
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: 0;
}

.reaction .box a.check i {
  color: #62CB31;
}

.reaction .box a.closes i {
  color: #FF4D4D;
}

.error-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1095;
}

.error-btn a {
  min-width: 150px;
  padding: 8px 15px;
  display: inline-block;
  background-color: #4285F4;
  color: #fff;
  border-radius: 24px;
}

.error-btn a i {
  vertical-align: middle;
}

.main-content {
  background-color: #f1f3f6;
}

.main-content .catagory-list ul {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
}

.main-content .catagory-list ul li {
  margin: 7px;
}

.main-content .catagory-list ul .selected {
  background-color: #202243 !important;
  color: #fff !important;
}

.main-content .catagory-list ul .btn-small {
  min-width: unset;
  background-color: #f1f3f6;
  color: #202243;
  padding: 5px 10px;
}
