@font-face {
  font-family: "Tajawal";
  src: url("../font/Tajawal-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Tajawal";
  src: url("../font/Tajawal-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Tajawal";
  src: url("../font/Tajawal-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Tajawal";
  src: url("../font/Tajawal-Regular.ttf");
  font-weight: 400;
}

:root {
  --bg-color: #101218;
  --text-color: #ffffff;
  --back-color: #101218;
  --primary-color: #57b4ba;
  --yellow: #fab922;
  --turquoise: #57b4ba;
  --blue: #001f3e;
  --black: #110f08;
  --dark: #101218;
}
[data-theme="light"] {
  --bg-color: #ffffff;
  --text-color: #110f08;
}

/* @media (prefers-color-scheme: light) {
  :root {
    --bg-color: #ffffff;
    --text-color: #110f08;
  }
} */

html {
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Tajawal" !important;
  overflow-x: hidden !important;
}

a,
li,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
div {
  font-family: "Tajawal" !important;
  font-weight: 700;
}

a {
  text-decoration: unset;
  color: unset;
}
a:hover {
  color: unset;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: 100%;
  transition: all ease 0.5s;
}

a:hover .img img {
  filter: brightness(0.7);
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: -webkit-linear-gradient(
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  transition: all ease 0.5s;
}

.overlay-box {
  display: block;
  position: relative;
  overflow: hidden;
}
.overlay-box p {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  z-index: 1;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  font-size: 10px;
  background-color: var(--turquoise);
}
.overlay-box p.time {
  right: unset;
  left: 0;
}
.overlay-box h2 {
  position: absolute;
  bottom: 1rem;
  margin: 0 1rem;
  z-index: 1;
  font-weight: 800;
  font-size: 15px;
  text-align: justify;
  color: #fff;
}
.overlay-box h2 span {
  transition: background-color 0.2s ease;
}
.overlay-box:hover h2 span {
  background-color: var(--turquoise);
}

.h2-back {
  position: relative;
  padding-top: 5px;
  font-size: 15px;
  padding-bottom: 5px;
  color: var(--text-color);
  margin: 0;
  transition: color 0.2s ease;
}
a:hover .h2-back {
  color: #fff;
}
.h2-back::before {
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: var(--turquoise);
  transition: height 0.3s;
}
a:hover .h2-back::before {
  height: 100%;
}

.h2-side {
  position: relative;
  padding-right: 4px;
  padding-bottom: 1px;
  font-size: 15px;
  color: var(--text-color);
  transition: color 0.2s ease;
}
a:hover .h2-side {
  color: #fff;
}
.h2-side::before {
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--turquoise);
  transition: width 0.3s;
}
a:hover .h2-side::before {
  width: 100%;
}

.ease {
  transition: all ease 0.2s;
}

.color-turquoise {
  color: var(--turquoise) !important;
}

/* social */
.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.social .fa-facebook-f {
  color: #4267b2;
}
.social .fa-x-twitter {
  color: #ffffff;
}
[data-theme="light"] .social .fa-x-twitter {
  color: #14171a;
}
.social .fa-instagram {
  color: #c13584;
}
.social .fa-youtube {
  color: #ff0000;
}
.social .fa-telegram {
  color: #24a1de;
}

/* dark-light */
.dark-mode-toggle .icon {
  color: var(--yellow);
  cursor: pointer;
}
.dark-mode-toggle .icon.dark {
  display: none;
}
[data-theme="light"] .dark-mode-toggle .icon.dark {
  display: inline;
}
[data-theme="light"] .dark-mode-toggle .icon.light {
  display: none;
}

/* mobile menu */
.big-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
  display: none;
  transition: all ease 0.2s;
}
.big-overlay.active {
  display: block;
}
.mobile-menu {
  width: 320px;
  left: -320px;
  height: 100%;
  overflow-x: hidden !important;
  display: block;
  position: fixed;
  background-color: var(--bg-color);
  color: var(--text-color);
  z-index: 10;
  transition: all ease 0.2s;
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu .logo img {
  width: 80px !important;
  height: auto !important;
  max-width: 100%;
}
.mobile-menu i {
  cursor: pointer;
}
.mobile-menu li {
  width: 140px;
  line-height: 30px;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
[data-theme="light"] .mobile-menu li {
  border-bottom-color: #f6f6f6;
}
.mobile-menu li a {
  transition: all ease 0.1s;
}
.mobile-menu li a:hover {
  color: var(--turquoise);
}

/* ticker */
.ticker {
  background-color: var(--blue);
}
.ticker img {
  width: 20px;
  height: 20px;
}
.ticker .name {
  white-space: nowrap;
  font-size: 15px;
}
.ticker .more {
  border-right: 3px solid #fff;
  color: #fff;
}
.ticker .more .resume {
  display: none;
}
.ticker.break-news {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 4;
  background-color: var(--blue);
  box-shadow: 0 -2px 4px -1px rgba(0, 0, 0, 0.3);
}
.ticker.break-news.closed {
  display: none !important;
}
.ticker.break-news .name {
  animation: text-pulse 0.7s infinite;
  font-size: 20px;
  padding: 5px !important;
  border-left: 2px solid #ffffff;
}
@keyframes text-pulse {
  0% {
    color: #ffffff;
  }
  100% {
    color: var(--blue);
  }
}
.marquee {
  direction: ltr;
  overflow: hidden;
}
.marquee a,
.marquee span {
  color: #fff;
  font-size: 13px;
  margin: 0 1rem;
}
.marquee .js-marquee {
  direction: rtl;
}

/* main */
main.sticky {
  margin-top: 12rem;
}

/* nav-logo */
.nav-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  position: relative;
  transition: position ease 0.1s;
}
.nav-logo .logo img {
  width: 200px !important;
  height: auto !important;
  max-width: 100%;
}
.nav-logo .search i {
  cursor: pointer;
  color: var(--text-color);
}
.nav-logo .search .fa-close {
  display: none;
}
.nav-logo .search .fa-close.active {
  display: block;
}
.nav-logo .fa-search.active {
  display: none;
}
.nav-logo .search .search-form {
  position: absolute;
  z-index: 1;
  top: 45px;
  left: -3000px;
  margin: 0;
  transition: all ease 0.2s;
}
.nav-logo .search.active .search-form {
  left: 110px;
}
.nav-logo .search .search-form input {
  border-radius: 20px;
  border: 1px solid var(--blue);
  width: 350px;
  padding: 5px 20px;
}
.nav-logo .search .search-form input:focus {
  outline: none;
}
.nav-logo.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
  background-color: var(--bg-color);
  margin: 0;
  padding: 10px;
}
.nav-logo.sticky .logo img {
  width: 100px !important;
}
.nav-logo.sticky .social a {
  display: none;
}
.nav-logo.sticky .search .search-form {
  top: 12;
}

/* nav */
.main-nav {
  display: flex;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: position 0.3s ease;
}
[data-theme="light"] .main-nav {
  border-top-color: #eee;
  border-bottom-color: #eee;
}
.main-nav .main-ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-nav .main-ul li {
  color: var(--text-color);
  padding: 1rem 0.5rem;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.main-nav .main-ul li:hover {
  border-bottom-color: var(--yellow);
}
.main-nav .main-ul li i {
  transition: transform ease 0.2s;
}
.main-nav .main-ul li:hover i {
  transition-delay: 0.3s;
  transform: rotate(180deg);
}
.main-nav .sub-menu {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: absolute;
  padding: 2rem 5rem;
  left: 0;
  width: 100%;
  top: 100%;
  background-color: var(--dark);
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  z-index: 6;
  cursor: default;
  visibility: hidden;
  opacity: 0;
  transition: visibility, opacity;
}
[data-theme="light"] .main-nav .sub-menu {
  background-color: #fff;
  border-top-color: #eee;
  border-bottom-color: #eee;
}
.main-nav .sub-menu p {
  font-size: 20px;
  flex-shrink: 0;
}
.main-nav .sub-menu span {
  color: var(--turquoise);
  font-size: 12px;
}
.main-nav .sub-menu .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  border-right: 1px solid var(--yellow);
  padding-right: 1rem;
}
.main-nav .sub-menu .single-news {
  display: flex;
  gap: 0.5rem;
}
.main-nav .sub-menu .single-news .img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
}

.main-nav .sub-menu .single-news img {
  width: 70px;
  height: 70px;
}
.main-nav .sub-menu .single-news h2 {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.main-nav .sub-menu .sub-ul {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  border-right: 1px solid var(--yellow);
  padding-right: 1rem;
}
.main-nav .sub-menu .sub-ul li {
  padding: 0 5px 5px 5px;
  border: none;
}
.main-nav .sub-menu a:hover h2,
.main-nav .sub-menu .sub-ul li:hover,
.main-nav .sub-ul-more li:hover {
  color: var(--turquoise);
  border: none;
}
.main-nav .sub-ul-more {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 100%;
  background-color: var(--bg-color);
  border: 1px solid var(--blue);
  z-index: 6;
  cursor: default;
}
[data-theme="light"] .main-nav .sub-ul-more {
  border-color: #eee;
}
.main-nav .sub-ul-more li {
  border: none;
  padding: 0;
  margin: 2rem;
}
.main-nav .main-ul li:hover .sub-menu {
  transition-delay: 0.3s;
  visibility: visible;
  opacity: 1;
}
.main-nav .main-ul li:hover .sub-ul-more {
  transition-delay: 0.3s;
  visibility: visible;
  opacity: 1;
}
.main-nav .menu-icon {
  display: none;
  cursor: pointer;
  margin: 0.8rem 0;
  font-size: 20px;
  color: var(--text-color);
}
.main-nav.sticky {
  position: fixed;
  width: 100%;
  top: 60;
  z-index: 8;
  background-color: var(--bg-color);
  margin: 0;
}

/* section title */
.section-title {
  font-size: 25px;
  padding: 5px;
  position: relative;
  /* background-color: var(--turquoise); */
  display: inline-block;
  color: var(--text-color);
  transition: color ease 0.3s;
}
.section-title::before {
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background-color: var(--turquoise);
  transition: width 0.3s;
}
.section-title:hover {
  color: var(--text-color);
}
.section-title:hover::before {
  width: 100%;
}

/* slider-news */
.slider-news .swiper {
  width: 100%;
  height: 450px;
}
.slider-news .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-news .next-slider {
  height: 220px;
}
.slider-news .next-slider .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--turquoise);
  font-size: 15px;
  transition: font-size 0.2s ease;
}
.slider-news .next-slider:hover .icon {
  font-size: 20px;
}
.slider-news .swiper-slide .tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  z-index: 1;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  font-size: 10px;
  background-color: var(--turquoise);
}
.slider-news .swiper-slide .time {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  z-index: 1;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  font-size: 10px;
  background-color: var(--turquoise);
}
.slider-news .swiper-slide h2 {
  position: absolute;
  bottom: 1rem;
  margin: 0 1rem;
  z-index: 1;
  font-weight: 800;
  line-height: 1.3;
  font-size: 22px;
  text-align: justify;
  color: #fff;
}
.slider-news h2 span {
  transition: background-color 0.2s ease;
}
.slider-news a:hover h2 span {
  background-color: var(--turquoise);
}
.slider-news .swiper-button-next:after,
.slider-news .swiper-button-prev:after {
  font-size: 20px !important;
}
.slider-news .swiper-button-next,
.slider-news .swiper-button-prev {
  color: #fff;
}
.slider-news .all-news {
  border-top: 1px solid var(--turquoise);
}
.slider-news .all-news .news-container {
  height: 850px;
  padding-left: 5px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.slider-news .all-news p {
  font-size: 12px;
  margin: 0;
  color: var(--turquoise);
}
.slider-news .all-news .big-box .img {
  height: 150px;
  overflow: hidden;
}
.slider-news .all-news .box {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--blue);
}
[data-theme="light"] .slider-news .all-news .box {
  border-top-color: #eee;
}
.slider-news .all-news .box .img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
}

