* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Cairo", sans-serif;
  background-color: #f5f5f5;
}
p {
  margin-bottom: 15px;
}
a {
  all: unset;
  cursor: pointer;
}

/* Slick Slider Style */
.slider {
  height: 130px;
  margin-top: 20px;
  display: flex;
  gap: 10px;
  margin-right: 20px;
}

.slick-slide {
  margin: 0px 5px;
}

.slick-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.slick-slide {
  transition: all ease-in-out 0.4s;
  opacity: 0.8;
  min-width: 150px;
  height: 130px;
}

.slick-active {
  opacity: 0.8;
}

.slick-current {
  opacity: 1;
}
.slider-item {
  min-width: 150px;
  height: 130px;
}
.slider-item:hover {
  cursor: pointer;
}
/* .slider-img{
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
  width: 170px;
} */
/* .owl-carousel.owl-theme .item {
  width: 100%;
  height: 170px;
} */
/* .owl-theme.owl-one .owl-dots .owl-dot {
  display: none;
} */
/* .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border: 2px solid #005aee !important;
  background-color: #fff !important;
} */
/* .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #005aee !important;
} */
/* .owl-prev {
  position: absolute;
  right: 0;
  top: 30%;
  font-size: 2.4rem !important;
  margin-right: -40px !important;
}
.owl-next {
  position: absolute;
  left: 0;
  top: 30%;
  font-size: 2.4rem !important;
  margin-left: -40px !important;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: transparent !important;
  color: inherit !important;
} */
/* .item {
  min-width: 150px;
  height: 130px;
}
.item:hover{
  cursor: pointer;
} */

