/* --- teledo data ---{

    
    home: 
        limegreen: rgb(50,205,50);
        lime: rgb(0,255,0);
    gradient:

        background: linear-gradient(90deg, rgba(0,255,0,0.5) 0%, rgba(50,205,50,1) 50%, rgba(0,255,0,0.5) 100%);
    company:
        darksletegrey:
        lightgrey:
    gradient:
        background: rgb(211,211,211);
        background: linear-gradient(90deg, rgba(211,211,211,0.5) 0%, rgba(47,79,79,1) 50%, rgba(211,211,211,.5) 100%);

        

}!-- teledo data ---*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,800&display=swap');

*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;    
}
html{
     scroll-behavior: smooth;
}
body{
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;     
}
header{
    position: absolute;
    width: 100%;
    z-index: 1;
    cursor: default;
    height: 0px;
 

}
h1, h2, h3, h4{   

}
.container-fluid{
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x:hidden;
}
.hidden{
    overflow: hidden;
}
.row {
    margin: 0;
}

/* --- banner-add --- */
.banner-add{
    display: block;
    height: 200px;
    width: 100%;
    transform: translateY(-125px);
    background-color: rgba(0,0,0,.05);
    transition: 1s;
    display: none;

}
.banner-add:hover{
    transform: translateY(0);
    background-color: rgba(0,0,0,.8);
}
.banner-add:hover p {
    color: white;
    line-height: 200px;
    font-size: 2rem;
    transform: translateY(-30px);
}
.banner-add.disabled{
    transform: translateY(-125px);
    background-color: rgba(0,0,0,.05);
}
.banner-add p{
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 15px;
    transform: translateY(135px);
    line-height: 1rem;
    font-size: 1rem;
    color:  rgba(70,70,70,1);
    transition: 1s;

}
.banner-add .off{
    position: absolute;
    text-align: center;
    color: white;
    font-size: 1rem;
    margin: 10px 0;
    width: 100%;
}
/* !-- banner-add --- */

/* --- nav --- */
.navbar{
    position:absolute;
    width: 100%;
    top: 0;
    height: 70px;
    background: rgba(255,255,255,.1);
    background: linear-gradient(90deg, rgba(255,255,255,0) 50%, rgba(0,0,0,.2) 98%, rgba(0,0,0,.05) 100%);
    z-index: 2;
    padding: 5px 10px;

   
   /*   background-color: rgba(0,0,0,.00) !important;
        border-top: 1px solid rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(0,0,0,.2);
    box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.1) !important;*/
   /*  z-index: 999;*/
    
}
.navbar::after{
    content: "";
    position: absolute;
    height: 70px;
    width: 45%;
    right: 0;
    box-shadow: 10px 4px 10px 4px rgba(255,255,255,0.2);
    z-index: -1;
}
.navbar-brand{
    margin-left: 11vw;
    width: 200px;
    height: auto;

}
.navbar-brand.absolute{
    position: absolute;
    top: -15px;
}
.navbar-brand img{
    width: 90%;
    height: auto;
    transition: .2s;
    
}
.navbar-brand img:hover{
    border-bottom: 1px solid white;
}

.nav-item{
    min-width: 7vw;
    transition: .5s;
}
.nav-item:hover {
    
/* background-color: #E9E9E9;
    border-bottom: 1px solid white; /
}
.nav-item:after{
  /*  content: "";
    display: block;
    height: 1px;
    width: auto;
    background-color: red;
    margin: 0 15px;
    transition 1s;
    opacity: 0;*/
}
.nav-link{
    font-size: 1.2rem;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    height: 100%;
    line-height: 2rem;
    color: rgba(70,70,70,1!important);
    transition: .1s;
 
}
.nav-link:hover{
    color: black !important;
    text-shadow: 2px 2px 6px white;

}
.nav-link.red{
    color: red !important;   
}
.dropdown-menu{
    background-color: rgba(255,255,255,.8);
    min-width: 12rem;
    padding: .5rem 0px;
    top: 85%;
    border: 1px solid #adb5bd;
}
.dropdown-item{
    padding: .6rem 2rem;
}
.dropdown-item.disabled{
    color: black;
    font-weight: bold;
}
.dropdown-menu.inline{
   left: -75px;
   padding: 0;
    min-width: 400px;
    position: relative;
}
.dropdown-menu.inline .dropdown-item{
    position: relative;
    display: inline-block;
    width: 49%;
    text-align: center;
    line-height: 2rem;
    z-index: 2;
}
.dropdown-menu.inline .dropdown-item.home::after,
.dropdown-menu.inline .dropdown-item.company::after{
    content: "";
    position: absolute;
    display: block;
    width: 90%;
    height: 2px;
    bottom: 5px;
    left: 5px;
    opacity: 0;
    transition: opacity .2s ease-in;
}
.dropdown-menu.inline .dropdown-item.home::after{
    background: rgb(0,255,0);
    background: linear-gradient(90deg, rgba(0,255,0,0.5) 0%, rgba(50,205,50,1) 50%, rgba(0,255,0,0.5) 100%);
}
.dropdown-menu.inline .dropdown-item.company::after{
    background: rgb(211,211,211);
    background: linear-gradient(90deg, rgba(211,211,211,0.5) 0%, rgba(47,79,79,1) 50%, rgba(211,211,211,.5) 100%);
}
.dropdown-item .fas.fa-home,
.dropdown-item .fas.fa-city{
    margin: 0 5px 0 0;
    color: rgb(105, 105, 105);
    transition: .2s;
}
.home .fas.fa-home:hover{
    color:limegreen;
    transform: scale(1.1);
}
.company .fas.fa-city:hover{
    color:darkslategrey;
    transform: scale(1.1);
}
.dropdown-menu.inline .dropdown-item.home:hover::after,
.dropdown-menu.inline .dropdown-item.company:hover::after {
    opacity: 1;
}
.dropdown-menu.inline{
    position: relative;
}
#home-systems{
    opacity: 0;
    display: none;
   
}
.dropdown-home{
    position: absolute;
    z-index: 0;
    top: 52px;
    left: 1px;
    padding-top: 5px;
    background-color: rgba(255,255,255,.8);

}
.dropdown-home .dropdown-item{
    display: block;
    min-width: 100%;
    text-align: start !important;
    
}
.dropdown-item.home:hover~#home-systems,
.dropdown-item.home:hover~#home-systems.dropdown-home:hover{
    display: block;
    opacity: 1;
    
}
#home-systems:hover{
    opacity: 1;
    display: block;
}

