@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

@import url('menu.css');

* {
  box-sizing: border-box;
}
html,
body {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 300;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: #323232;
/*    background: #F5F5FA;*/
    overflow-x: hidden;
}
h1,h2,h3,h4, h5, h6{
  text-transform: uppercase;
}

/*.logo{
  position: fixed;
  z-index: 100;
  left: 5%;
  top: 5px;
  width: 200px;
}*/
.logo{
  position: fixed;
  z-index: 100;
  left: 5%;
  top: 21px;
  width: 120px;
}
svg.main_logo {
  width: 100px;
  position: absolute;
  top: 10px;
  
}
.lines{
  width: 119px;
  position: absolute;
  z-index: 1;
  top: 19px;
  left: -7px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(7%) hue-rotate(8deg) brightness(97%) contrast(100%);
}
.logotext{
  font-size: 24px;
  font-weight: bold;
  top: 10px;
  position: absolute;
  left: 124px;
  color: #FFF;
  border-left: 1px solid #FFF;
  padding: 10px 20px;
}
.slogan{
  color: #FFF;
  text-align: center;
  width: 100%;
  transform: translateX(20px);
  top: 116px;
  position: absolute;
  font-size: 10px;
}



#videowrapper{  
    position: relative;
    overflow: hidden;
} 

#fullScreenDiv{
    min-height: 100%; 
    height: 100vh;
    width: 100vw;
    padding:0;
    margin: 0;
    background-color: gray;
    position: relative;
}

#video{    
    width: 100vw; 
    height: auto;
    margin: auto;
    display: block;
    object-fit: cover;
}
@media (min-aspect-ratio: 16/9) {
  #video{
    width: 100vw; 
    height:auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #video {
    height: 100vh; 
    width:auto;
    margin-left: 50vw;
    transform: translate(-50%);
  }
}

#videoMessage{
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  mix-blend-mode: hard-light;
  padding: 100px;
}

#videoMessage img{
    width: 130px;
    height: 100%;
}
video.fullscreen {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
video.fullscreen::-webkit-media-controls {
  display: none !important;
}
.nav_gradient {
  width: 100%;
  background: rgb(25,25,25);
background: -moz-linear-gradient(180deg, rgba(25,25,25,0.6810925053615196) 0%, rgba(25,25,25,0) 100%);
background: -webkit-linear-gradient(180deg, rgba(25,25,25,0.6810925053615196) 0%, rgba(25,25,25,0) 100%);
background: linear-gradient(180deg, rgba(25,25,25,0.6810925053615196) 0%, rgba(25,25,25,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#191919",endColorstr="#191919",GradientType=1);   
  height: 141px;
  position: absolute;
  z-index: 2;
}


/* Button  */
.arrow-button {
    display: flex;
    background-color: #39719500;
    padding: 10px 0;
    border-radius: 5px;
    transition: all .3s ease;
    cursor: pointer;
    align-items: center;
    font-size: 14px;
    border: 0;
    color: #323232;
}
.arrow-button > .arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    position: relative;
    transform: rotate(-45deg);
    margin: 0 6px;
    transition: all .3s ease;
}

.arrow-button > .arrow::before {
    display: block;
    background-color: currentColor;
    width: 3px;
    transform-origin: bottom right;
    height: 2px;
    position: absolute;
    opacity: 0;
    bottom: calc(-2px / 2);
    transform: rotate(45deg);
    transition: all .3s ease;
    content: "";
    right: 0;
}

.arrow-button:hover > .arrow {
    transform: rotate(-45deg) translate(4px, 4px);
}

.arrow-button:hover > .arrow::before {
    opacity: 1;
    width: 8px;
}

.arrow-button:hover {
    background-color: #39719500;
    color: #000 !important;
}

/* Button end */




/* Main page services */

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 50vh;
}

.left-slide {
  height: 100%;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}
.left-slide p, .left-slide h1{
  padding: 30px;
}
.left-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}

.left-slide h1 {
  font-size: 30px;
}

.right-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 35%;
  width: 65%;
  transition: transform 0.5s ease-in-out;
}

.right-slide > div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}

button.mabtn {
  background-color: #fff;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  padding: 15px;
}

button.mabtn:hover {
  color: #222;
}

button.mabtn:focus {
  outline: none;
}

.slider-container .action-buttons button {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}

.slider-container .action-buttons .down-button {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.slider-container .action-buttons .up-button {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* Main page services end*/


/* Main page logos */
:root {
  --marquee-width: 90vw;
  --marquee-height: 100px;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: #FFF;
  color: #eee;
  overflow: hidden;
  position: relative;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
  background: linear-gradient(to right, #FFF 0%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, #FFF 0%, transparent 100%);
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  width: 70%;
  /* height: 100%; */
}

@media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before, .marquee:after { width: 5rem; }
  .marquee-content li img {
    width: 90%;
    /* height: 100%; */
  }
}
/* Main page logos END */


/* Tabs on About page */
.nav-justified > .nav-link, .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  background: whitesmoke;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: #6f6f6f;
  border-color: transparent;
  height: 100%;
}
/* Tabs on About page END */  


/* Services page */

.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  background: none;
}
.accordion-flush > .accordion-item {
  background: none;
}
/* Services page END */





/* Mobile adobe */
@media only screen and (max-width: 600px) {
/*.logo {
  position: fixed;
  z-index: 100;
  left: 5%;
  top: 5px;
  width: 150px;
}*/
.logo {
  position: fixed;
  z-index: 100;
  left: 5%;
  top: 21px;
  width: 112px;
}
svg.main_logo {
  width: 71px;
  position: absolute;
  top: 10px;
}
.lines {
    width: 89px;
    position: absolute;
    z-index: 1;
    top: 14px;
    left: -7px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(7%) hue-rotate(8deg) brightness(97%) contrast(100%);
}
.logotext {
    font-size: 16px;
    font-weight: bold;
    top: 10px;
    position: absolute;
    left: 95px;
    color: #FFF;
    border-left: 1px solid #FFF;
    padding: 10px 20px;
}
.slogan {
  color: #FFF;
  text-align: center;
  width: 100%;
  transform: translateX(20px);
  top: 86px;
  position: absolute;
  font-size: 10px;
}
.nave {
  position: fixed;
  z-index: 10000;
  right: 16px;
  top: 10px;
}

#videoMessage {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  mix-blend-mode: hard-light;
  padding: 50px;
}
.left-slide h1 {
  font-size: 22px;
}
.left-slide p {
  padding: 22px;
  font-size: 15px;
}
 .left-slide h1{
  padding: 22px;
  font-size: 22px;
 }
.action-buttons {
  position: absolute;
  z-index: 2;
  bottom: 20%;
  left: 50%;
}
.left-slide {
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}
.right-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  transition: transform 0.5s ease-in-out;
}
}

/* Mobile adobe  */