@charset "UTF-8";
/*Start Search*/
.search-btn {
  cursor: pointer; }

.searchh {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all linear .4s;
  width: 100%;
  height: 100vh;
  text-align: center;
  padding: 350px 0 0 0;
  visibility: hidden; }

.searchh .search-cont {
  margin-top: -50px; }

.searchh .search-cont form input {
  background-color: #FFF;
  border: 0;
  padding: 20px;
  width: 100%;
  color: #000;
  outline: none;
  border-radius: 50px; }

.searchh .search-cont form input::placeholder {
  color: #000;
  text-transform: capitalize; }

.searchh .search-cont form button {
  background: transparent;
  color: var(--sec);
  font-size: 30px;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  padding: 9.5px 20px;
  transition: all linear .4s; }

.searchh .search-cont form button:hover {
  background: transparent;
  transition: all linear .4s; }

#searchform {
  position: relative; }

.searchh .search-cont .search-close {
  position: absolute;
  top: 50px;
  text-align: center;
  left: 9%;
  background: var(--main);
  color: #fff;
  border: 0;
  width: 40px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  height: 40px; }

/* End Search*/
/*start nav*/
@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    width: 100%;
    z-index: 2;
    flex: 1;
    position: relative;
    padding: 5px 0 10px; }

  .nav-list {
    display: flex;
    margin-bottom: 0;
    list-style: none;
     }

  .nav-list > .link {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 5px;
    background-color: transparent; }

  .has_sub_menu {
    margin: 0 !important; }

  .has_sub_menu ~ i {
    width: 15px;
    display: inline-block;
    text-align: center;
    color: #FFF;
    transition: linear .4s; }

  .sub-list i {
    color: #000;
    transition: all linear .3s; }
    .sub-list i:hover {
      color: var(--main);
      transition: all linear .3s; }

  .nav-list > .link > a {
    display: block;
    color: #595857;
    position: relative;
    background: transparent;
    padding: 15px 3px;
    font-size: 18px;
    margin: 0 5px;
    font-family: Bahij-Bold;
    z-index: 1;
    transition: ease-in-out .5s;
    /*&:before {
      content: '';
      position: absolute;
       right: auto;
      bottom: -37px;
      width: 0%;
      height: 5px;
      background-color: var(--main);
      left: 0;
      z-index: -1;
      transition: .8s;
      transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }*/
    &:after {
      content: '';
      position: absolute;
      right: auto;
      bottom: -1px;
      width: 0%;
      height: 4px;
      background-color: var(--main);
      left: 0;
      z-index: -1;
      transition: .8s;
      transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
     } }

  .nav-list > .link:hover a,
  .nav-list > .link.active a {
    color: var(--main);
    transition: linear .5s;
    background: transparent;
    /*&:before {
       right: 0;
       left: auto;
       width: 100%;
       transition: .8s;
       transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
     }*/
    &:after {
        right: 0;
        left: auto;
        width: 100%;
        transition: .8s;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
      } }

  .sub-list {
    background-color: #FFF;
    padding: 0px 5px;
    list-style: none;
    overflow-x: hidden;
    max-height: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    min-width: 260px;
    opacity: 0;
    z-index: 4;
    transform: rotateX(180deg);
    visibility: hidden;
    display: block !important;
    transition: all linear .3s; }

  .sub-list li {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: center; }

  .sub-list li a {
    display: block;
    width: 100%;
    position: relative;
    color: #000 !important;
    transition: all linear .3s;
    padding: 5px 0 !important; }
    .sub-list li a:before {
      content: "-";
      color: #000;
      margin: 0 5px;
      transition: all linear .3s; }
    .sub-list li a:hover .sub-list li a:before {
      transition: all linear .3s;
      color: var(--main); }

  .sub-list li a.has_sub_menu {
    display: inline-block; }

  .sub-list li:last-child > a {
    margin-bottom: 0; }

  .sub-list .sub-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all .5s linear; }

  .sub-list .sub-link:hover {
    background-color: var(--sec); }

  .sub-list .sub-link:last-child {
    border-bottom: 0; }

  .nav-list .link:hover > .sub-list {
    transition: all linear .3s;
    top: 100%;
    transform: rotateX(0deg);
    visibility: visible;
    overflow: unset;
    max-height: 500px;
    opacity: 1; }

  .sub-list .sub-list {
    top: 0;
    right: 100%;
    transform: rotateX(180deg);
    transition: all linear .3s; }

  .nav-list .link .sub-list .sub-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; }

  .nav-list .link .sub-list .sub-link:hover > .sub-list {
    display: block; }

  .nav-list .link .sub-list .link:hover > .sub-list {
    transition: all linear .3s;
    right: 105%;
    visibility: visible;
    transform: rotateX(0deg);
    top: 0 !important;
    display: block; }

  .nav-btn,
  .mobile-nav-list {
    display: none; }

  /**/
  .nav-list > .link {
    text-transform: capitalize; }

  .has_sub_menu {
    margin-right: 5px; }

  .sub-list {
    right: 0; }

  .sub-list li a.has_sub_menu {
    margin-left: 5px; }

  .sub-list .sub-list {
    left: 100%; } }
@media (max-width: 992px) {
  .nav-list {
    display: none; }

  .main-nav {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0; }

  .nav-btn {
    width: 40px;
    height: 40px;
    background-color: var(--sec);
    border-radius: 0px;
    margin: 0px;
    margin-inline-end: 10px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: linear .4s; }

  .nav-btn:hover {
    transition: linear .4s;
    background-color: var(--main);
    color: #FFF; }

  .mobile-nav-list .logo {
    padding: 0 30px; }

  .mobile-nav-list .date {
    display: flex;
    margin-top: 15px;
    padding: 0 30px;
    flex-direction: column;
    justify-content: center;
    align-items: self-start; }

  .mobile-nav-list .date .lang, .mobile-nav-list .date #hijrii {
    margin: 10px 0; }

  .mobile-nav-list .l-head {
    justify-content: center; }

  .mobile-nav-list {
    display: block;
    position: fixed;
    top: 0;
    overflow: scroll;
    z-index: 5;
    text-align: center;
    height: 100%;
    width: 300px;
    padding: 60px 0;
    background-color: var(--main);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: all .5s linear; }
    .mobile-nav-list::-webkit-scrollbar-track {
      background: #FFFFFF; }
    .mobile-nav-list::-webkit-scrollbar-thumb {
      background-color: var(--main);
      border-radius: 50px; }
    .mobile-nav-list::-webkit-scrollbar {
      width: .5em; }
    .mobile-nav-list .request {
      padding: 8px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #FFF;
      background-color: var(--main);
      font-size: 16px; }
    .mobile-nav-list .phone {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px; }
      .mobile-nav-list .phone .img-phone {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border: 1px solid var(--main);
        border-radius: 50%; }
        .mobile-nav-list .phone .img-phone img {
          max-width: 20px;
          max-height: 20px; }
      .mobile-nav-list .phone p {
        font-size: 20px;
        font-family: din-bold;
        color: #000; }
      .mobile-nav-list .phone a {
        font-size: 20px;
        font-family: din-bold;
        color: #000; }
    .mobile-nav-list .social {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      /*.fa-tiktok{
        color: #111111;
        filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

      }
      .fa-linkedin-in{
        color: #0e76a8;
      }
      .fa-snapchat{
        background-color: #FFFC00;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .fa-facebook, .fa-facebook-square {
        color: #3b5998
      }
      .fa-twitter, .fa-twitter-square {
        color: #00aced
      }
      .fa-google-plus, .fa-google-plus-square {
        color: #dd4b39
      }
      .fa-youtube, .fa-youtube-play, .fa-youtube-square {
        color: #bb0000
      }
      .fa-tumblr, .fa-tumblr-square {
        color: #32506d
      }
      .fa-vine {
        color: #00bf8f
      }
      .fa-flickr {
        color: #ff0084
      }
      .fa-vimeo-square {
        color: #aad450
      }
      .fa-pinterest, .fa-pinterest-square {
        color: #cb2027
      }
      .fa-linkedin, .fa-linkedin-in-square {
        color: #007bb6
      }
      .fa-instagram {
        background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .fa-spotify {
        color: #1ED760;
      }*/ }
      .mobile-nav-list .social a {
        background-color: transparent;
        color: var(--main);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--main);
        transition: all linear .3s;
        width: 40px;
        height: 40px;
        border-radius: 50%; }
        .mobile-nav-list .social a:hover {
          border: 1px solid var(--sec);
          background-color: var(--sec);
          color: #FFF;
          transition: all linear .3s; }
      .mobile-nav-list .social i {
        font-size: 16px; }
    .mobile-nav-list .main-phone {
      display: flex;
      gap: 10px;
      margin-inline-end: 20px;
      align-items: center;
      justify-content: center; }
      .mobile-nav-list .main-phone span {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--main);
        border-radius: 50%; }
        .mobile-nav-list .main-phone span img {
          width: 16px;
          height: 22px; }
      .mobile-nav-list .main-phone a {
        font-size: 18px;
        color: #000; }

  .mobile-nav-list .link {
    font-size: 16px;
    padding: 10px 30px;
    position: relative; }

  .mobile-nav-list .link a {
    color: #000;
    display: block;
    text-align: center;
    font-weight: bold;
    width: 100%; }

  footer .sec-foot {
    margin-top: 0; }

  .mobile-nav-list .link a.has_sub_menu {
    display: inline-block;
    width: calc(100% - 40px); }

  .mobile-nav-list .link a:hover,
  .mobile-nav-list .link.active a {
    color: var(--main);
    transition: all linear .3s; }

  .mobile-nav-list .link i {
    color: #fff;
    background-color: var(--main);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform-origin: center;
    transition: all .3s linear; }

  .mobile-nav-list .link i.open {
    transform: rotate(180deg); }

  .sub-list {
    box-shadow: none;
    width: 100%;
    overflow: hidden;
    background-color: transparent; }

  .sub-list a {
    display: block;
    position: relative; }

  .sub-list .sub-link {
    border: 0;
    padding: 5px 20px;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    white-space: nowrap; }

  .sub-list .sub-list a {
    display: block;
    position: relative; }

  .trans-none {
    transform: none !important; }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all .5s ease-in-out; }

  /**/
  .mobile-nav-list {
    right: 0; }

  .mobile-nav-list .link a.has_sub_menu {
    margin-left: 5px; }

  .sub-list .sub-list a {
    padding-right: 15px; }

  .nav-overlay {
    left: 0;
    transform: translateX(-100%); } }
/*end nav*/
@font-face {
  font-family: Bahij-Bold;
  font-display: swap;
  src: url(../fonts/Bahij_TheSansArabic-Bold.ttf); }
@font-face {
  font-family: bahij-regular;
  font-display: swap;
  src: url(../fonts/bahij_thesansarabic-plain.ttf); }
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  border: none; }

img, iframe {
  max-width: 100%; }

.wrap {
  overflow: hidden; }

#loading {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 999999; }

.loaderr {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid var(--sec);
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute; }

.loaderr::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border-bottom: 4px solid var(--main);
  border-left: 4px solid transparent; }

.loading img {
  padding: 37px 22px;
  max-width: 135px; }

@keyframes rotation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
:root {
  --main: #fac10b;
  --sec: #000; }

body {
  font-family: bahij-regular; }

/* Start Scroll */
body::-webkit-scrollbar-track {
  background: #FFFFFF; }

body::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 50px; }

body::-webkit-scrollbar {
  width: .5em; }

/* End Scroll */
.e-row {
  padding: 0;
  margin: 0; }

@keyframes tran {
  from {
    right: -1px; }
  to {
    right: 98%; } }
@keyframes mymove {
  from {
    left: 85%; }
  to {
    left: 0%; } }
@keyframes mymove2 {
  from {
    left: 85%; }
  to {
    left: 0%; } }
.main-hover {
  padding: 3px 20px;
  width: 180px;
  height: 50px;
  color: #FFF;
  z-index: 2;
  background-color: var(--sec);
  border: 0px solid var(--main);
  position: relative;
  text-transform: capitalize;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  transition: .3s;
  overflow: visible;
  font-family: Bahij-Bold; }
  .main-hover:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    border-radius: 50px;
    left: -30px;
    top: 0;
    z-index: -2;
    transition: .6s;
    background-color: var(--main);
    transition-timing-function: cubic-bezier(0.52, 1.74, 0.37, 0.76); }
  .main-hover:after {
    content: '';
    position: absolute;
    bottom: 0px;
    height: 100%;
    width: 100%;
    background-color: var(--sec);
    right: 0px;
    z-index: -1;
    border-radius: 25px;
    transition: .6s; }

.main-hover:hover {
  transition: .8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  color: #000;
  background-color: transparent;
  border: 0px solid transparent; }
  .main-hover:hover:before {
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .8s;
    border-radius: 25px;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); }
  .main-hover:hover:after {
    transition: .4s;
    background-color: transparent;
    right: 0px;
    bottom: 0;
    width: 0%;
    height: 100%;
    z-index: -1; }

.main-header {
  font-size: 64px;
  color: #000;
  font-family: Bahij-Bold;
  z-index: 1;
  margin: 0 auto;
  margin-bottom: 30px;
  flex-direction: row;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px; }
  .main-header img {
    max-width: 70px;
    max-height: 50px;
    margin-inline-end: 10px;
    width: auto;
    filter: invert(52%) sepia(75%) saturate(299%) hue-rotate(3deg) brightness(89%) contrast(84%); }
  .main-header span {
    color: var(--main);
    font-family: Bahij-Bold; }

body {
  font-family: bahij-regular;
  overflow-x: hidden; }

h1, h2, h3, h4, h5 {
  font-family: Bahij-Bold; }

.main-hover.big {
  width: 200px; }

