:root {
 --primary: #e36002;
 --secondary: #0098E5;
 --side-nav-bg: #2f3238;
 --content-width: 1170px;
}

body {
    margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
a,a:hover,a:focus {
	color: inherit;
	text-decoration: none
}
.backdrop{
    position: fixed;
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
}
.sidenav{
    width: 0;
    left: -200px;
    position: fixed;
    height: 100%;
    z-index: 2;
    background-color: var(--side-nav-bg);
    color: #fff;
    box-shadow: 0 0 1px 1px rgb(0 0 0 / 14%), 0 0 2px 2px rgb(0 0 0 / 10%), 0 0 5px 1px rgb(0 0 0 / 8%);
}
.sidenav>.logo{
    height: 150px;
    margin: 25px;
}
.sidenav .menu-item{
    line-height: 50px;
    padding: 0 8px;
    border-bottom: 1px solid #ccc;
    margin-left: 8px;
}
.sidenav .menu-item:first-of-type{
    border-top: 1px solid var(--side-nav-bg);
}
.sidenav .menu-item:hover{
    background-color: var(--side-nav-bg);
}
.header{
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    box-shadow: 0 0 1px 1px rgb(0 0 0 / 14%), 0 0 2px 2px rgb(0 0 0 / 10%), 0 0 5px 1px rgb(0 0 0 / 8%);
    color: #fff;
    z-index: 1;
}
.header.light-nav{
    background: #fff;
    color: #333;
}
.header>.navbar{
    height: 64px;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: var(--content-width);
}
.header>.navbar>.logo{
    height: 46px;
    margin-top: -14px;
    margin-left: 16px;
    margin-right: 16px;
}
.header>.navbar>.title{
    margin: 0 8px;
    line-height: 64px;
    flex: 1;
    font-weight: 400;
}
.header>.navbar>.nav-btn{
    padding: 14px 10px;
}
.header>.navbar>.nav-btn>svg{
    border-radius: 18px;
    padding: 6px;
    fill: #fff;
}
.header.light-nav>.navbar>.nav-btn>svg{
    fill: #333;
}
.header>.navbar>.nav-btn:hover>svg{
    background-color: rgba(34, 48, 69, 0.4);
    cursor: pointer;
}
.main{
    width: 100%;
}
.home-section{
    padding-top: 66px;
    background: var(--side-nav-bg) url("../img/home-bg.jpg") no-repeat fixed center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    align-items: center;
}
.home-container{
    flex: 1;
    margin: 0 auto;
    max-width: var(--content-width);
    color: #fff;
    padding: 16px;
}
.home-container>.home-title{
    max-width: 330px;
    font-size: 48px;
    border-bottom: 4px solid var(--primary);
}
.home-container>.home-subtitle{
    max-width: 370px;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 36px;
}
.home-container>.explore-btn{   
    background-image: linear-gradient(to right, #FF512F 0%, #DD2476  51%, #FF512F  100%);
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: inline-block;
}
.home-container>.explore-btn:hover{
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}
.iot-mqtt-panel-slider.fc .fc-controls,
.iot-mqtt-panel-slider.fc .fc-pagination{
    display: none;
}
.product-container{
    flex: 1;
    margin: 0 auto;
    max-width: var(--content-width);
    display: flex;
}
.product-content{
    padding-top: 50px;
    max-width: 700px;
}
.product-content .product-header{
    border-bottom: 3px solid var(--primary);
    padding: 8px;
}
.product-content .product-desc{
    font-size: 18px;
}
.product-content .download-app{
    display: inline-block;
    padding-right: 12px;
    height: 50px;
}
/*Contact form*/
.contact-section{
    background: #6a6b6c;
}
.contact-container{
    flex: 1;
    margin: 0 auto;
    max-width: var(--content-width);
    padding: 60px 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
.contact-container>.contact-desc{
    max-width: 300px;
}
.contact-container>.contact-desc>.contact-title{
    border-bottom: 3px solid var(--primary);
    padding: 8px;
}
.contact-container .contact-form input,
.contact-container .contact-form textarea{
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 20px;
    outline-width: 0;
    border-radius: 0px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
    line-height: 28px;
    padding: 10px;
    box-sizing: border-box;
}
.contact-container .contact-form textarea{
    height: 100px;
}
.contact-container .contact-submit{
    background: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 30px;
    color: #fff;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    padding: 10px;
}
.contact-container .contact-submit:hover{
    background: #fff;
    border: 1px solid #fff;
    color: var(--primary);
}
.contact-container .contact-submit:disabled{
    color: #161616;    
    background: none;
    border: 2px solid #ccc;
    opacity: 0.5;
}
.toast-notification .message{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 100%;
    padding: 0 15px;
    color: #fff;
    font-weight: 200;
    line-height: 64px;
    font-size: 2rem;
    width: 100%;
}
.toast-notification .message.success{
    background: #367C22;
}
.toast-notification .message.error{
    background: #ED3324;
}
/* Footer */
.footer-section{
    background-color: #212121;
    color: #797979;
}
.footer-section>.copyright-txt{
    margin: 0;
    padding: 16px;
    text-align: center;
}