/*!
Theme Name: Indiana250
Theme URI: http://underscores.me/
Author: IBJ Media
Author URI: https://www.ibj.com
*/

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    height: 100%;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
    padding: 12px;
    border-radius: 6px;
    border: solid 1px #dba012;
}

input[type="submit"],
input[type="button"],
button,
a.button {
    background-color: #0e3178;
    border-radius: 6px;
    padding: 12px;
    border: none;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}
a.button.secondary {
    background-color: #dba012;
    border-radius: 6px;
    padding: 12px;
    border: none;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.text-xl {
    font-size: 40px;
}

@media only screen and (max-width: 499px) {
    .text-xl {
        font-size: 28px;
    }
}

.shadow {
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.5);
}

.text-gold {
    color: #dba012;
}

.text-blue {
    color: #0e3178;
}

.text-center {
    text-align: center;
}

.wp-block-image.aligncenter {
    display: block;
    margin: auto;
}

.hidden {
    display: none !important;
}

img.aligncenter {
    display: block;
    margin: auto;
}

img.alignleft {
    float: left;
    margin-right: 20px;
}

.site {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mobile-navigation {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 99999;
    display: none;
    padding: 20px;
}

.mobile-navigation.show {
    display: none;
}

@media only screen and (max-width: 1059px) {
    .mobile-navigation.show {
        display: block;
    }
}

.close-icon {
    display: flex;
    justify-content: flex-end;
}

.close-icon i {
    cursor: pointer;
}

.mobile-search {
    margin-top: 20px;
}

.mobile-search form {
    display: flex;
}

.mobile-search input[type="text"] {
    width: 100%;
    margin-right: 12px;
}

ul#menu-mobile {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

ul#menu-mobile li {
    display: block;
    border-bottom: solid 2px #0e3178;
    margin-left: -20px;
    margin-right: -20px;
}

ul#menu-mobile li:first-child {
    border-top: solid 2px #0e3178;
}

ul#menu-mobile a {
    display: block;
    text-decoration: none;
    padding: 12px 24px;
}

.eyebrow {
    background-color: #e9eaee;
    padding: 12px 20px;
}

.eyebrow-navigation {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.eyebrow-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
}

.eyebrow-navigation li {
    margin-left: 20px;
}

.eyebrow-navigation a {
    text-decoration: none;
    font-size: 14px;
}

.site-header {
    padding: 0 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
}

.site-header-width {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    padding: 20px 20px 20px 0;
    width: 200px;
}

.logo img {
    width: 100%;
    display: block;
}

.main-navigation {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1059px) {
    .main-navigation {
       justify-content: flex-end;
        padding-right: 0;
    }
}

@media only screen and (max-width: 1059px) {
    .menu-main-menu-container {
        display: none;
    }
}

.menu-main-menu-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.menu-main-menu-container li {
    margin: 0 20px;
}

@media only screen and (max-width: 1187px) {
    .menu-main-menu-container li {
        margin: 0 12px;
    }
}

.menu-main-menu-container a {
    color: #333333;
    text-decoration: none;
    border-bottom: solid 2px #ffffff;
    padding: 40px 0 40px 0;
    display: block;
}

.menu-main-menu-container a:hover {
    color: #dba012;
    border-bottom: solid 2px #0e3178;
}

.search-icon {
    margin: 0 0 0 12px;
    color: #333333;
    cursor: pointer;
    border-bottom: solid 2px #ffffff;
    padding: 20px 0 20px 0;
}

@media only screen and (max-width: 1059px) {
    .search-icon {
        display: none;
    }
}

.search-icon:hover {
    color: #dba012;
    border-bottom: solid 2px #0e3178;
}

.search-container {
    position: relative;
}

.search-elements {
    position: absolute;
    white-space: nowrap;
    bottom: -52px;
    right: 8px;
    align-items: center;
    display: none;
}

.search-elements.show {
    display: flex;
    z-index: 2;
}

@media only screen and (max-width: 1059px) {
    .search-elements.show {
        display: none;
    }
}

.close-search-icon {
    margin-right: 12px;
    cursor: pointer;
}

.close-search-icon:hover {
    color: #dba012;
}

.hamburger-icon {
    display: none;
    color: #333333;
    cursor: pointer;
    border-bottom: solid 2px #ffffff;
    padding: 20px 0 20px 0;
}

@media only screen and (max-width: 1059px) {
    .hamburger-icon {
        display: block;
    }
}

.parent-company {
    width: 80px;
}

@media only screen and (max-width: 1277px) {
    .parent-company {
        display: none;
    }
}

@media only screen and (max-width: 1059px) {
    .parent-company.mobile {
        display: block;
        margin: auto;
    }
}

.parent-company img {
    width: 100%;
    display: block;
}

main.site-main {
    flex: 1;
}

section.error-404 {
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin: 40px auto;
}

.wp-block-columns {
    justify-content: center;
}

.hero {
    background-image: url("https://indiana250-com.s3.us-east-2.amazonaws.com/wp-content/uploads/2023/07/19133243/2023-hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 100%;
    height: calc(100vh - 154px);
    max-height: 1130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.banner {
    padding: 12px;
    text-align: center;
    background-color: #dba012;
    color: #ffffff;
}

.video {
    position: relative;
    z-index: 1;
    background-color: #e9eaee;
    margin-bottom: 65px;
}

.video-container {
    max-height: 725px;
    overflow: hidden;
}

.video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(0.75);
}

.video .nomination {
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.video .logo-stacked {
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translate(-50%, 0);
}

@media only screen and (max-width: 599px) {
    .video .logo-stacked img {
        width: 200px;
    }
}

.authenticate {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.authenticate > div {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    border: solid 1px #b1b1b1;
}

.authenticate > div > p {
    margin-bottom: 40px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.products > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    text-align: center;
}

.products p {
    font-size: 14px;
}

.auth-icon {
    display: flex;
    text-decoration: none;
    background-color: #ececec;
    border-radius: 12px;
    align-items: center;
    width: 100%;
    margin-bottom: 6px;
}

.auth-icon .icon {
    display: block;
    padding: 12px 6px;
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 100%;
}

.auth-icon.ibj .icon {
    background-color: #007fc7;
}

.auth-icon.iib .icon {
    background-color: #e33838;
}

.auth-icon.il .icon {
    background-color: #006a53;
}

.auth-icon img {
    height: 40px;
}

.auth-icon span {
    padding: 12px;
}

.pagination {
    text-align: center;
    margin-bottom: 40px;
}

.gform_save_link {
    float: right;
}

footer.site-footer {
    background-color: #333333;
    padding: 20px;
}

.site-footer p {
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.flex-direction-nav a {
    height: auto !important;
}
