@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: #000;
    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: #000;
    position: relative;
    background: transparent;
    padding: 15px 3px;
    font-size: 16px;
    margin: 0 5px;
    font-family: norsal-regular;
    z-index: 1;
    transition: ease-in-out 0.5s;
    /*  &:before {
        content: '';
        position: absolute;
        right: auto;
        bottom: 0px;
        width: 0%;
        height: 3px;
        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;
        top: 1px;
        width: 0%;
        height: 3px;
        background-color: var(--main);
        left: 0;
        z-index: -1;
        transition: .8s;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
      }*/
  }
  .nav-list > .link:hover a,
  .nav-list > .link.active a {
    color: var(--sec);
    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: #FFF;
    padding: 0px 5px;
    list-style: none;
    overflow-x: hidden;
    max-height: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    min-width: 215px;
    opacity: 0;
    z-index: 4;
    transform: rotateX(180deg);
    visibility: hidden;
    display: block !important;
    transition: all linear 0.3s;
  }
  .sub-list li {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
  }
  .sub-list li a {
    display: block;
    width: 100%;
    position: relative;
    color: #000 !important;
    transition: all linear 0.3s;
    padding: 5px 0 !important;
  }
  .sub-list li a:before {
    content: "-";
    color: #000;
    margin: 0 5px;
    transition: all linear 0.3s;
  }
  .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: 102%;
    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: 50%;
    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: #FFF;
    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: #000;
    display: block;
    text-align: center;
    font-weight: bold;
    width: 100%;
    font-size:18px;
  }
  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;
}

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

.wrap {
  overflow: hidden;
}

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

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

:root {
  --main: #103A3A;
  --sec: #D5A775;
}

body {
  font-family: norsal-regular;
}

