@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 0.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 0.4s;
}

.searchh .search-cont form button:hover {
  background: transparent;
  transition: all linear 0.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-between;
    gap: 10px;
    width: 100%;
    z-index: 2;
    position: relative;
    padding: 5px 0 10px;
  }
  .nav-list {
    display: flex;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    justify-content: space-evenly;
  }
  .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 0.4s;
  }
  .sub-list i {
    color: #000;
    transition: all linear 0.3s;
  }
  .sub-list i:hover {
    color: var(--main);
    transition: all linear 0.3s;
  }
  .nav-list > .link > a {
    display: block;
    color: #FFF;
    position: relative;
    background: transparent;
    padding: 15px 3px;
    font-size: 18px;
    margin: 0 5px;
    font-family: norsal-regular;
    z-index: 1;
    transition: ease-in-out 0.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: 3px;
      background-color: #d1441d;
      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 0.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: #000;
    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;
    border: 1px solid #FFF;
    display: block !important;
    transition: all linear 0.3s;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255,255,255,.15);
  }
  .sub-list li {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
  }
  .sub-list li a {
    display: block;
    width: 100%;
    position: relative;
    color: #FFF !important;
    transition: all linear 0.3s;
    padding: 5px 0 !important;
  }
 
  .sub-list li a:before {
    content: "-";
    color: #FFF;
    margin: 0 5px;
    transition: all linear 0.3s;
  }
   .sub-list li:hover a ,.sub-list li:hover a:before {
      color: var(--main) !important;
  }
  .sub-list li a:hover .sub-list li a:before {
    transition: all linear 0.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 0.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 0.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 0.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 0.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: 0%;
    margin: 0px;
    margin-inline-end: 5px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: linear 0.4s;
  }
  .nav-btn:hover {
    transition: linear 0.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: #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: all 0.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: 0.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 0.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 0.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: #FFF;
    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 0.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 0.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 0.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: norsal-bold;
  font-display: swap;
  src: url(../fonts/norsal-bold.otf);
}
@font-face {
  font-family: norsal-regular;
  font-display: swap;
  src: url(../fonts/norsal-regular.otf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  border: none;
}
html[dir=rtl] * {
  direction: rtl;
  text-align: right;
}

img, iframe {
  max-width: 100%;
}

.wrap {
  overflow: hidden;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}

.loading img {
  max-width: 100%;
  padding: 20px;
}

:root {
  --main: #ff0000;
  --sec: #d51f27;
}

body {
  font-family: norsal-regular;
  background-color: #000000;
}

/* Start Scroll */
body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 50px;
}

body::-webkit-scrollbar {
  width: 0.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: 150px;
  height: 45px;
  color: #FFF;
  z-index: 2;
  background-color: transparent;
  border: 1px solid #FFF;
  position: relative;
  text-transform: capitalize;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  transition: 0.3s;
  overflow: hidden;
  font-family: norsal-regular;
}
.main-hover i {
  border-radius: 50%;
  background-color: #FFF;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s;
}
.main-hover:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: 0px;
  background: var(--main);
  opacity: 0;
  z-index: -2;
  top: 0;
  right: 0;
  transition: all linear 0.3s;
}
.main-hover:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border: 10px solid transparent;
  z-index: -1;
  top: 0;
  right: 0;
  border-radius: 0px;
  transition: all linear 0.3s;
}

.main-hover:hover {
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  color: #FFF !important;
  background-color: transparent;
  border: 1px solid transparent;
}
.main-hover:hover i {
  color: var(--main);
}
.main-hover:hover:before {
  opacity: 1;
}
.main-hover:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}

.main-header {
  font-size: 48px;
  color: #FFF;
  font-family: norsal-bold;
  z-index: 1;
  margin: 0 auto 60px;
  flex-direction: column;
  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:before {
  position: absolute;
  z-index: -1;
  font-size: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  pointer-events: none;
  color: var(--main);
}

body {
  font-family: norsal-regular;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: norsal-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;
}
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: norsal-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: norsal-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 .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: norsal-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: norsal-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: norsal-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: norsal-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: 240px;
  height: auto;
  max-height: 120px;
}
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: #FFF;
  border-radius: 0px;
  background-color: var(--main);
  font-size: 16px;
}
header .menu-icons .lang {
  /*width: 40px;
  height: 40px;*/
  display: flex;
  color: var(--main);
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: linear 0.2s;
  border-radius: 0%;
  font-size: 20px;
  border: 1px solid transparent;
  position: relative;
}
header .menu-icons .lang img {
  width: 40px;
  height: 40px;
  border-radius: 0%;
}
header .menu-icons .lang:before {
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgb(0, 189, 250) 0%, rgb(1, 96, 234) 100%);
  opacity: 0;
  z-index: -2;
  top: 0;
  right: 0;
  transition: all linear 0.3s;
}
header .menu-icons .lang:after {
  width: 100%;
  position: absolute;
  height: 100%;
  border: 20px solid transparent;
  z-index: -1;
  top: 0;
  right: 0;
  border-radius: 50%;
  transition: all linear 0.3s;
}
header .menu-icons .lang:hover {
  color: var(--sec);
  border: 1px solid transparent;
  transition: linear 0.2s;
}
header .menu-icons .lang:hover:before {
  opacity: 1;
}
header .menu-icons .lang:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
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: norsal-bold;
  color: #000;
}
header .menu-icons .phone a {
  font-size: 20px;
  font-family: norsal-bold;
  color: #000;
}
header .menu-icons .search-btn {
  background: linear-gradient(90deg, rgb(0, 189, 250) 0%, rgb(1, 96, 234) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #FFF;
  transition: linear 0.2s;
  text-align: center;
  position: relative;
}
header .menu-icons .search-btn:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgb(1, 96, 234) 0%, rgb(0, 189, 250) 100%);
  opacity: 0;
  z-index: 1;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: all linear 0.3s;
}
header .menu-icons .search-btn:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border: 20px solid transparent;
  z-index: 2;
  top: 0;
  pointer-events: none;
  right: 0;
  border-radius: 50%;
  transition: all linear 0.3s;
}
header .menu-icons .search-btn img {
  z-index: 3;
}
header .menu-icons .search-btn:hover {
  color: #FFF;
  border: 1px solid transparent;
  transition: linear 0.2s;
}
header .menu-icons .search-btn:hover:before {
  opacity: 1;
}
header .menu-icons .search-btn:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
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 0.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 0.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: norsal-bold;
  border-radius: 10px;
  background-color: #6d6e71;
  color: var(--main);
  transition: all linear 0.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 0.3s;
}
.fixed-social a:hover {
  transition: all linear 0.3s;
  background-color: var(--main);
  box-shadow: 0 0 43px rgba(0, 0, 0, 0.24);
}
.fixed-social a:hover i {
  transition: all linear 0.3s;
  color: #FFF;
}
.fixed-social .to-up {
  width: 36px;
  height: 36px;
}
.fixed-social .to-up img {
  width: 100%;
  height: 100%;
}

