/*!
* IE10 viewport hack for Surface/desktop Windows 8 bug
* Copyright 2014-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

/*
* See the Getting Started docs for more information:
* http://getbootstrap.com/getting-started/#support-ie10-width
*/
@-ms-viewport     { width: device-width; }
@-o-viewport      { width: device-width; }
@viewport         { width: device-width; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.0,1.0);
  }

  10% {
    -webkit-transform: scale(0.95,0.95);
  }

  20% {
    -webkit-transform: scale(1.0,1.0);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1.0,1.0);
  }

  10% {
    -moz-transform: scale(0.95,0.95);
  }

  20% {
    -moz-transform: scale(1.0,1.0);
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1.0,1.0);
  }

  10% {
    -o-transform: scale(0.95,0.95);
  }

  20% {
    -o-transform: scale(1.0,1.0);
  }
}

@-ms-keyframes pulse {
  0% {
    -ms-transform: scale(1.0,1.0);
  }

  10% {
    -ms-transform: scale(0.95,0.95);
  }

  20% {
    -ms-transform: scale(1.0,1.0);
  }
}

@keyframes pulse { 
  0% {
    transform: scale(1.0,1.0);
  }

  10% {
    transform: scale(0.95,0.95);
  }

  20% {
    transform: scale(1.0,1.0);
  }
}

@-webkit-keyframes flash {
	0% {
		-webkit-transform: scale(1, 1);
		border: solid 4px #ffffff;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		-webkit-transform: scale(1.1, 1.5);
		border: solid 10px #ffffff;
		opacity: 0;
	}
}

@-moz-keyframes flash {
	0% {
		-moz-transform: scale(1, 1);
		border: solid 4px #ffffff;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		-moz-transform: scale(1.1, 1.5);
		border: solid 10px #ffffff;
		opacity: 0;
	}
}

@-o-keyframes flash {
	0% {
		-o-transform: scale(1, 1);
		border: solid 4px #ffffff;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		-o-transform: scale(1.1, 1.5);
		border: solid 10px #ffffff;
		opacity: 0;
	}
}

@-ms-keyframes flash {
	0% {
		-ms-transform: scale(1, 1);
		border: solid 4px #ffffff;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		-ms-transform: scale(1.1, 1.5);
		border: solid 10px #ffffff;
		opacity: 0;
	}
}

@keyframes flash {
	0% {
		transform: scale(1, 1);
		border: solid 4px #ffffff;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		transform: scale(1.1, 1.5);
		border: solid 10px #ffffff;
		opacity: 0;
	}
}

