
@import url("style-header.css");
@import url("style-slider.css");
@import url("style-about.css");
@import url("style-comm.css");
@import url("style-software.css");
@import url("style-product.css");

* {

    box-sizing: border-box;
}




:root{

    --pageBg: white;


    /* --containerBorder:2px blue solid;
   --headerBorder:2px black dashed;
    --contentBorder: 2px green dotted; 
    --footerBorder:2px red dashed; */
    
  
}

.--elementStyle {
    box-shadow:0px 0px 10px 2px gray;
}


body {
    background-color: var(--pageBg);
    font-family: Calibri;
    margin: 0;
}

.container{

  
    position: relative;
    border: var(--containerBorder) ;
    background-color: inherit;
    width: 99vw;
    overflow: hidden;
   

}

.header {

     border: var(--headerBorder);
    
 }

.content {

    border:var(--contentBorder);
    margin-top:1rem;
    min-height: 70vh;
    
}


.sticky-comm {
  display: flex;
  position: fixed;
  bottom: 0px;
  
}

.sticky-comm__image-style {
    width:3rem;
    
}

.sticky-comm__text {
    display: none;
    background-color:rgba(128, 128, 128, 0.5);
    font-size: 1rem;
    font-weight: 800;
    width: 4rem;;
    
}

.sticky-comm:hover > .sticky-comm__text{
    display: block;
}


.footer {

    margin-top: 1rem;
    background-color: var(--menuBarBg) ;   
    height: 100px;
}

.footer-copyright{
    display: flex;
    /* border: 1px orange dashed; */
    height: 100%;
}


.footer-copyright-inner {
    /* position: relative; */
    display: block;
    /* background-color: black; */
    color:gray;
    margin-top:auto;
    margin-bottom:auto;
    margin-left: 70%;
}

