@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
    --black: #000000;
    --white: #ffffff;
    --yellow: #bd9308;
    --gray: #666666;
    --red: #b14c58;
    --offwhite: #f6edd7;
    --blue: #36979f;
    --body_font: 'Open Sans', sans-serif;
    --heading_font: 'Open Sans', sans-serif;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
*:focus:not(:focus-visible) {
    outline: 0
}
a:focus,a:hover,a:active,a:visited {
    text-decoration: none
}
a:focus {
    outline: 2px solid #5271a1;
    outline-style: auto;
    outline-offset: 2px;
    border-radius: 1px
}
ul {
    list-style: none;
    padding: 0;
    margin: 0
}
.site_menu .nav-link:focus:not(:focus-visible) {
    outline: 0
}
html,body {
    min-height: 100vh;
    height: auto
}
body {
    font-family: var(--body_font);
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    overflow-x: hidden;
    position: relative;
    color: var(--black);
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
img {
    max-width: 100%
}
h1,h2,h3,h4,h5,h6,.heading1, .heading2,.heading3,.heading4,.heading5,.heading6 {
    margin: 0 0 15px;
    font-family: var(--heading_font);
    font-weight: 300;
}
.container {
    max-width: 1170px;
    margin: 0px auto;
    width: 100%;
    padding: 0 15px;
}
.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bg_black {
    background-color: var(--black)
}
.regular {font-weight: 400}
.medium {font-weight: 500}
.semibold {font-weight: 600}
.bold {font-weight: 700}
.yellow_link {color: var(--yellow)}
.yellow_text {color: var(--yellow)}
.text-center {text-align: center}
.green_text {color: var(--blue)}
.red_text {color: var(--red)}
/* Header */
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--black);
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9;
}

.site_logo_banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    position: relative;
    padding-top: 6%;
}
.site_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--yellow);
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 30px;
    padding: 12px 0;
    position: relative;
    height: 100%;
    width: 100%;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
}
.site_logo a {
    line-height: 0;
    display: block;
    line-height: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.site_logo .heading1 {
    margin: 0 0 5px;
    font-size: clamp(16px, 2vw, 20px);
}
.site_menu {
    padding: 15px 0;
    position: relative
}
.site_menu .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.nav_right {
    gap: 15px;
}
.navbar .nav-link {
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .2s;
    transition: .2s;
    font-size: 16px;
    font-weight: 300;
}
.navbar .nav-link:hover {
    color: var(--yellow);
}
.navbar .nav-link.exposure_btn {
    border: 1px solid currentColor;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: none;
}
.site_menu input#mbl_menu {
    position: absolute;
    opacity: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden
}
.site_menu input#mbl_menu + label {
    position: absolute;
    left: 15px;
    top: 11px;
    width: 30px;
    height: 30px;
    display: none;
    color: var(--white);
    cursor: pointer;
    z-index: 1
}
.navbar .nav-item.mbl_menu_title {
    text-align: center;
    padding: 40px 0 10px;
    font-size: 24px;
    font-weight: 500;
    display: none
}

