*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
.gallery-box{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.wrapper{
  max-width: 1100px;
}
.gallery{
  display: flex;
  flex-wrap: wrap;
}
.gallery .image{
  padding: 7px;
  width: calc(100% / 3);
}
.gallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery .image:hover img{
  transform: scale(1.1);
}

.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  display: flex;
  align-items: center;
  padding: 12px 15px 12px 10px;
  justify-content: space-between;
}
.preview-box .details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p{
  margin: 0 5px;
}
.details .title p.current-img{
  font-weight: 500;
}
.details .icon{
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}
.preview-box .image-box{
  display: flex;
  width: 100%;
  position: relative;
}
.image-box .slide{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
}
.slide.prev{
  left: 0px;
}
.slide.next{
  right: 0px;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.45);
}

@media(max-width: 1000px){
  .gallery .image{
    width: calc(100% / 2);
  }
}
@media(max-width: 600px){
  .gallery .image{
    width: 100%;
    padding: 4px;
  }
}

/* ########################################## */


h1{
	font-size:1.8rem;
	font-weight: 900;
	margin-bottom: 10px;
}
h2{
	font-size: 1.3rem;
	font-weight: 700;
	color: #ff7d10;
}
p{
	font-size: 1rem;
	font-weight: 300px;
	text-align: justify;
}
.btn-2{
	background-color:#e06614;
	color:#fff;
  }
  .btn-2:hover{
	color:#fff;
	background-color: rgb(255, 125, 16);
  }

.center-hw{
	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.bg-fixed{
	background-position:center;
	background-size: cover;
	background-repeat: no-repeat;

}
  
 /*#######################        navigation             ################## */

.navbar-brand .company{
	color: rgb(255, 125, 16) !important;
}
.bg-color{
	background-color: rgba(23, 32, 42,.8) !important;
 }
.navbar-brand{
 font-size:1.6rem !important;
 font-weight: 700;
}
.fa-2x{
	font-size: 1.6rem;
}
.nav-link:hover{
	color: #ff7d10;
}
.btn-bg{
	background-color:transparent;
	border: 2px solid #fff;
	color: #fff;
}
.btn-bg:hover{
	color: #fff;
	background-color:#ff7d10;	
}

.header-2{
	background-image:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.45)), url(../image/banner-2.jpg);
	color: #fff;
	height: 40vh;
}

.page{
	font-size: 3rem;
	color: #fff;
	font-weight: bold;
	transform: translateY(50px);
}

.border-left{
	border-left: 4px solid #ff7d10;
	padding-left: 10px;
}
.footer-border{
	border-bottom: 4px solid #ff7d10 !important;
	padding-bottom: 10px;
	width:10rem;
	text-align: center;
	display: flex;
	justify-content: center;

}
.footer-border-2{
	border-bottom: 2px solid #ff7d10 !important;
	padding-bottom: 10px;
	width:5rem;
	text-align: center;
	display: flex;
	justify-content: center;
}

.footer-page{
	text-decoration: none;
	color: #fff;
}
.footer-page:hover{
	color:#ff7d10;
}


@media(max-width:769px){
	
	h1{
		font-size:1.2rem !important;
		font-weight: 700;
	}
	h2{
		font-size:1rem !important;
		font-weight: 500;
	}
	p{
		font-size:.9rem !important;
		font-weight: 300px;
	}
}