/**/
/*main video*/
@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;
  }
}
.main-video {
  position: relative;
  overflow: hidden;
}
.main-video img {
  width: 100%;
  height: 100vh;
}
.main-video .in-video {
  position: absolute;
  background-color: transparent;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
}
.main-video .in-video h2 {
  color: #FFF;
  font-size: 50px;
  width: 40%;
  font-family: norsal-bold;
  text-align: center;
}
.main-video .in-video a {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100px;
  color: #FFF;
  border: 1px solid #FFF;
  text-align: center;
  font-size: 60px;
  border-radius: 50%;
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  position: relative;
}
.main-video .in-video a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 170px;
  height: 170px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.main-video .in-video a:hover {
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  background-color: var(--main);
  border: 1px solid transparent;
}
.main-video .in-video a:hover:before {
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  background-color: var(--main);
}

/*main video*/
/*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: 600px;
  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: norsal-bold;
  font-size: 18px;
  color: #FFF;
  display: flex;
  background-color: var(--main);
  line-height: 33px;
  justify-content: center;
}
.mainslider .item h1 {
  font-size: 60px;
  font-family: norsal-bold;
  margin-bottom: 0;
  width: 70%;
  margin-inline-start: 20px;
  color: #FFF;
}

.mainslider .item .in-item h2 {
  font-size: 45px;
  color: var(--main);
  font-family: norsal-bold;
  margin-bottom: 10px;
  text-align: center;
}

.mainslider .item .in-item p {
  font-size: 18px;
  color: #FFF;
  text-align: center;
  margin-bottom: 0px;
  font-family: "norsal-regular";
  width: 34%;
}

.mainslider .item .in-item {
  transition: linear 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.mainslider .item .in-item .main-hover {
  border: 1px solid #FFF;
  color: #FFF;
}
.mainslider .item .in-item .main-hover:hover {
  border: 1px solid transparent;
}

/*
.mainslider .owl-item.active .in-item {
  animation: slideInLeft 1.5s linear 1;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  transition: linear .4s; }
.mainslider .owl-item.active img {
  animation: slideInRight 1.5s linear 1;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  transition: linear .4s; }*/
.mainslider .owl-nav {
  bottom: 20px;
  left: 21%;
  position: absolute;
  gap: 10px;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.mainslider .owl-nav .owl-prev i, .mainslider .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FFF;
  border-radius: 50%;
  background-color: transparent;
  transition: linear 0.4s;
  border: 1px solid #FFF;
}

.mainslider .owl-nav .owl-prev i:hover, .mainslider .owl-nav .owl-next i:hover {
  transition: linear 0.4s;
  color: #FFF;
  background-color: #000;
  border: 1px solid transparent;
}

.mainslider .owl-dots {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translatex(-50%);
  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 0.4s;
  border-radius: 50%;
  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: 50%;
  display: block;
  transition: all linear 0.4s;
}
.mainslider .owl-dots .owl-dot.active {
  transition: all linear 0.4s;
  border: 1px solid var(--main) !important;
}
.mainslider .owl-dots .owl-dot.active span {
  background-color: var(--main);
  transition: all linear 0.4s;
}

.mainslider .owl-nav .owl-prev i:hover, .mainslider .owl-nav .owl-next i:hover {
  transition: linear 0.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 0.4s;
}
.bot-slider .in-bot-slider i {
  font-size: 22px;
}
.bot-slider .in-bot-slider:hover {
  transition: all linear 0.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: 50px 0;
}
.who h1 {
   
  margin-bottom: 20px;
}
.who .r-who {
  position: relative;
  text-align: center;
}
.who .r-who img {
  max-height: 500px;
  max-width: 100%;
  width: 100%;
  z-index: 2;
}

.border-who {
  border: 3px solid #FFF;
  width: 30%;
  margin: 0 auto;
}

.who .in-who {
  position: relative;
  z-index: 3;
}
.who .in-who .bott-who {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.who .in-who .bott-who .featu .in-featu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.who .in-who .bott-who .featu .in-featu p {
  font-size: 20px;
  margin-bottom: 0;
}
.who .in-who .bott-who .left-feat h3 {
  border-inline-start: 1px solid var(--main);
  font-size: 43px;
  color: var(--main);
  margin-bottom: 0;
  padding: 30px 0;
  padding-inline-start: 10px;
}

.who .in-who p {
  font-size: 18px;
  color: #FFF;
  margin-bottom: 20px;
  text-align: justify;
  font-family: norsal-regular;
}
.who .in-who .tit{
        font-size: 22px;
    color: #FFF;
    margin-bottom: 20px;
    text-align: justify;
    font-family: 'norsal-bold';
}
.who .in-who p p {
  margin-bottom: 0;
}

.who .in-who .main-hover {
  display: flex;
}

.who .in-who br {
  display: none;
}

.who .in-who h1 {
  margin-bottom: 10px;
  color: #FFF;
  font-size: 50px;
  font-family: norsal-bold;
}

.who .in-who p span {
  font-size: 24px;
  color: #FFF;
  display: block;
  font-family: norsal-bold;
  margin-bottom: 10px;
}

.bot-who {
  padding: 70px 0 0px;
  position: relative;
}
.bot-who img {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.bot-who .vision {
  background: #FFF;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.23);
}
.bot-who .vision h2 {
  font-size: 24px;
  font-family: norsal-bold;
  color: var(--sec);
  margin-bottom: 15px;
}
.bot-who .vision p {
  font-size: 16px;
  color: #000;
  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: norsal-bold;
}
.chairman .chairman-cont p {
  color: #FFF;
  font-size: 24px;
  margin-bottom: 0;
}

/*end who*/
/*start gallery*/
.gallery {
  padding: 40px 0;
}

.main-gallery {
  position: relative;
  width: 100%;
  height: 250px;
  transition: all linear 0.3s;
}
.main-gallery img {
  width: 100%;
  height: 100%;
}
.main-gallery:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.49);
  transition: all linear 0.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 0.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;
  background-image: url("../img/bg-pro.png");
  background-repeat: no-repeat;
  background-position: top right;
}

