@import url('https://fonts.googleapis.com/css2?family=Athiti:wght@300;400&family=Sarabun:wght@100&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Athiti', sans-serif;
  font-family: 'Sarabun', sans-serif;
}

/*
h2{
  margin: 0;
  padding: 0;
  position: absolute;
  left: 100px;
  font-family: 'Athiti', sans-serif;
  font-family: 'Sarabun', sans-serif;

}
*/



header{
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  padding: 0 100px;
  transition: 0.6s;
}

header .logo{
  color: #fff;
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}

header .navigation{

  position: relative;
  line-height: 75px;
  transition: 0.6s;
  transition-property: line-height;

}

header.sticky .navigation{
  line-height: 60px;
}

header .navigation .menu{
	
  position: relative;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}

.menu-item > a{
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  margin: 20px;
  padding: 25px 0;
}

.menu-item > a:hover{
  color: #F26522;
  transition: 0.3s;
}

.menu-item .sub-menu{
  position: absolute;
  background: #FFF;
  top: 74px;
  line-height: 40px;
  list-style: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s;
  transition-property: transform, opacity;
}

header.sticky .menu-item .sub-menu{
  top: 60px;
}

.menu-item:hover .sub-menu{
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}

.menu-item .sub-menu .sub-item{
  position: relative;
  padding: 7px 0;
  cursor: pointer;
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
}

.menu-item .sub-menu .sub-item a{
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 30px;
}

.menu-item .sub-menu .sub-item > a:hover{
  color: #F26522;
  transition: 0.3s;
}

/*.menu-item .sub-menu .sub-item:hover{
  background: #F26522;
} */

.menu-item .sub-menu .sub-item:last-child:hover{
  border-radius: 0 0 8px 8px;
}

.more .more-menu{
  position: absolute;
  background: #FFF;
  list-style: none;
  top: 0;
  left: 100%;
  white-space: nowrap;
  border-radius: 0 8px 8px 8px;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s;
  transition-property: transform, opacity;
}

.more:hover .more-menu{
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}

.more .more-menu .more-item{
  padding: 7px 0;
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.more .more-menu .more-item > a:hover{
  color: #F26522;
  transition: 0.3s;
}

/*
.more .more-menu .more-item:hover{
  background: #F26522;
}
*/

.menu-btn{
  display: none;
}

@media (max-width: 1060px){
  header .navigation .menu{
    position: fixed;
    display: block;
    background: #FFF;
    min-width: 350px;
    height: 100vh;
    top: 0;
    right: -100%;
    padding: 90px 50px;
    visibility: hidden;
    overflow-y: auto;
    transition: 0.5s;
    transition-property: right, visibility;
  }

  header.sticky .navigation{
    line-height: 75px;
  }

  header .navigation .menu.active{
    right: 0;
    visibility: visible;
  }

  .menu-item{
    position: relative;
  }

  .menu-item .sub-menu{
    opacity: 1;
    position: relative;
    top: 0;
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    display: none;
  }

  header.sticky .menu-item .sub-menu{
    top: 0;
  }

  .menu-item:hover .sub-menu{
    transform: translateX(10px);
  }

  .menu-item .sub-menu .sub-item{
    box-shadow: none;
  }

  .menu-item .sub-menu .sub-item:hover{
    background: none;
  }

  .menu-item .sub-menu .sub-item a:hover{
    color: #F26522;
    transition: 0.3s;
  }

  .more .more-menu{
    opacity: 1;
    position: relative;
    left: 0;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: none;
  }

  .more .more-menu .more-item{
    box-shadow: none;
  }

  .more .more-menu .more-item:hover{
    background: none;
  }

  .more .more-menu .more-item a{
    margin-left: 20px;
  }

  .close-btn{
    position: absolute;
    background: url(close.png)no-repeat;
    width: 40px;
    height: 40px;
    background-size: 25px;
    background-position: center;
    top: 0;
    left: 0;
    margin: 25px;
    cursor: pointer;
  }

  .menu-btn{
    background: url(images/manu.png)no-repeat;
    width: 40px;
    height: 40px;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
    display: block;
  }

  header{
    padding: 15px 20px;
  }

  header.sticky{
    padding: 10px 20px;
  }
}

/*---slider--------------------------------------------------------------------------*/
.slider{
  position: relative;
  background: #000116;
  width: 100%;
  height: 100%;
  margin: 0px;
  overflow: visible;
  border-radius: 0px;
}

.slider .slide{
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: circle(0% at 0 50%);
}

.slider .slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s;
}

