/*
Theme Name: Surgical Robotics Industry Awards
Theme URI: https://surgicalroboticsindustryawards.com
Description: Surgical Robotics Industry Awards Theme 
Version: 1.2.3
*/

/* Core
-------------------------------------------------- */
html, body {
	height: 100%;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400; 
    line-height: 1.6; 
    font-size: 18px; 
    color: #333;
    margin: 0; 
    padding: 0;
	background: #FFFFFF;
}
body {
  	display: flex;
  	flex-direction: column;
}
.page {
	flex: 1;
}
.container {
	max-width: 1320px;
}
a {
	color: #050BD9;
}
.video-embed {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    width: 100%;
	margin-bottom: 20px;
}
.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
h1 {
	font-size: 60px;
	margin-bottom: 30px;
	color: #FFF;
}
h2 {
	font-size: 28px;
  	margin-bottom: 10px;
  	color: #000000;
}
#home-content {
	padding: 50px 0;
}
#home-content h2 {
	font-size: 45px;
	margin-bottom: 30px;
}

/* Header */
#header-notice {
	background: #000000;
	line-height: 32px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
}
#header-notice p {
	color: #EECE70;
	font-size: 15px;
	text-align: center;
	letter-spacing: 5%;
	margin-bottom: 0;
}
#page-header {
	background: url('images/header-background.webp') no-repeat center center #000;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 269px;
	margin-top: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 50px;
}
/* When the notice exists */
body:has(#header-notice) #page-header {
    margin-top: 122px; /* 90px + 32px */
}

#page-header p {
	color: #FFF;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 3%;
}
.fixed-top {
  	top: 0;
}
/* When the notice exists */
body:has(#header-notice) .fixed-top {
    top: 32px;
}

.navbar {
  	border-bottom: 1px solid #ddd;
 	background: #FFF;
  	padding: 15px 0;
	height: 90px;
}
.header-logo {
  	height: 55px;
}
#navbarNav a.nav-link {
  	color: #000000;
  	font-size: 15px;
}
#navbarNav a.sria-btn {
  	margin-left: 20px;
}
.navbar-toggler {
  	border: none;
}
.navbar-toggler:focus {
 	box-shadow: none;
}

/* Dropdown Menu Styling */
.navbar-nav .nav-item.dropdown {
  	position: relative;
}
.navbar-nav .nav-item.dropdown::after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	height: 25px;
  	bottom: -25px;
}

/* Default hidden dropdown */
.navbar-nav .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border: none;
	z-index: 1000;
	padding: 24px 0;
	min-width: 200px;
}

/* Dropdown items */
.navbar-nav .dropdown-menu .dropdown-item {
	font-size: 15px;
	padding: 12px 24px;
	color: #000;
	font-weight: 500;
	transition: all 0.3s ease;
	background: none;
  }
.navbar-nav .dropdown-menu .dropdown-item:hover {
  	background-color: #EECE70;
  	color: #000;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .navbar-nav .nav-item.dropdown:hover .fa-chevron {
    transform: rotate(180deg);
  }
}

/* Chevron dropdown icon */
.navbar-nav .menu-item-has-children > a {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
}
.navbar-nav .menu-item-has-children > a .fa-chevron {
  	font-size: 12px;
  	margin-left: 8px;
  	transition: transform 0.3s ease-in-out;
}