.pro-item {
  width: 100%;
  height: 350px;
  border: 1px solid var(--sec);
  transition: all linear 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pro-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.pro-item a {
  position: absolute;
  bottom: -1px;
  right: 0;
  height: 60px;
  width: 250px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  color: #FFF;
  background-color: var(--sec);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: all linear 0.4s;
}
.pro-item:hover {
  transition: all linear 0.4s;
  border: 1px solid var(--main);
}
.pro-item:hover a {
  transition: all linear 0.4s;
  background-color: var(--main);
  color: #FFF;
}

.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 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 0.3s;
  font-family: norsal-bold;
}
.sponsor .nav-tabs li a:before {
  content: "";
  width: 0%;
  bottom: -1px;
  right: auto;
  position: absolute;
  left: 0;
  background-color: #1075b0;
  height: 4px;
  transition: 0.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 0.3s;
}
.sponsor .nav-tabs li a:hover:before, .sponsor .nav-tabs li a.active:before {
  transition: 0.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: 0.5;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  transition: all linear 0.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 0.3s;
  width: 100%;
  height: 350px;
  padding: 0 30px;
}
.news .main-news .in-news h4 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #3b3860;
  font-family: norsal-bold;
  text-align: center;
}
.news .main-news .in-news p {
  font-size: 16px;
  margin-bottom: 50px;
  color: #6d6e71;
  font-family: norsal-bold;
  text-align: center;
}
.news .main-news .in-news a {
  font-size: 18px;
  margin-bottom: 0px;
  color: #4e4e4e;
  font-family: norsal-bold;
  text-align: center;
  transition: all linear 0.3s;
}
.news .main-news:hover .img-news:before {
  transition: all linear 0.3s;
  width: 100%;
}
.news .main-news:hover .in-news {
  box-shadow: 0 0 59px rgba(0, 0, 0, 0.5);
  transition: all linear 0.3s;
}
.news .main-news:hover .in-news a {
  transition: all linear 0.3s;
  color: var(--main);
}
.news .col-lg-4:nth-of-type(2) .main-news {
  flex-direction: column-reverse;
}

/*end news*/
/*start service*/
.service {
  padding: 50px 0;
  position: relative;
}
.service .r-serv img {
  width: 100%;
  height: auto;
  max-height: 600px;
}
.service .to_serv {
  margin-inline-start: auto;
  display: flex;
}

.main-serv {
  transition: all linear 0.3s;
  position: relative;
  align-items: center;
  display: flex;
  height: 100px;
  overflow: hidden;
  justify-content: center;
}
.main-serv .img-serv {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-serv .img-serv:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: rgba(255, 0, 0, 0.22);
  z-index: 2;
  pointer-events: none;
  transition: all linear 0.3s;
}
.main-serv .img-serv img {
  max-width: 100%;
    width: 350px;
  height: 100px;
  position: relative;
  transition: all linear 0.4s;
}
.main-serv .img-serv h2 {
  font-size: 24px;
  font-family: norsal-bold;
  color: #FFF;
  margin-bottom: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: all linear 0.3s;
}
.main-serv .img-serv p {
  font-size: 24px;
  font-family: norsal-bold;
  color: #FFF;
  margin-bottom: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: all linear 0.3s;
}
.main-serv:hover {
  transition: linear 0.4s;
}
.main-serv:hover .img-serv:before {
  height: 100%;
}
.main-serv:hover .img-serv img {
  transform: scale(1.02);
}

.bord-service {
  border-color: #868686;
  margin: 0;
}

/*end service*/
/*start offer*/
.offer {
  padding: 40px 0;
}
.offer .r-offer {
  padding-inline-start: 100px;
}
.offer .r-offer .tit-offer {
  font-size: 48px;
  margin-bottom: 30px;
  font-family: norsal-bold;
  color: #FFF;
}
.offer .r-offer .cont-offer {
  font-size: 32px;
  color: #FFF;
  margin-bottom: 45px;
}
.offer .l-offer img {
  width: 100%;
  max-height: 600px;
  height: auto;
}

/*end offer*/
/*start reviews*/
.reviews {
  padding: 40px 0;
}
.reviews .owl-item {
  height: 100%;
}
.reviews .owl-dots {
  padding: 8px 12px;
  background-color: rgba(191, 191, 191, 0.4392156863);
  border-radius: 100px;
  position: absolute;
  bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.reviews .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all linear 0.3s;
}
.reviews .owl-dots .owl-dot.active span, .reviews .owl-dots .owl-dot:hover span {
  background-color: var(--main);
}

