/************************************************* CSS RESETS */

@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html, body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: initial;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    flex-direction: column;
}

#error-page, #base-page {
    overflow-x: hidden;
}

.line-break {
    display: block;
}

/************************************************* Typography */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;600;700;800&display=swap');

h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    font-family: 'Inter' !important;
}

h2 {
    font-size: 37px !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    color: #000000 !important;
    font-weight: 400 !important;
}

h3 {
    font-size: 21px;
}

p {
    line-height: 1.4em;
    display: block;
    font-size: 18px;
}

.bold {
    font-weight: 700 !important;
}

.thin {
    font-weight: 400 !important;
}

/************************************************* General Styles */

body {
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #000000 !important;
}

.black-text {
    color: #000 !important;
}

.desktop {
    display: flex;
}

.mobile {
    display: none !important;
}

/************************************************* Navigation Bar */

#logout-bar {
    height: 40px;
    background-color: #333333;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.logout {
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 5px;
    margin-left: auto;
}

.logo img {
    width: 200px;
}

/************************************************* General Structure */

.container {
    display: inline-block;
    cursor: pointer;
}

hr {
    width: 100%;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-top: 1.5px solid #c8c8c8 !important;
}

input[type="text"]{
    background-color: #5A5A5A10;
    color: #000;
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #807C7B40;
}

input[type="password"]{
    background-color: #5A5A5A10;
    color: #000;
    padding-left: 10px;
    padding-right: 2px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #807C7B40;
}

select {
    -webkit-appearance: none;
    background-color: #5A5A5A10;
    color: #5a5a5a;
    padding-left: 10px;
    padding-right: 30px;
    height: 40px;
    line-height: 40px;
    width: auto;
    border: 1px solid #807C7B40;
    background-image: url('/confluent/EmeaCab/images/arrow.svg');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .85em auto, 100%;
}

/* LOGIN PAGE  ***************************/

#auth-page {
/*    height: 100vh;*/
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

body > div:first-of-type {
    width: 100%;
}

.auth-shapes {
    position: absolute;
    width: 26%;
}

#shapes-1 {
    bottom: 52px;
    left: 0;
    position: fixed;
    width: 28%;
}

#shapes-2 {
    right: 0;
    top: -15%;
}

#dots-1 {
    bottom: 9%;
    right: -5px;
    width: 32%;
    opacity: .3;
}

#dots-2 {
    top: 35px;
    left: -5px;
    width: 32%;
    opacity: .3;
}

#base-logo {
    width: 18%;
}

#error-page, #base-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#error-container, #base-page-container {
    margin-top: -100px;
    text-align: center;
}

#base-page-container h1 {
    margin-top: 50px;
    margin-bottom: 15px;
}

h1.login {
    font-size: 42px;
    padding: 0px !important;
    margin-left: 0px;
    color: #000;
}

h1.login-pw {
    font-size: 42px;
    padding-bottom: 0px;
    margin-left: 0px;
    padding-left: 0px;
    color: #000;
}

/* EVENT PAGE ***************************/

li {
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 10px !important;
    line-height: 1.4em;
}

li:nth-last-child(1) {
    margin-bottom: 0 !important;
}

ul {
    margin-bottom: 20px !important;
}

.section-title {
    font-size:14px;
    font-weight: bold;
    color:#000000;
    padding-bottom:15px;
    border-bottom:2px solid #1a1a1a20;
    padding-top:15px;
}


#event-container {
    width:80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-top:50px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

a {
    color: #0079FF;
}

#event-banner {
    width: 100%;
/*    min-height: 400px;*/
    min-height: 340px;
    overflow: hidden;
    padding-bottom: 0px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 3px solid #787878;
}

.event-banner-text {
    width: 80%;
    max-width: 1200px;
    margin-left:auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size:60px;
    line-height:1.2em;
    font-weight:300;
}

.event-banner-text h1 {
    font-size: 48px;
    margin: 0;
    margin-bottom: 15px !important;
    margin-top: 45px !important;
    line-height: 1.1em;
    color: #da291c;
    font-weight: 700;
}