.main-hover.solid {
  background-color: transparent;
  border: 1px solid var(--main);
  color: var(--main); }
  .main-hover.solid i {
    color: var(--main); }
  .main-hover.solid:hover {
    border: 1px solid transparent;
    color: #FFF; }

/**/
header {
  position: relative;
  width: 100%;
  z-index: 2;
  background-color: #FFF; }
  header .sts-header .btn-drop {
    background-color: transparent !important;
    color: #000 !important;
    border: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: Bahij-Bold; }
    header .sts-header .btn-drop:hover {
      box-shadow: none !important; }
    header .sts-header .btn-drop:after {
      display: none; }
    header .sts-header .btn-drop img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 50%; }
    header .sts-header .btn-drop i {
      color: #42bf39; }
  header .sts-header .dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-family: Bahij-Bold;
    color: #000; }
    header .sts-header .dropdown-menu a img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 50%; }
  header .bottom-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative; }
    header .bottom-header:before {
      content: '';
      background-image: url("../img/bg-menu.png");
      background-size: 100% auto;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      z-index: 1;
      pointer-events: none;
      height: 105px; }
    header .bottom-header .request {
      padding: 13px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #FFF;
      background-color: var(--main);
      font-size: 16px; }
  header .request {
    padding: 8px 29px;
    display: flex;
    border-radius: 20px;
    font-family: 'Bahij-Bold';
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000;
    background-color: var(--main);
    font-size: 16px; }
  header .icon-menu {
    position: relative; }
    header .icon-menu .mini-cart-items {
      background-color: #f05455;
      width: 20px;
      height: 20px;
      position: absolute;
      border-radius: 50%;
      top: 0px;
      right: -8px;
      color: #FFF;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center; }
  header .top-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 0; }
    header .top-phone .in-top-phone {
      display: flex;
      align-items: center;
      gap: 10px; }
      header .top-phone .in-top-phone i {
        font-size: 14px;
        color: var(--sec); }
      header .top-phone .in-top-phone a {
        font-family: Bahij-Bold;
        color: #000;
        font-size: 14px; }
  header .fi-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 25px; }
    header .fi-head a {
      color: var(--main);
      font-size: 14px; }
    header .fi-head img {
      width: 20px;
      height: 20px; }
  header .top-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    position: relative; }
    header .top-head .main-top-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 15px 0;
      gap: 15px; }
      header .top-head .main-top-header .ses-img {
        width: auto;
        max-width: 150px;
        height: auto;
        max-height: 100px; }
      header .top-head .main-top-header .l-header {
        display: flex;
        gap: 10px;
        align-items: flex-end; }
        header .top-head .main-top-header .l-header .makan-head {
          border-inline-end: 3px solid #f6d9e0;
          padding-inline-end: 18px; }
          header .top-head .main-top-header .l-header .makan-head p:nth-of-type(1) {
            font-family: Bahij-Bold;
            margin-bottom: 10px;
            font-size: 24px;
            color: #342b68;
            text-align: left; }
          header .top-head .main-top-header .l-header .makan-head p:nth-of-type(2) {
            font-family: Bahij-Bold;
            margin-bottom: 10px;
            font-size: 14px;
            color: #9dcdca;
            text-align: left; }
          header .top-head .main-top-header .l-header .makan-head p:nth-of-type(3) {
            font-family: Bahij-Bold;
            margin-bottom: 0px;
            font-size: 16px;
            color: #342b68;
            text-align: left;
            direction: ltr; }
            header .top-head .main-top-header .l-header .makan-head p:nth-of-type(3) i {
              color: #9dcdca;
              direction: ltr;
              font-size: 16px;
              margin-inline-end: 7px; }
    header .top-head .f-head {
      display: flex;
      align-items: center;
      justify-content: space-between; }
    header .top-head .regis-link-head {
      color: #efd2d6; }
      header .top-head .regis-link-head:before, header .top-head .regis-link-head:after {
        background-color: #3d365e; }
  header .logo-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; }
    header .logo-top img {
      max-width: 100%;
      max-height: 100%; }
  header .logo img {
    width: auto;
    max-width: 275px;
    height: auto;
    max-height: 80px; }
  header .menu-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; }
    header .menu-icons .request {
      height: 40px;
      display: flex;
      width: 130px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #000;
      border-radius: 0px;
      background-color: var(--main);
      font-size: 16px; }
    header .menu-icons .lang {
      width: 40px;
      height: 40px;
      display: flex;
      color: #FFF;
      align-items: center;
      justify-content: center;
      background-color: var(--sec);
      transition: linear .2s;
      border-radius: 50%;
      font-size: 18px;
      font-family: Bahij-Bold; }
      header .menu-icons .lang img {
        width: 40px;
        height: 40px;
        border-radius: 0%; }
      header .menu-icons .lang:hover {
        color: #FFF;
        transition: linear .2s; }
    header .menu-icons .main-phone {
      display: flex;
      gap: 10px;
      margin-inline-end: 20px;
      align-items: center;
      justify-content: center; }
      header .menu-icons .main-phone span {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--main);
        border-radius: 50%; }
        header .menu-icons .main-phone span img {
          width: 16px;
          height: 22px; }
      header .menu-icons .main-phone a {
        font-size: 18px;
        color: #000; }
    header .menu-icons .phone {
      display: flex;
      align-items: center;
      gap: 10px; }
      header .menu-icons .phone .img-phone {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border: 1px solid var(--main);
        border-radius: 50%; }
        header .menu-icons .phone .img-phone img {
          max-width: 20px;
          max-height: 20px; }
      header .menu-icons .phone p {
        font-size: 20px;
        font-family: Bahij-Bold;
        color: #000; }
      header .menu-icons .phone a {
        font-size: 20px;
        font-family: Bahij-Bold;
        color: #000; }
    header .menu-icons .search-btn {
      background-color: var(--sec);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
      border: 0px solid transparent;
      border-radius: 0%;
      width: 50px;
      height: 50px;
      color: #FFF;
      transition: linear .2s;
      text-align: center; }
      header .menu-icons .search-btn:hover {
        transition: all linear .2s; }
  header .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /*.fa-tiktok{
      color: #111111;
      filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

    }
    .fa-linkedin-in{
      color: #0e76a8;
    }
    .fa-snapchat{
      background-color: #FFFC00;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-facebook, .fa-facebook-square {
      color: #3b5998
    }
    .fa-twitter, .fa-twitter-square {
      color: #00aced
    }
    .fa-google-plus, .fa-google-plus-square {
      color: #dd4b39
    }
    .fa-youtube, .fa-youtube-play, .fa-youtube-square {
      color: #bb0000
    }
    .fa-tumblr, .fa-tumblr-square {
      color: #32506d
    }
    .fa-vine {
      color: #00bf8f
    }
    .fa-flickr {
      color: #ff0084
    }
    .fa-vimeo-square {
      color: #aad450
    }
    .fa-pinterest, .fa-pinterest-square {
      color: #cb2027
    }
    .fa-linkedin, .fa-linkedin-in-square {
      color: #007bb6
    }
    .fa-instagram {
      background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-spotify {
      color: #1ED760;
    }*/ }
    header .social a {
      background-color: transparent;
      color: var(--main);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--main);
      transition: all linear .3s;
      width: 40px;
      height: 40px;
      border-radius: 50%; }
      header .social a:hover {
        border: 1px solid var(--sec);
        background-color: var(--sec);
        color: #FFF;
        transition: all linear .3s; }
    header .social i {
      font-size: 16px; }

.new-top-header {
  position: absolute;
  width: 100%;
  padding: 50px 0 0;
  z-index: 2;
  display: flex;
  justify-content: center; }

.none-head {
  display: none !important; }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  30% {
    transform: rotate(90deg); }
  60% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(360deg); } }
.inside-head .nav-list > .link > a {
  color: #000; }

.inside-head .nav-list > .link:hover a, .inside-head .nav-list > .link.active a {
  color: #FFF; }

.fixed-social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  display: flex;
  font-size: 18px;
  z-index: 99;
  flex-direction: column;
  gap: 15px;
  align-items: center; }
  .fixed-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: Bahij-Bold;
    border-radius: 10px;
    background-color: #6d6e71;
    color: var(--main);
    transition: all linear .3s;
    width: 50px;
    height: 50px; }
    .fixed-social a img {
      width: 100%;
      height: 100%;
      border-radius: 10px; }
    .fixed-social a i {
      font-size: 24px;
      color: #FFF;
      transition: all linear .3s; }
    .fixed-social a:hover {
      transition: all linear .3s;
      background-color: var(--main);
      box-shadow: 0 0 43px rgba(0, 0, 0, 0.24); }
      .fixed-social a:hover i {
        transition: all linear .3s;
        color: #FFF; }
  .fixed-social .to-up {
    width: 36px;
    height: 36px; }
    .fixed-social .to-up img {
      width: 100%;
      height: 100%; }

/**/
/*start slider*/
@keyframes test {
  from {
    left: 0%;
    transform: translateX(0%) translateY(-50%);
    opacity: 0; }
  to {
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    opacity: 1; } }
@-webkit-keyframes to-down {
  0% {
    bottom: 60px;
    opacity: 0; }
  30% {
    bottom: 45px;
    opacity: 1; }
  100% {
    bottom: 30px;
    opacity: 0; } }
@keyframes to-down {
  0% {
    bottom: 60px;
    opacity: 0; }
  50% {
    bottom: 40px;
    opacity: 1; }
  100% {
    bottom: 20px;
    opacity: 0; } }
.top-slider {
  position: relative;
  overflow: hidden; }

.mainslider .item {
  position: relative; }
  .mainslider .item img {
    height: 750px;
    width: 100%; }
  .mainslider .item .btn-slider {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 170px;
    height: 38px;
    border-start-start-radius: 20px;
    border-end-start-radius: 20px;
    font-family: Bahij-Bold;
    font-size: 18px;
    color: #FFF;
    display: flex;
    background-color: var(--main);
    line-height: 33px;
    justify-content: center; }

.mainslider .item .in-item h2 {
  font-size: 55px;
  color: var(--main);
  font-family: Bahij-Bold;
  margin-bottom: 25px; }

.mainslider .item .in-item p {
  font-size: 18px;
  color: #FFF;
  text-align: center;
  margin-bottom: 35px;
  font-family: 'bahij-regular'; }

.mainslider .item .in-item {
  transition: linear .4s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; }
  .mainslider .item .in-item img {
    width: auto;
    height: auto;
    max-height: 100%; }

/*.mainslider .owl-item.active .in-item .bott-slider {
  animation: zoomIn 1.1s linear 1;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  transition: linear .4s; }

.mainslider .owl-item.active .in-item img {
  animation: zoomIn 1.1s linear 1;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  transition: linear .4s; }*/

.mainslider .owl-nav {
  top: 50%;
  left: 0;
  position: absolute;
  gap: 10px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px; }

.mainslider .owl-nav .owl-prev i, .mainslider .owl-nav .owl-next i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FFF;
  border-radius: 0%;
  background-color: var(--main);
  transition: linear .4s; }

.mainslider .owl-nav .owl-prev i:hover, .mainslider .owl-nav .owl-next i:hover {
  transition: linear .4s;
  color: #FFF;
  background-color: var(--sec); }

.mainslider .owl-dots {
  text-align: center;
  position: absolute;
  right: 10%;
  bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px; }
  .mainslider .owl-dots .owl-dot {
    width: 20px !important;
    height: 20px !important;
    background-color: transparent !important;
    transition: all linear .4s;
    border-radius: 0%;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center; }
    .mainslider .owl-dots .owl-dot span {
      width: 8px;
      height: 8px;
      background-color: transparent;
      border-radius: 0%;
      display: block;
      transition: all linear .4s; }
  .mainslider .owl-dots .owl-dot.active {
    transition: all linear .4s;
    border: 1px solid var(--main) !important; }
    .mainslider .owl-dots .owl-dot.active span {
      background-color: var(--main);
      transition: all linear .4s; }

.mainslider .owl-nav .owl-prev i:hover, .mainslider .owl-nav .owl-next i:hover {
  transition: linear .4s; }

@-webkit-keyframes drop-down {
  0% {
    bottom: -10px;
    opacity: 0; }
  25% {
    bottom: -25px;
    opacity: 1; }
  50% {
    bottom: -40px;
    opacity: 1; }
  75% {
    bottom: -55px;
    opacity: 1; }
  100% {
    bottom: -70px;
    opacity: 0; } }
@keyframes drop-down {
  0% {
    bottom: -10px;
    opacity: 0; }
  25% {
    bottom: -25px;
    opacity: 1; }
  50% {
    bottom: -40px;
    opacity: 1; }
  75% {
    bottom: -55px;
    opacity: 1; }
  100% {
    bottom: -70px;
    opacity: 0; } }
.bot-slider {
  background-color: #f5f5f5;
  position: relative;
  z-index: 1;
  margin-top: -50px;
  box-shadow: 3px 0 13px rgba(0, 0, 0, 0.19);
  padding: 25px 30px; }
  .bot-slider .in-bot-slider {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--main);
    font-size: 16px;
    border: 1px solid var(--main);
    background-color: #FFF;
    transition: all linear .4s; }
    .bot-slider .in-bot-slider i {
      font-size: 22px; }
    .bot-slider .in-bot-slider:hover {
      transition: all linear .4s;
      background-color: var(--main);
      color: #FFF; }

/*end slider*/
/*start who*/
@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  30% {
    transform: rotate(90deg); }
  60% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(360deg); } }
.who {
  padding: 70px 0; }
  .who .tit-who h1 {
    font-size: 48px;
    color: var(--main);
    text-align: center;
    line-height: 70px; }
  .who .r-who {
    position: relative;
    text-align: center; }
    .who .r-who img {
      max-height: 200px;
      max-width: 100%; }

.who .in-who {
  position: relative;
  z-index: 3; }

.who .in-who h4 {
  font-size: 48px;
  font-family: Bahij-Bold;
  color: #595857;
  margin-bottom: 15px; }

.who .in-who p {
  font-size: 16px;
  color: #777777;
  margin-bottom: 0px;
  text-align: justify;
  font-family: bahij-regular; }

.who .in-who p p {
  margin-bottom: 0; }

.who .in-who .main-hover {
  margin: 30px auto 0;
  display: flex; }

.who .in-who br {
  display: none; }

.who .in-who h1 {
  margin-bottom: 30px;
  color: #000;
  font-size: 72px; }

.who .in-who p span {
  font-size: 24px;
  color: var(--sec);
  display: block;
  font-family: Bahij-Bold;
  margin-bottom: 10px; }