.item-reviews {
  padding: 30px;
  background-color: #1F1F1F;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.item-reviews .img-rev img {
  width: 100px;
  height: 100px;
  object-fit: fill;
  border-radius: 50%;
}
.item-reviews .l-rev {
  flex: 1;
}
.item-reviews .l-rev .tit-rev {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--main);
  font-family: norsal-bold;
}
.item-reviews .l-rev .cont-rev {
  color: #999999;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
}
.item-reviews:before {
  content: url("../img/icon.png");
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

/*end reviews*/
/*start branches*/
.branches {
  padding: 30px 0 50px;
}
.branches .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 0;
  margin-bottom: 30px;
}
.branches .nav-tabs .main-hover {
  border: 1px solid #FFF;
  border-radius: 0;
}
.branches .nav-tabs .main-hover:hover, .branches .nav-tabs .main-hover.active {
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  color: #FFF;
  background-color: transparent;
  border: 1px solid transparent;
}
.branches .nav-tabs .main-hover:hover i, .branches .nav-tabs .main-hover.active i {
  color: var(--main);
}
.branches .nav-tabs .main-hover:hover:before, .branches .nav-tabs .main-hover.active:before {
  opacity: 1;
}
.branches .nav-tabs .main-hover:hover:after, .branches .nav-tabs .main-hover.active:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
.branches .main-branch {
  width: 100%;
  height: 450px;
  position: relative;
}
.branches .main-branch iframe {
  width: 100%;
  height: 100%;
}
.branches .main-branch .in-branch {
  position: absolute;
  top: 50px;
  right: 50px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.branches .main-branch .in-branch .tit-branch {
  color: var(--main);
  font-size: 24px;
  margin-bottom: 10px;
  font-family: norsal-bold;
}
.branches .main-branch .in-branch .cont-branch {
  font-size: 18px;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
}
.branches .main-branch .in-branch .cont-branch i {
  font-size: 28px;
  color: var(--sec);
}

/*start branches*/
/*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 0.4s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  background-color: #978556;
  color: #FFF;
  transition: all linear 0.4s;
}

.blog-post .owl-nav i:hover {
  transition: all linear 0.4s;
  background-color: var(--main);
  color: #FFF;
}

.main-blog {
  display: flex;
  flex-direction: column;
  border-radius: 0px;
  overflow: hidden;
  transition: all linear 0.4s;
  position: relative;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.14);
}

.main-blog img {
  width: 100%;
  height: 500px;
  transition: all linear 0.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 0.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 0.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 0.4s;
  position: relative;
}

.main-blog .in-item .bot-blog {
  transition: all linear 0.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 0.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 0.4s;
  background-color: #FFF;
  visibility: hidden;
}

.main-blog .in-item .bot-blog a i:hover {
  transition: linear 0.4s;
  background-color: #978556;
}

.main-blog:hover .in-item {
  transition: all linear 0.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 0.4s;
  margin-bottom: 0px;
  opacity: 1;
  visibility: visible;
}

.main-blog .in-item:hover .time {
  margin-inline-start: 0px;
  opacity: 1;
  visibility: visible;
  transition: linear 0.2s;
  transition-delay: 0.6s;
}

.main-blog:hover .in-item h3 {
  transition: all linear 0.4s;
  color: var(--sec);
}

.main-blog:hover .in-item p {
  margin-inline-start: 0px;
  opacity: 1;
  visibility: visible;
  transition: linear 0.4s;
  transition-delay: 0.3s;
}

.main-blog:hover .in-item .main-hover {
  margin-inline-start: 0px;
  transition: linear 0.2s;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.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: norsal-bold;
  color: #000;
  transition: linear 0.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 0.4s;
}

/*end posts*/
/*start partner*/
.partner {
  padding: 50px 0 50px;
  position: relative;
  background-size: 100% 100%;
}
.partner .part-item {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 20px;
  transition: all linear 0.3s;
}
.partner .part-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.partner .part-item:hover {
  transition: all linear 0.3s;
  box-shadow: 0 0px 24px rgba(0, 0, 0, 0.14);
}
.partner .owl-dots {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translatex(-50%);
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.partner .owl-dots .owl-dot {
  width: 20px !important;
  height: 20px !important;
  background-color: transparent !important;
  transition: all linear 0.4s;
  border-radius: 50%;
  border: 1px solid var(--sec);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  display: block;
  transition: all linear 0.4s;
}
.partner .owl-dots .owl-dot.active {
  transition: all linear 0.4s;
  border: 1px solid var(--main) !important;
}
.partner .owl-dots .owl-dot.active span {
  background-color: var(--main);
  transition: all linear 0.4s;
}

.part-item {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 0px;
  transition: all linear 0.3s;
}
.part-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.part-item:hover {
  transition: all linear 0.3s;
  box-shadow: 0 0px 24px rgba(0, 0, 0, 0.14);
}

/*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: norsal-bold;
  overflow: hidden;
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.wpcf7-submit:hover {
  transition: 0.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: norsal-bold;
  transition: all linear 0.3s;
}
.bef-footer .in-bef a:hover {
  background-color: var(--main);
  color: #FFF;
  transition: all linear 0.3s;
}

footer {
  padding: 70px 0px 30px;
  position: relative;
  background-image: url("../img/foot-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
footer .footer-logo {
  margin-bottom: 10px;
  text-align: center;
}
footer .footer-logo img {
  max-height: 110px;
  max-width: 320px;
}
footer .who-footer p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #FFF;
  text-align: center;
}
footer .who-footer p p {
  margin-bottom: 0;
}
footer .who-footer .in-who-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .who-footer .in-who-foot img {
  max-width: 65px;
  max-height: 65px;
}
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: 15px;
  justify-content: center;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFF;
  border-radius: 10px;
  transition: all linear 0.3s;
}
footer .social a:hover {
  color: var(--main);
}
footer .exhibition-times p {
  font-size: 16px;
  font-family: norsal-bold;
  color: #FFF;
  text-align: left;
  margin-bottom: 10px;
}
footer .exhibition-times span {
  font-size: 14px;
  font-family: norsal-regular;
  color: #FFF;
  display: block;
  text-align: left;
}
footer .organized {
  position: absolute;
  bottom: 5px;
  right: 50px;
}
footer .new-cont {
  margin-bottom: 30px;
  text-align: center;
}
footer .new-cont p {
  font-size: 16px;
  color: var(--sec);
  text-align: center;
  margin-bottom: 10px;
}
footer .new-cont a {
  font-size: 16px;
  color: #FFF;
  text-align: center;
  display: block;
}
footer .new-cont .r-phone {
  direction: ltr;
}
footer .bord {
   
  border-inline-end: 1px solid #FFF;
}

footer h2 {
  font-size: 24px;
  color: #00adf7;
  margin-bottom: 22px;
  font-family: norsal-bold;
}

footer .es-field-wrap {
  width: 100%;
}

footer .es-field-wrap label {
  font-size: 24px;
  color: #000;
  font-family: norsal-bold;
  text-align: center;
  margin-bottom: 0;
  width: 100%;
}

.es-form-field-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: rgba(252, 249, 249, 0.27);
}
.es-form-field-container:before {
  content: url("../img/email.png");
  position: absolute;
  top: 10px;
  right: 15px;
}
.es-form-field-container .main-but {
  position: relative;
  width: 25px;
  height: 25px;
}
.es-form-field-container .main-but:before {
  content: url("../img/paper-plane.png");
  position: absolute;
  top: 61%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

footer input[type=email] {
  color: #00adf7;
  width: 100%;
  background-color: transparent;
  margin-bottom: 0;
}

footer input[type=email]::placeholder {
  color: #00adf7;
}

footer input[type=submit] {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: 0;
}

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;
  column-count: 1;
  gap: 15px;
}

footer .mid-foot ul li {
  list-style: none;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

footer .mid-foot ul li a {
  color: #FFF;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  transition: all linear 0.4s;
}

footer .mid-foot ul li a:hover {
  color: var(--main);
  transition: all linear 0.4s;
}

footer .mid-foot .social a i {
  padding: 11px 0;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  background-color: var(--main);
  transition: linear 0.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: norsal-bold;
}

footer .cont .sec a {
  color: #FFF;
  font-size: 16px;
  transition: linear 0.4s;
  cursor: pointer;
}

footer .cont .sec a:hover {
  transition: linear 0.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: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

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 0.4s;
}
footer .end-foot .in-end .social i:hover {
  color: var(--sec);
  transition: all linear 0.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-size: 18px;
  margin-bottom: 0;
}

footer .end-foot .in-end .links {
  color: #FFF;
  font-size: 18px;
  transition: all linear 0.3s;
}
footer .end-foot .in-end .links:hover {
  color: var(--sec);
}

footer .end-foot .in-end p span {
  color: var(--sec);
  font-family: norsal-regular;
  transition: linear 0.4s;
}

footer .end-foot .in-end p a:hover {
  color: var(--sec);
  transition: linear 0.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;
}

.mb-6 {
  margin-bottom: 55px;
}

/**/
@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%;
  }
  .main-video img {
    height: 400px;
  }
  .main-video .in-video h2 {
    font-size: 32px;
    width: 65%;
  }
  .main-video .in-video a {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  .main-video .in-video a:before, .main-video .in-video a:after {
    width: 110px;
    height: 110px;
  }
  .mainslider .item h1 {
    font-size: 32px;
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }
  .who .in-who .bott-who .left-feat h3 {
    border: 0;
  }
  header .top-phone {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .connect-us.home-page {
    padding: 40px 0 !important;
  }
  .who {
    position: relative;
  }
  .offer .r-offer {
    padding-inline-start: 20px;
  }
  .branches .main-branch {
    height: auto;
  }
  .branches .main-branch .in-branch {
    position: relative;
    top: unset;
    right: unset;
    padding: 30px;
  }
  footer .bord {
    border-right: 0px solid #FFF;
    border-left: 0px solid #FFF;
  }
  .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;
  }
  .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;
  }
  .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 {
    
  }
  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: 350px;
  }
  .mainslider .item .in-item {
    gap: 20px;
  }
  .bot-who .number-who-item h4 {
    margin-bottom: 0;
  }
  .bot-who, .sponsor, .news {
    padding: 40px 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: 165px;
    max-height: 150px;
  }
  .new-top-header {
    position: relative;
    background-color: var(--sec);
    padding: 20px 0;
  }
  .main-header {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .main-header:before {
    font-size: 65px;
    width: 100%;
    text-align: center;
  }
  .who .in-who .bott-who {
    flex-direction: column;
  }
  .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 0.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;
  }
  .who, .team, .service {
    padding: 40px 0;
  }
  .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;
    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;
  }
  .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;
  }
  header:before, .in-head:before {
    display: none;
  }
  .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: norsal-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: #FFF;
  text-align: justify;
}
.single-pages .bootom-side p iframe {
  width: 100%;
  height: 650px;
}