/* politics */
.politics .main-box .img {
  height: 250px;
  overflow: hidden;
}
.politics .box .img {
  overflow: hidden;
  height: 200px;
}
.politics p {
  color: var(--turquoise);
  font-size: 12px;
}

/* security */
.security .box .img {
  height: 220px;
}

/* local */
.local .box .img {
  overflow: hidden;
  height: 200px;
}
.local .main-box .img {
  overflow: hidden;
  height: 485px;
}
.local p {
  color: var(--turquoise);
  font-size: 12px;
}

/* economy */
.economy .main-box .img {
  overflow: hidden;
  height: 350px;
}
.economy .main-box h2 {
  font-size: 18px;
}
.economy .box .img {
  overflow: hidden;
  height: 167px;
}

/* Video */
.video .vidSwiper2 .swiper-button-next:after,
.video .vidSwiper2 .swiper-button-prev:after {
  font-size: 20px !important;
}
.video .vidSwiper2 .swiper-button-next,
.video .vidSwiper2 .swiper-button-prev {
  color: #fff;
}
.video .vidSwiper2 {
  height: 500px;
  width: 100%;
  margin-bottom: 10px;
}
.video .vidSwiper2 h2 {
  font-size: 20px;
  bottom: 3rem;
}
.video .vidSwiper2 p {
  font-size: 15px;
}
.video .vidSwiper2 .icon,
.video .vidSwiper .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--turquoise);
  font-size: 60px;
}
.video .vidSwiper {
  height: 100px;
  width: 100%;
}
.video .vidSwiper .swiper-slide {
  filter: brightness(0.5);
  position: relative;
  cursor: pointer;
}
.video .vidSwiper .icon {
  font-size: 20px;
  transition: all 0.2s ease;
}
.video .vidSwiper .swiper-slide:hover .icon {
  font-size: 30px;
}
.video .vidSwiper .swiper-slide-thumb-active {
  filter: brightness(1);
}
.video .vidSwiper .swiper-slide-thumb-active .icon {
  font-size: 30px;
}