/* 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: 250px;
  height: 50px;
  color: #FFF;
  z-index: 2;
  background-color: var(--main);
  border: 1px solid transparent;
  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: transparent;
  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(--sec);
  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: 20px 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;
  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: #000;
  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 {
  content: attr(cont);
  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: absolute;
  width: 100%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
}
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: #000;
  border-radius: 0px;
  background-color: var(--main);
  font-size: 16px;
}
header .menu-icons .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: linear 0.2s;
  font-size: 20px;
  gap: 10px;
  position: relative;
  color: #000;
  /*&:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border-radius: 50%;
    background: var(--main);
    opacity: 0;
    z-index: -2;
    top: 0;
    right: 0;
    transition: all linear .3s;
  }

  &:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border: 20px solid transparent;
    z-index: -1;
    top: 0;
    right: 0;
    border-radius: 50%;
    transition: all linear .3s;
  }*/
}
header .menu-icons .lang img {
  width: 40px;
  height: 40px;
  border-radius: 0%;
}
header .menu-icons .lang:hover {
  color: var(--sec);
  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: var(--main);
  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: var(--main);
  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: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: 20px;
  font-family: norsal-bold;
  border-radius: 50%;
  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;
}
.top-slider .bot-slid {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.top-slider .bot-slid .cont {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-slider .bot-slid .cont a {
  font-size: 16px;
  color: var(--sec);
}

.mainslider .item {
  position: relative;
  overflow: hidden;
}
.mainslider .item img {
  height: 750px;
  width: 100%;
}
.mainslider .item .btn-slider {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 170px;
  height: 38px;
  border-start-start-radius: 20px;
  border-end-start-radius: 20px;
  font-family: norsal-bold;
  font-size: 18px;
  color: #FFF;
  display: flex;
  background-color: var(--main);
  line-height: 33px;
  justify-content: center;
}

.mainslider .item .in-item h2 {
  font-size: 55px;
  color: #FFF;
  font-family: norsal-bold;
  margin-bottom: 10px;
}

.mainslider .item .in-item p {
  font-size: 32px;
  color: #FFF;
  text-align: center;
  margin-bottom: 0px;
  font-family: "norsal-bold";
  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: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding-inline-start: 20%;
  background: rgba(16, 58, 58, 0.27);
}
/*
.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 {
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  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: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FFF;
  border-radius: 0%;
  background-color: var(--main);
  transition: linear 0.4s;
  border: 1px solid transparent;
}

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

.mainslider .owl-dots {
  text-align: center;
  position: absolute;
  left: 0%;
  bottom: -45px;
  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 var(--sec);
  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: 60px 0;
}
.who .tit-who h1 {
  font-size: 48px;
  color: var(--main);
  text-align: center;
  line-height: 70px;
}
.who .r-who {
  position: relative;
  text-align: center;
  height: 600px;
}
.who .r-who div {
  padding: 15px;
  background-color: #FFF;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
}
.who .r-who div:nth-of-type(1) {
  width: 380px;
  height: 387px;
  max-width: 100%;
  z-index: 1;
}
.who .r-who div:nth-of-type(2) {
  width: 300px;
  height: 387px;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.who .r-who img {
  max-height: 500px;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who .r-who a {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sec);
  color: #FFF;
  font-size: 32px;
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  left: 20%;
  z-index: 3;
}

.who .in-who {
  position: relative;
  z-index: 3;
}

.who .in-who p {
  font-size: 14px;
  color: #000;
  margin-bottom: 40px;
  text-align: justify;
  font-family: norsal-regular;
}

.who .in-who p p {
  margin-bottom: 0;
}

.who .in-who .main-hover {
  margin: 0 0 30px;
  display: flex;
}

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

.who .in-who h1 {
  margin-bottom: 20px;
  color: var(--main);
  font-size: 48px;
  font-family: norsal-bold;
}

.who .in-who span {
  font-size: 24px;
  color: var(--sec);
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
}

.main-bot-who {
  background-color: #35453c;
  border-radius: 20px;
  box-shadow: 0 0 29px rgba(0, 0, 0, 0.23);
  position: relative;
  z-index: 2;
  padding: 30px;
  min-height: 280px;
}
.main-bot-who:before {
  position: absolute;
  content: url("../img/bg-who.png");
  z-index: 0;
  top: -100px;
  right: -80px;
}
.main-bot-who .feat {
  position: relative;
}
.main-bot-who .feat .nav-tabs {
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.main-bot-who .feat .nav-tabs a {
  width: 150px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f6f52;
  border: 1px solid #4f6f52;
  background-color: transparent;
  font-family: norsal-bold;
  transition: all linear 0.3s;
}
.main-bot-who .feat .nav-tabs a:hover, .main-bot-who .feat .nav-tabs a.active {
  background-color: var(--main);
  border: 1px solid transparent;
}
.main-bot-who .feat .main-feat p {
  font-size: 16px;
  color: #FFF;
  margin-bottom: 0px;
}
.main-bot-who .in-bot-who {
  position: relative;
}
.main-bot-who .in-bot-who img {
  position: absolute;
  top: -164px;
  left: 0px;
}

.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*/
/*goals*/
.goals {
  padding: 50px 0;
  position: relative;
}
.goals .pos-tit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.goals .pos-tit h2 {
  font-size: 46px;
  color: #000;
  margin-bottom: 0px;
}
.goals .main-goal {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: 2fr 1fr;
}
.goals .main-goal .in-goal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.goals .main-goal .in-goal .num {
  position: relative;
  margin-bottom: 25px;
  padding: 0 15px;
}
.goals .main-goal .in-goal .num:before {
  content: url("../img/bg-goals.png");
  position: absolute;
  bottom: 5px;
  right: 0;
  pointer-events: none;
  z-index: 1;
}
.goals .main-goal .in-goal .num span {
  position: relative;
  z-index: 2;
  color: #fa9912;
  font-family: norsal-bold;
  font-size: 76px;
}
.goals .main-goal .in-goal p {
  color: #6a6a6a;
  margin-bottom: 0px;
  font-size: 16px;
  text-align: right;
}
.goals .col-lg-6:nth-of-type(2n+2) .main-goal {
  grid-template-columns: 1fr 2fr;
}
.goals .col-lg-6:nth-of-type(2n+2) .main-goal .in-goal {
  align-items: flex-end;
  order: 1;
}
.goals .col-lg-6:nth-of-type(2n+2) .main-goal .in-goal p {
  text-align: left;
}

.numbers {
  padding: 0 0 50px;
}
.numbers .in-num {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: #35453c;
  margin-bottom: 20px;
  border-radius: 20px;
}
.numbers .in-num .img-num {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.numbers .in-num .img-num img {
  max-width: 60px;
  max-height: 60px;
  height: auto;
  width: auto;
}
.numbers .in-num span {
  font-size: 36px;
  color: var(--main);
  font-family: norsal-bold;
}
.numbers .in-num p {
  font-size: 28px;
  color: #FFF;
  font-family: norsal-bold;
  margin-bottom: 0;
}

/*goals*/
/*work*/
.work {
  padding: 70px 0 90px;
  background-repeat: no-repeat;
  background-image: url("../img/bg-work.png");
  background-size: 100% auto;
}
.work .main-header {
  color: #FFF;
}
.work .owl-dots {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.work .owl-dots .owl-dot {
  width: 80px;
  height: 1px;
  background-color: #4f6f52;
}
.work .owl-dots .owl-dot span {
  width: 80px;
  height: 4px;
  background-color: transparent;
  transition: all linear 0.3s;
  display: block;
  position: absolute;
  top: 14px;
}
.work .owl-dots .owl-dot:hover, .work .owl-dots .owl-dot.active span {
  background-color: #017d35;
}

.item-work {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 450px;
  width: 100%;
  transition: all linear 0.3s;
}
.item-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-work .in-item {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 30px 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: all linear 0.3s;
}
.item-work .in-item h3 {
  font-size: 24px;
  color: #35453c;
  margin-bottom: 15px;
  text-align: center;
  transition: all linear 0.3s;
}
.item-work .in-item p {
  font-size: 14px;
  color: #35453c;
  margin-bottom: 20px;
  text-align: center;
  transition: all linear 0.3s;
}
.item-work .in-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  color: #35453c;
  transition: all linear 0.3s;
}
.item-work:hover {
  box-shadow: 0 0 43px rgb(0, 0, 1);
}
.item-work:hover .in-item {
  background-color: rgba(53, 69, 60, 0.8);
}
.item-work:hover .in-item h3, .item-work:hover .in-item a {
  color: var(--main);
}
.item-work:hover .in-item p {
  color: #FFF;
}

/*work*/
/*start gallery*/
.gallery {
  padding: 40px 0;
  background: #35453c;
}
.gallery .main-header {
  color: #FFF;
}
.gallery .nav-tabs {
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery .nav-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid var(--sec);
  color: var(--sec);
  background-color: transparent;
  transition: all linear 0.3s;
}
.gallery .nav-tabs a:hover, .gallery .nav-tabs a.active {
  border: 1px solid transparent;
  background-color: var(--main);
}

.main-gallery {
  position: relative;
  width: 100%;
  height: 300px;
  display: block;
  transition: all linear 0.3s;
  border-radius: 15px;
  margin-bottom: 30px;
}
.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*/
/*team*/
.team {
  padding: 40px 0;
}
.team h3 {
  font-size: 28px;
  color: #b99470;
  margin-bottom: 25px;
}
.team p {
  font-size: 20px;
  color: #000;
  margin-bottom: 0px;
}

.in-team {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  transition: all linear 0.3s;
}

.in-team .img-team {
  position: relative;
  border-radius: 15px;
}

.in-team .img-team img {
  height: 250px;
  width: 100%;
}

.in-team .img-team:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0, #FFFFFF 11%, rgba(0, 0, 0, 0) 89%);
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  transition: all linear 0.2s;
}

.in-team h2 {
  color: #35453c;
  font-size: 20px;
  margin-bottom: 0;
  text-align: center;
  transition: all linear 0.3s;
}

.in-team span {
  color: #7a7a7a;
  transition: all linear 0.3s;
  font-size: 16px;
  text-align: center;
}

.in-team:hover {
  transition: all linear 0.3s;
}

.in-team:hover .img-team:before {
  transition: all linear 0.2s;
  height: 0;
}

.in-team:hover h2 {
  transition: all linear 0.3s;
  color: var(--main);
}

.in-team:hover span {
  transition: all linear 0.3s;
  color: #7a7a7a;
}

/*team*/
/*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: 50px 0;
  position: relative;
}

.news-item {
  position: relative;
}
.news-item img {
  width: 100%;
  height: 240px;
  border-radius: 30px;
  object-fit: cover;
  margin-bottom: 30px;
  transition: all linear 0.3s;
}
.news-item h3 {
  color: var(--sec);
  margin-bottom: 25px;
  font-size: 24px;
  transition: all linear 0.3s;
}
.news-item p {
  color: #8B8B8B;
  font-size: 16px;
  margin-bottom: 35px;
}
.news-item a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--sec);
  color: #FFF;
  transition: all linear 0.3s;
}
.news-item:hover img {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}
.news-item:hover h3 {
  color: var(--main);
}
.news-item:hover a {
  background-color: var(--main);
}

/*end news*/
/*start service*/
.item-service {
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  height: 500px;
  width: 100%;
  transition: all linear 0.3s;
}
.item-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-service .in-item {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 50px 30px 20px;
  background-color: rgba(16, 58, 58, 0.7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all linear 0.3s;
  justify-content: space-between;
}
.item-service .in-item h3 {
  font-size: 34px;
  color: #FFF;
  margin-bottom: 20px;
  transition: all linear 0.3s;
}
.item-service .in-item p {
  font-size: 16px;
  color: #FFF;
  margin-bottom: 20px;
  text-align: justify;
  transition: all linear 0.3s;
}
.item-service .in-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  color: #FFF;
  width: 40px;
  height: 40px;
  background-color: var(--sec);
  transition: all linear 0.3s;
}
.item-service:hover {
  box-shadow: 0 0 43px rgb(0, 0, 1);
}
.item-service:hover .in-item {
  background-color: rgba(213, 167, 117, 0.8);
}
.item-service:hover .in-item h3, .item-service:hover .in-item p {
  color: var(--main);
}
.item-service:hover .in-item a {
  background-color: var(--main);
}

.main-serv {
  transition: all linear 0.3s;
  position: relative;
  align-items: center;
  border-radius: 15px;
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 15px;
  margin: 65px 0 -65px;
  background-color: #eff7fc;
  padding: 15px;
}
.main-serv .img-serv {
  position: relative;
  padding: 30px 0;
  margin-top: -65px;
}
.main-serv .img-serv:before {
  content: url("../img/serv-sh1.png");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  transition: all linear 0.3s;
}
.main-serv .img-serv:after {
  content: url("../img/serv-sh2.png");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: all linear 0.3s;
}
.main-serv .img-serv img {
  max-height: 50px;
  max-width: 50px;
  z-index: 3;
  position: relative;
  transition: all linear 0.3s;
}
.main-serv h2 {
  font-size: 22px;
  font-family: norsal-bold;
  color: #000;
  margin-bottom: 0;
  position: relative;
  text-align: center;
  transition: all linear 0.3s;
}
.main-serv p {
  font-size: 16px;
  font-family: norsal-regular;
  color: #6b6b6b;
  margin-bottom: 0;
}
.main-serv:hover {
  transition: linear 0.4s;
}
.main-serv:hover .img-serv:before {
  opacity: 0;
}
.main-serv:hover .img-serv:after {
  opacity: 1;
}
.main-serv:hover h2 {
  color: var(--main);
  /*background: linear-gradient(to right, #00BFFA 0%, #015FEA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
}

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

/*end service*/
/*project*/
.project {
  padding: 50px 0;
}
.project .main-header {
  color: var(--main);
}
.project .nav-tabs {
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.project .nav-tabs a {
  position: relative;
  font-size: 20px;
  color: #C2C7D6;
  transition: all linear 0.3s;
  padding: 5px 0;
  font-weight: 500;
}
.project .nav-tabs a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: var(--main);
  opacity: 0;
  transition: all linear 0.3s;
}
.project .nav-tabs a:hover, .project .nav-tabs a.active {
  color: var(--sec);
  padding-inline-start: 10px;
}
.project .nav-tabs a:hover:before, .project .nav-tabs a.active:before {
  opacity: 1;
}
.project .owl-carousel .owl-stage-outer {
  height: 475px;
}
.project .owl-nav {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  right: -34%;
}
.project .owl-nav i {
  width: 115px;
  height: 64px;
  background-color: var(--sec);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 18px;
  transition: all linear 0.3s;
}
.project .owl-nav i:hover {
  background-color: var(--main);
}

.item-project {
  position: relative;
  width: 100%;
  height: 475px;
}
.item-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-project .in-item {
  position: absolute;
  background-color: rgba(213, 167, 117, 0.8);
  bottom: 0;
  right: 0;
  padding: 30px;
  width: 50%;
}
.item-project .in-item h3 {
  font-size: 18px;
  color: #FFF;
  margin-bottom: 20px;
}
.item-project .in-item p {
  font-size: 16px;
  color: var(--main);
  margin-bottom: 0px;
}

/*project*/
/*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: 1;
}

.slider-banner-image img {
  width: 100%;
  height: 310px;
  border-radius: 10px;
  object-fit: cover;
}

.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 {
  position: absolute;
  bottom: 7px;
  right: 0;
  padding: 25px 30px;
  z-index: 3;
}

.slider-banner-content h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 15px;
}

.slider-banner-content div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-banner-content div a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main);
  color: var(--sec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.slider-banner-content .slide-for-paragraph {
  font-size: 14px;
  color: #FFF;
  width: 80%;
}

.slider.slider-nav .thumbnail-image {
  display: grid !important;
  align-items: center;
  padding: 12px 0;
  grid-template-columns: 1fr 2fr;
}

.slider.slider-nav .thumbnail-image .thumbImg img {
  width: 160px;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
}

.slider.slider-nav .thumbnail-image .thumbImg-content h6 {
  font-family: norsal-bold;
  color: var(--sec);
  transition: linear 0.4s;
  font-size: 24px;
  margin-bottom: 15px;
}

.slider.slider-nav .thumbnail-image .thumbImg-content span {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 30px;
  display: block;
}

.slider.slider-nav .thumbnail-image .thumbImg-content a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: #4f6f52;
  transition: all linear 0.3s;
}

.slider.slider-nav .thumbnail-image:hover .thumbImg-content h6 {
  color: var(--sec);
  transition: linear 0.4s;
}

/*end posts*/
/*start partner*/
.partner {
  padding: 50px 0;
  position: relative;
  background-image: url("../img/client-bg.png");
  background-size: 100% 100%;
}
.partner .main-header {
  color: var(--main);
}
.partner .part-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}
.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: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  border-radius: 30px;
  transition: all linear 0.3s;
  grid-column: span 1;
  grid-row: span 1;
}
.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/footer-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 102%;
}
footer .footer-logo {
  margin-bottom: 20px;
  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;
}
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;
  flex-wrap: wrap;
  justify-content: center;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-size: 28px;
  color: var(--sec);
  border-radius: 0px;
  transition: all linear 0.3s;
}
footer .social a:hover {
  color: #FFF;
}
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 h2 {
  font-size: 24px;
  color: var(--main);
  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: 2;
  gap: 15px;
}

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

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