.single-pages .bootom-side.apply p {
  color: #FFF;
}

.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 0.4s;
}

.single_service .right_side_whous a:hover {
  transition: linear 0.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;
}

.zero-auto {
  display: flex;
  margin: 0 auto !important;
}

.connect-us.home-page {
  padding: 70px 0 80px;
  background-image: url("../img/bg-cont.png");
  background-size: 100% 100%;
}
.connect-us.home-page .map iframe {
  height: 435px;
  border-radius: 50px;
}
.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: 23px;
  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(--main);
  color: var(--main);
  transition: linear 0.3s;
}
.connect-us.home-page .main-form input:hover::placeholder, .connect-us.home-page .main-form select:hover::placeholder {
  color: var(--main);
  transition: linear 0.3s;
}
.connect-us.home-page .main-form textarea {
  height: 210px;
  border: 1px solid #6d6e71;
  border-radius: 23px;
  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(--main);
  color: var(--main);
  transition: linear 0.3s;
}
.connect-us.home-page .main-form textarea:hover::placeholder {
  color: var(--main);
  transition: linear 0.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 .main-content {
  background-color: #FFF;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  padding: 30px 20px;
  flex-direction: column;
}
.connect-us.home-page .cont {
  display: flex;
  align-items: center;
  max-width: 100%;
  justify-content: flex-start;
}
.connect-us.home-page .cont .fir {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #757575;
  margin: 0 5px 0px;
}
.connect-us.home-page .cont .fir img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: linear 0.3s transform;
}
.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;
  transition: all linear 0.4s;
}
.connect-us.home-page .cont .sec h4 {
  font-size: 18px;
  color: #757575;
  margin-bottom: 0px;
  display: block;
  font-family: norsal-bold;
  transition: linear 0.4s;
}
.connect-us.home-page .cont .sec a {
  color: #757575;
  font-size: 16px;
  transition: linear 0.4s;
  cursor: pointer;
}
.connect-us.home-page .cont:hover a, .connect-us.home-page .cont:hover h4 {
  transition: linear 0.4s;
  color: var(--main);
}
.connect-us.home-page .cont:hover .fir {
  border: 1px solid var(--main);
  transition: all linear 0.4s;
}
.connect-us.home-page .cont:hover img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(99%) saturate(7497%) hue-rotate(211deg) brightness(98%) contrast(99%);
  transform: rotateX(360deg);
  transition: linear 0.3s transform;
}
.connect-us.home-page .cont .sec .r-phone:nth-of-type(1):after {
  content: "-";
  font-size: 16px;
  color: #757575;
  font-weight: bold;
}
.connect-us.home-page .cont .sec .r-phone:nth-last-of-type(1):after {
  display: none;
}

.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 0.4s;
  margin-bottom: 0px;
  width: 100%;
  height: 45px;
  font-size:14px;
}

.connect-us .main-form input::placeholder, .connect-us .main-form select, .connect-us .main-form textarea::placeholder {
  color: #6d6e71;
  transition: linear 0.4s;
}

