/**
 * If using a CSS pre-processor, tell it to overwrite this file. If not, place
 * your custom CSS modifications here.
 */
 
 
/* Google font - Roboto Condensed 300, 400, 700 */
/* Google font - PT Serif 400, 700 */

/* WEBSITE STYLES */
html {
	scroll-behavior: smooth;
}
body {
	margin: 0px;
	padding: 0px;
	background-color: #fff;
	font-family: 'Lato', helvetica, arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	background: url('../images/beyond_light_body_bg.jpg') center no-repeat;
	background-color: #00153b;
	background-size: 100% auto;
	background-attachment: fixed;
}
body.serious-play {
	background: url('../images/serious-play-body-bg.jpg') bottom center no-repeat;
	background-color: #00153b;
	background-size: 100% auto;
	background-attachment: fixed;
}
.desktop { display: block !important; }
.desktop-inline { display: inline-block !important; }
.mobile, .mobile-inline { display: none !important; }
div {
	box-sizing: border-box;
	word-wrap: break-word;
}
.col-sm-12 {
	padding: 0px;
}
.clearfix {
	display: block;
	float: none;
	clear: both;
	width: 100%;
}
.hidden_content {
	display: none;
}

/* GLOBAL */
a {
	color: #00aeef;
}
.main-container a {
	color: #00aeef !important;
	font-weight: 400;
}
p a {
	color: #00aeef;
	text-decoration: none;
}
p a:hover {
	color: #00aeef;
	text-decoration: underline;
}
a.anchor {
	display: inline-block;
	position: relative;
	top: -180px;
	visibility: hidden;
}

.button {
	background: #00aeef !important;
	color: #fff !important;
	padding: 10px 20px;
	border-radius: 4px;
	text-transform: uppercase;
	border-color: transparent !important;
}
a.button:hover {
	opacity: .8;
	text-decoration: none;
}
.gold-button {
	background: #f7d046 !important;
	color: #000 !important;
}

p, .paragraph p:first-child {
	color: #fff;
	line-height: 1.4em;
	font-weight: 400;
	font-size: 18px;
	font-style: normal;
	margin-bottom: 1em;
}
h1, h1.page-header {
	border-bottom: border-bottom: 1px solid #eeeeee;
	font-size: 36px;
	font-weight: 500;
	color: #fff;
}
.font-smaller {
	font-size: .9em;
}
.font-larger {
	font-size: 1.2em;
}
body.path-frontpage h1 {
	display: none;
}
h2 {
	font-size: 36px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
}
h3 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-transform: none !important;
}
b, strong {
	font-weight: 700;
}
h1 a, h2 a, h3 a {
	text-decoration: none !important;
}
p {
	word-wrap: break-word;
	letter-spacing: .05em;
}
p img {
	height: auto !important;
}
.field ul li {
	margin-bottom: 1em;
}

.cyan_text {
	color: #00aeef;
}
.yellow_text {
	color: #ff0;
}
.gold_text {
	color: #f7d046 !important;
}
.red_text {
	color: #af0000;
}
.lemon-text {
	color: #fedc9e !important;
}

.photo-caption {
	font-size: .9em;
}

.align-left {
	margin: 0px 20px 20px 0px;
}
.align-right {
	margin: 0px 0px 20px 20px;
}

.center-this {
	display: block;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
}

.col-sm-6.left {
	padding-left: 0px;
	padding-right: 20px;
}
.col-sm-6.right {
	padding-left: 20px;
	padding-right: 0px;
}
.h-100 {
	height: auto !important;
}

/* COLUMNS */
.columns-wrapper {
	float: none;
	clear: both;
	width: 100%;
	display: flex;
	flex-flow: wrap;
}
.columns-two .column {
	flex: 0 0 auto;
	width: calc(50% - 20px);
	min-width: 280px;
	margin: 0px auto;
	padding: 0px 40px 0px 0px;
}
.columns-three .column {
	flex: 0 0 auto;
	width: calc(33% - 20px);
	min-width: 280px;
	margin: 0px auto 40px;
	padding: 0px 40px 0px 0px;
}
.columns-four .column {
	flex: 0 0 auto;
	width: calc(25% - 20px);
	min-width: 280px;
	margin: 0px auto 40px;
	padding: 0px 40px 0px 0px;
}
.col-one-third {
	width: 33.3% !important;
}
.col-two-thirds {
	width: 66.6% !important;
}

.fifty-percent {
	display: block;
	float: left;
	width: calc(50% - 20px);
	min-width: 280px;
	margin-right: 20px;
}
.fifty-percent:last-child {
	clear: right;
}
.fifty-percent:last-child:after {
	content: '';
	display: block;
	clear: both;
	float: none;
}