/* Body content css */
#main {
/*    min-height: 80vh;*/
    background-color: var(--offwhite);
}
.hero_section {
    background-color: #141414;
    color: var(--white);
    padding: 30px 0;
/*    min-height: 512px;*/
}
.hero_section.home_hero {
    min-height: 512px;
}
.hero_section a {
    color: var(--yellow)
}
.hero_content {
/*    max-width: 1920px;*/
    width: 100%;
}
.hero_carousel .slick-track {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}
.single_item {
    position: relative;
    padding: 0 25px;
}
.single_item .slide_img {
    width: 100%;
/*    height: 358px;*/
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    margin: 0px auto;
    aspect-ratio: 13/9;
    background-color: #f2f2f2;
    max-width: 585px;
}
.winner_book_carousel .single_item .slide_img {
        width: 100%;
/*    max-height: 350px;*/
    height: auto;
/*
    -o-object-fit: cover;
    object-fit: cover;
*/
    display: block;
    margin: 0px auto;
    aspect-ratio: 13/9;
    background-color: #f2f2f2;
}
.image_caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 10px 40px;
    background-color: rgba(0,0,0,.8);
    color: var(--white);
    z-index: 2;
    display: none
}
.slick-center .image_caption {
    display: block
}
.image_caption .heading2 {
    color: var(--yellow);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    margin: 0;
    line-height: normal;
}
.image_caption .heading2 .captioner_name {
    color: var(--white);
    font-size: clamp(14px, 2vw, 16px);
    display: block;
    font-weight: 500
}
ul.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    padding-top: 25px
}
ul.slick-dots button {
    border-radius: 50%;
    text-indent: -99999px;
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer
}
ul.slick-dots .slick-active button {
    background-color: var(--yellow);
}
.inner_heroimg img {
    width: 100%;
}
.body_content {
/*    background-color: var(--offwhite);*/
    background-color: #1e1e1e;
    padding: 30px 0;
    position: relative;
    background-image: url(../images/shadow_bottom.png);
    background-repeat: no-repeat;
    background-position: top center;
}
.block_row {
    display: grid;
    gap: 10px;
    margin: 0 0 10px;
}
.block_row:last-child {
    margin: 0;
}
.single_block {
    overflow: hidden;
    text-align: center
}
.block_row a {
    display: block;
    height: 100%;
}
.block_row img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
}
/*
.single_block a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
*/
.first_row {
    grid-template-columns: 60% auto;
}
.second_row, .third_row {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.yellow_btn {
	-webkit-box-shadow: inset 0px 1px 0px 0px #ebb37f;
	box-shadow: inset 0px 1px 0px 0px #ebb37f;
	background: -moz-linear-gradient( center top, #f2b93d 5%, #c99212 100% );
 	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2b93d', endColorstr='#c99212');
	background-color: #f2b93d;
	border-radius: 5px!important;
	border: 1px solid #d9b457;
	display: inline-block;
	color: #ffffff!important;
	font-size: 14px;
    font-weight: 700!important;
	padding: 5px 15px;
	text-decoration: none;
	text-shadow: 1px 1px 0px #5c5c5c;
    -webkit-transition: .2s;
    transition: .2s;
    cursor: pointer;
    text-transform: none!important;
    line-height: 1.3
}
.yellow_btn:hover {
	background: -moz-linear-gradient( center top, #c99212 5%, #f2b93d 100% );
 	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c99212', endColorstr='#f2b93d');
	background-color: #c99212;
}
.yellow_btn:active {
	position: relative;
	top: 1px;
}
.red_btn {
    background-color: var(--red);
    border: 1px solid var(--red);
    color: var(--offwhite)!important;
    border-radius: 5px!important;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700!important;
    cursor: pointer;
}
.blue_btn {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--offwhite)!important;
    border-radius: 5px!important;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700!important;
    cursor: pointer;
}
.large_btn {
    padding: 10px 35px;
    font-size: 18px;
}
.subscribe_form .form_group {
    position: relative;
    margin: 0 0 20px;
}
.subscribe_form .form_group .form_label {
    display: block;
    margin: 0 0 5px;
}
.subscribe_form .form_group .form_control {
    display: block;
    width: 100%;
    border: none;
    height: 35px;
    padding: 0 10px;
    font-size: 16px;
    border-radius: 5px;
    outline: 0
}

/* Footer css */
.footer {
    background-color: var(--black);
    color: var(--white);
}
.footer_wrapper {
    background-image: url(../images/footer_bg.webp);
    padding: 30px 0
}
.footer_top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.widget_title {
    display: grid;
    grid-template-columns: 45px auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--yellow);
    margin: 0 0 15px;
    border-bottom: 1px solid #e7e7e7;
    padding: 0 0 15px;
}
.widget_content .email_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap:5px
}
.widget_content a {
    color: var(--white);
    text-decoration: none;
    -webkit-transition: .2s;
    transition: .2s;
    margin: 0 0 2px;
    display: block
}
.widget_content a:hover {
    opacity: .75;
    text-decoration: underline
}
.footer_copyright {
    padding: 15px 0
}
.footer_copyright p {
    margin: 0;
}
.footer_copyright p a {
    color: var(--yellow);
    text-decoration: none;
}
.footer_copyright p a:hover {
    text-decoration: underline
}