/* Chevron rotation class */
.fa-chevron.rotate {
  	transform: rotate(180deg);
}
#sria-menu {
  	width: 32px;
  	height: 27px;
  	position: relative;
  	-webkit-transform: rotate(0deg);
  	-moz-transform: rotate(0deg);
  	-o-transform: rotate(0deg);
  	transform: rotate(0deg);
  	-webkit-transition: .5s ease-in-out;
  	-moz-transition: .5s ease-in-out;
  	-o-transition: .5s ease-in-out;
  	transition: .5s ease-in-out;
  	cursor: pointer;
}
#sria-menu span {
  	display: block;
  	position: absolute;
  	height: 3px;
  	width: 100%;
  	background: #000000;
  	opacity: 1;
  	left: 0;
  	-webkit-transform: rotate(0deg);
  	-moz-transform: rotate(0deg);
  	-o-transform: rotate(0deg);
  	transform: rotate(0deg);
  	-webkit-transition: .25s ease-in-out;
  	-moz-transition: .25s ease-in-out;
  	-o-transition: .25s ease-in-out;
  	transition: .25s ease-in-out;
}
#sria-menu span:nth-child(1) {
  	top: 0px;
}
#sria-menu span:nth-child(2),
#sria-menu span:nth-child(3) {
  	top: 12px;
}
#sria-menu span:nth-child(4) {
  	top: 24px;
}
#sria-menu.open span:nth-child(1) {
  	top: 10px;
  	width: 0%;
  	left: 50%;
}
#sria-menu.open span:nth-child(2) {
  	-webkit-transform: rotate(45deg);
  	-moz-transform: rotate(45deg);
  	-o-transform: rotate(45deg);
  	transform: rotate(45deg);
}
#sria-menu.open span:nth-child(3) {
  	-webkit-transform: rotate(-45deg);
  	-moz-transform: rotate(-45deg);
  	-o-transform: rotate(-45deg);
  	transform: rotate(-45deg);
}
#sria-menu.open span:nth-child(4) {
  	top: 8px;
  	width: 0%;
	left: 50%;
}
body.admin-bar .navbar.fixed-top {
    top: 32px; /* Default admin bar height on desktops */
}
body.admin-bar #hero-banner-wrap,
body.admin-bar #page-header {
	margin-top: 70px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar.fixed-top {
        top: 46px; /* Admin bar height on smaller screens */
    }
}

/* Misc
-------------------------------------------------- */
.button-container {
  	display: flex;
  	justify-content: center; 
  	width: 100%; 
}
.sria-btn {
  	display: inline-flex; 
  	align-items: center;
  	justify-content: center;
  	padding: 12px 24px; 
  	font-size: 15px;
  	font-weight: bold;
  	color: #000000;
  	background: #EECE70;
  	text-decoration: none; 
  	border-radius: 5px;
  	transition: background 0.3s ease, transform 0.2s ease;
	border: none;
	text-align: center;
}
.sria-btn-outline {
  	display: inline-flex; 
  	align-items: center;
  	justify-content: center;
  	padding: 12px 24px; 
  	font-size: 15px;
  	font-weight: bold;
  	color: #000000;
  	border: 1px solid #EECE70;
  	text-decoration: none; 
  	border-radius: 5px;
  	transition: background 0.3s ease, transform 0.2s ease;
}
.sria-btn-outline:hover {
  	background: #EECE70;
	color: #000000;
}
.sria-btn:hover {
  	background: #d9b45a;
	color: #000000;
}
#home-content h2 {
	font-size: 28px;
	color: #000000;
	letter-spacing: 2%;
	line-height: 38px;
	margin-bottom: 20px;
}
#recognition-section {
	padding: 100px 0;
	background: #F8F8F8;
}
.recognition-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
.recognition-content {
	text-align: center;
	font-size: 28px;
	letter-spacing: 2%;
	color: #333333;
	line-height: 38px;
	width: 60%;
	margin: 0 auto 30px auto;
}
.recognition-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}
.btn {
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
}
.btn-primary {
	background-color: #007bff;
	color: white;
}
.btn-secondary {
	background-color: #6c757d;
	color: white;
}
.wp-block-embed-youtube {
  	width: 100% !important;
  	max-width: 100% !important;
}

.wp-block-embed__wrapper iframe {
  	width: 100% !important;
  	height: auto !important;
  	aspect-ratio: 16 / 9;
}
.page-template-default .page,
.post-template-default .page {
	background: #F7F7F7;
}
.post-template-default #recognition-section {
  background: #FFFFFF;
}
#sria-box {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	background: #FFFFFF;
	padding: 40px;
	border-radius: 10px;
}
.gform_confirmation_message {
	margin-bottom: 20px;
}