.connect-us .main-form input:hover {
  border: 1px solid var(--main);
  color: var(--main);
  transition: linear 0.4s;
}
.connect-us .main-form input:hover::placeholder {
  color: var(--main);
  transition: linear 0.4s;
}

.connect-us .main-form textarea {
  border: 1px solid #6d6e71;
  border-radius: 0px;
  color: #6d6e71;
  background-color: transparent;
  padding: 8px 17px;
  transition: linear 0.4s;
  margin-bottom: 0px;
  width: 100%;
  height: 210px;
  resize: none;
}

.connect-us .main-form textarea:hover {
  border: 1px solid var(--main);
  color: var(--main);
  transition: linear 0.4s;
}
.connect-us .main-form textarea:hover::placeholder {
  color: var(--main);
  transition: linear 0.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 0.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 0.4s;
}
.emaillist .main-hover .wpcf7-spinner {
  position: absolute;
}

.wpcf7 .main-hover.big input[type=submit] {
  width: 200px !important;
}

.wpcf7 .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 0.4s;
}

.wpcf7 .main-hover input[type=submit]:hover, .es_subscription_form.es_shortcode_form .main-hover input[type=submit]:hover {
  transition: linear 0.4s;
  color: #FFF;
  background-color: transparent;
}

.single_service .right_si img {
  width: 100%;
  height: 120px;
  transition: linear 0.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 0.4s;
}

.partt .item:hover {
  transition: linear 0.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 0.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 0.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;
  font-size:14px !important;
}
.wpcf7 form.sent .wpcf7-response-output{
  font-size:14px !important;
}
.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 0.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 0.4s;
}

.new-lang .search-btn img {
  width: 15px;
}

.new-lang a:hover {
  transition: linear 0.4s;
}

.new-lang a i:hover {
  transition: linear 0.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;

  iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
  }

  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 rgba(0, 0, 0, 0.2392156863);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.content-block-item-icon {
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0 auto 15px auto;
  border: 1px solid rgba(0, 0, 0, 0.2392156863);
  display: flex;
  align-content: center;
  align-items: center;
}

.content-block-item-icon img {
  max-height: 100%;
  margin: auto;
  transition: all 0.3s ease-in-out;
}

.content-block-item-tit {
  color: #000;
  transition: all 0.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 !important
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #FFF;
  color: #FFF;
}

.tit-h3{
  color:#FFF;
  margin-bottom: 25px;
}

.serv-radio input[type="checkbox"] {
  opacity: 0;
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}
.serv-radio .main-serv{
  cursor: pointer; }
