/* Navigations */
.navigation-box {
    display: block;
    position: absolute;
    width: 170px;
    height: auto;
    z-index: 2;
    top: 0;
    left: 40px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .25);
    background-color: #fff;
    padding: 20px;
    overflow: hidden;
}

.brands-box {
    display: flex;
    width: 100%;
    height: auto;
    text-align: center;
    justify-content: center;
    padding-bottom: 15px;
}

.brands-box img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

ul.menu,
ul.submenu {
    list-style: none;
    padding: 0;
}

.menu li a {
    color: #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.menu li a:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, .08);
}

.menu li a.no-hover {
    cursor: pointer;
}

.menu li a.no-hover:hover {
    background-color: unset;
}

.menu li {
    display: block;
    border-top: 1px solid #ddd;
}

.menu li a.active {
    color: #007bff !important;
}

ul.menu {
    margin: 0 -20px;
    margin-top: 15px;
    overflow: auto;
    height: auto;
    max-height: calc(100vh - 350px);
}

.menu-toggle {
    height: 8px;
}

.expand-supersized .menu-toggle {
    display: none;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 10px;
    margin: 0 auto;
    cursor: pointer;
    background: url('../img/logo/sprite.png') no-repeat -68px -10px;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -webkit-transition: opacity 200ms ease-in-out;
    -moz-transition: opacity 200ms ease-in-out;
    -ms-transition: opacity 200ms ease-in-out;
    -o-transition: opacity 200ms ease-in-out;
    transition: opacity 200ms ease-in-out;
}

.no-touch .menu-toggle span:hover {
    opacity: 1;
    filter: none;
}

.hide-menu .menu-toggle span {
    background-position: -68px 0;
}

.hide-menu .menu {
    display: none;
}

.hide-submenu .submenu {
    display: none;
}

.dropdown {
    position: absolute;
    right: 20px;
}

ul.submenu li a{
    margin-left: 10px;
}


/* 360 image */

#panorama {
    width: 100%;
    height: calc(100vh - 20px);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.pnlm-panorama-info {
    background-color: transparent !important;
    margin-left: 40px !important;
}

.pnlm-title-box {
    font-size: 14px !important;
    text-shadow: 2px 2px 7px #333;
    font-weight: 600;
}

.pnlm-controls-container {
    left: unset !important;
    right: 4px !important;
}

.pnlm-about-msg {
    width: 0!important;
    height: 0!important;
    padding: 0!important;
    display: none !important;
}

.pnlm-about-msg a {
    display: none !important;
}

/* Static Image */

.static-image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Whatsapp */

.whatsapp-box {
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 3;
    background: #128c7e;
    border-radius: 20px;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.whatsapp-box .fa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 15px;
    color: #ffffff;
}

.whatsapp-box:hover {
    background:#0c695e;
}

/* Footer */

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #ffffff;
    color: #000;
    width: 100%;
    z-index: 3;
    font-size: 10px;
    margin: 0;
    padding: 0;
}

.footer .socmed{
    display: flex;
    flex-direction: row;

}

.socmed ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-left: 40px;
}

.socmed li {
    margin-right: 4px;
    background: #b7b7b7;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    font-size: 10px;
    text-align: center;
}

.youtube {
    background: #FF0000!important;
}

.instagram {
    background: #C13584!important;
}

.facebook {
    background: #4267B2!important;
}

.socmed a {
    color:#fff!important;
}
/* Loader */

.loader {
    display: flex;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fdfdfd;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 100px;
    height: 100px;
}


@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .navigation-box{
    width: 90px;
    height: auto;
    left:20px;
  }
  .brands-box img {
    width: 50px;
    height: 50px;
  }
  .menu li a{
    font-size:10px;
  }
}