body{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #ccc;
    padding: 0;
    margin: 0;
    border: 0;
    background-color:rgb(133, 133, 133);
    background-image: url(../media/vt2_bg_trim.jpg);
    background-position:top;
    background-size:cover;
    background-blend-mode: luminosity;
    position: fixed;
    overflow: auto;
}

h1, h2, h3, h4 {
    margin: 0;
}

.info {
    line-height: 1.6;
}

/* main page and menu style */
#main-page {
    position: relative;
    scroll-behavior: auto;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    /* width: calc(100% - 20px); */
    margin: 0 auto;
    padding-bottom: 10px;
    text-align: center;
    background-color: rgba(20,20,20,.5);
    overflow: auto;
    
}

#cubic-logo {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 30px;
    float: left;
}

#cubic-logo:hover {
    content: url(../media/cubic_d.png);
    cursor: pointer;
}

#brand-name {
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    color: black;
}

#brand-name:hover{
    color: rgb(19, 120, 179);
    text-decoration: underline;
} 

.demo-btn{
    background-color: rgb(0,173,187);
    padding: 5px;
}

.demo-btn:hover{
    cursor: pointer;
    background-color: rgb(0, 221, 237);
    box-shadow: 0 0 8px 2px #808285;
}

#topbar {
    height: 40px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    background: #fff;
}

#menubar {
    position: sticky;
    top: 0;
    z-index: 101;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, rgba(0,173,187,1) 0%, rgba(0,173,187,1) 68%, rgba(1,79,116,1) 86%, rgba(2,0,36,1) 93%);
}

#menubar h2 {
    display: inline-block;
    margin: 0 auto;
    vertical-align: middle;
    padding-top: 10px;
    color: white;
}

#menubar .right {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
}

#menubar .left {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 40px;
}


#menu-icon {

}


/* page sections */

.page {
    position: relative;
    width: 100%;
    height: fit-content;
    margin: 0;
    border: 0;
    padding: 10px 0 10px 0;
    color: black;
    display: block;
}


#banner {
    height: 300px;
    background-color: #808285;
    background-image: url(../media/interactive_map.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode:soft-light;
}

#banner-text {
    position: relative;
    top: 100px;
    background-color: rgba(200,200,200,.5);
    color: white;
}



#about-page {
    background-color: #ebebeb;
}

#about-info {
    width: calc(56% - 15px);
}

#about-img {
    width: calc(40% - 15px);
}

#cubic-info {
    width: calc(49% - 15px);
}

#cubic-img {
    width: calc(49% - 15px);
}


.content-img {
    position: relative;
    display: inline-block;
    vertical-align:middle;
    width: 40%;
    max-height: 800px;
    padding: 7px;
}

.content-img img {
    max-width: 100%;
    max-height: 800px;
}

.info{
    position: relative;
    display: inline-block;
    width: calc(56% - 15px);
    vertical-align: top;
    padding: 7px;
    text-align: justify;
}

#about-banner-img {
    max-height: 500px;
    max-width: 95%;
    box-shadow: #808285;
}

#gallery-page{
    background-color: #d1d0d0;
    max-height: 800px;
}

#cubic-page {
    background-color: #ebebeb;
}   

#contact-page{
    background-color: #d1d0d0;
    text-align: center;
}

#contact-page table {
    margin: 0 auto;
    text-align: justify;
}

#contact-page td:first-child {
    padding-right: 20px;
    overflow-wrap: break-word;
}

#contact-page img {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    object-fit: cover;
}

#contact-page img:hover {
    /* box-shadow: 0 0 8px 2px #444; */
    transform: scale(1.01);
}

/* footer */

#footer{
    width: 100%;
    background-color: white;
    height: fit-content;
    position: relative;
}

#footer-cubic-logo {
    height: 40px;
    margin: 10px 0 10px 0;
}

#footer-right {
    position: absolute;
    right: 10px;
    top: 20px;
}


/* scrollbar */

/* width */
::-webkit-scrollbar {
    width: 4px;
  }

  * {
      scrollbar-width: 4px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(50, 58, 59);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(69, 118, 138);
  }


  @media only screen and (max-width: 550px){
    .info{
        width: 95% !important;
    }

    .content-img{
        width: 95% !important;
    }

    #contact-page img {
        height: 120px !important;
        width: 120px !important;
    }


  }