/* Inner pages */
.hero_section .container {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 25px;
/*
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
*/
}
.inner_herotxt {
    max-width: 400px;
    width: 100%;
    padding-bottom: 50px;
}
.inner_herotxt .heading3 {
    font-size: clamp(20px, 2vw, 24px);
    color: var(--yellow);
}
.inner_herotxt p {
    margin: 0;
}
.inner_herotxt p strong {
    font-weight: 400
}
.body_content .two_column {
    display: grid;
    grid-template-columns: auto 275px;
    gap: 15px;
}
.body_content .one_column {
    display: block;
    width: 100%;
}
.jury_sec_title {
    padding: 15px 35px;
    -webkit-box-shadow: inset -20px -20px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset -20px -20px 20px 0px rgba(0, 0, 0, 0.1);
    background-color: #000
}
.jury_sec_title .heading2 {
    color: var(--yellow);
    margin: 0;
    font-size: clamp(20px, 2vw, 24px)
}
.single_jury {
    background-color: #fff;
    padding: 35px;
    margin: 0 0 15px;
    -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.jury_title {
    margin-bottom: 20px;
}
.jury_title .heading3 {
    color: var(--yellow);
    margin: 0;
    font-weight: 300;
    font-size: clamp(18px, 2vw, 20px);
}
.single_jury p {
    margin: 0;
    font-size: 14px;
}
.side_widget {
    margin: 0 0 15px;
}
.side_widget a {
    display: block;
}
.side_widget img {
    width: 100%;
    display: block
}

/* How to enter page */
.hero_section .container.three_column {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.howtoenter .inner_herotxt {
    max-width: 100%;
}
.howtoenter .heading2 {
    color: var(--yellow);
    font-size: clamp(20px,2vw,24px);
}
.howtoenter ol {
    list-style: outside decimal;
    padding-left: 18px;
    margin: 30px 0;
}
.howtoenter ol li {
    margin: 0 0 25px;
}
.howtoenter ol li a {
    color: var(--yellow);
}
.hero_cta {
    gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.hero_cta .yellow_btn {
    padding: 15px 25px;
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
    text-shadow: 1px 1px 0px #5c5c5c;
    -webkit-box-shadow: inset 0px 1px 0px 0px #ebb37f;
    box-shadow: inset 0px 1px 0px 0px #ebb37f;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f2b93d), color-stop(1, #c99212) );
}

.entry_fees {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 15px;
    border-bottom: 1px solid #000;
    color: var(--gray);
}
.entry_fees.subscription_option {
    border: none;
}
.entry_fees .jury_title .heading3 {
    font-weight: 400;
}
.entry_fees.rewards_text {
    padding: 30px 0;
    border: none;
}
.rewards_text .heading4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 400
}
/*
.deadlines_box {
    background-color: #000;
    color: var(--offwhite);
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: 0 -35px;
}
*/
.deadlines_box {
    background-color: var(--yellow);
    color: var(--offwhite);
    padding: 25px 15px;
    display: grid;
    grid-template-columns: 31% 31% 36%;
    gap: 10px;
    margin: 0 -35px;
    grid-auto-rows: 1fr;
}
.deadlines .jury_title {
    background-color: #000;
    padding: 15px 35px;
    margin: 0 -35px;
}
.deadlines .heading3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
/*
.single_deadline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: 15px
}
*/
.single_deadline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: 15px;
}
/*
.entry_name {
    background-color: var(--offwhite);
    padding: 10px;
    width: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    color: var(--blue);
    line-height: 1.1
}
*/
.entry_name {
    background-color: #f6edd7;
    padding: 10px;
    width: 87px;
    min-width: 87px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    color: var(--blue);
    line-height: 1.5;
}
.single_deadline p {
    font-size: 16px;
    font-weight: 500;
}
.single_deadline p {
    font-size: 16px;
    font-weight: 500;
}
.entry_name p {
    font-weight: 500;
}
.entry_name.yellow_box {
    background-color: var(--blue);
    color: var(--offwhite)
}
.entry_name.red_box {
    background-color: var(--red);
    color: var(--offwhite)
}
.entry_date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}
/*
.entry_name p {
    font-size: 16px;
    font-weight: 500;
}
*/
.single_jury.entry_row {
    padding-bottom: 0;
}
.images_row .heading3 {
    font-weight: 700;
}
.images_details {
    display: grid;
    grid-template-columns: auto 225px;
    gap: 30px;
}
.entry_fees.special_offer .jury_title {
    padding-left: 30px;
    background-color: #f0f0f0;
    padding: 10px 20px;
    margin: 0 0 30px;
}
.faq_single {
    margin: 0 0 30px;
}
.faq_single .heading4 {
    margin: 0;
    font-weight: 500;
    font-size: 13px;
}
.faq_single .jury_title {
    margin: 0;
    color: var(--gray);
}
.faq_single p {
    font-size: 13px
}
.unorder_list {
/*
    list-style: outside;
    padding-left: 20px;
*/
    margin: 0 0 25px;
}
.images_details .heading3 {
    color: var(--yellow);
    margin: 0 0 10px;
}
.black_box {
    background-color: #000;
    color: #fff;
}
.category {
/*
    display: grid;
    grid-template-columns: 1fr 1fr;
*/
    padding: 20px 15px;
/*    font-size: 14px;*/
/*    gap: 15px*/
}
.usage_rights {
    padding: 20px 15px;
}
.usage_rights p {
    font-size: 14px;
}
.black_box .heading4 {
    color: #bd9308;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
}
.allcat_link {
    padding: 0 15px 15px;
    text-align: right;
    font-weight: 400;
}
.allcat_link p {
    margin: 0;
}
.allcat_link a {
    color: #bd9308;
}
.login_register_link {
    padding: 15px;
    text-align: right;
    font-weight: 400
}
.login_register_link p {
    margin: 0
}
.prizes_wrapper .single_jury p {
    color: var(--gray);
    margin: 0 0 15px;
}
.single_award {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 30px;
    border: 1px solid #ccc;
    padding: 0;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(0,0,0,.25);
    box-shadow: 2px 2px 5px 0 rgba(0,0,0,.25);
    background-color: #f3f3f4;
}
.single_award.row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.award_image {
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 10px 27px;
    width: 30%;
    position: relative;
}
.award_image img {
    max-width: 130px;
    width: 100%;
}
.border_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 17px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}
.border_bottom span {
    height: 100%;
    width: 100%;
    background-color: #b14c58;
}
.border_bottom span:nth-child(2) {background-color: #f6edd7;}
.border_bottom span:nth-child(3) {background-color: #36979f;}
.award_text {
    padding: 30px 20px;
    width: 70%
}
.award_text .heading4 {
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 500;
    position: relative;
    padding: 15px 0 0;
    margin: 0 0 25px;
}
.award_text .heading4:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100px;
    height: 2px;
    background-color: #000;
}
.award_text .heading4 span {
    display: block;
    text-align: left;
}
.award_text .heading4 sup {
    text-transform: lowercase
}
.prize_list {
    margin: 0;
    list-style: outside;
    padding-left: 20px;
}
.prize_list li:not(:last-child) {
    margin: 0 0 12px;
}


/*
.hero_section.photoshow_page {
    min-height: 80vh;
}
*/
.body_content.login_pages {
    min-height: 80vh;
}
.login_box {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    margin: 50px auto;
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0, 0.25);
    box-shadow: 0px 0px 15px rgba(0,0,0, 0.25);
}
.login_box .form-group {
    text-align: left;
    margin: 0 0 20px;
}
.login_box .form-group label {
    display: block;
    margin: 0 0 5px;
}
.login_box .form_control {
    width: 100%;
    height: 40px;
    border: 1px solid #666;
    padding: 5px 15px;
    border-radius: 5px;
}
.login_box .heading1 {
    color: var(--yellow);
    margin: 0 0 50px;
    font-size: clamp(20px, 2vw, 24px);
}
.login_box a {
    color: #000;
}
.login_box .form-group.submit_btn {
    margin: 30px 0 50px;
}
.exp_options .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.exptise_option_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
    font-weight: 400;
}
.exp_options .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.exptise_option_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin: 0 0 25px;
    font-weight: 400;
}
.login_box .exp_options .form-group label {
    margin: 0;
}
.login_box .exp_options {
    gap: 25px
}
.error_msg p {
    color: red;
    font-size: 14px;
    font-weight: 500;
    background-color: #f0f0f0;
    padding: 10px;
    margin: 0 0 15px;
}