.dropdown-home .dropdown-item::after{
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    bottom: 2px;
    opacity: 0;
    transition: opacity .2s ease-in;
    background: rgb(0,255,0);
    background: linear-gradient(90deg, rgba(0,255,0,0.5) 0%, rgba(50,205,50,1) 50%, rgba(0,255,0,0.5) 100%);
    
}
.dropdown-home .dropdown-item:hover::after{
    opacity: 1;
}
.topButtons{
    text-align: center;
    height: 100%;
    margin: 0;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.fa-facebook-f,
.fa-instagram,
.fa-whatsapp,
.fa-envelope{
    font-size: 1.8rem;
    color: rgba(70,70,70,1);
}
.s, .fb, .insta, .w, .e{
    margin:  10px 2px;
    padding: 10px 0;
    height: 50px;
    width: 50px; 
    border-radius: 10px;
    transition: .3s;
 
}
.fb:hover{
    background-color: #4668b3;
    text-shadow: 2px 2px 6px white;
    
}
.insta:hover{
    background-color: purple;
    text-shadow: 2px 2px 6px white;
    
}
.w:hover{
    background-color: rgba(74,201,89,1);
    text-shadow: 2px 2px 6px white;
}
.e:hover{
    background-color: #616161;
    text-shadow: 2px 2px 6px white;
}

/* --- mobile --- */
.navbar-toggler{
    margin-left: 2vw;
    font-size: 1.2rem;
}
.collapse{
    height: 100%;
    justify-content: flex-end;
}
/* !-- mobile --- */
/* !-- nav --- */

/* --- content --- */
.main-content{
    height: 100vh;
    background-color: none;
    position: relative;
    overflow: hidden;
   
}
.main-img{
    width: 100%;
    position: absolute;
    z-index: 0;
    

}
.main-img img{
    position: absolute;
    left: 50px;
    top: -50px;
    width: 100%;
    transform: scale(1.35);
    transition: 1s;

}

.hex-container{
    top: 200px;
    left: 9vw;
    position: absolute;
    background-color: rgba(255,255,255,.0);
}
.hex-content{
    margin: 0 0 -40px 0;
    height: 150px;
    background-color: rgba(0,0,0,.00);
    display: flex;
    align-items: center;

}
.hex{
    position: relative;
    display: flex;
    height: 100%;
    width: 150px;
    background-color: rgba(0,0,0,.0);
    align-items: center;
    overflow: hidden;
}
.hex img{
    width: 75%;
    margin: auto;
    transition: .2s linear;
}
.hex .icon{
    position: absolute;
    width: 75px;
    height: 75px;
    left: 40px;

}
.hex .cctva{
    position: absolute;
    width: 500px;
    left: -40px;
    transform: scale(0.7);
}
.hex:hover img{
    transform: scale(1.2);
    cursor: grab;
}
.hex-description{
    align-content: center;
    align-items: center;
    padding: 5px;
    height: 50%;
    width: 65%;
    background-color: rgba(255,255,255,.6);
    font-size: .8rem;
    
    display: none;
}
.hex-description.down{
    opacity: 0;
    z-index: -1;
    transition: 1s;
}
#hex-3:hover~.hex-description.down{
    opacity: 1;
}
@media (max-width: 900px){
    .main-img img{
    transform: scale(2.2);
    }
}
#cctv{
    opacity: 1;
}
.hex-description h1{
    font-weight:bold;
    font-size: 1.4em;
    letter-spacing: 2px;
}
.hex-description p{
    color: darkslategrey;
}
.right{
    margin: -150px 0 0 130px;
}
.left{
    margin: -150px 0 -40px -70px;
    transition 1s;
}
.center{
    margin: -40px 0px 0px 65px;
}
.left-down{
    margin: -40px 0 0px 0px;
}
.hex-content.right-down {
    margin: -150px 0 0 130px;
}