@-webkit-keyframes flash2 {
    0% {
        -webkit-transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes flash2 {
    0% {
        -moz-transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}

@-o-keyframes flash2 {
    0% {
        -o-transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        -o-transform: scale(1.5);
        opacity: 0;
    }
}

@-ms-keyframes flash2 {
    0% {
        -ms-transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        -ms-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes flash2 {
    0% {
        transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes pop { 
  0% {
    -webkit-transform: scale(0,0);
  }

  80% {
    -webkit-transform: scale(1.05,1.05);
  }

  90% {
    -webkit-transform: scale(0.95,0.95);
  }

  100% {
    -webkit-transform: scale(1.0,1.0);
  }
}

@-moz-keyframes pop { 
  0% {
    -moz-transform: scale(0,0);
  }

  80% {
    -moz-transform: scale(1.05,1.05);
  }

  90% {
    -moz-transform: scale(0.95,0.95);
  }

  100% {
    -moz-transform: scale(1.0,1.0);
  }
}

@-o-keyframes pop { 
  0% {
    -o-transform: scale(0,0);
  }

  80% {
    -o-transform: scale(1.05,1.05);
  }

  90% {
    -o-transform: scale(0.95,0.95);
  }

  100% {
    -o-transform: scale(1.0,1.0);
  }
}

@-ms-keyframes pop { 
  0% {
    -ms-transform: scale(0,0);
  }

  80% {
    -ms-transform: scale(1.05,1.05);
  }

  90% {
    -ms-transform: scale(0.95,0.95);
  }

  100% {
    -ms-transform: scale(1.0,1.0);
  }
}

@keyframes pop { 
  0% {
    transform: scale(0,0);
  }

  80% {
    transform: scale(1.05,1.05);
  }

  90% {
    transform: scale(0.95,0.95);
  }

  100% {
    transform: scale(1.0,1.0);
  }
}

* {
	font-family: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth
}

html, body {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

body {
	background-color: #efefef;
	overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #d22630;
}

h1 {
	margin-bottom: 15px;
	font-size: 18px;
	margin-top: 5px;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 0 5px #555555;
}

h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
	margin-top: 5px;
}

h3 {
	line-height: 1.3;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 22px;
}

h4 {
	font-size: 18px;
	margin: 0;
	font-weight: 800;
}

h5 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.3;
}

h6 {
	line-height: 1.8;
	font-weight: 400;
	font-size: 13px;
	margin-bottom: 20px;
}

p {
	font-size: 10pt;
	line-height: 1.6;
}

hr {
	margin-top: 40px;
	margin-bottom: 40px;
}

nav hr {
	margin-top: 20px;
	margin-bottom: 18px;
}

nav .btn {
	padding: 7px;
	width: 90%;
	margin: 0;
}

.bumper {
	width: 100%;
	padding: 60px 0px;
	margin-bottom: 0px;
	background-position: center center;
	background-size: cover;
}

.bumper:nth-child(even) {
	background-color: #ffffff;
	color: #333333;
}

.bumper:nth-child(odd) {
	background-color: #f9f9f9;
	color: #333333;
}

.icon-svg {
	vertical-align: middle;
	height: 16px;
}

.icons-social {
	color: #ffffff;
	font-weight: normal;
	margin-right: 10px;
	margin-bottom: 5px;
}

.icons-social:hover {
	color: #0b3c8e;
}

.resize {
	width: auto;
	max-width: 100%;
}

a {
	color: #d22630;
	text-decoration: underline;
	font-weight: bold;
}

a:hover, a:focus, a:active {
	color: #da262e;
	text-decoration: underline;
	font-weight: bold;
	opacity: 0.8;
}

.bullets > li {
	padding-left: 25px;
	margin-bottom: 10px;
	margin-left: 0;
	margin-top: 10px;
	font-size: 12px;
}

footer {
	background-image: linear-gradient(transparent, #555555);
	padding: 25px;
	color: #ffffff;
	font-size: 7pt;
	line-height: 1.5;
	vertical-align: middle;
	bottom: 0;
	width: 100%;
	position: fixed;
}

footer > ul {
	margin-bottom: 0;
}

footer > ul > li > a {
	color: #ffffff;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.fullwidth {
	width: 100%;
}

.jumbotron {
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	background-origin: content-box;
	position: relative;
	padding: 50px;
	height: 100vh;
	width: 100%;
	background-color: #efefef;
	background-image: url("../img/portal_hub.png");
	color: #000000;
	margin-bottom: 0;
}

.jumbotron::before {
	content: '';
	position: fixed;
	width: 102vw;
	height: 102vh;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	top: 50%;
	left: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}

.videobg, .navbg {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
}

#mainNav {
	min-width: 135vh;
	min-height: 100vh;
	width: auto;
	height: 100vh;
}

.nav-roundels {
	position: absolute;
	padding: 15px 20px 15px 50px;
	text-decoration: none;
	border-radius: 35px;
	border: 2px solid #ffffff;
	color: #ffffff;
	font-size: 12px;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.nav-roundels::before {
	content: url("../img/biamp-small.png");
	position: absolute;
	left: -38px;
	top: -15px;
	padding: 0 2px;
	border-radius: 50%;
	border: 2px solid #d22630;
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
}

.nav-roundels::after {
	content: '';
	z-index: -1; 
	position: absolute;
	border-radius: 35px;
	width: 100%;
	height: 109%;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	top: -2px;
	left: 2px;
	-webkit-animation: flash 1.2s infinite ease;
	-moz-animation: flash 1.2s infinite ease;
	-o-animation: flash 1.2s infinite ease;
	-ms-animation: flash 1.2s infinite ease;
	animation: flash 1.2s infinite ease;
}

.flasher {
	position: relative;
}

#manageNavLarge {
	left: 5%;
	top: 43%;
}

#manageNavMedium {
	left: 53%;
	top: 62%;
}

#manageNavSmall {
	left: 38%;
	top: 80%;
}

#manageNavHuddle {
	min-width: 218px;
	left: 87%;
	top: 24%;
}

#manageNavClassroom {
	left: 83%;
	top: 71%;
}

#manageNavCommunal {
	left: 70%;
	top: 48%;
}

#manageNavOpen {
    left: 33%;
    top: 46%;
}

