/*  */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'), url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Ultra';
    src: url('../fonts/Gotham-Ultra.woff2') format('woff2'), url('../fonts/Gotham-Ultra.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Gotham';
    position: relative;
    background-color: #F4F4F4;
    color: #707070;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,.bold {
    font-family: 'Gotham Ultra';
    color: #314560;
}

.btn {
    height: 60px;
    min-height: 60px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #314560;
    color: #fff;
    border-color: #314560;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:disabled {
    background-color: #000000;
    border-color: #000000;
}

.btn-outline-primary {
    border-color: #314560;
    color: #314560;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    color: #314560;
    border-color: #FAEF58;
    background-color: #FAEF58;
}

.btn-outline-secondary {
    border-color: #FAEF58;
    color: #FAEF58;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
    color: #314560;
    border-color: #FAEF58;
    background-color: #FAEF58;
}

img {
    max-width: 100%;
}

header {
    /* position: absolute; */
    border-bottom: 4px solid #314560;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}

header .container {
    max-width: 1300px;
    padding-top: 40px;
    padding-bottom: 40px;
}

header .logo {
    width: 100%;
    max-width: 220px;
}

header .btn {
    width: 200px;
}

.banner {
    background-image: url('../images/top-banner.png?2');
    background-size: cover;
    padding: 70px 0;
    text-align: center;
    background-position: top;
    position: relative;
}

.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner img {
    max-width: 780px;
}

.top-content {
}

.top-content h1 {
    font-size: 50px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.top-content h2 {
    font-size: 22px;
    margin-bottom: 50px;
}

.top-content .win-10k {
    width: 1060px;
}

form .container {
    max-width: 1300px;
}

.tickets {
    padding-bottom: 44px;
}

.tickets-grid{
    display: flex;
    flex-wrap: wrap;
    gap:0px;
    row-gap: 10px;
    justify-content: space-between;
}
.tickets-grid > div{
    width: 19%;
}

@media only screen and (min-width: 992px) {
    .custom-control-label{
        white-space: nowrap;
    }
.tickets-grid > div.row-1{
    width: 32.5%;
}
.tickets-grid > div.row-2{
    width: 24.5%;
}
.tickets-grid > div.row-3{
    width: 24.5%;
}
.tickets-grid > div.row-4{
    width: 24.5%;
}
}
.tickets .ticket {
    display: block;
    cursor: pointer;
    width: 100%;
    position: relative;
    height: 100%;
    border: 4px solid #fff;
}

.tickets .ticket .ticket-details {
    /* position: absolute; */
    top: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
    z-index: 2;
    background-color: #b1c5d1;
}

.tickets .ticket.selected .ticket-details {
    background-color: #000000;
}
.tickets .ticket.selected img{
    border: 6px solid #000000;
}

.tickets .ticket .ticket-details h3 {
    font-size: 28px;
    line-height: 1;
    transition: color 200ms;
    margin: 0 0 10px 0;
}
.tickets .ticket .ticket-details .h-title{
    font-family: arial;
}
.tickets .ticket .ticket-details p {
    font-size: 16px;
    color: #314560;
    font-weight: 600;
    line-height: normal;
    transition: 200ms;
    margin: 0;
    text-transform: capitalize;
}

.tickets .ticket .ticket-details .btn {
    min-height: 50px;
    height: 50px;
}



.tickets .ticket:hover .ticket-details h3, .tickets .ticket:hover .ticket-details p, .tickets .ticket.selected .ticket-details h3, .tickets .ticket.selected .ticket-details p {
    color: #ffffff;
}

.tickets .ticket:hover .ticket-details .btn, .tickets .ticket.selected .ticket-details .btn {
    border-color: #ffffff;
    color: #ffffff;
}

.tickets .ticket:hover .ticket-details .btn:hover, .tickets .ticket.selected .ticket-details .btn:hover {
    color: #000000;
}


.form-fields, .form-success {
    background-color: #fff;
    border-radius: 30px;
    padding: 75px 75px;
    margin-bottom: 180px;
}

.form-fields h5 {
    font-size: 20px;
    text-transform: uppercase;
}

.form-fields .btn svg {
    width: 50px;
    height: 50px;
    display: none;
}

.form-fields .form-control {
    min-height: 60px;
    border-radius: 0;
    background-color: #F8F8F8;
    border: 1px solid #F8F8F8;
    padding-left: 15px;
    font-size: 14px;
    color: #000000;
}
.form-fields textarea.form-control{

}
.form-fields .form-control::placeholder {
    text-transform: uppercase;
    color: #414141;
}

.form-fields .form-control:focus {
    box-shadow: none;
    border: 1px solid #314560;
}

.other-amount-link {
    color: #314560;
}

.jp-card-container {
    display: none;
}

.free-gifts {
    margin: 100px 0;
}

.free-gifts h4 {
    font-size: 90px;
    line-height: 1;
    margin-top: 50px;
}

.free-gifts .gift-image {
    max-width: 298px;
    margin-bottom: 50px;
}

.free-gifts .gift-image-inner {
    padding-bottom: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}

.free-gifts .gift-image-inner.selected {
    border: 3px solid #314560;
}

.free-gifts p {
    font-size: 20px;
}

.free-dinner-section {
    padding-top: 200px;
    padding-bottom: 230px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(255,235,3,1) 50%);
    overflow: hidden;
}

.free-dinner-section .container {
    max-width: 1430px;
}

.free-dinner-section .container-inner {
    border-radius: 40px;
    background-color: #314560;
    padding: 90px 15px;
}

.sponsors img {
    margin: 0 60px;
}

/* .honorees{
    columns: 3;
} */

.food-image {
    display: block;
    margin: 0 auto -260px;
}

.free-dinner-section h3 {
    color: #FAEF58;
    font-size: 90px;
    line-height: 1;
    margin-top: 40px;
    margin-bottom: 30px;
}

footer {
    background-color: #fff;
    padding: 100px 0 40px;
}

footer .container {
    max-width: 1300px;
}

footer .share {
    background-color: #314560;
    padding: 30px 50px;
    font-size: 16px;
    line-height: 1.5;
    width: 400px;
    max-width: 100%;
}

footer .sub-footer {
    margin-top: 60px;
    font-size: 16px;
}

[data-reveal] {
    transition: opacity .8s linear, transform .5s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
}

[data-reveal].in {
    transform: translateY(0px);
    opacity: 1;
}

[data-reveal] .sparks {
    transform: scale(0);
    transition: transform .7s ease-in-out 300ms;
}

[data-reveal].in .sparks {
    transform: scale(1);
}
@media only screen and (max-width: 1400px) {
    .tickets .ticket .ticket-details h3{
        font-size: 24px;
    }
    .tickets .ticket .ticket-details p{
        font-size: 14px;
    }
    .tickets-grid > div {
        width: 19.5%;
    }
    /* .honorees{
        columns: 2;
    } */
}

@media only screen and (max-width: 992px) {
    .sparks {
        display: none;
    }

    .btn {
        height: 50px;
        min-height: 50px;
    }

    .banner img {
        max-width: 500px;
    }

    .top-content {
        padding: 0 3rem;
    }

   


    .form-fields {
        background-color: transparent;
        padding: 30px 0;
        margin-bottom: 0;
    }

    .form-fields .form-control {
        background-color: #fff;
        height: 50px;
    }

    .free-gifts h4 {
        margin-top: 0;
        font-size: 60px;
        margin-bottom: 50px;
        text-align: center;
    }

    .free-dinner-section {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 768px) {
    header .logo {
        width: 80px;
    }

    header .btn {
        width: 168px;
    }

    header .container {
        padding-top: 30px;
    }

    .banner {
        padding: 200px 0 130px;
    }

    .banner img {
        max-width: 320px;
    }

    .top-content {
        padding: 0 1rem;
    }

    .top-content h1 {
        font-size: 36px;
    }

    .top-content .win-10k {
        width: 400px;
        max-width: 100%;
    }

    .top-content h2 {
        font-size: 16px;
    }

    .tickets-grid > div {
        width: 49%;
    }
    .tickets-grid > div.full{
        width: 100%;
    }
    .tickets-grid > div.full .ticket{
        max-width: 100%;
    }
    .tickets .ticket .ticket-details{
        padding: 10px 10px 10px;
    }
    .tickets .ticket .ticket-details h3{
        margin: 0 0 8px 0;
    }
    .tickets .ticket .ticket-details p{
        font-size: 12px;
        min-height: 0;
    }

    .tickets .ticket .ticket-details .btn {
        display: none !important;
    }

    .free-gifts {
        margin: 60px 0;
    }

    .free-gifts h2 {
        font-size: 16px;
    }

    .free-gifts p {
        font-size: 12px;
    }

    .free-dinner-section {
        padding-bottom: 100px;
    }

    .free-dinner-section h3 {
        font-size: 50px;
    }

    .free-dinner-section h4 {
        font-size: 18px;
    }

    .sponsors img {
        display: block;
        margin: 30px auto;
        max-width: 60%;
    }

    .free-dinner-section .container-inner {
        padding: 50px;
    }

    /* .honorees{
        columns: 1;
    } */
}


.file-input {
    cursor: pointer;
    border: 1px solid #E0E0E0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
    text-align: center;
    border-radius: 3px;
    height: 60px;
    margin-bottom: 0;
  }
  .pre-upload{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .file-input input {
    display: none;
  }
  .file-input .file-input-title {
    font-size: 14px;
    font-weight: 600;
  }

  .dinner-seats-inner{
    position: relative;
  }
  .dinner-seats-inner.disabled:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #fff;
    opacity: .7;
    top: 0;
  }