.content-description {
    position: absolute;
    left: 29%;
    top: 200px;
    min-height: 400px;
    width: 22vw;
    padding: 5px;
    /* background-color: rgba(0,0,0,.02);
   border: 0.5px solid lightgrey; */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    transition: .5s;

}
.description-item{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.4);
    color: black;
    text-align: center;
    box-shadow: 2px 2px 4px 0px rgba(0,100,0,.4);
    transition: .8s;

}
.description-item a{
    text-decoration: none;
    color: rgb(62, 62, 62);
    transition: .2s;
    display: block;
}
.description-item a:hover{
    text-decoration: none;
    color: black;
    transform: scale(1.05);
}
.description-item h1{
    font-size: 1.6rem;
    color: black;
    text-align: center;
    line-height: 2rem;
    margin: 2rem 0 1rem 0;
    letter-spacing: .5rem;
    text-transform: uppercase;

}
.description-item h1.small{
    letter-spacing: 0rem;
        font-size: 1.5rem;
}
.description-item p{
    font-size: 1rem;
    color: black;
    text-align: justify;
    line-height: 2rem;
    letter-spacing: .8px;
    padding: 10px;

}
.description-item p a{
    color: limegreen;
    display: inline;
    float: right;
    letter-spacing: .6px;
   

}

p.welcome{
    text-align: center;
    font-weight: 100;
    padding: 20px ;
    margin: 0;
    font-size: 3rem;
    color: black;
    color: darkslategray;
}
p.official{
     text-align: center;
    font-size: .9rem;
    letter-spacing: 0;
    padding: 15px 0;
    margin: 0;
    color: #3c3c3c;
}
a.teledo{
    font-weight: 300;
    font-size: 5rem;
    letter-spacing: .1rem;
    padding: 40px 5px;
    color: black;
    text-shadow: 2px 2px 5px #3c3c3c;

}
p.tip{
    text-align: center;
    font-size: .8rem;
    letter-spacing: -1px;
    padding: 25px 0 0 0 ;
    margin: 0;
    cursor: default;
    position: relative;
    text-decoration: underline;
    
}
#cursor{
    position: absolute;
    left: -10px;
    top:0;
    color: black;
    font-size: 1.5rem;
    animation: move 2s 5s; 
}
#cursor{
    opacity: 0;
    transform: translate(10px, 40px);
    transition: transform 1.2s ease;
}
@keyframes move{
    from{}
    to{    
        opacity: 1;
        transform: translate(-140px, -188px);
    }
}
p.tip:hover{
    color: darkgreen;
}
p.tip:hover #cursor{
    transform: translate(-140px, -188px);
    opacity: 1;

}

#start{
    opacity: 1;
    animation: apper 3s ease;

}
#cctv,
#security,
#smarthome,
#dom,
#lan{
    opacity: 0;
}
@keyframes apper{
    from {opacity: 0;}
    to {opacity: 1;}
}
.quick-contact{
    position: absolute;
    bottom: 2%;
    right: 4%;
    width: 400px;
    border: 2px solid rgba(255,255,255,.45);
    border-radius: 25px;
    border-bottom: none;
    border-right: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: .07rem;
    font-weight: 500;
    cursor: default;
    animation: apper 7s ease-in;
    
    

}

.quick-contact .item{
    width: 100%;
    color: rgba(255,255,255,.8);
    margin: 20px 0 0 20px;
    
}
.quick-contact .item:hover{
    color: white;
    text-shadow: 1px 1px 1px black;
}
.quick-contact .item:last-child{
    margin: 20px 0 20px 20px;
}
.quick-contact .item i{
    color: white;
    margin: 0 15px;
    font-size: 1.2rem;
}
@keyframes apper{
    from {opacity: 0;}
    to {opacity: 1;}
}

/* --- offer --- */
.offer-container{
    width: 100%;
    display: flex;

}

