body
{
  margin: 0px;
  font-family: "Open Sans", Arial, sans-serif;
  color: #4A4A4A;
  font-weight: 200;
  font-size: 13px;
}

/* blue= #3D74AC */

a
{
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  user-select: none;
}

a:hover
{
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}

button
{
  outline: none;
  border: none;
  transition: 0.3s;
}

button:hover
{
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}

nav
{
  display: grid;
  background-color: white;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  grid-column-gap: 20px;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
  z-index: 999;
  transition: 0.3s;
}

.nav-shadow
{
  box-shadow: 0 -1px 8px 0 rgba(219,219,219,0.36), 0 1px 3px 0 rgba(219,219,219,0.41);
  transition: 1s;
}

.bold
{
  font-weight: 600;
}

nav .beb-blue
{
  width: auto;
}

#nav-logo
{
  height: 30px;
}

.nav-mobile
{
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  z-index: 999;
}

.product-menu
{
  text-align: center;
}

#menu-hamburger
{
  width: 30px;
  height: 30px;
  margin: auto;
  margin-right: 0px;
  outline: none;
  user-select: none;
}

#menu-hamburger:hover
{
  cursor: pointer;
  opacity: 0.7;
}

.language-selector
{
  position: relative;
  user-select: none;
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
}

.ls-container
{
  position: absolute;
  background-color: white;
  box-shadow: 0 -1px 4px 0 rgba(219,219,219,0.36), 0 1px 4px 0 rgba(219,219,219,0.41);
  width: 120px;
  box-sizing: border-box;
  text-align: center;
  top: 40px;
}

.ls-icon
{
  width: 20px;
  display: inline-block;
  margin: auto;
  margin-right: 5px;
}

.ls-arrow
{
  width: 10px;
  margin-left: 10px;
  padding-bottom: 1px;
}

.ls-current
{
  display: inline-block;
  transition: 0.3s;
  margin: auto;
  margin-left: 5px;
}

.ls-current:hover
{
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.7;
}

.ls-element
{
  border-bottom: 1px solid #DEDEDE;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: 0.3s;
  display: block;
}

.ls-element:hover
{
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.7;
}

.ls-element:last-child
{
  margin-bottom: 0px;
}

.mm-header
{
  display: grid;
  grid-template-columns: 90% 10%;
}

.menu-mobile
{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  padding: 20px;
  padding-top: 50px;
  box-sizing: border-box;
  display: grid;
  align-items: center;
  grid-template-rows: 5% 55% 40%;
}

.menu-mobile a
{
  font-weight: 600;
  display: block;
  font-size: 16px;
  text-align: center;
  color: #000000;
  width: 90%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  height: 70px;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
  text-align: left;

  font-size: 24px;
  font-weight: 200;
  font-family: "Futura", sans-serif;

}
.mm-container
{
  align-self: center;
}

.mm-kronoscare
{
  font-size: 34px;
  font-weight: 200;
  font-family: "Futura", sans-serif;
}

.mm-image
{
  width: 80%;
  margin: auto;
}

.menu-mobile .language-selector
{
  font-size: 20px;
  float: right;
}

.closing-cross
{
  width: 20px;
  height: 20px;
  border-radius: 40px;
  margin: auto;
  margin-right: 0px;
}

.closing-cross:hover
{
  cursor: pointer;
}

.banner-container
{
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  box-sizing: border-box;
  align-items: center;
  padding: 100px;
  padding-top: 60px;
}

.banner-element
{
  align-self: end;
  padding: 50px;
}

.be-title
{
  font-weight: 400;
  font-size: 32px;
  font-family: "Futura", sans-serif;
}

.be-sub
{
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 40px;
  color: #4A4A4A;
}

.be-button
{
  font-size: 13px;
  height: 40px;
  border-radius: 2px;
  width: 230px;
  max-width: 90%;
  background-color: #FFFFFF;
  box-shadow: 0 -1px 4px 0 rgba(219,219,219,0.36), 0 1px 4px 0 rgba(219,219,219,0.41);
}