.main-text {
	bottom: 8%;
	left: 3%;
	position: absolute;
	max-width: 600px;
	width: auto;
	height: auto;
	padding: 20px 40px;
	border-radius: 20px;
	border: 2px solid #ffffff;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.dark-corner {
	background-image: linear-gradient(162deg, rgba(0,0,0,0.6) 10%, transparent 50%, transparent 100%);
	width: 300px;
	height: 100px;
	left: 0;
	top: 0;
	position: fixed;
}

.btn {
	margin: 13px 0 0 0;
	padding: 10px;
	max-width: 170px;
	width: 100%;
	border-radius: 0;
	text-decoration: none;
	font-weight: bolder;
	justify-content: center;
	text-align: center;
}

.noscriptmsg {
	z-index: 1060;
	color: #000000;
	width: 80%;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.nopadding {
	padding: 0;
}

.list-inline > li {
	padding-left: 2px;
	padding-right: 2px;
}

.main-logo {
	position: fixed;
	top: 10px;
	left: 20px;
	text-align: center;
  	max-width: 250px;
}

.nav > a {
	display: inline-block;
}

.navbutton {
	border: 2px solid #ffffff;
	display: block;
	margin: 16px auto;
	border-radius: 7px;
	width: 230px;
	height: 58px;
	background-size: cover;
	background-position: center;
	font-size: 12px;
}

.navbutton::after {
	top: 63px;
	position: relative;
	color: #ffffff;
}

#navmenu-main {
	background-image: url("../img/navmenu-main.jpg");
}

#navmenu-large {
	background-image: url("../img/navmenu-large.jpg");
}

#navmenu-medium {
	background-image: url("../img/navmenu-medium.jpg");
}

#navmenu-small {
	background-image: url("../img/navmenu-small.jpg");
}

#navmenu-huddle {
	background-image: url("../img/navmenu-huddle.jpg");
}

#navmenu-classroom {
	background-image: url("../img/navmenu-classroom.jpg");
}

#navmenu-communal {
	background-image: url("../img/navmenu-communal.jpg");
}

#navmenu-open {
	background-image: url("../img/navmenu-open-spaces.jpg");
}

#navmenu-main::after {
	content: "Ecosystem Overview";
}

#navmenu-large::after {
	content: "Large Meeting Room";
}

#navmenu-medium::after {
	content: "Medium Meeting Room";
}

#navmenu-small::after {
	content: "Small Meeting Room";
}

#navmenu-huddle::after {
	content: "Huddle Space";
}

#navmenu-classroom::after {
	content: "Classroom";
}

#navmenu-communal::after {
	content: "Communal Area";
}

#navmenu-open::after {
	content: "Open Spaces";
}

.nav {
	width: 280px;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	transition: 0.15s;
	z-index: 10;
	padding-top: 1%;
}

.nav-toggle {
	position: absolute;
	right: 100.4%;
	top: -1px;
	padding: 0.5em;
	background: inherit;
	color: white;
	cursor: pointer;
	font-size: 2em;
	line-height: 1;
}

#nav-toggle {
	position: fixed;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	top: 50%;
	left: 50%;
}

[id='nav-toggle'] {
	position: absolute;
	clip: rect(0 0 0 0);
	opacity: 0;
}