.event-banner-text h2 {
    font-size: 28px !important;
    margin-bottom: 45px !important;
    margin: 0em;
    display: block;
}

h3 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 28px;
    color: #009ADA;
    line-height: 1.5em;
}

h4 {
    margin-bottom: 8px;
    font-size: 24px;
}

#banner-logo {
    width: 17%;
}

/*
#banner-shape-1, #banner-shape-2 {
    position: absolute;
    right: 5%;
    top: -5%;
    height: 400px;
}
*/

#banner-shape-1, #banner-shape-2 {
    position: absolute;
    right: 13%;
    top: -5%;
    height: 315px;
}

#banner-shape-2 {
    display: none;
}

#calendar-header {
    border-bottom: 0;
}

.sidebar-nav {
    width: 298px;
    position: sticky;
    align-self: flex-start;
    top: 50px;
}

.main-content {
    width: 70%;
}

.body-text-pad {
    margin-bottom: 20px;
    padding-bottom: 0;
}

p.event-section-title {
    margin-bottom: 10px;
    font-weight: 700;
}

.networking .event-section-title {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.location .event-section-title {
    margin-top: 30px;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.event-section-title-adjustment {
    margin-top: 30px !important;
    margin-bottom: 10px !important;
}

.event-section-title-link-below {
    margin-bottom: 10px !important;
    margin-top: 30px !important;
}

.networking-line-break {
    display: block;
    font-weight: 800;
}

.address-section p {
    margin-bottom: 0 !important;
}

a.event-link {
    color: #da291c;
    text-decoration: underline !important;
    cursor: pointer;
}

a.event-link:hover {
    color: #B42015;
}

.body-text-bold-pad {
    padding-bottom: 15px;
    font-family: 'Inter';
}

a.body-text-pad {
    margin-bottom: 20px;
    padding-bottom: 0;
    display: block;
}

.main-content p {
    line-height: 1.4em;
}

.sidebar-nav-info {
    width: 100%;
    padding: 7%;
    background-color: #000000;
    color:#fff;
    display: flex;
    flex-direction: column;
}

.sidebar-nav-info p:nth-child(1) {
    font-size: 20px;
    line-height: 1.2em;
    padding-bottom: 7px;
    font-weight: 600;
    color: #ffffff;
}

.sidebar-nav-info p:nth-child(2) {
    padding-bottom: 15px;
}

.logout-link {
    width: auto;
    color:#fff;
    text-decoration: none;
    font-family: 'Inter';
    margin-left: auto;
    font-size: 16px;
    -webkit-appearance:none;
    cursor: pointer;
}

.logout-link:hover {
    text-decoration: none !important;
    color: #f0f0f0;
}

.header-reg {
    width: auto;
    color: #fff;
    background-color: #da291c;
    text-decoration: none;
    padding: 0px 25px 0px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 50px;
    max-width: 255px;
    margin-right: auto;
    font-family: 'Inter';
    font-size: 16px;
    -webkit-appearance: none;
    -webkit-appearance: none;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

.header-reg:hover, .sidebar-nav .header-reg:hover {
    background-color: #B42015;
    color: #fff;
    text-decoration: none;
}

.back-to-top:hover, .back-to-top:focus {
    background-color: #da291c;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.sidebar-nav .header-reg {
    margin-top: 10px;
    background-color: #da291c;
    color: #fff;
}

.back-to-top {
    color: #fff;
    text-decoration: none;
    padding: 0px 5px 0px 5px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 50px;
    width: 185px;
    -webkit-appearance: none;
    margin-left: auto;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 700;
}

.back-to-top span {
    display: inline-block;
    padding-right: 10px;
    margin-bottom: -5px;
}

.back-to-top img {
    margin-top: -8px;
}

.grey-menu-level {
    width:100%;
    background-color: #f8f8f8;
    border-bottom:1px solid #c8c8c8;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 15px 0px 15px 25px;
}

.grey-menu-level:nth-last-child(1) {
    border-bottom:0px solid #CCCCCC;
}

.grey-menu-level:hover {
    background-color:#E3E3E3;
    text-decoration: none;
    cursor: pointer;
}

a.grey-menu-level p {
    color:#000;
    text-decoration: none;
    margin-bottom: 0;
    margin-left: 5px;
    font-size: 16px;
}

.grey-menu-level .icon {
    width: 40px;
    display: flex;
}

section {
    margin-bottom: 70px !important;
}

.intro {
    font-size: 20px;
}

.intro p:nth-child(1) {
    font-size: 32px;
/*    color: #da291c;*/
    color: #000000;
}

.separator {
    display: flex;
    margin-bottom: 25px;
}

.separator img {
    margin-right: 15px;
    width: 50px;
    border: 3px solid #f0f0f0;
    border-radius: 50%;
    height: 50px;
    background-color: #f0f0f0;
}

.icon img {
    width: 25px !important;
    height: 20px !important;
}

.icon-height-adjust img {
    height: 25px !important;
}

.separator p {
    font-size: 22px;
    border-bottom: 2px solid #da291c;
    padding-bottom: 10px;
    width: 100%;
    align-self: flex-start;
    color: #333;
    font-weight: 600;
}

.sessiontitle {
    font-size: 16px;
    padding-bottom: 0;
    font-weight: 700;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.time p {
    font-size: 16px !important;
    margin-bottom: 5px !important;
    margin-top: 5px !important;
    font-weight: 400;
}

.section-details {
    display: flex;
}

.networking .section-details, .location .section-details {
    flex-direction: column;
}

.flex-column {
    flex-direction: column;
}

.section-details img {
    margin-right: 30px;
    align-self: flex-start;
    height: auto;
    object-fit: fill;
    width: 100%;
}

.event-section-title {
    font-family: 'Inter';
    padding-bottom: 7px;
}

.event-climate {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.event-climate p.climate-detail {
    width: 45%;
    margin-right: 5%;
    margin-bottom: 0;
}

.weather {
    display: flex;
    width: 50%;
    height: 180px;
}

.temp:nth-child(1) {
    border: 2px solid #da291c;
    width: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
}

.temp:nth-child(2) {
    border-top: 2px solid #da291c;
    border-right: 2px solid #da291c;
    border-bottom: 2px solid #da291c;
    width: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.temp p:nth-child(1) {
    font-size: 60px;
    color: #000;
    margin-bottom: 0 !important;
    margin-right: -12px;
}

.temp p:nth-child(2) {
    margin-top: -5px;
}

.calendar {
    width: 100%;
    margin-bottom: 30px;
}

.event-row {
    width:100%;
    display: flex;
    border-bottom:1px solid #CCCCCC;
}

.event-row:nth-last-child(1) {
    border-bottom:0px solid #CCCCCC;
}

.event-date {
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px;
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.time {
    width: 30%;
    border-right: 2px solid #c8c8c8;
    padding: 10px 20px;
}

.time .mobile {
    display: none;
}

.event-info {
    width: 75%;
    padding: 10px 20px;
}

.contact-info-block .event-section-title, .networking-block {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
    margin-top: 10px !important;
}

#meeting-info, #contact-info, #networking-info {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

#networking-info {
    margin-top: 15px;
}

.networking-title {
    font-size: 18px !important;
}

.meeting-info-block, .contact-info-block, .networking-block {
    width: 50%;
    border-left: 4px solid #c8c8c8;
    padding-left: 30px;
}

.contact-info-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.networking-block {
    display: flex;
    align-items: center;
}

.networking-block span {
    display: block;
    font-size: 16px;
    line-height: 23px;
}

.networking-block span:first-of-type {
    margin-top: 5px;
}

#contact-text {
    margin-top: 15px;
}

#back-top {
    text-align: right;
    margin-top: 50px;
    margin-bottom: 80px;
    margin-left: auto;
}

#footer {
    width: 100%;
    background-color: #0e0e0e;
    display: flex;
    flex-direction: column;
    color:#fff;
    font-family: 'Inter';
    height: 350px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-content {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 80%;
    max-width: 1200px;
    align-content: center;
    justify-content: space-between;
}

#footer .event-link {
    text-decoration: none !important;
}

.footer-content img {
    width: 300px;
}

.footer-content div:nth-child(1) {
    margin-bottom: 30px;
}

.ft_title {
    font-size: 20px;
    font-family: 'Inter';
}

/* Body Styles */

.hr {
    width: 100%;
    height: 10px;
    margin-bottom: 35px;
    border-bottom: solid 1px #c7c9c8;
    clear: both;
}

li.list {
    line-height: 1.4em;
    padding-bottom:5px;
    background-size: 15px;
    background-position: 0 10px;
    padding-left: 5px;
    font-size: 20px;
}

ol.list {
    line-height: 1.4em;
    padding-bottom:5px;
    background-size: 15px;
    background-position: 0 10px;
    padding-left: 5px;
    font-size: 20px;
}

/* Page Styles */

.container {
    margin: auto;
    background-color: #ffffff;
    z-index: 100;
    width: 100%;
    color: #53565A;;
    padding-bottom: 100px;
    padding-top:6 0px;
    overflow: hidden;
}

.content {
    margin: auto;
    max-width: 1000px;
    width: 80%;
    height: auto;
    padding-bottom: 50px;
}

/* Footer Styles */

#footer {
    clear:both;
    width:100%;
    min-width:800px;
    background-color: #0e0e0e;
    height:auto;
    padding-top:50px;
    margin-top:50px;
}

.footer_content {
    margin:auto;
    height:auto;
    width:900px;
    text-align:center;
    padding-bottom:50px;
}

.ft_info {
    font-size:18px;
    color:#ffffff;
    font-weight:300;
}

a.ft_link {
    color: #DA291C;
    text-decoration: none;
}

a.ft_link:hover {
    text-decoration: none;
    color: #14449A;
}

#secondary-footer {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #000;
}

.copyright {
    font-size: 12px;
    color: #464646;
    margin-bottom: 0;
}

.copyright a {
    color: #464646;
}

#copyright-spacing {
    margin-left: 10px;
    margin-right: 10px;
}