/* winnersphotos */
.body_content.winnersbook_page {
    background-color: #fff;
}
.container-fluid {
    max-width: 1920px;
    margin: 0px auto;
    padding: 0px 75px;
    width: 100%
}
.winnersbook_title_filter {
    margin: 0 0 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}
.winnersbook_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
    margin: 0 0 50px
}
.single_book {
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.25);
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    -webkit-transition: .3s;
    transition: .3s
}
.single_book:hover {
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.50);
    box-shadow: 0 0 20px rgba(0,0,0,0.50);
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}
.single_book a {
    text-decoration: none;
    color: var(--gray);
}
.book_img {
    background-color: #f0f0f0;
    text-align: center;
    padding: 25px;
}
.book_img img {
    height: 245px;
    width: auto;
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
    box-shadow: 5px 5px 5px rgba(0,0,0,.5);
    border: 1px solid rgba(0,0,0,0.5);
    margin: 0 auto;
}
.second_row img {
    aspect-ratio: 139/66;
    background-color: #f2f2f2;
}
.third_row img {
    aspect-ratio: 139/132;
    background-color: #f2f2f2;
}
.block_row img.intro_img {
    aspect-ratio: 342/127;
    background-color: #f2f2f2;
}
.block_row img.apa_logo_img {
    aspect-ratio: 223/127;
    background-color: #000;
}
.book_details {
    padding: 15px;
}
.book_details .book_name {
    color: var(--yellow);
    font-weight: 500;
    font-size: clamp(18px, 3vw, 22px);
    line-height: normal;
}
.winnersbook_filter label {
    font-weight: 700;
    color: var(--white);
    margin: 0 10px 0 0;
}
.winnersbook_filter select {
    border: 1px solid var(--gray);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer;
    background-color: #fff;
}
.product_popup {
  position: relative;
  background: #FFF;
  padding: 40px 20px 20px;
  width: auto;
  max-width: 1170px;
  margin: 20px auto;
}
.product_popup .container-fluid {
    padding: 0;
}
/* Single eGallery */
.gallery_page .winnersbook_list {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.gallery_page .thumbnail {
    padding: 0;
}
.gallery_page .thumbnail img {
    width: 100%;
    height: 245px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    display: block
}
.allshow_nav {
    margin: 0px
}
.allshow_nav .nav {
    gap: 10px;
    border-bottom: 2px solid #000;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px
}
.allshow_nav .nav .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    background-color: #000;
    padding: 3px 10px;
    display: inline-block;
    font-size: 14px;
    -webkit-transition: .3s;
    transition: .3s
}
.allshow_nav .nav .nav-link:hover {
    background-color: var(--yellow);
}
.allshow_nav .nav .active .nav-link {
    background-color: var(--yellow);
    font-weight: 700
}
.gallery_single_hero .container {
    max-width: 1920px;
    padding: 0 75px;
    gap: 30px
}
.show_latest_photo .slick-slide {
    position: relative;
    padding-top: 16%;
    min-height: 250px;
}
.show_latest_photo .slick-slide img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.gallery_single_hero .inner_herotxt .heading3 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
}
.gallery_single_hero .inner_herotxt {
    width: 100%;
    max-width: 550px
}
.gallery_page .book_details .book_name {
    text-align: center;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none
}
.page-link:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.hero_section.related_book {
    background-color: #fff;
    margin-top: 30px
}
.related_book .winnersbook_title_filter {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #000;
}
.related_book .heading2 {
    margin: 0;
    color: #000;
    font-weight: 600;
    font-size: clamp(22px, 3vw, 30px);
}
.single_book_details .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
.single_book_details .inner_heroimg {
    width: 30%;
}
.single_book_details .book_desc {
    width: 70%;
    padding: 30px 50px;
}
.single_book_details .single_photo.slick-slide {
    background-color: #f0f0f0;
    padding: 50px 30px;
    text-align: center;
}