footer .mid-foot ul li a:hover {
  color: var(--sec);
  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 .twit {
  height: 250px !important;
  border-radius: 20px;
  overflow-x: hidden;
  overflow-y: scroll;
}

footer .twit::-webkit-scrollbar-track {
  background: #FFFFFF;
}

footer .twit::-webkit-scrollbar-thumb {
  background-color: #3b94d9;
  border-radius: 50px;
}

footer .twit::-webkit-scrollbar {
  width: 0.5em;
}

footer .cont {
  display: flex;
  align-items: center;
  max-width: 100%;
  justify-content: flex-start;
  margin-bottom: 15px;
}

footer .cont .fir {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  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(--main);
  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(--sec);
}

footer .cont .sec .r-phone:nth-of-type(1):after {
  content: "-";
  font-size: 16px;
  color: #FFF;
  font-weight: bold;
}

footer .cont .sec .r-phone:nth-last-of-type(1):after {
  display: none;
}

footer .end-foot {
  background-color: transparent;
  margin-top: 30px;
}

footer .end-foot .in-end {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

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: #535559;
  font-size: 18px;
}
footer .end-foot .in-end .links:hover {
  color: #535559;
}

footer .end-foot .in-end p a {
  color: var(--sec);
  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: "-";
  font-weight: bold;
  color: #FFF;
  font-size: 16px;
  margin: 0 5px;
  transition: all linear 0.3s;
}

footer .mid-foot ul li a:hover:before {
  color: var(--sec);
}

/*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;
  }
  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;
  }
  .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;
  }
  .partner .part-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .owl-dots, .owl-nav {
    display: none !important;
  }
  .item-project .in-item {
    width: 100%;
  }
  .project .nav-tabs {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
  }
  .main-bot-who .in-bot-who img {
    position: relative;
    top: auto;
    left: auto;
  }
  .goals .pos-tit {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .goals .main-goal, .goals .col-lg-6:nth-of-type(2n+2) .main-goal {
    grid-template-columns: 2fr 0fr;
  }
  .goals .col-lg-6:nth-of-type(2n+2) .main-goal .in-goal {
    align-items: flex-start;
    order: 0;
  }
  .goals .col-lg-6:nth-of-type(2n+2) .main-goal .in-goal p {
    text-align: right;
  }
  .work {
    padding: 40px 0;
    background-size: 120% auto;
  }
  .slider.slider-nav .thumbnail-image .thumbImg-content span {
    margin-bottom: 10px;
  }
  .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;
  }
  .who .in-who p {
    color: #000;
  }
  .connect-us.home-page .bg-connect-us {
    filter: unset !important;
  }
  .bef-who:after, .practice:before {
    display: none;
  }
  footer .main-foot {
    flex-direction: column;
    gap: 30px;
  }
  .practice .bg-practice .clip-practice {
    padding: 20px 0;
  }
  .in-service {
    padding: 20px 15px;
    gap: 15px;
  }
  .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 {
    width: 40px;
    height: 40px;
  }
  header .menu-icons .request span {
    display: none;
  }
  header .menu-icons .request i {
    display: block;
  }
  .gallery-new, .blog-post {
    padding: 40px 0;
  }
  .slider.slider-nav .thumbnail-image .thumbImg-content {
    flex: 7;
  }
  .wpcf7 .main-hover {
    margin: 0 0 20px !important;
  }
  .wpcf7-submit {
    margin-top: 0;
  }
  .new-row div {
    grid-column: span 12 !important;
    grid-row: span 1 !important;
  }
  .in-partner .item {
    margin: 0 auto;
  }
  .mainslider .item img {
    height: 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;
    column-count: 1;
    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 .in-who h1 {
    font-size: 36px;
  }
  .said .r-said {
    padding: 20px 0;
  }
  header .top-head .main-top-header {
    justify-content: space-between;
    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%;
    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;
  }
}
/**/
/****/
.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: #000;
  text-align: justify;
}
.single-pages .bootom-side p iframe {
  width: 100%;
  height: 650px;
}

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

