/** STRIPE **/

.credit-card-panel {
  width: 90%;
  max-width: 600px;
  height: 270px;
  border-radius: 15px;
  background: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}
#creditcard-container {
  padding: 20px;
  background: #f9f9f9;
  margin: 0 0 30px;
}

/** LOADING **/

.loading {
  background: rgba(86,101,125,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 9999;
  color: #fff;
  text-align: center;
}
.loading span {
  line-height: 2em;
  margin: 0 auto -50px;
  display: block;
}
.loading>div {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.bt-spinner {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
}

-webkit-@keyframes spin {
  -webkit-from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  -webkit-to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/** END OF LOADING **/

.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0 15px;
	flex-wrap: wrap;
}
	.nav li {
		list-style: none;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.nav li a {
		background: #d23e23;
		padding: 6px 14px;
		display: inline-block;
		color: #fff;
		text-decoration: none;
		border-radius: 4px;
		transition: all 0.2s;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-size: 13px;
	}
	.nav li a:hover {
		background: #e8c867;
		color: #222;
	}
	.nav li:before {
		content: "";
		width: 4px;
		height: 4px;
		display: block;
		margin: 0 10px;
		background: #fff;
		border-radius: 100%;
	}
	.nav li:first-child:before {
		display: none;
	}

table tr:nth-child(odd) {
	background: rgba(0,0,0,0.05);
}
table tr td,
table tr th {
	padding: 12px !important;
}


*,
*:before,
*:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	color: #333;
	font-family: 'Inter', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'DM Serif Display', serif;
	font-weight: 400;
}

h1 {
	font-size: 100px;
	line-height: 0.8em;
	letter-spacing: -5px;
	margin: 20px 0 0;
	padding: 0;
	color: #fff;
	position: relative;	
}
	h1 span {
		display: block;
		font-size: 14px;
		line-height: 25px;
		text-transform: uppercase;
		font-weight: 600;
		letter-spacing: 6px;
		font-family: "Inter", sans-serif;
		margin: 15px auto 0;
	}

h2 {
	font-size: 35px;
	letter-spacing: 0;
	line-height: 1.1em;
}


h3 {
	font-size: 25px;
	line-height: 1.4em;
	letter-spacing: 0;
}

a:hover {
	color: #f9f9f9;
}


strong {
	font-weight: 700;
}

p,ol,ul,li {
	font-size: 14px;	
	line-height: 1.5em;
}

table.noborder td {
	border: none;
}

.bg-grey {
	background: #f9f9f9;
	color: #222;
}
.bg-slate {
	background: #222;
	color: #fff;
}
.bg-orange {
	background: #cf3f25;
	color: #fff;
}

.txt-orange {
	color: #cf3f25;
}

.sponsor-form input,
.sponsor-form select {
	width: 100%;
}

.overlay {
    position: fixed;
    top: -100vh;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    z-index: 99;
    transition: all 0.2s;
}
    .overlay.active {
        top: 0;
        opacity: 1;
    }
    .overlay .modal {
        width: 90%;
        max-width: 400px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
    }
    .overlay .modal table {
      width: 100%;
      margin: 0;
    }
    .overlay .modal table td {
      padding: 5px;
      font-size: 11px;
    }
    .overlay .modal table td:last-child {
      text-align: right;
    }
    .overlay .modal table tr:nth-child(odd) td {
      background: rgba(0,0,0,0.02);
    }
    .overlay .modal .total {
      background: #cce5ff;
      color: #004085;
      font-size: 12px;
      text-align: right;
      padding: 4px 8px;
      margin: 0 0 8px;
      font-weight: 600;
    }

    .overlay .button {
        display: block;
    }

.button {
	display: inline-block;
	background: #111;
	color: #fff;
	padding: 22px 48px;
	height: auto;
	border-radius: 40px;
	border: none;
	font-size: 16px;
	line-height: 16px;
	transition: all 0.2s;
}
  .button.grey {
    background: #dddddd;
    color: #888 !important;
  }
	.button.orange {
		background: #cf3f25;
    color: #fff !important;
	}
	.button:hover {
		color: #f9eb24;
	}
	.button.orange:hover {
		background: #ffc107 !important;
	}
    .button.blank {
        color: #cf3f25;
        background: transparent;
    }
    .button.small {
        padding: 11px 25px;
        border-radius: 20px;
        font-size: 14px;
    }


#timer {
		font-size: 40px;
		font-weight: 700;
		margin: 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
	}
     #timer div {
        text-align: center;
        margin: 0 10px;
    }
     #timer span {
        display: inline-block;
        margin: 0 5px;
        line-height: 1em;
    }
     #timer span.label {
        display: block;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 800;
    }

