@font-face {
  font-family: "gothambold_italic";
  src: url("../fonts/gothambolditalic-webfont.woff2") format("woff2"),
    url("../fonts/gothambolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-gray: #dcdbd9;
  --bg-green: #bace3b;
}
body {
  overflow: hidden;
}
body,
html {
   font-family: 'Montserrat';
  cursor: auto;
  margin: 0px;
  padding: 0px;
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #4b6cb7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #182848, #4b6cb7);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #182848, #4b6cb7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  
}
.bg-gray{
  background-color: var(--bg-gray);
}
.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  background: #4b6cb7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #182848, #4b6cb7);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #182848, #4b6cb7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */  
  
  display: flex;
  align-content: center;
  flex-wrap: nowrap;
}
.logo_name {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.logo_name .text {
  width: 100%;
  max-width: 900px;
}
.logo_name .text text {
  color: #ffffff;
  stroke-width: 3px;
  stroke-dashoffset: -800;
  stroke-dasharray: 800;
}
.logo_name .text text.is-active {
  animation-name: text;
  animation-duration: 4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes text {
  50% {
    fill: transparent;
  }
  75% {
    fill: transparent;
    stroke-dashoffset: 0;
    stroke-width: 3px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke-width: 0px;
  }
}
header.header {
  position: relative;
  width: 100%;
}
.logo,.logo-text {
  position: fixed;
  z-index: 11;
  display: inline-block;
  top: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
}
.logo{
  opacity: 0;
}
.logo img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: pulse-black 2s infinite;
}
@keyframes pulse-black {
  0% {

    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }
  
  70% {
   
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
  }
  
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}
span.logo-text {
  font-size: 1.9rem;
  font-weight: 500;
  top: 8em;
  width: auto;
  color: #fff;
  max-width: 300px;
  height: auto;
  text-shadow: 2px 3px 3px #00000042;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.main-menu,
.top-links {
  position: fixed;
  z-index: 10;
  display: inline-block;
  top: 30px;
  right: 0;
  width: 100%;
  text-align: center;
}
.main-menu .nav-bar ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  white-space: nowrap;
}
.main-menu .nav-bar ul li {
  padding: 0px;
  overflow: hidden;
  display: inline-block;
  margin: 0px 20px;
  opacity: 0;
  transform: translate(0px, -20px);
  -webkit-transform: translate(0px, -20px);
  -moz-transform: translate(0px, -20px);
}
.main-menu .nav-bar ul li:last-child {
  margin-right: 0px;
}
.main-menu .nav-bar ul li a {
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.1rem;
}
.main-menu .nav-bar ul li .link span {
  display: block;
  position: absolute;
  left: -2px;
  top: 100%;
  transform: translate(-100%, -50%);
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  width: calc(100% + 2px);
  height: 2px;
  background: #fff;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgb(53 64 99) 0%, rgb(251 251 251) 35%, rgb(255 255 255 / 10%) 100%);
  -webkit-transition: all ease 0.25s;
  -moz-transition: all ease 0.25s;
  -ms-transition: all ease 0.25s;
  -o-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.main-menu .nav-bar ul li .link:hover span,
.main-menu .nav-bar ul li .link.active span {
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: end;
  position: relative;
  top: 40px;
}
.side-link {
  max-width: 154px;
  max-height: 92px;

  padding: 13px 12px;
  text-align: center;
  position: absolute;
  right: 30%;
  top: 80px;
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
.side-link a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  line-height: normal;
}
.side-link.any-page-open {
  transition: ease-in-out 0.22s;
  -webkit-transition: ease-in-out 0.22s;
  -moz-transition: ease-in-out 0.22s;
  opacity: 0;
  visibility: hidden;
}
.language,
.language a {
  color: #fff;
  font-size: 18px;
  margin: 0px 6px;
  text-decoration: none;
}

.language a:hover {
  text-decoration: underline;
}
footer.footer {
  position: fixed;
  z-index: 9;
  width: 100%;
  padding: 0px 20px;
  bottom: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.footer .left,
.footer .right {
  display: inline-block;
  width: 50%;
}

.bottom-arrow, .inside-page-bottom-arrow {
  cursor: pointer;
  width: 50px;
}
.bottom-arrow {
  transition: cubic-bezier(0.33, 0.48, 0.21, 0.97) 0.33s;
}

.inside-page-bottom-arrow {
  position: fixed;
  right: 20px;
  bottom: 50px;
  cursor: pointer;
  z-index: 1;
  background: #000000a8;
  height: 40px;
  width: 40px;
}

.footer .right {
  display: flex;
  justify-content: end;
}
.home .scroll-carrousel-indicator svg {
  width: 20px;
  height: 12px;
}
.home .scroll-carrousel-indicator svg path {
  fill: black;
}
.icons-logo{
  opacity: 0;
}
.icons-logo ul li {
  list-style: none;
  display: inline-block;
  margin: 0px 8px;
}
.icons-logo ul {
  padding-left: 0px;
  margin: 0;
}
.icons-logo ul li a {
  display: block;
}

.privacy-link a {

  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.privacy-link,
.gopro {
  margin-left: 10px;
}
.main-pic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.main-pic .mask {
  position: relative;
  display: block;
  overflow: hidden;
  will-change: transform;
  font-size: 0;
  z-index: 2;
  text-align: center;
}
.main-pic .mask img {
  position: relative;
  width: 70%;
  max-width: 869px;
  max-height: 864px;
  overflow: hidden;
}
.main-pic .button {
  pointer-events: auto;
  z-index: 3;
}
.button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}
.button .circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  position: relative;
  transform: scale(0) rotate(45deg);
  -webkit-transform: scale(0) rotate(45deg);
  -moz-transform: scale(0) rotate(45deg);
  -ms-transform: scale(0) rotate(45deg);
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
}
.button .circle:hover {
  filter: drop-shadow(2px 4px 6px black);
  -webkit-filter: drop-shadow(2px 4px 6px black);
}
.bg-frame:hover {
  z-index: 11;
}
.bg-frame:hover .button .circle {
  -webkit-transform: scale(0.85) rotate(0deg);
  transform: scale(0.85) rotate(0deg);
}
.circle h3 {
  
  color: #fff;
  font-weight: 100;
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}
.scorp-btn img {
  width: 6rem;
}
.covers {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}
.covers .project {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
}
.cover .frame {
  display: inline-block;
  box-sizing: content-box;
  position: absolute;
  overflow: hidden;
  top: 0%;
  left: 50%;
  font-size: 20px;
  width: 100%;
  height: 100%;
}
.cover .left-frame {
  will-change: transform;
  transform: translate(-100%, -100%);
}
.cover .right-frame {
  will-change: transform;
  transform: translate(0%, 100%);
}

.project-0 .cover .left-frame,
.pagecompany .frame-left,
.pagemedia .frame-left,
.project-0 .mask.mask-left {
  background: #0f0c29;
}
.project-0 .cover .right-frame,
.pagecompany .frame-right,
.pagemedia .frame-right,
.project-0 .mask.mask-right {
  background: #302b63;
}
.project-1 .cover .left-frame,
.pagecontact .frame-left,
.project-1 .mask.mask-left {
  background: #000428;
}
.project-1 .cover .right-frame,
.pagecontact .frame-right,
.project-1 .mask.mask-right {
  background: #182848;
}
.project-2 .cover .left-frame,
.pageevent .frame-left,
.project-2 .mask.mask-left {
  background: #44A08D;
}
.project-2 .cover .right-frame,
.pageevent .frame-right,
.project-2 .mask.mask-right {
  background: #093637;
}
.project-3 .cover .left-frame,
.project-3 .mask.mask-left {
  background: #24243e;
}
.project-3 .cover .right-frame,
.project-3 .mask.mask-right {
  background: #0f0c29;
}

.project-4 .cover .left-frame,
.pageproduction .frame-left,
.project-4 .mask.mask-left {
  background: #544a7d;
}
.project-4 .cover .right-frame,
.pageproduction .frame-right,
.project-4 .mask.mask-right {
  background: #1e183b;
}
.project-5 .cover .left-frame,
.project-5 .mask.mask-left {
  background: #1f4037;
}
.project-5 .cover .right-frame,
.project-5 .mask.mask-right {
  background: #307c67;
}
.pageproductdetail{
  background: #e0dfdf;
}
.pageproductdetail .frame-left{
  background: #ffffff;
}
.pageproductdetail .frame-right {
  background: #47b851;
}

.pageproductdetailinner .frame-left,
.pageproductdetailinner .frame-right{
  background: #fbda43;
}
.pagecompany .frame-left{
  background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
}
.pagecompany .frame-right{
  background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
}
.pageproduct .frame-product-left{
  background: #000428;
}
.pageproduct .frame-product-middle{
  background: #012e56;
}
.pageproduct .frame-product-right{
  background: #004e92;
}
.page.pageproduct section.frame {
  width: 33.33%;
}

.page.pageproduct {
  display: flex;
}

.headingarea .first-head {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.project h3.heading {
  font-family: "gothambold_italic";
  font-size: 10vw;
  color: white;
  -webkit-text-fill-color: #00000030;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
  margin: 0;
  position: relative;
  width: 100%;
  transform: translate(0px, 100%);
  will-change: transform;
  text-align: center;
}
.project .headingarea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: 40%;
  left: 0px;
  z-index: 4;
  width: 100%;
  pointer-events: none;
  /* transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%); */
}
.main-pic.inside-page {
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translate(0px, 0px);
  height: 100vh;
}
.main-pic.inside-page .mask {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-pic.inside-page .mask img {
  width: 60%;
}
.pic-text {
  position: relative;
  z-index: 1;
  width: 100%;
  top: 50px;
  padding: 60px;
}
.pic-text {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
}
.pic-text::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}
.pic-text {
  max-height: 90vh;
  overflow: auto;
  padding-right: 15px;
}

.pic-text h2 {
  color: #fff;
  font-size: 30px;
}

.pic-text p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
}
.slider-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
}
.pageproductdetail .slider-area,
.pageproductdetailinner .slider-area {
  position: absolute;
  top: 0;
  width: 100%;
}
.media-carousel .slick-track,
.product-slider .slick-track,
.product-slider-inner .slick-track {
  display: flex;
  align-items: center;
}

