nav.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* height: 130px; */
  z-index: 10000;
  padding: 20px 0;
  pointer-events: none !important;
}
  nav.navbar .col1 *, nav.navbar .col2 * {
      pointer-events: auto;
  }
.logoNav {
position: relative;
width: 160px;
display: flex;
justify-content: center;
transition: all 1s;
transform: translateY(-200px);
opacity: 0;
}
.loadedMammut .logoNav {
transform: translateY(0px);
opacity: 1;
transition-delay: 0.5s;
}
.logoNav:before {
position: absolute;
left: 0;
top: -20px;
width: 50%;
height: 350%;
background: linear-gradient(126deg, rgba(255,255,255,0.5), #ffffff05,transparent,transparent);
overflow: hidden;
content: '';
pointer-events: none;
}
.logoNav:after {
position: absolute;
right: 0;
top: -20px;
width: 50%;
height: 350%;
background: linear-gradient(232deg, rgba(255,255,255,0.5), #ffffff05,transparent,transparent);
overflow: hidden;
content: '';
pointer-events: none;
}
.logoNav i:nth-child(1) {
position: absolute;
top: -20px;
right: 0;
width: 2px;
height: 200%;
background: linear-gradient(45deg, transparent,#fa7441);
z-index: 10;
}
.logoNav i:nth-child(2) {
position: absolute;
top: -20px;
left: 0;
width: 2px;
height: 200%;
background: linear-gradient(45deg, transparent,#fa7441);
z-index: 10;
}
nav.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav.navbar .col1 {
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 50px;
  width:calc(100% - 250px)
}
nav.navbar .col1 .menuTop {
position: relative;
width: calc(100% - 120px);
display: flex;
justify-content: flex-start;
grid-gap: 30px;
transition: all 1s;
transform: translateX(-25vw);
opacity: 0;
}
.loadedMammut nav.navbar .col1 .menuTop {
transform: translateX(0%);
opacity: 1;
transition-delay: 0.5s;
}
nav.navbar .col2 {
position: relative;
display: flex;
align-items: center;
grid-gap: 10px;
transition: all 1s;
transform: translateX(25vw);
opacity: 0;
}
.loadedMammut nav.navbar .col2 {
transform: translateX(0vw);
opacity: 1;
transition-delay: 0.5s;
}
span.btnsearch {
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #ef5a20;
}
span.btnsearch:before {
font-weight: 400;
transform: scaleX(-1);
background: #ff9800;
background: linear-gradient(50deg, #ff5722, #ff5722, #ff5722, #ff5722, #fff, #ff5722, #ff5722, #ff5722, #ff5722);
background: -webkit-linear-gradient(50deg, #ff5722, #ff5722, #ff5722, #ff5722, #fff, #ff5722, #ff5722, #ff5722, #ff5722);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
span.btnshowSidebar {
  position: relative;
  width: 36px;
  height: 36px;
}
span.btnshowSidebar span.line {
position: absolute;
background: transparent url(../img/icons/bar.png) no-repeat center / 100%;
width: 18px;
height: 2px;
top: 0px;
bottom: 0;
left: 0;
right: 0;
margin: auto;
transition: all 0.2s;
}
span.btnshowSidebar span.line:nth-child(1) {
top: -14px;
background-position: top center;
}
.opensidebar span.btnshowSidebar span.line:nth-child(1) {
transform: rotate(-45deg);
top: -1px !important;
right: 0px !important;
background-color: #dc531d;
}
span.btnshowSidebar span.line:nth-child(2) {
width:18px;
}
.opensidebar span.btnshowSidebar span.line:nth-child(2) {
width:0;
}
span.btnshowSidebar span.line:nth-child(3) {
bottom: -14px;
background-position: bottom center;
}
.opensidebar span.btnshowSidebar span.line:nth-child(3) {
transform: rotate(230deg);
bottom: 0;
background-color: #dc531d;
left: 0px;
}













/* Language */
.languages span {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #ef5a20;
  font-weight: 400;
}
.languages {
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
}
.languages *{
  font-family: IranYekan,Arial,Tahoma !important;
  font-weight: bold;
}
.languages label{
  pointer-events: none;
}
.languages span:before {
  background: #ff9800;
  background: linear-gradient(121deg, #ff5722, #ff5722, #ff5722, #ff5722, #fff, #ff5722, #ff5722, #ff5722, #ff5722);
  background: -webkit-linear-gradient(121deg, #ff5722, #ff5722, #ff5722, #ff5722, #fff, #ff5722, #ff5722, #ff5722, #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.languages.en span:before {
  content: "en";
}
.languages.fa span:before {
  content: "fa";
}
.languages.fr span:before {
  content: "fr";
}
.languages.ar span:before {
  content: "ar";
}
.languages .showLang {
  position: absolute;
  width: 50px;
  top: 100%;
  background: rgba(255,255,255,0.2);
  box-shadow: 0px 0px 15px -9px;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  left: 0;
  box-sizing: border-box;
  transform-origin: bottom center;
  transform: translateX(-100px);
  transition: all 0.5s cubic-bezier(0.74, 0.51, 0, 1.19);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}
.languages:hover .showLang {
  pointer-events: auto;
  transform: translateX(0px);
  opacity: 1;
}
.showLang .itemLang {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 2px;
  color: #fff;
}
.showLang .itemLang:hover {
  background: #ef5a20;
  color: #fff;
}
.languages.en .itemLang.en {
  background: #ef5a20;
  color: #fff;
  -webkit-background-clip: none !important;
  -webkit-text-fill-color: #fff;
}

.languages.fa .itemLang.fa {
  background: #ef5a20;
  color: #fff;
}
.languages.fr .itemLang.fr {
  background: #ef5a20;
  color: #fff;
}

.languages.ar .itemLang.ar {
  background: #ef5a20;
  color: #fff;
}
.languages.fr .itemLang.fr:before ,
.languages.ar .itemLang.ar:before ,
.languages.fa .itemLang.fa:before ,
.languages.en .itemLang.en:before {
  -webkit-background-clip: none !important;
  -webkit-text-fill-color: #fff;
}
.showLang .itemLang:before {
  font-family: IranYekan,Arial,Tahoma !important;
  font-weight: bold;
}
.itemLang.en:before {
  content:'en'
}
.itemLang.fa:before {
  content:'fa'
}
.itemLang.fr:before {
  content:'fr'
}
.itemLang.ar:before {
  content:'ar'
}
/* Language */
nav.navbar {
  z-index: 100000000 !important;
}

* {
  user-select: none;
  outline: none;
}

.searchBox {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  pointer-events: none;
  z-index: 1000000000 !important;
}

  .searchBox i.bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(0px);
      transition: all 0.5s;
  }

  .searchBox.open i.bg {
      backdrop-filter: blur(5px);
      pointer-events: auto;
  }

  .searchBox .contentSearchbox {
      position: relative;
      width: 100%;
      background: #1a1a1a;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 100;
      transition: all 0.5s;
      transform: translateY(-100%);
      opacity: 0;
      padding: 30px !important;
      transition-delay: 1s;
  }

  .searchBox.open .contentSearchbox {
      transform: translateY(0%);
      opacity: 1;
      pointer-events: auto;
      transition-delay: 0s;
  }

  .searchBox .resultSearch {
      position: relative;
      width: 100%;
      background: #141414;
      padding: 20px;
      min-height: calc(100vh - 100px);
      max-height: calc(100vh - 100px);
      overflow: auto;
      z-index: 100;
      transition: all 0.5s;
      transform: translateY(100vh);
      opacity: 0;
      transform-origin: top;
      visibility: hidden;
  }

  .searchBox.showResult .resultSearch {
      visibility: visible;
      transform: translateY(0vh);
      opacity: 1;
      pointer-events: auto;
  }

  .searchBox .resultSearch .rowSearchNav {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-bottom: 40px;
      gap: 10px;
  }

  .searchBox .resultSearch .container {
      flex-direction: column;
  }

.resultSearch .rowTitleSearch {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.contentRes {
  position: relative;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

  .contentRes .itemSearch {
      position: relative;
      width: calc((100% / 5) - 10px);
      background: no-repeat center / cover;
      border-radius: 15px;
      overflow: hidden;
  }

      .contentRes .itemSearch:before {
          position: relative;
          width: 100%;
          content: '';
          padding-top: 53% !important;
          display: block;
      }

      .contentRes .itemSearch span.title {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          background: rgb(255 87 34 / 45%);
          height: 50px;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: all 0.5s;
          color: #fff !important;
      }

      .contentRes .itemSearch:hover span.title {
          height: 100%;
          background: rgb(255 87 34);
      }

.showMoreSearch {
  position: relative;
  padding: 0 20px;
  height: 40px;
  background: #FF5722;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

  .showMoreSearch:hover {
      background: #FF9800;
      color: #fff;
  }

.searchBox .contentSearchbox input.inputSearch {
  position: relative;
  width: 100%;
  height: 60px;
  font-size: 20px;
  padding: 0 20px;
  font-family: 'iranyekan';
  background: transparent;
  border: none;
  user-select: none !important;
  outline: none !important;
  color: #fff;
}

.searchBox .contentSearchbox span.close {
    position: relative;
    width: 45px;
    min-width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.5s;
    user-select: none;
    outline: none;
    transition-delay: 0.2s;
}

  .searchBox .contentSearchbox span.close:before {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      height: 0%;
      background: #fff;
      content: '';
      margin: auto;
      transition: all 0.2s;
      transform: rotate(45deg);
      transition-delay: 0.5s;
      user-select: none;
      outline: none;
  }

.searchBox.open .contentSearchbox span.close:before {
  height: 100%;
}

.searchBox .contentSearchbox span.close:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  content: '';
  margin: auto;
  transition: all 0.2s;
  transform: rotate(45deg);
  transition-delay: 0.8s;
  user-select: none;
  outline: none;
}

.searchBox.open .contentSearchbox span.close:after {
  width: 100%;
}

.searchBox.open .contentSearchbox span.close {
  transform: rotate(360deg);
}


/* Sidebar Barauand */
/* .opensidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000000 !important;
  overflow: hidden;
  pointer-events: none;
}

.opensidebar .sidebar {
  pointer-events: auto;
  visibility: visible !important;
}

.sidebar i.bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: all 0.5s;
}

.opensidebar .sidebar i.bg {
  opacity: 1;
  pointer-events: auto;
}

.contantSidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  backdrop-filter: blur(10px);
  transition: all 0.5s;
  opacity: 0;
}

.opensidebar .contantSidebar {
    opacity: 1;
}

.contantSidebar .contentOne {
  position: relative;
  right: 0;
  width: 500px;
  background: #141414;
  height: auto;
  max-height: 100%;
  min-height: 100%;
  overflow: hidden;
  transform: translateX(600px);
  transition: all 0.5s;
  transition-delay: 0s;
}

.opensidebar .contantSidebar .contentOne {
  transform: translateX(0px);
  transition-delay: .5s;
}

.contantSidebar .contentTwo {
  position: relative;
  right: 0;
  width: calc(100% - 500px);
  height: auto;
  max-height: 100%;
  min-height: 100%;
  overflow: hidden;
}

  .contantSidebar .contentTwo .showItemsInContentSidebar {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      min-height: 100%;
      max-height: 100%;
      overflow: hidden;
      padding: 0;
  }

.topButtons {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 5px;
  height: 60px;
  align-items: center;
  gap: 10px;
}

.btnSidebar {
  position: relative;
  height: 40px;
  display: flex !important;
  align-items: center;
  padding: 0 50px 0 20px;
  background: #3b3b3b;
  border-radius: 40px;
}

  .btnSidebar i {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      border: 1px solid #FF5722;
      border-radius: 40px;
  }

  .btnSidebar:before {
      position: absolute;
      right: 0;
      width: 50px;
      height: 40px;
      z-index: 1;
      display: flex;
      justify-content: center;
      font-size: 18px;
      align-items: center;
  }

  .btnSidebar i:before {
      position: absolute;
      top: -1px;
      height: calc(100% + 2px);
      width: 130%;
      left: 0;
      right: -15%;
      transition: all 0.2s;
      margin: auto;
      content: '';
      background: linear-gradient(90deg, transparent, transparent, #3b3b3b, #3b3b3b, transparent, transparent);
  }

  .btnSidebar:hover i:before {
      width: 0%;
      right: 0%;
  }

  .btnSidebar span {
      position: relative;
      font-size: 14px;
  }

.bottomContentSidebar {
  position: relative;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

  .bottomContentSidebar .socialIcons {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
  }

      .bottomContentSidebar .socialIcons .socicon {
          position: relative;
          width: 40px;
          height: 40px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          border: 1px solid #FF5722;
          font-size: 18px;
          transition: all 0.2s;
      }

          .bottomContentSidebar .socialIcons .socicon small {
              position: absolute;
              bottom: calc(100% + 10px);
              white-space: nowrap;
              padding: 0 10px;
              height: 30px;
              display: flex;
              align-items: center;
              background: linear-gradient(45deg, #FF5722, #FF9800);
              border-radius: 6px;
              z-index: 10;
              transition: all 0.2s;
              transform: scale(0);
              transform-origin: bottom center;
          }

          .bottomContentSidebar .socialIcons .socicon:hover small {
              transform: scale(1);
              color: #fff;
          }

.middleContentSidebar {
  position: relative;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 130px);
  max-height: calc(100vh - 130px);
  overflow: auto;
}

.sidebar i.close {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  background: #2d2d2d;
  transition: all 0.2s;
  color: #fff;
  cursor: pointer;
}

  .sidebar i.close:hover {
      background: #FF5722;
  }

.phoneSidebar {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 0 10px 0 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    z-index: 100 !important;
    pointer-events: none;
}

.opensidebar .phoneSidebar {
    pointer-events: auto;
}

  .phoneSidebar:before {
      position: absolute;
      left: 0;
      right: auto;
      top: 0;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: scaleX(-1);
  }

.sideMenu {
  position: relative;
  padding: 0 20px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

  .sideMenu li.itemMenu {
      display: flex;
      flex-direction: column;
  }

      .sideMenu li.itemMenu label {
          position: relative;
          display: flex;
          align-items: center;
          font-size: 16px;
          width: 100%;
          padding-left: 50px;
          padding-right: 10px;
          height: 50px;
          background: rgba(255,255,255,0.005);
          color: #fff;
          font-weight: 100;
          cursor: pointer;
      }

      .sideMenu li.itemMenu:hover label {
          color: #FF5722;
      }

      .sideMenu li.itemMenu label:before {
          position: absolute;
          left: 0;
          top: 0;
          width: 50px;
          height: 50px;
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .sideMenu li.itemMenu ul {
          position: relative;
          display: flex;
          flex-direction: column;
          gap: 5px;
          padding: 0 40px 0 0 !important;
          list-style: none;
          transition: all .5s;
          overflow: hidden;
          max-height: 0 !important;
      }

      .sideMenu li.itemMenu.open ul {
          max-height: 1000px !important;
      }

      .sideMenu li.itemMenu ul .itemSubmenu {
          font-size: 18px;
      }

/* 
.sidebar .swiper-container {
height: calc(50vh - 120px);
margin: 60px;
} */

.sidebar .swiper-wrapper {
  transition-timing-function: linear !important;
  padding: 30px 0;
}

.sideContent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  gap: 20px;
  padding: 0 80px;
  margin: 0 !important;
  overflow: hidden;
  transition: all 0.5s;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(100%);
}

  .sideContent.active {
      opacity: 1 !important;
      visibility: visible;
      transform: translateX(0%);
      /* pointer-events: auto; */
  }

.opensidebar .sideContent.active {
  pointer-events: auto;
}

.sideContent.row4col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 0 !important;
}

.sideContent.row2col {
  grid-template-columns: 1fr 1fr;
  margin: 0 !important;
}

.sideContent .col, .sideContent .col .swiper-container {
  position: relative;
  width: 100%;
  max-height: 100%;
  height: 100%;
  overflow: hidden;
}

.itemLogoSlide {
  border-radius: 10px;
  position: relative;
  width: 100%;
  padding-top: 30%;
  max-width: 146px;
  margin: auto;
  backdrop-filter: blur(40px);
  background: rgb(255 255 255 / 15%);
}

  .itemLogoSlide a.pic {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: no-repeat center / 100%;
      z-index: 2;
  }

.itemPortfolio1 {
  position: relative;
  width: 90%;
  display: block;
  padding-top: 47% !important;
  margin: auto;
  border-radius: 15px !important;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(81px);
  transition: all 0.2s;
  opacity: 0.4;
}

  .itemPortfolio1:hover {
      opacity: 1;
  }

  .itemPortfolio1 a.pic {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: no-repeat center / cover;
  }

      .itemPortfolio1 a.pic span.title {
          position: absolute;
          left: 0;
          right: 0;
          margin: auto;
          bottom: 0;
          display: flex;
          justify-content: center;
          height: 50px;
          background: #FF5722;
          z-index: 10;
          width: calc(100% - 40px);
          border-radius: 10px 10px 0 0;
          align-items: center;
      }
/* Sidebar Barauand */

.sideMenu li.itemMenu label:before {
  transition: all 0.5s;
}
.sideMenu li.itemMenu.open label:before {
  content: "\f068" !important;
  transform: rotate(360deg);
}
.sideContent img.picDevice, .sideContent img.picDevice.okloadlazy {
  opacity: 0 !important;
}

.itemLogoSlide:hover a {
    z-index: 10 !important;
}


@media only screen and (max-width: 1400px) {
  .sideContent.row2col {
      grid-template-columns: 1fr 1fr !important;
      display: grid !important;
  }

  .itemLogoSlide {
      border-radius: 10px;
      position: relative;
      width: 100%;
      padding-top: 43%;
      max-width: 146px;
      margin: auto;
      backdrop-filter: blur(40px);
      background: rgb(255 255 255 / 15%);
  }

}

@media only screen and (max-width: 1200px) {
  .itemLogoSlide {
      padding-top: 70%;
  }

  .sideContent {
      padding: 0 20px;
  }
}

@media only screen and (max-width: 1100px) {
  .contantSidebar .contentOne {
      width: 400px;
      z-index: 1;
  }

  .contantSidebar .contentTwo {
      width: 100% !important;
      position: absolute !important;
      z-index: 0;
  }
}

@media only screen and (max-width: 890px) {
  .sideMenu li.itemMenu label {
      font-size: 18px;
  }

  .contantSidebar .contentOne {
      width: 400px;
      z-index: 1;
  }

  .contantSidebar .contentOne {
      width: 400px !important;
      max-width: 400px !important;
      min-width: 400px !important;
      z-index: 10;
  }

  .contantSidebar .contentTwo {
      width: 100% !important;
      position: absolute !important;
      z-index: 0 !important;
  }

  .sideMenu li.itemMenu label {
      font-size: 24px !important;
  }

  .sideMenu li.itemMenu ul .itemSubmenu {
      font-size: 24px;
  }

  .sideMenu {
      gap: 0px;
  }
}

@media only screen and (max-width: 680px) {
  .sideMenu li.itemMenu label {
      font-size: 14px;
  }

  .sidebar i.close {
      width: 30px;
      height: 30px;
      font-size: 18px;
      position: absolute !important;
      right: auto !important;
  }

  .contantSidebar .contentOne {
      width: 300px !important;
      max-width: 300px !important;
      min-width: 300px !important;
      z-index: 10;
  }

  .contantSidebar .contentTwo {
      pointer-events: none;
  }

  .sideMenu li.itemMenu label {
      font-size: 16px !important;
  }

  .sideMenu li.itemMenu ul .itemSubmenu {
      font-size: 16px;
  }

  .sideMenu {
      gap: 0px;
  }
}

@media only screen and (max-width: 400px) {

  .contantSidebar .contentOne {
      width: 300px !important;
      max-width: 300px !important;
      min-width: 300px !important;
      z-index: 10;
  }

      .contantSidebar .contentOne .btnSidebar span {
          font-size: 12px;
      }

      .contantSidebar .contentOne .btnSidebar {
          padding: 0 40px 0 20px;
      }

  .sideMenu li.itemMenu label {
      font-size: 14px !important;
  }

  .sideMenu li.itemMenu ul .itemSubmenu {
      font-size: 14px;
  }

  .sideMenu {
      gap: 0px;
  }
}