a.be-button
{
  display: grid;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.beb-blue
{
  background-color: #3D74AC;
  color: white;
  font-weight: "600";
  color: #FFFFFF;
  margin-right: 20px;
}

.beb-link
{
  display: grid;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
}

.beb-disabled
{
  background-color: grey;
}

.input-blue
{
  outline: none;
  border: none;
  font-size: 13px;
  height: 40px;
  border-radius: 2px;
  background-color: white;
  border-bottom: 2px solid #3D74AC;
  color: #3D74AC;
  text-align: center;
}

.inoput-blue::-webkit-input-placeholder
{
  color: #3D74AC;
}

/* SLIDE */

.slide
{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 100px;
}

.slide-title
{
  font-family: "Futura", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #4A4A4A;
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.slide-sub
{
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 40px;
  color: #4A4A4A;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* MULTI BOX */


.multi-box
{

}

.mb-boxes
{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 45px;
}

.mb-box
{
  background-color: #FAFAFA;
  text-align: center;
  width: 100%;
  height: 160px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  user-select: none;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0.3s;
}

.mb-box:hover
{
  cursor: pointer;
}

.mbb-active
{
  background-color: #3D74AC;
  transition: 0.3s;
}

.mbb-active .mbb-text
{
  color: white;
}

.mbb-image
{
  display: block;
  margin: auto;
  height: 25px;
  transition: 0.3s;
}

.mbb-image-light
{
  display: block;
  margin: auto;
  height: 25px;
}

.mbb-text
{
  margin-top: 20px;
  display: block;
  font-family: "Futura", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4A4A4A;
  text-align: center;
}

.mb-details
{
}

.nb-detail
{
  grid-template-columns: repeat(2, 1fr);
  display: none;
  background-color: #FAFAFA;
  width: 100%;
  align-items: center;
  padding: 50px;
  padding-top: 120px;
  padding-bottom: 120px;
  box-sizing: border-box;
  margin-top: 30px;
  grid-column-gap: 50px;
}

.nbd-active
{
  display: grid;
}

.mbd-title
{
  font-family: "Futura", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #4A4A4A;
  text-align: center;
}

.mbd-sub
{
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #4A4A4A;
  width: 80%;
  margin: auto;
  margin-top: 10px;
}

.mbd-image
{

}

.mbd-image img
{
  width: 100%;
}

/* TESTIMONIALS */

.csc-testimonials
{
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  width: 100%;
  box-sizing: border-box;
}

.csct-element
{
  box-shadow: 0 -1px 8px 0 rgba(219,219,219,0.36), 0 1px 3px 0 rgba(219,219,219,0.41);
  background-color: white;
  box-sizing: border-box;
  padding: 50px;
  padding-top: 80px;
  position: relative;
  margin-top: 120px;
  text-align: center;
  line-height: 22px;
  margin-bottom: 100px;
}

.testimonial-profile
{
  position: absolute;
  left: calc(50% - 50px);
  top: -50px;
  width: 100px;
}

.testimonial-body
{

}

.testimonial-author
{
  font-weight: 600;
  margin-top: 10px;
}

.csc-numbers
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: center;
  margin-top: 70px;
  grid-column-gap: 50px;
}

.overview-box
{
  background: #FFFFFF;
  box-sizing: border-box;
  width: 100%;
  padding: 30px;
  text-align: center;
  border-radius: 2px;
}

.ob-head
{
  font-weight: 400;
  font-size: 15px;
  color: #4A4A4A;
}

.ob-title
{
  font-family: "Futura";
  font-size: 35px;
  font-weight: 600;
  color: #4A4A4A;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ob-sub
{
  font-size: 16px;
}

.ob-evolution
{
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  width: 30%;
  margin: auto;
  margin-top: 20px;
}

.ob-icon
{
  width: 40px;
  height: 40px;
}

.obe-icon
{
  margin: auto;
  padding-right: 3px;
}

.oben-down
{
  color: #BE3946;
  font-weight: 600;
}

.oben-up
{
  color: #61C650;
  font-weight: 600;
}


/* CLIENTCASE */

.client-case-container
{
  display: grid;
  grid-template-columns: 40% 60%;
  box-sizing: border-box;
  align-items: center;
}

.ccc-text
{
  align-self: center;
}

.ccct-title
{
  font-family: "Futura", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #4A4A4A;
  text-align: right;
  width: 80%;
  margin: auto;
}

.ccct-sub
{
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #4A4A4A;
  width: 80%;
  margin: auto;
  margin-top: 10px;
  text-align: right;
}

.ccc-video-banner
{
  width: 100%;
  transition: 0.2s;
}

.ccc-video-banner:hover
{
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;
}

.ccc-video
{
  width: 100%;
  transition: 0.2s;
}


/* CLIENTS */

.clients-container
{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  box-sizing: border-box;
  margin-top: 80px;
}

.client-element
{
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0 -1px 8px 0 rgba(219,219,219,0.36), 0 1px 3px 0 rgba(219,219,219,0.41);
  border-radius: 0px;
  padding: 0px;
  white-space: none;
}

.client-element img
{
  width: 100%;
  height: 100%;
}

/* LETSGO */


#letsgo
{
  background-image: url("../images/commence.png");
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}


#letsgo-validation
{
  width: auto;
  width: 40px;
  height: 40px;
  margin-top: 30px;
  margin-right: 0px;
  border-radius: 0px;
}


/* MENU TRI */

.multi-menu
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 50px;
}

.tri-menu
{
  box-sizing: border-box;
  padding: 50px;
  background: #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0 -1px 8px 0 rgba(219,219,219,0.36), 0 1px 3px 0 rgba(219,219,219,0.41);
}

.tm-circle
{
  width: 10px;
  height: 10px;
  background-color: #2975b0;
  border-radius: 100px;
  margin: auto;
}

.tm-icon
{
  height: 30px;
}

.tm-title
{
  font-weight: 600;
  font-size: 16px;
  color: #4A4A4A;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
}

.tm-body
{
  font-weight: 200;
  font-size: 12px;
  color: #4A4A4A;
  letter-spacing: 0.23px;
  text-align: center;
  margin-top: 20px;
}

.beb-tri
{
  color: white;
  margin-top: 40px;
}

#beb-track
{
  background-color: #3D74AC;
}

#beb-notify
{
  background-color: #E28D44;
}

#beb-dashboard
{
  background-color: #8A4F7D;
}


/* TECHNICAL */

#slide-technical .mb-boxes
{
  grid-template-columns: repeat(2, 1fr);
}

/* META */

.hidden
{
  display: none!important;
}



/* MEDIA */

@media screen and (max-width: 1200px) {

  .multi-menu
  {
    grid-template-columns: 100%;
    grid-row-gap: 30px;
  }


}

@media screen and (max-width: 1000px) {

  .slide
  {
    padding-bottom: 50px;
    padding-top: 50px;
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
    box-sizing: border-box;
  }

  .banner-container
  {
    grid-template-columns: 100%;
    padding: 0px;
  }

  .banner-element
  {
    align-self: center;
    text-align: center;
    padding: 20px;
  }

  .beb-blue
  {
    margin: 0px;
    margin-bottom: 20px;
  }

  .mb-boxes
  {
    grid-column-gap: 20px;
    overflow-x: scroll;
  }

  .mb-box
  {
    min-width: 180px;
  }

  .csc-numbers, .client-case-container, .csc-testimonials, .clients-container, .nb-detail
  {
    grid-template-columns: 100%;
    grid-row-gap: 30px;
  }

  .csct-element:first-child
  {
    margin-bottom: 0px;
  }

  .ccct-title, .ccct-sub
  {
    text-align: center;
  }

  .nb-detail
  {
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #letsgo
  {
    background: none;
  }

}

@media screen and (max-width: 700px) {

  .banner-container
  {
    background-position: center;
  }

  nav
  {
    display: none;
  }

  .nav-mobile
  {
    display: grid
  }

}















/*  */