/* iraq */
.iraq-all {
  background-color: var(--blue);
}
.iraq-all .section-title {
  z-index: 1;
  color: #fff;
}
.iraq-all .all-govs {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.iraq-all .all-govs a {
  color: #fff;
  display: block;
  padding: 5px;
  border: 1px solid var(--turquoise);
  border-radius: 10px;
  transition: background-color 0.2s ease;
}
.iraq-all .all-govs a:hover {
  background-color: var(--turquoise);
}
.iraq-all .h2-back {
  z-index: 1;
  color: #fff;
}
.iraq-all .box .img {
  overflow: hidden;
  height: 200px;
  position: relative;
}
.iraq-all .box p {
  color: var(--turquoise);
  font-size: 12px;
}
.iraq-all .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--turquoise);
  font-size: 15px;
  transition: font-size 0.2s ease;
}
.iraq-all a:hover .icon {
  font-size: 20px;
}

/* international */
.international .box .img {
  height: 220px;
}

/* the-rest */
.the-rest h2 {
  margin-bottom: 0;
}
.the-rest p {
  font-size: 12px;
  margin: 0;
  color: var(--turquoise);
}
.the-rest .big-box .img {
  height: 150px;
  overflow: hidden;
}
.the-rest .box {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--blue);
}
[data-theme="light"] .the-rest .box {
  border-top-color: #eee;
}
.the-rest .box .img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
}

