@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;700&family=Roboto:ital,wght@0,200;0,400;0,700;1,400&display=swap');

html {
    scroll-padding-top: 80px;
}

body {
    margin: 0 auto;
    color: #656565;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    background-color: #fff;
    line-height: 1.4;
}

header {
    padding: 1em 0;
    margin: 0 auto
}

footer {
    background: #000;
    min-height: 10vw;
    padding: 2em 0 1em;
    font-size: .8rem;
    color: #c2c2c2
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 48
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

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




h1,
h2,
h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #282828;
    line-height: 1.2;
    font-style: normal;
    font-weight: 700;
}

h1 {
    font-size: 32px;
    font-weight: 800;
}

a {
    text-decoration: none
}

a[href]:not(.button) {
    color: #0064FA;
    transition: all 0.2s ease-in-out
}

footer a[href]:not(.button) {
    color: #fff
}

ul.link-list {
    margin: 0;
    list-style-type: none
}

.desktop-show {
       display: inline-block !important;
    }

.event-header img,
img.is-fullwidth {
    margin: 0 auto; 
    width:100%; 
    max-width:750px;
}

/* Mobile-first layout */

.mobile-logo {
    display: block;
    width: 42px
}

header .logo {
    display: none;
}

.header-img {
    margin: auto;
    padding: 0;
    vertical-align: middle;
}

.event-header {
    margin: auto; 
    max-width: 750px;
}

.full-page-width {
   width: 100%;
   max-width: 720px;

}

.is-contained {
    margin: auto;
    width: 90%;
    max-width: 1008px;
}


.is-fullwidth, 
.two-columns,
.three-columns 
.four-columns {
    width: 100%
}

.has-gutter {
    margin-right: 0
}

.two-columns:last-of-type,
.three-columns:last-of-type,
.has-gutter:last-of-type {
    margin: 0
}

.footer-info-links {
    padding: 0;
    display: block
}

.error {
    color:red;
    font-size: 1rem;
}

.success h2 {
    color: #000;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 1rem 0;
    text-transform: none;   
}

/* Form styles */

form {
    margin:2em 0;
    padding: 0
}

label {
    font-size: 14px
}

label.is-required::after {
    content:'*';
    color: red
}

input,
select {
    width: 100%;
    padding: 12px 10px;
    box-sizing: border-box;
    border: 1px solid #A9A9A9;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px
}

.checkbox {
    display: block;
    margin-bottom: 15px;
}

.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer
}

.checkbox label {
    position: relative;
    cursor: pointer
}

.checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #282828;
    border-radius: 5px;
    padding: 12px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px
}

.checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #282828;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg)
}

input[type=submit],
button,
.button {
    margin: 15px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: block;
    background-color: #4773e0;
    border: 1px solid #4773e0;
    padding: 16px 40px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    cursor: pointer
}

.flex-row > .input-row {
    margin-bottom: 1em
}

/*Loader*/
.lds-ellipsis {
display: inline-block;
position: relative;
width: 70px;
height: 10px;
}
.lds-ellipsis div {
position: absolute;
top: 0px;
width: 5px;
height: 5px;
border-radius: 50%;
background: lightgray;
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div.grey {
position: absolute;
top: 0px;
width: 5px;
height: 5px;
border-radius: 50%;
background: grey;
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
left: 8px;
animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
left: 8px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
left: 32px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
left: 56px;
animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
    transform: scale(0);
    }
    100% {
    transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
    transform: scale(1);
    }
    100% {
    transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
    transform: translate(0, 0);
    }
    100% {
    transform: translate(24px, 0);
    }
}

/* Desktop-specific styles */
@media (min-width:780px) {

    body {
        font-size: 16px
    }

    h1 {
        font-size: 36px
    }

    header .logo {
        display: block;
        width: 180px
    }

    .desktop-show {
       display: none !important;
    }

    .mobile-logo {
        display: none
    }

    .button {
        min-width: 180px
    }

    .two-columns {
        width: 48.66%
    }

    .three-columns {
        width: 30%
    }
    .has-gutter {
        margin: 0 2%
    }

    .has-gutter:first-of-type {
        margin-left: 0
    }
    
    input, select {
      border: 1px solid #e6e6e6;
    }

    .checkbox label:before {
      border: 1px solid #e6e6e6;
    }
    .flex-column {
       display: flex; 
       flex-direction: row; 
       gap: 1.5rem; 
     }

    .footer-info-links {
        display: inline-block;
        padding-right: 15px;
        font-size: 13px;
        margin: .25em 0
    }

    .footer-info-links:last-of-type {
        padding-right: 0
    }

    .success h2 {
        text-align: left;
    }
 .img-corners-horizontal {
    border-top-right-radius: 20px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;

}

/* Two Column Layout for Campaign Body and Form */
.two-column-layout {
    display: flex;
    flex-direction: row;
    gap: 20px; /* Adjust the gap as needed */
}

.two-column-layout > div {
    flex: 1; /* Each div takes up equal space */
}

/* Ensure the form takes up the full width of its container */
#form {
    width: 100%;
}
}