div#login-copyright {
    text-align: center;
    color: #adadad;
    margin-top: 20px;
}

/************************************************* Login In Pages Styles */

body {
    position: relative !important;
}

.submit_button {
    margin: auto;
    color: #fff;
    background-color: #da291c;
    text-decoration: none;
    padding: 0px 100px 0px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 50px;
    -webkit-appearance: none;
    border: none;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
    font-family: 'Inter';
    color: #fff;
    background-color: #da291c;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px;
    white-space: normal;
    min-width: 130px;
    cursor: pointer;
}

.log-in-form {
    width: 75%;
    max-width: 1200px !important;
    margin: auto !important;
    background-color: #fff !important;
    margin-top: 50px !important;
    text-align: center !important;
/*    border: 2px solid #787878;*/
}

div#log-in-form-content {
    padding: 100px 50px;
}

.log-in-form label {
    display: block;
    width: 100%;
    margin-bottom: -10px;
    font-weight: 400;
}

.form-info {
    padding-top:40px;
    text-align: left;
    width:86%;
    margin:auto;
}


.welcome {
    font-size:38px;
    line-height: 1.3em;
    font-weight: 900;
    color:#000;
    width:100%;
    margin:auto;
    text-align:center;
}

#login-logo {
    width: 24%;
    margin-bottom: 35px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-top: 80px;
}