/* articles */
.articles .main-box .img {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.articles .main-box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--turquoise);
  font-size: 25px;
  transition: all 0.2s ease;
}
.articles .main-box:hover .icon {
  font-size: 30px;
  color: var(--yellow);
}
.articles .main-box p {
  color: var(--turquoise);
  font-size: 12px;
}
/* Iraqi */
.articles .iraqi-govs {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.articles .iraqi-govs a {
  color: var(--text-color);
  display: block;
  padding: 5px;
  border: 1px solid var(--turquoise);
  border-radius: 10px;
  transition: background-color 0.2s ease;
}
.articles .iraqi-govs a:hover {
  background-color: var(--turquoise);
}

/* article */
.article .article-title {
  background-color: var(--turquoise);
  padding: 5px;
  font-size: 30px;
  color: var(--text-color);
}
.article .time {
  margin: 0;
  color: var(--turquoise);
  font-size: 12px;
}
.article .article-image {
  height: 500px;
  border-top: 5px solid var(--turquoise);
}
.article .article-image img {
  object-fit: contain;
}
.article .article-image iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.article .under-image {
  border: 1px solid var(--turquoise);
  padding: 3rem;
  padding-top: 6px;
}
.article .watch-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.article .watch {
  color: var(--turquoise);
  font-size: 12px;
  margin: 0;
}
.article .share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.article .share i {
  font-size: 20px;
}
.article .share .fa-facebook {
  color: #4267b2;
}
.article .share .fa-whatsapp {
  color: #2bb37c;
}
.article .share .fa-x-twitter {
  color: #fff;
}
[data-theme="light"] .share .fa-x-twitter {
  color: #14171a;
}
.article .share .fa-telegram {
  color: #24a1de;
}
.article .share .fa-envelope {
  color: #848484;
}
.article .share .fa-print {
  color: var(--text-color);
}
.article .font-change {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.article .font-change span {
  background-color: var(--blue);
  color: #fff;
  cursor: pointer;
  padding: 0.2rem 1rem;
  text-align: center;
  margin-left: 5px;
  border-radius: 5px;
  font-size: 15px;
}
.article .article-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article .article-text p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--text-color);
  font-weight: 500;
}
.article .article-text a {
  color: var(--turquoise);
}
.article .article-text img {
  width: 90%;
  height: auto;
  align-self: center;
}
.article .article-text iframe,
.article .article-text video {
  width: 90%;
  align-self: center;
  min-height: 400px;
  max-height: 800px;
}
.article .article-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article .article-tags a {
  color: var(--dark);
  background-color: var(--turquoise);
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
}
.article .more-article {
  padding-right: 10px;
  border-right: 1px solid var(--turquoise);
}
.article .most-read .most-container,
.articles .most-read .most-container {
  height: 500px;
  padding-left: 5px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.article .more-article .box,
.article .most-read .box,
.articles .most-read .box {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: start;
  align-items: flex-start;
}
.article .more-article .box .img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  flex-shrink: 0;
}
.article .most-read .box .img,
.articles .most-read .box .img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex-shrink: 0;
}

