
body {
  font-family: 'Montserrat', sans-serif;
  color: #5a5757;
  background: #1b263a;
  font-size: 16.5px;
  line-height: 28px;
  overflow-x:hidden;
}
p {
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.8px;
}
.btn {
    padding: 9px 27px;
    outline: none;
    box-shadow: none;
    border-radius: 3px;
    text-decoration: none;
}
.btn-outline-white, .btn-custom {
  font-size: 12px;
  letter-spacing: 0.7px;
  transition: all 0.5s;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-custom, .btn-outline-white:hover {
  color: #fff;
  background: #f89d36;
  border: 1px solid #f89d36;
}

.btn-custom:hover, .btn-outline-white {
  background-color: #ffffff;
  color: #f89d36;
  border-color: #ffffff;
}
/*******HOME*******/
.bg-home-half {
  position: relative;
  padding: 240px 0;
}
.overview-home {
  animation: animate-left-to-right 60s linear infinite;
}
@keyframes animate-left-to-right { 
  from { 
      background-position: 0 0; 
  } 
  to { 
      background-position: 100% 0; 
  } 
}
.danger {
  color: #d9534f;
}
.home-danger {
  font-size: 45px;
}
.text-custom {
  color: #f89d36;
}
a {
  text-decoration: none !important;
}
a.text-custom:hover {
  color: #f7911d !important;
}

.home-center {
  display: table;
  width: 100%;
  height: 100%;
}

.home-desc-center {
  display: table-cell;
  vertical-align: middle;
}

.section-title h3 {
  font-size: 22px;
  font-weight: 700;
}

.section-title h2 {
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 600;
}
.section-title .line-bot {
  display: inline-block;
  width: 50px;
  height: 2px;
  border-radius: 30px;
  margin: 15px 0 10px;
  background: #5a5757;
}

.bg-overlay {
  background-color: rgba(35, 37, 47, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%
}

.section {
  padding: 80px 0 30px;
  position: relative;
}

/******DEMOS*******/
.padding-ten {
  padding-left: 10%;
  padding-right: 10%;
}
.demo-box {
  padding: 20px 0 50px 0; 
  text-align: center;
}

.demo-box img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
            transition: all 400ms ease-in-out;
}

.demo-box img:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);    
    transform: translateY(-10px);
}

.demo-box h4 {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.demo-box h4 span {
text-transform: capitalize;
    font-weight: normal;
    font-size: 80%;
}

.footer-three {
  padding: 40px 0;
  position: relative;
}

.copy-rights {
  font-size: 15px;
  color: #adb5bd !important;
}

.border {
  height: 4px;
  width: 60px;
  border-radius: 5px;
  margin: 0 auto 30px;
  background-color: #f89d36;
}

.title {
  margin-bottom: 15px;
  font-size: 22px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 33px;
  height: 33px;
  line-height: 31px;
  display: none;
  color: #29292d;
  background-color: #dee2e6;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.back-to-top i {
  font-size: 16px;
}

.back-to-top:hover {
  background-color: #f89d36;
  border-color: #f89d36 !important;
  color: #ffffff;
}