.single_book_details .single_photo.slick-slide img {
    position: relative;
    height: 300px;
    width: auto;
    display: block;
    text-align: center;
    margin: 0px auto;
    -webkit-box-shadow: 10px 8px 5px #333;
    box-shadow: 10px 8px 5px #333;
    border: 1px solid #333;
}

.related_book .slick-prev {
    left: -25px;
}
.related_book .slick-next {
    right: -25px;
}
.related_book .single_book {
    margin: 50px 25px;
}
.book_desc .heading3 {
    font-weight: 700;
}

.book_desc .yellow_btn {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 18px;
    margin: 0 0 25px;
}
.book_desc h4 {
    font-weight: 700;
}
.product_popup .inner_heroimg {
    background-color: #f0f0f0;
    text-align: center;
}
.product_popup .inner_heroimg .full_image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
.image_count {
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}
/* Press */
.press_page .jury_title {
    gap: 15px;
}

.press_page .jury_title img {
    width: 162px;
}

.press_page .jury_title a {
    color: var(--yellow);
    font-size: 13px;
    text-decoration: none;
}
.press_page .jury_title a:hover {text-decoration: underline}

.press_page .single_jury p {
    margin: 0 0 20px;
}
.press_hero .inner_herotxt p {
    margin: 0 0 20px;
}

