/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Encode+Sans:400,500,600,700,800&display=swap&subset=latin-ext');

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Encode Sans', Arial;
    color: #656c77;
    /*font-size: 16px;
    font-weight: 500;*/
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    background-color: #fff;
}

h1, h2, h3, h4, h5{
    color: #ED1C24;
    font-weight: 600;
}

h1{
    font-size: 42px;
}  

/** header ********************************************************************/

.header {
    padding: 0 15px;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    min-height: 100px;
    padding: 15px 15px 0 15px
}

.info-box{
    padding: 20px 0;
    position: relative;
    float: right;
}

.logo-slogan{
    font-style: italic;   
}

.info-box .icon{
    font-size: 30px;
    color: #999;
    position: absolute;
    top: 20px;
    left: -35px;
}

.info-box .title{
    color: #ED1C24; /*crvena*/
    font-size: 14px;
    margin-bottom: 4px;
}

.info-box .description{
    color: #0A1F54;
    font-weight: 700;
}



.navigation ul{
    padding-left: 0;
}

.navigation li{
    display: inline-block;
}

.navigation li .menu{
    display: inline-block;
    text-transform: uppercase;
    color: #0A1F54;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 20px;
    margin-right: 5px;
    border: 2px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}

.navigation li .menu:hover{
    border: 2px solid #ED1C24;
    border-radius: 50px;
    color: #ED1C24;
}

.navigation li .menu-active{
    display: inline-block;
    text-transform: uppercase;
    color: #ED1C24;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 20px;
    margin-right: 5px;
    border: 2px solid #ED1C24;
    border-radius: 50px;
    cursor: pointer;
}

.download{
    background-color: #ED1C24;
    color: #fff !important;
    text-transform: capitalize !important;
    float: right;
    border-radius: 50px;
    border: 2px solid #ED1C24 !important;
    padding: 15px 30px !important;
}

/* mobile menu */
.header-menu-mobile {
    display: none;
}

.menu-tab {
    width: 90px;
    height: 70px;
    position: absolute; /*fixed;*/
    z-index: 100;
    top: 15px;
    left: 0px;
    cursor: pointer;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    /*end of div*/
}
.menu-tab div {
    width: 30px;
    height: 3px;
    background-color: #0F1F46;
    display: block;
    margin: 6px 28px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.menu-tab div:nth-child(1) {
    margin-top: 20px;
}

.menu-tab.active {
    left: 250px;
    -webkit-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
    /*background-color: #333 /*rgba(255, 255, 255, 0.2);*/
}
.menu-tab.active #one {
    -webkit-transform: translateY(9px) rotate(-135deg);
          transform: translateY(9px) rotate(-135deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #0F1F46;
}
.menu-tab.active #two {
    opacity: 0;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}
.menu-tab.active #three {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #0F1F46;
}

.menu-hide {
    width: 260px;
    left: -260px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    top: 0px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    padding-top: 30px;
    /*end of nav*/
}
.menu-hide nav {
    /*end of ul*/
}
.menu-hide nav ul {
    /*end of li*/
    margin-left: -20px;
}
.menu-hide nav ul li {
    /*height: 40px;*/
    list-style-type: none;
    text-align: left;
    line-height: 25px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    padding: 0;
    margin: 0;
    display: block;
}
.menu-hide nav ul li:hover {
    background-color: #0F1F46;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    border-radius: 0;
}
.menu-hide nav ul li a {
    padding: 10px 30px;
    text-decoration: none;
    color: #f1f1f1;
    font-size: 14px;
    font-family: "encode sans", Arial; 
    text-transform: uppercase;
    display: block;
}

.menu-hide nav ul li a:link {
    color: #fff !important;
    border-bottom: 1px solid #0F1F46;
}

.menu-hide.show {
    left: 0px;
    background-color: #11224D;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.mobil-contact-box{
    padding-left: 10px;
    padding-right: 0;
    color: #fff;
    margin-right: 0px;
    background-color: #0F1F46;
}

.mobil-contact{
    padding: 10px 0;
    font-size: 12px;
    line-height: 20px;
} 

.icon-mobil{
    padding-right: 10px;
}