.description {
    font-size:16px;
    line-height: 1.3em;
    width:80%;
    color:#000;
    margin:auto;
    text-align:center;
    font-family: sans-serif;
    font-weight: 400;
    padding-bottom: 0;
}

label {
    font-size:14px;
    padding-bottom:15px;
    color:#53565A;
    width: 80%;
    margin:auto;
    text-align:left;
    font-family: 'Inter';
}

.loginField, .loginFieldRed {
    background-color: #f0f0f0;
    border-radius: 0px !important;
    border: 1px solid #dfdfdf;
    text-indent: 6px;
    font-weight: 400;
    height: 32px;
    font-size: 12px;
    width: 100%;
    margin: auto;
    font-family: 'Inter' !important;
}

.loginFieldRed {
    background-color: #f0f0f0;
    border-radius: 0px !important;
    border: 1px solid  #dfdfdf;
    text-indent:3px;
    font-weight: 400;
    height:28px;
    font-size: 12px;
    width: 100%;
    margin:auto;
}

.loginFieldRed {
    border: 1.5px solid #0079FF;
}

#asterix {
    color: #53565A;
}

#copyright {
    padding: 20px 0;
    font-size: 10px;
    position: fixed;
    bottom: 0;
    background-color: #000000;
    width: 100%;
    color: #464646;
    font-size: 0.8em;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    font-family: sans-serif;
}