/* COLLAPSIBLE DRAWERS */
.drawer {
  display: none;
  padding-bottom: 1em;
}
a.trigger {
  color: #999;
  position: relative;
  display: block;
  cursor: pointer;
  border-top: 1px solid #999;
  padding: 20px 50px 10px 0px;
  margin-top: 20px;
  width: 100%;
  text-decoration: none;
  font-weight: bold;
}
a.trigger:first-child {
	margin-top: 0px;
}
a.trigger.closed:after {
  position: absolute;
  display: block;
  content: '\f067';
  color: #fff;
  font-family: fontawesome;
  font-size: 1.2em;
  font-weight: normal;
  width: 20px;
  height: auto;
  top: calc(50% - 10px);
  right: 20px;
}
a.trigger.opened:after {
  position: absolute;
  display: block;
  content: '\f068';
  color: #fff;
  font-family: fontawesome;
  font-size: 1.2em;
  font-weight: normal;
  width: 20px;
  height: auto;
  top: calc(50% - 10px);
  right: 20px;
}


/* HEADER */
header {
	padding: 20px 0;
}


/* Sub pages */
.main-container {
	width: 100%;
	max-width: 1400px;
	min-height: 500px;
	padding: 140px 0 0;
	position: relative;
	z-index: 0;
}
body.toolbar-horizontal.user-logged-in .main-container {
	padding: 0 ;
}
.main-container > .row {
	margin: 0 auto;
}

/* HOMEPAGE AD */
.event-wrapper, .ad-header-row, .ad-body-row, .ad-footer-row {
	width: 100%;
	clear: both;
	float: none;
}
.event-wrapper {
	margin-top: 0;
}
.event-wrapper .column p {
	vertical-align: bottom;
}
.ad-header-row {
	margin-bottom: 50px;
}
.ad-header-row h2 {
	font-size: 4.6vw;
	color: #00aeef;
	text-transform: none;
}
.ad-header-row h3 {
	font-size: 3vw;
	color: #fff;
	font-family: 'times', serif;
	font-weight: normal;
}
.ad-banner-image {
	margin-bottom: 50px;
}
.ad-banner-image h3 {
	font-size: 26px;
	line-height: 1.5em;
}
.event-wrapper.art-design-quantum-computing .ad-body-row {
	border: solid 1px #ff0;
	border-right: none;
	padding: 75px 0 50px 50px;
	background:url('/sites/default/files/2023-08/vt-oct122023-google-quantum-lab-bg-gradient.webp') no-repeat;
	background-size:100% auto !important;
	background-position-x: right;
	background-position-y: 50px;
}
.event-wrapper.serious-play .ad-body-row {
	border: solid 1px #f7d046;
	border-right: none;
	padding: 50px 0 50px 50px;
}
.event-wrapper.beyond-light .ad-body-row {
	border: solid 1px #FEDC9E;
	border-right: none;
	padding: 50px 0 50px 50px;
}
.event-wrapper.beyond-light h2, .event-wrapper.beyond-light h4 {
	color: #FEDC9E;
}
.event-wrapper.beyond-light a.button {
	background: #FEDC9E !important;
	color: #000 !important;
	font-weight: 500;
}
.speaker_row {
	width: 100%;
	height: auto;
	min-height: 150px;
	clear: both;
	float: none;
	margin: 0 auto 50px;
}
.speaker_row img, .speaker_row p {
	vertical-align: bottom;
}
.speaker-name {
	font-size: 1.3em;
}
.ad-footer-row {
	padding-top: 50px;
}

/* MAIN CONTENT */
#block-vadatalks-content {
	margin-bottom: 4em;
}

/* WEBFORM HIDE ACCESS FOR ANONYMOUS */
body:not(.user-logged-in) #block-vadatalks-local-tasks {
	display: none;
}
article.node--type-webform {
	max-width: 800px;
}
#block-views-block-registration-count-block-1 {
	display: none;
}

/* WEBFORM STYLES */
form#webform-submission-post-event-survey-quantum-comput-add-form > .form-item {
	margin-bottom: 2em;
}

#edit-2nd-attendee-information {
	width: 100%;
	float: none;
	clear: both;
}


/* footer styles */
footer {
	width: 100%;
	margin-top: 100px !important;
	padding: 30px 0;
	border-top: 1px solid #ccc;
}
body.path-frontpage footer {
	margin-top: 50px;
}
footer .block {
	box-sizing: border-box;
	width: 100%;
	clear:unset !important;
}
footer .block .clearfix {
	float:left;
	clear:unset;
	width:100%;
}