.article .most-read p,
.articles .most-read p {
  color: var(--turquoise);
}
.article .most-read .box h2,
.article .most-read .box p,
.articles .most-read .box h2,
.articles .most-read .box p {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 1px;
}

/* Contact Us */
.form_submit img {
  width: 160px;
  height: 80px;
}
.form_submit input {
  color: var(--text-color);
}
/* .contact-us input::placeholder {
  color: #ffffff;
  opacity: 1;
} */
.contact-us .btn {
  background-color: var(--blue);
  color: #ffffff;
  font-weight: bold;
}
.contact-us .form-control,
.contact-us .form-select {
  background-color: var(--bg-color) !important;
  border-color: var(--blue) !important;
  color: var(--text-color);
}
/* .contact-us select {
  display: block;
  width: 100%;
  background-color: var(--bg-color) !important;
  border-color: var(--blue) !important;
  color: var(--text-color);
  padding: 0.375rem 0.75rem 0.375rem 2.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border-radius: var(--bs-border-radius);
} */
.contact-us input:focus,
.contact-us textarea:focus,
.contact-us select:focus,
.contact-us button:active,
.contact-us button:focus {
  box-shadow: none !important;
  border-color: var(--turquoise) !important;
  background-color: var(--bg-color) !important;
}
.contact-us label {
  color: var(--text-color);
}

/* About us */
.about-us p {
  color: var(--text-color);
  line-height: 1.7;
}

/* Matching */
.politics,
.security,
.local,
.economy,
.video,
.international,
.sport,
.technology,
.varieties {
  border-top: 1px solid var(--turquoise);
}
.politics .main-box,
.politics .box,
.local .main-box,
.local .box,
.iraq-all .box,
.articles .main-box {
  display: block;
}

/* pagination */
.articles .page-link {
  background-color: var(--bg-color);
  color: var(--text-color);
  border-color: var(--turquoise);
}
.articles .page-link:hover {
  box-shadow: none;
  background-color: var(--turquoise);
  border-right-color: var(--blue);
  border-left-color: var(--blue);
}
.articles .page-link:active,
.articles .page-link:focus {
  box-shadow: none !important;
}
.articles .page-item.active .page-link,
.articles .page-item.disabled .page-link {
  background-color: var(--turquoise);
  border-right-color: var(--blue);
  border-left-color: var(--blue);
}