#login-form-container {
    width: 100%;
    position: relative;
    z-index: 0;
}

.submit_button:hover, .back-to-top:hover {
    background-color: #B42015;
    cursor: pointer;
}

.highlight {
    color: #b71234;
}

#login-form-email {
    width: 90%;
    margin-top:10px;
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
}


#login-form-table {
    margin: auto;
}

#login-email-container {
    width: 90%;
    margin-top:10px;
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
}

#back-to-top-span {
    display: inline-block;
    padding-right: 10px;
    margin-bottom: -5px;
}

.error-login-message {
    background-color: #f0f0f0;
    color: #000;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 25px;
    margin-top: 35px;
    padding: 45px 30px 35px 30px;
    font-family: sans-serif;
    line-height: 18px;
    text-align: center;
    position: relative;
    max-width: 470px;
}

.error-login-message p {
    font-size: 14px;
    margin-bottom: 0;
}

#login-email-field {
    width: 70%;
    margin: 50px auto;
    max-width: 470px;
}

.error-login-exclamation {
    color: #fff;
    position: absolute;
    top: -17px;
    background-color: #da291c;
    width: 15px;
    height: 15px;
    font-size: 25px;
    font-weight: 800;
    font-family: sans-serif;
    border-radius: 50%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
}

div#line-break-login {
    display: block;
    margin-top: 10px;
}

.hide-mobile {
    margin-left: 10px;
    margin-right: 10px;
}

#agenda-no-slot-descript {
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
}

.para-space-top {
    margin-top: 10px;
}

.margin-padding-bottom-0 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.margin-top-0 {
    margin-top: 0 !important;
}

#login-banner-desktop {
    display: block;
}

#login-banner-mobile {
    display: none;
}

/***************************************************************** HEADSHOTS PAGE */

#headshots-page .nav, #headshots-page #countdown-container-gradient, #headshots-page .footer {
    display: none !important;
}

#headshots-page {
    background-color: #1c1c1c;
}

#headshots-page .footer-line {
    margin-top: 200px;
}

.headshots-banner {
    width: 100%;
}

#mobile-headshots-banner {
    display: none;
}

#desktop-headshots-banner {
    display: block;
}

.theme-header-module__themeHeader--_qNqy {
    height: 0 !important;
}