/* Homepage
-------------------------------------------------- */
.home .page {
	background: #FFFFFF;
}
#hero-banner-wrap {
  	position: relative;
  	margin-top: 90px;
  	height: 700px;
  	overflow: hidden;
}
/* When the notice exists */
body:has(#header-notice) #hero-banner-wrap {
    margin-top: 122px; /* 90px + 32px */
}
.video-background {
  	position: absolute;
  	top: 0;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 100%;
  	overflow: hidden;
  	z-index: 0;
  	pointer-events: none;
}
.video-background iframe {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 100vw;
  	height: 56.25vw; /* 16:9 aspect ratio (9/16 = 0.5625) */
  	min-height: 100%;
  	min-width: 177.77vh; /* 16:9 aspect ratio (16/9 = 1.7777) */
  	transform: translate(-50%, -50%);
  	z-index: -1;
}
.video-overlay {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  	z-index: 1;
  	pointer-events: none;
}	
#hero-banner-wrap .container {
  	position: relative;
  	z-index: 1;
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	height: 100%;
}
.hero-banner-content {
  	display: flex;
  	flex-direction: column;
  	justify-content: flex-end;
  	align-items: center;
  	height: 100%;
  	width: 75%;
  	margin: 0 auto;
  	padding-bottom: 150px;
  	text-align: center;
  	color: white;
}
.hero-banner-content h1 {
  	font-size: 70px;
  	line-height: 82px;
  	margin-bottom: 20px;
}
.hero-banner-content p {
  	font-size: 29px;
  	font-weight: 300;
}
#home-content {
	text-align: center;
	padding: 90px 0;
	width: 50%;
	margin: 0 auto;
}
#home-content p {
	font-size: 18px;
	color: #333333;
	letter-spacing: 3%;
	line-height: 25px;
}
#sria-categories {
    padding: 120px 0;
    background: #F5F5F5;
    margin: 0 auto;
    text-align: center;
}

#sria-categories h2 {
    margin-bottom: 40px;
}

.sria-categories-container {
    width: 100%;
    max-width: 926px;
    margin: 0 auto;
    padding: 0 20px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.category-box {
    border-radius: 15px;
    background: url('images/category-background.webp');
    text-align: center;
    padding: 30px 30px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 209px;
    text-decoration: none;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
}
.industry-leadership-icon,
.innovative-startup-icon,
.outstanding-company-icon,
.outstanding-healthcare-icon,
.groundbreaking-icon,
.software-innovation-icon {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 0 20px 0;
    flex-shrink: 0;
}

.industry-leadership-icon {
    background-image: url('images/industry-leadership.svg');
}

.innovative-startup-icon {
    background-image: url('images/innovative-start-up.svg');
}

.outstanding-company-icon {
    background-image: url('images/outstanding-company.svg');
}

.outstanding-healthcare-icon {
    background-image: url('images/outstanding-healthcare-provider.svg');
}

.groundbreaking-icon {
    background-image: url('images/groundbreaking-technology.svg');
}

.software-innovation-icon {
    background-image: url('images/software-innovation.svg');
}

.category-box h3 {
    font-size: 18px;
    color: #000000;
    letter-spacing: 3%;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
	font-weight: 600;
}

.category-box h3 span {
    display: block;
}

#sria-categories a.sria-btn {
    margin-top: 40px;
    display: inline-block;
}
@media (max-width: 991.98px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sria-categories-container {
        max-width: 760px;
    }
}

@media (max-width: 575.98px) {
    #sria-categories {
        padding: 80px 0;
    }

    .sria-categories-container {
        padding: 0 15px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-box {
        min-height: 190px;
        padding: 20px;
    }
}


#past-winners {
	text-align: center;
	padding: 120px 0;
}
#past-winners h2 {
	margin-bottom: 50px;
}
#pastWinnersCarousel .row {
	width: 70%;
	margin: 0 auto;
}
.past-winner-profile img {
	max-height: 195px;
	border-radius: 50%;
}
.past-winner-content {
	text-align: left;
	margin-bottom: 90px;
	min-height: 250px;
}
.past-winner-text {
	font-size: 28px;
	color: #333333;
	line-height: 35px;
	margin-bottom: 20px;
}
.past-winner-logo {
	display: flex;
    justify-content: left;
    align-items: center;
	height: 16px;
}
.past-winner-logo img {
	max-height: 100%;
    width: auto;
} 
.past-winner-name,
.past-winner-title {
	font-size: 18px;
	line-height: 25px;
	color: #595959;
}
.past-winner-title {
	margin-bottom: 10px;
}
#past-winner-logos {
    margin: 0 auto 90px auto;
    width: 90%;
    overflow: hidden;
    position: relative;
}
#past-winner-logos .logo-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}
#past-winner-logos .col {
    display: flex;
    justify-content: left;
    align-items: center;
    flex: 0 0 auto; 
}
#past-winner-logos img {
    max-height: 85px;
    width: auto;
	max-width: 200px;
    margin: 0 auto;
    padding: 0 20px;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
#partner {
	padding: 90px 0;
	background: #F5F5F5;	
	margin: 0 auto;
	text-align: center;
}
#partner .partner-logo {
	width: 40%;
	margin: 30px auto;
}
#partner h2 {
	margin-bottom: 0;
}
#partner .container {
	width: 45%;
}
#partner p {
	color: #333333;
	font-size: 18px;
}