.videos_page .container {
    display: block;
}
.videos_content h2, .videos_content h3 {
    color: var(--yellow);
}
.videos_row {
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.single_video {
    position: relative;
    background-color: rgba(255,255,255, .1);
    padding: 15px;
    margin: 0 0 30px;
}
.videos_page .h1.yellow_text {
    font-size: clamp(20px, 2vw, 24px);
}
.videos_content .open_for_sub {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.7
}
.open_for_sub a.yellow_btn {
    text-transform: uppercase!important;
    font-size: clamp(16px, 2vw, 18px);
}
/* Winners Book */
.prizes_wrapper .winner_book_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 35px;
}
.prizes_wrapper .winner_book_wrapper .single_book {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.winner_book_wrapper .book_details {
    padding: 20px;
}
.winner_book_wrapper .book_details .book_title {
    font-weight: 400;
    /* text-transform: uppercase; */
    font-size: clamp(18px, 2vw, 20px);
    margin: 0 0 5px;
}
/*
.winner_book_carousel .single_item .slide_img {
    width: 100%;
}
*/

/* Gallery New */
.gallery_navigation {
    background-color: #fff;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0f0f0;
}
.gallery_navigation  .user_type .heading2 {
    font-weight: 400;
    font-size: 14px;
}
.gallery_navigation .user_type .heading2 a {
    text-decoration: underline;
    color: #000;
}
.gallery_nav_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 700;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.gallery_nav_links .nav-link {
    text-decoration: none;
    font-size: 18px;
    color: var(--yellow);
}
.gallery_nav_links .nav-link sup {
    font-weight: 400;
}
.user_type .heading2 {
    margin: 0;
    font-size: 16px;
}
.gallery_heading {
    background-color: #fff;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
}
.gallery_heading p.tagline {
    margin: 0;
}
.gallery_heading .heading2 {
    margin: 0 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--yellow);
}
.gallery_heading .heading2 sup {
    text-transform: none;
    font-weight: 300;
}
.single_jury.gallery_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.gallery_grid .single_book {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.gallery_grid .single_book .book_img {
    padding: 0;
}

.gallery_grid .book_img img {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
}

.gallery_grid .book_details .book_title {
    margin: 0;
    color: #000;
    text-align: center;
}

.gallery_grid .book_details {
    padding: 10px 10px;
}
.single_jury.winner_gallery {
/*
    display: grid;
    grid-template-columns: 20% auto 15%;
    gap: 0px;
*/
    padding: 30px 0;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 225px auto;
}
.winner_lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.winner_details .winner_lists {
    display: block;
}
.winner_image {
    margin-bottom: 0;
}
.winner_details {
    padding: 25px 0 0;
}
.single_winner {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

/*
.single_winner {
    display: grid;
    grid-template-columns: 45% auto;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}
*/
.gallery_right {
    padding: 0 30px 0 15px;
}
.gallery_middle {
    padding: 0 30px 0 15px;
}
.winner_image a, .winner_image img {
    width: 100%;
    display: block;
}

.single_winner:last-child {
    border: none;
    padding: 0;
    margin: 0;
}
.gallery_left_sidebar {
    padding: 0 15px 0 30px;
}
.sidebar_nav .nav-item {
    border-bottom: 1px solid #ddd;
    margin: 0 0 10px;
}

.sidebar_nav .nav-item .nav-link {
    padding: 5px 0;
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
}
.winner_gallery_title a {
    color: var(--black);
    text-transform: uppercase;
}
.winner_summery {
    margin: 0px;
    font-size: 16px;
}
.winner_gallery .winner_summery p {
    margin: 0 0 5px;
    font-size: 14px;
}
.winner_summery p.placement {
    color: var(--yellow);
    font-weight: 700;
    font-size: 14px;
}
.winner_name_country .winner_name {
    color: var(--yellow);
    font-weight: 700;
    margin: 0 0 5px;
    font-size: 18px;
    text-transform: uppercase;
}
.winner_gallery_title .heading2 {
    font-weight: 500;
    font-size: 20px;
    color: var(--yellow);
}
.winner_name_country {margin: 0 0 30px;}
.single_jury.winner_gallery.winner_details {
    grid-template-columns: 20% auto;
}
.winner_details .single_winner {
    grid-template-columns: 60% auto;
}

/* Categories */
.categories_wrapper {
    margin: 0;
}
.single_category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    margin: 0 0 20px;
}
.single_category:nth-child(2n+2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.category_image {
    width: 60%;
}
.cat_image_name {
    position: relative;
}
.cat_image_name img {
    width: 100%;
    height: auto;
    display: block;
/*    aspect-ratio: 245/163;*/
    background-color: #f2f2f2
}
.cat_image_name .user_name {
    position: absolute;
    bottom: 0;
    background-color: var(--yellow);
    display: inline-block;
    left: 0;
    padding: 5px 10px;
    margin: 0;
    color: #fff;
    text-transform: capitalize
}
.single_category:nth-child(2n+2) .cat_image_name .user_name {
    right: 0;
    left: auto;
}
.category_text {
    position: relative;
    background-color: #fff;
    padding: 20px;
    width: 40%;
    -webkit-box-shadow: 2px 2px 10px rgba(0,0,0,.1);
    box-shadow: 2px 2px 10px rgba(0,0,0,.1);
}
.cat_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
    margin: 0 0 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.cat_title .heading2 {
    margin: 0;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    font-size: 16px;
    color: var(--yellow);
}
.cat_title .heading2::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--yellow);
}
ul.cat_lists {
    list-style: outside;
    padding-left: 20px;
}
.single_category .cat_lists li:not(:last-child) {
    margin: 0 0 5px;
}