.media-slides img,
.mm-slides img {
  width: 80%;
  margin: 0 auto;
  max-height: 600px;
  object-fit: contain;
}
.pageproductdetail .mm-slides img {
  max-width: 150px;
}
.pageproductdetailinner .mm-slides img {
  max-width: 180px;
  max-height: initial;
}
.m-slides-text {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
}
.m-slides-text h3 {
  
  color: #ffffff;
  font-size: 30px;
  width: 100%;
}
.m-slides-text li {
  list-style: none;
   font-family: 'Montserrat';
  color: #ffffff;
  font-size: 22px;
  line-height: 25px;
}
.m-slides-text ul {
  column-count: 3;
  -webkit-column-count: 3;
  width: 100vw;
}

.m-slides-text {margin-top: 0px;}
.hide-image {
  display: none;
}

.media-carousel,
.product-slider,
.product-slider-inner {
  width: 80%;
  margin: auto;
}
button.slick-arrow {
  width: 70px;
  border: 0;
  background: transparent;
  position: absolute;
  top: 50%;
}

button.slick-prev {
  transform: rotate(90deg);
  left: -60px;
}

button.slick-next {
  transform: rotate(-90deg);
  right: -60px;
}
.slick-arrow svg {
  fill: #fff;
}
.event .media-slides img {
  max-height: 470px;
}