.bot-who {
  padding: 50px 0 0px;
  position: relative; }
  .bot-who .vision {
    background: var(--main);
    padding: 40px 0;
    align-items: center; }
    .bot-who .vision .nav-tabs {
      display: flex;
      flex-direction: column;
      gap: 20px;
      border-bottom: 0; }
      .bot-who .vision .nav-tabs li {
        text-align: center; }
      .bot-who .vision .nav-tabs .main-hover {
        color: #FFF;
        font-size: 20px;
        border-color: #FFF; }
        .bot-who .vision .nav-tabs .main-hover i {
          transform: rotate(-45deg);
          transition: all linear .3s; }
        .bot-who .vision .nav-tabs .main-hover:before, .bot-who .vision .nav-tabs .main-hover:after {
          background-color: var(--sec); }
        .bot-who .vision .nav-tabs .main-hover.active, .bot-who .vision .nav-tabs .main-hover:hover {
          transition: .8s;
          transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
          color: #000;
          background-color: transparent;
          border: 1px solid transparent; }
          .bot-who .vision .nav-tabs .main-hover.active i, .bot-who .vision .nav-tabs .main-hover:hover i {
            transform: rotate(0deg); }
          .bot-who .vision .nav-tabs .main-hover.active:before, .bot-who .vision .nav-tabs .main-hover:hover:before {
            left: 0px;
            top: 0;
            width: 50%;
            height: 100%;
            z-index: -1;
            transition: .4s; }
          .bot-who .vision .nav-tabs .main-hover.active:after, .bot-who .vision .nav-tabs .main-hover:hover:after {
            transition: .4s;
            right: 0px;
            bottom: 0;
            width: 50%;
            height: 100%;
            z-index: -1; }
    .bot-who .vision .main-vision {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      gap: 20px; }
      .bot-who .vision .main-vision .in-vision {
        display: flex;
        gap: 20px;
        align-items: center; }
        .bot-who .vision .main-vision .in-vision img {
          max-width: 60px;
          max-height: 60px; }
        .bot-who .vision .main-vision .in-vision h2 {
          font-size: 42px;
          font-family: Bahij-Bold;
          color: var(--sec); }
      .bot-who .vision .main-vision p {
        font-size: 19px;
        color: #FFF;
        margin-bottom: 0; }
    .bot-who .vision:last-of-type {
      margin-bottom: 0; }

.who .in-who .main-hover.solid {
  border: 1px solid #FFF;
  color: #FFF;
  margin-top: 30px; }
  .who .in-who .main-hover.solid i {
    color: #FFF; }
  .who .in-who .main-hover.solid:hover {
    border: 1px solid transparent; }

.main-hover.more {
  width: 40px;
  height: 40px;
  justify-content: center; }
  .main-hover.more:hover i {
    margin-bottom: 0 !important; }
  .main-hover.more:hover:before {
    display: none; }

.chairman {
  padding: 0px 0; }
  .chairman .chairman-img img {
    max-height: 300px;
    max-width: 300px;
    height: auto;
    width: auto;
    border-radius: 50%; }
  .chairman .chairman-cont h2 {
    font-size: 44px;
    color: #FFF;
    margin-bottom: 30px;
    font-family: Bahij-Bold; }
  .chairman .chairman-cont p {
    color: #FFF;
    font-size: 24px;
    margin-bottom: 0; }

/*end who*/
/*start gallery*/
.gallery {
  padding: 40px 0 70px; }

.main-gallery {
  position: relative;
  width: 100%;
  height: 250px;
  transition: all linear .3s; }
  .main-gallery img {
    width: 100%;
    height: 100%; }
  .main-gallery .in-gallery {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 62, 102, 0.5);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear .3s; }
    .main-gallery .in-gallery i {
      color: #FFF;
      font-size: 80px;
      transition: all linear .3s; }
  .main-gallery:hover {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.49);
    transition: all linear .3s; }
    .main-gallery:hover i {
      color: var(--main);
      transition: all linear .3s; }

/*end gallery*/
/*start why*/
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0; } }
.why {
  position: relative;
  padding: 70px 0px;
  overflow: hidden;
  background-image: url("../img/bot-why.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center; }
  .why:before {
    content: url(../img/l-why.png);
    position: absolute;
    top: 0px;
    left: 175px; }
  .why .vid-img {
    max-width: 100%;
    width: 500px;
    border-radius: 50%;
    margin: 0 auto;
    height: 500px;
    border: 10px solid var(--main);
    transition: linear .3s;
    display: block; }
    .why .vid-img img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 50%; }
  .why .why-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px; }
    .why .why-item .img-why {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-image: url("../img/bg-why.png");
      background-repeat: no-repeat;
      background-size: auto 100%;
      background-position: right;
      display: flex;
      align-items: center;
      justify-content: center; }
      .why .why-item .img-why img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto; }
    .why .why-item .cont-why {
      flex: 1;
      margin-inline-start: 15px; }
    .why .why-item h3 {
      font-size: 24px;
      color: var(--sec);
      margin-bottom: 15px; }
    .why .why-item p {
      font-size: 16px;
      color: #636363;
      margin-bottom: 0px; }

/*end why*/
/*start product*/
.product {
  padding: 70px 0; }
  .product .nav-tabs {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 0; }
    .product .nav-tabs a {
      position: relative;
      font-size: 16px;
      color: #595857;
      padding-bottom: 5px;
      transition: all linear .3s; }
      .product .nav-tabs a:before {
        height: 4px;
        content: '';
        background-color: var(--main);
        bottom: 0;
        position: absolute;
        right: 0;
        width: 0;
        left: auto;
        transition: all linear .3s; }
      .product .nav-tabs a:hover, .product .nav-tabs a.active {
        color: var(--main); }
        .product .nav-tabs a:hover:before, .product .nav-tabs a.active:before {
          width: 100%;
          left: 0;
          right: auto; }

.main-pro {
  width: 100%;
  height: 300px;
  border: 1px solid #919191;
  border-radius: 10px;
  transition: all linear .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; }
  .main-pro img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto; }
  .main-pro .in-pro {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all linear .3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
    .main-pro .in-pro h5 {
      font-size: 26px;
      color: #FFF;
      margin-bottom: 15px;
      font-family: bahij-regular;
      transform: translateX(200px);
      transition: linear .3s; }
    .main-pro .in-pro .price {
      transform: translateX(200px); }
    .main-pro .in-pro a {
      width: 150px;
      height: 40px;
      background-color: var(--main);
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: linear .3s;
      transform: translateX(200px);
      border-radius: 20px; }
      .main-pro .in-pro a:hover {
        color: #FFF;
        transition: linear .3s; }
  .main-pro:hover {
    transition: all linear .3s;
    border: 1px solid var(--main); }
    .main-pro:hover .in-pro {
      width: 100%;
      right: auto;
      left: 0;
      opacity: 1;
      visibility: visible;
      pointer-events: visible; }
      .main-pro:hover .in-pro h5 {
        transform: translateX(0px);
        transition: linear .3s;
        transition-delay: .4s; }
      .main-pro:hover .in-pro .price {
        transform: translateX(0px);
        transition: linear .3s;
        transition-delay: .45s; }
      .main-pro:hover .in-pro a {
        transform: translateX(0px);
        transition: linear .3s;
        transition-delay: .5s; }

.main-hover.bot-pro {
  width: 200px;
  height: 50px;
  display: flex;
  margin: 10px auto 0; }
  .main-hover.bot-pro:before {
    margin-top: -70px; }
  .main-hover.bot-pro:hover i {
    margin-bottom: -70px; }
  .main-hover.bot-pro:hover:before {
    margin-top: 0px; }

/*end product*/
/*start media*/
.mediaa {
  padding: 70px 0 0;
  background-image: url("../img/bg-media.png");
  background-size: 100% auto;
  background-repeat: no-repeat; }
  .mediaa .main-header {
    color: #FFF; }

.main-media {
  position: relative;
  height: 250px;
  width: 100%; }
  .main-media img {
    height: 100%;
    width: 100%;
    object-fit: fill; }
  .main-media .in-media {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all linear .3s; }
    .main-media .in-media a {
      font-size: 18px;
      color: var(--main); }
      .main-media .in-media a i {
        margin-inline-start: 5px;
        font-size: 22px; }
      .main-media .in-media a:hover {
        color: var(--main); }
  .main-media:hover .in-media {
    opacity: 1;
    visibility: visible;
    top: 0;
    bottom: auto;
    height: 100%; }

/*end media*/
/*start sponsor*/
.sponsor {
  padding: 50px 0;
  background-image: url("../img/bg-proj.png");
  background-repeat: no-repeat;
  background-size: 100% 100%; }
  .sponsor .nav-tabs {
    display: flex;
    align-items: center;
    margin: 0 auto 50px;
    border: 0;
    justify-content: center; }
    .sponsor .nav-tabs li a {
      font-size: 16px;
      color: #c6c6c6;
      position: relative;
      display: inline-flex;
      padding: 0 40px 12px;
      border-bottom: 1px solid var(--main);
      transition: all linear .3s;
      font-family: Bahij-Bold; }
      .sponsor .nav-tabs li a:before {
        content: '';
        width: 0%;
        bottom: -1px;
        right: auto;
        position: absolute;
        left: 0;
        background-color: #1075b0;
        height: 4px;
        transition: .8s;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); }
      .sponsor .nav-tabs li a:hover, .sponsor .nav-tabs li a.active {
        color: #1075b0;
        transition: all linear .3s; }
        .sponsor .nav-tabs li a:hover:before, .sponsor .nav-tabs li a.active:before {
          transition: .8s;
          transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
          right: 0;
          left: auto;
          width: 100%; }
  .sponsor .main-sponsor {
    border: 1px solid var(--main);
    padding: 50px; }

.in-sponsor {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .in-sponsor img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: cover; }

/*end sponsor*/
/*start news*/
.news {
  padding: 30px 0 100px;
  position: relative; }
  .news .main-header {
    margin: 0 auto 40px; }
  .news .main-news {
    display: flex;
    flex-direction: column;
    width: 100%; }
    .news .main-news .img-news {
      width: 100%;
      height: 350px;
      position: relative;
      overflow: hidden; }
      .news .main-news .img-news img {
        width: 100%;
        height: 100%; }
      .news .main-news .img-news:before {
        content: '';
        background-color: #383158;
        opacity: .5;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 0;
        transition: all linear .3s; }
    .news .main-news .in-news {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-image: url("../img/bg-news.png");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      transition: all linear .3s;
      width: 100%;
      height: 350px;
      padding: 0 30px; }
      .news .main-news .in-news h4 {
        font-size: 28px;
        margin-bottom: 25px;
        color: #3b3860;
        font-family: Bahij-Bold;
        text-align: center; }
      .news .main-news .in-news p {
        font-size: 16px;
        margin-bottom: 50px;
        color: #6d6e71;
        font-family: Bahij-Bold;
        text-align: center; }
      .news .main-news .in-news a {
        font-size: 18px;
        margin-bottom: 0px;
        color: #4e4e4e;
        font-family: Bahij-Bold;
        text-align: center;
        transition: all linear .3s; }
    .news .main-news:hover .img-news:before {
      transition: all linear .3s;
      width: 100%; }
    .news .main-news:hover .in-news {
      box-shadow: 0 0 59px rgba(0, 0, 0, 0.5);
      transition: all linear .3s; }
      .news .main-news:hover .in-news a {
        transition: all linear .3s;
        color: var(--main); }
  .news .col-lg-4:nth-of-type(2) .main-news {
    flex-direction: column-reverse; }

/*end news*/
/*start service*/
.service {
  padding: 70px 0;
  background-image: url("../img/bg-serv.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .service .main-header {
    color: #FFF; }
  .service .col-lg-3 {
    border-inline-end: 1px solid #FFF; }
  .service .col-lg-3:nth-of-type(4n + 4) {
    border-inline-end: 0; }
  .service .more-serv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    font-size: 36px;
    text-align: center;
    color: var(--sec);
    margin-bottom: 0;
    font-family: Bahij-Bold; }

.main-serv {
  padding: 0px 0 10px;
  transition: all linear .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px; }
  .main-serv img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    transition: linear .3s transform; }
  .main-serv h2 {
    font-size: 24px;
    font-family: Bahij-Bold;
    color: #FFF;
    margin-bottom: 0;
    position: relative; }
  .main-serv p {
    font-size: 16px;
    font-family: bahij-regular;
    color: #000;
    margin-bottom: 0; }
  .main-serv a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 18px;
    margin-inline-start: auto;
    transition: all linear .3s; }
  .main-serv:hover {
    transition: linear .4s; }
    .main-serv:hover h2 {
      transition: linear .3s;
      color: var(--sec); }
    .main-serv:hover img {
      filter: brightness(0) saturate(100%) invert(67%) sepia(68%) saturate(569%) hue-rotate(347deg) brightness(101%) contrast(94%);
      transform: rotateY(360deg);
      transition: linear .3s transform; }
    .main-serv:hover a {
      color: #000;
      background-color: var(--sec);
      border: 1px solid transparent; }

.bord-service {
  border-color: #868686;
  margin: 0; }

/*end service*/
/*start project*/
.project {
  padding: 70px 0;
  position: relative; }
  .project .main-header {
    color: var(--main); }
  .project:before {
    content: url("../img/proj.png");
    left: 10px;
    top: 0;
    position: absolute;
    pointer-events: none; }
  .project .nav-tabs {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 0; }
    .project .nav-tabs li {
      position: relative; }
    .project .nav-tabs .main-hover {
      z-index: 2;
      font-size: 20px;
      position: relative;
      justify-content: center;
      background-color: #FFF;
      overflow: visible; }
      .project .nav-tabs .main-hover span {
        position: absolute;
        top: 70%;
        z-index: 1;
        clip-path: polygon(0 0, 50% 100%, 100% 0);
        background-color: var(--sec);
        left: 50%;
        transform: translateX(-50%);
        width: 28px;
        height: 12px;
        opacity: 0;
        pointer-events: none;
        transition: all linear 0.3s; }
      .project .nav-tabs .main-hover:before, .project .nav-tabs .main-hover:after {
        background-color: var(--sec); }
      .project .nav-tabs .main-hover.active, .project .nav-tabs .main-hover:hover {
        transition: .8s;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        color: #000;
        background-color: transparent;
        border: 1px solid transparent; }
        .project .nav-tabs .main-hover.active span, .project .nav-tabs .main-hover:hover span {
          top: 98%;
          opacity: 1; }
        .project .nav-tabs .main-hover.active:before, .project .nav-tabs .main-hover:hover:before {
          left: 0px;
          top: 0;
          width: 50%;
          height: 100%;
          z-index: -1;
          transition: .4s; }
        .project .nav-tabs .main-hover.active:after, .project .nav-tabs .main-hover:hover:after {
          transition: .4s;
          right: 0px;
          bottom: 0;
          width: 50%;
          height: 100%;
          z-index: -1; }
  .project .main-sponsor {
    padding: 50px 0 0; }

.main-proj {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  gap: 25px;
  position: relative;
  transition: all linear .3s; }
  .main-proj img {
    width: 100%;
    height: 320px;
    object-fit: fill;
    transition: all linear .3s; }
  .main-proj .bot-proj {
    position: absolute;
    width: 100%;
    padding: 20px 30px;
    bottom: 0;
    right: 0;
    width: 100%;
    min-height: 80px;
    background-color: rgba(247, 173, 39, 0.7);
    transition: all linear .3s; }
    .main-proj .bot-proj a {
      font-size: 22px;
      color: #FFF;
      width: 90%;
      display: flex;
      transition: all linear .3s; }
  .main-proj h2 {
    color: #6d6e71;
    font-size: 23px;
    font-family: Bahij-Bold;
    margin-bottom: 0;
    transition: all linear .3s; }
  .main-proj:hover {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.17); }
    .main-proj:hover img {
      transform: scale(1.03); }
    .main-proj:hover .bot-proj {
      background-color: rgba(14, 64, 107, 0.7); }
      .main-proj:hover .bot-proj a {
        color: var(--sec); }
    .main-proj:hover h2 {
      color: var(--main); }