.column{
    height: 50vh;
    min-height: 400px;
    width: 50%;
    overflow: hidden;
    position: relative;
}
.column.image{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    
}
.column.image:hover.column.image::before,
.column.image:hover.column.image::after{
    opacity: .7;
    transform: rotate(135deg) scaleY(1.5);
 
}
.column.image.color:hover.column.image.color::after,
.column.image.color:hover.column.image.color::before{
    opacity: .7;
    transform: rotate(45deg) scaleY(1.5);
 
}
.column.image::before,
.column.image.color::before,
.column.image::after,
.column.image.color::after{
    content: "";
    position: absolute;
    opacity: .2;
    background-color: green;
    height: 2px;
    width: 75%;
    z-index: -1;
    transition: transform 1s;
    transition: opacity 2s;
    
}
.column.image::before{
   
    top: 0%;
    left: -20%;
    transform: rotate(135deg);
}
.column.image::after{
    opacity: .1;
    bottom: 0%;
    right: -20%;
    transform: rotate(135deg);

}
.column.image.color::before{
    top: 0%;
    left: auto;
    right: -20%;
    transform: rotate(45deg);
    background-color: lime;
}
.column.image.color::after{
    bottom: 0%;
    right: auto;
    left:-20%;
    opacity: .1;
    transform: rotate(45deg);
    background-color: lime;
}
.offer-img{
    position: relative;
    width: 90%;
    height: 80%;
    overflow: hidden;
    transition: .7s;
    box-shadow: 3px 2px 5px 4px rgba(0,0,0,.5);
}
.offer-img:hover{
    transform: scale(1.05);
    filter: contrast(125%);
}
.offer-img:hover #des-1,
.offer-img:hover #des-2,
.offer-img:hover #des-3,
.offer-img:hover #des-4,
.offer-img:hover #des-5{
    transform: translateY(0px);
    
}
.offer-img img{

    
}
.offer-img .pos-1{
    left: 0;
    top: -120px;
    position: absolute;
    width: 100%;
    min-height: 100%;
}
.offer-img .pos-2{
    left: 0;
    top: -60px;
    position: absolute;
    width: 100%;
}
.offer-img .pos-3{
    left: 0;
    top: 0px;
    position: absolute;
    width: 100%;
}
.offer-img .pos-4{
    left: 0;
    top: -40px;
    position: absolute;
    width: 100%;
    transform: scale(1.2);
}
.offer-img .pos-5{
    left: 0;
    top: 0px;
    position: absolute;
    width: 100%;

}

#img-item{
    transition: 1s;
    opacity: .2;
}

.img-object{
    position: absolute;
    width: 15px;
    height: 15px;
    left: 179px;
    top: 265px;
    background-color:rgba(255,255,255,.4);
    border: 5px solid black;
    border-radius: 25px;
    box-shadow: 0px 0px 10px -1px white;
    z-index: 3;
    
    
    
}
.img-object .shadow{
    position: absolute;
    display: block;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    left:-100px;
    top: -100px;
    z-index: 2;
    box-shadow: none !important;
    overflow: hidden;
    transform:rotate3d(30deg);
    transition: 1s;
    opacity: .5;
    transform: rotateX(2deg) rotateY(0deg) skewX(-15deg) skewY(-2deg);
    
}
.img-object .shadow::after{
    content: "";
    position: absolute;
    display: block;
    height: 125px;
    width: 125px;
    left:105px;
    top:105px;
    border: 1px solid red;
    background: linear-gradient(-30deg, rgba(255,255,0,0) 0%, rgba(255,255,0,.1) 50%, rgba(255,255,0,1) 100%);
    z-index: 2;

    
}
.offer-img p{
    display: block;
    background-color:rgba(0,0,0,.4);
    height: 40px;
    width: 100%;
    text-align: center;
    color: white;
    position: absolute;
    bottom: 0px;
    transform: translateY(60px);
    transition: .6s;
    line-height: 40px;
}
.description{
    background-color: white;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.up-effect::after{
    content: "";
    position: absolute;
    left: 12px;
    top: 24px;
    height: 2px;
    width: calc(50% - 12px);
    z-index: 2;
    background: linear-gradient(90deg, rgba(50,205,50,1) 0%, rgba(0,255,0,0.1) 100%);
    transition: .6s;
    opacity: 0;
}
.up-effect::before{
    content: "";
    position: absolute;
    left: 10px;
    top: 25px;
    height: calc(50% - 25px);
    width: 2px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(50,205,50,1) 0%, rgba(0,255,0,0.1) 100%);
    transition: .6s;
     opacity: 0;

}
.down-effect::after{
    content: "";
    position: absolute;
    right: 12px;
    bottom: 24px;
    height: 2px;
    width: calc(50% - 12px);
    z-index: 2;
    background: linear-gradient(270deg, rgba(50,205,50,1) 0%, rgba(0,255,0,0.1) 100%);
    transition: .6s;
     opacity: 0;
}
.down-effect::before{
    content: "";
    position: absolute;
    right: 10px;
    bottom: 25px;
    height: calc(50% - 25px);
    width: 2px;
    z-index: 2;
    background: linear-gradient(0deg, rgba(50,205,50,1) 0%, rgba(0,255,0,0.1) 100%);
    transition: .6s;
     opacity: 0;
}
.description:hover .up-effect::after{
    transform: translateX(49.9%) scaleX(2);
    opacity: 1;
}
.description:hover .up-effect::before{
    transform: translateY(49.9%) scaleY(2);
    opacity: 1;
}
.description:hover .down-effect::after{
    transform: translateX(-49.9%) scaleX(2);
    opacity: 1;
}
.description:hover .down-effect::before{
    transform: translateY(-49.9%) scaleY(2);
    opacity: 1;
}
.column.description h1{
    display: inline;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.8rem;
    letter-spacing: .2rem;
    margin: 50px 0 0 0;
    cursor:pointer;
    transition: .1s;
    line-height: 3rem;
    
}
.column.description h1:hover{

    text-shadow: 1px 1px 1px darkgreen;
    
}
.column.description .sub{
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    color: grey;
    letter-spacing: 4px;
    padding: 0px 0 0 0;
    margin: 0;
    line-height: 3rem;
    cursor:default;
}
.column.description .text{
    font-size: 1.1rem;
    text-align:justify;
    color: darkslategrey;
    padding: 25px 10px;
    line-height: 1.9rem;
    margin: 0;
    width: 100%;
    text-indent: 2.5rem;
    cursor:default;
}
.text .more{
    position: absolute;
    bottom: 30px;
    right: 20px;
    font-size: 1rem;
    color: grey;
}
.text .more.left{
    left: 60px;
    bottom: 60px;
}
.text .more:hover{
    transform: scale(1.01);
    color: black;
}
.color{
    background-color:rgba(0,0,0,.1);
}