/* Categories
-------------------------------------------------- */
.post-type-archive-categories .page {
	background: #F7F7F7;
}
.categories-archive {
	margin-bottom: 50px;
}
.categories-archive .col-md-6 {
	margin-bottom: 30px;
}
.category-wrap {
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    background: #FFF;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}
.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.category-title h2 {
    font-size: 35px;
    line-height: 1.2;
    min-width: 0;
    overflow-wrap: break-word;
}

.category-title h2 a {
    color: #000;
    text-decoration: none;
    overflow-wrap: break-word;
}

.category-icon img {
    display: block;
    object-fit: contain;
}

@media (max-width: 575.98px) {

    .category-title {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
		gap: 0px !important;
    }

    .category-title h2 {
        margin-top: 10px;
    }
}

.category-title h2 a {
    color: #000;
    text-decoration: none;
}
.category-content {
    margin-top: 15px; 
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}
.category-content ul {
    list-style: none; 
    padding-left: 0; 
}
.category-content li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 8px; 
    display: flex;
    align-items: flex-start; 
	line-height: 1.4; 
}
.category-content li::before {
    content: "";
    background-image: url('images/icon-tick.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px; 
    height: 20px;
    position: absolute;
    left: 0;
    top: 6px;
}
.category-partnership {
	text-align: center;
	margin-top: auto;
}
.category-partnership .button-container .sria-btn {
	margin-bottom: 30px;
}
.category-partnership img {
  	width: 70%;
}
.single-categories .page {
	background: #F8F8F8;
}
.single-categories #recognition-section {
	background: #FFFFFF;
}
.single-categories .category-partnership img {
	width: 50%;
}
.single-categories .category-partnership {
  	margin-top: 50px;
}
#finalist-wrap {
	margin-bottom: 50px;
}
#finalist-wrap .title {
	margin-bottom: 30px;
	font-size: 28px;
	letter-spacing: 3%;
	color: #000;
}
.finalist-box {
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    background: #FFF;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
	padding: 30px;
}
.finalist-box .row {
    display: flex;
    align-items: center;
}
.finalist-image {
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	height: 100%;
}
.finalist-image img {
    max-height: 180px;
    max-width: 280px;
    width: 100%;
  	object-fit: contain;
}
.postid-64 .finalist-image img {
    max-height: 230px;
    max-width: 330px;
}
.finalist-content {
  	border-left: 1px solid #ddd;
 	padding: 0 30px;
   	display: flex;
    justify-content: center; 
    height: 100%;
	flex-direction: column;
}
.finalist-name h3 {
	margin-bottom: 20px;
	font-weight: bold;
	line-height: 1.6;
    font-size: 22px;
    color: #333;
}

/* Winners
-------------------------------------------------- */
.winners {
	margin-bottom: 120px;
}
.winner-year {
	font-size: 24px;
	letter-spacing: 24%;
	text-align: center;
	color: #000000;
	margin: 50px 0;
}
.winner-image {
	margin-bottom: 10px;
}
.winner-title {
	font-size: 18px;
	letter-spacing: 3%;
	color: #333333;
	text-align: left;
}
.winner-name {
	font-size: 23px;
	letter-spacing: 3%;
	color: #000000;
	text-align: left;
}
.winner-video-link {
	text-align: left;
}
.winner-video-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.winner-video-link a i {
    font-size: 14px;
}
.winner-video-link a:hover {
	text-decoration: none;
}
.winners .col-md-6 {
	margin-bottom: 30px;
}
.winner-image {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
}

/* Winners Archive
-------------------------------------------------- */
.post-type-archive-winners .page {
	background: #F7F7F7;
}
.post-type-archive-winners #recognition-section {
	background: #FFFFFF;
}

/* Winners Announced
-------------------------------------------------- */
.page-template-page-winners-announced .page {
	background: #F7F7F7;
}
.page-template-page-winners-announced #recognition-section {
	background: #FFFFFF;
}
#finalist-wrap .category-title {
    display: flex;
    align-items: center; 
    gap: 10px; 
}
#finalist-wrap .category-title h2 {
    margin-bottom: 0; 
    font-size: 28px;
    letter-spacing: 3%;
    color: #000;
}

#finalist-wrap .category-icon {
    height: 40px;
    display: flex;
    align-items: center;
	color: #000;
}