/*end project*/
/*start values*/
.values {
  padding: 70px 0; }
  .values .values-sec {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 1em; }
    .values .values-sec .item:nth-of-type(2n + 1) {
      padding: 35px 0; }
      .values .values-sec .item:nth-of-type(2n + 1):before {
        background-image: url("../img/valuesbg-1.png");
        top: 0; }
    .values .values-sec .item:nth-of-type(2n + 2) {
      padding: 15px 0; }
      .values .values-sec .item:nth-of-type(2n + 2):before {
        background-image: url("../img/valuesbg-2.png");
        bottom: 0; }
    .values .values-sec .item {
      grid-column: span 2;
      grid-row: span 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      flex-direction: column;
      gap: 15px;
      background-color: #d6e9f9; }
      .values .values-sec .item:before {
        content: '';
        position: absolute;
        right: -1px;
        z-index: 1;
        width: 101%;
        height: 35px;
        background-repeat: no-repeat;
        background-size: 100% 100%; }
      .values .values-sec .item img {
        max-width: 70px;
        max-height: 70px; }
      .values .values-sec .item h2 {
        font-size: 20px;
        font-family: Bahij-Bold;
        color: var(--main);
        margin-bottom: 0;
        text-align: center; }

/*end values*/
/*start certificates*/
.certificates {
  padding: 90px 0 160px;
  position: relative;
  overflow: hidden; }
  .certificates:before {
    content: url("../img/certificates-bg.png");
    right: 0px;
    bottom: -34px;
    position: absolute;
    pointer-events: none; }
  .certificates img {
    height: 360px;
    width: 100%; }
  .certificates .owl-dots {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translatex(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px; }
    .certificates .owl-dots .owl-dot {
      width: 20px !important;
      height: 20px !important;
      background-color: var(--main) !important;
      transition: all linear .4s;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      /* span{
         width: 8px;
         height: 8px;
         background-color: transparent;
         border-radius: 50%;
         display: block;
         transition: all linear .4s;
       }*/ }
    .certificates .owl-dots .owl-dot.active {
      /*span{
        background-color: var(--main);
        transition: all linear .4s;
      }*/
      background-color: var(--sec) !important;
      transition: all linear .4s; }

/*end certificates*/
/*start blog*/
.bolg {
  padding: 55px 0 0; }

.main-bloog .img-bloog {
  position: relative;
  border-radius: 10px 10px  0 0px;
  height: 250px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px; }
  .main-bloog .img-bloog img {
    width: 100%;
    height: 100%;
    object-fit: fill; }
  .main-bloog .img-bloog:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all linear .3s; }
.main-bloog h2 {
  font-size: 26px;
  font-family: Bahij-Bold;
  color: #000;
  margin-bottom: 20px;
  transition: all linear .3s; }
.main-bloog p {
  color: #9b9b9b;
  margin-bottom: 40px;
  font-size: 16px;
  transition: all linear .3s; }
.main-bloog .moree {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #6d6e71;
  font-size: 18px;
  margin-bottom: 10px;
  transition: all linear .3s; }
.main-bloog:hover .img-bloog:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }
.main-bloog:hover h2 {
  color: var(--main); }
.main-bloog:hover p {
  color: #6d6e71; }
.main-bloog:hover .moree {
  color: var(--main); }

/*end blog*/
/*start qusetion*/
.common-qusetion {
  padding: 55px 0 0; }
  .common-qusetion li {
    list-style: none; }
  .common-qusetion .allque {
    width: 100%;
    position: relative; }
    .common-qusetion .allque .top-qusetion {
      padding: 20px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 10px;
      box-shadow: 0 0 16px rgba(0, 0, 0, 0.24);
      font-family: Bahij-Bold;
      color: #6d6e71;
      position: relative;
      font-size: 16px;
      width: 100%;
      transition: all linear .3s; }
      .common-qusetion .allque .top-qusetion i {
        transition: all linear .3s; }
    .common-qusetion .allque p {
      display: flex;
      flex-direction: column;
      gap: 20px;
      color: #000;
      font-size: 18px;
      margin-bottom: 0;
      padding: 30px;
      width: 100%;
      line-height: 30px;
      border-radius: 10px;
      background-color: #FFF;
      z-index: 2;
      position: absolute;
      top: 98%;
      box-shadow: 0 0 16px rgba(0, 0, 0, 0.24);
      right: 0; }
      .common-qusetion .allque p a {
        display: flex;
        align-items: center;
        gap: 30px;
        color: #6d6e71;
        font-family: Bahij-Bold;
        font-size: 18px;
        transition: all linear .3s; }
        .common-qusetion .allque p a:hover {
          color: var(--main); }
    .common-qusetion .allque .active {
      background-color: var(--main);
      color: #FFF;
      z-index: 3;
      box-shadow: 0 0 16px rgba(0, 0, 0, 0); }
      .common-qusetion .allque .active i {
        transform: scaleY(-1); }

/*end qusetion*/
/*start coverage*/
.coverage {
  position: relative; }
  .coverage .main-header {
    font-size: 58px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); }
    .coverage .main-header span {
      color: #2c7865;
      font-size: 28px; }
  .coverage img {
    width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: cover; }