.main-serv input[type="checkbox"]:checked + .img-serv:before {
  height: 100%;
}
.main-serv input[type="checkbox"]:checked + .img-serv img {
  transform: scale(1.02);
}
#service_name_new{
  display: none;
}
.thx-img{
    width:800px;
}
.thx-text p {
    font-size:28px;
        text-align: center !important;
}
html[dir=ltr] {
  /*.fixed-social{
      right: 30px;
      left: unset;
  }*/
  /* footer .mid-foot ul li a:before{
      content: "\f101";
  }*/
}
html[dir=ltr] .topsite {
  position: absolute;
  top: 0;
  left: 0;
  right: unset;
}
html[dir=ltr] .slider-txt {
  font-weight: bold;
  font-size: 34px;
}
html[dir=ltr] .branches .nav-tabs .main-hover {
  width: 180px;
}
html[dir=ltr] .number_statc {
  right: 0;
  left: unset;
}
html[dir=ltr] .main-hover.arrowing {
  font-size: 14px;
}
html[dir=ltr] .fa-arrow-left {
  transform: rotate(180deg) !important;
}
html[dir=ltr] .statices-sec > img {
  right: 0;
  left: unset;
}
html[dir=ltr] .es-form-field-container:before {
  right: unset;
  left: 15px;
}
@keyframes rotateAnimation {
  25% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
html[dir=ltr] .main-hover.arrowing span {
  right: unset;
  left: 55%;
}
html[dir=ltr] footer .main-hover.arrowing span {
  right: unset;
  left: 55%;
}
html[dir=ltr] .main-hover.arrowing .a1 {
  position: absolute;
  right: unset;
  left: 20px;
  transition: linear 0.4s;
}
html[dir=ltr] .main-hover.arrowing .a2 {
  position: absolute;
  left: unset;
  right: 20px;
  bottom: -20px;
  transition: linear 0.4s;
}
html[dir=ltr] .main-hover.arrowing:hover span {
  position: absolute;
  left: 20px;
  right: unset;
  transition: linear 0.4s;
}
html[dir=ltr] .main-hover.arrowing:hover .a1 {
  bottom: -20px;
  transition: linear 0.4s;
}
html[dir=ltr] .main-hover.arrowing:hover .a2 {
  left: 80%;
  right: unset;
  bottom: unset;
  transition: linear 0.4s;
}
html[dir=ltr] .nav-list > .link {
  text-transform: capitalize;
  margin-right: 5px;
}
html[dir=ltr] .has_sub_menu {
  margin-right: 5px;
}
html[dir=ltr] .sub-list {
  left: 0;
}
html[dir=ltr] .sub-list li a.has_sub_menu {
  margin-left: 5px;
}
html[dir=ltr] .sub-list .sub-list {
  left: 100%;
}
html[dir=ltr] .mobile-nav-list {
  left: 0;
  transform: translateX(-100%);
}
html[dir=ltr] .mobile-nav-list .link a.has_sub_menu {
  margin-left: 5px;
}
html[dir=ltr] .sub-list .sub-list a {
  padding-right: 15px;
}
html[dir=ltr] .nav-overlay {
  right: 0;
  transform: translateX(100%);
}
html[dir=ltr] .search .search-cont form button {
  left: unset;
  right: 0;
}
html[dir=ltr] .target .tar-sli .owl-nav {
  right: unset;
  left: 30px;
}
html[dir=ltr] .mainslider .item .btn-slider {
  left: unset;
  right: 0;
  font-size: 14px;
}
html[dir=ltr] .mainslider .item .in-item #countdown span, html[dir=ltr] .bef-footer .in-bef a {
  text-transform: capitalize;
}
html[dir=ltr] .goals .project-sec .owl-nav {
  flex-direction: row-reverse;
}
html[dir=ltr] .sponsor .nav-tabs li a {
  padding: 0 25px 12px;
}
html[dir=ltr] .opinions .op-sli .item, html[dir=ltr] .mainslider .item {
  direction: ltr;
}
html[dir=ltr] .main-form label {
  right: unset !important;
  left: 0px;
}
html[dir=ltr] .project .proj-sli .row, html[dir=ltr] .single-research .item {
  direction: ltr;
}
html[dir=ltr] .project .proj-sli .row .in-who {
  margin-left: 0px;
  margin-right: -100px;
}
html[dir=ltr] .who:before {
  transform: translateX(-50%) scaleX(-1);
}
html[dir=ltr] .main-serv .in-serv a i, html[dir=ltr] .main-proj .img-proj a i, html[dir=ltr] .nav-btn img {
  transform: scaleX(-1);
}
html[dir=ltr] .main-serv .in-serv h2:before {
  right: unset;
  left: -20px;
}
html[dir=ltr] .main-proj .item-project .img-project:before {
  right: unset;
  left: 0;
}
html[dir=ltr] .service-item .service-txt h5, html[dir=ltr] .main-header span {
  text-transform: capitalize;
}
html[dir=ltr] .main-proj .item, html[dir=ltr] .main-blog .bot-blog, html[dir=ltr] .companies .item {
  direction: ltr;
}
html[dir=ltr] .dot-r .col-lg-3:after {
  left: unset;
  right: 0;
}
html[dir=ltr] .said .owl-nav {
  left: -27px;
}
html[dir=ltr] .in-service .owl-nav .owl-prev {
  right: 0;
}
html[dir=ltr] .accordion a:after {
  float: right;
}
html[dir=ltr] .sub-list li a {
  font-size: 12px;
}
html[dir=ltr] .slide-menu, html[dir=ltr] .single-research .owl-nav {
  left: unset;
  right: 0;
}
html[dir=ltr] .news .slider.slider-for .slider-banner-image .new-date {
  right: unset;
  left: 30px;
}
html[dir=ltr] .main-sec .main-serv {
  min-height: 377px;
  max-height: 400px;
}
html[dir=ltr] .contact .in-contact {
  margin-right: 0;
  margin-left: -90px;
}
html[dir=ltr] .wcs_fixed_left {
  /* left: 20px;
   right: unset;*/
}
html[dir=ltr] .wcs_fixed_left .wcs_popup_avatar {
  left: initial;
  right: -70px;
}
html[dir=ltr] .wcs_fixed_left .wcs_popup {
  left: 0 !important;
  right: unset !important;
}
html[dir=ltr] header .fi-head a {
  font-size: 11px;
}
html[dir=ltr] .main-hover, html[dir=ltr] header .menu-icons, html[dir=ltr] .bot-slider .in-bot-slider h2, html[dir=ltr] .in-service h2, html[dir=ltr] .number .f-number span, html[dir=ltr] .number .in-number h3, html[dir=ltr] .connect-us.home-page .top-con-us h3, html[dir=ltr] .connect-us.home-page .top-con-us p, html[dir=ltr] .connect-us .main-form input::placeholder, html[dir=ltr] .connect-us .main-form select, html[dir=ltr] .connect-us .main-form textarea::placeholder {
  text-transform: capitalize;
}
html[dir=ltr] .single-pack .item {
  min-height: 657px;
}
html[dir=ltr] .single-pack.in .item {
  min-height: 720px;
}
html[dir=ltr] .searchh .search-cont form button {
  left: unset;
  right: 0;
}
html[dir=ltr] .single-pack .owl-nav .owl-next, html[dir=ltr] .single-opin .owl-nav .owl-next {
  float: unset;
}
html[dir=ltr] .single-pack .owl-nav .owl-prev, html[dir=ltr] .single-opin .owl-nav .owl-prev {
  float: right;
}
html[dir=ltr] footer .top-foot .content .wpcf7-form-control-wrap:nth-of-type(1) {
  margin-left: 0px;
  margin-right: 20px;
}
html[dir=ltr] footer ul li a {
  text-transform: capitalize;
}
html[dir=ltr] .wpcf7 {
  direction: ltr;
}
@keyframes mymove {
  from {
    right: 85%;
  }
  to {
    right: 0%;
  }
}
@keyframes mymove2 {
  from {
    right: 85%;
  }
  to {
    right: 0%;
  }
}
html[dir=ltr] .service-item .service-txt a i, html[dir=ltr] .new-media .in-media .bot-media a i {
  transform: rotate(180deg);
}
html[dir=ltr] .cont-us .in-cont {
  right: unset;
  left: 20%;
}
html[dir=ltr] .top-foot .content .wpcf7-form-control-wrap:nth-of-type(2n+2) {
  margin-right: 0;
  margin-left: 20px;
}
html[dir=ltr] .main-header {
  text-transform: capitalize;
}
html[dir=ltr] .in-sin-reg .main-hover {
  width: 200px;
}
html[dir=ltr] .mainslider .item .in-item #countdown span {
  font-size: 11px;
}
html[dir=ltr] .who-carousel .owl-dots {
  left: 0;
}
html[dir=ltr] .pro-item a {
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  right: unset;
  left: 0;
}
html[dir=ltr] .pro-item a i {
  transform: rotate(180deg);
}
html[dir=ltr] .bef-footer .in-bef a {
  font-size: 24px;
  line-height: 38px;
}
html[dir=ltr] .file-success-text {
  left: unset;
  right: 30px;
}
html[dir=ltr] .top-slider .dot-r .col-lg-3:after {
  left: unset;
  right: 0;
}
html[dir=ltr] .bot-slider .in-bot-slider i, html[dir=ltr] .main-blog i {
  transform: rotateY(180deg);
}
html[dir=ltr] .achievement .owl-nav {
  right: unset;
  left: 0;
}
html[dir=ltr] .achievement .row .in-who {
  margin-right: 0;
  margin-left: -100px;
}
html[dir=ltr] .achievement .row {
  direction: ltr;
}
html[dir=ltr] .slick-slide {
  float: left !important;
  direction: ltr;
}
html[dir=ltr] .single-pages .bootom-side input[type=text], html[dir=ltr] .single-pages .bootom-side input[type=email], html[dir=ltr] .single-pages .bootom-side input[type=tel], html[dir=ltr] .single-pages .bootom-side textarea {
  text-align: left;
}
html[dir=ltr] .main-head .main-head-2 .logo span {
  font-size: 14px;
}
html[dir=ltr] .main-hover i, html[dir=ltr] .main-bloog .moree i, html[dir=ltr] .common-qusetion .allque p a i {
  transform: scaleX(-1);
}
html[dir=ltr] .bot-who img {
  transform: scaleX(-1);
  right: unset;
  left: 0;
}
html[dir=ltr] header .menu-icons .request {
  width: 150px;
  font-size: 14px;
}