/* Sidebar
-------------------------------------------------- */
#sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px; 
  align-self: flex-start;
}
#sidebar.is-stuck {
	padding: 50px 0 20px 0;
}

@media (max-width: 991px) {
  #sidebar {
    position: static;
    top: auto;
  }
}

/* Key Dates
-------------------------------------------------- */
.page-template-page-key-dates .page {
	background: #F8F8F8;
}
.page-template-page-key-dates #recognition-section {
	background: #FFFFFF;
}
#key-dates-box {
	display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    background: #FFF;
    padding: 40px;
    border-radius: 10px;
	margin-bottom: 50px;
	max-width: 450px;
}
.page-template-page-key-dates #key-dates-box  {
	max-width: none;
	background: url('images/gold-star-bg.png') 140% 100% no-repeat #fff;
	background-size: 60%;
}
.key-dates-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
}
.key-dates-container h3 {
	margin-bottom: 10px;
}
.key-date-item {
    display: grid;
    grid-template-columns: 50px auto; 
    align-items: center;
    position: relative;
    gap: 16px;
    margin-bottom: 16px;
}
.key-date-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.key-date-line {
    width: 3px;
    position: absolute;
    background-color: #E6E6E6;
    top: 42px; 
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% + 20px); 
}
.key-date-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tick-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}
.key-date-info {
    display: flex;
    flex-direction: column;
}
.key-date {
    font-weight: bold;
    font-size: 20px;
    display: block;
}
.key-date-text {
    font-size: 20px;
    color: #666;
    display: block;
}
.key-date-item:last-child .key-date-line {
    display: none;
}
.key-date-item:last-child .key-date-text {
	color: #D0AB3F;
    font-weight: bold; 
    display: inline-block;
}

/* Nominations
-------------------------------------------------- */
.page-template-page-nominations-form .page {
	background: #F7F7F7;
}
.nominations-wrap {
	margin-bottom: 50px;
}
#nominations {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	background: #FFFFFF;
	padding: 40px;
	border-radius: 10px;
}
#nominations input, 
#nominations textarea,
#nominations select {
  	background: #f3f3f3;
  	line-height: 1.6em;
  	border-radius: 10px;
  	margin-bottom: 20px;
}
#nominations select option[value=""] {
  color: #6c757d;
}

#nominations .form-check {
	margin-bottom: 10px;
	padding-left: 0;
	margin-right: 10px;
}
#nominations .form-check a {
	color: #333333;
	text-decoration: none;
	border-bottom: 1px solid #333333;
}
#nominations .form-check a:hover {
	border-bottom: none;
}
#nominations a h2 {
  	margin-bottom: 0;
  	color: #111;
  	font-size: 24px;
  	text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding-right: 30px; 
}
#nominations .card-header {
	background: none;
	padding: 0;
	border: none;
}
#nominations .card {
	border: none;
	padding: 0;
}
#nominations .btn {
	padding: 20px 0;
	border-radius: 0;
	border-bottom: 1px solid #999;
}
.card-body {
	padding: 20px 0;
}
.card-content {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}
.card-content ul {
    list-style: none; 
    padding-left: 0; 
}
.card-content li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 8px; 
    display: flex;
    align-items: flex-start; 
	line-height: 1.4; 
}
.card-content li::before {
    content: "";
    background-image: url('images/icon-tick.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px; 
    height: 20px;
    position: absolute;
    left: 0;
    top: 6px;
}
#submit-nomination {
	margin-top: 30px;
}
#nominations h2 .fa-chevron {
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
    margin-left: auto; 
    align-self: center; 
}
#nominations .btn[aria-expanded="true"] h2 .fa-chevron {
    transform: rotate(180deg);
	margin-left: auto;
}
.nominations-wrap #success-message {
    scroll-margin-top: 200px; 
}
.nominations-wrap .was-validated .form-control:valid,
.nominations-wrap .was-validated .form-check-input:valid {
    border-color: var(--bs-border-color);
    background-image: none;
    box-shadow: none;
}
.nominations-wrap .was-validated .form-control:invalid {
    border-color: var(--bs-danger);
}

/* Votes
-------------------------------------------------- */
.page-template-page-votes-form .page {
	background: #F7F7F7;
}
#votes-wrap {
	margin-bottom: 50px;
}
#votes {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	background: #FFFFFF;
	padding: 40px;
	border-radius: 10px;
}

