:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f0f0f0;
    --dark-gray: #333333;
    --wc-green: #c2d500;
    --cba-blue: #012269;

    --btn-dark: #5c5c5c;
    --btn-dark-hover: #707070;
    --btn-action: #3a2b6c; /*#1b6085;*/ /*#545454;*/
    --btn-action-hover: #4f3a92; /*#237AA9;*/ /*C1DB2C;*/

    --success-color: #4a934a;
    --error-color: #d92d20;
    --padding-sm: 15px;
    --padding-md: 20px;
    --padding-lg: 30px;
    --padding-xl: 40px;
}

  /*#region Fonts*/
@font-face {
  font-family: "Bahnschrift";
  src: url(../fonts/Bahnscrift.ttf) format('truetype');
/*  src: url("../../fonts/Bahnscrift\ Test.ttf") format("ttf");
*/}
/*#endregion*/

@media all and (min-width: 820px) {
  .events {
    flex-direction: row !important;
    flex-wrap: nowrap;
  }

  .event {
    margin: var(--padding-sm) 10px !important;
  }

  #sectionForm, #sectionSuccess {
    margin: 20px 0px 0px 60px !important;
  }

  .home {
    padding: var(--padding-xl) var(--padding-md) var(--padding-lg) var(--padding-md) !important;
  }
}

@media all and (min-width: 1024px) {
  .home {
    padding: var(--padding-xl) var(--padding-lg) var(--padding-lg) var(--padding-lg) !important;
  }
}

@media all and (min-width: 1366px) {
  .events {
    justify-content: flex-start !important;
  }

  .event {
    max-width: 750px;
  }
}

html,
body {
  font-family: "Bahnschrift", Helvetica, sans-serif;
}

select, input, label, p, span, a {
  font-size: 14px;
}

  .display-none {
    display: none !important;
  }

  .disclaimer {
    font-size: 11px !important;
  }

  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    max-width: 200px;
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    /* border: none !important; */
    box-shadow: none !important;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    height: fit-content;
    font-family: "Bahnschrift", Helvetica, sans-serif;
  }

  .btn i {
    font-size: 16px;
    margin-right: 10px;
  }

  .btn-action {
    color: var(--white);
    background: var(--btn-action);
    border: 3px solid var(--btn-action);
  }

  .btn-action:hover {
    color: var(--white);
    background: var(--btn-action-hover);
    border: 3px solid var(--btn-action-hover);
  }

  .btn-secondary {
    color: var(--dark-gray);
    border: 3px solid var(--wc-green) !important;
    display: inline-block;
    position: relative;
  }

  .btn-secondary:before {
    content: '';
    background: var(--wc-green);
    border-radius: 28px;
    position: absolute;
    width: 0%;
    top: 0;
    left: 0;
    height: 100%;
    transition: 0.2s linear;
    z-index: -1;
  }

  .btn-secondary:hover:before {
    width: 100%;
  }

  .banner {
    display: flex !important;
    align-items: center;
    background-color: var(--cba-blue);
    width: 100%;
    height: 25px;
    position: relative;
    z-index: 1;
  }

  .banner-text {
    margin-left: 10px;
    font-size: 12px;
    color: var(--white);
    width: 100%;
  }

  .banner button {
    border: none;
    background: none;
    height: 25px;
  }

  .banner button span {
    color: var(--white);
    font-size: 20px !important;
    margin-right: 10px;
    line-height: 25px;
  }

  .header {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    width: 100%;
    height: 75px;
  }

  .header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: var(--padding-sm);
  }

  #headerLogo {
    height: 40px;
    width: auto;
  }

  .header-left .plus {
    font-size: 22px;
    margin: 0px 7px;
    color: white;
    font-weight: 200;
    text-align: center;  }

  .header-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: var(--padding-sm);
  }

  .landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: calc(80vh - 100px);
  }

  .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(51, 51, 51, 0.75), rgba(0, 0, 0, 0.75)),
      url("../images/cba 2025 hero.svg");
    background-size: cover;
    background-position:center;
  }

  #sectionCBA2025, #sectionDemo {
    background-color: var(--dark-gray);
    color: var(--white);
  }

  .landing-text {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 100;
    color: var(--white);
    text-align: center;
    line-height: 35px;
  }

  .landing-text.date {
    margin-bottom: var(--padding-sm);
  }

  .landing-text.location {
    margin-top: var(--padding-md);
  }

  .landing-logos-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }

  .logo-image {
    width: 230px;
    margin: 0 auto;
  }

  .plus {
    font-size: 22px;
    color: white;
    font-weight: 200;
    text-align: center;  }

  .home {   /* top right bottom left */
    display: flex    ;
        flex-direction: column;
        align-items: flex-start;
    padding: var(--padding-xl) var(--padding-sm) var(--padding-md) var(--padding-sm);
  }

  .home h2 {
    font-size: 40px;
    font-weight: 600;
  }

  .home p {
    font-size: 14px;
    line-height: 35px;
    padding: var(--padding-lg) 0px;
  }

  .home a.btn {
    align-self: center;
  }