footer .block a {
	color:#000000;
	font-size:14px;
}

footer .block h2 {
	color:#24a8e0;
	font-size:14px;
}

footer .block p {
	color:#fff;
	font-size:18px;
}
/* ADMIN PAGES */
body.user-logged-in.toolbar-fixed .region-header-image .contextual {
	top: auto !important;
	bottom: 20px;
}
body.user-logged-in.toolbar-fixed .region-header-image article .contextual {
	top: auto !important;
	bottom: 50px;
}
body.toolbar-horizontal.user-logged-in .region-breadcrumb-bar {
	text-align:center;
}

body.toolbar-horizontal.user-logged-in .block-private-message-actions-block {
	margin: 2em auto;
}
body.toolbar-horizontal.user-logged-in #node-buttons {
	margin: 2em auto;
}
body.toolbar-horizontal.user-logged-in #node-buttons .button {
	margin: 0 10px;
}
body.user-logged-in nav.tabs li {
	width: auto;
	display: inline-block;
}

/* MAILCHIMP FORM */
#mc_embed_signup {
	background-color: rgba(0,0,0,0.4) !important;
	padding-top: 20px;
	margin: 50px auto 0;
}

/* BUBBLE-UP STYLES - Leave at bottom of stylesheet */

.bubbleup, .slide-right, .slide-left {
  visibility: hidden;
  opacity: 0;
}
/* This is a static version
.already-visible {
  visibility: visible;
  transform: translateY(0px);
  animation: none;
  opacity: 1;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
*/
.already-visible, .come-in {
  visibility: visible;
  transform: translateY(500px);
  animation: come-in 2s ease forwards;
  opacity: 1;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.already-visible:nth-child(2n), .come-in:nth-child(2n) {
  animation-duration: 1s;
}
.already-visible:nth-child(3n), .come-in:nth-child(3n) {
  animation-duration: 3s;
}

.slide-right.already-slide, .slide-right.slide-in {
  visibility: visible;
  transform: translateX(-500px);
  animation: slide-right 1.5s forwards;
  opacity: 1;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
	  transition: opacity 1s;
}
.slide-right.already-slide:nth-child(2n), .slide-right.slide-in:nth-child(2n) {
  animation-duration: 1s;
}
.slide-left.already-slide, .slide-left.slide-in {
  visibility: visible;
  transform: translateX(500px);
  animation: slide-left 1.5s forwards;
  opacity: 1;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.slide-left.already-slide:nth-child(2n), .slide-left.slide-in:nth-child(2n) {
  animation-duration: 1s;
}

@keyframes come-in {
  to { transform: translateY(0); }
}
@keyframes slide-right {
  to { transform: translateX(0); }
}
@keyframes slide-left {
  to { transform: translateX(0); }
}


/* MEDIA QUERIES */

@media all and (max-width: 768px) {
	.desktop, .desktop-inline { display: none !important; }
	.mobile { display: block !important; }
	.mobile-inline { display: inline-block !important; }
	body {
		background-size: auto 100vh;
	}
	body.serious-play {
		background-size: auto 100%;
		background-position: bottom center;
		background-attachment: fixed;
	}
	.align-left, .align-right {
		margin: 0 auto 20px;
		float: none;
	}
	.columns-two .column {
		padding: 0;
	}
	
	.navbar-toggler {
		display: none;
	}
	.region-nav-branding {
		flex-shrink: unset;
	}
	.event-wrapper {
		padding-top: 0 !important;
	}
	.event_info h3 {
		font-size: 28px !important;
	}
	.event_info img {
		display: block;
		margin: 0 auto;
	}
	
	.ad-header-row h2 {
		font-size: 36px;
	}
	.ad-header-row h3 {
		font-size: 26px;
	}
	.ad-body-row {
		background-position-y: 0;
		background-size: 200% auto !important;
		padding: 240px 0 50px !important;
	}
	.beyond-light .ad-body-row {
		padding-top: 50px !important;
	}
	.ad-body-row .column {
		width: calc(100% - 10px);
	}
	.ad-body-row img {
		width: 100% !important;
		height: auto !important;
	}
	.ad-body-row .speaker_row {
		margin-bottom: 40px;
	}
	.ad-body-row .speaker_row * {
		vertical-align: top;
	}
	.ad-body-row .speaker_row img {
		width: 100% !important;
		height: auto !important;
		max-width: 80px;
		float: left;
		margin-right: 10px;
		margin-bottom: 50px;
	}
	.beyond-light .ad-body-row .speaker_row img {
		margin-bottom: 0;
		float: none;
	}
	
	#mc_embed_signup {
		width: 100% !important;
		max-width: 600px;
	}
}