
/*-- 14. Download-Area --*/

.download-area {
    background-image: url('../images/smarthome/download-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: 70px;
    margin-bottom: 100px;
    color: #ffffff;
}

.download-area .mobile-image {
    margin-top: -106px;
    margin-bottom: -200px;
}

/*-- 3. Button-Style --*/

.bttn-white {
    position: relative;
    background: rgb(37,82,115);
    background: -webkit-linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    background: linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    overflow: hidden;
    z-index: 1;
    margin-right: 10px;
    border: none;
}

.bttn-white img {
    height: 20px;
    margin-right: 5px;
    margin-top: -5px;
    display: inline-block;
}

.bttn-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.bttn-white.active,
.bttn-white:hover {
    color: #ffffff;
}

.bttn-white.active:before,
.bttn-white:hover:before {
    opacity: 0;
}

.bttn-default,
.bttn-white {
    padding: 12px 30px;
    background-color: #ffffff;
    display: inline-block;
    color: #768ede;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: none;
}

.bttn-default .lnr,
.bttn-white .lnr {
    margin-right: 10px;
}


.bttn-default {
    padding: 12px 40px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(37,82,115);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    background: linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    color: #ffffff;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.bttn-default:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.sq {
    border-radius: 25px !important;
}

/*-- 11. Service-Box --*/

.service-box {
    position: relative;
    padding-left: 80px;
}

.team-slide .owl-controls .owl-nav > div,
.service-box .box-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    margin-top: -15px;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 72px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(37,82,115);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    background: linear-gradient(45deg, rgba(37,82,115, 1) 0%, rgba(25,156,162, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    overflow: hidden;
    z-index: 1;
    color: #5e88fc;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

.team-slide .owl-controls .owl-nav > div:hover,
.service-box:hover .box-icon {
    color: #ffffff;
}

.team-slide .owl-controls .owl-nav > div:before,
.service-box .box-icon:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.team-slide .owl-controls .owl-nav > div:hover:before,
.service-box:hover .box-icon:before {
    opacity: 0;
}

.service-box img {
    height: 100px;
    width: auto;
}

.service-box h4 {
    padding-left: 50px;
    margin-bottom: 10px;
    color: cadetblue;
    font-weight: bold;
}

.rightbox p {
  padding-left: 50px;
}

.leftbox p {
  padding-left: 50px;
}

#gallery-font p {
    font-size: 1.2em;
}

#b03 {
  padding-top: 50px;
  width: 100%;
  background-color: #EEEBDF;
  height: auto;
}

#b3Box1 {
  width: 50%;
  margin: 0 auto;
}

#b3Box2 {
  background:url(../images/hotelIntro/pic2.jpg) no-repeat;
  background-position: 50% 0;
  height: 540px;
  margin:0 auto;
  width: 100%;
  max-width: 1920px;
}

.b3Title1{
  text-align: center;
  font-size: 3em;
  font-weight: bolder;
  color: #0E528B;
  width: 60%;
  margin: 0 auto 8px;
  border-bottom-style:solid;
  border-bottom-color: #0E528B;
  border-width: 1px;
}

.b3Txt{
  margin: 0px auto;
  width: 80%;
  text-align: center;
  font-size: 1.2em;
  color: #0E528B;
}




.business-content .bg1 {
  background: url('../images/smarthome/pic1.png') no-repeat 50% 0;
  height: 800px;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.business-content .bg2 {
  background: url('../images/smarthome/pic2.png') no-repeat 50% 0;
  height: 1200px;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.business-content .bg23 {
  background: url('../images/smarthome/pic23.png') no-repeat 50% 0;
  height: 1200px;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.business-content .bg3 {
  background: url('../images/smarthome/pic3.png') no-repeat 50% 0;
  height: 1300px;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.business-content .bg4 {
  background: url('../images/smarthome/pic4.png') no-repeat 50% 0;
  height: 1000px;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}

.feature-area {
  background:url('../images/smarthome/smartbg02.jpg') no-repeat scroll bottom center;
  background-size: cover;
  padding-bottom: 100px;
}

#features_page h2 {
  font-size: 3em;
  color: #0E528B;
  font-weight: bold;
}

/*-- 13. Gallery-Area --*/

.gallery-area {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(72, 44, 191);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #ffffff;
}

.gallery-slide .owl-stage-outer {
    background: url('../images/smarthome/app/mobile-screen.png') no-repeat center right / auto 100%;
}

#c01 {
  height: auto;
  background: url('../images/smarthome/smartbg03-1.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#c1Box1 {
  width: 100%;
  margin: 0 auto;
  background-color: white;
  padding: 40px 0 25px 0;
}

#c1Box2 {
  background-image:url('../images/smarthome/setup0.png');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  margin: 0 auto;
  height: 900px;
  width: auto;
}

.c1Title1{
  text-align: center;
  font-size: 300%;
  color: #0E528B;
  width: 300px;
  margin: 0 auto 8px;
  border-bottom-style:solid;
  border-bottom-color: #0E528B;
  border-width: 1px;
}

.c1Txt{
  text-align: center;
  font-size: 1.2em;
  color: #0E528B;
}

.gallery-slide .item {
    margin: 58px 17px 70px 15px;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-slide .owl-controls {
    position: static;
    text-align: right;
    padding-right: 80px;
}

.gallery-slide .owl-controls .owl-nav > div {
    display: inline-block;
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    color: rgba(72, 44, 191, 1);
    margin: 5px;
}

.gallery-slide .owl-controls .owl-dots .owl-dot {
    display: inline-block;
    margin: 3px;
}

.gallery-slide .owl-controls .owl-dots .owl-dot span {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 5px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-slide .owl-controls .owl-dots .owl-dot.active span {
    opacity: 1;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

#htu-description {
  margin-left: 0;
}

@media screen and (min-width: 768px) {

    .feature-area {
      padding-bottom: 0px;
    }

    .leftbox {
      padding-left: 0px;
      padding-right: 150px;
    }

    .leftbox h4, .leftbox p {
      text-align: right;
    }

    .leftbox p {
      padding-left: 0px;
    }

    .service-box .putright {
      left: 70%;
    }

    .feature-area .mobile-image {
      margin: 0 auto;
      margin-top: -80px;
      margin-bottom: 80px;
    }

    .page-title h3 {
      font-size: 3em;
    }
}