.page {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100vh;
}
.page section.frame {
  height: 100vh;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
}
.page.pageevent section.frame-left,
.page.pagemedia section.frame-left {
  position: absolute;
}

.page section.frame.frame-right {
  position: fixed;
  z-index: 0;
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100vh;
}
.main-pic.inside-page .mask img.page-image {
  position: absolute;
}

.page-image {
  background-size: cover;
  padding-bottom: 85%;
}

.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
  width: 100%;
  perspective: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner {
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  width: 74%;
}
.close-scroll-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  will-change: transform;
  
}
.pageproduct .close-scroll-indicator,
.pagemedia .close-scroll-indicator {
  top: 93%;
  left: 97%;
}
.pagemedia .close-scroll-indicator{
  z-index: 2;
}
.close-scroll-indicator svg {
  cursor: pointer;
  width: 56px;
}
.close-scroll-indicator svg .bg {
  fill: black;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
}
.close-scroll-indicator svg .cross {
  fill: white;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
}
.close-scroll-indicator svg:hover .bg {
  fill: white;
}
.close-scroll-indicator svg:hover .cross {
  fill: black;
}
.close-scroll-indicator svg .scroll {
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 0, 145;
  will-change: stroke-dasharray;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
}
.transition-transition,
.subroute-transition-transition {
  opacity: 1;
}
.home {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.home .project-carrousel {
  overflow: hidden;
  position: relative !important;
  z-index: 1;
  height: 100vh;
}
.bg-frame {
  position: absolute;
  width: 45vmax;
  height: 34vmax;
  z-index: 2;
  top: 50%;
  left: 50%;
  transition: ease-in-out 0.22s;
  transform: translate(-50%, -50%) translateZ(0);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  box-shadow: 0px 0px 0px rgb(0 0 0 / 30%);
  -webkit-box-shadow: 0px 0px 0px rgb(0 0 0 / 30%);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
  will-change: transform;
  opacity: 0;
}
.bg-frame .bg {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.bg-frame:hover .bg {
  filter: brightness(0.7);
}
.bg-frame .mask {
  transform: translateZ(0);
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(50%);
  height: calc(100%);
  z-index: 1;
  transform-style: preserve-3d;
  transition: cubic-bezier(0.33, 0.48, 0.21, 0.97) 0.33s;
}

.bg-frame .mask.mask-left {
  transform: translate(0%, 0%);
}

.bg-frame .mask.mask-right {
  transform: translate(100%, 0%);
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.45s ease-out;
  -moz-transition: all 0.45s ease-out;
  transition: all 0.45s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.menu-mobile {
  display: none;
}
.frame-product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
}
.frame-product-content .pro-left-text {
  height: 25%;
}
.frame-content-text ul li {
  font-size: 1rem;
  color: #fff;
  line-height: 35px;
  list-style: none;
}

.frame-content-text {
  margin: 0 auto;
  max-width: 95%;
}
.pro-left-images {
  margin-top: 0px;
}
h4.product-tt{
  
  font-size: 30px;
  color: #ffffff;
}
.pro-left-image-2 img, .pro-left-image-3 img {
  max-width: 113px;
}
.pro-left-image-1 img{
  width: 100%;
}
.pro-left-text h4.product-tt {
  transition: transform ease-in-out 0.22s;
  -webkit-transition: transform ease-in-out 0.22s;
  -moz-transition: transform ease-in-out 0.22s;

}
.frame-product-left .frame-product-content{
  transform: translate(0px, 40px);
  -webkit-transform: translate(0px, 40px);
  -moz-transform: translate(0px, 40px);
}
.frame-product-middle .frame-product-content{
  transform: translateY(60px);
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
}
.frame-product-right .frame-product-content{
  transform: translateY(-60px);
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
}
.pageproduct .frame a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.mm-slides{
  position: relative;
  min-height: 400px;
  padding-top: 7rem;
}
.mm-slides a {
  display: block;
}

.mm-slides .mask-text {
  width: 65%;
  height: 400px;
  background: #bace3bb5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  color: #fff;
  
  opacity: 0;
  visibility: hidden;
  margin: 0 auto;
}
.mm-slides .mask-text{
  transition: cubic-bezier(0.5, 0.33, 0.34, 1.1) 0.5s;
  -webkit-transition: cubic-bezier(0.5, 0.33, 0.34, 1.1) 0.5s;
  -moz-transition: cubic-bezier(0.5, 0.33, 0.34, 1.1) 0.5s;
}
.mm-slides:hover .mask-text{
  opacity: 1;
  visibility: visible;
}
.last-fruit-img {
  height: 100%;
}
.last-fruit-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.closeproductdetailinner {
  position: fixed;
  bottom: 70px;
  right: 60px;
  cursor: pointer;
  z-index: 11;
}
.mobilemenufooter {
  display: none;
}
.bottom-pro-images img {width: 25%;margin-top: 15px;}

.bottom-pro-images {display: flex;justify-content: space-around;width: 70%;}

.skills-inside ul li{
  width: 17%;
  transition: ease-in-out 0.33s;
  -webkit-transition: ease-in-out 0.33s;
  -moz-transition: ease-in-out 0.33s;
}
.skills-inside ul li:hover {
  transform: scale(1.2);
}
.skills-inside ul li p {
  font-size: 12px;
}
.download-cv {
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  background: #ffc107;
  color: rgb(0, 0, 0);
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 135px;
  margin: auto;
  opacity: 0;
  border: 2px solid #ffffff;
}

.download-cv:hover {
  background: #fff;
  color: #000;
}

/* ================ The Timeline ================ */

.timeline {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 0;
  padding: 1em 0;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: rgb(80,80,80);
  background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
  background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  
  z-index: 5;
}

.timeline li {
  padding: 1em 0;
}

.timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.direction-l {
  position: relative;
  max-width: 46%;
  float: left;
  text-align: right;
}

.direction-r {
  position: relative;
  max-width: 46%;
  float: right;
}

.flag-wrapper {
  position: relative;
  display: inline-block;
  
  text-align: center;
}

.flag {
  position: relative;
  display: inline;
  background: rgb(248,248,248);
  padding: 6px 10px;
  border-radius: 5px;
  
  font-weight: 600;
  text-align: left;
}

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: 50%;
  right: -34px;
  content: ' ';
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -10px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid #ff9800;
  z-index: 10;
}

.direction-r .flag:before {
  left: -34px;
}

.direction-l .flag:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

.direction-r .flag:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

.time-wrapper {
  display: inline;
  line-height: 1em;
  font-size: 0.8rem;
  color: rgb(84 74 125);
  vertical-align: middle;
  font-weight: 500;
}

.direction-l .time-wrapper {
  float: left;
}

.direction-r .time-wrapper {
  float: right;
}

.time {
  display: inline-block;
  padding: 4px 6px;
  background: rgb(248,248,248);
}

.desc {
  margin: 1em 0.75em 0 0;
  color: #fff;
  font-size: 1rem;
  font-style: italic;
}

.direction-r .desc {
  margin: 1em 0 0 0.75em;
}
.timeline li ul li {
  font-size: 12px;
  text-align: left;
  padding: 0;
}
.list-who li{
  list-style: none;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.list-who li:hover {
  background: #fff;
  color: #000;
  transform: scale(1.2);
}

.timeline_area {
    position: relative;
    z-index: 1;
}
.single-timeline-area {
  position: relative;
  z-index: 1;
  padding-left: 140px;
  padding-right: 30px;
}
.pagemedia .frame-left h4{
  display: none;
}


@media only screen and (max-width: 575px) {
    .single-timeline-area {
        padding-left: 60px;
    }
}
.single-timeline-area .timeline-date {
  position: absolute;
  width: 140px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -ms-flex-pack: end;
  padding-right: 0px;
}
@media only screen and (max-width: 575px) {
    .single-timeline-area .timeline-date {
        width: 100px;
    }
}
.single-timeline-area .timeline-date::after {
  position: absolute;
  width: 3px;
  height: 100%;
  content: "";
  background-color: #ebebeb4a;
  top: 0;
  right: 30px;
  z-index: 1;
  border-radius: 0;
}
.single-timeline-area .timeline-date::before {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffc107;
  content: "";
  top: 50%;
  right: 24px;
  z-index: 5;
  margin-top: -7px;
}
.single-timeline-area .timeline-date p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.single-timeline-area .single-timeline-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  -webkit-box-shadow: 0 0.25rem 1rem 0 rgb(47 91 234 / 13%);
  box-shadow: 1px 0rem 2rem 2px rgb(68 160 141 / 29%);
  border: 1px solid #73cebb;
}
@media only screen and (max-width: 575px) {
  .single-timeline-area .single-timeline-content {
    padding: 20px;
    margin-left: 20px;
    flex-direction: column;
}

.single-timeline-area .single-timeline-content .timeline-text h6 {
  font-size: 1.2rem;
}
.single-timeline-area .single-timeline-content .timeline-text p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 18px;
  margin-top: 10px;
}
}
.single-timeline-area .single-timeline-content .timeline-icon {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  display: flex;
  align-items: center;
  text-align: center;
  margin-right: 15px;
}
.single-timeline-area .single-timeline-content .timeline-icon i {
  color: #ffffff;
  line-height: 30px;
  font-size: 2rem;
}
.single-timeline-area .single-timeline-content .timeline-text h6 {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}
.single-timeline-area .single-timeline-content .timeline-text p {
  font-size: 14px;
  margin-bottom: 0;
}