/*end coverage*/
/*start goals*/
.goals {
  padding: 70px 0;
  position: relative;
  background-image: url("../img/bg-part.png");
  background-size: 100% 100%;
  background-position: top right; }
  .goals .main-header {
    color: #FFF; }
  .goals .goals-sec {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 30px; }
    .goals .goals-sec .main-goals {
      grid-column: span 2;
      grid-row: span 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative; }
      .goals .goals-sec .main-goals .img-goals {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 205px;
        margin-bottom: 25px;
        align-items: center; }
        .goals .goals-sec .main-goals .img-goals img {
          max-width: 100px;
          max-height: 100px;
          height: auto;
          width: auto;
          filter: brightness(0) saturate(100%) invert(51%) sepia(100%) saturate(322%) hue-rotate(36deg) brightness(97%) contrast(96%); }
        .goals .goals-sec .main-goals .img-goals span {
          position: absolute;
          top: 18px;
          left: 15%;
          display: block;
          font-size: 24px;
          color: #000; }
        .goals .goals-sec .main-goals .img-goals:before {
          content: url("../img/bg-goals.png");
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%); }
      .goals .goals-sec .main-goals h2 {
        font-size: 35px;
        color: #83aa21;
        margin-bottom: 0;
        text-align: center; }

/*end goals*/
/*start team*/
.team {
  padding: 70px 0; }
  .team .main-header {
    margin-bottom: 50px; }
  .team .row .col-lg-2:nth-of-type(2n+1) .in-team {
    margin-top: 30px; }

.in-team {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  transition: all linear .3s; }
  .in-team .img-team {
    position: relative;
    border-radius: 10px; }
    .in-team .img-team img {
      width: 100%; }
    .in-team .img-team:before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(0, #161413 11%, #00000000 89%);
      background-size: 100% 100%;
      background-position: bottom;
      background-repeat: no-repeat;
      transition: all linear .2s; }
  .in-team h2 {
    color: #FFF;
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
    transition: all linear .3s; }
  .in-team span {
    color: #888888;
    transition: all linear .3s;
    font-size: 16px;
    text-align: center; }
  .in-team:hover {
    transition: all linear .3s; }
    .in-team:hover .img-team:before {
      transition: all linear .2s;
      height: 0; }
    .in-team:hover h2 {
      transition: all linear .3s;
      color: var(--main); }
    .in-team:hover span {
      transition: all linear .3s;
      color: #FFF; }

/*end team*/
/*start blog*/
.blog-post {
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
  background-color: #ebdebc; }
  .blog-post .r-part {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .blog-post .r-part .main-header {
      margin: 0 0px; }
    .blog-post .r-part .main-hover {
      justify-content: center;
      margin-bottom: 0; }
      .blog-post .r-part .main-hover:before {
        display: none; }

.blog-post .owl-dots {
  margin-top: 20px;
  position: relative;
  height: 60px;
  flex-direction: row; }

.blog-post .owl-dots .owl-dot {
  width: 5px;
  height: 40px;
  background-color: #ebebeb !important; }

.blog-post .owl-dots .owl-dot.active {
  height: 60px;
  background-color: var(--main) !important; }

.blog-post .owl-nav {
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  position: absolute;
  right: 0px;
  display: flex;
  z-index: -1;
  align-items: center;
  justify-content: space-between;
  width: 100%; }

.blog-post .owl-nav .owl-prev {
  margin-inline-start: -70px; }

.blog-post .owl-nav .owl-next {
  margin-inline-end: -70px; }

.blog-post .owl-nav i {
  transition: all linear .4s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  background-color: #978556;
  color: #FFF;
  transition: all linear .4s; }

.blog-post .owl-nav i:hover {
  transition: all linear .4s;
  background-color: var(--main);
  color: #FFF; }

.main-blog {
  display: flex;
  flex-direction: column;
  border-radius: 0px;
  overflow: hidden;
  transition: all linear .4s;
  position: relative;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.14); }

.main-blog img {
  width: 100%;
  height: 500px;
  transition: all linear .4s; }

.main-blog .in-item {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 30px;
  background-color: transparent;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  overflow: hidden;
  transition: all linear .4s;
  border-radius: 0px; }

.main-blog .in-item .time {
  margin-inline-start: -80px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #FFF;
  font-size: 16px;
  transition: linear .4s;
  opacity: 0;
  visibility: hidden; }

.main-blog .in-item .time i {
  font-size: 24px; }

.main-blog .in-item h3 {
  font-size: 24px;
  color: #FFF;
  margin-bottom: 20px;
  padding-top: 30px;
  transition: all linear .4s;
  position: relative; }

.main-blog .in-item .bot-blog {
  transition: all linear .4s;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: -140px;
  opacity: 0;
  visibility: hidden; }

.main-blog .in-item .bot-blog p {
  color: #FFF;
  width: 85%;
  font-size: 14px;
  transition: all linear .4s;
  margin-inline-start: -100%;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 30px; }

.main-blog .in-item .bot-blog .end-bot-blog {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.main-blog .in-item .main-hover {
  margin-inline-start: -80px;
  opacity: 0;
  transition: linear .4s;
  background-color: #FFF;
  visibility: hidden; }

.main-blog .in-item .bot-blog a i:hover {
  transition: linear .4s;
  background-color: #978556; }

.main-blog:hover .in-item {
  transition: all linear .4s;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 10px 9px rgba(0, 0, 0, 0.27); }

.main-blog:hover .in-item .bot-blog {
  transition: all linear .4s;
  margin-bottom: 0px;
  opacity: 1;
  visibility: visible; }

.main-blog .in-item:hover .time {
  margin-inline-start: 0px;
  opacity: 1;
  visibility: visible;
  transition: linear .2s;
  transition-delay: .6s; }

.main-blog:hover .in-item h3 {
  transition: all linear .4s;
  color: var(--sec); }

.main-blog:hover .in-item p {
  margin-inline-start: 0px;
  opacity: 1;
  visibility: visible;
  transition: linear .4s;
  transition-delay: .3s; }

.main-blog:hover .in-item .main-hover {
  margin-inline-start: 0px;
  transition: linear .2s;
  opacity: 1;
  visibility: visible;
  transition-delay: .6s; }

/*end blog*/
/*start posts*/
.slider-banner-image {
  position: relative;
  z-index: 3;
  margin-bottom: 20px; }

.slider-banner-image img {
  width: 100%;
  height: 250px;
  border-radius: 10px; }

.slider-banner-image .new-date {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #FFF; }

.slider-banner-image .new-date img {
  width: 25px;
  height: 25px;
  border-radius: 0;
  display: inline-block; }

.slider-banner-image .new-date span {
  color: #FFF; }

.slider-banner-content h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--sec);
  margin-bottom: 15px; }

.slider-banner-content .main-hover {
  margin-bottom: 8px; }

.slider-banner-content .slide-for-paragraph {
  font-size: 14px;
  color: #979797;
  margin-bottom: 30px; }

.slider.slider-nav .thumbnail-image {
  display: flex !important;
  align-items: center;
  border-bottom: 1px solid #c2c2c2;
  padding: 20px 0 19px; }

.slider.slider-nav .thumbnail-image .thumbImg {
  flex: 4; }

.slider.slider-nav .thumbnail-image .thumbImg img {
  width: 100px;
  height: 100px;
  border-radius: 50%; }

.slider.slider-nav .thumbnail-image .thumbImg-content {
  flex: 16; }

.slider.slider-nav .thumbnail-image .thumbImg-content h6 {
  font-family: Bahij-Bold;
  color: #000;
  transition: linear .4s;
  font-size: 18px;
  margin-bottom: 15px; }

.slider.slider-nav .thumbnail-image .thumbImg-content span {
  font-size: 14px;
  color: #979797; }

.slider.slider-nav .thumbnail-image:hover .thumbImg-content h6 {
  color: var(--sec);
  transition: linear .4s; }

/*end posts*/
/*start partner*/
.partner {
  padding: 70px 0 100px;
  position: relative;
  background-color: #000; }
  .partner .main-header {
    color: #FFF; }
  .partner .part-item {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0px;
    transition: all linear .3s; }
    .partner .part-item img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%; }
    .partner .part-item:hover {
      transition: all linear .3s; }
  .partner .owl-nav {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: -55px;
    transform: translatex(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px; }
    .partner .owl-nav i {
      color: #595857;
      margin: 0 5px;
      font-size: 24px;
      transition: all linear .4s; }
      .partner .owl-nav i:hover {
        color: var(--main); }

.part-item {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 0px;
  transition: all linear .3s; }
  .part-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%; }
  .part-item:hover {
    transition: all linear .3s; }

.said {
  background-color: #ebdebc;
  z-index: 2;
  position: relative;
  margin-bottom: -95px; }
  .said .r-said {
    background-color: #dacaa2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; }
    .said .r-said h2 {
      color: #998555;
      margin-bottom: 0;
      font-size: 36px;
      text-align: center; }
  .said .item-said {
    display: flex;
    justify-content: flex-start;
    padding: 27px;
    align-items: center;
    gap: 10px; }
    .said .item-said .img-said img {
      width: 104px;
      height: 104px;
      object-fit: contain;
      border-radius: 50%; }
    .said .item-said .text-said h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #000;
      text-align: center; }
    .said .item-said .cont-said {
      position: relative;
      padding: 45px;
      width: 70%; }
      .said .item-said .cont-said p {
        color: #626262;
        font-size: 16px;
        margin-bottom: 0; }
      .said .item-said .cont-said:before {
        content: '';
        top: 0;
        right: 0;
        background-image: url("../img/qute.png");
        width: 55px;
        height: 39px;
        position: absolute; }
      .said .item-said .cont-said:after {
        content: '';
        bottom: 0;
        left: 0;
        background-image: url("../img/qute-2.png");
        width: 55px;
        height: 39px;
        position: absolute; }
  .said .owl-nav {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .said .owl-nav i {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #bfb497;
      color: #FFF;
      transition: all linear .4s; }
      .said .owl-nav i:hover {
        transition: all linear .4s;
        background-color: var(--sec); }

/*end partner*/
/*start cont-us*/
.cont-us {
  position: relative; }
  .cont-us .map-home {
    display: block;
    z-index: 1; }
    .cont-us .map-home iframe {
      width: 100%;
      height: 540px;
      display: block; }

/*end cont-us*/
.wpcf7-submit {
  padding: 7px 56px;
  color: #FFF;
  margin-top: 10px;
  z-index: 2;
  background-color: var(--main);
  position: relative;
  text-transform: capitalize;
  border-radius: 20px;
  display: inline-block;
  font-family: Bahij-Bold;
  overflow: hidden;
  transition: .8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); }
  .wpcf7-submit:hover {
    transition: .8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    color: #fff; }

.map iframe {
  width: 100%;
  height: 500px; }

/*end form*/
/*start footer*/
.bef-footer {
  position: relative; }
  .bef-footer img {
    width: 100%;
    max-height: 470px;
    height: auto; }
  .bef-footer .in-bef {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px; }
    .bef-footer .in-bef a {
      width: 155px;
      height: 45px;
      display: flex;
      line-height: 35px;
      justify-content: center;
      box-shadow: 10px 11px 9px rgba(0, 0, 0, 0.63);
      background-color: #FFF;
      color: var(--main);
      border-radius: 22.5px;
      font-size: 28px;
      font-family: Bahij-Bold;
      transition: all linear .3s; }
      .bef-footer .in-bef a:hover {
        background-color: var(--main);
        color: #FFF;
        transition: all linear .3s; }

footer {
  padding: 50px 0px;
  position: relative;
  background-image: url("../img/footer-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%; }
  footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 30px; }
    footer .footer-logo img {
      max-height: 100px;
      max-width: 275px; }
  footer .who-footer p {
    margin-bottom: 0;
    font-size: 14px;
    color: #FFF; }
  footer .main-foot {
    display: flex;
    align-items: center; }
  footer .in-new-newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto; }
  footer .social {
    display: flex;
    align-items: center;
    gap: 10px; }
    footer .social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: #6d6e71;
      font-size: 24px;
      color: #FFF;
      border-radius: 10px;
      transition: all linear .3s; }
      footer .social a:hover {
        background-color: var(--main); }
  footer .exhibition-times p {
    font-size: 16px;
    font-family: Bahij-Bold;
    color: #FFF;
    text-align: left;
    margin-bottom: 10px; }
  footer .exhibition-times span {
    font-size: 14px;
    font-family: bahij-regular;
    color: #FFF;
    display: block;
    text-align: left; }
  footer .organized {
    position: absolute;
    bottom: 5px;
    right: 50px; }

footer h2 {
  font-size: 24px;
  color: var(--sec);
  margin-bottom: 22px;
  font-family: Bahij-Bold; }

footer .es-field-wrap {
  width: 100%; }

footer .es-field-wrap label {
  font-size: 24px;
  color: #000;
  font-family: Bahij-Bold;
  text-align: center;
  margin-bottom: 0;
  width: 100%; }

footer input[type='email'] {
  width: 100%;
  max-width: 100%;
  height: 50px;
  border-radius: 25px;
  padding: 10px;
  font-size: 14px;
  color: #000;
  background-color: #FFF; }

footer input[type='email'] {
  color: #6e6e6e; }

footer input[type='submit'] {
  color: #FFF;
  border-radius: 20px;
  padding: 8px 40px;
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  background-color: var(--main);
  transition: linear .4s;
  font-size: 14px; }

footer input[type='submit']:hover {
  background-color: var(--sec);
  transition: linear .4s;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.32); }

footer .map-foot iframe {
  height: 195px;
  border-radius: 10px; }

footer .mid-foot .menu, footer .mid-foot .menu-footer-menu-container {
  width: 100%; }

footer .mid-foot ul {
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; }

footer .mid-foot ul li {
  list-style: none;
  display: block;
  margin-bottom: 0px; }

footer .mid-foot ul li a {
  color: #FFF;
  font-size: 14px;
  display: inline-block;
  transition: all linear .4s; }

footer .mid-foot ul li a:hover {
  color: var(--main);
  transition: all linear .4s; }

footer .mid-foot .social a i {
  padding: 11px 0;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  background-color: var(--main);
  transition: linear .4s;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  display: inline-block; }

footer .cont-us-foot {
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-100px);
  overflow: hidden;
  margin-bottom: -100px; }
  footer .cont-us-foot iframe {
    width: 100%;
    height: 400px;
    display: block; }

footer .top-end {
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center; }

footer .cont {
  display: flex;
  align-items: center;
  max-width: 100%;
  justify-content: flex-start; }

footer .cont .fir {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  border-radius: 10px;
  margin: 0 5px 0px; }

footer .cont .fir img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto; }

footer .cont .fir i {
  font-size: 24px;
  color: var(--main); }

footer .cont .sec {
  direction: ltr;
  margin: 0 5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1; }

footer .cont .sec h4 {
  font-size: 18px;
  color: var(--sec);
  margin-bottom: 0px;
  display: block;
  font-family: Bahij-Bold; }

footer .cont .sec a {
  color: #FFF;
  font-size: 16px;
  transition: linear .4s;
  cursor: pointer; }

footer .cont .sec a:hover {
  transition: linear .4s;
  color: var(--main); }

footer .cont .sec .r-phone:nth-of-type(1):after {
  content: "-";
  font-size: 16px;
  color: #FFF;
  font-weight: bold; }

footer .cont .sec .r-phone:nth-last-of-type(1):after {
  display: none; }

footer .end-foot {
  background-color: transparent;
  margin-top: 30px; }

footer .end-foot .in-end {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  border-top: 1px solid var(--main);
  padding: 20px 0 0; }

footer .end-foot .in-end .social {
  display: flex;
  align-items: center;
  gap: 25px; }
  footer .end-foot .in-end .social i {
    font-size: 24px;
    color: #FFF;
    transition: all linear .4s; }
    footer .end-foot .in-end .social i:hover {
      color: var(--sec);
      transition: all linear .4s; }

footer .end-foot .in-end .to-up {
  width: 40px;
  height: 40px;
  border-radius: 0%;
  display: flex;
  background-color: var(--main);
  color: #FFF;
  align-items: center;
  justify-content: space-between; }

footer .end-foot .in-end .to-up i {
  color: #FFF;
  font-size: 20px; }

footer .end-foot .in-end .logo-footer {
  max-width: 130px;
  max-height: 120px;
  width: auto;
  height: auto; }

footer .end-foot .in-end .copy a {
  color: #FFF; }

footer .end-foot .in-end p {
  color: #FFF;
  font-family: bahij-regular;
  font-size: 16px;
  margin-bottom: 0; }

footer .end-foot .in-end .links {
  color: #535559;
  font-size: 18px; }
  footer .end-foot .in-end .links:hover {
    color: #535559; }

footer .end-foot .in-end p a {
  color: var(--main);
  font-family: Bahij-Bold;
  transition: linear .4s; }

footer .end-foot .in-end p a:hover {
  color: var(--main);
  transition: linear .4s; }

/*footer .mid-foot ul li a:before {
  content: "\f100";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  color: #FFF;
  font-size: 16px;
  margin: 0 5px;
  transition: all linear .3s;
}footer .mid-foot ul li a:hover:before{
  color: var(--main);
 }*/
/*end footer*/
/*end footer*/
.hidden-lg {
  opacity: 0;
  visibility: hidden;
  display: none !important; }

.hidden-sm {
  opacity: 1;
  visibility: visible;
  display: flex !important; }

.mobile-nav-list .sub-list li a:before {
  color: #000; }

/**/
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-list > .link > a {
    padding: 13px 5px;
    margin: 0 5px; }

  .goals .goals-sec .main-goals {
    grid-column: span 3; }

  .goals .goals-sec .main-goals .img-goals span {
    left: 22%; }

  footer .main-cont {
    padding: 50px 30px 25px 30px; } }
@media (max-width: 991px) {
  .mobile-nav-list {
    width: 300px; }

  .hidden-sm {
    opacity: 0;
    visibility: hidden;
    display: none !important; }

  .goals .goals-sec .main-goals {
    grid-column: span 5; }

  .goals .goals-sec .main-goals .img-goals span {
    left: 30%; }

  header .top-phone {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }

  .connect-us.home-page {
    padding: 40px 0 !important; }

  .who {
    position: relative; }

  .who .in-who p {
    color: #000; }

  .connect-us.home-page .bg-connect-us {
    filter: unset !important; }

  .bef-who:after, .practice:before {
    display: none; }

  footer .main-foot {
    flex-direction: column;
    gap: 30px; }

  .practice .bg-practice .clip-practice {
    padding: 20px 0; }

  .in-service {
    padding: 20px 15px;
    gap: 15px; }

  header .menu-icons .lang, header .menu-icons .search-btn {
    width: 40px;
    height: 40px; }

  .work-row .item {
    grid-column: span 12 !important; }

  .number .l-number {
    padding: 20px 30px !important; }

  .cont-us .map-home {
    margin-top: 20px; }

  .top-slider .new-dots {
    top: 54%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    flex-direction: row; }

  .video .item .in-vid {
    padding: 20px !important; }

  .video .item .vid-link {
    top: 76%; }

  .top-slider .new-dots .owl-dots {
    flex-direction: row; }
    .top-slider .new-dots .owl-dots .owl-dot {
      height: 2px;
      width: 50px; }

  .fixed-social {
    left: 20px; }
    .fixed-social a, .fixed-social .wcs_button_circle {
      width: 35px;
      height: 35px; }
      .fixed-social a i, .fixed-social .wcs_button_circle i {
        font-size: 18px; }

  .connect-us.home-page .cont .sec a {
    font-size: 14px !important; }

  .values .values-sec .item {
    grid-column: span 10; }

  .project .nav-tabs {
    flex-direction: column; }
    .project .nav-tabs .main-hover {
      width: 180px;
      height: 50px; }

  .service .col-lg-3 {
    border-inline-end: 0;
    border-block-end: 1px solid #FFF; }

  .service .col-lg-3:last-of-type {
    border-block-end: 0; }

  .common-qusetion .allque p {
    position: relative;
    top: unset;
    right: unset; }

  .coverage img {
    height: 300px; }

  .coverage .main-header {
    font-size: 48px; }
    .coverage .main-header span {
      font-size: 18px;
      text-align: center; }

  .top-slider .dot-r .col-lg-3:after {
    display: none !important; }

  .partner .r-part, .blog-post .r-part {
    margin-bottom: 30px; }

  footer .cont-us-foot {
    margin-bottom: 0;
    transform: translateY(0px);
    padding: 20px 0; }

  .who .in-who h2 {
    margin: 20px 0; }

  header .logo-top {
    display: none; }

  header .logo {
    align-items: center; }

  .cont-us .in-cont {
    position: relative;
    width: 100%;
    right: unset !important;
    left: unset !important; }

  .who .bot-who {
    flex-direction: column; }

  .cont-us .map-home iframe {
    height: 350px; }

  .why:before {
    display: none; }

  .single-news .item {
    padding: 15px; }
    .single-news .item img {
      margin-bottom: 15px; }

  header .social, .news .owl-nav, .gallery-new:before, .who:before, .who:after, footer:before, .blog-post:before {
    display: none !important; }

  header .menu-icons .request {
    width: 40px;
    height: 40px; }
    header .menu-icons .request span {
      display: none; }
    header .menu-icons .request i {
      display: block; }

  .gallery-new, .blog-post {
    padding: 40px 0; }

  .slider.slider-nav .thumbnail-image .thumbImg-content {
    flex: 7; }

  .wpcf7 .main-hover {
    margin: 0 0 20px !important; }

  .wpcf7-submit {
    margin-top: 0; }

  .new-row div {
    grid-column: span 12 !important;
    grid-row: span 1 !important; }

  .in-partner .item {
    margin: 0 auto; }

  .mainslider .item img {
    height: 550px; }

  .mainslider .item .in-item {
    gap: 20px; }

  .bot-who .number-who-item h4 {
    margin-bottom: 0; }

  .sponsor, .news {
    padding: 40px 0; }

  .who, .bot-who {
    padding: 40px 0 0; }

  .bef-footer img {
    height: 350px; }

  .bef-footer .in-bef a {
    width: 120px;
    height: 35px;
    font-size: 16px; }

  footer .footer-logo {
    flex-direction: column; }
    footer .footer-logo div {
      gap: 15px; }
    footer .footer-logo h4 {
      font-size: 22px; }

  .sponsor .nav-tabs li a {
    margin-bottom: 15px; }

  .news .col-lg-4:nth-of-type(2) .main-news {
    flex-direction: column; }

  .bot-slider .in-bot-slider {
    margin-bottom: 15px; }

  header .fi-head {
    justify-content: center; }

  header .logo img, .new-top-header .logo img {
    max-width: 200px;
    max-height: 150px; }

  .new-top-header {
    position: relative;
    background-color: var(--sec);
    padding: 20px 0; }

  .main-header {
    font-size: 38px;
    margin-bottom: 30px; }
  .mediaa{
    background-size: 100% 180px;
  }
  .connect-us.home-page .map iframe{margin-bottom: 20px}
  .who .tit-who h1 {
    font-size: 32px;
    line-height: 40px; }

  .who .bot-who .col-lg-7 {
    border-inline-end: 0; }

  .who .bot-who .r-who {
    padding: 30px 0; }

  .said .item-said {
    flex-direction: column; }

  .said .item-said .cont-said {
    padding: 47px 10px;
    width: 100%; }

  .said .owl-nav {
    display: none; }

  footer {
    padding: 40px 0; }

  footer.main {
    padding-top: 60px; }

  .who .visio {
    margin-bottom: 15px; }

  .chairman .chairman-img {
    text-align: center; }

  .chairman .chairman-cont h2 {
    font-size: 30px;
    color: #FFF;
    text-align: center;
    margin: 30px 0; }

  .companies .item h4 {
    font-size: 20px; }

  footer h2 {
    margin: 20px 0;
    font-size: 22px; }

  header .menu-icons .main-hover {
    width: 40px;
    height: 40px;
    display: flex;
    color: #FFF;
    padding: 0;
    align-items: center;
    justify-content: center;
    background-color: var(--main);
    transition: linear .4s;
    border-radius: 50%;
    border: 0;
    margin-bottom: 0; }
    header .menu-icons .main-hover:hover {
      background-color: var(--sec);
      border: 0; }

  .connect-us.home-page .social i {
    width: 40px;
    height: 40px;
    font-size: 18px; }

  .main-searchjob {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 30px; }

  .main-searchjob h3 {
    width: 100%;
    margin-inline-end: 0; }

  .main-searchjob #searchjob {
    flex-direction: column;
    gap: 20px 0; }

  .main-searchjob #searchjob .start-searchjob {
    width: 100%;
    border-inline-end: 0; }

  .job-seeker .in-job-seeker {
    margin-bottom: 15px; }

  .team, .service, .project, .values, .certificates {
    padding: 40px 0; }

  .certificates .owl-dots {
    display: none; }

  .who {
    background-image: none; }

  .connect-us .form-cont {
    position: relative; }

  .main-searchjob #searchjob i, .top-slider:before, .top-slider:after, .partner:before, .partner:after, .main-fancy-img:before, header .menu-icons .main-phone, header .top-head .bottom-header, .how-work .border-how:nth-of-type(2):before, .how-work .border-how:nth-of-type(1):before {
    display: none; }

  .requirements .main-fancy-img {
    margin-bottom: 30px; }

  .accordion li p {
    padding: 15px; }

  .connect-with .top-end .cont .sec {
    width: 75%; }

  .main-fancy-img {
    height: 325px; }
    .main-fancy-img img {
      height: 100%; }

  .main-searchjob #searchjob .end-searchjob {
    flex-direction: column;
    width: 100%;
    gap: 15px 0; }

  footer .mid-foot {
    width: 100%; }

  footer .mid-foot ul {
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center; }

  footer .end-foot ul {
    margin-bottom: 10px; }

  footer .end-foot .in-end .to-up {
    position: relative;
    right: unset; }

  footer .mid-foot .cont {
    margin-top: 15px; }

  .who .r-who img {
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 20px; }

  .said .r-said {
    padding: 20px 0; }

  header .top-head .main-top-header {
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0; }
    header .top-head .main-top-header .l-header {
      align-items: center; }

  .sponsor .main-sponsor {
    padding: 20px 10px; }

  footer .mid-foot .logo {
    flex-direction: column;
    gap: 10px 0; }

  .connect-us.home-page img {
    margin-top: 20px; }

  .single-acti .owl-nav {
    margin: 20px 0 0; }

  .in-head .sec-head {
    flex-direction: column-reverse; }

  .partner {
    padding: 40px 0 40px !important; }

  .top-who .main-hover.shop {
    margin-inline-start: 0px; }

  .connect-us {
    padding: 40px 0 30px !important; }

  footer .top-end {
    gap: 20px 0;
    align-items: flex-start;
    flex-direction: column; }

  .connect-us.home-page .new-but {
    position: relative !important;
    display: inline-block !important;
    right: unset !important;
    bottom: unset !important;
    left: unset !important; }

  .mediacenter {
    padding: 40px 0; }

  footer .map {
    display: inline-flex;
    position: relative;
    width: 100%;
    margin-top: 0px; }

  .who .bg-who .main-fancy-img {
    padding-bottom: 10px; }

  footer .map iframe {
    height: 350px;
    border-radius: 0; }

  .end-foot .in-end {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    align-items: center;
    flex-direction: column; }

  .end-foot .in-end .to-up {
    margin-bottom: 10px; }

  .mainslider .owl-nav {
    display: none; }

  .single_service, .single-pages {
    padding: 40px 0 !important; }

  .hidden-lg {
    opacity: 1;
    visibility: visible;
    display: flex !important; }

  .who .r-who:before, .achievement .owl-nav {
    display: none;
    visibility: hidden; }

  .achievement .row .r-who img {
    height: 250px; }

  .who .ord-2 {
    order: 2; }

  .who .in-who p span {
    text-align: center;
    margin: 0px 0; }

  .who .in-who {
    margin-bottom: 20px; }

  .who .ord-1 {
    order: 1; }

  .connect-with .top-end {
    margin-bottom: 30px; }

  header, .in-head {
    border-bottom: 0;
    position: relative;
    flex-direction: column; }

  .news .in-news .item .in-item {
    opacity: 1;
    width: 95%; }

  footer .top-foot {
    flex-direction: column;
    gap: 20px; }

  footer .new-lang {
    left: unset !important;
    justify-content: center !important; }

  footer .to-up {
    right: 20px; }

  .top-who {
    flex-direction: column; }

  .new-lang {
    left: 20px !important; }

  .join p {
    font-size: 32px; }

  .join p span {
    font-size: 32px; }

  .media-new .b-pro .main-hover {
    margin-bottom: 0; }

  .media-new .new-row div {
    grid-column: span 12 !important;
    grid-row: span 1 !important; }

  .media-new .new-row div img {
    width: 100% !important;
    max-height: 400px !important; }

  .who .r-who {
    padding: 0;
    text-align: center; }

  .sec-video .single-video .owl-item.active.center {
    transform: scale(1); }

  .sec-video .single-video .owl-item {
    padding: 0; }

  .mainslider .owl-nav .owl-prev, .mainslider .owl-nav .owl-next, .part .owl-nav .owl-prev, .part .owl-nav .owl-next {
    margin: 0; }

  .opinions .single-opin .owl-nav, .package .single-pack .owl-nav {
    display: none; }

  footer .end-foot .in-end p {
    text-align: center; }

  .new-media img {
    width: 100%; }

  footer .top-foot .content .wpcf7-form-control-wrap:nth-of-type(1) {
    margin-left: 0; }

  footer .top-foot .content input[type=text], footer .top-foot .content input[type=tel] {
    width: 100%; }

  footer .end-foot .in-end p {
    margin-bottom: 5px; }

  footer .top-foot iframe {
    margin-bottom: 20px; }

  .mainslider .item .in-item h2 {
    font-size: 22px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    line-height: 30px; }

  .mainslider .item .in-item p {
    font-size: 16px;
    width: 100%; }
    .mainslider .item .in-item p span {
      font-size: 28px; }

  header .sts-header {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center; }

  .mainslider .item .in-item #countdown .in-count-down h2 {
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 30px; }
  .mainslider .item .in-item #countdown .in-count-down span {
    width: 35px;
    font-size: 14px; }

  footer .top-foot ul li {
    width: 100%; }

  .who .l-who {
    gap: 15px; }

  .who .bot-who .l-who .num-who .number-who-item {
    font-size: 32px; }

  .who .bot-who .l-who .num-who .number-who-item h4 {
    font-size: 20px; }

  footer .mid-foot ul {
    width: 100%; }

  footer .top-foot .col-lg-4.d-flex.align-items-center {
    margin-bottom: 15px; }

  .why .vid-img {
    width: 100%;
    height: 100%; }

  .new-media {
    margin-bottom: 15px; }

  .achievement .row .in-who {
    margin: 0px 0 0 !important;
    padding: 20px;
    box-shadow: unset; }

  .who .l-who:before {
    left: 10px; }

  .end-foot .bot-foot {
    align-items: center;
    flex-direction: column;
    text-align: center;
    justify-content: center; }

  .contact .in-contact, .target .tar-sli .item .in-tar {
    margin-right: 0;
    margin-left: 0; }

  .main-hover {
    margin-bottom: 10px;
    padding: 3px 10px;
    width: 140px;
    height: 40px;
    font-size: 14px; }

  .mainslider .item .img-slider img {
    width: 250px;
    height: 250px;
    z-index: 2;
    border-radius: 50%; }

  .single-research .item {
    flex-direction: column; }
    .single-research .item img {
      width: 100%;
      height: auto; }

  .gallery .new-row div {
    grid-column: span 12 !important;
    grid-row: span 1 !important; }

  .mainslider .item .img-slider:before {
    display: none; }

  .mainslider .item .in-slider {
    width: 90%; }

  #qtranslate-chooser {
    margin: 0 10px !important; }

  .new-lang a i, .new-lang .search-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important; } }
@media (max-width: 767px) {
  .goals .goals-sec .main-goals .img-goals span {
    left: 22%; } }
@media (max-width: 460px) {
  .goals .goals-sec .main-goals {
    grid-column: span 10; }

  .goals .goals-sec .main-goals .img-goals span {
    left: 30%; } }
/**/
/****/
.in-head {
  position: relative !important;
  }
  .in-head:before {
    display: none; }

.single-pages .top-side iframe {
  border-radius: 10px;
  width: 100%; }

.fbc.fbc-page {
  width: 100% !important; }

.fbc-page .fbc-wrap .fbc-items {
  background-image: unset !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-color: transparent !important;
  float: none;
  font-weight: bold !important;
  color: #000 !important;
  border-radius: 0;
  padding: 40px 0;
  text-align: center !important;
  font-family: bahij-regular !important; }

.fbc-page .fbc-wrap .fbc-items li.active span, .fbc-page .fbc-wrap .fbc-items li a, .fbc-page .fbc-wrap .fbc-items li .fbc-end-text, .fbc-page .fbc-wrap .fbc-items li a:last-child {
  color: #000 !important;
  text-align: center !important;
  font-size: 22px !important; }

.single-pages {
  padding: 40px 0 40px; }

.single-pages .main-header, .single_service .main-header {
  font-size: 48px;
  text-align: center; }

.to-center {
  margin: 0 auto 50px; }

.single-pages .bootom-side p {
  color: #000;
  text-align: justify; }
  .single-pages .bootom-side p iframe {
    width: 100%;
    height: 650px; }

.single-pages .bootom-side.apply p {
  color: #000; }

.single-pages .top-side {
  padding: 20px 0;
  text-align: center; }

.single-pages .top-side img {
  max-width: 100%;
  max-height: 400px; }

.single_service {
  padding: 40px 0 40px; }

.single_service .right_side_whous {
  margin: 20px 0;
  text-align: center; }

.single_service .right_side_whous img {
  max-width: 100%;
  max-height: 300px; }

.single_service .right_side_whous a {
  text-align: center;
  background: var(--main);
  color: #FFF;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 5px 0;
  display: inline-block;
  transition: linear .4s; }

.single_service .right_side_whous a:hover {
  transition: linear .4s;
  background: var(--sec); }

.single-pages .ord {
  max-width: 100%; }

.connect-us {
  position: relative;
  padding: 70px 0; }
  .connect-us .con-iframe iframe {
    width: 100%;
    height: 500px; }

.connect-us.home-page {
  padding: 70px 0; }
  .connect-us.home-page .map iframe {
    height: 350px;
    border-radius: 20px; }
  .connect-us.home-page .content-connect-us {
    position: relative;
    z-index: 2; }
    .connect-us.home-page .content-connect-us h2 {
      color: var(--main);
      margin-bottom: 30px;
      font-size: 36px; }
  .connect-us.home-page .main-form input, .connect-us.home-page .main-form select {
    border: 1px solid #6d6e71;
    background-color: transparent;
    border-radius: 0px;
    color: #6d6e71; }
    .connect-us.home-page .main-form input::placeholder, .connect-us.home-page .main-form select::placeholder {
      color: #6d6e71; }
    .connect-us.home-page .main-form input:hover, .connect-us.home-page .main-form select:hover {
      border: 1px solid var(--sec);
      color: var(--sec);
      transition: linear .3s; }
      .connect-us.home-page .main-form input:hover::placeholder, .connect-us.home-page .main-form select:hover::placeholder {
        color: var(--sec);
        transition: linear .3s; }
  .connect-us.home-page .main-form textarea {
    height: 210px;
    border: 1px solid #6d6e71;
    border-radius: 0px;
    color: #6d6e71;
    background-color: transparent; }
    .connect-us.home-page .main-form textarea::placeholder {
      color: #6d6e71; }
    .connect-us.home-page .main-form textarea:hover {
      border: 1px solid var(--sec);
      color: var(--sec);
      transition: linear .3s; }
      .connect-us.home-page .main-form textarea:hover::placeholder {
        color: var(--sec);
        transition: linear .3s; }
  .connect-us.home-page .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
    overflow: hidden; }
    .connect-us.home-page .social i {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--main);
      color: #FFF;
      border-radius: 50%;
      font-size: 22px; }
      .connect-us.home-page .social i:hover {
        color: #FFF; }
  .connect-us.home-page .cont {
    display: flex;
    align-items: center;
    max-width: 100%;
    justify-content: flex-start; }
  .connect-us.home-page .cont .fir {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 20px;
    margin: 0 5px 0px;
    border: 1px solid #000; }
  .connect-us.home-page .cont .fir img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0; }
  .connect-us.home-page .cont .fir i {
    font-size: 24px;
    color: var(--main); }
  .connect-us.home-page .cont .sec {
    direction: ltr;
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    word-break: break-word; }
  .connect-us.home-page .cont .sec h4 {
    font-size: 18px;
    color: var(--main);
    margin-bottom: 0px;
    display: block;
    font-family: Bahij-Bold; }
  .connect-us.home-page .cont .sec a {
    color: #595857;
    font-size: 16px;
    font-family: bahij-regular;
    transition: linear .4s;
    cursor: pointer; }
  .connect-us.home-page .cont .sec a:hover {
    transition: linear .4s;
    color: var(--main); }
  .connect-us.home-page .cont .sec .r-phone:nth-of-type(1):after {
    content: "-";
    font-size: 17px;
    color: #595857;
    font-weight: bold; }
  .connect-us.home-page .cont .sec .r-phone:nth-last-of-type(1):after {
    display: none; }
  .connect-us.home-page .end-foot {
    background-color: transparent;
    margin-top: 30px; }

.main-iframe iframe {
  margin-top: 0px;
  width: 100%;
  height: 285px;
  border-radius: 10px; }

.connect-us .main-form {
  margin-bottom: 15px; }

.connect-us .main-form span.in-main-form {
  color: #000;
  margin-bottom: 10px;
  display: inline-block; }

.connect-us .main-form input, .connect-us .main-form select {
  padding: 11px 17px;
  background-color: transparent;
  border-radius: 0px;
  color: #6d6e71;
  border: 1px solid #6d6e71;
  transition: linear .4s;
  margin-bottom: 0px;
  width: 100%;
  height: 60px; }

.connect-us .main-form input::placeholder, .connect-us .main-form select, .connect-us .main-form textarea::placeholder {
  color: #6d6e71;
  transition: linear .4s; }

.connect-us .main-form input:hover {
  border: 1px solid var(--sec);
  color: var(--sec);
  transition: linear .4s; }
  .connect-us .main-form input:hover::placeholder {
    color: var(--sec);
    transition: linear .4s; }

.connect-us .main-form textarea {
  border: 1px solid #6d6e71;
  border-radius: 0px;
  color: #6d6e71;
  background-color: transparent;
  padding: 8px 17px;
  transition: linear .4s;
  margin-bottom: 0px;
  width: 100%;
  height: 210px;
  resize: none; }

.connect-us .main-form textarea:hover {
  border-bottom: 1px solid var(--sec);
  color: var(--sec);
  transition: linear .4s; }
  .connect-us .main-form textarea:hover::placeholder {
    color: var(--sec);
    transition: linear .4s; }

.single-pages .bootom-side input[type=text], .single-pages .bootom-side input[type=password], .single-pages .bootom-side input[type=tel], .single-pages .bootom-side input[type=email], .single-pages .bootom-side select {
  width: 100%;
  margin: 10px 0;
  text-align: center;
  border-radius: 25px;
  padding: 10px;
  border: 1px solid #b7b7b7;
  outline: none; }

.single-pages .bootom-side textarea {
  width: 100%;
  margin: 10px 0;
  border-radius: 25px;
  text-align: center;
  height: 150px;
  padding: 10px;
  border: 1px solid #b7b7b7;
  resize: none;
  outline: none; }

.single-pages .bootom-side input[type=submit] {
  color: #fff;
  padding: 8px 44px;
  background-color: var(--sec);
  border-radius: 20px; }

.wpcf7 .ajax-loader {
  margin: 0;
  position: absolute; }

.wpcf7 .main-hover br, .es_subscription_form.es_shortcode_form .main-hover br {
  display: none; }

.wpcf7 .main-hover {
  padding: 0;
  margin: 0;
  border: 1px solid #6d6e71; }
  .wpcf7 .main-hover:before {
    margin-top: 0;
    z-index: 3; }
  .wpcf7 .main-hover input[type=submit] {
    border-radius: 10px;
    padding: 8px 20px !important;
    width: 100% !important;
    color: #FFF;
    background-color: var(--main);
    transition: linear .4s; }
  .wpcf7 .main-hover .wpcf7-spinner {
    position: absolute; }

.emaillist .main-hover {
  padding: 0;
  margin: 0;
  background: transparent; }
  .emaillist .main-hover:before {
    margin-top: 0;
    z-index: 3; }
  .emaillist .main-hover:after {
    display: none; }
  .emaillist .main-hover input[type=submit] {
    border-radius: 20px;
    padding: 8px 20px !important;
    width: 150px !important;
    color: #FFF;
    background-color: var(--main);
    transition: linear .4s; }
  .emaillist .main-hover .wpcf7-spinner {
    position: absolute; }

.wpcf7 .main-hover.big input[type=submit] {
  width: 200px !important; }

.wpcf7 .main-hover input[type=submit], .es_subscription_form.es_shortcode_form .main-hover input[type=submit] {
  border-radius: 0px;
  padding: 7px 45px;
  width: 100%;
  color: #6d6e71;
  z-index: 3;
  text-align: center;
  margin: 0;
  background-color: transparent;
  transition: linear .4s; }

.wpcf7 .main-hover input[type=submit]:hover, .es_subscription_form.es_shortcode_form .main-hover input[type=submit]:hover {
  transition: linear .4s;
  color: #FFF;
  background-color: transparent; }

.single_service .right_si img {
  width: 100%;
  height: 120px;
  transition: linear .4s;
  margin-bottom: 15px;
  box-shadow: 0 0 7px 1px #909090; }

/**/
#qtranslate-chooser {
  display: inline-block;
  margin: 0;
  list-style: none; }

#qtranslate-chooser .lang-ar, #qtranslate-chooser .lang-en {
  display: inline-block;
  list-style: none; }

#qtranslate-chooser li.active {
  display: none; }

.qtranxs_widget_end {
  display: inline-block;
  list-style: none; }

.single-pages .bootom-side input[type=text], .single-pages .bootom-side input[type=email], .single-pages .bootom-side input[type=tel], .single-pages .bootom-side textarea {
  text-align: right; }

.ed_whous {
  margin-bottom: 15px; }

.partt .owl-item {
  padding: 15px 0; }

.partt .item {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  background-color: #FFF;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 29px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
  transition: linear .4s; }

.partt .item:hover {
  transition: linear .4s; }

.partt .item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%; }

/**/
.big_on {
  font-size: 160px;
  color: lightblue; }

.new-iframe iframe {
  width: 100%;
  height: 450px; }

.main-form {
  position: relative; }

.single-pages .main-form {
  margin-bottom: 15px; }

.main-form br, .sec-form br {
  display: none; }

.single-pack.in .item {
  background-color: #e8eaec;
  min-height: 642px; }
  .single-pack.in .item .img-pack {
    margin-top: 0; }

.main-form label {
  background: #FFF;
  position: absolute;
  right: 20px;
  font-size: 14px;
  transition: linear .4s;
  pointer-events: none;
  top: 14px;
  z-index: 1;
  color: #b2b2b2; }

.main-form .activee {
  top: -27px !important;
  font-size: 14px !important;
  right: 0;
  transition: linear .4s !important;
  color: var(--sec) !important; }

.fbc-page .fbc-wrap .fbc-items li .fbc-separator {
  color: #000 !important; }

.wpcf7-not-valid-tip {
  z-index: 3;
  position: relative; }

.wcs_fixed_left .wcs_popup_avatar {
  /* left: -70px;
   right: initial;*/ }

.wcs_fixed_left .wcs_popup {
  /* left: unset !important;
   right: 0 !important;*/ }

.wcs_fixed_left {
  left: unset;
  position: relative;
  bottom: unset;
  right: unset; }

.wcs_button_circle .fab {
  line-height: 50px;
  font-size: 25px;
  margin-right: 0px; }

.wcs_popup_header .fa-whatsapp {
  text-align: center; }

.sec-form {
  display: flex;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 0px;
  margin-bottom: 15px;
  align-items: center; }

.sec-form label {
  margin: 0 5px; }

.single_service .mediacenter, .single_service .media-new {
  padding: 0; }

.single-pages .connect-us {
  padding: 0;
  background-image: unset; }

.single_service .slider-banner-image-items, .single_service .new-media {
  margin-bottom: 30px; }

.breadcrumb-area {
  width: 100%;
  background-color: var(--main) !important;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000 !important;
  border-radius: 0;
  padding: 30px 0 30px;
  text-align: center !important; }

.breadcrumb-links {
  color: #FFF;
  font-weight: bold; }

.breadcrumb-area a {
  color: #FFF; }

.breadcrumb-area h4 {
  font-weight: bold;
  color: #FFF; }

.inside-head {
  position: relative;
  background-image: url("../img/bg-header.png");
  background-repeat: no-repeat;
  background-size: cover;
  /*.menu-icons .search-btn{background-color: var(--main)}
  .nav-list > .link > a{
    color: #000;
    &:after{background-color: #1d224a;}
  }
  .nav-list > .link:hover a:after, .nav-list > .link.active a:after{bottom: -38px;}*/ }

.new-lang.in {
  display: none !important; }

.new-lang {
  position: fixed;
  left: 50px;
  display: inline-block !important;
  top: 20vh;
  z-index: 3; }

.new-lang .lang img {
  width: 40px;
  height: 40px;
  border-radius: 0%; }

.new-lang a i, .new-lang .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 0%;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #6bc9ff 0%, #1669b2 100%);
  color: #FFF;
  font-size: 24px;
  transition: linear .4s;
  text-align: center;
  border: 0px solid transparent;
  overflow: hidden;
  z-index: 1; }

@keyframes animation {
  0% {
    left: -110%;
    top: 90%; }
  50% {
    left: 15%;
    top: -30%; }
  100% {
    top: -10%;
    left: -10%; } }
.e-height textarea {
  height: 180px !important; }

.who-page-cont h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--sec); }
.who-page-cont p {
  color: #000;
  margin-bottom: 0;
  text-align: justify; }

.new-lang a {
  display: block;
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  transition: linear .4s; }

.new-lang .search-btn img {
  width: 15px; }

.new-lang a:hover {
  transition: linear .4s; }

.new-lang a i:hover {
  transition: linear .4s;
  color: #FFF;
  border: 0px solid var(--sec);
  background-color: var(--sec); }

footer .new-lang, header .new-lang {
  position: relative;
  left: unset;
  align-items: center;
  display: flex !important;
  margin-bottom: 30px;
  justify-content: start;
  top: unset;
  z-index: 3; }

footer .new-lang a, header .new-lang {
  display: inline-block;
  margin-bottom: 0;
  margin: 0 10px; }
  footer .new-lang a i, header .new-lang i {
    color: var(--main) !important;
    background-color: transparent !important;
    font-size: 20px;
    width: auto;
    height: auto;
    border-radius: 0; }

.single-pages .connect-us .main-form textarea, .single-pages .connect-us .main-form input, .single-pages .connect-us .main-form select {
  /* border: 1px solid #d6d1d1;*/ }

.page-id-35 .img-thumbnail {
  width: 80%;
  margin: 0 auto;
  display: block; }

.wcs_button_circle {
  width: 50px;
  background-image: url(../img/whatsapp-icon.png);
  background-repeat: no-repeat;
  height: 50px;
  border-radius: 0;
  padding: 0;
  background-size: cover;
  box-shadow: unset;
  background-color: transparent;
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  -o-box-shadow: unset;
  -ms-box-shadow: unset; }

.branches {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--main);
  border-radius: 10px;
  margin-bottom: 30px; }
  .branches iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 15px; }
  .branches h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px; }
  .branches p {
    margin-bottom: 0;
    font-size: 16px; }

/****/
/****************elhussini****************************/
.sec-padding {
  padding: 50px 0; }

.sec-bg:nth-of-type(odd) {
  background-color: transparent;
  color: #000;
  font-weight: bold; }

.sec-bg:nth-of-type(even) {
  color: #000;
  font-weight: bold; }

.img-thumbnail {
  border: 0; }

.content-block-item {
  position: relative;
  z-index: 1;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #0000003D;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .3s ease-in-out; }

.content-block-item-icon {
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0 auto 15px auto;
  border: 1px solid #0000003D;
  display: flex;
  align-content: center;
  align-items: center; }

.content-block-item-icon img {
  max-height: 100%;
  margin: auto;
  transition: all .3s ease-in-out; }

.content-block-item-tit {
  color: #000;
  transition: all .3s ease-in-out; }

.content-block-item-exp {
  color: #ababab; }

.timeline-item {
  position: relative; }

.timeline-item:nth-of-type(even) .row {
  flex-direction: row-reverse; }

.timeline-item:before {
  position: absolute;
  content: '';
  top: 5px;
  width: 15px;
  height: 15px;
  z-index: 2;
  background: #f2674a;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px #f2674a; }

.timeline-item:after {
  position: absolute;
  content: '';
  top: 30px;
  width: 1px;
  height: calc(100% - 30px);
  background: #fff; }

@media all and (min-width: 991px) {
  .timeline-item:before,
  .timeline-item:after {
    left: 50%;
    transform: translateX(-50%); } }
.gallery-item-image img {
  height: 150px;
  width: 300px; }

/**/
.timeline-item:after {
  border-right: 1px dotted #f2674a; }

@media all and (min-width: 991px) {
  .timeline-item:nth-of-type(odd) .timeline-inner {
    padding-left: 40px; }

  .timeline-item:nth-of-type(even) .timeline-inner {
    padding-right: 40px; } }
@media all and (max-width: 991px) {
  .timeline-item .timeline-inner {
    padding-right: 25px; }

  .timeline-item:before {
    right: -5px; } }
/**/
.timeline-item:after {
  border-left: 1px dotted #f2674a; }

@media all and (min-width: 991px) {
  .timeline-item:nth-of-type(odd) .timeline-inner {
    padding-right: 40px; }

  .timeline-item:nth-of-type(even) .timeline-inner {
    padding-left: 40px; } }
@media all and (max-width: 991px) {
  .timeline-item .timeline-inner {
    padding-left: 25px; }

  .timeline-item:before {
    left: -5px; } }
.upload-main-wrapper {
  width: 220px;
  margin: 0 auto; }

#file-upload-name {
  margin: 4px 0 0 0;
  font-size: 12px; }

.upload-wrapper, .upload-wrapper2, .upload-wrapper3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px auto 20px;
  position: relative;
  cursor: pointer;
  width: 50%;
  background-color: var(--main);
  padding: 8px 10px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s linear all;
  color: #ffffff; }

.upload-wrapper input[type="file"], .upload-wrapper2 input[type="file"], .upload-wrapper3 input[type="file"] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1; }

.upload-wrapper > svg, .upload-wrapper2 > svg, .upload-wrapper3 > svg {
  width: 50px;
  height: auto;
  cursor: pointer; }

.upload-wrapper.success > svg, .upload-wrapper2.success > svg, .upload-wrapper3.success > svg {
  transform: translateX(-200px);
  display: none; }

.upload-wrapper.uploaded, .upload-wrapper2.uploaded, .upload-wrapper3.uploaded {
  transition: 0.2s linear all;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  text-align: center; }

.upload-wrapper label, .upload-wrapper2 label, .upload-wrapper3 .label {
  opacity: 1;
  visibility: visible;
  transition: 0.2s linear all; }

.upload-wrapper .file-upload-text, .upload-wrapper2 .file-upload-text, .upload-wrapper3 .file-upload-text {
  display: none;
  opacity: 0;
  visibility: hidden; }

.upload-wrapper.uploaded .file-upload-text, .upload-wrapper2.uploaded .file-upload-text, .upload-wrapper3.uploaded .file-upload-text {
  text-indent: -999px;
  margin: 0; }

.upload-wrapper brو.upload-wrapper p {
  display: none;
  opacity: 0;
  visibility: hidden; }

.file-success-text {
  opacity: 0;
  transition: 0.2s linear all;
  visibility: hidden;
  transform: translateX(200px);
  position: absolute;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center; }

.file-success-text svg {
  width: 25px;
  height: auto; }

.file-success-text span {
  margin-inline-start: 15px; }

.upload-wrapper.success .file-success-text, .upload-wrapper3.success .file-success-text, .upload-wrapper2.success .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none; }

.upload-wrapper.success.uploaded .file-success-text, .upload-wrapper2.success.uploaded .file-success-text, .upload-wrapper3.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none; }

.upload-wrapper.success.uploaded .file-success-text span, .upload-wrapper3.success.uploaded .file-success-text span, .upload-wrapper2.success.uploaded .file-success-text span {
  display: none; }

.upload-wrapper .file-success-text circle {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
  transition-delay: 1.4s; }

.upload-wrapper.success .file-success-text circle {
  stroke-dashoffset: 0; }

.upload-wrapper .file-success-text polyline {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
  transition-delay: 2s; }

.upload-wrapper.success .file-success-text polyline {
  stroke-dashoffset: 0; }

.upload-wrapper.success .file-upload-text, .upload-wrapper2.success .file-upload-text, .upload-wrapper3.success .file-upload-text {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.upload-wrapper label, .upload-wrapper2 label, .upload-wrapper3 label {
  margin: 0 10px 0; }

.upload-wrapper span.wpcf7-form-control-wrap, .upload-wrapper2 span.wpcf7-form-control-wrap, .upload-wrapper3 span.wpcf7-form-control-wrap {
  position: unset; }

.upload-wrapper p, .upload-wrapper2 p, .upload-wrapper3 p, .upload-wrapper br, .upload-wrapper2 br, .upload-wrapper3 br {
  display: none; }

.upload-wrapper.success, .upload-wrapper3.success, .upload-wrapper2.success {
  padding: 10px 20px;
  width: 100%;
  border-radius: 0; }

.upload-wrapper.uploaded label, .upload-wrapper3.uploaded label, .upload-wrapper2.uploaded label {
  display: none; }

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 5px 10px;
  margin: 2px;
  color: #fff;
  background-color: var(--main);
  display: inline-block; }

.wp-pagenavi {
  margin-top: 10px;
  text-align: center; }

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #FFF;
  color: #FFF; }

/****************elhussini****************************/
/***********woocomerce****************/
.woocommerce-loop-product__title {
  font-size: 24px; }

.product-content-main {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  height: 100%;
  background: #f7f7f5 !important;
  display: flex;
  border-radius: 10px;
  position: relative;
  justify-content: center;
  border: 2px solid var(--main);
  flex-direction: column;
  align-items: center; }

.product-content-main .price-pack {
  position: absolute;
  background-image: url(../img/price-tag.png);
  top: 0;
  height: 65px;
  width: 200px;
  align-items: center;
  justify-content: center;
  display: flex;
  left: -12px;
  background-repeat: no-repeat;
  background-size: cover; }

.woocommerce .woocommerce-ordering {
  display: none !important; }

.woocommerce .woocommerce-result-count {
  padding-inline-start: 40px;
  margin: 0 0 1em;
  display: none;
  font-weight: bold; }

.product-content-main .price-pack p {
  margin: 8px 15px 0 0px; }

.product-content-main .image-product {
  width: 100%; }

.woocommerce .woocommerce-ordering select {
  vertical-align: top;
  padding: 10px;
  border: 1px solid var(--sec);
  border-radius: 5px;
  background: transparent; }

.added_to_cart.wc-forward {
  padding-top: 0px !important;
  display: inline-flex !important;
  height: 35px;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 70%;
  color: #FFF;
  border-radius: 25px;
  background-color: var(--sec);
  margin-inline-start: 10px; }

.woocommerce-Price-amount {
  color: #d4d4d4;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: bold !important; }

del .woocommerce-Price-amount {
  color: #d4d4d4 !important; }

.all-product-content {
  text-align: center !important;
  width: 100%;
  display: flex;
  padding: 15px 0 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  width: 50% !important; }

.woocommerce .col-1 {
  flex: 50% !important;
  max-width: 50% !important; }

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  width: 50% !important; }

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  margin: 0 !important;
  border: 0 !important; }

.woocommerce .col-2 {
  flex: 50% !important;
  max-width: 50% !important; }

.woocommerce-MyAccount-navigation ul li a {
  color: var(--sec);
  font-weight: bold; }

.woocommerce-MyAccount-content a {
  color: var(--sec); }

.woocommerce-MyAccount-navigation ul {
  list-style: none; }

.woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
  border: 1px solid #ddd !important;
  padding: 5px !important; }

.product-content-main .image-product a {
  width: 100% !important; }

.cart-head {
  text-align: end; }

#add_payment_method table.cart img, .woocommerce-cart table.cart img {
  width: 100px !important; }

.cart-head a {
  text-align: center;
  margin: 0 10px;
  color: #2b476b;
  font-weight: bold;
  font-size: 14px;
  padding: 0;
  transition: all ease-in-out .5s; }

.woocommerce-account .woocommerce form .form-row input.input-text, .woocommerce-account .woocommerce form .form-row input[type=password] {
  height: 40px !important;
  border-radius: 20px !important;
  border: 1px solid #CCC;
  padding: 0 15px !important; }

.woocommerce-account .woocommerce .col2-set .col-1 h2, .woocommerce-account .woocommerce .col2-set .col-2 h2 {
  padding: 30px 30px 0;
  margin-bottom: 0; }

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit, .woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
  margin: 20px 0; }

.woocommerce-form.woocommerce-form-register.register p:nth-of-type(2) {
  color: red; }

.woocommerce-LostPassword.lost_password a {
  color: red; }

.woocommerce-privacy-policy-text p {
  color: var(--main) !important; }

.woocommerce-privacy-policy-text p a {
  color: var(--sec) !important; }

.woocommerce-LostPassword.lost_password {
  text-align: end !important;
  margin-top: -60px !important; }

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: block; }

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 150px !important; }

.woocommerce #review_form #respond textarea {
  border: 1px solid var(--main);
  border-radius: 10px; }

