@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root{
      --bg: #0b1220;
      --bg-soft: #0f172a;
      --card: #0f1628;
      --muted: #93a4bf;
      --text: #e6eefc;
      --accent: #6aa6ff;
      --accent-2: #78e3ff;
      --ring: rgba(106,166,255,.45);
      --cta: #5ce1a9;
      --cta-2: #1f7a62;
      --border: rgba(255,255,255,.08);
      --shadow: 0 10px 30px rgba(0,0,0,.35);
      --radius: 18px;
    }

    *{box-sizing:border-box}

    html,body {
      margin:0;
      height:100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Source Sans 3", sans-serif;
      font-size: 1.6rem;
      color: var(--text);
      background: #00062E;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body::before {
      content: "";
      background: url('/themes/technopolis/css/images/webform-bg.png');
      position: absolute;
      top: 50px;
      right: -50px;
      width: 50%;
      height: 930px;
      z-index: -1;
    }

    a{color:inherit;}

    a:hover, button:hover {
      color: #fff;
      opacity: 0.7;
      transition: 0.5s;
    }

    .container {
      width:min(1670px, 92%); 
      margin-inline:auto;
      padding-left: 20px;
      padding-right: 20px; 
    }
    

    header {
      margin-bottom: 120px;
    }

    header > .container {
      padding: 0;
    }

    header.hero {
      position:relative; 
      padding:88px 0 56px; 
      overflow:hidden;
    }

    header .logos {
      background-image: linear-gradient(rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
      border-radius: 0px 0px 16px 16px;
      opacity: 1;
      padding: 15px 35px;
      font-size: 25px;
      font-weight: 300;
      margin: 0 -10px;
    }

    header .logos img {
      margin: 0 5px;
    }

    .hero-grid {
      display:flex;
      justify-content: space-between;
    }

    .hero-grid > div {
      width: 50%;
    }

    .hero-grid > .right .field {
      padding-left: 10%;
    }

    .hero-grid > .left h4 {
      font-size: 20px;
      color: #0B5FFF;
      margin-bottom: 20px;
    }

    .hero-grid > .left h5,
    #landing-speakers .field h5 {
      font-weight: normal;
      text-transform: uppercase;
      background: url('/themes/technopolis/css/images/landing-btn-bg.svg') no-repeat center;
      margin-bottom: 20px;
      height: 41px;
      line-height: 41px;
      width: 96px;
      text-align: center;
      display: inline-block;
    }

    .hero-grid > .left a {
      display: block;
      height: 50px;
      line-height: 50px;
      text-align: center;
      background: #0B5FFF;
      border-radius: 4px;
      text-transform: uppercase;
      font-weight: bold;
      margin-top: 50px;
    }

    #location {
      margin-top: 50px;
    }

    #location h2 {
      font-size: 36px;
      font-weight: normal;
      margin-bottom: 25px;
    }

    #location h5 {
      font-style: italic;
      display: block;
      width: auto;
      height: auto;
      line-height: unset;
      background: none;
      text-align: left;
      text-transform: unset;
      font-size: 26px;
    }

    #location h5 a, #location p a {
      background: none;
      text-align: left;
      font-weight: normal;
      text-transform: none;
      height: auto;
      line-height: unset;
      margin-top: 0;
    }

    #location h5 img {
      position: relative;
      left: -10px;
    }

    h1 {
      font-size: clamp(1.8rem, 3vw + 1rem, 4rem); line-height:1.3; margin:0 0 16px; font-weight:normal;
    }

    .btn { 
      display:inline-flex; 
      align-items:center; 
      justify-content:center; 
      gap:.6rem; 
      border-radius: 4px; 
      padding:0 20px; 
      font-weight:700; 
      text-decoration:none; 
      transition:transform .08s ease, 
      box-shadow .2s ease, 
      background .2s ease;
    }

    .btn-primary {
      background: #0B5FFF; 
      color:#fff;
      text-transform: uppercase;
      height: 50px;
    }
    
    .webform-submission-form {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 16px;
      opacity: 1;
      padding: 50px 40px;
    }

    .webform-submission-form .form-item {
      margin-bottom: 10px;
    }

    .webform-submission-form .form-item.form-type-checkbox {
      margin: 20px 0 0;
      display: flex;
    }

    .webform-submission-form .description {
      color: #fff;
      margin-left: 10px;
  }

    .webform-submission-form .form-control {
      background: #FFFFFF 0% 0% no-repeat padding-box;
      border: 1px solid #707070;
      border-radius: 4px;
      margin-bottom: 0;
      min-height: 43px;
      line-height: 43px;
      padding-left: 20px;
      font-size: 16px;
    }

    .webform-submission-form .form-required:after {
      filter: brightness(0) invert(1);
      margin-left: 5px;
    }

    .webform-submission-form .form-actions {
      position: relative;
    }

    .webform-submission-form .form-actions button {
      width: 100%;
      margin-bottom: 0;
      margin-top: 25px;
      background: #0B5FFF 0% 0% no-repeat padding-box;
      border-radius: 4px;
      color: #fff;
      padding: 14px;
      letter-spacing: 0;
      font-size: 16px;
    }

    .webform-submission-form label {
      color: #FFFFFF;
      font-size: 14px;
      margin-left: 15px;
      font-weight: normal;
    }

    /*** Main ***/

    section.container {
      margin-bottom: 120px;
    }

    #main {
      margin: 120px 0;
      background: url('/themes/technopolis/images/agenda-bg.png') no-repeat center right;
    }

    #landing-content .container-inner,
    #landing-agenda .container-inner {
      margin: 0 -20px;
      display: flex;
      justify-content: space-between;
    }

    #landing-content .container-inner > div,
    #landing-agenda .container-inner > div {
      width: 50%;
    }

    #landing-content .field,
    #location .field {
      background: #31136C 0% 0% no-repeat padding-box;
      border: 0.5px solid #DCD7E580;
      border-radius: 8px;
      padding: 20px 30px;
      margin: 0 20px;
      height: 100%;
    }

    #location .field {
      margin: 0;
    }

    #landing-content h2 {
      font-size: 26px;
      font-weight: normal;
      margin-bottom: 20px;
    }

    #landing-content .field ul {
      padding-left: 15px;
    }

    /*** Agenda ***/


    #landing-agenda > h2 {
      font-size: 26px;
      font-weight: normal;
      margin-top: 0;
      margin-bottom: 30px;
    }

    #landing-agenda > h5 {
      font-weight: normal;
      margin: 0 0 20px;
      width: 50%;
      text-align: right;
      padding-right: 20px;
    }

    #landing-agenda .field {
      margin: 0 20px;
    }

    .agenda-list {
      background: #31136C 0% 0% no-repeat padding-box;
      border: 0.5px solid #DCD7E580;
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 15px 25px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .agenda-list > div:first-child {
      width: calc(100% - 60px);
    }

    .agenda-time {
      color: #DCD7E5;
      font-size: 18px;
      margin-bottom: 5px;
    }

    .agenda-title {
      font-size: 18px;
      font-weight: 600;
      padding-right: 20px;
    }

    .agenda-speaker {
      display: flex;
    }

    .agenda-speaker img {
      margin-left: 10px;
    }

    .coffee {
      margin: 34.3px auto;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .coffee p:before, .coffee p:after {
      content: "";
      height: 1px;
      width: calc(50% - 90px);
      background: #fff;
      position: absolute;
      left: 0;
      top: 12px;
    }

    .coffee p:after {
      right: 0;
      left: unset;
    }

    .coffee p {
      margin: 0 25px;
      width: 130px;
    }

    .coffee img {
      margin-left: 12px;
    }


    /* Speakers */


    #landing-speakers .agenda-inner {
      padding: 90px 120px;
      background: url('/themes/technopolis/images/speakers-bg.png') no-repeat center;
      background-position: top left;
      min-height: 900px;
    }

    .logos-bottom {
      font-size: 25px;
      font-weight: 300;
      margin: 0 -5px 45px;
    }

    .logos-bottom img {
      margin: 0 5px;
    }

    #landing-speakers .field h2 {
        font-size: clamp(1.8rem, 3vw + 1rem, 4rem);
        line-height: 1.3;
        margin: 0 0 40px;
        font-weight: normal;
    }

    .speaker {
      position: relative;
      margin-bottom: 35px;
      display: flex;
    }

    .speaker img {
      margin-right: 25px;
    }

    .speaker p {
      color: #DCD7E5;
      margin-bottom: 3px;
    }

    .speaker p:first-child {
      color: #fff;
      font-weight: 600;
    }


    /* Footer */
    footer{padding: 0 0 60px; color: #9fb0c9}
    footer .foot{display:flex; justify-content:space-between; align-items:center; gap:14px; border-top:1px solid var(--border); padding-top:20px}
    footer a{opacity:.9}



    @media screen and (max-width: 992px) {

      .hero-grid, #landing-content .container-inner, #landing-agenda .container-inner {
        flex-direction: column;
      }

      .hero-grid > div, #landing-content .container-inner > div, #landing-agenda .container-inner > div {
        width: 100%;
      }

      .hero-grid > .right .field {
          padding-left: 0;
          margin-top: 100px;
      }

      #main {
        margin: 100px 0;
      }

      #landing-content .container-inner > div.left {
        margin-bottom: 50px;
      }

      section.container {
          margin-bottom: 100px;
      }

      #landing-speakers .agenda-inner {
        padding: 50px 80px;
      }


    }

@media screen and (max-width: 480px) {

body {
  overflow-x: hidden;
}

header {
    margin-bottom: 50px;
}

header .logos {
  padding: 20px;
  display: flex;
  margin: 0;
}

header .logos img {
  max-width: 125px;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.webform-submission-form {
  padding: 30px 20px;
}

#landing-content .field, #location .field {
  padding: 20px;
}

.agenda-speaker {
  flex-direction: column;
}

.agenda-speaker img {
  margin-bottom: 10px;
}

#landing-speakers .agenda-inner {
        padding: 30px 25px;
}

.logos-bottom {
  display: flex;
}

.logos-bottom img {
  max-width: 120px;
}

section.container {
        margin-bottom: 70px;
    }


}




    