.section {
	padding: 40px;
	position: relative;
}

.section.fullscreen {
	width: 100%;
	min-height: 100%;
	height: auto;
	overflow: hidden;
}
	.home:after {
		content: "";
		opacity: 0.6;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
		z-index: 1;
		background: #000;
	}

	.home-hero-left,
	.home-hero-right {
		max-width: 310px;
		position: absolute;
		bottom: 0;
	 	z-index: 3
	}
	.home-hero-left {
		left: -90px;
	}
	.home-hero-right {
		right: -70px;
	}
	.bg-hero {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 30%;
		max-width: 500px;
		background: url(../images/bg-hero.jpg) 50% 50% no-repeat;
		background-size: cover;
		/*display: none;*/
	}
	.intro {
		text-align: center;
		padding: 5vh 20px 20px;
		position: relative;
		z-index: 2;
	}
	.cta {
		clear: both;
		margin: 60px 0 10px;
	}
	.registration {
		padding: 20px;
		color: #fff;
		max-width: 800px;
	}

	.topics {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.segment {
		padding: 30px 25px 1px;
		border-radius: 15px;
		background: #f9f9f9;
		color: #111;
		width: calc(33.33% - 40px);
		margin: 0 20px 50px;
	}
	.segment > h5 {
		border-bottom: solid 1px #ddd;
		padding: 0 0 15px;
		margin: 0 0 10px;
		font-size: 13px;
		line-height: 1em;
		font-family: "Inter";
		text-transform: uppercase;
		font-weight: 600;
		letter-spacing: 0;
	}
	.segment > h5 span {
		display: block;
		font-size: 25px;
		text-transform: capitalize;
		margin: 10px 0 0;
		font-weight: 400;
		font-family: 'DM Serif Display', serif;
		line-height: 1.3em;
	}
	.segment > p {
		font-size: 12px;
		width: 95%;
		margin: 0 0 20px;
		line-height: 1.5em;
	}

	.speakers {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
		.speakers h4 {
			width: 100%;
			font-family: "Inter";
			font-size: 16px;
			text-transform: uppercase;
			font-weight: 600;
			margin: 0 0 15px;
			letter-spacing: 0;
		}
		.speakers .moderator {
			width: 100%;
			margin: 0 0 30px;
		}
		.speaker {
			margin: 0 2% 35px 0;
			width: 31.33%;
		}
		.speaker .name,
		.moderator .name {
			font-size: 14px;
			margin: 0 0 5px;
			font-weight: 600;
		}
		.speaker .title,
		.moderator .title {
			font-size: 11px;
			width: 100%;
			padding: 0 10px 0 0;
			text-transform: uppercase;
			line-height: 1.4em;
		}
		.speaker img,
		.moderator img {
			max-width: 150px;
			width: 100%;
			display: block;
			margin: 0 0 15px;
			border-radius: 100%;
			display: block;
		}

.hero-wrap {
	width: 90%;
	max-width: 960px;
	max-height: 500px;
	margin: -100px auto 0;
	border-radius: 30px;
	overflow: hidden;
}
	.hero-wrap img {
		width: 100%;
		height: auto;
		border-radius: 20px;
	}

.tango-section {
	padding: 50px;
}
	.tango-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}

.packages {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
  .packages .package {
    width: calc(50% - 10px);
    margin: 0 0 20px;
    background: rgba(0,0,0,0.08);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px 30px 15px;
  }
  .packages .package.active {
    background: #cce5ff;
    color: #004085;
  }
  .packages .package label {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .packages .package input {
  	margin: 0;
  }
  .packages .package span {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    display: block;
    margin: 0 0 20px;
    line-height: 1em;
  }
  .packages .package span strong {
  	display: block;
  	font-size: 25px;
  	font-weight: 500;
  	margin: 0 0 8px;
  }

.payment {
  cursor: pointer;
}
  .payment .arrow {
  	transition: all 0.2s;
  	cursor: pointer;
  }
	.payment:hover .arrow {
		padding-left: 8px;
	}

@media screen and (max-width: 1600px) {
		.segment {
		width: calc(50% - 40px);
	}
}
@media screen and (max-width: 1024px) {
	html, body {
		font-size: 14px;
	}

	h1 {
		font-size: 135px;
		letter-spacing: -3px;
		text-align: center;
	}
		h1 span {
			font-size: 14px;
			letter-spacing: 5px;
		}

	.guests .columns {
		width: 100%;
	}
	.guests .bg-hero {
		display: none;
	}

	.home-hero-left,
	.home-hero-right {
		z-index: 2;
		width: 50%;
	}
		.home-hero-left {
			left: -60px;
		}
		.home-hero-right {
			right: -60px;
		}		

	.segment .columns {
		width: 100%;
		margin: 0;
	}
	.segment .speaker,
	.segment .moderator {
		text-align: center;
	}
	.segment .speaker img,
	.segment .moderator img {
		margin: 0 auto 30px;
	}
	.segment .speakers h4 {
		text-align: center;
	}
}

@media screen and (max-width: 768px) {

	.nav li {
		width: 100%;
		margin: 0 0 15px;
	}
	.nav li a {
		width: 100%;
		padding: 15px 12px;
		border-radius: 50px;
	}
	.nav li:before {
		display: none;
	}

	h1 {
		margin-top: 40px;
	}
	h1 span {
		margin-top: 30px;
	}

	.bg-hero {
		position: relative;
		width: 100%;
		height: 400px;
		border-radius: 20px;
		top: auto;
		right: auto;
		max-width: none;
	}

	.row .columns,
	.columns {
		width: 100%;
		display: block;
		float: none;
		padding: 0;
	}

	.segment {
		width: calc(100% - 40px);
	}

	.segment .speaker,
	.segment .moderator {
		width: 100%
	}

	.tango {
		padding: 20px !important;
	}
	.tango .container { 
		padding: 0;
	}

}

@media screen and (max-width: 600px) {

	.section {
		padding: 30px 20px !important;
	}

	#logo {
		max-width: 180px !important;
		margin: 0 auto 40px !important;
	}

	h1 {
		font-size: 75px;
		letter-spacing: -1px;
		text-align: center;
	}
		h1 span {
			font-size: 14px;
			letter-spacing: 5px;
		}
	h3, h5 {
		font-size: 20px;
	}
	h2 {
		text-align: center;
	}

	.container {
		padding: 0;
	}

	.button {
		width: 100%;
		display: block;
		font-size: 11px;
		letter-spacing: 0;
	}

	.cta {
		position: relative;
		z-index: 3;
	}
		.cta .button {
			padding: 20px 24px;
			font-size: 12px;
			width: auto;
		}

	.hero-wrap {
		margin: 10px auto 30px;
	}

	.home-hero-left,
	.home-hero-right {
		z-index: 2;
		width: 50%;
	}
		.home-hero-left {
			left: -60px;
		}
		.home-hero-right {
			right: -60px;
		}

	.tango-section {
		padding: 20px;
	}
		.tango-section .container {
			padding: 0;
		}

		iframe {
			height: 200px !important;
		}

	.packages .package {
		width: 100%;

	}

	.payment {
		margin: 0 0 20px;
	}

}
