@charset "UTF-8";
.header {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 1002; }
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header .burger {
    position: relative;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 24px;
    height: 1rem;
    background: transparent; }
    .header .burger-line {
      position: absolute;
      display: block;
      right: 0;
      width: 100%;
      height: 2px;
      opacity: 1;
      border: none;
      outline: none;
      background: #000; }
      .header .burger-line:nth-child(1) {
        top: 0px; }
      .header .burger-line:nth-child(2) {
        top: 0.5rem; }
      .header .burger-line:nth-child(3) {
        top: 1rem; }
    @media only screen and (max-width: 999px) {
      .header .burger {
        display: block;
        opacity: 1;
        visibility: visible; } }
  .header .site-header {
    display: flex;
    align-items: center;
    width: 100%;
    background: #03045e;
    padding: 8px 0px; }
    @media (max-width: 999px) {
      .header .site-header {
        display: none; } }
    .header .site-header .date {
      color: #fff; }
  .header .site-actions {
    position: relative;
    z-index: 2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px; }
    @media (max-width: 999px) {
      .header .site-actions {
        border-bottom: 1px solid #CACACA; }
        .header .site-actions.sticky {
          position: fixed;
          top: 0px;
          width: 100%;
          background: #fff;
          padding: 16px 0px; }
        .header .site-actions.active {
          position: relative; } }
    .header .site-actions .logo img {
      max-width: 177px; }
      @media (max-width: 999px) {
        .header .site-actions .logo img {
          max-width: 90px; } }
    .header .site-actions .advertising-banner {
      overflow: hidden; }
      @media (max-width: 1010px) {
        .header .site-actions .advertising-banner {
          display: none; } }
      .header .site-actions .advertising-banner img {
        max-width: 927px;
        max-height: 90px; }
    .header .site-actions .icons {
      position: relative; }
      .header .site-actions .icons .searchicon {
        position: relative;
        display: flex;
        align-items: center;
        color: #000;
        font-size: 20px;
        cursor: pointer; }
        .header .site-actions .icons .searchicon svg,
        .header .site-actions .icons .searchicon img {
          max-height: 20px;
          width: 20px;
          fill: #000;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .header .site-actions .icons .searchicon span {
          display: block;
          margin-right: 8px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
          @media (max-width: 999px) {
            .header .site-actions .icons .searchicon span {
              display: none; } }
    .header .site-actions .showboxsearch {
      display: none;
      position: absolute;
      top: 0px;
      left: 0px;
      width: 348px;
      z-index: 100; }
      @media (max-width: 999px) {
        .header .site-actions .showboxsearch {
          width: 224px;
          top: -11px; } }
      .header .site-actions .showboxsearch .formsearch {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%; }
      .header .site-actions .showboxsearch .form-control {
        height: 46px;
        width: 100%;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        background-clip: padding-box;
        border: 0px;
        box-shadow: none;
        outline: none;
        background: #FFFAF7;
        text-transform: none;
        padding-left: 70px; }
      .header .site-actions .showboxsearch .bottom {
        position: absolute;
        left: 12px;
        padding: 0px;
        background: none;
        outline: none;
        outline-style: none;
        border: 0px;
        cursor: pointer; }
        .header .site-actions .showboxsearch .bottom svg {
          width: 22px;
          height: 22px;
          fill: #ff6700; }
      .header .site-actions .showboxsearch .cancel {
        position: absolute;
        left: 44px;
        z-index: 2;
        cursor: pointer; }
        .header .site-actions .showboxsearch .cancel svg {
          width: 22px;
          fill: #BD3C2F; }
      .header .site-actions .showboxsearch:hover nav.list-search {
        display: block; }
  .header .site-menu {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 70px;
    border-block: 1px solid #CACACA;
    /* End NavMenu */ }
    @media (max-width: 999px) {
      .header .site-menu {
        height: 0px;
        border: 0px;
        overflow: hidden; } }
    .header .site-menu.sticky {
      position: fixed;
      top: -400px;
      background: #fff;
      border: 0px;
      -webkit-box-shadow: 4px 4px 40px #00000014;
      -moz-box-shadow: 4px 4px 40px #00000014;
      -o-box-shadow: 4px 4px 40px #00000014;
      -ms-box-shadow: 4px 4px 40px #00000014;
      box-shadow: 4px 4px 40px #00000014;
      animation: slideDown 0.4s forwards ease-in-out; }
      .header .site-menu.sticky .tools-date {
        display: block; }
        @media (max-width: 1199px) {
          .header .site-menu.sticky .tools-date {
            display: none; } }
@keyframes slideDown {
  from {
    top: -400px; }
  to {
    top: 0; } }
    .header .site-menu .tools-date {
      display: none;
      align-items: center; }
      .header .site-menu .tools-date .logo img {
        max-width: 88px; }
    .header .site-menu .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      padding: 0px; }
      .header .site-menu .navbar .logo {
        display: none;
        position: absolute;
        top: 12px;
        right: 12px; }
        @media screen and (max-width: 999px) {
          .header .site-menu .navbar .logo {
            display: block; } }
        .header .site-menu .navbar .logo img {
          max-width: 106px; }
      .header .site-menu .navbar .cancel {
        display: none;
        position: absolute;
        top: 18px;
        left: 18px;
        z-index: 10; }
        .header .site-menu .navbar .cancel svg {
          width: 16px;
          height: 16px;
          fill: #BD3C2F; }
      @media screen and (max-width: 999px) {
        .header .site-menu .navbar {
          position: fixed;
          top: 0;
          right: -100%;
          width: 290px;
          height: 100%;
          z-index: 10;
          overflow: hidden;
          overflow-y: auto;
          visibility: hidden;
          background: #fff;
          transition: all 0.5s ease; }
          .header .site-menu .navbar.active {
            right: 0rem;
            opacity: 1;
            visibility: visible;
            display: block; }
          .header .site-menu .navbar .cancel {
            display: block; } }
    .header .site-menu .menu {
      display: flex;
      align-items: center; }
      .header .site-menu .menu-item {
        position: relative;
        display: inline-block;
        margin-left: 32px; }
        @media (max-width: 1199px) {
          .header .site-menu .menu-item {
            margin-left: 24px; } }
        .header .site-menu .menu-item:last-child {
          margin: 0px; }
      .header .site-menu .menu-link {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
        cursor: pointer;
        color: #000;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 999px) {
          .header .site-menu .menu-link {
            height: auto;
            padding: 0px 12px; } }
        .header .site-menu .menu-link::after {
          content: "";
          position: absolute;
          right: 0px;
          bottom: 0px;
          width: 0px;
          height: 4px;
          background: #ff6700;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
          @media (max-width: 999px) {
            .header .site-menu .menu-link::after {
              display: none; } }
        .header .site-menu .menu-link svg {
          width: 14px;
          height: 14px;
          fill: #000; }
          @media only screen and (max-width: 999px) {
            .header .site-menu .menu-link svg {
              z-index: -1; } }
      @media only screen and (min-width: 999px) {
        .header .site-menu .menu-dropdown:hover > .submenu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          z-index: 100; } }
      @media only screen and (max-width: 999px) {
        .header .site-menu .menu {
          display: block;
          width: 100%;
          height: auto;
          margin-top: 124px; }
          .header .site-menu .menu-item {
            display: block;
            margin: 0px;
            margin-bottom: 8px; }
            .header .site-menu .menu-item:last-child {
              margin-bottom: 0px; }
          .header .site-menu .menu-link {
            justify-content: space-between; } }
      .header .site-menu .menu .activelink .menu-link::after,
      .header .site-menu .menu .menu-item:hover .menu-link::after {
        width: 100%; }
      @media only screen and (max-width: 999px) {
        .header .site-menu .menu .activelink .submenu {
          opacity: 1;
          visibility: visible;
          transform: none; } }
    .header .site-menu .submenu {
      position: absolute;
      top: 100%;
      right: 0px;
      width: 180px;
      height: auto;
      visibility: hidden;
      transform: translateY(1rem);
      background: #fff;
      box-shadow: 0px 4px 8px 0px #00000033;
      transition: all 0.5s ease-in-out;
      overflow: hidden;
      padding: 12px; }
      @media only screen and (max-width: 999px) {
        .header .site-menu .submenu {
          display: block;
          position: relative;
          max-height: 0px;
          outline: none;
          opacity: 1;
          visibility: visible;
          transform: translateY(0px);
          box-shadow: none;
          padding: 0px;
          background: #FFFAF7;
          width: 100%; } }
      .header .site-menu .submenu a {
        display: block;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        text-transform: capitalize;
        border-bottom: 1px solid #ECECEC;
        padding-bottom: 8px;
        margin-bottom: 8px; }
        @media only screen and (max-width: 999px) {
          .header .site-menu .submenu a {
            padding: 4px 12px; } }
        .header .site-menu .submenu a:last-child {
          margin: 0px;
          border-bottom: 0px;
          padding-bottom: 0px; }
        .header .site-menu .submenu a:hover {
          color: #ff6700; }
    .header .site-menu .overlay {
      position: fixed;
      inset: 0px;
      height: 100%;
      width: 100%;
      z-index: 9;
      visibility: hidden;
      background-color: rgba(0, 0, 0, 0.65); }
      @media only screen and (max-width: 999px) {
        .header .site-menu .overlay.active {
          display: block;
          opacity: 1;
          visibility: visible; } }
    .header .site-menu .weather {
      display: flex;
      align-items: center; }
      @media (max-width: 999px) {
        .header .site-menu .weather {
          display: none; } }
      .header .site-menu .weather li {
        display: flex;
        align-items: center;
        padding-left: 8px;
        border-left: 1px solid #DADCE1;
        margin-left: 8px;
        height: 16px;
        font-size: 14px;
        font-weight: 300;
        transition: all 0.5s ease-in-out; }
        .header .site-menu .weather li:last-child {
          padding-left: 0px;
          border-left: 0px;
          margin-left: 0px; }
        .header .site-menu .weather li svg {
          max-width: 30px;
          max-height: 30px; }

.newsTicker {
  display: flex;
  align-items: center;
  height: 50px;
  background: #fff;
  padding: 0px !important;
  border-bottom: 1px solid #CACACA; }
  .newsTicker .container {
    display: flex;
    align-items: center; }
  .newsTicker .title {
    display: flex;
    align-items: center;
    z-index: 1;
    color: #ff6700;
    font-size: 16px;
    height: 50px;
    padding-left: 16px;
    margin-left: 16px; }
    .newsTicker .title::after {
      content: "";
      position: absolute;
      left: 0px;
      top: 15px;
      width: 2px;
      height: 20px;
      background: #ff6700; }
  .newsTicker .ticker-wrapper {
    overflow: hidden;
    position: relative;
    width: calc(100% - 116px);
    height: 50px; }
  .newsTicker .ticker-content {
    position: absolute;
    top: 0;
    width: 100%; }
  .newsTicker .ticker-item {
    height: 50px;
    display: flex;
    align-items: center;
    white-space: nowrap; }
    .newsTicker .ticker-item a {
      color: #000;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .newsTicker .ticker-item a:hover {
        color: #ff6700; }

.governorates__item {
  padding: 24px 0px !important;
  background: #FFFAF7; }
  .governorates__item nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px; }
    @media (max-width: 999px) {
      .governorates__item nav {
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 767px) {
      .governorates__item nav {
        grid-template-columns: repeat(2, 1fr); } }
    .governorates__item nav a {
      display: block;
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      border: 1px solid #ff760b38;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      @media (max-width: 767px) {
        .governorates__item nav a {
          padding: 12px; } }
      .governorates__item nav a:hover {
        border: 1px solid #ff6700; }
      .governorates__item nav a img {
        max-width: 78px;
        height: 78px; }
      .governorates__item nav a p {
        text-align: center;
        margin-top: 12px;
        color: #000; }

.slider-news__item .rowbox {
  display: grid;
  grid-template-columns: 3fr 310px 310px;
  gap: 16px; }
  @media (max-width: 1199px) {
    .slider-news__item .rowbox {
      grid-template-columns: 3fr 280px 280px; } }
  @media (max-width: 999px) {
    .slider-news__item .rowbox {
      grid-template-columns: 1fr;
      gap: 0px; } }
.slider-news__item .newshero-item {
  position: relative;
  margin-top: 24px; }
  @media (max-width: 999px) {
    .slider-news__item .newshero-item {
      margin-top: 12px; } }
  .slider-news__item .newshero-item .photo {
    display: block;
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden; }
    @media (max-width: 999px) {
      .slider-news__item .newshero-item .photo {
        height: 300px; } }
    .slider-news__item .newshero-item .photo:hover::after {
      -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 106%, 0);
      transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 106%, 0); }
    .slider-news__item .newshero-item .photo:hover img {
      -webkit-transform: scale(1.15);
      -moz-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15); }
    .slider-news__item .newshero-item .photo::after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.5);
      content: '';
      z-index: 1;
      -webkit-transition: -webkit-transform .6s;
      transition: -webkit-transform .6s;
      -o-transition: transform .6s;
      transition: transform .6s;
      transition: transform .6s, -webkit-transform .6s;
      -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -106%, 0);
      transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -106%, 0); }
      @media (max-width: 999px) {
        .slider-news__item .newshero-item .photo::after {
          display: none; } }
    .slider-news__item .newshero-item .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
@media (max-width: 999px) {
  .slider-news__item .item {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) {
  .slider-news__item .item {
    gap: 0px;
    grid-template-columns: repeat(1, 1fr); } }
.slider-news__item .item .newshero-item .photo {
  height: 180px; }
.slider-news__item .item .newshero-item .tagtext {
  border-radius: 0px;
  padding: 0px;
  background: none;
  margin-top: 8px;
  color: #ff6700; }
  .slider-news__item .item .newshero-item .tagtext img {
    max-width: 34px;
    max-height: 34px;
    margin-left: 4px; }
.slider-news__item .item .newshero-item .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 4px;
  font-size: 16px;
  margin-top: 12px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .slider-news__item .item .newshero-item .title:hover {
    color: #ff6700; }
.slider-news__item .item .newshero-item .date {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 14px; }
  .slider-news__item .item .newshero-item .date svg {
    margin-left: 4px; }

.add-photos__item {
  background: #FFFAF7; }
  .add-photos__item .rowbox {
    display: grid;
    grid-template-columns: 3fr 310px 310px;
    gap: 16px; }
    @media (max-width: 1199px) {
      .add-photos__item .rowbox {
        grid-template-columns: 3fr 280px 280px; } }
    @media (max-width: 999px) {
      .add-photos__item .rowbox {
        grid-template-columns: 1fr;
        gap: 0px; } }
  .add-photos__item .newshero-item {
    position: relative;
    margin-top: 24px; }
    @media (max-width: 999px) {
      .add-photos__item .newshero-item {
        margin-top: 12px; } }
    .add-photos__item .newshero-item .photo {
      display: block;
      position: relative;
      height: 421px;
      border-radius: 12px;
      overflow: hidden; }
      .add-photos__item .newshero-item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .add-photos__item .newshero-item .photo .contant {
        background: none;
        bottom: 118px;
        padding: 24px;
        text-align: center; }
        .add-photos__item .newshero-item .photo .contant .title {
          text-align: center;
          font-size: 32px; }
          @media (max-width: 999px) {
            .add-photos__item .newshero-item .photo .contant .title {
              font-size: 26px; } }
        .add-photos__item .newshero-item .photo .contant img {
          width: 126px;
          height: 126px;
          object-fit: inherit; }
      .add-photos__item .newshero-item .photo .sponsored {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 0px;
        left: 0px;
        color: #fff;
        width: 100%;
        padding: 16px; }
        .add-photos__item .newshero-item .photo .sponsored img {
          width: 40px;
          height: 40px;
          object-fit: inherit;
          margin-left: 4px; }
  .add-photos__item .item {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid #ff760b38;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin-top: 24px; }
    @media (max-width: 767px) {
      .add-photos__item .item {
        padding: 12px; } }
    .add-photos__item .item:hover .photo img {
      -webkit-transform: scale(1.15);
      -moz-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15); }
    .add-photos__item .item .photo {
      position: relative;
      width: 100%;
      height: 220px;
      border-radius: 12px;
      overflow: hidden; }
      .add-photos__item .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .add-photos__item .item .title {
      font-size: 18px;
      margin-top: 12px;
      text-align: center; }
    .add-photos__item .item p {
      text-align: center;
      margin-top: 4px; }
    .add-photos__item .item .number {
      display: block;
      font-size: 26px;
      font-weight: 600;
      color: #ff6700;
      margin-top: 12px; }
    .add-photos__item .item .bottom {
      width: 100%;
      margin-top: 24px;
      border: 1px solid #ff760b38;
      color: #000; }
      .add-photos__item .item .bottom:hover {
        color: #fff; }

.vote-btn:active {
  transform: translateY(1px); }

.vote-btn.voted {
  position: relative;
  background: #f8640036;
  color: #ff6700;
  cursor: default;
  pointer-events: none; }

.vote-btn.voted::before {
  content: "✓ ";
  font-weight: bold;
  margin-left: 6px; }

.vote-btn .text {
  display: inline-block;
  transition: opacity .18s, transform .18s; }

.vote-btn.voting .text {
  opacity: 0.3;
  transform: translateY(-4px); }

.complaints-suggestions {
  background: #FFFAF7; }
  .complaints-suggestions .inner {
    display: grid;
    grid-template-columns: 450px 1fr;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #ff760b38;
    overflow: hidden; }
    @media (max-width: 1199px) {
      .complaints-suggestions .inner {
        grid-template-columns: 250px 1fr; } }
    @media (max-width: 999px) {
      .complaints-suggestions .inner {
        grid-template-columns: 1fr; } }
  .complaints-suggestions .photo {
    background: #03045e;
    overflow: hidden; }
    @media (max-width: 999px) {
      .complaints-suggestions .photo {
        display: none; } }
    .complaints-suggestions .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .complaints-suggestions p {
    margin-top: 8px; }
  @media (max-width: 999px) {
    .complaints-suggestions .p-5 {
      padding: 24px !important; } }
  .complaints-suggestions .field {
    position: relative;
    margin-top: 24px; }
    .complaints-suggestions .field .icon {
      position: absolute;
      left: 12px;
      top: 8px; }
      .complaints-suggestions .field .icon svg {
        width: 24px;
        height: 24px; }
    .complaints-suggestions .field .forlabel {
      margin-bottom: 8px; }
      .complaints-suggestions .field .forlabel small {
        color: #BD3C2F; }
    .complaints-suggestions .field .custom-file-input {
      display: none; }
    .complaints-suggestions .field .custom-file-label,
    .complaints-suggestions .field .custom-file-input {
      right: 12px;
      width: 100%;
      outline: 0px !important;
      height: 48px;
      border: 1px solid #dee2e6;
      background: #fff;
      -webkit-border-radius: 0.375rem;
      border-radius: 0.375rem;
      background-clip: padding-box;
      color: #000; }
    .complaints-suggestions .field .custom-file-input:focus ~ .custom-file-label {
      border-color: #ff6700 !important; }
    .complaints-suggestions .field .custom-file-label {
      display: flex;
      align-items: center;
      margin: 0px;
      padding-right: 122px;
      box-shadow: none !important;
      outline: 0 !important;
      outline-style: none !important;
      font-weight: 300;
      color: #3B3B3B;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .complaints-suggestions .field .custom-file-input:lang(en) ~ .custom-file-label::after {
      content: "تحميل المرفقات";
      position: absolute;
      right: .75rem;
      background: none;
      height: 48px;
      border: 0px;
      padding: 0px;
      display: flex;
      align-items: center; }
  .complaints-suggestions .bottom {
    min-width: 180px;
    height: 48px;
    background: #ff6700;
    color: #fff; }
    .complaints-suggestions .bottom:hover {
      background: #03045e;
      border: 1px solid #03045e; }

.channel__item {
  background: #FFFAF7; }
  .channel__item .rowbox {
    display: grid;
    grid-template-columns: 3fr 310px 310px;
    gap: 16px;
    margin-top: 12px; }
    @media (max-width: 1199px) {
      .channel__item .rowbox {
        grid-template-columns: 3fr 280px 280px; } }
    @media (max-width: 999px) {
      .channel__item .rowbox {
        grid-template-columns: 1fr;
        gap: 0px; } }
  .channel__item .newshero-item {
    position: relative;
    margin-top: 16px; }
    @media (max-width: 999px) {
      .channel__item .newshero-item {
        margin-top: 12px; } }
    .channel__item .newshero-item .photo {
      display: block;
      position: relative;
      height: 436px;
      border-radius: 12px;
      overflow: hidden; }
      @media (max-width: 999px) {
        .channel__item .newshero-item .photo {
          height: 300px; } }
      .channel__item .newshero-item .photo:hover img {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15); }
      .channel__item .newshero-item .photo i.icon-play {
        position: absolute;
        top: 50%;
        right: 0px;
        left: 0px;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px auto;
        z-index: 1;
        background: #ff67006e;
        border-radius: 12px;
        margin-top: -32px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .channel__item .newshero-item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
  @media (max-width: 999px) {
    .channel__item .item {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 550px) {
    .channel__item .item {
      gap: 0px;
      grid-template-columns: repeat(1, 1fr); } }
  .channel__item .item .newshero-item .photo {
    height: 210px; }

.dawawis__edit,
.dawawis__add {
  background: #FFFAF7; }
  .dawawis__edit::before,
  .dawawis__add::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 140px;
    height: 100%;
    background: url(../images/bg2.png) no-repeat center center/cover;
    z-index: 2; }
    @media (max-width: 999px) {
      .dawawis__edit::before,
      .dawawis__add::before {
        width: 100px; } }
  .dawawis__edit .container,
  .dawawis__add .container {
    z-index: 10; }
  .dawawis__edit .note,
  .dawawis__add .note {
    font-weight: 300;
    margin-top: 24px; }
    .dawawis__edit .note span,
    .dawawis__add .note span {
      display: block;
      color: #ff6700;
      font-size: 20px; }
  .dawawis__edit .field,
  .dawawis__add .field {
    position: relative;
    margin-top: 24px; }
    .dawawis__edit .field .icon,
    .dawawis__add .field .icon {
      position: absolute;
      left: 12px;
      top: 8px; }
      .dawawis__edit .field .icon svg,
      .dawawis__add .field .icon svg {
        width: 24px;
        height: 24px; }
    .dawawis__edit .field .forlabel,
    .dawawis__add .field .forlabel {
      margin-bottom: 8px; }
      .dawawis__edit .field .forlabel small,
      .dawawis__add .field .forlabel small {
        color: #BD3C2F; }
    .dawawis__edit .field .upload-btn,
    .dawawis__add .field .upload-btn {
      color: #000;
      font-size: 20px;
      cursor: pointer;
      text-align: center; }
    .dawawis__edit .field div.form-control,
    .dawawis__add .field div.form-control {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 220px;
      overflow: hidden; }
    .dawawis__edit .field input[type="file"],
    .dawawis__add .field input[type="file"] {
      display: none; }
    .dawawis__edit .field .file-info,
    .dawawis__add .field .file-info {
      text-align: center; }
      .dawawis__edit .field .file-info svg,
      .dawawis__add .field .file-info svg {
        display: block;
        width: 40px;
        height: 40px;
        margin: 0px auto 12px auto; }
    .dawawis__edit .field .file-name,
    .dawawis__add .field .file-name {
      display: block;
      margin-top: 4px; }
    .dawawis__edit .field .remove-file,
    .dawawis__add .field .remove-file {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      left: 16px;
      top: 16px;
      background: #BD3C2F;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      cursor: pointer;
      z-index: 2; }
    .dawawis__edit .field img.preview,
    .dawawis__add .field img.preview {
      position: absolute;
      left: 0px;
      top: 0px;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top; }
  .dawawis__edit .bottom,
  .dawawis__add .bottom {
    min-width: 180px;
    height: 48px;
    background: #ff6700;
    color: #fff; }
    .dawawis__edit .bottom:hover,
    .dawawis__add .bottom:hover {
      background: #03045e;
      border: 1px solid #03045e; }

.dawawis__removal {
  background: #FFFAF7;
  min-height: 700px; }
  @media (max-width: 999px) {
    .dawawis__removal {
      min-height: inherit; } }
  .dawawis__removal::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 140px;
    height: 100%;
    background: url(../images/bg2.png) no-repeat center center/cover;
    z-index: 2; }
    @media (max-width: 999px) {
      .dawawis__removal::before {
        width: 100px; } }
  .dawawis__removal .container {
    z-index: 10; }
  .dawawis__removal .color {
    color: #ff6700; }
  .dawawis__removal .rowbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
    z-index: 3; }
    @media (max-width: 999px) {
      .dawawis__removal .rowbox {
        grid-template-columns: 1fr;
        gap: 12px; } }
  .dawawis__removal .item {
    margin-top: 24px; }
    .dawawis__removal .item .text {
      margin-top: 24px; }
      .dawawis__removal .item .text li {
        margin-top: 12px;
        font-size: 18px;
        color: #000; }
    .dawawis__removal .item .field {
      position: relative; }
      .dawawis__removal .item .field .forlabel {
        margin-bottom: 8px; }
        .dawawis__removal .item .field .forlabel small {
          color: #BD3C2F; }
    .dawawis__removal .item .bottom {
      min-width: 100%;
      height: 48px;
      background: #ff6700;
      color: #fff;
      margin-top: 24px; }
      .dawawis__removal .item .bottom:hover {
        background: #03045e;
        border: 1px solid #03045e; }

.occasions__item {
  background: #fff; }
  .occasions__item .slider-occasions {
    position: relative;
    direction: ltr;
    margin-top: 24px; }
    .occasions__item .slider-occasions .slick-list {
      position: relative;
      display: block;
      overflow: hidden;
      outline: none;
      margin: 0px -8px; }
      .occasions__item .slider-occasions .slick-list .slick-track {
        position: relative;
        top: 0;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
        overflow: hidden; }
        .occasions__item .slider-occasions .slick-list .slick-track:after, .occasions__item .slider-occasions .slick-list .slick-track:before {
          display: table;
          content: ''; }
    .occasions__item .slider-occasions .slick-prev,
    .occasions__item .slider-occasions .slick-next {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      cursor: pointer;
      border: 0px;
      padding: 0px;
      width: 30px;
      height: 30px;
      outline: none;
      font-size: 0px;
      background: none;
      border-radius: 50%;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .occasions__item .slider-occasions .slick-prev svg,
      .occasions__item .slider-occasions .slick-next svg {
        width: 18px;
        height: 18px;
        fill: #0095DA;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .occasions__item .slider-occasions .slick-next {
      right: 0px; }
    .occasions__item .slider-occasions .slick-prev {
      left: 0px; }
    .occasions__item .slider-occasions .slick-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 24px; }
      .occasions__item .slider-occasions .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0px 2px;
        padding: 0px;
        cursor: pointer;
        width: 14px;
        height: 4px;
        border-radius: 5px; }
        .occasions__item .slider-occasions .slick-dots li button {
          font-size: 0px;
          line-height: 0px;
          display: block;
          width: 100%;
          height: 100%;
          border: 0px;
          outline: none;
          background: #cdc8c5;
          padding: 0px; }
      .occasions__item .slider-occasions .slick-dots li.slick-active {
        background: #ff6700; }
        .occasions__item .slider-occasions .slick-dots li.slick-active button {
          background: none; }
    @media (max-width: 999px) {
      .occasions__item .slider-occasions {
        margin-top: 12px; } }
    .occasions__item .slider-occasions .slick-prev,
    .occasions__item .slider-occasions .slick-next {
      display: none !important; }
  .occasions__item .item {
    direction: rtl;
    display: inline-block;
    align-items: center;
    margin: 0px 8px;
    padding: 12px;
    background: #FFFAF7;
    border-radius: 12px;
    border: 1px solid #ff760b38;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .occasions__item .item:hover {
      border: 1px solid #ff6700; }
      .occasions__item .item:hover .photo::after {
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 106%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 106%, 0); }
      .occasions__item .item:hover .photo img {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15); }
    .occasions__item .item .photo {
      display: block;
      position: relative;
      background: #ff6700;
      width: 100%;
      height: 240px;
      overflow: hidden;
      border-radius: 12px; }
      .occasions__item .item .photo::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
        content: '';
        z-index: 1;
        -webkit-transition: -webkit-transform .6s;
        transition: -webkit-transform .6s;
        -o-transition: transform .6s;
        transition: transform .6s;
        transition: transform .6s, -webkit-transform .6s;
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -106%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -106%, 0); }
        @media (max-width: 999px) {
          .occasions__item .item .photo::after {
            display: none; } }
      .occasions__item .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .occasions__item .item .title {
      display: block;
      font-size: 18px;
      font-weight: 500;
      text-align: center;
      margin-top: 12px; }
    .occasions__item .item .date {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #646363;
      margin-top: 8px;
      font-size: 14px; }
      .occasions__item .item .date svg {
        margin-left: 4px; }
  .occasions__item.custitems .rowbox, .occasions__item.samemonth .rowbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px; }
    @media (max-width: 999px) {
      .occasions__item.custitems .rowbox, .occasions__item.samemonth .rowbox {
        grid-template-columns: 1fr 1fr;
        margin-top: 12px; } }
    @media (max-width: 767px) {
      .occasions__item.custitems .rowbox, .occasions__item.samemonth .rowbox {
        grid-template-columns: 1fr; } }
  .occasions__item.custitems .item, .occasions__item.samemonth .item {
    margin: 0px; }
  .occasions__item.samemonth .title span {
    color: #ff6700; }
  .occasions__item.samemonth .rowbox {
    grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 999px) {
      .occasions__item.samemonth .rowbox {
        grid-template-columns: 1fr 1fr; } }
    @media (max-width: 767px) {
      .occasions__item.samemonth .rowbox {
        grid-template-columns: 1fr; } }

.occasions__calendar {
  background: #FFFAF7; }
  .occasions__calendar .calendar {
    direction: ltr;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    margin-top: 24px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
  .occasions__calendar .minheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #03045e;
    color: #fff;
    padding: 12px; }
  .occasions__calendar #monthYear {
    color: #fff;
    font-size: 20px; }
  .occasions__calendar .minheader button {
    background: #ffffff33;
    border: none;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    cursor: pointer; }
  .occasions__calendar .scroll {
    width: 100%; }
    @media (max-width: 999px) {
      .occasions__calendar .scroll {
        overflow-x: scroll; } }
  .occasions__calendar table {
    width: 100%;
    border-collapse: collapse;
    text-align: center; }
  .occasions__calendar th {
    background: #03045e14;
    padding: 12px;
    font-weight: 400; }
  .occasions__calendar td {
    width: 14.2%;
    height: 100px;
    border: 1px solid #eee;
    vertical-align: top;
    position: relative;
    padding: 5px; }
  .occasions__calendar .day-number {
    font-weight: bold;
    margin-bottom: 5px; }
  .occasions__calendar .event {
    display: block;
    background: #ff6700;
    color: #fff;
    padding: 2px 5px;
    margin: 2px 0;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center; }

.application-item {
  display: flex;
  align-items: center;
  min-height: 400px;
  background: #03045e url(../images/application.png) no-repeat center center/cover; }
  @media (max-width: 999px) {
    .application-item {
      padding: 48px 0px !important;
      min-height: inherit; } }
  .application-item .download {
    text-align: center;
    max-width: 50%; }
    @media (max-width: 999px) {
      .application-item .download {
        max-width: 100%; } }
    .application-item .download .title {
      text-align: center;
      color: #fff;
      margin-bottom: 12px; }
      .application-item .download .title span {
        display: block;
        margin-top: 12px;
        color: #ff6700;
        font-size: 18px; }
    .application-item .download .app-icons {
      display: flex;
      align-items: center;
      justify-content: center; }
      .application-item .download .app-icons a {
        margin: 0px 4px; }
        .application-item .download .app-icons a img {
          min-width: 117px;
          max-width: 120px;
          height: 38px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
  .application-item .photo {
    position: absolute;
    top: -107px;
    left: 0px;
    max-width: 50%; }
    @media (max-width: 999px) {
      .application-item .photo {
        display: none; } }
    .application-item .photo img {
      max-width: 100%; }

.diwaniya__item {
  background: #FFFAF7; }
  .diwaniya__item .rowbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px; }
    @media (max-width: 999px) {
      .diwaniya__item .rowbox {
        grid-template-columns: 1fr 1fr;
        margin-top: 12px; } }
    @media (max-width: 767px) {
      .diwaniya__item .rowbox {
        grid-template-columns: 1fr; } }
  .diwaniya__item .item {
    position: relative;
    border-radius: 10px;
    padding: 16px;
    padding-right: 32px;
    background: #fff;
    border: 1px solid #ff760b38;
    overflow: hidden;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .diwaniya__item .item:hover {
      border: 1px solid #ff6700; }
    .diwaniya__item .item::before {
      content: "";
      position: absolute;
      right: 0px;
      top: 0px;
      width: 22px;
      height: 100%;
      background: #ff6700 url(../images/bg.png) no-repeat center center/cover; }
    .diwaniya__item .item .title {
      font-size: 18px;
      font-weight: 500; }
    .diwaniya__item .item p {
      margin-top: 8px; }
    .diwaniya__item .item .date {
      display: flex;
      align-items: center;
      color: #646363;
      margin-top: 8px;
      font-size: 14px; }
      .diwaniya__item .item .date svg {
        margin-left: 4px; }

.offers-item .rowbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px; }
  @media (max-width: 999px) {
    .offers-item .rowbox {
      grid-template-columns: 1fr 1fr;
      margin-top: 12px; } }
  @media (max-width: 767px) {
    .offers-item .rowbox {
      grid-template-columns: 1fr; } }
.offers-item .item {
  height: 460px;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden; }
  @media (max-width: 999px) {
    .offers-item .item {
      height: 300px; } }
  .offers-item .item img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.modal-dialog {
  max-width: 850px; }
  .modal-dialog.modal-cus {
    max-width: 550px; }
  .modal-dialog .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .modal-dialog .modal-header .btn-close {
      margin: 0px;
      padding: 0px;
      font-size: 20px; }
  .modal-dialog .note {
    font-weight: 300;
    margin-bottom: 24px; }
    .modal-dialog .note span {
      display: block;
      color: #ff6700;
      font-size: 20px; }
  .modal-dialog .field {
    position: relative;
    width: 100%;
    margin-bottom: 16px; }
    .modal-dialog .field:last-child {
      margin: 0px; }
    .modal-dialog .field .icon {
      position: absolute;
      left: 12px;
      top: 8px; }
      .modal-dialog .field .icon svg {
        width: 24px;
        height: 24px; }
    .modal-dialog .field .custom-file-input {
      display: none; }
    .modal-dialog .field .custom-file-label,
    .modal-dialog .field .custom-file-input {
      right: 12px;
      width: 100%;
      outline: 0px !important;
      height: 48px;
      border: 1px solid #dee2e6;
      background: #fff;
      -webkit-border-radius: 0.375rem;
      border-radius: 0.375rem;
      background-clip: padding-box;
      color: #000; }
    .modal-dialog .field .custom-file-input:focus ~ .custom-file-label {
      border-color: #ff6700 !important; }
    .modal-dialog .field .custom-file-label {
      display: flex;
      align-items: center;
      margin: 0px;
      padding-right: 108px;
      box-shadow: none !important;
      outline: 0 !important;
      outline-style: none !important;
      font-weight: 300;
      color: #3B3B3B;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .modal-dialog .field .custom-file-input:lang(en) ~ .custom-file-label::after {
      content: "تحميل صورة";
      position: absolute;
      right: .75rem;
      background: none;
      height: 48px;
      border: 0px;
      padding: 0px;
      display: flex;
      align-items: center; }
  .modal-dialog .modal-footer {
    justify-content: center; }
    .modal-dialog .modal-footer .bottom {
      margin: 0px;
      min-width: 100px; }
    .modal-dialog .modal-footer .btncus {
      margin-left: 12px;
      background: #ff6700;
      color: #fff; }
  .modal-dialog .photo {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden; }
    @media (max-width: 999px) {
      .modal-dialog .photo {
        height: 300px; } }
    .modal-dialog .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .modal-dialog .date {
    display: flex;
    align-items: center;
    color: #646363;
    margin-top: 12px;
    font-size: 14px; }
    .modal-dialog .date svg {
      margin-left: 4px; }

.capital-governorate,
.offers-news {
  overflow: inherit; }
  .capital-governorate .container,
  .offers-news .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
    align-items: flex-start; }
    @media (max-width: 999px) {
      .capital-governorate .container,
      .offers-news .container {
        grid-template-columns: 1fr;
        gap: 12px; } }
  .capital-governorate .item.bg,
  .offers-news .item.bg {
    position: sticky;
    top: 100px;
    background: #FFFAF7;
    padding: 24px;
    border-radius: 12px; }
  .capital-governorate .item .minhead .title,
  .offers-news .item .minhead .title {
    margin-top: 12px; }
  .capital-governorate .item .date,
  .offers-news .item .date {
    display: flex;
    align-items: center;
    color: #646363;
    margin-top: 8px;
    font-size: 14px; }
    .capital-governorate .item .date svg,
    .offers-news .item .date svg {
      margin-left: 4px; }
  .capital-governorate .item .icon,
  .offers-news .item .icon {
    display: flex;
    align-items: center; }
    .capital-governorate .item .icon img,
    .offers-news .item .icon img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-left: 8px; }
    .capital-governorate .item .icon p,
    .offers-news .item .icon p {
      color: #ff6700; }
  .capital-governorate .item nav a,
  .offers-news .item nav a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ff760b38;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin-top: 12px; }
    .capital-governorate .item nav a:hover,
    .offers-news .item nav a:hover {
      border: 1px solid #ff6700; }
    .capital-governorate .item nav a img,
    .offers-news .item nav a img {
      width: 70px;
      height: 70px;
      margin-left: 8px; }
    .capital-governorate .item nav a p,
    .offers-news .item nav a p {
      color: #000; }
  .capital-governorate .item .photo,
  .offers-news .item .photo {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    margin-top: 24px;
    overflow: hidden; }
    @media (max-width: 999px) {
      .capital-governorate .item .photo,
      .offers-news .item .photo {
        height: 300px; } }
    .capital-governorate .item .photo img,
    .offers-news .item .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .capital-governorate .bgnews,
  .offers-news .bgnews {
    background: #FFFAF7;
    padding: 24px;
    border-radius: 12px; }
    @media (max-width: 999px) {
      .capital-governorate .bgnews,
      .offers-news .bgnews {
        padding: 12px; } }
    .capital-governorate .bgnews nav a,
    .offers-news .bgnews nav a {
      border-radius: 0px;
      padding: 0px;
      background: none;
      padding-bottom: 12px;
      border: 0px !important;
      border-bottom: 1px solid #ff760b38 !important; }
      .capital-governorate .bgnews nav a:hover p,
      .offers-news .bgnews nav a:hover p {
        color: #ff6700; }
      .capital-governorate .bgnews nav a:last-child,
      .offers-news .bgnews nav a:last-child {
        padding: 0px;
        border: 0px !important; }
      .capital-governorate .bgnews nav a img,
      .offers-news .bgnews nav a img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 12px;
        margin-left: 12px; }
        @media (max-width: 999px) {
          .capital-governorate .bgnews nav a img,
          .offers-news .bgnews nav a img {
            width: 100px;
            height: 100px; } }
      .capital-governorate .bgnews nav a p,
      .offers-news .bgnews nav a p {
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
  .capital-governorate .mostpopular,
  .offers-news .mostpopular {
    margin-top: 24px; }
    @media (max-width: 999px) {
      .capital-governorate .mostpopular,
      .offers-news .mostpopular {
        margin-top: 12px; } }
    .capital-governorate .mostpopular .numbered-news,
    .offers-news .mostpopular .numbered-news {
      margin: 0px;
      padding: 0px; }
      .capital-governorate .mostpopular .numbered-news li,
      .offers-news .mostpopular .numbered-news li {
        position: relative;
        counter-increment: news-counter;
        padding: 16px 78px 16px 0px;
        border-bottom: 1px solid #ff760b38; }
        .capital-governorate .mostpopular .numbered-news li:hover .title,
        .offers-news .mostpopular .numbered-news li:hover .title {
          color: #ff6700; }
        .capital-governorate .mostpopular .numbered-news li:last-child,
        .offers-news .mostpopular .numbered-news li:last-child {
          border-bottom: 0px;
          padding-bottom: 0px; }
        @media (max-width: 999px) {
          .capital-governorate .mostpopular .numbered-news li,
          .offers-news .mostpopular .numbered-news li {
            min-width: 100%;
            max-width: 100%; } }
        .capital-governorate .mostpopular .numbered-news li::before,
        .offers-news .mostpopular .numbered-news li::before {
          content: counter(news-counter,decimal-leading-zero) "";
          position: absolute;
          top: 30px;
          right: 0px;
          font-size: 50px;
          font-weight: 400;
          color: #ff6700; }
        .capital-governorate .mostpopular .numbered-news li .title,
        .offers-news .mostpopular .numbered-news li .title {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          font-size: 18px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
          @media (max-width: 999px) {
            .capital-governorate .mostpopular .numbered-news li .title,
            .offers-news .mostpopular .numbered-news li .title {
              -webkit-line-clamp: 3; } }

.offers-news .item:last-child {
  position: sticky;
  top: 100px; }

.newscapital__item .rowbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; }
  @media (max-width: 999px) {
    .newscapital__item .rowbox {
      grid-template-columns: 1fr 1fr;
      gap: 0px; } }
  @media (max-width: 767px) {
    .newscapital__item .rowbox {
      grid-template-columns: 1fr; } }
.newscapital__item .item {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  border: 1px solid #ff760b38;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  margin-top: 24px; }
  @media (max-width: 999px) {
    .newscapital__item .item {
      padding: 12px;
      margin-top: 12px; } }
  .newscapital__item .item:hover {
    border: 1px solid #ff6700; }
    .newscapital__item .item:hover .photo::after {
      -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 106%, 0);
      transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 106%, 0); }
    .newscapital__item .item:hover .photo img {
      -webkit-transform: scale(1.15);
      -moz-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15); }
  .newscapital__item .item .photo {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden; }
    .newscapital__item .item .photo::after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.5);
      content: '';
      z-index: 1;
      -webkit-transition: -webkit-transform .6s;
      transition: -webkit-transform .6s;
      -o-transition: transform .6s;
      transition: transform .6s;
      transition: transform .6s, -webkit-transform .6s;
      -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -106%, 0);
      transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -106%, 0); }
      @media (max-width: 999px) {
        .newscapital__item .item .photo::after {
          display: none; } }
    .newscapital__item .item .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  .newscapital__item .item .title {
    display: block;
    font-size: 18px;
    margin-top: 12px;
    text-align: center;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .newscapital__item .item .title:hover {
      color: #ff6700; }
  .newscapital__item .item .date {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #646363;
    margin-top: 8px;
    font-size: 14px; }
    .newscapital__item .item .date svg {
      margin-left: 4px; }

.occasions__details .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; }
  @media (max-width: 999px) {
    .occasions__details .container {
      grid-template-columns: 1fr;
      gap: 0px; } }
.occasions__details .item {
  position: relative;
  border-radius: 12px;
  overflow: hidden; }
  @media (max-width: 999px) {
    .occasions__details .item {
      margin-bottom: 12px; }
      .occasions__details .item:last-child {
        margin: 0px; } }
  .occasions__details .item .textnew {
    position: absolute;
    top: -68px;
    left: -22px;
    width: 100px;
    height: 160px;
    background: #1DBD08;
    -webkit-transform: rotate(50deg);
    -moz-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    transform: rotate(50deg); }
    .occasions__details .item .textnew p {
      color: #fff;
      -webkit-transform: rotate(-50deg);
      -moz-transform: rotate(-50deg);
      -ms-transform: rotate(-50deg);
      -o-transform: rotate(-50deg);
      transform: rotate(-50deg);
      margin: 74px 0px 0px 40px;
      font-size: 14px;
      text-align: center;
      line-height: 18px; }
  .occasions__details .item img {
    width: 100%;
    height: 500px;
    object-fit: cover; }
    @media (max-width: 999px) {
      .occasions__details .item img {
        height: 300px; } }
  .occasions__details .item .minhead {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 12px; }
  .occasions__details .item .social a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #ff760b38;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .occasions__details .item .social a:hover {
      border: 1px solid #ff6700; }
  .occasions__details .item p {
    line-height: 32px;
    margin-top: 16px; }
    .occasions__details .item p span {
      color: #ff6700; }
  .occasions__details .item .contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .occasions__details .item .contacts li {
      display: flex;
      align-items: center;
      margin: 24px 0px 0px 48px; }
      .occasions__details .item .contacts li:last-child {
        margin-left: 0px; }
      .occasions__details .item .contacts li svg,
      .occasions__details .item .contacts li img {
        fill: #ff6700;
        min-width: 18px;
        min-height: 18px;
        margin-left: 4px; }

.itemsearch {
  position: relative;
  margin-top: -50px;
  padding: 0px 12px 20px 12px; }
  @media (max-width: 999px) {
    .itemsearch {
      margin-top: 24px; } }
  .itemsearch .inner {
    margin: 0px auto;
    max-width: 1280px;
    background: #fff;
    padding: 24px 32px;
    border-radius: 60px;
    box-shadow: 0px 0px 14px #00000012;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px; }
    @media (max-width: 999px) {
      .itemsearch .inner {
        grid-template-columns: 1fr;
        gap: 0px;
        max-width: 720px;
        padding: 24px;
        border-radius: 0.375rem; } }
    .itemsearch .inner .title {
      display: none; }
      @media (max-width: 999px) {
        .itemsearch .inner .title {
          display: block; } }
    .itemsearch .inner .field {
      position: relative;
      width: 100%; }
      @media (max-width: 999px) {
        .itemsearch .inner .field {
          margin-top: 16px; } }
      .itemsearch .inner .field .bottom {
        width: 100%;
        background: #ff6700;
        color: #fff;
        height: 48px;
        border-radius: 0.375rem; }
        .itemsearch .inner .field .bottom:hover {
          background: #03045e;
          border: 1px solid #03045e; }
        .itemsearch .inner .field .bottom svg {
          fill: #fff;
          margin-left: 4px;
          min-width: 18px;
          max-width: 18px; }
      .itemsearch .inner .field .icon {
        position: absolute;
        left: 12px;
        top: 8px; }
        .itemsearch .inner .field .icon svg {
          width: 18px;
          height: 18px; }

.consolation__item {
  padding-top: 28px; }
  @media (max-width: 999px) {
    .consolation__item {
      padding-top: 24px; } }
  .consolation__item .slogan {
    color: #ff6700;
    margin-bottom: 8px; }
    .consolation__item .slogan img {
      width: 30px;
      height: 30px;
      margin-left: 4px; }
  .consolation__item .item {
    margin-top: 24px;
    border-radius: 12px;
    border: 1px solid #ff760b38;
    overflow: hidden; }
    .consolation__item .item .minhead {
      justify-content: flex-start;
      background: #03045e;
      padding: 12px; }
      .consolation__item .item .minhead img {
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-left: 8px; }
      .consolation__item .item .minhead p {
        color: #fff; }
    .consolation__item .item .list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px;
      border-bottom: 1px solid #ff760b38;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .consolation__item .item .list a:hover {
        background: #FFFAF7; }
      .consolation__item .item .list a:last-child {
        border: 0px; }
      .consolation__item .item .list a .number {
        display: flex;
        align-items: center;
        font-size: 18px; }
        .consolation__item .item .list a .number svg {
          margin-right: 4px;
          min-width: 20px;
          max-width: 20px; }

.consolation__inner .slogan {
  color: #ff6700;
  margin-bottom: 8px; }
  .consolation__inner .slogan img {
    width: 30px;
    height: 30px;
    margin-left: 4px; }
.consolation__inner .item {
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid #ff760b38;
  overflow: hidden; }
  .consolation__inner .item .minhead {
    justify-content: flex-start;
    background: #03045e;
    padding: 12px; }
    .consolation__inner .item .minhead img {
      min-width: 40px;
      max-width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-left: 8px; }
    .consolation__inner .item .minhead p {
      color: #fff; }
  .consolation__inner .item .details {
    display: flex;
    align-items: center; }
    @media (max-width: 999px) {
      .consolation__inner .item .details {
        display: block; } }
    .consolation__inner .item .details .p-4:last-child {
      border-right: 1px solid #ff760b38;
      min-width: 440px; }
      @media (max-width: 999px) {
        .consolation__inner .item .details .p-4:last-child {
          border: 0px;
          border-top: 1px solid #ff760b38;
          min-width: 100%; } }
    .consolation__inner .item .details .p-4 .title {
      font-size: 20px; }
    .consolation__inner .item .details .p-4 .map {
      display: flex;
      margin-top: 12px; }
      .consolation__inner .item .details .p-4 .map svg {
        margin-left: 4px; }
    .consolation__inner .item .details .list {
      margin-top: 12px; }
      .consolation__inner .item .details .list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 16px;
        color: #000;
        font-size: 18px; }
        .consolation__inner .item .details .list li .icons {
          display: flex; }
          .consolation__inner .item .details .list li .icons a {
            cursor: pointer;
            margin-left: 16px; }
            @media (max-width: 999px) {
              .consolation__inner .item .details .list li .icons a {
                margin-left: 8px; } }
            .consolation__inner .item .details .list li .icons a:last-child {
              margin-left: 0px; }
.consolation__inner .comments {
  margin-top: 48px; }
  @media (max-width: 999px) {
    .consolation__inner .comments {
      margin-top: 24px; } }
  .consolation__inner .comments .innerlist {
    display: flex;
    margin-top: 24px;
    padding: 24px;
    background: #FFFAF7;
    border-radius: 12px;
    border: 1px solid #ff760b38; }
    @media (max-width: 380px) {
      .consolation__inner .comments .innerlist {
        display: block; } }
    .consolation__inner .comments .innerlist .photo {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 104px;
      max-width: 104px;
      height: 104px;
      border-radius: 50%;
      background: #fff;
      margin-left: 12px; }
      @media (max-width: 380px) {
        .consolation__inner .comments .innerlist .photo {
          margin: 0px;
          margin-bottom: 12px; } }
      .consolation__inner .comments .innerlist .photo svg,
      .consolation__inner .comments .innerlist .photo img {
        max-width: 60px; }
    .consolation__inner .comments .innerlist .title {
      font-size: 20px;
      font-weight: 400; }
    .consolation__inner .comments .innerlist .date {
      display: flex;
      align-items: center;
      color: #646363;
      margin-top: 8px;
      font-size: 14px; }
      .consolation__inner .comments .innerlist .date svg {
        margin-left: 4px; }
    .consolation__inner .comments .innerlist p {
      margin-top: 8px; }

.dawawis__item .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
  align-items: flex-start; }
  @media (max-width: 999px) {
    .dawawis__item .container {
      grid-template-columns: 1fr;
      gap: 12px; } }
.dawawis__item .item .photo {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden; }
  @media (max-width: 999px) {
    .dawawis__item .item .photo {
      height: 300px; } }
  .dawawis__item .item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
.dawawis__item .sidesearch {
  background: #FFFAF7;
  padding: 24px;
  border-radius: 12px; }
  @media (max-width: 999px) {
    .dawawis__item .sidesearch {
      order: -1; } }
  .dawawis__item .sidesearch .field {
    position: relative;
    width: 100%;
    margin-top: 16px; }
    .dawawis__item .sidesearch .field .bottom {
      width: 100%;
      background: #ff6700;
      color: #fff;
      height: 48px;
      border-radius: 0.375rem; }
      .dawawis__item .sidesearch .field .bottom:hover {
        background: #03045e;
        border: 1px solid #03045e; }
      .dawawis__item .sidesearch .field .bottom svg {
        fill: #fff;
        margin-left: 4px;
        min-width: 18px;
        max-width: 18px; }

.dawawis__inner::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 140px;
  height: 100%;
  background: url(../images/bg2.png) no-repeat center center/cover;
  z-index: 2; }
  @media (max-width: 999px) {
    .dawawis__inner::before {
      width: 100px; } }
.dawawis__inner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  z-index: 3; }
  @media (max-width: 999px) {
    .dawawis__inner .container {
      grid-template-columns: 1fr;
      gap: 12px; } }
@media (max-width: 999px) {
  .dawawis__inner .item {
    margin-bottom: 24px; }
    .dawawis__inner .item:last-child {
      margin: 0px; } }
.dawawis__inner .icon {
  display: flex;
  align-items: center; }
  .dawawis__inner .icon img {
    width: 50px;
    height: 50px;
    margin-left: 8px; }
  .dawawis__inner .icon p {
    color: #ff6700; }
.dawawis__inner .regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px; }
  @media (max-width: 767px) {
    .dawawis__inner .regions {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 550px) {
    .dawawis__inner .regions {
      grid-template-columns: repeat(2, 1fr); } }
  .dawawis__inner .regions a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFAF7;
    border-radius: 12px;
    padding: 8px 12px;
    border: 1px solid #ff760b38;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .dawawis__inner .regions a:hover {
      border: 1px solid #ff6700;
      background: #ff6700;
      color: #fff; }

.dawawis__list table {
  background: none;
  margin: 0px;
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden; }
  @media (max-width: 999px) {
    .dawawis__list table {
      white-space: nowrap; } }
  .dawawis__list table tr:nth-of-type(odd) {
    background-color: #FFFAF7; }
  .dawawis__list table th {
    background: #ff6700;
    color: #fff;
    font-weight: 500;
    padding: .7rem .7rem; }
  .dawawis__list table td {
    background: none;
    padding: .7rem .7rem;
    vertical-align: middle;
    background: none;
    border-bottom: 1px solid #ff760b38; }
    .dawawis__list table td:last-child {
      width: 20%; }
      @media (max-width: 999px) {
        .dawawis__list table td:last-child {
          width: auto; } }
    .dawawis__list table td a {
      color: #000;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .dawawis__list table td a:hover {
        color: #ff6700; }

.dawawis__details {
  min-height: 700px; }
  @media (max-width: 999px) {
    .dawawis__details {
      min-height: inherit; } }
  .dawawis__details::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 140px;
    height: 100%;
    background: url(../images/bg2.png) no-repeat center center/cover;
    z-index: 2; }
    @media (max-width: 999px) {
      .dawawis__details::before {
        width: 100px; } }
  .dawawis__details .color {
    color: #ff6700; }
  .dawawis__details .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
    z-index: 3; }
    @media (max-width: 999px) {
      .dawawis__details .container {
        grid-template-columns: 1fr;
        gap: 12px; } }
  @media (max-width: 999px) {
    .dawawis__details .item {
      margin-bottom: 24px; }
      .dawawis__details .item:last-child {
        margin: 0px; } }
  .dawawis__details .item .text {
    margin-top: 24px; }
    .dawawis__details .item .text li {
      margin-top: 12px;
      font-size: 18px;
      color: #000; }
  .dawawis__details .item .photo {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden; }
    @media (max-width: 999px) {
      .dawawis__details .item .photo {
        height: 300px; } }
    .dawawis__details .item .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .dawawis__details .item .date {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-top: 8px; }
    .dawawis__details .item .date svg {
      margin-left: 4px; }
  .dawawis__details .item nav a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #ff760b38;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin-top: 12px; }
    .dawawis__details .item nav a svg {
      fill: #03045e; }
    .dawawis__details .item nav a:hover {
      border: 1px solid #ff6700; }

.channelpage__item.bgvid {
  background: #FFFAF7; }
.channelpage__item .rowbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: flex-start;
  z-index: 3;
  margin-top: 24px; }
  @media (max-width: 999px) {
    .channelpage__item .rowbox {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px; } }
  @media (max-width: 550px) {
    .channelpage__item .rowbox {
      grid-template-columns: 1fr; } }
.channelpage__item .channelhero-item {
  position: relative; }
  @media (max-width: 999px) {
    .channelpage__item .channelhero-item {
      margin-top: 12px; } }
  .channelpage__item .channelhero-item .photo {
    display: block;
    position: relative;
    height: 210px;
    border-radius: 12px;
    overflow: hidden; }
    .channelpage__item .channelhero-item .photo:hover img {
      -webkit-transform: scale(1.15);
      -moz-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15); }
    .channelpage__item .channelhero-item .photo i.icon-play {
      position: absolute;
      top: 50%;
      right: 0px;
      left: 0px;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0px auto;
      z-index: 1;
      background: #ff67006e;
      border-radius: 12px;
      margin-top: -32px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .channelpage__item .channelhero-item .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  .channelpage__item .channelhero-item .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 4px;
    font-size: 16px;
    margin-top: 12px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .channelpage__item .channelhero-item .title:hover {
      color: #ff6700; }
.channelpage__item .view-video {
  margin: 0px auto;
  max-width: 80%; }
  @media (max-width: 999px) {
    .channelpage__item .view-video {
      max-width: 100%; } }
  .channelpage__item .view-video nav a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #ff760b38;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin-top: 12px; }
    .channelpage__item .view-video nav a:hover {
      border: 1px solid #ff6700; }
  .channelpage__item .view-video .date {
    display: flex;
    align-items: center;
    color: #646363;
    margin-top: 8px;
    font-size: 14px; }
    .channelpage__item .view-video .date svg {
      margin-left: 4px; }
  .channelpage__item .view-video .item-video {
    width: 100%;
    height: 500px;
    background: #03045e;
    border-radius: 12px;
    overflow: hidden; }
    @media (max-width: 999px) {
      .channelpage__item .view-video .item-video {
        height: 320px; } }
    .channelpage__item .view-video .item-video iframe,
    .channelpage__item .view-video .item-video video {
      display: block;
      border: 0px;
      width: 100%;
      height: 100%; }

.slideroffers__item {
  background: #FFFAF7; }
  .slideroffers__item .slider-offers {
    position: relative;
    direction: ltr; }
    .slideroffers__item .slider-offers .slick-list {
      position: relative;
      display: block;
      overflow: hidden;
      outline: none;
      margin: 0px -8px; }
      .slideroffers__item .slider-offers .slick-list .slick-track {
        position: relative;
        top: 0;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
        overflow: hidden; }
        .slideroffers__item .slider-offers .slick-list .slick-track:after, .slideroffers__item .slider-offers .slick-list .slick-track:before {
          display: table;
          content: ''; }
    .slideroffers__item .slider-offers .slick-prev,
    .slideroffers__item .slider-offers .slick-next {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      cursor: pointer;
      border: 0px;
      padding: 0px;
      width: 30px;
      height: 30px;
      outline: none;
      font-size: 0px;
      background: none;
      border-radius: 50%;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .slideroffers__item .slider-offers .slick-prev svg,
      .slideroffers__item .slider-offers .slick-next svg {
        width: 18px;
        height: 18px;
        fill: #0095DA;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .slideroffers__item .slider-offers .slick-next {
      right: 0px; }
    .slideroffers__item .slider-offers .slick-prev {
      left: 0px; }
    .slideroffers__item .slider-offers .slick-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 24px; }
      .slideroffers__item .slider-offers .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0px 2px;
        padding: 0px;
        cursor: pointer;
        width: 14px;
        height: 4px;
        border-radius: 5px; }
        .slideroffers__item .slider-offers .slick-dots li button {
          font-size: 0px;
          line-height: 0px;
          display: block;
          width: 100%;
          height: 100%;
          border: 0px;
          outline: none;
          background: #cdc8c5;
          padding: 0px; }
      .slideroffers__item .slider-offers .slick-dots li.slick-active {
        background: #ff6700; }
        .slideroffers__item .slider-offers .slick-dots li.slick-active button {
          background: none; }
    .slideroffers__item .slider-offers .slick-prev, .slideroffers__item .slider-offers .slick-next {
      display: none !important; }
  .slideroffers__item .item {
    direction: rtl;
    display: inline-block;
    height: 460px;
    border-radius: 12px;
    margin: 0px 8px;
    cursor: pointer;
    overflow: hidden; }
    @media (max-width: 999px) {
      .slideroffers__item .item {
        height: 300px; } }
    .slideroffers__item .item img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.association__item .rowbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px; }
  @media (max-width: 999px) {
    .association__item .rowbox {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px; } }
  @media (max-width: 550px) {
    .association__item .rowbox {
      grid-template-columns: 1fr; } }
.association__item .item {
  padding: 20px;
  background: #FFFAF7;
  border-radius: 12px;
  border: 1px solid #ff760b38;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .association__item .item:hover {
    border: 1px solid #ff6700; }
  .association__item .item .photo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    padding: 8px;
    margin: 0px auto;
    width: 136px;
    height: 136px;
    overflow: hidden;
    -webkit-box-shadow: 4px 4px 20px #00000014;
    -moz-box-shadow: 4px 4px 20px #00000014;
    -o-box-shadow: 4px 4px 20px #00000014;
    -ms-box-shadow: 4px 4px 20px #00000014;
    box-shadow: 4px 4px 20px #00000014;
    border-radius: 50%; }
    .association__item .item .photo img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 50%; }
  .association__item .item p {
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px; }

.sliderphotos__item {
  position: relative;
  width: 100%;
  padding: 0px !important; }
  @media (max-width: 999px) {
    .sliderphotos__item {
      height: 400px; } }
  .sliderphotos__item .carousel {
    overflow: hidden;
    width: 100%; }
    .sliderphotos__item .carousel:hover .carousel-control-next {
      right: 24px; }
    .sliderphotos__item .carousel:hover .carousel-control-prev {
      left: 24px; }
    .sliderphotos__item .carousel .carousel-item {
      height: 70vh;
      overflow: hidden; }
      @media (max-width: 767px) {
        .sliderphotos__item .carousel .carousel-item {
          height: 400px; } }
      .sliderphotos__item .carousel .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top; }
    .sliderphotos__item .carousel .carousel-control-next,
    .sliderphotos__item .carousel .carousel-control-prev {
      width: 38px;
      height: 38px;
      top: 50%;
      opacity: 1;
      margin-top: -19px;
      background: #00000078;
      border-radius: 50%;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .sliderphotos__item .carousel .carousel-control-next svg,
      .sliderphotos__item .carousel .carousel-control-prev svg {
        width: 20px;
        height: 20px;
        fill: #fff;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .sliderphotos__item .carousel .carousel-control-next:hover,
      .sliderphotos__item .carousel .carousel-control-prev:hover {
        background: #ff6700; }
    .sliderphotos__item .carousel .carousel-control-next {
      right: -90px; }
    .sliderphotos__item .carousel .carousel-control-prev {
      left: -90px; }
      .sliderphotos__item .carousel .carousel-control-prev svg {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
    @media (max-width: 999px) {
      .sliderphotos__item .carousel {
        position: relative; } }

.abutphotos__item {
  background: #fff url(../images/about.png) no-repeat left top; }
  .abutphotos__item .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; }
    @media (max-width: 999px) {
      .abutphotos__item .container {
        grid-template-columns: 1fr;
        gap: 12px; } }
  .abutphotos__item .item {
    display: flex;
    align-items: center; }
    @media (max-width: 999px) {
      .abutphotos__item .item {
        margin-bottom: 24px; }
        .abutphotos__item .item:last-child {
          margin: 0px; } }
    .abutphotos__item .item img {
      max-width: 86%; }
      @media (max-width: 999px) {
        .abutphotos__item .item img {
          max-width: 100%; } }
  .abutphotos__item .list {
    margin-top: 24px; }
    .abutphotos__item .list li {
      display: flex;
      align-items: flex-start;
      color: #000;
      margin-bottom: 12px; }
      .abutphotos__item .list li svg {
        fill: #ff6700;
        min-width: 22px;
        max-width: 22px;
        margin: 4px 0px 0px 12px; }
  .abutphotos__item .bottom {
    min-width: 160px;
    height: 48px;
    background: #ff6700;
    color: #fff;
    margin-top: 16px; }
    .abutphotos__item .bottom:hover {
      background: #03045e;
      border: 1px solid #03045e; }

.allnumber-item {
  padding: 0px !important; }
  .allnumber-item .inner {
    width: 100%;
    background: #03045e url(../images/application.png) no-repeat center center/cover;
    border-radius: 30px;
    padding: 48px; }
    @media (max-width: 999px) {
      .allnumber-item .inner {
        padding: 24px; } }
    .allnumber-item .inner .title {
      color: #fff; }
  .allnumber-item .bottom {
    min-width: 160px;
    height: 48px;
    background: #ff6700;
    color: #fff;
    margin-top: 16px; }
    .allnumber-item .bottom:hover {
      background: #03045e;
      border: 1px solid #03045e; }
  .allnumber-item .rowbox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; }
    @media (max-width: 999px) {
      .allnumber-item .rowbox {
        grid-template-columns: 1fr 1fr;
        gap: 12px; } }
    @media (max-width: 767px) {
      .allnumber-item .rowbox {
        grid-template-columns: 1fr; } }
  .allnumber-item .item {
    text-align: center;
    margin-top: 48px; }
    @media (max-width: 999px) {
      .allnumber-item .item {
        margin-top: 24px; } }
    .allnumber-item .item svg {
      width: 80px;
      height: 80px; }
    .allnumber-item .item .timer {
      color: #fff;
      font-size: 40px;
      font-weight: 600;
      text-align: center;
      margin-top: 16px; }
    .allnumber-item .item p {
      color: #fff;
      font-size: 18px;
      margin-top: 16px;
      text-align: center; }

@media (max-width: 999px) {
  .sharenow .minhead {
    display: block; }
    .sharenow .minhead .form-control {
      margin-top: 12px; } }
    @media (max-width: 999px) and (max-width: 450px) {
      .sharenow .minhead .form-control {
        min-width: 100% !important;
        max-width: 100% !important;
        margin-left: 0px !important; } }

.sharenow .share-slider {
  position: relative;
  direction: ltr;
  margin-top: 24px; }
  .sharenow .share-slider .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none;
    margin: 0px -8px; }
    .sharenow .share-slider .slick-list .slick-track {
      position: relative;
      top: 0;
      right: auto;
      bottom: auto;
      left: auto;
      display: block;
      overflow: hidden; }
      .sharenow .share-slider .slick-list .slick-track:after, .sharenow .share-slider .slick-list .slick-track:before {
        display: table;
        content: ''; }
  .sharenow .share-slider .slick-prev,
  .sharenow .share-slider .slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    cursor: pointer;
    border: 0px;
    padding: 0px;
    width: 30px;
    height: 30px;
    outline: none;
    font-size: 0px;
    background: none;
    border-radius: 50%;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .sharenow .share-slider .slick-prev svg,
    .sharenow .share-slider .slick-next svg {
      width: 18px;
      height: 18px;
      fill: #0095DA;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  .sharenow .share-slider .slick-next {
    right: 0px; }
  .sharenow .share-slider .slick-prev {
    left: 0px; }
  .sharenow .share-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px; }
    .sharenow .share-slider .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0px 2px;
      padding: 0px;
      cursor: pointer;
      width: 14px;
      height: 4px;
      border-radius: 5px; }
      .sharenow .share-slider .slick-dots li button {
        font-size: 0px;
        line-height: 0px;
        display: block;
        width: 100%;
        height: 100%;
        border: 0px;
        outline: none;
        background: #cdc8c5;
        padding: 0px; }
    .sharenow .share-slider .slick-dots li.slick-active {
      background: #ff6700; }
      .sharenow .share-slider .slick-dots li.slick-active button {
        background: none; }
  @media (max-width: 999px) {
    .sharenow .share-slider {
      margin-top: 12px; } }
  .sharenow .share-slider .slick-prev,
  .sharenow .share-slider .slick-next {
    display: none !important; }
.sharenow .item {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  margin: 0px 8px;
  text-align: center;
  border: 1px solid #ff760b38;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  @media (max-width: 767px) {
    .sharenow .item {
      padding: 12px; } }
  .sharenow .item:hover .photo img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  .sharenow .item .photo {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden; }
    .sharenow .item .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  .sharenow .item .title {
    font-size: 18px;
    margin-top: 12px;
    text-align: center; }
  .sharenow .item p {
    text-align: center;
    margin-top: 4px; }
  .sharenow .item .number {
    display: block;
    font-size: 26px;
    font-weight: 600;
    color: #ff6700;
    margin-top: 12px; }
  .sharenow .item .bottom {
    width: 100%;
    margin-top: 24px;
    border: 1px solid #ff760b38;
    color: #000; }
    .sharenow .item .bottom:hover {
      color: #fff; }
.sharenow .shareitem {
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px; }
  .sharenow .shareitem .social a svg {
    fill: #03045e; }

.winners {
  background: #FFFAF7; }
  .winners .lightgallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px; }
    @media (max-width: 999px) {
      .winners .lightgallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px; } }
    @media (max-width: 600px) {
      .winners .lightgallery {
        grid-template-columns: 1fr; } }
    .winners .lightgallery li {
      background: #fff;
      border-radius: 12px;
      padding: 12px;
      text-align: center;
      border: 1px solid #ff760b38;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .winners .lightgallery li:hover {
        border: 1px solid #ff6700; }
  .winners .number {
    display: block;
    font-size: 18px;
    color: #ff6700; }
  .winners .photos {
    position: absolute;
    bottom: -100px; }
  .winners .dsn-stories {
    padding: 0px 12px; }
  .winners .dsn-stories .p-relative {
    position: relative;
    overflow: hidden; }
  .winners .dsn-stories .p-relative .imgphoto {
    display: block;
    position: relative;
    border-radius: 12px;
    height: 220px;
    overflow: hidden; }
  .winners .dsn-stories .p-relative .imgphoto img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .winners .title {
    font-size: 20px;
    text-align: center;
    margin-top: 12px; }
  .winners .shareitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px; }
    .winners .shareitem .social a svg {
      fill: #03045e; }
  .winners .bottom {
    min-width: 160px;
    height: 48px;
    background: #ff6700;
    color: #fff;
    margin-top: 16px; }
    .winners .bottom:hover {
      background: #03045e;
      border: 1px solid #03045e; }

.shepherds .shepherds-slider {
  position: relative;
  direction: ltr;
  margin-top: 24px; }
  .shepherds .shepherds-slider .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none;
    margin: 0px -8px; }
    .shepherds .shepherds-slider .slick-list .slick-track {
      position: relative;
      top: 0;
      right: auto;
      bottom: auto;
      left: auto;
      display: block;
      overflow: hidden; }
      .shepherds .shepherds-slider .slick-list .slick-track:after, .shepherds .shepherds-slider .slick-list .slick-track:before {
        display: table;
        content: ''; }
  .shepherds .shepherds-slider .slick-prev,
  .shepherds .shepherds-slider .slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    cursor: pointer;
    border: 0px;
    padding: 0px;
    width: 30px;
    height: 30px;
    outline: none;
    font-size: 0px;
    background: none;
    border-radius: 50%;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .shepherds .shepherds-slider .slick-prev svg,
    .shepherds .shepherds-slider .slick-next svg {
      width: 18px;
      height: 18px;
      fill: #0095DA;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
  .shepherds .shepherds-slider .slick-next {
    right: 0px; }
  .shepherds .shepherds-slider .slick-prev {
    left: 0px; }
  .shepherds .shepherds-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px; }
    .shepherds .shepherds-slider .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0px 2px;
      padding: 0px;
      cursor: pointer;
      width: 14px;
      height: 4px;
      border-radius: 5px; }
      .shepherds .shepherds-slider .slick-dots li button {
        font-size: 0px;
        line-height: 0px;
        display: block;
        width: 100%;
        height: 100%;
        border: 0px;
        outline: none;
        background: #cdc8c5;
        padding: 0px; }
    .shepherds .shepherds-slider .slick-dots li.slick-active {
      background: #ff6700; }
      .shepherds .shepherds-slider .slick-dots li.slick-active button {
        background: none; }
  @media (max-width: 999px) {
    .shepherds .shepherds-slider {
      margin-top: 12px; } }
  .shepherds .shepherds-slider .slick-prev,
  .shepherds .shepherds-slider .slick-next {
    display: none !important; }
.shepherds .item {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  margin: 0px 8px;
  text-align: center;
  border: 1px solid #ff760b38; }
  @media (max-width: 767px) {
    .shepherds .item {
      padding: 12px; } }
  .shepherds .item img {
    max-width: 100%;
    max-height: 100%; }

.error404 {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  text-align: center;
  background: #FFFAF7; }
  @media (max-width: 999px) {
    .error404 {
      padding: 24px 0px; } }
  .error404 .title {
    font-size: 150px !important;
    color: #000;
    width: 100%;
    text-align: center; }
  .error404 p {
    color: #0095DA;
    font-size: 24px;
    margin-top: 72px; }
  .error404 .bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #ff6700;
    outline: none;
    outline-style: none;
    border: 0px;
    text-align: center;
    background: #fff;
    border: 1px solid #ff6700;
    border-radius: 12px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    cursor: pointer;
    padding: 5px 12px;
    float: none;
    display: inline-flex;
    margin-top: 32px;
    box-shadow: 0px 2px 17px rgba(73, 73, 73, 0.1);
    padding: 12px 20px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    background-clip: padding-box; }
    .error404 .bottom:hover {
      background: #ff6700;
      color: #fff; }
      .error404 .bottom:hover svg {
        fill: #fff; }
    .error404 .bottom:focus {
      outline: none;
      outline-style: none; }
    .error404 .bottom svg {
      min-width: 22px;
      max-width: 22px;
      fill: #ff6700;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }

.scrollTopBtn {
  position: fixed;
  right: -100px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0px;
  z-index: 998;
  border-radius: 5px;
  background: #ff6700;
  cursor: pointer;
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  @media (max-width: 999px) {
    .scrollTopBtn {
      display: none; } }
  .scrollTopBtn.show {
    right: 12px;
    opacity: 1; }
  .scrollTopBtn:hover {
    background: #0095DA; }
  .scrollTopBtn svg {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 15px;
    height: 15px; }
    .scrollTopBtn svg path {
      fill: #fff; }

.footer {
  position: relative;
  width: 100%;
  background: #03045e;
  padding-top: 32px; }
  .footer .item {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 999px) {
      .footer .item {
        display: block; } }
    @media (max-width: 999px) {
      .footer .item .logo {
        width: 100%;
        text-align: center; } }
    .footer .item .logo img {
      max-width: 100px; }
    .footer .item .navmenu {
      display: flex; }
      @media (max-width: 999px) {
        .footer .item .navmenu {
          justify-content: center;
          margin: 16px 0px; } }
      @media (max-width: 767px) {
        .footer .item .navmenu {
          display: block; } }
      .footer .item .navmenu a {
        display: block;
        position: relative;
        margin: 0px 16px;
        color: #fff;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .footer .item .navmenu a:hover {
          color: #ff6700; }
        @media (max-width: 999px) {
          .footer .item .navmenu a {
            text-align: center; } }
  .footer .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0px;
    border-top: 1px solid #ffffff42;
    margin-top: 24px; }
    @media (max-width: 767px) {
      .footer .copyright {
        display: block; } }
    .footer .copyright .app-icons {
      display: flex;
      align-items: center; }
      @media (max-width: 999px) {
        .footer .copyright .app-icons {
          justify-content: center; } }
      .footer .copyright .app-icons a {
        display: block;
        margin-left: 16px; }
        .footer .copyright .app-icons a:last-child {
          margin: 0px; }
        @media (max-width: 999px) {
          .footer .copyright .app-icons a {
            margin: 0px 4px; } }
      .footer .copyright .app-icons img {
        min-width: 104px;
        max-width: 104px;
        height: 34px; }
    .footer .copyright p {
      color: #fff; }
      @media (max-width: 767px) {
        .footer .copyright p {
          text-align: center;
          margin-top: 12px; } }

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
hr,
strong,
b,
input,
select,
textarea,
.highcharts-title,
.highcharts-axis-labels,
.highcharts-yaxis-title {
  direction: rtl;
  text-align: right;
  margin: 0px;
  padding: 0px;
  border: 0px;
  text-decoration: none;
  list-style: none;
  color: #3B3B3B;
  font: normal 400 15px/28px "Readex Pro", sans-serif; }

::-webkit-scrollbar {
  width: 5px;
  height: 2px; }

::-webkit-scrollbar-track {
  background: #D9D9D9; }

::-webkit-scrollbar-thumb {
  background-color: #ff6700;
  cursor: pointer; }

.che-box {
  position: relative;
  cursor: pointer;
  font-weight: 300;
  padding-right: 22px; }
  .che-box input[type="checkbox"],
  .che-box input[type="radio"] {
    position: absolute;
    left: 9000px; }
  .che-box input[type="checkbox"] + .label-text:before,
  .che-box input[type="radio"] + .label-text:before {
    content: ' ';
    border: 1px solid #D9D9D9;
    background: #D9D9D9;
    width: 18px;
    height: 18px;
    position: absolute;
    z-index: 1;
    top: 7px;
    right: 0;
    border-radius: 4px; }
  .che-box input[type="radio"] + .label-text:before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box; }
  .che-box input[type="radio"]:checked + .label-text:before {
    background: #0095DA;
    box-shadow: inset 0 0 0px 4px #fff; }
  .che-box input[type="checkbox"]:checked + .label-text:before {
    background: #0095DA url(../images/tick.svg) no-repeat center center;
    border: 1px solid #0095DA; }
  .che-box span.label-text {
    font-weight: 300;
    color: #000;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }

textarea.form-control {
  height: 160px;
  resize: none; }

section {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 999px) {
    section {
      padding: 24px 0px; } }

.tagtext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff6700;
  font-size: 12px;
  color: #fff;
  line-height: 19px;
  padding: 4px 12px;
  border-radius: 60px; }

.title {
  font-size: 26px;
  font-weight: 500;
  line-height: 150%;
  color: #000;
  position: relative; }
  @media (max-width: 999px) {
    .title {
      font-size: 22px; } }

.bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #ff6700;
  outline: none;
  outline-style: none;
  border: 0px;
  text-align: center;
  background: #fff;
  border: 1px solid #ff6700;
  border-radius: 12px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  cursor: pointer;
  padding: 5px 12px; }
  .bottom:hover {
    background: #ff6700;
    color: #fff; }
    .bottom:hover svg {
      fill: #fff; }
  .bottom:focus {
    outline: none;
    outline-style: none; }
  .bottom svg {
    min-width: 22px;
    max-width: 22px;
    fill: #ff6700;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }

.alert {
  display: flex;
  align-items: center;
  border: 0px;
  margin: 0px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 4px;
  height: 60px; }
  .alert strong {
    margin-left: 8px;
    color: #856404; }
  .alert a {
    text-decoration: underline;
    color: #fff;
    font-weight: 400; }
    .alert a:hover {
      text-decoration: none; }
  .alert .text-mass {
    margin: 0px !important;
    margin-right: 12px !important; }
  .alert p {
    color: #fff;
    margin: 0px !important; }
  .alert.alert-success {
    background: linear-gradient(303.91deg, #1F7A66 7.57%, #60B3A7 94.39%); }
  .alert.alert-danger {
    background: linear-gradient(303.91deg, #C24848 7.57%, #D34A4A 94.39%); }

.contant {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 64px 16px 16px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%); }
  .contant .title {
    color: #fff;
    font-size: 24px;
    margin-top: 12px; }
  .contant .date {
    display: flex;
    align-items: center;
    color: #bfbfbf;
    margin-top: 8px;
    font-weight: 300;
    font-size: 14px; }
    .contant .date svg {
      margin-left: 4px; }

.form-control {
  height: 48px;
  text-transform: none;
  font-weight: 300;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .form-control:focus, .form-control:hover, .form-control:focus-visible {
    border: 1px solid #ff6700;
    outline: 0;
    outline-style: none;
    box-shadow: none; }

select.form-control {
  -webkit-appearance: none;
  background: #fff url(../images/arrow.svg) no-repeat;
  background-position: 12px center;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }

.map-back {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 366px;
  background: #03045e;
  padding: 0px !important; }
  @media (max-width: 999px) {
    .map-back {
      height: 266px; } }
  .map-back img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .map-back:before {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #03045e85 0%, #0a0b3c94 100%);
    z-index: 1; }
  .map-back.non-befor:before {
    display: none; }
  .map-back .listaction {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px; }
    .map-back .listaction .bottom {
      margin: 8px 4px 0px 4px; }
      .map-back .listaction .bottom:hover {
        background: #03045e;
        border: 1px solid #03045e; }
  .map-back .container {
    text-align: center;
    z-index: 10; }
  .map-back .title {
    color: #fff;
    text-align: center;
    font-size: 32px; }
    @media (max-width: 999px) {
      .map-back .title {
        font-size: 26px; } }
  .map-back .bottom {
    min-width: 140px;
    min-height: 48px;
    background: #ff6700;
    color: #fff;
    margin-top: 12px; }

.maplink {
  display: flex;
  justify-content: center;
  margin-top: 12px; }
  .maplink li {
    display: inline-block;
    color: #d1d1d1;
    font-weight: 300;
    margin-left: 8px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .maplink li:last-child {
      margin-left: 0px; }
    .maplink li a {
      color: #fff;
      position: relative;
      font-weight: 300;
      padding-left: 12px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .maplink li a:hover {
        color: #ff6700; }
      .maplink li a:before {
        position: absolute;
        top: -3px;
        left: 2px;
        content: "|";
        display: inline-block;
        color: #fff; }

.pagination {
  width: 100%;
  margin-top: 32px;
  justify-content: center;
  overflow: hidden; }
  @media (max-width: 999px) {
    .pagination {
      margin-top: 24px;
      padding-bottom: 12px;
      overflow-x: scroll;
      justify-content: flex-start; } }
  .pagination li {
    display: inline-block;
    margin: 0px 8px; }
    .pagination li a,
    .pagination li span {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #000;
      -webkit-border-radius: 16px !important;
      border-radius: 16px !important;
      background-clip: padding-box;
      min-width: 44px;
      height: 44px;
      border: 0px;
      background: #E6E6E6;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      color: #8B8B8B; }
    .pagination li svg {
      width: 12px;
      height: 12px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .pagination li:first-child, .pagination li:last-child {
      min-width: 84px; }
      .pagination li:first-child a, .pagination li:last-child a {
        color: #ff6700;
        font-size: 12px; }
        .pagination li:first-child a svg, .pagination li:last-child a svg {
          max-width: 12px;
          height: 12px;
          fill: #ff6700; }
    .pagination li:last-child {
      margin-left: 0px; }
      .pagination li:last-child svg {
        transform: rotate(90deg);
        margin-right: 4px; }
    .pagination li:first-child {
      margin-right: 0px; }
      .pagination li:first-child svg {
        transform: rotate(-90deg);
        margin-left: 4px; }
  .pagination .page-link.active,
  .pagination .page-link:hover {
    background: #ff6700 !important;
    color: #fff !important; }
    .pagination .page-link.active svg,
    .pagination .page-link:hover svg {
      fill: #fff; }

.advertising-banner .line {
  position: relative;
  width: 100%; }
  .advertising-banner .line::before {
    content: '';
    position: absolute;
    left: 0px;
    width: calc(100% - 84px);
    height: 1px;
    background: #e8e8e8;
    top: 16px; }
  .advertising-banner .line p {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.5s ease-in-out; }
.advertising-banner a {
  display: block; }
.advertising-banner img {
  max-width: 100%; }

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  direction: ltr; }
  .social a {
    position: relative;
    margin-right: 16px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .social a svg {
      fill: #fff;
      width: 20px;
      height: 20px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .social a:hover {
      opacity: 0.7; }

.minhead {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media (max-width: 767px) {
    .minhead {
      flex-wrap: wrap; } }
  .minhead .title img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 8px; }
  .minhead select.form-control {
    max-width: 200px; }
  .minhead .social {
    margin-top: 12px; }
    .minhead .social a {
      margin: 0px !important;
      margin-right: 8px !important; }
      .minhead .social a:last-child {
        margin: 0px !important; }
      .minhead .social a svg {
        fill: #03045e; }
  .minhead .flexselect {
    display: flex;
    flex-wrap: wrap; }
    .minhead .flexselect select.form-control {
      min-width: 200px;
      margin-left: 12px; }
      .minhead .flexselect select.form-control:last-child {
        margin-left: 0px; }

.slider-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  right: 0px;
  width: 40px;
  height: 100%;
  margin: 0px auto;
  z-index: 10; }
  .slider-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #FFFAF7;
    border-top: 4px solid #ff6700;
    border-radius: 50%;
    animation: spin 1s linear infinite; }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.slick-loading {
  visibility: hidden; }

.slick-loaded {
  visibility: visible;
  transition: visibility 0s 0s, opacity 0.3s ease; }

/*# sourceMappingURL=home.css.map */