.body_content.cat_dark {
    background-color: #000;
    margin-top: 30px;
}

.cat_dark .jury_sec_title {
    background-color: #fff;
}

@media only screen and (min-width:768px) {
    .close_btn, .site_menu .navbar .mbl_menu_btn {
        display: none
    }
}

@media only screen and (min-width:1201px) and (max-width:1440px) {
    .site_logo_banner {
        height: auto;
        position: relative;
        padding-top: 7%;
        background-size: cover;
    }
    .site_logo {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
    }
}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .gallery_single_hero .container, .container-fluid {padding: 0 30px}
    .site_logo_banner {
        height: auto;
        position: relative;
        padding-top: 7%;
    }
    .site_logo {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .gallery_single_hero .container, .container-fluid {padding: 0 15px}
    .site_logo_banner {
        height: auto;
        position: relative;
        padding-top: 7%;
    }
    .site_logo {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
    }
    .site_logo .logo_img {
        width: 160px;
        height: auto
    }
    .site_menu .navbar {
        gap: 20px
    }
    .navbar .nav-link {
        font-size: 14px
    }
    .single_item {
        padding: 0 10px
    }
    .first_row {
        grid-template-columns: 1fr;
    }
    .second_row, .third_row {
        grid-template-columns: 1fr 1fr;
    }
    .hero_section .container.three_column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .deadlines_box, .images_details, .entry_fees {grid-template-columns: 1fr}
    .single_jury {padding: 15px}
}