#headshots-container {
/*    background-image: url(../images/mandalay-bay-bg.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #f4f4f4;
    background-position-y: -270px;
    margin-bottom: -200px;
}

#headshot-content {
    margin: auto;
    width: 1000px !important;
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: block !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: 50px;
    margin-bottom: 60px;
    background-color: #f4f4f4;
}

#headshot-content-inner {
    padding: 85px 100px 0 100px;
}

#headshots-footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    margin-bottom: 0;
}

#headshot-directions {
    margin-left: 15px;
}

#headshots-logo img {
    width: 45%;
    margin-bottom: 40px;
    margin-top: 100px;
}

#headshot-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 30px;
    color: #000000;
    font-family: Gilroy-Bold;
    line-height: 1.2em;
    margin-bottom: 15px !important;
    text-transform: initial !important;
}

#headshots-page .hr {
    margin-bottom: 25px !important;
    margin-top: 15px !important;
    border-bottom: solid 1px #787878 !important;
}

#headshot-requirements li, #logo-requirements li, #headshot-directions li {
	line-height: 1.6em;
	font-size: 18px;
    margin-left: 30px;
}

#headshot-requirements li, #logo-requirements li {
    margin-left: 0;
}

#headshot-directions li {
    margin-top: 0;
}

#headshots-page .content iframe {
    height: 915px;
    width: 100%;
    border: 0 !important;
}

.headshots-header {
    font-family: Gilroy-Bold;
    font-size: 20px;
}

.participants-content [data-name="Babineaux-Fontenota"] .name:nth-child(2) {
    line-height: 1;
    margin-top: 10px !important;
}

#upload-box-container {
    background-color: #f4f4f4;
}

#headshots-page .content {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin-top: -25px !important;
}

#location-info-split {
    display: block; 
}

/************************************************* Media Queries */

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

    .time {
        width: 22%;
    }

    .event-banner-text h1 {
        font-size: 50px;
        line-height: 1em;
        width: 40%;
    }

    .event-banner-text h2 {
        font-size: 20px !important;
    }

    .main-content {
        width: 65%;
    }

}

@media screen and (max-width: 1400px) {
    .time {
        width: 25%;
    }
}

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

    .event-banner-text h1 {
        width: 53%;
    }

    #banner-shape-1 {
        height: 360px;
        height: 275px;
    }

    .time {
        width: 30%;
    }

    #event-banner {
        min-height: 315px;
    }

    #banner-logo {
        margin-top: 4%;
    }

}

@media screen and (max-width: 1200px) {
    .contact-info-block, .networking-block {
        padding-left: 10px;
    }
    .main-content {
        width: 62%;
    }
}

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

    #headshots-page .content {
        margin-top: 0px !important;
    }

    #headshots-page .content iframe {
        height: 850px;
    }

    #headshot-content-inner {
        padding: 60px 75px 0 75px;
    }

    #mobile-headshots-banner {
        display: block;
    }

    #desktop-headshots-banner {
        display: none;
    }

    #headshot-content {
        width: 80% !important;
    }

    .contact-info-block, .networking-block {
        padding-left: 30px;
    }

    .time {
        width: 22%;
    }

    #banner-logo {
        width: 25%;
    }

    #banner-shape-1 {
        height: 280px;
        right: 8%;
        top: 0%;
    }

    .sidebar-nav {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 40px;
    }

    .main-content {
        width: 100%;
    }

    #event-container {
        flex-direction: column;
        width: 85%;
    }

    .sidebar-nav {
        position: initial;
    }

    .sidebar-nav-info {
        padding: 5%;
    }

}


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

    #headshots-page .content:first-of-type {
         padding-bottom: 0;
    }

    #headshots-logo img {
        width: 65%;
    }

    .event-banner-text h1 {
        width: 68%;
        font-size: 47px;
    }

    .event-banner-text h2 {
        font-size: 19px !important;
    }

    .form {
        width: 90%;
    }

    #banner-shape-1 {
        height: 265px;
    }

}

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

    .sessiontitle {
        margin-top: -10px !important;
    }

    .location .event-section-title {
        margin-top: 15px;
    }

    #banner-logo {
        width: 33%;
    }

    #banner-shape-1 {
        height: 243px;
        right: -7%;
        top: initial;
        transform: rotate(90deg);
        bottom: 0;
    }

    .log-in-form {
        width: 700px !important;
        max-width: 700px !important;
    }

    .event-banner-text h2 {
        font-size: 22px;
    }

    .section-details {
        flex-direction: column;
    }

    .event-climate {
        flex-direction: column;
    }

    .event-climate p.climate-detail {
        width: 100%;
        margin-bottom: 30px;
    }

    .temp {
        padding-bottom: 3%;
    }

    .weather {
        width: 100%;
    }

    .section-details img {
        height: 200px;
        object-fit: cover;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .event-row {
        flex-direction: column;
    }

    .time {
        width: 100%;
        border-left: 2px solid #da291c;
        border-right: 0px solid #da291c;
        padding-bottom: 5px;
    }

    .event-info {
        width: 100%;
        border-left: 2px solid #da291c;
        padding-top: 0px;
    }

    .event-date {
        width: 100%;
        border-left: 2px solid #da291c;
        border-right: 0px solid #da291c;
    }

    .time .desktop {
        display: none;
    }

    .time.mobile {
        display: block;
        padding-bottom: 5px;
        border-left: 0px;
    }

    .contact-info {
        flex-direction: column;
    }

    #event-banner {
        min-height: 400px;
    }

}


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

    .event-banner-text h1 {
        width: 68%;
        font-size: 40px;
    }

    .event-banner-text h2 {
        font-size: 18px !important;
    }

    #login-banner-desktop {
        display: none;
    }

    #login-banner-mobile {
        display: block;
    }

}