#votes [class^="col-"] {
	margin-bottom: 30px;
}
#votes input[type="text"], 
#votes input[type="email"], 
#votes textarea,
#votes select {
  	background: #f3f3f3;
  	line-height: 1.6em;
  	border-radius: 10px;
	border: none;
	width: 100%;
	padding: .375rem .75rem;
  	font-size: 1rem;
  	font-weight: 400;
	color: #212529;
	border: 1px solid #ced4da;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#votes select option[value=""] {
  color: #6c757d;
}

.voting-box {
	display: flex;
  	flex-direction: column;
  	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	background: #FFF;
  	padding: 40px;
	border: 1px solid #ddd;
  	border-radius: 10px;
  	margin-bottom: 30px;
  	position: relative;
	height: 100%;
}
.voting-box .vote-item {	
	display: flex;
	align-items: center;
	padding: 10px 0;
}
.voting-box input[type="radio"] {
  margin-right: 10px;
  cursor: pointer;
}
#votes .agree-submit input[type="checkbox"] {
  	border: none;
  	margin-right: 10px;
}

/* Winner Benefits
-------------------------------------------------- */
#winner-benefits-wrap .wp-content {
  	text-align: center;
  	padding: 10px 0 30px 0;
  	width: 45%;
  	margin: 0 auto;
}
#winner-benefits-wrap .title {
	margin-bottom: 40px;
	font-size: 28px;
	letter-spacing: 3%;
	color: #2B2B2B;
	text-align: center;
}
.winner-benefit {
	border-radius: 15px;
	background: linear-gradient(
	  to right,
	  #EECE70 0%,
	  #E9D59A 48%,
	  #E7C262 100%
	);
	text-align: center;
	padding: 20px 30px;
	display: flex;
	text-align: center;
	align-items: center;
	flex-direction: column;
	min-height: 170px;
	text-decoration: none;
	margin-bottom: 30px;
}
.promotional-campaign-icon {
    width: 35px;
    height: 35px;
    background-image: url('images/global-promotional-campaign.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.partnership-opportunities-icon {
    width: 40px;
    height: 40px;
    background-image: url('images/collaboration-partnership-opportunities.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.winner-emblem-icon {
    width: 25px;
    height: 35px;
    background-image: url('images/official-winner-emblem.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.awards-website-icon {
    width: 37px;
    height: 37px;
    background-image: url('images/permanent-listing-on-awards-website.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.global-brand-icon {
    width: 35px;
    height: 29px;
    background-image: url('images/global-brand-exposure.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.spotlight-video-icon {
    width: 35px;
    height: 35px;
    background-image: url('images/spotlight-video-interview.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.panel-discussions-icon {
    width: 50px;
    height: 33px;
    background-image: url('images/invitation-to-industry-panel-discussion.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.winner-trophy-icon {
    width: 32px;
    height: 34px;
    background-image: url('images/winner-throphy-certificate.webp');
    background-size: contain;
    background-repeat: no-repeat;
	margin: auto 0 20px 0;
}
.winner-benefit-text {
	font-size: 18px;
	color: #333333;
	letter-spacing: 3%;
	line-height: 28px;
}
.winner-benefit-text span {
 	display: block;
}

/* Partners
-------------------------------------------------- */
.page-template-page-partners .page {
	background: #F7F7F7;
}
.page-template-page-partners #recognition-section {
	background: #FFFFFF;
}
#partner-content {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	background: #FFFFFF;
  	padding: 40px;
  	border-radius: 10px;
	margin-bottom: 50px;
}
#partner-banner {
	margin-bottom: 30px;
}
#partner-content .wp-content {
	margin-bottom: 50px;
}
.partnership-wrap {
	text-align: center;
	margin-top: auto;
}
.partnership-wrap img {
  	width: 70%;
}
.partners-box {
	margin: 0 auto 50px auto;
	width: 60%;
	max-width: 350px;
}
.partners-box .title {
	font-size: 28px;
	margin-bottom: 20px;
}
.partners-box .partner-logo {
	width: 90%;
	margin-bottom: 40px;
}
#partner-contact {
  	display: flex;
  	flex-direction: column;
  	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	background: #FFF;
  	padding: 40px;
  	border-radius: 10px;
  	margin-bottom: 50px;
	max-width: 400px;
}
#partner-contact .partner-logo {
	width: 80%;
}
ul.company-details {
	margin: 20px 0;
	padding: 0;
}
ul.company-details li {
	margin-bottom: 5px;
	position: relative;
	list-style: none;
}
ul.company-details li.email a {
	color: #050BD9;
	border-bottom: 1px solid #050BD9;
	transition: all .2s ease-in-out;
	text-decoration: none;
}
ul.company-details li.email a:hover {
	border-bottom: 1px solid transparent;
}
ul.company-details li .fa {
	margin-right:5px;
}
ul.social-list {
  	display: flex;
  	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin: 20px 0 0 0;
	padding: 0;
}
ul.social-list li {
	list-style: none;
	margin-left: 15px;
}
ul.social-list li:first-child {
    margin-left: 0;
}
ul.social-list li a {
	font-size: 24px;
	display: flex;
	color: #EECE70;
	text-decoration: none;
	transition: color 0.3s ease;
}
ul.social-list li a svg path {
	fill: currentColor;
	transition: fill 0.3s ease;
}
.apple-podcast-icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(69%) sepia(83%) saturate(369%) hue-rotate(3deg) brightness(101%) contrast(94%);
  transition: filter 0.3s ease;
}