[id='nav-toggle']:checked ~ .nav {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

[id='nav-toggle']:checked ~ .nav > .nav-toggle {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.no-csstransforms .nav {
	right: -350px;
}

.no-csstransforms [id='nav-toggle']:checked ~ .nav {
	right: 0;
}

#mainlogo {
	background-image: url("../img/logo.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 190px;
	height: 50px;
	padding-top: 34.96%;
}

.wifobtn, .wifobtn:active, .wifobtn:focus, .wifobtnoutline:hover {
	background-color: #d22630;
	color: #ffffff;
	border: solid 1px #d22630;
	font-weight: bold;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.wifobtn:hover, .wifobtnoutline, .wifobtnoutline:active, .wifobtnoutline:focus {
	background-color: #ffffff;
	color: #d22630;
	border: solid 1px #d22630;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.modal-content {
	border-radius: 20px;
	border: 2px solid #ffffff;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(5px);
	padding: 15px 30px;
} 

.modal-header h1 {
	color: #ffffff;
	font-size: 25px;
	margin: 0;
	margin-top: 2px;
	text-shadow: none;
}

.modal-header .close {
	margin-top: -37px;
	font-size: 50px;
	margin-bottom: 0;
	color: #ffffff;
	margin-right: -17px;
}

.modal-dialog {
	min-width: 500px;
	max-width: 800px;
	width: auto;
	margin: 7% auto;
}

.modal-body {
	padding: 20px;
}

.modal-body p {
	font-size: 10pt;
	margin-top: 10px;
}

.modal-body a {
	color: #ffffff;
}

.modal-body a:hover {
	color: #da262e;
}

.modal-footer {
	text-align: center;
	padding-top: 10px;
}

.modal-image {
	transform: scale(0.9);
	box-shadow: rgba(210, 38, 48, 0.4) -5px 5px, rgba(210, 38, 48, 0.3) -10px 10px, rgba(210, 38, 48, 0.2) -15px 15px, rgba(210, 38, 48, 0.1) -20px 20px, rgba(210, 38, 48, 0.05) -25px 25px;
	border-radius: 25px;
}

.btn-secondary {
	color: #333333;
}

.mobile-show {
	display: none;
	visibility: hidden;
}

.totalwidth {
	width: 98%;
}

.flash2::before {
    content: '';
    position: absolute;
    background-color: #d22630;
    border-radius: 50%;
    display: block;
    height: 70px;
    width: 70px;
    overflow: hidden;
    white-space: nowrap;
    top: 0;
    left: 0;
    -webkit-animation: flash2 1.2s infinite ease;
    -moz-animation: flash2 1.2s infinite ease;
    -o-animation: flash2 1.2s infinite ease;
    -ms-animation: flash2 1.2s infinite ease;
    animation: flash2 1.2s infinite ease;
}
 
.flash2 {
    cursor: pointer;
}

.flash2::after {
    top: 76px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    color: #ffffff;
    font-size: 12px;
}

.tooltip-audio::after {
    content: 'AUDIO';
    left: 7px;
}

.tooltip-lighting::after {
    content: 'LIGHTING';
    left: -2px;
}

.tooltip-switcher::after {
    content: 'SWITCHER';
    left: -5px;
}

.tooltip-print::after {
    content: 'PRINT';
    left: 9px;
}

.tooltip-hub::after {
    content: 'HUB';
    left: 14px;
}

.tooltip-videobar::after {
    content: 'VIDEOBAR';
    left: -6px;
}

.tooltip-roombooking::after {
    content: 'ROOM BOOKING';
    left: -2px;
}

.tooltip-processor::after {
    content: 'PROCESSOR';
    left: -11px;
}

.tooltip-workplace::after {
    content: 'PLATFORM';
    left: -11px;
}

.tooltip-controller::after {
    content: 'CONTROLLER';
    left: -12px;
}

.tooltip-sfd::after {
    content: 'DISPLAY';
    left: 1px;
}

.tooltip-scan::after {
    content: 'SCANNER';
    left: -2px;
}

.tooltip-network::after {
    content: 'NETWORK';
    left: -4px;
}

.tooltip-camera::after {
    content: 'CAMERA';
    left: 0;
}

.tooltip-webcam::after {
    content: 'CAMERA';
    left: 0;
}

.tooltip-bracket::after {
    content: 'BRACKET';
    left: -1px;
}

.tooltip-streamdeck::after {
    content: 'STREAM DECK';
    left: -18px;
    width: 106px;
}

.tooltip-greenscreen::after {
    content: 'GREEN SCREEN';
    left: -20px;
    width: 113px;
}

.tooltip-accessory::after {
    content: 'ACCESSORY';
    left: -11px;
}

.tooltip-software::after {
    content: 'SOFTWARE';
    left: -9px;
}

.tooltip-interactive::after {
    content: 'INTERACTIVE';
    left: -13px;
}

.tooltip-microphone::after {
    content: 'SPEAKERPHONE';
    left: -24px;
}

.tooltip-headsets::after {
    content: 'HEADSETS';
    left: -5px;
}

.tooltip-vc::after {
    content: 'VIDEO CONFERENCING';
    left: -44px;
    width: 161px;
}

.tooltip-cables::after {
    content: 'CABLES';
    left: 2px;
}

.buttonthrob {
    background: #ffffff;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    width: 70px;
    height: 70px;
    max-width: 70px;
    max-height: 70px;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: .5s all;
    border-radius: 50%;
}

.buttonthrob2 {
    background: #ffffff;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: .5s all;
    border-radius: 0;
}

.buttonthrob-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.roundel-vc {
    background: url("../img/roundel-vc.png") no-repeat center center;
}

.roundel-audio {
    background: url("../img/roundel-audio.png") no-repeat center center;
}

.roundel-interactive {
    background: url("../img/roundel-interactive.png") no-repeat center center;
}

.roundel-sfd {
    background: url("../img/roundel-sfd.png") no-repeat center center;
}

.roundel-print {
    background: url("../img/roundel-print.png") no-repeat center center;
}

.roundel-camera {
    background: url(../img/roundel-camera.png) no-repeat center center;
}

.roundel-microphone {
    background: url(../img/roundel-microphone.png) no-repeat center center;
}

.roundel-lighting {
    background: url(../img/roundel-lighting.png) no-repeat center center;
}

.roundel-streamdeck {
    background: url(../img/roundel-streamdeck.png) no-repeat center center;
}

.roundel-hub {
    background: url(../img/roundel-hub.png) no-repeat center center;
}

.roundel-roombooking {
    background: url(../img/roundel-roombooking.png) no-repeat center center;
}

.roundel-videobar {
    background: url(../img/roundel-videobar.png) no-repeat center center;
}

.roundel-processor, .roundel-workplace {
    background: url(../img/roundel-processor.png) no-repeat center center;
}

.roundel-controller {
    background: url(../img/roundel-controller.png) no-repeat center center;
}

.roundel-bracket {
    background: url(../img/roundel-bracket.png) no-repeat center center;
}

.roundel-network {
    background: url(../img/roundel-network.png) no-repeat center center;
}

.roundel-greenscreen {
    background: url(../img/roundel-greenscreen.png) no-repeat center center;
}

.roundel-accessory {
    background: url(../img/roundel-accessory.png) no-repeat center center;
}

.roundel-software {
    background: url(../img/roundel-software.png) no-repeat center center;
}

.roundel-webcam {
    background: url(../img/roundel-webcam.png) no-repeat center center;
}

.roundel-cables {
    background: url(../img/roundel-cables.png) no-repeat center center;
}




.pop {
  -webkit-animation-name: pop;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out, ease-in-out;
  -moz-animation-name: pop;
  -moz-animation-duration: 0.4s;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: ease-in-out, ease-in-out;
  -o-animation-name: pop;
  -o-animation-duration: 0.4s;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: ease-in-out, ease-in-out;
  -ms-animation-name: pop;
  -ms-animation-duration: 0.4s;
  -ms-animation-iteration-count: 1;
  -ms-animation-timing-function: ease-in-out, ease-in-out;
  animation-name: pop;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out, ease-in-out;
}





.instructionarea {
    width: 320px;
    bottom: 60px;
    left: 0px;
    z-index: 10;
    background-color: rgba(10, 10, 10, 0.8);
    padding: 10px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
}

.instructionarea p {
    color: #ffffff;
    text-align: center;
    font-size: 9pt;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-weight: bold;
}

.pageload-link, .pageload-link:hover {
	text-decoration: none;
}

.pulse:hover {
  -webkit-animation-name: pulse;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out, ease-in-out;
  -moz-animation-name: pulse;
  -moz-animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out, ease-in-out;
  -o-animation-name: pulse;
  -o-animation-duration: 1s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out, ease-in-out;
  -ms-animation-name: pulse;
  -ms-animation-duration: 1s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out, ease-in-out;
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out;
}

.venue-block {
    height: 100%;
    max-width: 100%;
    width: 100%;
    -webkit-perspective: 1px;
    perspective: 1px;
}

.venue-block > .layer {
    margin-top: 0;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    visibility: visible;
}

.grabbable {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.grabbable:active { 
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}

.layer {
    min-width: 2000px;
    height: 100%;
    -webkit-perspective: 1px;
    -moz-perspective: 1px;
    -o-perspective: 1px;
    -ms-perspective: 1px;
    perspective: 1px;
    text-align: center;
    background-repeat: no-repeat; 
    background-position: left center;    
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover; 
}

.fillimage {
    clear: both; 
    float: left; 
    height: 100%; 
    width: 100%;
}

.fillimage a {
    display: block;      
    position: absolute;
}

.layer.environment-large-meeting-room {
    background-image: url(../img/environment-large-meeting-room.jpg);
}

.layer.environment-medium-meeting-room {
    background-image: url(../img/environment-medium-meeting-room.jpg);
}

.layer.environment-small-meeting-room {
    background-image: url(../img/environment-small-meeting-room.jpg);
}

.layer.environment-huddle-meeting-room {
    background-image: url(../img/environment-huddle-meeting-room.jpg);
}

.layer.environment-classroom {
    background-image: url(../img/environment-classroom.jpg);
}

.layer.environment-communal-area {
    background-image: url(../img/environment-communal-area.jpg);
}

.layer.environment-open-spaces {
    background-image: url(../img/environment-open-spaces.jpg);
}

.holder {
    display: none;
}

.holder.show {
    display: block;
}

.pageload-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: 1051;
}

.pageload-overlay.show {
    visibility: visible;
}

.pageload-overlay svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pageload-overlay svg path {
    fill: #ffffff;
}

.pageload-loading.pageload-overlay::after,
.pageload-loading.pageload-overlay::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: none;
}









fieldset {
    padding: 20px 10px;
    border: 1px solid #dddddd;
    margin-bottom: 5px;
}

div#contact_form {
    text-align: center;
    margin: 0 auto;
    width: 90%;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    padding: 10px 20px 10px 10px;
}

div.input-box {
    display: flex;
    margin: 10px 20px 10px 0;
    flex-wrap: wrap;
}

div.input-box label {
    display: inline-block;
    margin: 10px 10px 10px 0;
    width: 20%;
}

label {
    font-size: 14px;
}

div.input-box input {
    font-size: 1.5rem;
    border: 1px solid #ccc;
    padding: 4px 8px;
    flex: 1;
}

div.input-box input.error {
    border: 2px dashed red;
    background: #fee;
}

div.input-box label.error {
    color: red;
    font-size: 1rem;
    text-align: right;
    width: 100%;
    margin: 10px 0;
}

input[type=radio],
input[type=checkbox] {
    margin: 12px 9px 15px 30px;
}

.nowrapblock {
    white-space: nowrap;
}

textarea {
    resize: none;
    border: 1px solid #ccc;
    width: 78%;
    padding: 15px;
}




@media (max-height: 965px) {
	.navbutton {
		height: 53px;
	}

	.navbutton::after {
		top: 56px;
	}
}

@media (max-height: 910px) {
	.navbutton {
		height: 47px;
	}

	.navbutton::after {
		top: 50px;
	}
}

@media (max-height: 850px) {
	.navbutton {
		width: 120px;
		height: 85px;
		margin: 0 auto 45px auto;
	}

	.navbutton::after {
		top: 88px;
	}

	.nav-roundels {
		font-size: 11px;
		padding: 10px 15px 10px 45px;
	}

	.nav-roundels::before {
		transform: scale(0.8);
		top: -21px;
	}

	#manageNavHuddle {
		min-width: 200px;
	}
}