@media screen and (max-width: 660px) {
  .single-timeline-area .single-timeline-content .timeline-icon {
    display: block;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
.timeline {
 	width: 100%;
	padding: 4em 0 1em 0;
}

.timeline li {
	padding: 2em 0;
}

.direction-l,
.direction-r {
	float: none;
	width: 100%;

	text-align: center;
}

.flag-wrapper {
	text-align: center;
}

.flag {
	background: rgb(255,255,255);
	z-index: 15;
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: -30px;
	left: 50%;
	content: ' ';
	display: block;
	width: 12px;
	height: 12px;
  margin-left: -3px;
	background: #fff;
	border-radius: 10px;
	border: 4px solid rgb(255,80,80);
	z-index: 10;
}

.direction-l .flag:after,
.direction-r .flag:after {
	content: "";
	position: absolute;
	left: 50%;
	top: -8px;
	height: 0;
	width: 0;
	margin-left: -5px;
	border: solid transparent;
	border-bottom-color: rgb(255,255,255);
	border-width: 8px;
	pointer-events: none;
}

.time-wrapper {
	display: block;
	position: relative;
	margin: 4px 0 0 0;
	z-index: 14;
}

.direction-l .time-wrapper {
	float: none;
}

.direction-r .time-wrapper {
	float: none;
}

.desc {
	position: relative;
	margin: 1em 0 0 0;
	padding: 1em;
  background: rgb(30 24 59);
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	box-shadow: 0 0 1px rgba(0,0,0,0.20);
	
  z-index: 15;
}

.direction-l .desc,
.direction-r .desc {
  position: relative;
  margin: 1em 1em 0 1em;
  padding: 1em;
  z-index: 15;  
}

}
@media screen and (min-width: 1230px) and  (max-width: 1400px) {
  .flag{
    font-size: 0.8rem;
  }
  .pic-text {
    padding: 2rem !important;
}
}

@media screen and (min-width: 400px) and  (max-width: 660px) {

  .direction-l .desc, .direction-r .desc {
    margin: 0;
}

}

@media screen and (max-width: 768px) {
  body,
  html {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
  }

  .logo {
    position: relative;
    top: 0;
    left: 0;
    width: 100px;
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
  }


  .main-menu,
  .top-links {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 20px;
  }
  .top-links {
    position: absolute;
    top: 0px;
    right: 20px;
    max-width: 170px;
  }
  .main-menu {
    text-align: center;
    margin-top: 0;
    background: #010101;
    padding: 80px 10px;
    width: 60%;
    height: 100vh;
    position: fixed;
    right: 0;
    transform: translateX(105%);
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    top: 0;
    transition: cubic-bezier(0.5, 0.33, 0.34, 1.1) 0.5s;
  }
  .main-menu.main-menu-open {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
  }
  .menu-mobile {
    position: absolute;
    z-index: 11;
    right: 0;
    top: 0;
    transform: translate(-36px, 54px);
    font-size: 19px;
    color: #fff;
    display: block;
  }
  .menu-mobile.menu-open {
    color: #fff;
    z-index: 100;
  }
  .main-menu .nav-bar ul li {
    margin: 5px 7px;
    display: block;
    width: 100%;
  }
  .menu-mobile .fa.fa-times {
    transition: all ease-in-out 1.33s;
  }
  .main-menu-open .side-link {
    border: 1px solid #fff;
    position: relative;
    right: 0;
    top: 20px;
    opacity: 1;
    visibility: visible;
    margin: 0 auto;
    max-width: 160px;
    max-height: inherit;
    padding: 6px 8px;
  }
  .main-menu-open .side-link a {
    color: #fff;
    font-size: 15px;
  }
  .main-menu .nav-bar ul li a {
    font-size: 16px;
    color: #fff;
  }
  .nav-bar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pic-text {
    position: relative;
    width: 100%;
    top: 0;
    padding: 20px;
    text-align: center;
    margin-top: 25px;
    max-height: 85%;
  }
  .pic-text h2 {
    font-size: 25px;
  }
  .pic-text p {
    font-size: 18px;
    line-height: 30px;
  }
  .main-pic.inside-page {
    position: relative;
    top: 0;
    left: 0;
    transform: inherit;
    z-index: 3;
    pointer-events: none;
    width: 100%;
  }
  .main-pic.inside-page .mask {
    height: 55%;
  }
  footer.footer {
    position: absolute;
    bottom: 40px;
  }
  .slider-area {
    position: absolute;
    z-index: 1;
    height: 100vh;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
}
  header.header {
    position: absolute;
  }
  .project .headingarea {
    top: 47%;
  }
  .pro-left-images {
    margin-top: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: baseline;
}
.frame-product-middle .pro-left-images > div {
  position: relative;
  top: -112px;
}
h4.product-tt {
  text-align: center;
  font-size: 28px;
  z-index: 10;
}
.pro-left-image-2 {
  padding-left: 0em;
}
.pro-left-image-3 {
  padding-right: 0;
  top: 0;
}
.pro-left-image-center img {
  max-width: 100px;
  margin-bottom: 0px;
}
.pro-left-text h4.product-tt {
  transform: translate(0%, 0%) rotate(0deg);
  -webkit-transform: translate(0%, 0%) rotate(0deg);
  -moz-transform: translate(0%, 0%) rotate(0deg);
  margin-left: 20px;
}
.frame-product-middle .pro-left-text h4.product-tt {
  transform: translate(0px, 0px) rotate(0deg);
  -webkit-transform: translate(0px, 0px) rotate(0deg);
  -moz-transform: translate(0px, 0px) rotate(0deg);
}
.page section.frame {
  height: 50vh;
  width: 100%;
}
.page.pageevent section.frame-left, .page.pagemedia section.frame-left {
  position: relative;
}
.page section.frame.frame-right {
    position: relative;
    width: 100%;
    height: 50vh;
}
h4.product-tt {
  text-align: left;
  font-size: 20px;
  z-index: 10;
}
.frame-product-content > div {
  height: auto;
  width: 100%;
  margin-top: 0px;
}
.frame-product-content .list-who {
  margin-top: 93px !important;
  max-height: 152px;
  overflow: auto;
}
.frame-product-right .pro-left-text h4.product-tt {
  margin-top: 20px;
}
.frame-product-right .frame-content-text {
  max-height: 220px;
  overflow: auto;
}
.pageproduct .close-scroll-indicator, .pagemedia .close-scroll-indicator {
  top: 93%;
  left: 90%;
}
.frame-content-text ul li {
  font-size: 0.7rem !important;
  line-height: inherit;
  margin: 4px !important;
}
.page.pageproduct {
  flex-wrap: wrap;
}
.page.pageproduct section.frame {
  height: 33.33%;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.pageproduct .frame .rollover-2,
.pageproduct .frame .rollover-1, .pageproduct .frame .rollover-3 {
  display: none;
}
.frame-product-content {
  flex-direction: row;
  height: auto;
  width: 100%;
  flex-wrap: wrap;
}
.pro-left-image-1 img {
  position: relative;
  top: -47px;
}
.frame-product-left .frame-product-content .product-tt {
  position: absolute;
  top: 80px;
  font-size: 20px;
  left:0;
}
.page.pageproduct section.frame.frame-product-right {
  padding-top: 0;
}
.frame-product-content > div.pro-left-image-right {
  height: auto;
}
.frame-product-middle .frame-content-text {
  margin-top: 0 !important;
  font-size: 14px;
  max-height: 237px;
  overflow: auto;
}
.pro-left-text.pro-last-title {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
}
.last-fruit-img img{
  height: auto;
  }
  .footer .left {
    margin-left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
.bg-frame {
  width: 40vmax;
  height: 40vmax;
}
.icons-logo ul li img {
  width: 27px;
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
.bottom-arrow, .inside-page-bottom-arrow {
  cursor: pointer;
  width: 40px;
}
.inside-page-bottom-arrow {
  right: 25px;
  bottom: 25px;
}
.product-page-header .menu-mobile {
  color: #000;
}
.product-page-header .menu-mobile i.fa-times {
  color: #fff;
}
.product-page-header .language a {
  color: #000;
}
.media-carousel, .product-slider, .product-slider-inner {
  width: 100%;
  margin: auto;
}
.pagemedia .frame-left h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  margin: 0;
  font-size: 2rem;
  padding: 20px;
  text-align: center;
  color: #fff;
  line-height: 44px;
  margin-top: 2rem;
}
button.slick-arrow {
  top: 46%;
}
.mm-slides {
  max-height: inherit;
  padding-top: 100px;
}
.pageevent button.slick-arrow {
  top: 44%;
}
.pagemedia button.slick-arrow {
  top: 120%;
}
button.slick-prev{
  left: 20%;
}
button.slick-next {
  right: 20%;
}
.m-slides-text li {
  font-size: 16px;
  line-height: 20px;
}
.m-slides-text h3 {
  font-size: 20px;
}
.m-slides-text {
  margin-top: 10px;
}
.pageproductdetailinner .mm-slides img {
  max-width: 130px;
}
.mobilemenufooter {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 20px;
  margin: 30px;
}
.mobilemenufooter {
  display: block;
}
.privacy-link a {
  color: #fff;
}
.m-slides-text ul {
  column-count: initial;
  -webkit-column-count: initial;
  max-height: 200px;
  overflow: overlay;
}
.main-menu .nav-bar ul li .link span {
  display: none;
}
.skills-inside ul li {
  width: 29%;
}
.media-slides img, .mm-slides img {
  width: 100%;
}




}