@media only screen and (max-width:767px) {
    .gallery_single_hero .container, .container-fluid {padding: 0 15px}
    .gallery_single_hero .container {grid-template-columns: 1fr;display: block!important}
    .show_latest_photo .slick-slide img {height: 250px}
    .site_logo {
        -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: 10px 15px;
        gap: 10px;
        text-align: center;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .site_logo .logo_img {
        width: 160px;
        height: auto
    }
    .site_logo .heading1 {
        margin: 0;
    }
    .site_menu .container {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .site_menu .navbar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: fixed;
        width: 80%;
        left: -100%;
        background-color: var(--white);
        -webkit-transition: .3s;
        transition: .3s;
        top: 0;
        height: 100%;
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        gap: 0;
        z-index: 2
    }
    .site_menu input#mbl_menu:checked ~ .navbar {
        left: 0;
    }
    .navbar .nav-link {
        padding: 10px 15px;
        display: block;
        color: var(--black)
    }
    .site_menu input#mbl_menu + label {display: inline-block;}
    .navbar .nav-item {
        border-bottom: 1px solid #f1eeee;
        width: 100%
    }
    .navbar .nav-item.mbl_menu_title {display: inline-block}
    .navbar .nav-item.mbl_menu_btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 15px;
        color: var(--black);
        font-size: 18px;
        font-weight: 700;
    }
    .navbar .nav-link.exposure_btn {
        margin: 12px 15px;
    }
    .mbl_menu_btn .close_btn {
        color: var(--black);
        background-color: transparent;
        border: none;
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0;
        cursor: pointer
    }
    .mbl_column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        grid-template-columns:1fr!important; 
    }
    .first_row {
        grid-template-columns: 1fr;
    }
    .second_row, .third_row {
        grid-template-columns: 1fr 1fr;
    }
    .single_item {
        padding: 0 5px;
    }
    iframe {width: 100%; height: auto}
    .footer_top {
        grid-template-columns: 1fr;
    }
    .footer_contact p {text-align: left}    
    .jury_sec_title {padding: 10px 15px;}
    .single_jury {padding: 25px 15px}
    .site_logo_banner {
        height: auto;
        background-position: right 30% center;
        position: relative;
        padding-top: 10%;
    }
    .hero_section .container.three_column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .deadlines_box, .images_details, .entry_fees {grid-template-columns: 1fr}
    .deadlines_box, .deadlines .jury_title {padding: 15px;margin: 0 -15px}
    .howtoenter .inner_herotxt {padding: 0}
    .hero_cta .yellow_btn {width: 100%}
    .login_box {padding: 15px;margin: 30px auto;}
    .login_box .heading1 {margin: 0 0 20px;}
    .winnersbook_list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin: 0 0 30px
    }
    .container-fluid {padding: 0 15px}
    .single_book_details .container-fluid {display: block}
    .single_book_details .inner_heroimg {width: 100%}
    .single_book_details .book_desc {
        width: 100%;
        padding: 30px 0px;
    }
    .videos_row {grid-template-columns: 1fr}
    .videos_row:last-child {margin-bottom: 0}
    .single_jury.winner_gallery,.single_jury.winner_gallery.winner_details,.winner_details .single_winner {
        grid-template-columns: 1fr;
    }
    .gallery_middle, .gallery_right {
        padding: 0 15px;
    }
    .single_category, .single_category:nth-child(2n+2) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap:15px
    }
    .category_image, .category_text {
        width: 100%;
    }
    .gallery_left_sidebar {
        padding: 0 15px 15px 15px;
    }
    .single_winner {
        display: block
    }
    .gallery_heading {
        padding: 15px
    }
    .single_item .slide_img {
        aspect-ratio:13/9;
        max-height: 230px;
        height: auto;
    }
    .single_award, .single_award.row_reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .award_text {
        width: 100%
    }
    .award_image {
        text-align: center;
        width: 100%;
        padding: 50px 15px;
    }
    
}