.events {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

  .event {
    width: 100%;
    margin: var(--padding-sm) 0px;
    background-color: var(--white);
    color: black;
    border-radius: 28px;
    padding: var(--padding-sm);
  }

  .event-header {
    display: flex;
    width: 100%;
    margin-bottom: var(--padding-lg);
  }

  .event-header-left {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: flex-start;
  }

  .event-header-right {
    display: flex;
    width: 50%;
    justify-content: flex-end;
  }

  .event-date {
    font-size: 16px;
    font-weight: 700;
  }

  .event-time {
    font-size: 14px;
    font-weight: 200;
  }

  .event-title {
    font-size: 22px;
    font-weight: 700;
  }

  .event-subtitle {
    font-size: 14px;
    font-weight: 400;
  }

  .speakers-images img {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    margin: var(--padding-md) 0px;
  }

  .speakers {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .speakers p {
    line-height: normal !important;
  }

  .speaker-info {
    font-size: 11px !important;
    font-weight: 200;
    padding: 0px !important;
  }

  .speaker-info.moderator {
margin: 10px 0px;
  }

  .speaker-name {
    font-size: 12px;
    font-weight: 400;
    margin-right: 5px;
  }

  .event-info {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px !important;
    padding: var(--padding-sm) 0px !important;
  }

  #sectionForm, #sectionSuccess {
    position: relative;
    z-index: 1;
    background: rgb(255, 255, 255, 0.9);
    color: var(--dark-gray);
    border-radius: 28px;
    padding: var(--padding-md);
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
  }

  #sectionForm h2, #sectionSuccess h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
  }

  #sectionForm p, #sectionSuccess p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 200;
    margin-bottom: 20px;
  }

  .form-row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 10px 0px;
  }

  .form-row input:not([type=checkbox]) {
    width: 100%;
  }

  #sectionForm .btn-action {
    max-width: 100px;
    align-self: center;
    margin-top: 20px;
  }

  .form-row-check {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    text-align: start;
  }

  .form-row-check label {
    margin-left: 5px;
    /* padding-top: 2px; */
  }

  #sectionSuccess .downloads {
    margin: 30px 0px;
  }

  #sectionSuccess .document {
    display: flex;
    width: 100%;
    margin: 20px 0px;
  }

  #sectionSuccess .document span {
    width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #sectionSuccess .document a {
    width: 25%;
    text-decoration: underline;
    margin-left: 10px;
  }

  #sectionSuccess .document a:visited {
    color: var(--cba-blue);
  }

  .form-row-buttons {
    display: flex;
    flex-direction: row !important;
    justify-content: space-evenly;
    margin: 10px 0px;
  }

  #sectionForm .btn-action {
    max-width: 128px;
    align-self: center;
    margin-top: 20px;
  }

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
  }