.ppf-section {
      
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
            min-height: 550px;
}

.ppf-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* شفافية الخلفية */
    z-index: 0;
}

.ppf-section .container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.ppf-title {
      font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center !important;
}
.ppf-section p{
        text-align: center !important;
    max-width: 75%;
    margin-bottom: 0;
}
.ppf-section .main-hover{
           display: flex;
    margin: 15px auto 0;
    width: 220px;
    height: 39px;
}
.ppf-section .in-ppf{
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap:15px;
}
.ppf-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.features-section {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
}

.features-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: right;
}

.features-list {
    list-style-type: none;
    padding: 0 15px;
    line-height: 2;
    text-align: right;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.features-list img{
    max-height: 450px;
}
.features-list li strong {
    color: #d8232a;
}
.services-section {
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    color: #fff;
}

.services-section p {
    font-size: 32px;
    margin-bottom: 20px;
     text-align: center;
}
.services-section .main-hover{
        min-width: max-content;
    color: #000;
    background-color: #ccc;
}
.services-section .logo img {
    max-width: 200px;
    margin: 20px auto;
}

.services-section .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

 .method{
    padding: 40px 0;
 }
.method h2{
     font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color:#FFF;
    text-align: center !important;
}
.method .main-method{
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom:20px;
}
.method .main-method img{
        width: 255px;
    height: 255px;
    object-fit: cover;
}
.method .main-method .tit-method{
        font-size: 22px;
    color: #FFF;
    font-family: 'norsal-bold';
        text-align: center;
}
.method .main-method p{
        color: #FFF;
    text-align: center;
    margin-bottom: 0;
}
/*live-btn */
.live-btn {
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: var(--main);
    visibility: visible;
    opacity: 1;
}

.live-btn:before {
    position: absolute;
    content: '';
    top: 0;
    height: 100%;
    width: 0;
    /*right: 0;*/
    background: #000;
    visibility: visible;
    opacity: 1;
    transition: .8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

html[dir='rtl'] .live-btn:before {
    right: 0;
}

html[dir='ltr'] .live-btn:before {
    left: 0;
}

.live-btn:hover:before {
    transition: .8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.live-btn, .button__icon, .button__text {
    transition: all 0.3s;
}

.live-btn .button__text {
    color: #fff;
    font-weight: 600;
}

html[dir='rtl'] .live-btn .button__text {
    transform: translateX(-18px);
}

html[dir='ltr'] .live-btn .button__text {
    transform: translateX(18px);
}

.live-btn .button__icon {
    position: absolute;
    height: 100%;
    width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[dir='rtl'] .live-btn .button__icon {
    transform: translateX(-105px);
}

html[dir='ltr'] .live-btn .button__icon {
    transform: translateX(105px);
}

.live-btn svg {
    width: 18px;
    fill: #fff;
}

.live-btn:hover {
    background-color: transparent;
}

.live-btn:hover .button__text {
    color: #FFF;
}
.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    height: 100%;
    transition: .3s;
}

.blog-date {
    position: absolute;
    top: 26px;
    background: var(--main);
    inset-inline-end: 0;
    border-radius: 0 10px 10px 0;
    padding: 10px;
    color: #FFF;
    font-size: 16px;
    transition: .3s;
}
.blog-date span{
        letter-spacing: 1px;
    unicode-bidi: plaintext;
}
.blog-date i {
    margin-inline-end: 8px;
}

/*.blog-img {*/
/*    max-height: 297px;*/
/*}*/

.blog_ing [class*='col-'] {
    margin-bottom: 30px;
}

 
 

.blog-img img {
        height: 295px;
    width: 100%;
    border-radius: 26px 26px 0 0;
    object-fit: cover !important
}

 

.blog-tit {
    color: var(--main);
    font-size: 18px;
 
}

.blog-desc {
    flex-grow: 1;
    font-size: 16px;
    margin-top: 15px;
}

.blog-url {
    margin-top: 24px;
}

.blog .main-btn {
    border: 1px solid var(--main) !important;
}

.blog-item {
    display: flex;
    flex-direction: column;
    min-height: calc(100% - 295px);
    padding: 20px;
    background: #FFFF;
    position: relative;
}
 

.blog-card:hover .blog-date {
    background: var(--main);
    color: #FFF;
}

.blog-card:hover .main-btn {
    color: white;
    background: transparent;
}

.blog-card:hover .main-btn:before,
.blog-card:hover .main-btn:after {
    transform: none;
    background: var(--background);
}

.blog-card {
    box-shadow: 0 3px 6px rgba(18 80 142 / .25);
}
.single-pages .bootom-side h2 ,.single-pages .bootom-side span ,.single-pages .bootom-side h3 ,.single-pages .bootom-side h4,.single-pages .bootom-side h5 ,.single-pages .bootom-side h1 ,.single-pages .bootom-side li{
    color:#FFF;
    line-height: 30px;
}
.single-pages .bootom-side h2 {
        letter-spacing: 1px;
}
@media (max-width: 1200px) and (min-width: 992px) {
  html[dir=ltr] .nav-list > .link > a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
   
  html[dir=ltr] .main-hover.arrowing {
    font-size: 11px;
  }
  html[dir=ltr] .slider-txt {
    font-size: 9px;
  }
  html[dir=ltr] .mainslider .item .in-item h2 {
    font-size: 18px;
    line-height: 30px;
  }
  .live-btn {
        border-radius: 10px;
         width: 110px;
        height: 35px;
    }
    html[dir="rtl"] .live-btn .button__text {
        transform: translateX(-25px);
    }

    html[dir="ltr"] .live-btn .button__text {
        transform: translateX(25px);
    }

    .live-btn:hover .button__icon {
        width: 114px;
    }
  html[dir=ltr] .bef-footer .in-bef a {
    width: 120px;
    height: 35px;
    font-size: 16px;
  }
  .features-section .order{
          order: 2;
  }
  .ppf-section p{
    max-width: 75%;
}
}
 
/****************elhussini****************************/

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