/* DropDown Menu */
.mainMenu {
  display: flex;
  flex-direction: column;
}
.dropDownMenu {
  position: fixed;
  top: 50px;
  display: none;
  z-index: 50;
  background: #fff;
  min-width: 200px;
  border-top-style: solid;
  border-top-color: #126aa7;
  border-top-width: 2px;
  margin-top: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.dropDownMenu::before {
  content: "";
  position: absolute;
  right: 15px;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #126aa7;
}
.arrow::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 40%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #005AEE;
}
.dropDownMenu a {
  padding: 10px 20px;
  display: block;
  text-decoration: none;
}
.dropDownMenu a:hover {
  background: #F5F5F5;
}
/* .drop-toggle,
[id^=drop] {
	display: none;
} */
/* .hasChild:hover ~ .submenu-content {
  display: inherit;
} */
.submenu-content, .sub-submenu-content {
  display: none;
	position: absolute; 
  top: 0;
  right: 100%;
  width: fit-content;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sub-submenu-content{
  width: 200px;
}
.sub-dropdown a {
  padding-left: 45px;
}
.dropdown:hover .submenu-content {display: block;}
.sub-dropdown:hover .sub-submenu-content {display: block;}

/* .dropDownMenu li a:hover ~ .submenu-content {
	display: inherit;
} */
.dropDownMenu-show {
  display: block;
}
.dropDownMenu ul,
.dropDownMenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropDownMenu li {
  position: relative;
}


/* Level 2 */
/* .dropDownMenu > li > ul {
  display: none;
  background: green;
  position: absolute;
  top: 0;
  right: 100%;
  min-width: 200px; */
  /* if you have YouTube iframes, is good to have a bigger z-index so the video can appear above the video */
  /* z-index: 999999; 
} */
/* Level 3 */
/* .dropDownMenu > li > ul > li > ul {
  display: none;
  background: rgb(74, 148, 148);
  position: absolute;
  right: 100%;
  top: 0;
  min-width: 200px;
  z-index: 9999999;
} */
/* Level 4 */
/* .dropDownMenu > li > ul > li > ul > li > ul {
  display: none;
  background: rgb(74, 148, 148);
  position: absolute;
  right: 100%;
  top: 0;
  min-width: 200px;
  z-index: 9999999;
} */

.container {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(12, 1fr);
  margin: 12px 4%;
}
.col-lg-1 {
  grid-column: span 12;
}
.col-lg-2 {
  grid-column: span 2;
}
.col-lg-3 {
  grid-column: span 3;
}
.col-lg-4 {
  grid-column: span 4;
}
.col-lg-5 {
  grid-column: span 5;
}
.col-lg-6 {
  grid-column: span 6;
}
.col-lg-7 {
  grid-column: span 7;
}
.col-lg-8 {
  grid-column: span 8;
}
.col-lg-9 {
  grid-column: span 9;
}
.col-lg-10 {
  grid-column: span 10;
}
.col-lg-11 {
  grid-column: span 11;
}
.col-lg-12 {
  grid-column: span 12;
}
/* Colors */
.white {
  color: #fff;
}
.pink {
  color: #ff00bb;
}
.indigo {
  color: #8a00ff;
}
.cinnabar {
  color: #d93a3a;
}
.color-cat1 {
  color: #c300ca;
}
.color-cat2 {
  color: #ca8d00;
}
.color-cat3 {
  color: #0072ca;
}
.color-cat4 {
  color: #40be65;
}
.color-cat5 {
  color: #d93a3a;
}
.bg-color-cat1 {
  background: #c300ca;
}
.bg-color-cat2 {
  background: #ca8d00;
}
.bg-color-cat3 {
  background: #0072ca;
}
.bg-color-cat4 {
  background: #40be65;
}
.bg-color-cat5 {
  color: #d93a3a;
}
.f0{
  font-size: 1rem;
}
.f1{
  font-size: 1.1rem;
}
.f2{
  font-size: 1.2rem;
}
.f3{
  font-size: 1.3rem;
}
.f4{
  font-size: 1.4rem;
}
.f5{
  font-size: 1.5rem;
}
.f6{
  font-size: 1.6rem;
}
.f7{
  font-size: 1.7rem;
}
.f8{
  font-size: 1.8rem;
}
.f9{
  font-size: 1.9rem;
}
.f20{
  font-size: 2rem;
}
/* Navbar */
.navbar {
  display: flex;
  background: #ffffff;
  padding: 5px 60px;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-main {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.navbar img {
  display: block;
}
.navbar img:hover {
  cursor: pointer;
}
/* nav-icon */
.nav-icon {
  background: #126aa7;
  border-radius: 8px;
  position: relative;
  display: flex;
  padding: 7px;
  /* justify-content: center; */
  align-items: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.nav-icon-lines {
  width: 16px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.nav-icon-lines::before,
.nav-icon-lines::after {
  content: "";
  position: absolute;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.nav-icon-lines::before {
  width: 11px;
  transform: translateY(-10px);
}
.nav-icon-lines::after {
  width: 23px;
  transform: translateY(10px);
}
/* ANIMATION */
.nav-icon.open .nav-icon-lines {
  width: 11px;
}
.nav-icon.open .nav-icon-lines::before {
  width: 23px;
}
.nav-icon.open .nav-icon-lines::after {
  width: 16px;
}
.top-items > span {
  margin-left: 5px;
  margin-right: 5px;
}
.top-items > a {
  color: #272727;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  /* padding: 2px 5px; */
}
.top-items > a:hover {
  font-weight: bold;
  cursor: pointer;
}
.nav-item {
  color: #272727;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  /* padding: 2px 5px; */
}
.top-items > .nav-item:hover {
  font-weight: bold;
}
.nav-social > a {
  font-size: 1.5em;
  color: #272727;
  opacity: 0.8;
}
.nav-social > a:hover {
  cursor: pointer;
  opacity: 1;
}
.nav-social-mob{
  display: none;
}
.nav-social-mob > a {
  font-size: 1.5em;
  color: #272727;
  opacity: 0.8;
  padding: 0px 7px;
}
.nav-social-mob > a:hover {
  cursor: pointer;
  opacity: 1;
}
/* .navbar input { */
  /* border-radius: 24px;
  height: 30px;
  border: #707070;
  opacity: 0.7;
  border-style: solid;
  border-width: 1px;
  padding: 0px 10px; */
  /* font-family: inherit; */
/* } */
.dropdownDivider{
  height: 1px;
  margin: 15px 0px;
  box-shadow: 0px 0px 5px;
  background-color: #707070;
  display: none;
}
.nav-search-mob{
  display: none;
  margin: 10px 20px;
}
.nav-search-form-mob{
  /* color: #631616; */
  border: #707070;
  display: flex;
  padding: 2px;
  opacity: 0.7;
  border-radius: 24px;
  border-style: solid;
  border-width: 1px;
  height: 40px;
}
.nav-search-form-mob input[type="search"] {
  font-family: inherit;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0px 10px;
  /* font-size: 14px; */
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
  width: 100%;
}
.nav-search-form-mob input[type="search"]::placeholder {
  color: #bbb;
}
.nav-search-form-mob button[type="submit"] {
  text-indent: -999px;
  overflow: hidden;
  width: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  cursor: pointer;
  opacity: 0.7;
}

.nav-search-form-mob button[type="submit"]:hover {
  opacity: 1;
}
.nav-search-form-mob :focus {
  box-shadow: 0 0 3px 0 #1183d6;
  border-color: #1183d6;
  outline: none;
}
.nav-search-form{
  /* color: #631616; */
  border: #707070;
  display: flex;
  padding: 2px;
  opacity: 0.7;
  border-radius: 24px;
  border-style: solid;
  border-width: 1px;
  /* border-radius: 5px; */
}
.nav-search-form input[type="search"] {
  font-family: inherit;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0px 10px;
  /* font-size: 14px; */
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
}
.nav-search-form input[type="search"]::placeholder {
  color: #bbb;
}
.nav-search-form button[type="submit"] {
  text-indent: -999px;
  overflow: hidden;
  width: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  cursor: pointer;
  opacity: 0.7;
}

.nav-search-form button[type="submit"]:hover {
  opacity: 1;
}
.nav-search-form :focus {
  box-shadow: 0 0 3px 0 #1183d6;
  border-color: #1183d6;
  outline: none;
}


.hero-section {
  /* background: #fff; */
  /* position: relative; */
  border-radius: 10px;
  /* padding: 15px; */
  /* grid-area: hero; */
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: 240px 240px;
  gap: 15px;
  /* height: 500px; */
}
.hero-item{
  border-radius: 10px;
  position: relative;
  color: #FFF;
  overflow: hidden;
}
.hero-item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 3;
}
.hero-item:nth-child(2) {
  grid-area: 1 / 3 / 2 / 5;
}
.hero-item:nth-child(3) {
  background: rgb(64, 78, 143);
}
.hero-item:nth-child(4) {
  background: rgb(169, 170, 80);
}
.hero-item > img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: 10px;
  position: absolute;

  transition: transform 1s ease-in-out;
}
.hero-item-content{
  background-image: linear-gradient( rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.75) );
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  padding: 1.5rem;
  margin-top: auto;
  display: flex;
  flex-direction: column-reverse;
}
.hero-item-cat {
  width: fit-content;
  font-size: 0.7em;
  padding: 2px 10px;
  border-radius: 7px;
  font-weight: bold;
}
.hero-item-date{
  font-size: 0.9em;
  opacity: 0.75;
}

.hero-item-title {
  font-weight: bold;

  display: inline-block;
  transition: background-size 500ms ease-in-out;

  font-weight: bold;
  background-image: linear-gradient(white , white);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: right bottom;
  display: inline-block;
  transition: background-size 500ms ease-in-out;
}
.hero-item:hover img {
  transform: scale(1.15) rotate(3deg);
}
.hero-item:hover .hero-item-title {
  background-size: 100% 2px;
}

.mob-slider-container {
  display: none;
  background: #fff;
  height: 400px;
  padding: 25px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.mob-slider-item{
  height: 300px;
  position: relative;
}
.mob-slider-item::before{
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient( rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.65) );
  border-radius: 10px;
  position: absolute;
  top: 0;
}
.mob-slider-item > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}
.mob-slider-item-cat {
  position: absolute;
  top: 0;
  font-size: 0.7em;
  margin: 5px;
  padding: 2px 10px;
  color: #fff;
  border-radius: 7px;
  font-weight: bold;
  z-index: 1000;
}
.mob-slider-item-title {
  /* background-image: linear-gradient( rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.75) ); */
  position: absolute;
  bottom: 0;
  font-weight: bold;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
  z-index: 1000;
}

.last-news-widget {
  background: #fff;
  /* height: 200px; */
  padding: 20px 45px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.widget-title {
  /* display: list-item;
  list-style-type: disc;
  list-style-position: inside; */
  font-weight: bold;
  float: right;
  margin-bottom: 20px;
}
.read-more {
  cursor: pointer;
  color: #404040;
  float: left;
  font-weight: normal;
}
.lastnews {
  display: flex;
  flex-direction: column;
  height: 130px;
}
.last-news > div {
  overflow: hidden;
}
.lastnews > a:hover {
  cursor: pointer;
}
.last-news-list {
  /* margin-top: 10px; */
  margin-bottom: 10px;
  /* height: 100px; */
  display: flex;
  overflow: hidden;
}
.last-news-list img {
  width: 160px;
  height: 110px;
  border-radius: 7px;
  margin-left: 20px;
}
.last-news-list img:hover {
  cursor: pointer;
}
.lastnews-cat {
  font-size: 0.8em;
  font-weight: bold;
}
.lastnews-date {
  font-size: 0.8em;
  font-weight: bold;
  color: #005aee;
}
.lastnews-title {
  font-size: 1em;
  font-weight: bold;
  color: #005aee;
  flex: auto;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lastnews-text {
  font-size: 0.8em;
  font-weight: 400;
  color: #393939;
  flex: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ad1 {
  background: #005aee;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  padding: 20px 45px;
  border-radius: 10px;
  height: 100px;
  color: #fff;
  text-align: center;
  /* grid-area: main; */
  /* height: 500px; */
}
.twitter-widget {
  background: #fff;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  height: 200px;
  padding: 20px 45px;
  border-radius: 10px;
}
.favorite-widget {
  background: #fff;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  /* height: 300px; */
  padding: 20px 45px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.fav-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.fav-content .fav-item1 {
  position: relative;
  border-radius: 7px;
  height: 220px;
  grid-area: 1 / 1 / span 1 / span 3;
  display: flex;
}
.fav-content .fav-item2 {
  position: relative;
  border-radius: 7px;
  height: 220px;
  grid-area: 1 / 4 / span 1 / span 3;
  display: flex;
}
.fav-content .fav-item3 {
  position: relative;
  border-radius: 7px;
  height: 200px;
  grid-area: 2 / 1 / span 1 / span 2;
  display: flex;
  font-size: 0.9em;
}
.fav-content .fav-item4 {
  position: relative;
  border-radius: 7px;
  height: 200px;
  grid-area: 2 / 3 / span 1 / span 2;
  display: flex;
  font-size: 0.9em;
}
.fav-content .fav-item5 {
  position: relative;
  border-radius: 7px;
  height: 200px;
  grid-area: 2 / 5 / span 1 / span 2;
  display: flex;
  font-size: 0.9em;
}
.fav-item-image {
  height: 100%;
  width: 100%;
  border-radius: 7px;
  /* display: block; */
}
.fav-item-content {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.57)
  );
  padding: 10px;
  height: 100%;
  width: 100%;
  border-radius: 7px;
  color: #fff;
}
.fav-item-image-title {
  font-weight: bold;
  line-height: 1.5;
}
.fav-item-image-date {
  font-size: 0.8em;
}
.vid-shaam-widget {
  background: #fff;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  padding: 20px 45px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.vid-content {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 10px;
}
.vid-content .vid-list {
  border-radius: 7px;
  /* height: 400px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* padding: 20px; */
}
.vid-lis-item {
  background: #005aee;
  border-radius: 7px;
  height: 130px;
  position: relative;
  /* display: block; */
  /* height: 100%; */
}
.vid-list-image {
  height: 100%;
  width: 100%;
  border-radius: 7px;
  display: block;
}
.vid-list-image > img {
  border-radius: 7px;
  display: block;
  height: 100%;
  width: 100%;
}
.vid-list-image > i {
  position: absolute;
  z-index: 60;
  color: #fff;
  font-size: 2em;
  top: 30%;
  right: 45%;
}
.vid-list-title {
  position: absolute;
  display: flex;
  bottom: 0;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.62)
  );
  color: #fff;
  align-items: flex-end;
  text-align: center;
  padding: 5px 20px;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1.5;
  height: 100%;
  width: 100%;
  border-radius: 7px;
}
.vid-main {
  border-radius: 7px;
  height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.img-gradient {
  position: relative;
  display: block;
  height: 80%;
  width: 100%;
}
.vid-main-image {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  display: block;
  height: 100%;
  width: 100%;
}
.img-gradient::after {
  content: "";
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #000000;
  opacity: 30%;
}
.vid-main > i {
  position: absolute;
  z-index: 10;
  color: #fff;
  font-size: 3em;
  top: 40%;
  right: 45%;
  /* background-image: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.62)
  ); */
}
.vid-main-title {
  position: relative;
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  color: #fff;
  /* padding: 10px 20px; */
  background-image: linear-gradient(
    rgba(54, 136, 156, 1),
    rgba(24, 60, 119, 1)
  );
  width: 100%;
  height: auto;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.vid-main-date {
  font-size: 0.8em;
  text-align: end;
  margin-top: 10px;
  margin-left: 20px;
}
.vid-main-title > span {
  margin-right: 20px;
  font-size: 1.2em;
  font-weight: bold;
}
.vid-main-title > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* .sidebar {
  background: #fff;
  padding: 20px 45px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /* grid-area: sidebar; */
/* }  */
.wather-widget {
  /* height: auto; */
  width: auto;
  margin-bottom: 15px;
}
.wather-widget img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.exchange-widget {
  background: #fff;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  /* height: 300px; */
  /* padding: 20px 45px; */
  border-radius: 10px;
}
.bulletins-widget {
  background: #fff;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  /* height: 200px; */
  /* padding: 20px 45px; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /* position: relative; */
}
.sidebar-title {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: #005aee;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 0.9em;
  padding: 5px;
}
.sidebar-content {
  /* background: #62789b; */
  flex: auto;
}
.sidebar-list {
  display: flex;
  padding: 10px;
  height: 130px;
  overflow: hidden;
}
.sidebar-item {
  display: flex;
  flex-direction: column;
}
.sidebar-list img {
  width: 120px;
  height: 100px;
  border-radius: 7px;
  margin-left: 10px;
}
.sidebar-list img:hover {
  cursor: pointer;
}
.sidebar-item-date {
  font-size: 0.8em;
  font-weight: bold;
  color: #005aee;
}
.sidebar-item-datediv {
  flex: auto;
}
.sidebar-item-title {
  font-size: 1em;
  /* font-weight: bold; */
  color: #7b8591;
  line-height: 1.5;
  flex: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-item-title a:hover {
  cursor: pointer;
}
.sidebar-item-text {
  font-size: 0.8em;
  font-weight: 400;
  color: #393939;
}
.sidebar-item-text a {
  font-weight: bold;
  cursor: pointer;
}
.sidebar-more {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-color: #95989a;
  border-top-width: 1px;
  border-top-style: solid;
  color: #7b8591;
  text-align: center;
  font-size: 0.9em;
  padding: 5px;
  cursor: pointer;
}
.reports-widget {
  background: #fff;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  /* height: 200px; */
  /* padding: 20px 45px; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /* position: relative; */
}
.socials-widget {
  background: #fff;
  /* margin-top: 15px; */
  margin-bottom: 15px;
  /* height: 200px; */
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 50px;
  padding-bottom: 40px;
  border-radius: 10px;
  color: #005aee;
  /* font-weight: bolder;
  font-size: 1.1em; */
}
.socials-widget > .line {
  height: 5px;
  width: 80px;
  margin-top: 8px;
  margin-bottom: 15px;
  background: #000000;
}
.social-item {
  height: 50px;
  line-height: 50px;
  width: 90%;
  color: #fff;
  font-size: 1.3em;
  text-align: left;
  display: flex;
}
.social-icon {
  width: 50px;
  text-align: center;
}
.social-title {
  flex: auto;
  padding-left: 20px;
}

.single-post-widget {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}
.single-post-widget > a:hover {
  cursor: pointer;
}
.single-post-img {
  width: 100%;
  height: 400px;
  display: block;
  /* overflow: hidden; */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
  cursor: pointer;
}
.single-post-cat {
  background: #d20505;
  width: fit-content;
  /* position: absolute; */
  /* z-index: 10; */
  /* bottom: 150px; */
  font-size: 0.7em;
  margin-right: 45px;
  margin-bottom: 5px;
  padding: 2px 10px;
  color: #fff;
  /* background: #6e00ff; */
  border-radius: 7px;
  font-weight: bold;
}
.single-post-date {
  margin-right: 45px;
  font-size: 0.8em;
  font-weight: bold;
  color: #005aee;
}
.single-post-title {
  margin: 10px 45px;
  font-size: 1.5em;
  font-weight: 900;
  color: #005aee;
}
.single-post-content {
  margin: 10px 45px;
  text-align: justify;
}
.single-post-footer {
  margin: 15px 45px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.single-post-footer > span {
  font-size: 0.8em;
  padding: 3px 15px;
  color: #fff;
  /* font-weight: bold; */
  background: #005aee;
  border-radius: 20px;
}
/* .single-post-footer > span:last-child {
  all: unset;
  color: #005aee;
  font-size: 0.9em;
  font-weight: bold;
} */
.single-post-footer > span > a:hover {
  cursor: pointer;
}
.single-post-footer > span > a > img {
  height: 18px;
}
.single-post-tags {
  margin-right: 45px;
  margin-bottom: 30px;
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 0.9em;
  font-weight: bold;
}
.tags-div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.single-post-tags > .tags-div > a > span {
  font-size: 0.8em;
  padding: 3px 10px;
  color: #fff;
  font-weight: 500;
  /* font-weight: bold; */
  background: #005aee;
  border-radius: 20px;
}
.single-post-tags > .tags-div > a:hover {
  cursor: pointer;
}
.single-post-sidebar {
  margin: 10px 15px;
  display: flex;
  flex-direction: column;
}
.blue-title > h3,
.blue-title > h2 {
  margin-top: 20px;
  margin-right: 10px;
  /* font-weight:bold; */
  color: #005aee;
  line-height: 0.5;
}
.blue-title .line2 {
  line-height: 0;
  font-size: 2.5em;
  color: #2f2c2c;
  margin-right: 10px;
}
.single-post-sidebar-list {
  display: flex;
  flex-direction: column;
}
.single-post-sidebar-item {
  color: #2f2c2c;
  font-weight: bold;
  font-size: 0.9em;
}
.single-post-sidebar-list > hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.single-post-sidebar-list > a:hover {
  cursor: pointer;
}
.cat-hero-section {
  background: #fff;
  height: 500px;
  border-radius: 10px;
  padding: 25px;
  display: grid;
  grid-template-columns: 0.22fr 0.22fr 0.22fr 0.17fr 0.17fr;
  grid-template-rows: 258px 172px;
  gap: 20px;
}
.cat-hero-item {
  background: #95989a;
  border-radius: 10px;
  position: relative;
  display: inline-block;
}
.cat-hero-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  /* display:inline-block; */
  background-image: linear-gradient(rgb(255, 255, 255, 0), rgba(0, 0, 0, 0.48));
  /* z-index: 1; */
}
/* .cat-hero-content::before {
  z-index: 1;
  content:'';
  position:absolute;
  left:0; top:0;
  border-radius: 10px;
  width:100%; height:100%;
  display:inline-block;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.48)
  ); */
/* background: -moz-linear-gradient(top, rgba(255, 255, 255) 0%, rgba(0, 0, 0, 0.48) 100%); /* FF3.6+ 
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255)), color-stop(100%,rgba(0, 0, 0, 0.48))); /* Chrome,Safari4+ 
  background: -webkit-linear-gradient(top, rgba(255, 255, 255) 0%,rgba(0, 0, 0, 0.5) 100%); /* Chrome10+,Safari5.1+ 
  background: -o-linear-gradient(top, rgb(255, 255, 255) 0%,rgba(0, 0, 0, 0.48) 100%); /* Opera 11.10+ 
  background: -ms-linear-gradient(top, rgba(525, 255, 255) 0%,rgba(0, 0, 0, 0.48) 100%); /* IE10+ 
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%,rgba(0, 0, 0, 0.48) 100%); W3C */
/* } */

.cat-hero-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  /* z-index: 20; */
}
.image-overlay-content {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column-reverse;
  margin-right: 20px;
  margin-bottom: 10px;
}
.overlay-category {
  /* position: absolute; */
  /* z-index: 10; */
  /* bottom: 150px; */
  font-size: 0.7em;
  /* margin-right: 20px; */
  width: fit-content;
  padding: 2px 10px;
  color: #fff;
  /* background: #6e00ff; */
  border-radius: 7px;
  font-weight: bold;
}
.image-overlay-date {
  /* position: absolute; */
  /* z-index: 10; */
  /* bottom: 95px; */
  /* padding: 20px; */
  font-size: 0.9em;
  /* font-weight: bold; */
  color: #fff;
  /* opacity: 0.7; */
}
.image-overlay-title {
  /* position: absolute; */
  /* z-index: 10; */
  /* bottom: 0; */
  color: #fff;
  /* align-items: flex-end; */
  /* padding: 20px; */
  font-size: 1.4em;
  line-height: 1.5;
  font-weight: bold;
  /* line-height: 1.5; */
  /* height: 100%;
  width: 350px; */
  /* border-radius: 10px; */
  /* display: none; */
  /* opacity: 0; */
  /* transition: visibility 2s; */
}
.cats-titles {
  background: #fff;
  /* height: 50px; */
  border-radius: 10px;
  padding: 10px 40px;
  display: flex;
  gap: 70px;
  color: #8d8d8d;
  font-weight: bold;
}
.cats-titles:hover {
  cursor: pointer;
}
.cats-titles .active {
  color: #005aee;
  position: relative;
  display: inline-block;
}
.cats-titles .active:after {
  content: "";
  position: absolute;
  right: 40%;
  top: 100%;
  width: 16px;
  height: 8px;
  border-radius: 8px 8px 0 0;
  background-color: #005aee;
}
.cat-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.cat-item {
  background: #fff;
  /* height: 400px; */
  border-radius: 10px;
  transition: 1s;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 15px;
}
.cat-item:hover {
  box-shadow: 5px 5px 20px 5px #888888;
}
.cat-item img {
  width: 100%;
  /* height: 50%; */
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.item-date {
  font-size: 0.8em;
  font-weight: bold;
  color: #303030;
}
.item-title {
  font-size: 0.9em;
  font-weight: bold;
  color: #005aee;
  margin-top: 3px;
  margin-bottom: 5px;
  margin-right: 20px;
  margin-left: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-title:hover {
  cursor: pointer;
}
.item-text {
  font-size: 0.9em;
  font-weight: 400;
  color: #393939;
  text-align: justify;
  /* flex: 1; */
  height: 107px;
  overflow: hidden;
}
.item-readmore {
  font-size: 0.9em;
  font-weight: bold;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 10px 0 10px;
  margin-bottom: 13px;
  /* z-index: 1000; */
  text-decoration: underline;
}
.item-readmore:hover {
  cursor: pointer;
}
.cat-item > .item-date,
.cat-item > .item-title,
.cat-item > .item-text {
  margin-right: 20px;
  margin-left: 20px;
}
.cats-pagination {
  background: #fff;
  /* height: 50px; */
  border-radius: 10px;
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #404040;
  opacity: 0.5;
}
.page-numbers {
  display: flex;
  gap: 10px;
}
.page-numbers a {
  border-radius: 5px;
  text-align: center;
  height: 30px;
  /* width: 30px; */
  padding-right: 5px;
  padding-left: 5px;
}
.page-numbers a:hover {
  cursor: pointer;
}
.page-numbers > .active {
  background: #cacaca;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  height: 30px;
  /* width: 30px; */
}
.go-to-page {
  display: flex;
  gap: 5px;
  align-items: center;
  border-right-width: 1px;
  border-right-color: #cacaca;
  border-right-style: solid;
  padding-right: 20px;
  height: 100%;
}
.go-to-page > input {
  border-radius: 5px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-width: 1px;
  border-color: #dddddd;
  border-style: solid;
  background: #fcfcfc;
}
.go-to-page a {
  border-radius: 5px;
  text-align: center;
  height: 30px;
  width: 30px;
}
.go-to-page a:hover {
  cursor: pointer;
}
.fullwidth-container {
  background: #fff;
  height: 400px;
  padding: 25px;
  margin-bottom: 20px;
}
.article-slider-head {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.article-slider-head > h3 {
  color: #005aee;
}
.article-slider-head > a {
  font-weight: bold;
}
.article-slider-head > a:hover {
  cursor: pointer;
}
.article-slider-list {
  display: flex;
  gap: 20px;
}
.article-slider-item {
  background: #f8f9fd;
  flex: 1;
  height: 300px;
  border-radius: 10px;
  position: relative;
}
.article-slider-item > a:hover {
  cursor: pointer;
}
.article-slider-item > img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.article-slider-item-cat {
  position: absolute;
  top: 0;
  font-size: 0.7em;
  margin: 5px;
  padding: 2px 10px;
  color: #fff;
  border-radius: 7px;
  font-weight: bold;
}
.article-slider-item-date {
  position: absolute;
  top: 50%;
  background: #fff;
  color: #005aee;
  padding: 0 10px;
  font-size: 0.7em;
  font-weight: bold;
}
.article-slider-item-title {
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-slider-item-author {
  color: #747e8c;
  font-size: 0.9em;
  text-align: center;
}
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
}
.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-list > .gallery-item > a:hover {
  cursor: pointer;
}
.gallery-item {
  background: #f8f9fd;
  /* flex: 1; */
  height: 300px;
  border-radius: 10px;
  transition: 1s;
  /* position: relative; */
}
.gallery-item:hover {
  box-shadow: 5px 5px 20px 5px #888888;
}
.gallery-item > a > img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.gallery-item-date {
  background: #005aee;
  color: #fff;
  width: fit-content;
  padding: 5px 10px;
  font-size: 0.7em;
  font-weight: bold;
}
.gallery-item-title {
  margin: 0 10px;
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
footer {
  background: #1d2a3b;
  color: #fff;
  /* height: 250px; */
  padding: 40px;
  /* display: flex; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}
footer img {
  width: 150px;
}
.footer-social-icon {
  color: #005aee;
  background: #fff;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  text-align: center;
  padding: 7px;
}
.footer-title {
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-list {
  color: #7c7d94;
  display: flex;
  flex-direction: column;
  gap: 5px;
  float: right;
  /* margin-left: 10px; */
}
.footer-copyright {
  background: #fff;
  color: #707070;
  justify-content: space-around;
  display: flex;
  direction: ltr;
}




/* .sf-menu {
  display: block;
} */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  height: 90%;
  /* max-width: 700px; */
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

/* advance search div */
.searchForm {
  display: none;
  z-index: 1000;
  position: absolute;
  background-color: #fff;
  border-top-style: solid;
  border-top-color: #126aa7;
  border-top-width: 2px;
  margin-top: 5px;
  padding: 1rem;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  color: #126aa7;
  width: fit-content;
}
.searchForm::before {
  content: "";
  position: absolute;
  right: 15px;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #126aa7;
}
.searchForm > form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  /* flex-wrap: wrap */
}
.searchItem {
  display: flex;
  flex-direction: column
}
.searchBtn {
  background-color: #126aa7;
  color: #FFF;
  padding: 0.25rem 1rem;
  border: none;
  border-radius: 10%;
  font-family: inherit;
  font-weight: 700;
  margin: 0px auto;
  width: fit-content;
}
.searchInput {
  font-family: inherit;
  height: auto;
}
.video60beats {
  position: relative;
}
.video60beats > img:nth-child(1) {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  cursor: pointer;
}
.video60beats > img:nth-child(2) {
  position: absolute;
  top: 30%;
  left: 45%;
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  width: 3rem;
  z-index: 10;
}
.video60beatsModal {
  display: none;
  position: fixed;
  justify-content: center;
  z-index: 5000;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.5;
}
.video60beatsModalContent{
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.video60beatsClose {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  float: none;
  margin-right: 3rem;
  margin-top: 5%;
  font-size: 3.75rem/* 60px */;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}
.video60beatsClose:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.video60beatsiframe {
  width: 50%;
  height: 70%;
  margin-left: auto;
  margin-right: auto;
}



@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}




@media (max-width: 768px) {
  .video60beatsClose {
    float: right;
    margin-right: unset;
  }

  .video60beatsiframe {
    width: 100%;
  }

  .modal-content {
    height: unset;
    width: 100%;
  }

  /* .navbar { */
  /* display: none; */
  /* } */
  .navbar {
    display: block;
  }
  .nav-main {
    flex-direction: row-reverse; 
  }
  .dropdownDivider{
    display: block;
  }
  .nav-search-mob{
    display:block;
  }
  .nav-social-mob{
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .submenu-content, .sub-submenu-content {
    box-shadow: 0 0px 8px 0 rgb(0 0 0 / 20%), 0 0px 5px 0 rgb(0 0 0 / 19%);
}
  .col-md-12 {
    grid-column: span 12;
  }
  /* .hero-section {
    padding: 15px;
    flex-direction: column;
    gap: 10px;
  } */
  .hero-item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .hero-item:nth-child(2) {
    grid-area: 1 / 3 / 2 / 5;
  }
  .hero-item:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
  }
  .hero-item:nth-child(4) {
    grid-area: 2 / 3 / 3 / 5;
  }
  .hero-item-text{
    display: none;
  }
  .hero-item-title{
    font-size: 0.8rem;
  }
  .hero-item-cat{
    font-size: 0.6rem;
  }
  .hero-item-content{
    padding: 1rem;
  }
  .mob-slider-container{
    display: block;
  }
  .hero-section{
    display: none;
  }
  /* .hero-image-container {
    width: 100%;
  }
  .hero-image {
    width: 100%;
  }
  .hero-content {
    width: 100%;
  }
  .hero-title,
  .hero-text,
  .hero-readmore {
    display: none;
  } */
  .slider {
    margin-right: 0;
  }
  .last-news-widget {
    padding: 15px;
  }
  .favorite-widget {
    padding: 15px;
  }
  .fav-content .fav-item3 {
    grid-area: 2 / 1 / span 1 / span 3;
  }
  .fav-content .fav-item4 {
    grid-area: 2 / 4 / span 1 / span 3;
  }
  .fav-content .fav-item5 {
    display: none;
  }
  .vid-shaam-widget {
    padding: 15px;
  }
  .vid-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .vid-content .vid-list {
    flex-direction: row;
  }
  .vid-list-image > i {
    display: none;
  }
  .vid-list-title {
    padding: 5px 5px;
    font-size: 0.7em;
  }
  .last-news-list img {
    width: 120px;
    height: 100px;
  }
  .nav-item,
  .top-items,
  .nav-social,
  .nav-search {
    display: none;
  }
  .navbar {
    padding: 5px 15px;
    gap: 10px;
  }
  /* .navbar input {
    width: 170px;
  } */
  footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
  footer div:nth-child(1) {
    grid-area: 1 / 1 / span 1 / span 3 !important;
  }
  footer div:nth-child(2) {
    grid-area: 2 / 1 / span 1 / span 1 !important;
  }
  footer div:nth-child(3) {
    grid-area: 3 / 1 / span 1 / span 1 !important;
  }
  footer div:nth-child(4) {
    grid-area: 2 / 2 / span 1 / span 1 !important;
  }
  footer div:nth-child(5) {
    grid-area: 3 / 2 / span 1 / span 1 !important;
  }
  footer div:nth-child(6) {
    grid-area: 4 / 1 / span 1 / span 1 !important;
  }
  footer div:nth-child(7) {
    grid-area: 5 / 1 / span 1 / span 1 !important;
  }
  footer div:nth-child(8) {
    grid-area: 5 / 2 / span 1 / span 1 !important;
  }
  .footer-copyright {
    flex-direction: column;
    padding-left: 10px;
  }

  /* Single Post  */
  .single-post-img {
    height: 200px;
  }
  .single-post-cat {
    margin-right: 20px;
  }
  .single-post-date {
    margin-right: 20px;
  }
  .single-post-title {
    margin: 10px 20px;
    font-size: 1.3em;
  }
  .single-post-content {
    margin: 10px 20px;
  }
  .single-post-footer {
    margin: 10px 20px;
    gap: 10px;
  }
  .single-post-footer > span {
    font-size: 0.7em;
    padding: 3px 10px;
  }
  .single-post-tags {
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 0.8em;
  }

  /* Gallery Grid  */
  .gallery-grid {
    gap: 20px;
    padding: 10px;
  }
  .gallery-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .gallery-list > .gallery-item:nth-child(7),
  .gallery-list > .gallery-item:nth-child(8),
  .gallery-list > .gallery-item:nth-child(9),
  .gallery-list > .gallery-item:nth-child(10),
  .gallery-list > .gallery-item:nth-child(11),
  .gallery-list > .gallery-item:nth-child(12),
  .gallery-list > .gallery-item:nth-child(13),
  .gallery-list > .gallery-item:nth-child(14),
  .gallery-list > .gallery-item:nth-child(15) {
    display: none;
  }
  .cats-pagination {
    flex-direction: column;
    padding: 5px 30px;
    gap: 5px;
  }
  .page-numbers {
    justify-content: space-between;
  }
  .go-to-page {
    border-right-width: unset;
    border-right-style: unset;
    padding-right: unset;
  }

  /* Category Page  */
  .cats-titles {
    padding: 10px 10px;
    gap: unset;
    justify-content: space-between;
  }
  .cat-items-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .cat-items-grid > .cat-item:nth-child(7),
  .cat-items-grid > .cat-item:nth-child(8),
  .cat-items-grid > .cat-item:nth-child(9),
  .cat-items-grid > .cat-item:nth-child(10),
  .cat-items-grid > .cat-item:nth-child(11),
  .cat-items-grid > .cat-item:nth-child(12) {
    display: none;
  }

  /* .drop-toggle + a {
		display: none;
	}
  .drop-toggle {
		display: block; */
		/* background-color: #254441; */
		/* padding: 10px 20px;	
		font-size:17px;
		text-decoration:none;
		border:none;
	}
  .drop-toggle:hover {
    background: #F5F5F5;
  }
  .drop-toggle::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 40%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #005AEE;
  }
  [id^=drop]:checked + ul {
		display: block;
	} */
  .dropDownMenu {
    width: 90%;
  }
  .submenu-content, .sub-submenu-content{
    /* float: none;
		position:static; */
    /* display: inherit; */
    position: relative; 
    right: unset;
    width: unset;
  }
  .submenu-content::after {
    content: "";
    position: absolute;
    left: 20px;
    top: -23px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #005AEE;
  }
  .sub-submenu-content::after {
    content: "";
    position: absolute;
    left: 20px;
    top: -23px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #005AEE;
  }
}