.woocommerce #review_form #respond p input[type=email],
.woocommerce #review_form #respond p input[type=text] {
  width: 100%;
  border: 1px solid var(--main);
  padding: 6px 10px;
  border-radius: 10px; }

.woocommerce-account .woocommerce .col2-set .col-1, .woocommerce-account .woocommerce .col2-set .col-2 {
  width: 47% !important;
  margin-top: 0;
  margin: 0 10px;
  height: 100%;
  min-height: 405px;
  float: unset !important; }

.woocommerce .quantity .qty {
  width: 132px;
  text-align: center;
  padding: 4px 0;
  margin-inline-end: 10px; }

.woocommerce div.product div.images img {
  max-height: 500px;
  object-fit: contain; }

.summary.entry-summary .main-header {
  color: #000;
  text-align: start;
  margin: 0 0 20px;
  font-size: 28px; }

.woocommerce-account .woocommerce .col2-set {
  display: flex;
  justify-content: space-between; }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--sec) !important;
  color: #fff;
  transition: linear .4s;
  border-radius: 22px !important; }

.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background-color: var(--sec) !important;
  transition: linear .4s;
  color: #FFF; }

.woocommerce div.product div.images .flex-control-thumbs li img {
  width: 100px !important;
  height: 100px !important;
  margin-bottom: 25px !important; }

