@font-face {
  font-family: "Myriad Pro Regular";
  src: url("../font/MYRIADPRO-REGULAR.woff") format("woff"),
    url("../font/MYRIADPRO-REGULAR.OTF") format("otf");
}
@font-face {
  font-family: "Segoue UI";
  src: url("../font/SegoeUI.ttf") format("ttf");
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* typography */
html {
  font-size: 10px;
}

:root {
  --gray: #828282;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
}

body {
  font-family: "Segoue UI", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #828282;
}

.d-flex {
  display: flex;
  gap: 2rem;
}

.d-flex-spb {
  display: flex;
  justify-content: space-between;
}

.aic {
  align-items: center;
}
.jcc {
  justify-content: center;
}
img {
  width: 100%;
}

h2 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 4px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #828282;
  font-size: 1.6rem;
}

button {
  border: none;
  background: none;
}

button:hover {
  cursor: pointer;
  opacity: 0.8;
}

i:hover {
  cursor: pointer;
}

.full-container {
  width: 100%;
}

.fix-container {
  width: 1190px;
  margin: 0 auto;
}

/* nav holdre */
.header__wrapper {
  background-color: red;
  width: 100%;
  position: sticky;
  top: 0;
  height: 60px;
  z-index: 10;
}
.header {
  max-width: 100%;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header nav {
  width: 100%;
}
.nav-holder {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  align-items: center;
  box-shadow: 0px 0px 4px #abacad;
  margin-bottom: 4px;
  width: 100%;
  height: 60px;
  background-color: white;
  position: relative;
}

section.main-content {
  display: none;
}

.nav-holder ul.nav-middle {
  display: flex;
  gap: 2.3rem;
}

.nav-holder ul.nav-right {
  display: flex;
  gap: 2.3rem;
}

.nav-holder img.logo {
  max-width: 15rem;
  padding-top: 0.7rem;
}
.nav-right li.about_nav {
  position: relative;
}

.nav-right li.about_nav ul.toggle_box {
  position: absolute;
  background-color: white;
  box-shadow: 0 0 3px gray;
  top: 3rem;
  right: 0;
  border-radius: 2px;
  display: none;
}

.nav-right li.about_nav ul.toggle_box a {
  font-size: 14px;
}

.nav-right li.about_nav ul.toggle_box li {
  padding: 4px 15px;
}

.nav-right li.about_nav ul.toggle_box li:hover {
  background-color: #f3f3ff;
}

header {
  overflow: visible;
}

.hero {
  margin-top: 1px;
  padding-top: 5px;
  background-color: #f1f1f1;
}

.nav-holder a {
  color: #000;
}

.nav-holder a.active {
  border: 1px solid #1d7fbd;
  border-radius: 4rem;
  padding: 0.3rem 1rem;
}
.nav-right li.d-flex {
  gap: 5px;
}

.nav-right li.d-flex i {
  padding-top: 4px;
  font-size: 1.4rem;
}

ul.nav_extra {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: absolute;
  right: 180px;
}

ul.nav_extra li.language {
  position: relative;
  border: 1px solid gray;
  border-radius: 2rem;
  padding: 1px 3.2rem;
  padding-right: 6px;
}

ul.nav_extra .language img {
  position: absolute;
  left: 6px;
  max-width: 2.2rem;
  top: 8px;
  border-radius: 6px;
}
ul.nav_extra li.language .toggle_box {
  position: absolute;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 3px gray;
  top: 119%;
  right: 0;
  display: none;
}
ul.nav_extra li.language .toggle_box button:hover {
  background-color: antiquewhite;
}
ul.nav_extra li.language .toggle_box button {
  display: flex;
  padding: 7px 10px;
  gap: 5px;
  align-items: center;
}

ul.nav_extra li.language .toggle_box button img {
  position: static;
}

button.lt_dark_mode {
  padding: 6px 9px;
  border-radius: 2rem;
}

.lt_dark_mode .checkbox {
  opacity: 0;
  position: absolute;
}

.lt_dark_mode .checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lt_dark_mode .fa-moon {color: #f1c40f;}

.lt_dark_mode .fa-sun {color: #f39c12;}

.lt_dark_mode .checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.lt_dark_mode .checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
}

button.lt_dark_mode .fa-circle {
  padding-top: 1px;
}

button.lt_dark_mode i {
  color: #b7b7b7;
}

button.lt_dark_mode i.active {
  color: #ffc533;
}
.nav-holder ul li:hover a {
  opacity: 0.7;
}
.nav-holder .mobile_menu {
  display: none;
}
/* hero slider*/
.hero__inner {
  display: flex;
  max-height: 49rem;
  margin-bottom: 0.5rem;
  background-color: #f2f2f2;
}

.hero__inner__main {
  width: 86%;
  position: relative;
  overflow: visible;
  height: 49rem;
  margin-right: 1%;
}

.hero__inner__main p {
  position: absolute;
  top: 32%;
  font-size: 2.25rem;
  color: white;
  width: 26.5rem;
  left: 14%;
  display: none;
}

.owl-carousel .owl-item img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 49rem;
}

.owl-nav {
  position: absolute;
  font-size: 2.5rem;
  top: 200px;
  display: flex;
  justify-content: space-between;
  width: 96%;
  left: 18px;
}

.hero__inner__side {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 11%;
  height: 49rem;
  text-align: center;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

.hero__inner__side__item {
  flex: 1;
}

.owl-dots {
  position: absolute;
  top: 44.5rem;
  left: 46.5%;
}

.owl-dots button {
  opacity: 1;
}
.owl-theme .owl-dots .owl-dot span {
  background: #b5b5b5;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.owl-dots button.active {
  opacity: 1;
  position: relative;
}

.owl-dots button.active::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: blue;
  position: absolute;
  transform: rotate(45deg);
  display: none;
}

.owl-nav button span {
  background-color: #ffffff;
  border-radius: 50%;
  color: black;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px #a8a8a8;
}
.owl-nav button span img {
  height: 16px;
  width: auto;
}
.owl-nav button:hover {
  background: transparent !important;
}
.hero__inner__side__item img {
  object-fit: cover;
  max-height: 6rem;
}

/*journey*/
.journey__inner {
  width: 1060px;
}
.journey__inner h6 {
  text-align: center;
  font-weight: bold;
  color: #000;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  margin-bottom: 5rem;
}
.journey__inner .text_vid {
  margin-top: 2rem;
}
.journey__inner .text_vid .texts {
  width: 65%;
  padding-left: 4rem;
  position: relative;
  padding-right: 1rem;
}
.journey__inner .text_vid .texts h6 {
  position: absolute;
  transform: rotate(-90deg);
  left: -13.5rem;
  top: 10rem;
}
.journey__inner .text_vid .texts .items {
  display: flex;
  flex-wrap: wrap;
  gap: 4.4rem;
}
.arabic__lang .journey__inner .text_vid {
    flex-direction: row-reverse;
}

.arabic__lang .journey__inner .text_vid .texts .items {
    flex-direction: row-reverse;
}

.arabic__lang .journey__inner .text_vid .texts h6 {
    left: unset;
    right: -13.5rem;
}
.journey__inner .text_vid .texts .items .item {
  border: 1px solid #bbb7b7;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 9.2rem;
}
.journey__inner .text_vid .texts .items .item span.title {
  background-color: #1d7fbd;
  font-weight: bold;
  padding: 0.8rem;
  border-radius: 1rem 1rem 0 0;
  font-size: 1rem;
  border-bottom: 1.5px solid #b3b2b2;
  line-height: 12px;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.journey__inner .text_vid .texts .items .item span {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 0.9rem;
  color: #000;
  font-family: "Inter", sans-serif;
}
.journey__inner .text_vid .video {
  height: 23rem;
  position: relative;
  width: 35%;
}
.journey__inner .text_vid .video video {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.journey__inner .text_vid .video i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  background-color: rgba(38, 127, 215, 0.831372549);
  padding: 1.5rem 1.7rem;
  border-radius: 50%;
  padding-left: 1.9rem;
  display: none;
  transform: translate(-50%, -50%);
}
.journey__inner .item small {
  margin-top: -2.1rem;
  font-size: 1rem;
  height: 1rem;
}
.journey__inner .text_vid .texts h6 span {
  font-weight: bold;
  font-family: "Inter", sans-serif;
}

.journey__inner .text_vid .texts h6 span.blue {
  color: #1d7fbd;
}

.journey__inner .text_vid .texts h6 span.red {
  color: #ba2928;
}

/*epz*/
/* .epz {
  margin-top: 3rem;
}

.epz img {
  max-width: 2rem;
}

.epz__inner {
  display: flex;
  height: 30rem;
  overflow: hidden;
}

.epz__inner__single {
  flex: 1;
}

.epz__inner--left {
  background: url("../images/ecz1.png") no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}

.epz__inner--mid {
  background: url("../images/ecz2.png") no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  margin-left: -11%;
  margin-right: -11%;
  border-left: 2px solid white;
}

.epz__inner--right {
  background: url("../images/ecz3.png") no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.epz__inner__single {
  color: white;
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-top: 17%;
  padding-right: 15%;
  transition: all 0.3s ease-in-out;
}
.epz__inner__single .contents {
  position: absolute;
  left: 36%;
  line-height: 15px;
  top: 42%;
}
.epz__inner__single.epz__inner--left .contents {
  left: 26%;
}

.epz__inner__single.epz__inner--right .contents {
  left: 45%;
}
.epz__inner__single .contents h6 {
  font-weight: bold;
  font-size: 1.4rem;
}
.epz__inner__single .contents span {
  font-weight: bold;
}
.epz__inner__single .contents img {
  max-width: 6rem;
  margin-top: 5px;
}

.epz__inner__single::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 1%;
  height: 200%;
  right: 23.5%;
  top: -11%;
  transform: rotate(24.7deg);
  z-index: 10000000;
}
.epz__inner__single:hover::before {
  opacity: 0;
}
.epz__inner__single.left_hovered::before {
  width: 2px;
  transform: rotate(24.3deg);
  opacity: 1;
}
.epz__inner--left.mid_hovered::before {
  width: 2px;
  right: 24.5%;
  transform: rotate(25.4deg);
  opacity: 1;
}
.epz__inner--mid.mid_hovered::before {
  width: 2px;
  right: 23.5%;
  transform: rotate(24.2deg);
  opacity: 1;
}
.epz__inner--left.right_hovered::before {
  display: none;
}
.epz__inner--mid.right_hovered::before {
  width: 2px;
  right: 24.6%;
  transform: rotate(25.3deg);
  opacity: 1;
}
.epz__inner--right::before {
  display: none;
}

.epz__inner__single::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0rem;
  left: 0rem;
}

.epz__inner__single:hover {
  flex: 1.1;
  box-shadow: 0 0 3px #bbb7b7;
}
.epz__inner__single:hover::after {
  background-color: rgba(31, 89, 205, 0.611);
  border: none;
}
.epz__inner__single:hover .contents {
  z-index: 10;
} */

.ecz__inner__single {
  flex: 1;
  transform: scaleX(1.45);
}

.ecz__inner {
  display: flex;
  height: 35rem;
  overflow: hidden;
}

.ecz__inner__single .contents h6 {
  font-weight: bold;
  font-size: 1.4rem;
}
.ecz__inner__single .contents span {
  font-weight: bold;
}
.ecz__inner__single .contents img {
  max-width: 6rem;
  margin-top: 5px;
}
.ecz__inner__single {
  color: white;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.ecz__inner__single .contents {
  position: absolute;
  left: 36%;
  line-height: 15px;
  top: 42%;
  transform: scaleX(0.75);
}

.ecz__inner--mid {
  transform: skew(-25deg, 0deg);
  border-left: 1px solid white;
  flex: 1;
  overflow: hidden;
  z-index: 1;
  border-right: 1px solid wheat;
}

.ecz__inner--mid .contents {
  transform: skew(25deg, 0deg);
}
.ecz__inner__single::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0rem;
  left: 0rem;
}

.ecz__inner__single:hover {
  flex: 1.1;
  box-shadow: 0 0 3px #bbb7b7;
}
.ecz__inner__single:hover::after {
  background-color: rgba(31, 89, 205, 0.611);
  border: none;
}
.ecz__inner__single:hover .contents {
  z-index: 10;
}
.ecz__inner__single img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ecz__inner--mid > img {
  width: 160%;
  transform: skew(25deg, 0deg) translateX(-18%);
}
/*news section*/
.journey {
  padding: 7rem 0;
}
.news {
  padding: 4rem 0;
  padding-bottom: 1px;
}
.news__inner {
  margin-top: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
  font-family: "Inter", sans-serif;
}

.news__inner .posts {
  display: flex;
  gap: 1.5rem;
}

.news__inner .posts .post {
  border: 1.6px solid #b9b6b6;
  border-radius: 6px;
  line-height: 18px;
}

.news__inner .posts .post .meta {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.news__inner .posts .post .meta span:first-of-type {
  font-weight: bold;
}
.news__inner .posts .head {
  display: flex;
  padding: 11px;
  align-items: center;
  justify-content: space-between;
}

.news__inner .posts .head h3 {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
}

.news__inner .posts .post .meta img {
  max-width: 8rem;
  height: auto;
}
.news_heading {
  display: flex;
  align-items: flex-start;
}
.arabic__lang .news_heading {
    flex-direction: row-reverse;
}

.arabic__lang .posts .owl-nav {
    left: unset;
    right: 0;
}

.arabic__lang .news__inner .posts .head {
    flex-direction: row-reverse;
}

.arabic__lang .news__inner .posts .meta {
    flex-direction: row-reverse;
}

.arabic__lang .news__inner .posts .head h3 {
    text-align: right;
}
.news_heading button.see_all {
  border: 1px solid;
  padding: 5px 10px;
  border-radius: 6px;
}

.news_heading h2 {
  width: calc(100% - 7rem);
  padding-left: 5rem;
}
.posts .owl-item img {
  height: 18rem;
}
.posts .owl-dots {
  display: none;
}
.posts .owl-nav {
  top: -68px;
  width: 90px;
  left: 0;
}
.posts .owl-nav button span {
  background: none;
  border: 1px solid #000;
  font-size: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding-bottom: 4px;
  border-radius: 50%;
}

.posts .owl-nav button:hover span {
  color: white;
  background: black;
}
/*full img section*/
.full-img video {
  max-height: 40rem;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
}

.full-img {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
/*award section*/
.award {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.award .award-single {
  justify-content: center;
  margin-top: 5rem;
}

.award .top img {
  max-width: 25rem;
}

.award .btm img {
  max-width: 56rem;
}
.btm.award-single {
  margin-top: 10rem;
}

.btm.award-single > div {
  max-width: 50rem;
  margin: 0 auto;
  gap: 10px;
}
.btm.award-single div img {
  max-width: 160px;
}

.btm.award-single div:nth-child(2) {
  transform: translateY(-72px);
  max-width: 40rem;
}

.btm.award-single div:nth-child(3) {
  transform: translateY(-141px);
}

/* smooth scrooll wrapper */

/* .ukiyo-wrapper {
  padding-top: 7rem;
  margin-bottom: -2rem;
} */

/* footer wrapper */
.footer__top {
  background: linear-gradient(22deg, #e2e6ff, transparent);
}

.footer__top .logo a img {
  max-width: 20rem;
}

.footer__top .fix-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.footer__top .social_icons {
  display: flex;
  gap: 2rem;
}

.footer__mid .fix-container {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
}

.footer__mid .fix-container .address {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.footer__mid .fix-container .address img {
  max-width: 10rem;
}

.footer__mid h4 {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.footer__mid .fix-container .address .addr p {
  line-height: 1.9rem;
}

.footer__mid .fix-container .address .addr {
  margin-bottom: 0.8rem;
}

.footer__btm {
  text-align: center;
  padding: 1rem 0;
  background-color: #fff2f2;
}

.footer__btm p {
  font-weight: bold;
}

.footer {
  margin-top: -5rem;
}

/* dark mode */
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h6,
.dark-mode p,
.dark-mode i,
.dark-mode a,
.dark-mode button,
.dark-mode span {
  color: #fff;
}
.dark-mode {
  background-color: #1a1f27;
  color: #fff;
}
.dark-mode .hero__inner {
  background-color: #69696a;
  color: #fff;
}
.dark-mode .nav-holder {
  background-color: #232324;
  color: #fff;
}
.dark-mode .journey__inner .text_vid .texts .items .item span {
  color: #fff;
}
.dark-mode .nav_extra li.language .toggle_box {
  background-color: #232324;
}
.posts .owl-nav button span {
  background: #fff;
}
/* dark mode */
.hero.dark-mode {background-color: #69696a;}

.journey.dark-mode {
    background-color: #43494d;
}

.news.dark-mode {
    background-color: #3e4947;
}

/* arabic mode */
.arabic__lang ul.nav-left {
  order: 5;
}

.arabic__lang ul.nav-middle {
  order: 4;
  flex-direction: row-reverse;
}

.arabic__lang ul.nav_extra {
  left: 180px;
  right: unset;
}

.arabic__lang ul.nav-right {
  order: 2;
}

.arabic__lang .mobile_menu {
  order: 1;
}

.footer__top.arabic__lang .logo {
  order: 2;
}

.footer__mid.arabic__lang .address {
  order: 4;
}

.footer__mid.arabic__lang .address > img {
  order: 1;
}
@media only screen and (max-width: 1199px) {
  .fix-container {
    width: 765px;
  }
  .nav-holder ul.nav-middle {
    display: none;
  }
  .nav-holder ul.nav-right {
    display: none;
  }
  .nav-holder .mobile_menu {
    display: block;
    position: relative;
  }
  .nav-holder .mobile_menu ul.menu_list {
    position: absolute;
    right: 0;
    background-color: white;
    box-shadow: 0 0 3px gainsboro;
    border-radius: 3px;
    display: none;
  }
  ul.nav_extra {
    right: 60px;
  }
  .arabic__lang ul.nav_extra {
    left: 60px;
  }
  .nav-holder .mobile_menu ul.menu_list li {
    padding: 7px 15px;
  }

  .nav-holder .mobile_menu ul.menu_list li a {
    white-space: nowrap;
  }

  .nav-holder .mobile_menu ul.menu_list li:hover {
    background-color: aliceblue;
    cursor: pointer;
  }
  .owl-nav {
    position: absolute;
    font-size: 2.5rem;
    top: 113px;
    display: flex;
    justify-content: space-between;
    width: 96%;
    left: 2%;
  }
  .owl-dots {
    position: absolute;
    top: 26rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero__inner__main {
    width: 100%;
  }
  .hero__inner__side {
    display: none;
  }
  .hero__inner__main {
    height: 30rem;
  }
  .journey__inner .text_vid .texts .items {
    gap: 3rem;
    justify-content: flex-start;
  }
  .journey__inner .text_vid .texts .items .item {
    margin-right: 2rem;
  }
  .journey__inner .text_vid .texts {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
  .owl-carousel .owl-item img {
    height: 30rem;
  }
  .posts .owl-item img {
    height: 17rem;
  }
  .full-img video {
    max-height: 30rem;
  }
  .hero__inner__side {
    height: 30rem;
  }
  .owl-dots {
    height: 2rem;
  }
  .journey__inner .text_vid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .journey__inner .text_vid .texts .items {
    gap: 6.4rem;
    justify-content: flex-start;
    margin-bottom: 4rem;
  }

  .ecz__inner__single .contents {
    left: 45%;
    top: 50%;
    transform: scaleX(0.59) translate(-50%, -50%);
  }
  .ecz__inner__single {
    transform: scaleX(1.65);
  }
  .ecz__inner--mid {
    transform: skew(-25deg, 0deg);
  }
  .ecz__inner {
    height: 25rem;
  }

  .ecz__inner--mid .contents {
    transform: skew(25deg, 0deg) translate(-25%, -50%);
  }
  .journey__inner .text_vid .video {
    width: 90%;
    object-fit: cover;
    height: auto;
  }
  .news__inner .posts {
    flex-wrap: wrap;
    justify-content: center;
  }
  .news__inner .posts .post {
    max-width: 24rem;
  }
  .journey__inner .text_vid .texts h6 {
    top: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .fix-container {
    width: 98%;
  }
  .journey__inner .text_vid .texts .items {
    gap: 1rem;
    justify-content: flex-start;
  }
  .journey__inner .text_vid .texts .items .item {
    margin-right: 2rem;
  }
  .journey__inner .item small {
    margin-top: -16px;
    font-size: 1rem;
    height: auto;
  }
  .news__inner .posts .post {
    max-width: 98%;
  }
  .journey__inner .text_vid .texts {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
  .journey__inner .text_vid .texts h6 {
    left: -12px;
    transform: translateX(-50%) rotate(-90deg);
  }
  .arabic__lang .journey__inner .text_vid .texts h6 {
    left: unset;
    right: -12px;
    transform: translateX(50%) rotate(-90deg);
}
  /* .epz__inner__single .contents {
    left: 50%;
    transform: translateX(-50%);
  }
  .epz__inner__single.epz__inner--left .contents {
    left: 44%;
    transform: translateX(-50%);
  }

  .epz__inner__single.epz__inner--right .contents {
    left: 52%;
  } */
  .ecz__inner__single {
    transform: scaleX(2);
  }
  .ecz__inner--mid {
    transform: skew(-25deg, 0deg);
  }
  .ecz__inner__single .contents {
    left: 35%;
    transform: scaleX(0.49) translate(-50%, -50%);
  }
  .ecz__inner--mid .contents {
    transform: skew(25deg, 0deg) translate(-25%, -50%);
    left: 50%;
  }
  .arabic__lang .news_heading h2 {
    padding-left: unset;
    padding-right: 5rem;
}
  .btm.award-single div img {
    max-width: 120px;
  }
  .award .top img {
    max-width: 15rem;
  }
  .btm.award-single div:nth-child(2) {
    transform: translateY(-58px);
    max-width: 40rem;
  }

  .btm.award-single div:nth-child(3) {
    transform: translateY(-114px);
  }
  .footer__mid .fix-container {
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 458px) {
  .nav-holder {
    padding: 0 1rem;
  }
  ul.nav_extra {
    right: 26px;
  }
  .arabic__lang ul.nav_extra {
    left: 27px;
  }
  ul.nav_extra {
    gap: 0.4rem;
  }
  .journey__inner .text_vid .texts {
    width: 90%;
  }
  .journey__inner .text_vid .texts .items .item {
    margin-right: 0;
  }
  .journey {
    padding: 3rem 0;
  }
  .news_heading h2 {
    padding-left: 7rem;
    font-size: 2rem;
  }
  .arabic__lang .news_heading h2 {
    padding-left: unset;
    padding-right: 7rem;
  }
  .full-img {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }
  .nav-holder img.logo {
    max-width: 13rem;
  }
  .ecz__inner__single {
    transform: scaleX(2.2);
  }
  .ecz__inner--mid {
    transform: skew(-17deg, 0deg);
  }
  .ecz__inner--mid > img {
    width: 205%;
    transform: skew(25deg, 0deg) translateX(-25%);
  }
  .ecz__inner__single .contents {
    left: 32%;
  }
  .ecz__inner--mid .contents {
    transform: skew(17deg, 0deg) translate(-50%, -50%);
    left: 60%;
  }
  .award {
    overflow: hidden;
  }
  .award .top img {
    max-width: 10rem;
  }
  .btm.award-single div img {
    max-width: 115px;
  }
  .btm.award-single div:nth-child(2) {
    transform: translateY(-56px);
  }
  .btm.award-single div:nth-child(3) {
    transform: translateY(-112px);
  }
  .btm.award-single {
    margin-top: 5rem;
  }
} /*# sourceMappingURL=style.css.map */