/* end mobile menu ************************************************************/


  
 /*--navigation fixed***********************************************************/
 .navig{
     padding: 0;
 }
 
 .navig-inner{
     max-width: 1200px;
     margin: 0 auto;
 }
 
 .navig a{
     color: #0A1F54;
 }
 
 .navig a:hover{
     color: #ED1C24;
     text-decoration: none;
 }

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  border-bottom: 3px solid #BFBFBF;
  padding-top: 20px;
  /*padding: 0; */
}

.sticky + .content {
  /*padding-top: 102px;  */
}

/*--end navigation fixed***********************************************************/


/* slider main  ***************************************************************/  

.slider-main-box{
    position: relative;
}

.slider-main-box:hover .arrow-left, .slider-main-box:hover .arrow-right{
    visibility: visible;
    opacity: 1;
}

.slider-main {
    height: 100% !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.slider-main .item {
    /*height: 60%;/*710px;*/
    height: 710px;
    background-color: #333;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider-main .item .text-box {
    margin: 0 auto;
    width: 100%; 
    max-width: 1200px; 
    padding: 0 80px;
    position: relative;
    height: 100%;
    display: table;
}

.slider-main .item .text-box-inner { 
    display: table-cell;
    vertical-align: middle;
}

.slider-main .item .text-box-content { 
    max-width: 500px; 
    background-color: rgba(0,0,0, 0.6);
    border-left: 10px solid #FDBC11;
    padding: 30px;
    float: left;
}

.slider-main-date { 
    font-size: 13px;
    color: #FDBC11;
}

.slider-main-title { 
    font-size: 30px;
    line-height: 32px;
    color: #FFFFFF;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
}

.slider-main-description{ 
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: 300;
}

.slider-main-btn {
    background-color: #FDBC11;
    color: #333;
    font-size: 16px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 10px 20px; 
    border: 1px solid #FDBC11;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
}

.slider-main-btn:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.slider-main-box .arrow-left{
    position: absolute;
    top: 175px;
    left: 30px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;  
}
.slider-main-box .arrow-left img{
    max-height: 50px;
    cursor: pointer;
}

.slider-main-box .arrow-right{
    position: absolute;
    top: 175px;
    right: 30px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
}
.slider-main-box .arrow-right img{
    max-height: 50px;
    cursor: pointer;  
}

.slide1 .slider-content-box{
    max-width: 50%;
    position: absolute;
    top: 35%;
    left: 20%;
} 

.slide1 .slider-item-title{
    color: #fff;
    font-size: 3vw;
    font-weight: 800;
    line-height: 3vw;
    text-transform: uppercase;  
    margin-bottom: 10px;
}

.slide1 .slider-item-text{
    color: #FFD635;
    font-size: 3vw;
    font-weight: 800;
    line-height: 3vw;
    text-transform: uppercase;  
    margin-bottom: 10px;
}

.slide1 .slider-item-description{
    color: #fff;
    font-size: 2vw;
    font-weight: 100;
    margin-bottom: 20px; 
    line-height: 2vw;  
}

.slide1 .slider-more-info{
    background-color: #fff;
    color: #000;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    transition: 0.4s;
}

.slide1 .slider-more-info:hover{
    background-color: #0A1F54;
    color: #fff;  
}

.item-image{   
    width: 50%;
    float: right; 
    background-size: cover; 
    background-repeat: no-repeat;
    height: 100%;
}

.slider-img{ 
    width: 100%;
}

.slider-content-box{
    max-width: 50%;
    position: absolute;
    top: 25%;
    left: 20%;
}

.slide2 .slider-item-title{
    font-size: 6vw;
    text-transform: uppercase;
    color: #40a751;
    font-weight: 800;
    text-shadow: 2px 2px #fff;
    line-height: 8vw; 
}

.slide2 .slider-item-text{
    font-weight: 700;
    font-size: 2vw;
    color: #fff;
    text-transform: uppercase;
}

.slide2 .slider-small-img-container{
    width: 20%;
    display: inline-block;
    margin-right: 20px;
    margin-top: 20px;
}

.slide3 .slider-small-img-container{
    width: 10%;
    display: inline-block;
    margin-right: 20px;
    margin-top: 20px;
}

.slide3 .slider-item-title{
    color: #FF1016;
    font-size: 5vw;
    font-weight: 800;
    line-height: 6vw;
    margin-bottom: 20px;
    text-shadow: 2px 2px #fff;
    text-transform: uppercase;
}

.slide3 .slider-item-text{
    background-color: #FF1016;
    opacity: 0.8;
    padding: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 2vw;
    font-weight: 700; 
 }

/** end slider home ***********************************************************/


/* slider bottom small*********************************************************/
 
 
.slider-bottom-img{
    width: 100%;
}  
 
/* end slider bottom small ****************************************************/

/** content *******************************************************************/

.content{
    background-color: #efefef;
    color: #656c77;
}

.content-white{
    background-color: #fff;
    color: #656c77;
}

.content-inner{
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.home-page-text{
    text-align: center;
    padding: 120px 0;
}

.home-page-text h1{
    text-transform: uppercase;
}

.page-text{
    font-size: 14px;
    line-height: 28px;
}

.owl-nav, .owl-dots{
    display: none !important;
}

.manage-title-page-background{
    background-color: #efefef;
    padding: 60px 0;
    margin-bottom: 80px;
}
 
.manage-title-page-background h1{
    color: #0a1f54;
}
 
.manage-content-image{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 40%;
    border-radius: 30px;
}
 
.sistem-application-image{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 30%;
    border-radius: 30px
}
 
 .system-application-view-text{
     margin: 60px 0;
 }
 
 .manage-content-title h2{
     color:  #0a1f54;
     margin: 40px 0;
 }
 
 .manage-content-more{
     background-color: #d81d20;
     padding: 20px 30px;
     border-radius: 50px;
     color: #fff;
     display: inline-block;
     font-size: 16px;
     margin: 40px 0;
 }
 
 .manage-content-box hr{
     margin: 40px 0 80px 0;
 }
 
 .sidebar{
     background-color: #efefef;
     padding: 20px;
     border-radius: 30px;
 }
 
 .sidebar-content{ 
     padding: 40px;
 }
 
 .sidebar-box-system{  
     font-weight: 600;
 }
 
 .aplay-system{
     margin-bottom: 80px;
 }
 
 .sidebar-box-system ul{
     padding-left: 15px;
     margin-bottom: 0;
 }
 
 .sidebar-box-system li{
     padding: 10px 0px;
     font-size: 14px;
     font-weight: 500;
 }
 
 .sidebar-system-name{
     color:  #0a1f54;
     text-transform: uppercase;
 }
 
 .sidebar-box-system a{
     color: #0a1f54;
     
 }
 
 .sidebar-box-system a:hover{
     color: #ED1C24;
     text-decoration: none;
 }
 
 .map-box{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 40px;
 }
 
 .contact-box h1{
    color: #0a1f54;
}

.contact-data-box{
    padding: 10px 0;
}

.contact-data-box-title{
    color: #FF1016;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
}

.contact-data-box .phone1{
    margin-bottom: 10px;
    line-height: 26px;
}

.contact-form-background{
    background-color: #EFEFEF;
    padding: 80px 0;
    margin-top: 80px;
}

.contact-form-title h1{
    color: #424242;    
}

.contact-help-block{
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    background-color: #ED1C24;
    padding: 1px 4px;
    margin: 5px 0 0 15px;
    border-radius: 5px;
}

.contact-form-message{
    background-color: #ED1C24; 
    color: #fff; 
    padding:15px !important; 
    margin-bottom: 15px;
    font-size: 14px;
    border-radius: 20px;
}

.contact-form-message p{
    margin-bottom: 0px;
} 

.form{
    max-width: 800px;
    margin: 10px auto; 
}

.form input{
    background-color: #fff;
    border: none;
    border-radius: 20px;
    padding: 30px 20px; 
    /*margin: 20px 0;*/
}

.form textarea{
    background-color: #fff;
    border: none;
    border-radius: 20px;
    padding: 30px 20px;
}

.form button{
    background-color: #ED1C24;
    color: #fff;
    margin: 20px auto; 
    border-radius: 30px;
    padding: 10px 20px;
    position: absolute; 
    left: 0; 
    right: 0;
}


/** end content ***************************************************************/


/** footer ********************************************************************/

.footer{
    background-color: #333333;
    padding-top: 100px;
    padding-bottom: 40px;
}

.footer-inner{
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.footer .logo{
    width: 100%;
}

.footer .logo-slogan{
    color: #9daab0;
}

.footer .page-text{
    color: #9daab0;
}

.footer ul{
    padding-left: 15px;
}

.footer li{
    padding: 10px 0;
    color: #fff;
}

.footer a:link{
    color: #fff;
    text-decoration: none;
}

.footer a:visited{
    color: #fff;
    text-decoration: none;
}

.footer a:hover{
    color: #ED1C24;
    text-decoration: none;
}

.footer a:active{
    color: #ED1C24;
    text-decoration: none;
}



.footer-section-name{
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-img{
    padding-right: 10px;
    margin-top: 30px;
}

.footer-section-contact{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.footer .red-attention a{
    color: #ED1C24;   
}

.footer .red-attention a:hover{
    color: #fff;   
}

.footer .red-attention{
    color: #ED1C24;
    font-size: 16px;
}

.footer hr{
    border-top: 1px solid #9daab0;
    margin: 100px 0 40px 0; 
}

.footer .signature{
    font-size: 12px;
    color: #fff;
}  

.itappsoft a{
    color: #ED1C24 !important;
}




/** end footer ****************************************************************/

/** max 1920  *****************************************************************/
@media screen and (max-width: 1920px){
    
}

/** max 1600  *****************************************************************/
@media screen and (max-width: 1600px){
    
}

/** max 1200  *****************************************************************/
@media screen and (max-width: 1200px){  
    
}

/** max 1040  *****************************************************************/
@media screen and (max-width: 1040px){  

}

/** max 992 *******************************************************************/
@media screen and (max-width: 992px){
   
    .header-menu-mobile {
        display: block;
    }
    
    .logo-box{
        text-align: center !important;
    }  
    
    .navigation li{
        border: none;
        
    }
    
    .navigation li:hover{
        border: none;
        
    }
    
    .manage-title-page-background h1{ 
        text-align: center; 
    }
    
    .sistem-application-image{
        border-radius: 15px;
    }
    
    .map-box{
        border-radius: 15px;
    }
}

/** max 768 *******************************************************************/
@media screen and (max-width: 767px){
    
    .header img{
        width: 60%;
    } 
    
    .footer .logo {
        width: 70%;
    } 
    
    .footer-smarthome{
        text-align: center;
    } 
    .signature{
        text-align: center;
    }
    
    .footer-img{
        margin-bottom: 40px;
    }
    
    .home-page-text {
        padding: 60px 0;
    }
    .footer-section-contact-box{
        padding-left: 80px;
    }
    
    .aplay-system{
        margin-bottom: 0;
    }
    
    .form input{  
        border-radius: 20px; 
        margin: 10px 0 0 0;
    }
    
    .form textarea{ 
        margin-top: 10px;
    }
 
}

/** max 660 *******************************************************************/
@media screen and (max-width: 660px){
    .form input {   
       border-radius: 10px;
       padding: 15px 20px;
   }
   
   .form textarea {  
       border-radius: 10px;
       padding: 15px 20px;
   }   
}

/** max 576 *******************************************************************/
@media screen and (max-width: 576px){
    
    .footer-section-contact-box{
        padding-left: 30px;
    }
    
    .slider-content-inner{
        padding: 60px 60px;
        
    }
    
    .slider-item-title{
        font-size: 7vw; 
        line-height: 8vw; 
    }

    .slider-item-text{ 
        font-size: 3vw;
    }
    
    .slide3 .slider-small-img-container{ 
        margin-top: 10px;
    }

    .slide3 .slider-item-title{ 
        font-size: 6vw;  
        line-height: 4vw;
        margin-bottom: 10px;
    }

    .slide3 .slider-item-text{ 
        padding: 5px;
        margin-bottom: 5px;  
        font-size: 2vw;    
    }
    
}

/** max 500 *******************************************************************/
@media screen and (max-width: 500px){   
    
}

/** max 420 *******************************************************************/
@media screen and (max-width: 420px){ 
   
   .home-page-text{
        padding: 60px 0;
   }
    
   .slide2 .slider-small-img-container{ 
        margin-right: 10px;
        margin-top: 10px;
   }

   .slide3 .slider-item-text{ 
       margin-bottom: 2px;    
   }
   
   .slide1 .slider-item-text{
        color: #FFD635;
        font-size: 3vw;
        font-weight: 800;
        line-height: 1vw;
        text-transform: uppercase;  
        margin-bottom: 10px;
   }

   .slide1 .slider-item-description{ 
       font-size: 2vw; 
       margin-bottom: 10px; 
       line-height: 1vw;  
   }

   .slide1 .slider-more-info{ 
        font-size: 8px;
        padding: 5px 10px;
   } 
}  