/* !-- offer --- */
/* !-- content --- */


/* --- about --- */
#about{
    padding: 0 0 50px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-image: url(/content/img/climpek.png);
    background-color: rgba(0,0,0,0.05);
    cursor: default;
        box-shadow: 0px -2px 10px -4px black;
   
    /*
background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(211,211,211,0.5) 55%, rgba(0,0,0,1) 100%);
 */   
    
}
#about .bg{
     /*
    position: absolute;
    opacity: 1;
    height: auto;
    width: 100%; 
    */  
}
.header-about,
.content-about{
    position: relative;
    width: 1200px;
    margin: 25px auto 0;
}
.content-about{
    margin: 0 auto;
}

.header-about h1{
    text-align: center;
    font-weight: 200;
    font-size: 6rem;
    line-height: 10rem;
    text-transform: uppercase;
    letter-spacing: .9rem;
    transition: text-shadow .4s;
}
.header-about h1:hover{
     text-shadow: 1px 1px 2px darkgreen;
}
.header-about p{
    padding: 25px 100px 0 100px;
    text-align: justify;
    font-style: italic;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity .5s;
}
.header-about p:hover{
    opacity: 1;
}
.content-about span{
    text-align: center;
    display: block;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: .6rem;
    margin: 25px 0 0 0;
}
.content-about .items{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.items .element{
    width: 250px;
    margin: 5px;
}
.icon-element{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 4px -2px black;
    transition: background-color ease-in 1s;
}
.icon-element:hover{
    background-color: rgba(255,255,255,.6);
}
.icon-element i{
    font-size: 4rem;
    color: darkslategray;
    transition: .2s; 
}
.icon-element i:hover{
    font-size: 5rem;
    color: black;
    text-shadow: 1px 1px 4px darkgreen;
}
.desc-element{
    text-align: center;
    text-transform: uppercase;
    margin: 15px 10px;
    font-size: 1rem;
}


/* !-- about--- */
/* --- regulations --- */
.reg{
    position: absolute;
    left: 15%;
    top: 30%;
    font-size: 2rem;
}
/* --- regulations --- */
/* --- form --- */

.form{
    width: 1000px;
    margin: 0px auto;
    padding: 20px 0;
    transition: 1s;
    
    
}
.form-bg{
     background-color:rgba(15,15,15,.03);
}
/* !-- form --- */
.btn-primary{
    background-color: #c1c1c1;
    margin: 0 20px;
}
/* --- footer --- */
.w-1200{
    min-width: 1400px;

}
.page-footer{
    position: relative;
    display: block;
    bottom: 0px;
    width: 100%;
    background-color: rgba(255,255,255,.5);
    border-top: 1px solid #666666;
    box-shadow: 0px -2px 2px 2px rgba(0,0,0,0.1) !important;
    transition:1s;
   /* transform: translateY(165px);
    padding-left: 200px;*/
}
.open{
    transform: translateY(0);
    padding-left:0px;
}
.absolute {
    position: absolute;
}
.page-footer:hover{
    transform: translateY(0);
    background-color: rgba(255,255,255,.9);
    padding-left:0px;
}
.page-footer a{
    color: rgba(15,15,15,1);
}
.page-footer p{
    margin-bottom:5px;
    font-size: 0.9rem;
    text-align: justify;

}
.footer-copyright{
    width: 100%;
    margin-bottom: 0px;
}
.page-footer .fa-envelope{
    font-size: 1.2rem;
    color: black !important;
}
hr.footer-line{
    margin: 5px auto 5px 0;
    width: 60%;
    height: .5px;
    border-top: 0.8px solid darkslategray;
    
}
hr.footer-line.w-80{
    width: 80%;
}
.page-footer .info{
    display: block;
    position: absolute;
    width: 50%;
    left: 25%;
    top: -12px;
    margin: 0 auto;
    letter-spacing: .4rem;
    text-align: center;
    background-color: rgba(255,255,255,0.9);
    border-radius: 10px;
    border: .5px solid darkslategrey;
    opacity: 0;
    transition: 1s;
    cursor: pointer;
}
.page-footer .info:hover{
    color: red;
    letter-spacing: .2rem;
}
.page-footer:hover .info{
    opacity: 1;
}
/* --- footer --- */


/* --- other/bootsrap --- */
.none{
    display: none !important;
}
#offer,
#form-control{
    display: inherit;
}
.break-line{
    position: relative;
    height: 1px;
    width: 90%;
    background-color: grey;
    margin: 0 auto;
}
.solid {
    height: 2px;
}
.soft {
    height: 0.5px;
}
.bg-home{
    background: linear-gradient(90deg, rgba(0,255,0,0.5) 0%, rgba(50,205,50,1) 50%, rgba(0,255,0,0.5) 100%);
}
.bg-company{
    background: linear-gradient(90deg, rgba(211,211,211,0.5) 0%, rgba(47,79,79,1) 50%, rgba(211,211,211,.5) 100%);
}
.btn-primary:hover{
    color: white !important;
    background-color: darkslategray;
    border-color: darkgreen;
}
/* !-- other/bootsrap --- */
/* --- media --- */
@media (max-width: 1440px){
    .main-img img{
        transform: scale(1.6);
        left: 100px;
        top: 25px;
    }
    .hex-container{
        top: 150px;
        left: 50px;
        position: absolute;
        background-color: rgba(255, 255, 255, 0);
        transform: scale(.9);
    }
    .column.description .text {
        padding: 5px 10px;
        line-height: 1.4rem;
        font-size: 1rem;
    }
    .content-description {
        left: 28%;
        width: 29vw;
        top: 175px;
    }
    .offer-img .pos-1{
        top:-60px;
    }
    .offer-img .pos-5{
        left: -10px;
        top: 0px;
        width: 115%;
    }
    .column.description h1{
        margin-top: 20px;
        font-size: 2.4rem;
    }

}
@media (max-width: 1366px){

}
@media (max-width: 1200px){
        .main-img img{
        transform: scale(1.6);
        left: 100px;
        top: 50px;
    }
        .hex-container{
        top: 100px;
        left: -0px;
        position: absolute;
        background-color: rgba(255, 255, 255, 0);
        transform: scale(.7);
    }
        .content-description {
        left: 28%;
        width: 33vw;

    }
    
}
@media (max-width: 1024px){
    .main-img img{
        transform: scale(1.9);
        left: 125px;
        top: 150px;
    }
    .content-description {
        left: 28%;
        width: 38vw;

    }
    .offer-img .pos-1{
        top:25px;
        transform: scale(1.2);
    }
    .offer-img .pos-2{
        top:25px;
        transform: scale(1.2);
    }
    .offer-img .pos-3{
        top:25px;
        transform: scale(1.2);
    }
    .offer-img .pos-4{
        top:30px;
        transform: scale(1.2);
    }
    .offer-img .pos-5{
        left: -20px;
        top: 50px;
        transform: scale(1.45);
    }
    .column.description h1{
        margin-top: 20px;
        font-size: 1.7rem;
    }
    .column.description .sub {
        letter-spacing: 1px;
        line-height: 1.8rem;
    }
    .column.description .text {
        padding: 5px 10px;
        line-height: 1.5rem;
        font-size: .8rem;
    }
    .text .more{
        font-size: .8rem;
    }
    .header-about,
    .content-about{
        width: 100%;
    }
    .page-footer .container{
        padding: 5px;
        margin: 10px auto;
        width: 100%;
        max-width: 100%;
    }
    .form{
        width: 100%;
    }
}
@media (max-width: 991px){
    #home-systems.dropdown-home{
        display: none;
    }
    .main-img img{
        transform: scale(2.5);
        left: -125px;
        top: 100px;
    }
    .navbar{
        padding: 0;
    }
    .navbar-brand img {
        text-align: center;
        width: 75%;
        margin-left: 2vw;
        margin-top: -3px;
    }
    .navbar-brand.absolute {
        position: static;
        max-height: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .hex-container{
        top: 85px;
        left: -20px;
        position: absolute;
        background-color: rgba(255, 255, 255, 0);
        transform: scale(.8);
    }
    .nav-link, .topButtons {
        background: rgba(255,255,255,0.95);
        color: rgba(0,0,0,1) !important;
        font-size: 1rem;
    }
    .description-item.intro {
        top: -330px;
        left: 230px;
        transform: translateX(0);
        width: 38vw;
        min-width: 300px;
        height: auto;
        min-height: 230px;
        max-height: auto;
        background-color: rgba(255, 255, 255, .8);
    }
    .dropdown-menu {
        margin: 0;
        background: white;
    }
    .dropdown-menu.inline {
        left: 0px;
    }
    .description-item.intro .welcome{
        padding: 0;
        
    }
    .description-item.intro .teledo{
        padding: 20px 0;
        font-size: 4.2rem;
        
    }
    .description-item.intro .tip{
        padding-top: 40px;

        
    }
    .content-description {
        top: auto;
        bottom: 150px;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        min-height: 250px;
        
    }
    .quick-contact{
        display: none;
    }
    .offer-container {
        flex-wrap: wrap;
    }
    .offer-container .column{
        width: 100%;
    }
    #offer-2.offer-container,
    #offer-4.offer-container{
        flex-flow: column-reverse;
    }
    .offer-img .pos-1{
        top:-50px;
        transform: scale(1.2);
    }
    .offer-img .pos-2{
        top:0px;
        transform: scale(1.2);
    }
    .offer-img .pos-3{
        top:0px;
        transform: scale(1.2);
    }
    .offer-img .pos-4{
        top:-15px;
        transform: scale(1.2);
    }
    .offer-img .pos-5{
        left: -20px;
        top: 25px;
        transform: scale(1.2);
    }
    .column.description h1{
        margin-top: 20px;
        font-size: 2rem;
    }
    .column.description .sub {
        letter-spacing: 2px;
        line-height: 2rem;
    }
    .column.description .text {
        padding: 20px 10px;
        line-height: 1.8rem;
        font-size: 1rem;
    }
    .text .more{
        font-size: .8rem;
    }
    .header-about,
    .content-about{
        width: 100%;
    }
    .page-footer .container{
        padding: 5px;
        margin: 10px auto;
        width: 100%;
        max-width: 100%;
    }
    .form .col-md-3{
        padding: 0 5px;
    }
        .form .col-md-3 ul li p{
       font-size: .0.1rem;
    }
}
@media (max-width: 900px) and (orientation: landscape){
     .container{
        padding: 0;
    }
    .main-img img {
        transform: scale(1.3);
        top: 10px;
        left: 100px;
    }
    .dropdown-menu{
        margin: 0;
        background: white;
    }
    .dropdown-menu.inline{
        position: absolute;
        left: 0px;
        width: 100vw;
    }
   
    .hex-container{
        left: -150px;
        top: 0px;
        transform: scale(.5);
        overflow: hidden;

    }
    .content-description,
    .content-description .description-item.intro{
        top: 100px;
        left: 25%;
        transform: translateX(0);
        width: 38vw;
        height: auto;
        min-height: 230px;
        max-height: auto;
    }    

    .description-item h1,
     h1.small{
        font-size: 1rem;
        line-height: 1.2rem;
        margin: 1rem 0 0.5rem 0;
        letter-spacing: 0rem;
        font-weight: 500;
    }
    .content-description .description-item.intro{
        top: 0px;
        left: 0;
        transform: translateX(0);
        max-height: 250px;
        min-height: auto;
        height: auto;
    }
    .description-item p {
        font-size: 0.9rem;
        text-align: justify;
        line-height: 0.9rem;
        letter-spacing: 0px;
    }
    .description-item.intro .welcome{
        padding: 0;
        text-align: center;
        font-size: 1.6rem;
        
    }
    .description-item.intro .official{
        padding: 10px 0 0 0;
        text-align: center;
        font-size: .8rem;
        
    }
    .description-item.intro .teledo{
        padding: 30px 0 15px 0;
        font-size: 3.5rem;
        
    }
    .quick-contact {
        width: 200px;
    }
    .quick-contact .item {
        margin: 5px 0 0 5px;
        font-size: .6rem;
    }
    .quick-contact .item:last-child {
        margin: 5px 0 5px 5px;
    }
    .quick-contact .item i {
        color: white;
        margin: 0 5px;
        font-size: .8rem;
    }
    .description-item.intro .tip{
        padding: 25px 5px 5px 5px;
        font-size: .8rem;

        
    }
    .offer-container {
        flex-wrap: wrap;
    }
    .offer-container .column{
        width: 100%;
    }
    #offer-2.offer-container,
    #offer-4.offer-container{
        flex-flow: column-reverse;
    }
    .column.description{
         height: auto;
        padding: 25px 5px;
    }
    .column.description .sub {
        letter-spacing: .4px;
        line-height: 1rem;
        padding: 10px 0;
        font-size: .9rem;
    }
    .column.image{
        height: 100vh;
        max-height: auto;
    }
    .description-item{
        background-color: rgba(255,255,255,0.6);
    }
    .description-item h1.small {
        font-size: 1.2rem;
    }
    .description-item p {
        font-size: .9rem;
        text-align: justify;
        line-height: 1.2rem;
    }

    .offer-img .pos-1{
        top: 40px;
        left: 25px;
        transform: scale(1.5);
    }
    .offer-img .pos-2{
        top:75px;
        left:-25px;
        transform: scale(1.7);
    }
    .offer-img .pos-3{
        top: 40px;
        left: -25px;
        transform: scale(1.5);
    }
    .offer-img .pos-4{
        top: 40px;
        left: 25px;
        transform: scale(1.5);
    }
    .offer-img .pos-5{
        top: 60px;
        left: 25px;
        transform: scale(1.65);
    }
    .column.description h1{
        margin-top: 0px;
        font-size: 1.4rem;
        letter-spacing: .1rem;
        line-height: 1.8rem;
    }
    .column.description .sub {
        letter-spacing: 1px;
        line-height: 1.6rem;
        padding: 10px 0;
    }
    .column.description .text {
        padding: 5px 10px;
        line-height: 1.4rem;
        font-size: .85rem;
    }
    .header-about h1{
        font-size: 12vw;
    }
    .header-about p{
        padding: 25px 50px 0 50px;
    }
    .content-about .items {
        flex-wrap: wrap;
    }
    .items .element {
        width: 175px;
    }
    .text .more{
        display: none;
    }
    .page-footer.absolute{
        position: static;
        transform: none;
        width: 100vw;
        
    }
    .w-1200{
    min-width: auto;
    }
    .page-footer .info {
    display: none;
    }
    hr.footer-line{
        width: 100%;
    }
    hr.footer-line.w-80{
        width: 100%;
    }
    .mobile{
        display: none;
    } 
}
@media (max-width: 786px){
    
}
@media (min-width: 426px){
    .dropdown-toggle:hover~.dropdown-menu,
    .dropdown-menu:hover{
    display: block;  
    }
}
@media (max-width: 425px){
    .container{
        padding: 0;
    }

    .main-img img{
        transform: scale(5);
        top: 200px;
        left: -40px;
    }
    .navbar-brand.absolute{
        position: static;
        max-height: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .navbar-brand img{
        text-align: center;
        width: 75%;
        margin-left: 2vw;
        margin-top: -3px;
    }
    .navbar {
        padding: 0;
    }
    .navbar-toggler {
        margin-left: 2vw;
        font-size: 1.2rem;
    }
    .nav-link,
    .topButtons{
        background: rgba(255,255,255,0.95);
        color: rgba(0,0,0,1) !important;
        font-size: 1rem;
    }
    .dropdown-menu{
        margin: 0;
        background: white;
    }
    .dropdown-menu.inline{
        position: absolute;
        left: 0px;
        width: 100vw;
    }
   
    .hex-container{
        left: -10px;
        top: 50px;
        transform: scale(.65);
        overflow: hidden;
    } 
    .content-description .description-item.intro {
        top: 0;
        bottom: auto;
        left: 5%;
        width: 90%;
        background-color: rgba(255,255,255,.9);
        min-height: auto;
    }
    .description-item.intro .welcome {
        padding: 0;
        font-size: 2rem;
        text-align: center;
    }
    .description-item.intro .official {
        text-align: center;
    }
    .description-item.intro .teledo {
        padding: 25px 0;
        font-size: 15vw;
    }
    .description-item.intro .tip{
        padding: 15px;
    }
    .tip:hover{
        animation: none;
    }
    /*
    .hex-content.right{
        margin: -40px 0 0 70px;
    }
    .hex-content.center{
    margin: -40px 0px 0px 5px;
    }
    .hex-content.left-down{
    margin: -40px 0 0px 70px;
    }
    .hex-content.right-down{
    margin: -40px 0 0 5px;
    }
    */
    .content-description{
        bottom: 75px;
    }
    .content-description h1{
        font-size: 1.2rem;
        margin-top: 20px;
        
    }
    .column.description{
         height: auto;
        padding: 25px 5px;
    }
    .column.image{
        max-height: 50vh;
    }
    .description-item{
        background-color: rgba(255,255,255,0.6);
    }
    .description-item h1.small {
        font-size: 1.2rem;
    }
    .description-item p {
        font-size: .9rem;
        text-align: justify;
        line-height: 1.2rem;
    }

    .offer-img .pos-1{
        top: 40px;
        left: 25px;
        transform: scale(1.5);
    }
    .offer-img .pos-2{
        top:75px;
        left:-25px;

        transform: scale(1.7);
    }
    .offer-img .pos-3{
        top: 40px;
        left: -25px;
        transform: scale(1.5);
    }
    .offer-img .pos-4{
        top: 40px;
        left: 25px;
        transform: scale(1.5);
    }
    .offer-img .pos-5{
        top: 60px;
        left: 25px;
        transform: scale(1.65);
    }
    .column.description h1{
        margin-top: 0px;
        font-size: 1.4rem;
        letter-spacing: .1rem;
        line-height: 1.8rem;
    }
    .column.description .sub {
        letter-spacing: 1px;
        line-height: 1.6rem;
        padding: 10px 0;
    }
    .column.description .text {
        padding: 5px 10px;
        line-height: 1.4rem;
        font-size: .85rem;
    }
    .header-about h1{
        font-size: 12vw;
    }
    .header-about p{
        padding: 25px 50px 0 50px;
    }
    .content-about .items {
        flex-wrap: wrap;
    }
    .items .element {
        width: 175px;
    }
    .text .more{
        display: none;
    }
    .page-footer.absolute{
        position: static;
        transform: none;
        width: 100vw;
        
    }
    .w-1200{
    min-width: auto;
    }
    .page-footer .info {
    display: none;
    }
    hr.footer-line{
        width: 100%;
    }
    hr.footer-line.w-80{
        width: 100%;
    }
    .mobile{
        display: none;
    }
    .content-about .items {
        transform: scale(0.8);
    }
       
    
}



/* !-- media --- */