/* Hover Styles */
ul.social-list li a.linkedin:hover { color: #0077b5; }
ul.social-list li a.facebook:hover { color: #3b5999; }
ul.social-list li a.x:hover       { color: #55acee; }
ul.social-list li a.instagram:hover { color: #e4405f; }
ul.social-list li a.youtube:hover   { color: #FF0000; }
ul.social-list li a.spotify:hover   { color: #1DB954; }
ul.social-list li a.reddit:hover    { color: #FF4500; }
ul.social-list li a.apple:hover .apple-podcast-icon,
ul.social-list li a.apple-podcast:hover .apple-podcast-icon {
  filter: invert(22%) sepia(66%) saturate(6948%) hue-rotate(271deg) brightness(87%) contrast(91%);
}

/* Partners
-------------------------------------------------- */
.single-winners .page {
	background: #F7F7F7;
}
.single-winners #recognition-section {
	background: #FFFFFF;
}
#winner-content {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	background: #FFFFFF;
  	border-radius: 10px;
	margin-bottom: 50px;
}
#winner-banner {
	margin-bottom: 30px;
	text-align: center;
}
#winner-banner img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
#winner-content .wp-content {
	margin-bottom: 50px;
	padding: 0 40px 40px 40px;
}
#winner-contact {
  	display: flex;
  	flex-direction: column;
  	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	background: #FFF;
  	padding: 40px;
  	border-radius: 10px;
  	margin-bottom: 50px;
	max-width: 400px;
}
#winner-contact .partner-logo {
	width: 80%;
}

/* Register Your Interest
-------------------------------------------------- */
.page-template-page-register-interest .page {
	background: #F7F7F7;
}
.page-template-page-register-interest #recognition-section {
	background: #FFFFFF;
}
#register-content {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	background: #FFFFFF;
  	padding: 40px;
  	border-radius: 10px;
	margin-bottom: 50px;	
}
#contact-box {
  	display: flex;
  	flex-direction: column;
  	-webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
  	background: #FFF;
  	padding: 40px;
  	border-radius: 10px;
  	margin-bottom: 50px;
}
#register-your-interest {
	padding: 30px;	
	background: #EECE70;
	border-radius: 10px;
}
#register-your-interest p {
	color: #000000;
	font-size: 18px;
}
#register-your-interest .mc-field-group {
	position: relative;
}
#register-your-interest #mc-embedded-subscribe-register {
	background: #1C1C1C;
	color: #FFFFFF;
	border: none;
	height: 45px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	position: absolute;
	right: -1px;
	top: 0;
	min-width: 154px;
}
#register-your-interest #mc_embed_signup-register {
	width: 100%;
}
#register-your-interest #mc_embed_signup-register input[type="email"] {
	height: 45px !important;
	padding: 12px 10px !important;
	border-radius: 10px;
	border: none;
	background: #FFFFFF;
	width: 100%;
}
#register-your-interest #mc-embedded-subscribe-register:hover {
	background: #1C1C1C;
	color: #FFFFFF;
	height: 45px;
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.3),inset 0 0 230px rgba(0,0,0,.1);
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.3),inset 0 0 230px rgba(0,0,0,.1);
}
#register-your-interest #mc_embed_signup-register::placeholder {
    color: rgba(0,0,0,.8);
}
#register-your-interest #mc_embed_signup-register .mce_inline_error {
	background: none !important;
	padding: 0 !important;
	color: #333333 !important;
}
.gform_wrapper ::-webkit-input-placeholder { color: #5e5e5e; }
.gform_wrapper ::-moz-placeholder { color: #5e5e5e; }
.gform_wrapper ::input:-moz-placeholder { color: #5e5e5e; }

.gform_wrapper .ginput_container_text input,
.gform_wrapper .ginput_container_email input,
.gform_wrapper .ginput_container_phone input,
.gform_wrapper .ginput_container_select select,
.gform_wrapper textarea {
  	border-radius: 10px;
  	margin-bottom: 20px;
	background: #f3f3f3;
    font-size: 18px;
    line-height: 1.6em;
    padding-left: 5px;
	border: 1px solid #ced4da;
}
.gform_wrapper [type="checkbox"] {
	float: left;
	margin-right: 10px;
	margin-top: 6px;
}
.gform_wrapper .gfield_consent_label {
	display: block;
}

/* Newsletter Sign-up
-------------------------------------------------- */
#newsletter-footer {
	background: #EECE70;
	padding: 30px 0;	
}
#newsletter-footer .fa-envelope {
	color: #333333;
	font-size: 50px;
	margin-right: 20px;
}
#newsletter-footer .title-wrap {
	display: flex;
  	align-items: center; 
}
#newsletter-footer .title {
	font-family: 'Lato';
	font-size: 23px;
	color: #333333;
	line-height: 28px;
	margin-left: 30px;
}
#newsletter-footer .col-lg-6 {
  	display: flex;
  	align-items: center;
  	justify-content: center;
}
#newsletter-footer .mc-field-group {
	position: relative;
}
#newsletter-footer #mc-embedded-subscribe-footer {
	background: #1C1C1C;
	color: #FFFFFF;
	border: none;
	height: 45px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	position: absolute;
	right: -1px;
	top: 0;
	min-width: 154px;
}
#newsletter-footer #mc_embed_signup-footer {
	width: 100%;
}
#newsletter-footer #mc_embed_signup-footer input[type="email"] {
	height: 45px !important;
	padding: 12px 10px !important;
	border-radius: 10px;
	border: none;
	background: #FFFFFF;
	width: 100%;
}
#newsletter-footer #mc-embedded-subscribe-footer:hover {
	background: #1C1C1C;
	color: #FFFFFF;
	height: 45px;
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.3),inset 0 0 230px rgba(0,0,0,.1);
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.3),inset 0 0 230px rgba(0,0,0,.1);
}
#newsletter-footer #mc_embed_signup-footer::placeholder {
    color: rgba(0,0,0,.8);
}
#newsletter-footer #mc_embed_signup-footer div.mce_inline_error {
	background: none !important;
	margin-top: 10px !important;
	padding: 0 !important;
}