.single-pages .top-side {
  padding: 20px 0;
  text-align: center;
}

.single-pages .top-side img {
  max-width: 100%;
  max-height: 400px;
}

.single_service {
  padding: 40px 0 40px;
}

.single_service .right_side_whous {
  margin: 20px 0;
  text-align: center;
}

.single_service .right_side_whous img {
  max-width: 100%;
  max-height: 300px;
}

.single_service .right_side_whous a {
  text-align: center;
  background: var(--main);
  color: #FFF;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 5px 0;
  display: inline-block;
  transition: linear 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: 50px 0;
}
.connect-us.home-page .map iframe {
  height: 395px;
  border-radius: 20px;
}
.connect-us.home-page .content-connect-us {
  position: relative;
  z-index: 2;
}
.connect-us.home-page .content-connect-us h2 {
  color: var(--main);
  margin-bottom: 30px;
  font-size: 36px;
}
.connect-us.home-page .main-form input, .connect-us.home-page .main-form select {
  border: 1px solid #6d6e71;
  background-color: transparent;
  border-radius: 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: 23px;
  color: #6d6e71;
  border: 1px solid #6d6e71;
  transition: linear 0.4s;
  margin-bottom: 0px;
  width: 100%;
  height: 45px;
}

.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: 23px;
  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-bottom: 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;
}
.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%;
  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;
}

.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: 50%;
  padding: 0;
  background-size: cover;
  box-shadow: unset;
  background-color: transparent;
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  -o-box-shadow: unset;
  -ms-box-shadow: unset;
}

.branches {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--main);
  border-radius: 10px;
  margin-bottom: 30px;
}
.branches iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.branches h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
}
.branches p {
  margin-bottom: 0;
  font-size: 16px;
}

/****/
/****************elhussini****************************/
.sec-padding {
  padding: 50px 0;
}

.sec-bg:nth-of-type(odd) {
  background-color: transparent;
  color: #000;
  font-weight: bold;
}

.sec-bg:nth-of-type(even) {
  color: #000;
  font-weight: bold;
}

.img-thumbnail {
  border: 0;
}

.content-block-item {
  position: relative;
  z-index: 1;
  padding: 30px;
  background-color: #fff;
  border: 1px solid 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;
}

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

/****************elhussini****************************/

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