.woocommerce form .form-row {
  display: block !important; }

.select2-container--default .select2-selection--single {
  border: 0 !important; }

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  float: right;
  background: #FFF;
  border-radius: 5px;
  border: 2px solid var(--sec);
  padding: 5px; }

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  background: #FFF;
  border-radius: 5px;
  border: 2px solid var(--sec);
  padding: 5px;
  margin: 10px 0; }

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  width: 100% !important; }

.woocommerce .col-1, .woocommerce .col-2 {
  flex: 100% !important;
  max-width: 100% !important; }

.checkout {
  display: flex; }

.woocommerce-checkout .content {
  background: #f8f8f8; }

.woocommerce-checkout .woocommerce-shipping-fields {
  display: none !important; }

.woocommerce-info {
  border-top-color: #141415;
  background: var(--main);
  color: #FFF;
  font-weight: bold; }

.woocommerce-info::before {
  color: #FFF; }

.woocommerce-info .showcoupon {
  color: #FFF; }

.posted_in a {
  color: var(--main); }

.r-ch {
  margin: 0 10px;
  padding: 10px;
  background: #FFF;
  border: 2px solid var(--sec);
  border-radius: 5px; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1; }

input[type=number] {
  border: 1px solid #2b476b; }

.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
  display: none; }

.breadcrumbs .taxonomy.product_cat {
  display: none; }

.page-main .product_meta {
  display: none; }

#tab-reviews {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: linear .4s; }

.open-reveiw {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  transition: linear .4s; }

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  float: right;
  background: #FFF;
  border-radius: 5px;
  border: 2px solid var(--sec);
  padding: 5px; }

.woocommerce-checkout .single-pages .bootom-side input, .woocommerce-checkout .single-pages .bootom-side textarea {
  border: 0px solid #b7b7b7; }

.checkout {
  display: flex; }

.woocommerce form .form-row select {
  padding: 10px 0; }

.add-to-cart a {
  color: #fff !important;
  background-color: var(--sec);
  padding: 6px 33px; }

.woocommerce-checkout table.shop_table th {
  width: 50%; }

.woocommerce div.product .stock {
  color: #498456;
  font-weight: bold; }

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first .input-text {
  border: 1px solid #b7b7b7 !important; }

.woocommerce #respond input#submit.added::after, .woocommerce a.button.added::after, .woocommerce button.button.added::after, .woocommerce input.button.added::after {
  display: none; }

/*comment*/
.comment-reply-title {
  margin: 20px 0 15px;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 3px 5px !important;
  font-size: 1.75rem !important; }

.comment-reply-title:before {
  content: '';
  width: 75%;
  height: 100%;
  background-color: var(--main);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
  position: absolute; }

.comment {
  color: #000;
  font-weight: bold;
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.1); }

.commentlist {
  list-style: none; }

.comment .comment-author.vcard {
  margin-top: 20px; }

.comment .comment-meta.commentmetadata {
  margin-inline-start: 70px; }

.comment .comment-author.vcard img {
  width: 50px;
  height: 50px;
  margin-inline-end: 20px;
  margin-bottom: -20px;
  border-radius: 50%; }

.comment .says {
  display: none; }

.comment .fn a {
  color: #707070;
  margin-inline-end: 5px; }

.comment p {
  margin: 10px 0;
  font-family: DG-Heaven-Light; }

.comment .reply a {
  padding: 5px 19px;
  border: 1px solid #ccc;
  vertical-align: text-top;
  margin: 10px 0 0;
  display: inline-block; }

#commentform .logged-in-as {
  margin: 15px 0;
  display: block; }

.comment-awaiting-moderation {
  margin-inline-start: 70px;
  margin-bottom: 7px;
  display: inline-block; }

.comment-reply-title a {
  color: #707070;
  margin-inline-end: 5px; }

.comment-reply-title small a {
  padding: 5px 19px;
  border: 1px solid #ccc;
  vertical-align: text-top; }

#comments {
  font-weight: bold;
  color: var(--main);
  margin-bottom: 30px; }