/* apps */
.apps .box {
  background: var(--turquoise);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 1rem;
  padding: 3rem 1rem;
}
.apps .download-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.apps .download-links a {
  font-size: 25px;
  border: 1px solid var(--text-color);
  padding: 10px;
  border-radius: 10px;
  transition: border-color ease .2s;
}
.apps .download-links a:hover {
  border-color: var(--bg-color);
}
.apps .download-links .apple-link i {
  font-size: 30px;
}
.apps .app-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
}
.apps .app-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--turquoise);
  border-radius: 10px;
  padding: 1rem;
  gap: 1rem;
}
.apps .app-box a p {
  margin-bottom: 5px;
}
.apps .app-box a span {
  font-size: 12px;
}
.apps .app-box a img {
  width: 70px;
  height: 70px;
}

/* footer */
footer {
  background-color: var(--blue);
  padding: 2rem 0;
}
/* footer .img img {
  width: 160px;
  height: 64px;
  max-width: 100%;
} */
footer .img img {
  width: 80% !important;
  height: auto !important;
  max-width: 100%;
}
/* footer .img {
  display: flex;
  width: 80%;
  height: auto;
} */
.footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-menu li {
  color: #fff;
  padding: 5px;
  border: 1px solid var(--turquoise);
  border-radius: 10px;
  transition: all ease 0.2s;
}
.footer-menu li:hover {
  background-color: var(--turquoise);
}
footer .social {
  justify-content: flex-start;
}
footer .social .footer-icon,
[data-theme="light"] footer .social .footer-icon {
  color: var(--yellow);
}

/* small devices */
@media (max-width: 991.98px) {
  .main-nav .main-ul {
    display: none;
  }
  .main-nav .menu-icon {
    display: block;
  }
  .slider-news .all-news {
    margin-top: 1rem;
  }
  .slider-news .all-news .big-box .img {
    height: 220px;
  }
  .local .main-box .img {
    height: 300px;
  }
  .articles .most-read,
  .article .most-read {
    margin-top: 1rem;
    border-top: 1px solid var(--turquoise);
    padding-top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .local .col-lg-3 {
    display: flex;
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .nav-logo .search .search-form {
    top: 90;
  }
  .nav-logo.sticky .search .search-form {
    top: 65;
  }
  .nav-logo .search.active .search-form {
    left: 10;
  }
  .nav-logo .search .search-form input {
    width: 280px;
  }
  .nav-logo .social {
    flex-wrap: wrap;
  }
  .search .search-form {
    top: 6px;
  }
  .slider-news .swiper {
    height: 350px;
  }
  .slider-news .swiper-slide h2 {
    font-size: 18px;
  }
  .video .vidSwiper2 {
    height: 350px;
  }
  .video .vidSwiper2 h2 {
    bottom: 1.2rem;
    font-size: 18px;
  }
  .video .vidSwiper2 .icon {
    font-size: 40px;
  }
  .apps .app-box, .apps .download-links {
    flex-direction: column;
  }
  footer .img img {
    width: 200px !important;
  }
}
@media (max-width: 575.98px) {
  .nav-logo {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-logo.sticky i {
    font-size: 18px;
    gap: 1rem;
  }
  .nav-logo .search .search-form {
    top: 158;
  }
  .nav-logo.sticky .search .search-form {
    top: 90;
  }
  .nav-logo .search .search-form input {
    width: 200px;
  }
  .main-nav.sticky {
    top: 85;
  }
  .slider-news .swiper-slide h2,
  .economy .main-box h2 {
    font-size: 15px;
  }
  .slider-news .all-news .big-box .img {
    height: 180px;
  }
  .politics .main-box .img,
  .politics .box .img,
  .local .main-box .img,
  .economy .main-box .img,
  .articles .main-box .img {
    height: 200px;
  }
  .video .vidSwiper2 {
    height: 250px;
  }
  .technology,
  .varieties {
    margin-top: 1rem;
  }
  .article .article-title {
    font-size: 25px;
  }
  .article .article-image {
    height: 400px;
  }
}