@media (max-height: 750px) {
	.navbutton {
		height: 60px;
	}

	.navbutton::after {
		top: 63px;
	}
}

@media (max-height: 640px) {
	nav hr {
		margin-top: 0;
	}

	.navbutton {
		height: 50px;
		margin: 0 auto 45px auto;
	}

	.navbutton::after {
		top: 53px;
	}
}

@media (max-height: 600px) {
	.force-width {
		width: 100%!important;
	}
}

@media (max-height: 570px) {
	.mobile-show {
		display: inline-block;
		visibility: visible;
	}

	.mobile-hide {
		display: none;
		visibility: hidden;
	}

	.modal-backdrop.in {
		opacity: 0;
	}
}

@media (max-height: 350px) {
	h3 {
		font-size: 14px;
	}
}

@media (max-height: 250px) {
	.wifobtn {
		display: none;
	}
}

@media (max-width: 1400px) {
	#mainNav {
		min-width: 115vh;
	}
}

@media (max-width: 1300px) {
	.nav-roundels {
		font-size: 11px;
		padding: 10px 15px 10px 45px;
	}

	.nav-roundels::before {
		transform: scale(0.8);
		top: -21px;
	}

	#manageNavHuddle {
		min-width: 195px;
	}
}

@media (max-width: 1200px) {
	#mainNav {
		min-width: 100vh;
	}

	.nav-roundels {
		font-size: 10px;
		padding: 10px 15px 10px 45px;
		max-width: 118px;
		min-width: auto!important;
	}
}