.comment a, .logged-in-as a {
  color: rgba(51, 51, 51, 0.7); }

#commentform p {
  padding: 0;
  margin: 0; }

#commentform input[type=text], #commentform textarea {
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  vertical-align: baseline;
  padding: 10px;
  color: #282828;
  border: 1px solid var(--main);
  background-color: transparent; }

#commentform input.submit:hover {
  transition: linear .4s;
  background-color: var(--sec); }

/*comment*/
@media (max-width: 992px) {
  .switcher {
    margin: 0 auto !important; }

  .new-baner-1 img {
    height: 250px; }

  .woocommerce-account .woocommerce .col2-set {
    flex-direction: column !important; }

  .woocommerce-account .woocommerce .col2-set .col-1, .woocommerce-account .woocommerce .col2-set .col-2 {
    width: 100% !important;
    margin: 0 0 20px !important; }

  .checkout {
    flex-direction: column; }

  .woocommerce-LostPassword.lost_password {
    margin-top: 0 !important; }

  .products.columns-4.row .col-12 {
    margin-bottom: 30px; }

  .new-baner-1 p {
    color: #749f82; }

  .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
    float: unset !important;
    display: table;
    margin: 0 auto 20px !important; } }
/***********woocomerce****************/

/*# sourceMappingURL=main.css.map */