.slider .slide img{
  padding: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .slide .info{
  position: absolute;
  color: #222;
  background: rgba(255, 255, 255, 0.3);
  width: 75%;
  margin-top: 50px;
  margin-left: 50px;
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
}

.slider .slide .info h2{
  font-size: 2em;
  font-weight: 800;
}

.slider .slide .info p{
  font-size: 1em;
  font-weight: 400;
}

.navigations{
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease; 
}

.slider:hover .navigations{
  opacity: 1;
}

.prev-btn, .next-btn{
  z-index: 999;
  font-size: 2em;
  color: #222;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  cursor: pointer;
}

.prev-btn{
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.next-btn{
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.navigations-visibility{
  z-index: 333;
  display: flex;
  justify-content: center;
}

.navigations-visibility .slide-icon{
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  transform: translateY(-5px);
  margin: 0 6px;
  border-radius: 50px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.navigations-visibility .slide-icon.active{
  background: #4285F4;
}

@media (max-width: 900px){
  .slider{
    width: 100%;
  }

  .slider .slide .info{
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px){
  .slider .slide .info h2{
    font-size: 1.8em;
    line-height: 40px;
  }

  .slider .slide .info p{
    font-size: 0.9em;
  }
}



/*------ box-------------------*/
*[title^="pic"] {
width: 70%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 5px;

margin: 10px auto 20px auto;
}

*[title~="outset"] {
  -webkit-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  -moz-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.pic-sol-responsive {
  width: 100%;
  height: auto;
  border-radius: 15px;


}


/*------ box solar system-------------------*/
*[title^="pic2"] {
width: 70%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 5px;
background: #fff;
margin: 10px auto 20px auto;
}

*[title~="outset2"] {
  -webkit-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  -moz-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.pic-sol-responsive {
  width: 100%;
  height: auto;
  border-radius: 15px;

}
/*------ box solar patner-------------------*/
*[title^="pic3"] {
width: 70%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 5px;
background: #fff;
margin: 10px auto 20px auto;
}

*[title~="outset3"] {
  /*-webkit-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  -moz-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  box-shadow: 0px 15px 20px 20px rgba(0, 0, 0, 0.1);*/
  border-radius: 15px;
}

.pic-sol-responsive {
  width: 100%;
  height: auto;
  border-radius: 15px;

}

.pic-solution-responsive {
  width: 75%;
  height: auto;
  border-radius: 15px;

}

/*---slider 2--------------------------------------------------------------------------*/

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #FFF;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*---footer--------------------------------------------------------------------------*/
.container{
  max-width: 1170px;
  margin:auto;
}
.row{
  display: flex;
  flex-wrap: wrap;
}
ul{
  list-style: none;
}
.footer{
  background-color: #EEEEEE;
  padding: 30px 0;
}
.footer-col{
   width: 25%;
   padding: 0 5px;
}
.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}


/*------ box-sol-------------------*/
/* Container holding the image and the text */
.box-sol {
  position: relative;
  text-align: center;
  color: #000;
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 50%;
  left: 50%;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 50%;
  left: 50%;
}

/* Top right text */
.top-right {
  position: absolute;
  top: 50%;
  right: 50%;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 50%;
  right: 50%;
  /*padding-left: 20px;
  padding-right: 20px;*/
}



/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-28 {
  width: 40%;
  height: 40%;
  border: none;
  border-radius: 100%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);;
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-28:disabled {
  pointer-events: none;
}

.button-28:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}


/*------ box-------------------*/
*[title^="pic"] {
width: 70%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 5px;

margin: 10px auto 20px auto;
}

*[title~="outset"] {
  -webkit-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  -moz-box-shadow: 5px 5px 15px 5px rgba(50, 50, 50, .5);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.pic-sol-responsive {
  width: 100%;
  height: auto;
  border-radius: 15px;


}

.pic-sol-responsive-test {
  width: 100%;
  height: 10px;
}

.pic-sol-responsive-micro-grid{
  width: 100%;
  height: auto;
}



/*----------------button 29-------------------*/
.button-29 {
  width: 65%;
  border: none;
  border-radius: 10%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);;
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-29:disabled {
  pointer-events: none;
}

.button-29:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-29:active {
  box-shadow: none;
  transform: translateY(0);
}




/*-------slide-img-smart-solution---------------*/
/* Container holding the image and the text */
.box-home {
  position: relative;
  text-align: center;
  color: #000;
}

/* meeting */
.bottom-home-1 {
 position: absolute;
  top: 54%;
  left: 32%;
  transform: translate(-50%, -50%);
}

/* transport */
.bottom-home-2 {
  position: absolute;
  top: 45%;
  left: 65%;
  
}

/* Top right text */
.bottom-home-3 {
  position: absolute;
  top: 20%;
  right: 25%;

}

/* Bottom right text */
.bottom-home-4 {
  position: absolute;
  top: 85%;
  left: 27%;
  transform: translate(-50%, -50%);
  
  /*padding-left: 20px;
  padding-right: 20px;*/
}


/* Store */
.bottom-home-5 {
  position: absolute;
  top: 72%;
  left: 55%;
  transform: translate(-50%, -50%);
}

/* parking */
.bottom-home-6 {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* security */
.bottom-home-7 {
  position: absolute;
  top: 83%;
  left: 67%;
  transform: translate(-50%, -50%);
}

/* hospitality*/
.bottom-home-8 {
  position: absolute;
  top: 75%;
  left: 42%;
  transform: translate(-50%, -50%);
}

/*----lift safty------*/
.bottom-home-9 {
  position: absolute;
  top: 85%;
  left: 80%;
  transform: translate(-50%, -50%);
}

/* fitness */
.bottom-home-10 {
 position: absolute;
  top: 26%;
  left: 35%;
  transform: translate(-50%, -50%);
}

/* HELPDEST */
.bottom-home-11 {
  position: absolute;
  top: 48%;
  right: 16%;
  transform: translate(-50%, -50%);
}


.button-home {
  width: 50%;
  height: 50%;
  border: none;
  border-radius: 100%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-home:disabled {
  pointer-events: none;
}

.button-home:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-home:active {
  box-shadow: none;
  transform: translateY(0);
}


/*------------------------ btn-product-----------------------------*/
.button-40 {
  width: 100%;
  border: none;
  border-radius: 10px;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-40:disabled {
  pointer-events: none;
}

.button-40:hover {
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-40:active {
  box-shadow: none;
  transform: translateY(0);
}



/*----------------button 29-------------------*/
.button-41 {
  width: 193px;
  height: auto;
  border: none;
  border-radius: 10%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);;
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-41:disabled {
  pointer-events: none;
}

.button-41:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-41:active {
  box-shadow: none;
  transform: translateY(0);
}


/*-------slide-img-smart-solution---------------*/
/* Container holding the image and the text */
.box-home-des {
  position: relative;
  text-align: center;
  color: #000;
}

/* meeting */
.bottom-home-des-1 {
 position: absolute;
  top: 43%;
  left: 56%;
  transform: translate(-50%, -50%);
}

/* transport */
.bottom-home-des-2 {
  position: absolute;
 top: 43%;
  left: 66%;
  transform: translate(-50%, -50%);
  
}

/* Top right text */
.bottom-home-des-3 {
  position: absolute;
 top: 43%;
  left: 76%;
  transform: translate(-50%, -50%);

}

/* Bottom right text */
.bottom-home-des-4 {
  position: absolute;
 top: 78%;
  left: 56%;
  transform: translate(-50%, -50%);
}



/* Store */
.bottom-home-des-5 {
 position: absolute;
 top: 78%;
  left: 66%;
  transform: translate(-50%, -50%);
}

/* parking */
.bottom-home-des-6 {
  position: absolute;
 top: 78%;
  left: 76%;
  transform: translate(-50%, -50%);
}



/*----------------button 29-------------------*/
.button-42 {
  width: 85%;
  border: none;
  border-radius: 10%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);;
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-42:disabled {
  pointer-events: none;
}

.button-42:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-42:active {
  box-shadow: none;
  transform: translateY(0);
}


/*-------slide-img-smart-solution---------------*/
/* Container holding the image and the text */
.box-farm {
  position: relative;
  text-align: center;
  color: #000;
}

/* meeting */
.bottom-farm-1 {
 position: absolute;
  top: 26%;
  left: 37%;
  transform: translate(-50%, -50%);
}

/* transport */
.bottom-farm-2 {
  position: absolute;
  top: 30%;
  left: 65%;
  
}

/* Top right text */
.bottom-farm-3 {
  position: absolute;
  top: 10%;
  right: 23%;

}

/* Bottom right text */
.bottom-farm-4 {
  position: absolute;
  top: 78%;
  left: 27%;
  transform: translate(-50%, -50%);
  
  /*padding-left: 20px;
  padding-right: 20px;*/
}


/* Store */
.bottom-farm-5 {
  position: absolute;
  top: 35%;
  left: 20%;
  transform: translate(-50%, -50%);
}

/* parking */
.bottom-farm-6 {
  position: absolute;
  top: 22%;
  left: 55%;
  transform: translate(-50%, -50%);
}

/* security */
.bottom-farm-7 {
  position: absolute;
  top: 67%;
  left: 67%;
  transform: translate(-50%, -50%);
}

/* hospitality*/
.bottom-farm-8 {
  position: absolute;
  top: 44%;
  left: 52%;
  transform: translate(-50%, -50%);
}

/*----lift safty------*/
.bottom-farm-9 {
  position: absolute;
  top: 55%;
  left: 15%;
  transform: translate(-50%, -50%);
}

/* fitness */
.bottom-farm-10 {
 position: absolute;
  top: 15%;
  left: 44%;
  transform: translate(-50%, -50%);
}

/* HELPDEST */
.bottom-farm-11 {
  position: absolute;
  top: 48%;
  right: 16%;
  transform: translate(-50%, -50%);
}


.button-farm {
  width: 50%;
  height: 50%;
  border: none;
  border-radius: 100%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-farm:disabled {
  pointer-events: none;
}

.button-farm:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-farm:active {
  box-shadow: none;
  transform: translateY(0);
}


.pic-sol-responsive-test {
  width: 100%;
  height: auto;
}



/*-------slide-img-smart-solution---------------*/
/* Container holding the image and the text */
.box-hotel {
  position: relative;
  text-align: center;
  color: #000;
}

/* meeting */
.bottom-hotel-1 {
 position: absolute;
  top: 50%;
  left: 36%;
  transform: translate(-50%, -50%);
}

/* transport */
.bottom-hotel-2 {
  position: absolute;
  top: 58%;
  left: 74%;
  
}

/* Top right text */
.bottom-hotel-3 {
  position: absolute;
  top: 15%;
  right: 38%;
}

/* Bottom right text */
.bottom-hotel-4 {
  position: absolute;
  top: 74%;
  left: 24%;
  transform: translate(-50%, -50%);
  
  /*padding-left: 20px;
  padding-right: 20px;*/
}


/* Store */
.bottom-hotel-5 {
  position: absolute;
  top: 35%;
  left: 36%;
  transform: translate(-50%, -50%);
}

/* parking */
.bottom-hotel-6 {
  position: absolute;
  top: 58%;
  left: 76%;
  transform: translate(-50%, -50%);
}

/* security */
.bottom-hotel-7 {
  position: absolute;
  top: 52%;
  left: 70%;
  transform: translate(-50%, -50%);
}

/* hospitality*/
.bottom-hotel-8 {
  position: absolute;
  top: 40%;
  left: 64%;
  transform: translate(-50%, -50%);
}

/*----lift safty------*/
.bottom-hotel-9 {
  position: absolute;
  top: 62%;
  left: 36%;
  transform: translate(-50%, -50%);
}

/* fitness */
.bottom-hotel-10 {
 position: absolute;
  top: 80%;
  left: 52%;
  transform: translate(-50%, -50%);
}

/* HELPDEST */
.bottom-hotel-11 {
   position: absolute;
  top: 80%;
  left: 40%;
  transform: translate(-50%, -50%);
}


.bottom-hotel-12 {
 position: absolute;
  top: 74%;
  left: 63%;
  transform: translate(-50%, -50%);
}


.bottom-hotel-13 {
  position: absolute;
  top: 17%;
  right: 48%;

}


.bottom-hotel-14 {
  position: absolute;
  top: 56%;
  left: 60%;
  transform: translate(-50%, -50%);
}


.bottom-hotel-15 {
  position: absolute;
  top: 60%;
  left: 24%;
  transform: translate(-50%, -50%);
}


.bottom-hotel-16 {
  position: absolute;
  top: 17%;
  right: 28%;
}


.button-hotel {
  width: 45%;
  height: 45%;
  border: none;
  border-radius: 100%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-hotel:disabled {
  pointer-events: none;
}

.button-hotel:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-hotel:active {
  box-shadow: none;
  transform: translateY(0);
}




/*-------pic - pie---------------*/
/* Container holding the image and the text */
.box-pie {
  position: relative;
  text-align: center;
  color: #000;
}

/* Bottom left text */
.bottom-left-pie {
 position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Top left text */
.top-left-pie {
  position: absolute;
  top: 40%;
  left: 55%;
  
}

/* Top right text */
.top-right-pie {
  position: absolute;
  top: 40%;
  right: 55%;

}

/* Bottom right text */
.bottom-right-pie {
  position: absolute;
  top: 18%;
  left: 37%;
  transform: translate(-50%, -50%);
  
  /*padding-left: 20px;
  padding-right: 20px;*/
}



/* Centered text */
.centered-pie {
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-pie {
  width: 50%;
  height: 50%;
  border: none;
  border-radius: 100%;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  
  box-sizing: border-box;
  color: #FF5100;
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  margin: auto;
 /*min-height: 60px;
  min-width: 0;*/
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-pie:disabled {
  pointer-events: none;
}

.button-pie:hover {
  color: #FF5100;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-pie:active {
  box-shadow: none;
  transform: translateY(0);
}

.vertical-menu a {
  background-color: #eee; /* Grey background color */
  color: black; /* Black text color */
  display: block; /* Make the links appear below each other */
  padding: 0.75rem; /* Add some padding */
  text-decoration: none; /* Remove underline from links */
}

.vertical-menu a:hover {
  background-color: #ccc; /* Dark grey background on mouse-over */
}

.vertical-menu a.active {
  background-color: #04AA6D; /* Add a green color to the "active/current" link */
  color: white;
}
h1 {
  display: block;
  font-size: 2em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.0em;
  margin-bottom: 0.0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
h3 {
  display: block;
  font-size: 1.17em;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
h4 {
  display: block;
  font-size: 1em;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
h5 {
  display: block;
  font-size: .83em;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
h6 {
  display: block;
  font-size: .67em;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.container .gallery a img {
    float: left;
    width: 20%;
    height: auto;
    border: 2px solid #fff;
    -webkit-transition: -webkit-transform .15s ease;
    -moz-transition: -moz-transform .15s ease;
    -o-transition: -o-transform .15s ease;
    -ms-transition: -ms-transform .15s ease;
    transition: transform .15s ease;
    position: relative;
}

.container .gallery a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 5;
}

.clear {
    clear: both;
    float: none;
    width: 100%;
}