@media (max-width: 1000px) {
	#mainNav {
		min-width: 90vh;
	}
}

@media (max-width: 992px) {
	.fa-2x {
		font-size: 1em;
	}

	.modal-dialog {
		width: 90%;
	}

	.row-eq-height {
		display: initial;
	}

	.force-width {
		width: auto;
	}
}

@media (max-width: 970px) {
	#mainlogo {
		background-image: url("../img/logo.png");
	}

	.social-icons {
		margin-bottom: 5px;
	}
}

@media (max-width: 820px) {
	#mainNav {
		min-width: 85vh;
	}
}

@media (max-width: 767px) {
	.modal-content {
		padding: 15px 10px;
	}
	.mobile-show {
		display: inline-block;
		visibility: visible;
	}

	.modal-backdrop.in {
		opacity: 0;
	}

	.mobile-hide {
		display: none;
		visibility: hidden;
	}

}

@media (max-width: 500px) {
	.jumbotron {
		background: url("../img/hero.jpg") no-repeat center center;
		background-size: cover;
		height: auto;
		padding: 20% 0;
	}

	#myVideo {
		display: none;
	}
}

@media (max-width: 400px) {
	.modal-header .close {
		visibility: hidden;
		display: none;
	}
}

@media (max-width: 350px) {
	.nav {
		width: 100%;
	}

	[id='nav-toggle']:checked ~ .nav > .nav-toggle {
		right: auto;
		left: 0;
		top: 0;
	}
}


/** Cookie Consent **/
.freeprivacypolicy-com---nb-simple {
	min-width: 100% !important;
	color: #4A4A4A !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-okagree,
.freeprivacypolicy-com---palette-light .cc-nb-reject,
.freeprivacypolicy-com---palette-light .cc-nb-changep,
.freeprivacypolicy-com---palette-light .cc-cp-foot-save
{
	background-color: #4A90E2 !important;
	border-radius: 5px !important;
	color: #ffffff !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-okagree:hover,
.freeprivacypolicy-com---palette-light .cc-nb-reject:hover,
.freeprivacypolicy-com---palette-light .cc-nb-changep:hover,
.freeprivacypolicy-com---palette-light .cc-cp-foot-save:hover {
	opacity: 75%;
}
.freeprivacypolicy-com---palette-light .cc-cp-foot-byline {
	opacity: 0%;
}
.freeprivacypolicy-com---palette-light .cc-cp-foot-byline a {
	pointer-events: none;
	cursor: default;
}
/** /Cookie Consent **/