/* Footer
-------------------------------------------------- */
footer {
	background: #1F1D16;
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
  	padding: 1rem 0;
	letter-spacing: 3%;
	padding: 50px 0 10px 0;
}
footer .col-7 {
	display: flex;
	flex-direction: column;
}
.footer-logo {
    width: auto;
    max-height: 80px;
	margin-bottom: 20px;
}
footer ul.social-list {
  	justify-content: flex-start;
	margin-bottom: 20px;
}
#footer-bottom {
	border-top: 1px solid #FFF;
	color: #E0E0E0;
	font-size: 14px;
	padding: 10px 0;
}
ul.footer-menu {
	margin: 0 0 50px 0;
	padding: 0;
}
ul.footer-menu li {
	list-style: none;
	border-bottom: 1px solid;
	border-color: rgba(255, 255, 255, 0.2);
}
ul.footer-menu li a {
	color: #FFFFFF;
	text-decoration: none;
	padding: 10px;
	display: block;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
ul.footer-menu li a:hover {
	padding: 10px 10px 10px 15px;
}
.copyright-company-details {
	margin-top: 20px;
	text-align: center;
}

/* 404 Page
-------------------------------------------------- */
.error404 .page {
	background: #F7F7F7;
}
.error404 #recognition-section {
	background: #FFFFFF;
}


/* Privacy Policy
-------------------------------------------------- */
.privacy_wrapper {
	position: fixed;
	bottom: 0;
	font-size: 16px;
	border-top: 1px solid #DDDDDD;
	padding-top: 20px;
	background: #FFFFFF;
	left: 0;
	right: 0;
	z-index: 999;
	color: #333333;
}
.privacy_wrapper a {
	color: #000000;
}
.privacy_wrapper a#fom:hover,
.privacy_wrapper a#fom:focus {
	color: #000000;
	text-decoration: underline;
}