/************************** mobile breakpoint */



@media screen and (max-width : 768px) {
    #headshot-content h3 {
        font-size: 25px;
    }

    #shapes-2 {
        top: -31%;
    }

    .log-in-form {
        margin-top: 70px !important;
    }

    .auth-shapes {
        width: 50% !important;
    }

    .footer-content img {
        margin-bottom: 35px;
    }

    .sidebar-nav-info p:nth-child(1) {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .sidebar-nav-info {
        padding: 3% 5%;
    }

    #auth-page {
        height: auto;
    }

    a.button {
        margin: 15px;
        float: none;
    }

}


@media screen and (max-width: 768px) {
    #footer {
        min-width: initial;
    }
    .footer-content {
        display: block;
    }
    .contact-info-block:nth-child(2), .networking-block:nth-child(2) {
        margin-top: 25px;
    }
    #contact-info {
        display: block;
    }
    .error-login-message {
        width: 100%;
    }

    div#login-email-field {
        width: 100%;
    }

    .submit_button {
        height: 40px;
        font-size: 16px;
    }

    h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .desktop {
        display: none !important;
    }

    .mobile {
        display: flex !important;
    }

    .contact-row:nth-child(1) {
        width: 100%;
        min-width: 0px;
    }

    .contact-row {
        width: 100%;
        min-width: 0px;
    }

    .form {
        width: 90%;
    }

    .form-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        border-bottom:2px solid #000;
        padding-bottom:10px;
        margin-bottom:40px;
        padding-top:40px;
    }

    #logout-bar {
        padding-top: 20px;
        height: auto;
        padding-bottom: 20px;
    }

    #nav {
        position: fixed;
        background-color:#fff;
        width:100%;
        z-index: 10;
    }

    .logo {
        margin-left:10%;
    }

    .main-copyright {
        text-align: center;
        margin-right: 0%;
    }

    h1.login {
        font-size:38px;
    }

    .event-view {
        width: 100%;
        margin:auto;
        padding-top:20px;
        padding-bottom:20px;
    }

    .row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 0px;
    }

    .arrow {
        display: none;
    }

    .body {
        color:#1a1a1a;
    }

    .form {
        width:90%;
        margin:auto;
        background-color:#fff;
        min-height: 900px;
        margin-top:140px;
    }

}

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

    #headshots-logo img {
        width: 78%;
    }

    .contact-info-block, .networking-block {
        padding-left: 30px;
        width: 82%;
    }

    #shapes-2 {
        right: -10%;
    }

    h2 {
        font-size: 31px !important;
    }

    .description {
        width: 100%;
    }

    .event-banner-text h1 {
        width: 88%;
        font-size: 44px;
    }

    #banner-logo {
        width: 43%;
    }

    #banner-shape-1 {
        height: 155px;
    }

    .log-in-form {
        width: 90% !important;
    }

    #login-logo {
        width: 40%;
    }

    #auth-page {
        height: auto;
    }

}

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

    h2 {
        font-size: 25px !important;
    }

    #login-logo {
        margin-top: 50px;
    }

    .log-in-form {
        margin-top: 45px !important;
    }

    .intro p:nth-child(1) {
        font-size: 24px;
    }

}

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

    .contact-info-block, .networking-block {
        width: 80%;
    }

    #base-message {
        width: 89%;
        margin-right: auto;
        margin-left: auto;
    }

    #base-page-container {
        margin-top: -250px;
    }

    #base-logo {
        width: 45%;
    }

    #error-page h1, #base-page h1 {
        font-size: 38px;
        width: 61%;
        margin-right: auto;
        margin-left: auto;
    }

    #error-page h1, #base-page h1 {
        width: 85%;
        line-height: 40px;
    }

    #base-page br {
        display: none;
    }

    #login-email-field {
        margin: 40px auto;
    }

    #login-logo {
        width: 55%;
    }

    h2 {
        font-size: 22px !important;
    }

    #back-top {
        margin-bottom: 10px;
    }

    h1 {
        font-size: 38px;
    }

    #footer {
        min-width: 0px;
    }

    h3 {
        margin-bottom:30px;
    }

    .agenda {
        flex-direction: column;
    }

}


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

    #headshot-content-inner {
        padding: 30px 35px 0 35px;
    }

    .hide-mobile {
        display: none;
    }

    .line-break-mobile {
        display: block;
    }

    #banner-shape-1 {
        right: 0;
        top: 0;
        transform: initial;
        bottom: 0;
        height: 135px;
    }

    #banner-shape-2 {
        top: initial;
        bottom: 0;
        display: block;
        height: 200px;
        right: -48px;
    }

    .welcome {
        font-size: 25px;
        line-height: 1.0em;
        width:100%;
        margin:auto;
    }

    .description {
        width:100%;
        margin:auto;
    }

    label {
        width: 80%;
        margin:auto;
    }

    .log-in-form {
        width: 90%;
        margin-bottom: 100px;
    }

    .form-info {
        width:80%;
    }

}


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

    .contact-info-block, .networking-block {
        width: 95%;
    }

    .auth-shapes {
        width: 50% !important;
    }

    #shapes-2 {
        right: 0;
        top: initial;
        bottom: 52px;
        position: fixed;
    }

    section {
        margin-bottom: 45px;
    }

    #footer {
        height: 400px;
    }

    .footer-content {
        margin: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .footer-content img {
        width: 300px;
        margin-bottom: 30px;
    }

    .event-banner-text h1 {
        font-size: 34px;
        margin-top: 30px !important;
    }

    .event-banner-text h2 {
        margin-bottom: 30px !important;
    }

    #event-banner {
        min-height: 350px;
    }

    .event-banner-text {
        margin: auto;
    }

    #banner-shape-1 {
        height: 90px;
    }

    #banner-shape-2 {
        height: 127px;
    }

    .event-banner-text h1 {
        font-size: 31px;
    }

    #banner-logo {
        width: 53%;
    }

    .event-banner-text h2 {
        font-size: 18px !important;
    }

    #logout-bar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    div#log-in-form-content {
        padding: 30px 10px;
    }
}


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

    #base-page-container {
        margin-top: -350px;
    }

    #logout-bar img {
        width: 100% !important;
    }

    .contact-row:nth-child(1) {
        flex-direction: column;
    }

    .contact-row {
        flex-direction: column;
        margin-top:60px;
    }

    .contact-card {
        width: 60%;
        margin: auto;
        margin-bottom:30px;
    }

    .login-left input {
        align-self: flex-start;
        width: 250px;
        -webkit-appearance:none;
    }

    .sub-footer img {
        margin:auto;
        padding-bottom: 30px;
        width: 60%;
    }

    .logo img {
        width: 150px;
        margin-top:10px;
    }

    select {
        width: 100%;
    }

    #logout-bar img {
        width: 100% !important;
    }

    .form {
        margin-top:60px;
        margin-bottom:60px;
    }

}

/*
@media screen and (max-height: 900px) {
    #copyright {
        position: relative;
        z-index: 2;
    }
    body {
        display: none;
    }
    .log-in-form {
        margin-bottom: 40px !important;
    }
    #error-page #copyright, #base-page #copyright {
        position: absolute;
    }
    #shapes-1 {
        position: absolute;
        z-index: 1;
    }
}
*/
