/* ==========================================================================
   Custom Style Sheet
   ========================================================================== */

/* Lato - Local Fonts */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 100;
  src: url('../fonts/lato-italic-100.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/lato-italic-300.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lato-italic-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/lato-italic-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/lato-normal-100.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/lato-normal-300.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-normal-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-normal-700.ttf') format('truetype');
}

/* Droid Serif - Local Fonts */
@font-face {
  font-family: 'Droid Serif';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/droid-serif-italic-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Droid Serif';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/droid-serif-italic-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Droid Serif';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/droid-serif-normal-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Droid Serif';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/droid-serif-normal-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Conv_ProximaNova-Regular';
  src: url('../fonts/ProximaNova-Regular.eot');
  src: local('☺'), url('../fonts/ProximaNova-Regular.woff') format('woff'), url('../fonts/ProximaNova-Regular.ttf') format('truetype'), url('../fonts/ProximaNova-Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

  body {
    font-family: 'Conv_ProximaNova-Regular' !important;
  }
 
/* ============= Main Start ============= */ 
 
.container   {
	width: 1060px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* ============= Main End ============= */

/* ============= Footer Start ============= */

footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-copyright p {
    margin: 0;
    font-size: 12px;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============= Footer End ============= */

/* ============= Upload Page Styles Start ============= */

/* Button Custom Styles */
.btn-custom {
    width: 159px;
    height: 50px;
    background: #f2f2f2;
    border-radius: 5px;
    border: solid 2px #cccccc;
    outline: none;
    color: #545454;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-custom:hover {
    background: #545454;
    color: #FFF;
}

/* reCAPTCHA Styles - Match CodeIgniter Design */
.g-recaptcha {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.g-recaptcha div {
    margin: 0 auto;
}

/* ============= Photo Detail Page Styles Start ============= */

.photo-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.photo-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.photo-image {
    flex: 1;
}

.photo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.photo-info {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.photo-info h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.photo-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.photo-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.photo-description h4 {
    color: #333;
    margin-bottom: 10px;
}

.photo-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.photo-actions .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn:hover {
    opacity: 0.8;
}

.no-photo {
    text-align: center;
    padding: 60px 20px;
}

.no-photo h3 {
    color: #333;
    margin-bottom: 15px;
}

.no-photo p {
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .photo-detail {
        flex-direction: column;
    }
    
    .photo-actions {
        flex-direction: column;
    }
}

/* ============= Photo Detail Page Styles End ============= */

.search-result-heading {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.inner-page-heading-w-bg {
    width: 1060px;
    text-align: center;
    text-transform: uppercase;
    padding: 67px 0 0 0;
    max-width: 100%;
    margin: 0 auto;
}

.inner-page-heading-w-bg h2 {
    margin: 0;
    padding: 0 10px 0 10px;
    color: #333333;
    font-size: 48px;
    font-weight: normal;
    font-family: 'Conv_ProximaNova-Regular';
}


.content-area {
    width: 100%;
    float: left;
    font-family: 'Conv_ProximaNova-Regular';
}

.post-your-photos {
    padding: 30px;
    border-radius: 8px;
}

.post-your-photos input[type="text"], .post-your-photos input[type="email"] {
    width: 321px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 0;
    outline: none;
    color: #807C7C;
    font-size: 14px;
    padding-left: 21px;
    border: solid 2px #cccccc;
}

.post-your-photos input[type="submit"] {
    width: 159px !important;
    height: 50px !important;
    background: #027C85 !important;
    border-radius: 5px !important;
    border: solid 2px #027C85 !important;
    outline: none !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    margin-top: 60px !important;
    margin-bottom: 43px !important;
}

.post-your-photos input[type="submit"]:hover {
    background: #015A61 !important;
    color: #FFF !important;
}

.post-your-photos textarea {
    width: 321px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 0;
    outline: none;
    color: #807C7C;
    font-size: 14px;
    padding-left: 21px;
    padding-right: 21px;
    padding-top: 21px;
    box-sizing: border-box;
    border: solid 2px #cccccc;
}

.post-your-photos.filled textarea, .post-your-photos.filled input[type="text"] {
    color: #545454;
}

/* Image preview styling */
.img-inner {
    position: relative;
    display: inline-block;
    margin: 20px auto;
    text-align: center;
}

.img-inner img {
    max-width: 300px;
    max-height: 276px;
    border: 2px solid #cccccc;
    border-radius: 5px;
}

.img-inner #close {
    position: absolute;
    right: 398px;
    top: 9px;
    z-index: 9999;
    background: rgb(125, 121, 121);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.img-inner #close:hover {
    background: rgb(100, 96, 96);
}

.post-your-photos .row {
    margin-bottom: 20px;
}

.post-your-photos input[type="text"],
.post-your-photos input[type="email"],
.post-your-photos textarea {
    /* width: 100%; */
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.post-your-photos textarea {
    height: 100px;
    resize: vertical;
}



.img-inner #close {
    position: absolute;
    right: 398px;
    top: 9px;
    z-index: 9999;
    background: rgb(125, 121, 121);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.wrong_photo {
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    margin: 20px 0;
}

.wrong_photo:hover {
    background-color: #c82333;
}

.photo-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: transparent;
    padding: 20px;
}

/* Disable header menu during upload */
.header-disabled .navigation ul li a,
.header-disabled .mobile-nav ul li a,
.header-disabled .search-btn,
.header-disabled .msa,
.header-disabled .mna,
.header-disabled .logo a {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Circular Spinner Loader with 8 dots */
.spinner-loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    border-radius: 50%;
    animation: spinnerFade 1.2s linear infinite;
}

.spinner-dot:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.spinner-dot:nth-child(2) {
    top: 7px;
    right: 7px;
    animation-delay: 0.15s;
}

.spinner-dot:nth-child(3) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.3s;
}

.spinner-dot:nth-child(4) {
    bottom: 7px;
    right: 7px;
    animation-delay: 0.45s;
}

.spinner-dot:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.spinner-dot:nth-child(6) {
    bottom: 7px;
    left: 7px;
    animation-delay: 0.75s;
}

.spinner-dot:nth-child(7) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 0.9s;
}

.spinner-dot:nth-child(8) {
    top: 7px;
    left: 7px;
    animation-delay: 1.05s;
}

@keyframes spinnerFade {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

/* Modern Success Modal Styles */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 51, 54, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.success-modal {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
    margin: 0 auto;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-modal-body {
    padding: 32px 24px 24px 24px;
    text-align: left;
}

.success-modal-body h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.success-modal-body p {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.success-modal-footer {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.modal-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.modal-btn-light {
    background-color: #f3f4f6;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
}

.modal-btn-light:hover {
    background-color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 640px) {
    .success-modal-overlay {
        padding: 16px;
    }
    
    .success-modal {
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

.post-ping-admin-wrapper {
    text-align: center;
    padding: 40px 20px;
    /* background: #f8f9fa; */
    border-radius: 8px;
    margin: 20px 0;
}

.post-ping-admin-msg {
    text-align: center;
    margin: 20px 0;
}

/* ============= Upload Page Styles End ============= */ 


   
/* ============= Header Start ============= */ 

header {
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);   
  z-index:10;
  position:relative;
}

header .container   {
  padding: 20px 45px;
  box-sizing: border-box;  
}

.slider .container {
  margin: 0;
  width: 100%;
}

.slider .container #demo .container {
  margin: 0;
  width: 100%;
}


.logo {
    display: inline-block;
    width: 20%;
}

.admin-logo {
    display: inline-block;
    width: 100%;   
}

.forgot-password {
    margin-top: 10px;
    display: inline-block;
}

#close {
  position: absolute;
  right: 10px;
  top: -117px;
  z-index: 9999;
  background-color: rgb(125, 121, 121);
  border-radius: 50%;
  padding: 4px 8px;
  box-sizing: border-box;
  font-size: 12px;
  color: #FFFFFF;
  cursor: pointer;
}

.navigation {
    width: 62%;
    display: inline-block;
  vertical-align: middle;
}

.navigation ul {
  float: right;
  list-style: none;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Helvetica', 'Arial', sans-serif;  
  font-size:14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navigation ul li {
  float: left;
  list-style: none;
  /*padding: 0px 20px;*/
  padding:0 24px 0 0;
  box-sizing: border-box;
}

.navigation ul li a {
  color: #999;
  text-decoration: none;
  border-radius: 3px;
  padding: 10px 10px;
}

.navigation ul li a:hover {
  background:#4f5155;
  color:#FFF;  
}

.navigation ul li a.active {
  background:#4f5155;  
  color:#FFF;  
}

.search {
  width: 17%;
  display: inline-block;
  font-family: 'Helvetica', 'Arial', sans-serif;  
  font-size:14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search > a.search-btn {
  color:#999;
  text-decoration:none;
  background:url('../img/search-icon.png') no-repeat right top;
  padding-right:22px;
}

.search > a.cross {  
  color:#999;
  text-decoration:none;
  background:url('../img/m-cross-icon.png') no-repeat right top;
  padding-right:22px;
}

.hide-div {
  position:absolute;
  left:0;
  top:78px;  
  width:100%;
}

.filter {
  width:100%;
  float:left;
  background: #2e3336;
  padding:18px 0;
}

.filter .container {
  padding: 0;
  width: 1010px;
}

.filter ul {
  list-style:none;
  margin:0;
  padding:0;
  display: inline;
}

.filter ul li {
  float: left;
  display: inline;
  padding-right: 34px;
  padding-top: 7px;
}

.filter ul li:last-child {
  padding-top: 0;
  position: relative;
  padding-right: 13px;
}

.filter ul li a {
  color:#cdcdcd;
  text-decoration:none;
}

.filter ul li a:hover {
  color:#FFF;
}

.filter form {
  margin:0;
  padding:0;
  float:right;
}

.filter form input {
  width:352px;
  height:34px;
  outline:none;
  color:#7c7e86;
  font-size:15px;
  border-radius:10px;
  border:0;
  background:#FFF;
  padding-left:10px;
  box-sizing:border-box;
}

.filter form input.search-icon {
  width: 18px;
  height: 17px;
  outline: none;
  background: url('../img/search-icon.png') no-repeat center center;
  padding: 0;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;  
  position: absolute;
  right: 27px;
  top: 8px;
  z-index: 9999;
  cursor: pointer;  
}

.search-filtered {
  position:absolute;
  right: 32px;
  top: 70px;
  width:350px;
  background:#f1f1f1;
}

.search-filtered ul {  
  list-style:none;
  font-size:16px;
}

.search-filtered ul li {  
  padding:0;
  float:none;
  display:block;
}

.search-filtered ul li a {
  border-bottom:solid 1px #d1d1d1;
  padding:8px 0 8px 24px;
  color:#545454;
  text-transform:lowercase;
  display:block;
}

.search-filtered ul li a:hover {
  background:#FFFFFF;
  color:#333;
}


/* ============= Header End ============= */   


/* ============= Slider Start ============= */   
   
.slider {
    z-index: 9;
}

#owl-demo .item{
  margin: 0px;
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}


.slider-img{
    position:relative;
}

.feature:before{
    content:"";
    position:absolute;
    top:-4px; left:-4px; 
    background: url("../img/extra/owl/ribon.png") top left no-repeat;
	z-index:999;
	width: 100%;
    height: 100%;
}

.feature:after {
    content:"";
    position:absolute;
    top:0; bottom:0; left:0; right:0;
    /* opacity:0.37; */
}

.feature:hover:after {    
    border:8px solid rgba(255,255,255,0.37);
}



.grand-feature:before{
    content:"";
    position:absolute;
    top:-4px; left:-4px; 
    background: url("../img/extra/owl/grand-ribon.png") top left no-repeat;
	z-index:999;
	width: 100%;
    height: 100%;
}

.grand-feature:after {
    content:"";
    position:absolute;
    top:0; bottom:0; left:0; right:0;
    /* opacity:0.37; */
}

.grand-feature:hover:after {    
    border:8px solid rgba(255,255,255,0.37);
}

.with-out-feature:after {
    content:"";
    position:absolute;
    top:0; bottom:0; left:0; right:0;
    /* opacity:0.37; */
}
.with-out-feature:hover:after {
    border:8px solid rgba(255,255,255,0.37);
}

.customNavigation{
  text-align: center;
  background:url('../img/btn-bg-lg.jpg') repeat left top;
  width:100%;
  height:60px;
  line-height: 59px;
  overflow: hidden; /* Clearfix for floated elements */
}

.customNavigation a{ 
  color:#FFFFFF;
  font-size:21px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  display: inline-block;
  min-width: 44px;
  min-height: 44px;
  vertical-align: middle;
  text-align: center;
}

.customNavigation a i { 
  cursor:pointer;
  pointer-events: none;
}

.customNavigation a:hover{ 
  color:#FFF;
}

.customNavigation a.btn.prev{
  float:left;
  margin-left: 30px;
}

.customNavigation a.btn.next{
  float:right;
  margin-right: 30px;
}




/* ============= Slider End ============= */  


/* ============= Upcoming contest Start ============= */

.upcoming-contest .container {
	/*width: 620px;*/
}

.upcoming-contest {
    text-align: center;
    padding: 30px 0 60px 0;
}

.upcoming-contest h2 {
  font-family: 'Droid Serif', serif;
  color: #545454;
  font-style: italic;
  font-weight: normal;
  font-size: 38px;
  padding: 0;
  margin: 30px 0 18px 0;
}

.upcoming-contest h2:after  {
    content:"\A";
    width:60px;
    height:4px;
    background: #6bc28c; 
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}

.upcoming-contest p {
  font-family: 'Conv_ProximaNova-Regular';
  color:#545454;  
  font-size:20px;
  padding: 0;
  margin: 0;
}

/* ============= Upcoming contest End ============= */

.owl-theme .owl-controls {
  display:none !important;
}

/* ============= latest Post Start ============= */

.latest-post {
	background: #2e3336;
	text-align: center;
}

.latest-post h2 {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight:bold;
  color:#FFFFFF;
  font-size:28px;
  text-transform:uppercase;
}

.latest-post .container {
	padding:20px 50px 60px 50px;
}

.post { 
    background:#f2f2f2;
    padding:10px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.post:hover {
  
}

.post h2 {
  color:#656565;
  font-size:18px;
  font-family: 'Conv_ProximaNova-Regular';
  text-transform:uppercase;
  font-weight:normal;
  text-align:left;
  padding: 0;
  margin-bottom: 5px;
  flex-grow: 1; /* Take up remaining space */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.post h2 span {
  color:#6c6969;
  font-size:14px;
  display:block;
  /*font-weight: bold;*/
}

.post:hover h2 span {
  
}

.post .fa {
  margin: 4px 5px 0 0;
  float: left;
}

.tab-content {
  border:none !important;
  padding:0 !important;
  background:none !important;
}


/* Loader */

.loader {
  margin: 50px auto;
  font-size: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}

/* Loader */

/* ============= latest Post End ============= */

.inner-page-heading {
  width:1060px;
  /*background:#545454;*/
  text-align:center;
  text-transform:uppercase;
  padding:67px 0 59px 0;
  max-width:100%;
}

.inner-page-heading h2 {
  margin:0;
  padding:31px 10px 31px 10px;
  color:#545454;
  font-size:48px;
  font-weight:normal;
  font-family: 'Conv_ProximaNova-Regular';
}

.inner-page-heading-w-bg {
  width:1060px;  
  text-align:center;
  text-transform:uppercase;
  padding:67px 0 0 0;
  max-width:100%;
}

.inner-page-heading-w-bg h2 {
  margin:0;
  padding:0 10px 0 10px;
  color:#333333;
  font-size:48px;
  font-weight:normal;
  font-family: 'Conv_ProximaNova-Regular';
}

.grid {
  background:#2e3336 !important;
  /*margin:0 !important;*/ 
  overflow: hidden; /* Clearfix for floated items */
}

/* Ensure grid items are visible and properly sized for 3-column layout */
.grid li {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 275px !important;
  height: 298px !important;
  float: left !important;
  padding: 10px !important;
  box-sizing: border-box !important;
  margin-bottom: 1px !important;
  margin-right: 1px !important;
  transform: none !important;
  -webkit-transform: none !important;
}

/* Ensure grid images are visible */
.grid .post {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


/* ==========================================================================
   Custom Style Sheet
   ========================================================================== */

   .owl-carousel .owl-wrapper-outer {
    clear:both;
   }
   
   .m-search-active, .m-nav-active, .mobile-nav, .mobile-filter-search {
      display:none;
   }

   .content-area {
      width:100%;
      margin: 0 auto;
      font-family: 'Conv_ProximaNova-Regular';
   }

   .content-area .row {
      width:100%;
      text-align:center;
      padding:0 0 0 0;
   }

   .post-your-photos input[type="text"], .post-your-photos input[type="email"] {
      width:321px;
      height:50px;
      background:#FFFFFF;
      border-radius:5px;
      border:0;
      outline:none;
      color:#807C7C;
      font-size:14px;
      padding-left:21px;
      border: solid 2px #cccccc;
   }

   /*.JSUploadForm input[type="button"], .JSUploadForm label {
      width:221px !important;
      height:50px !important;
      background:#FFFFFF !important;
      border-radius:5px !important;
      border:0 !important;
      outline:none !important;
      color:#545454 !important;
      font-size:14px !important;
      text-transform:uppercase !important;    
      margin-bottom:43px !important;
   }*/

   .post-your-photos input[type="button"]:hover {
      background-color:#555;
      color:#FFF;
   }


   .photo {
      width:620px;      
      margin:0 auto;
   }

   .photo .customNavigation {
      background:none !important;
      margin-top:79px;
   }

   .photo .customNavigation a {
    color:#999999 !important;    
   }

   .photo .customNavigation a.btn.prev, .photo .customNavigation a.btn.next {
      float:none;
   }

   .votes {
      width: 100%;
      float: left;
      padding: 40px 0 30px 0;
      border-bottom: solid 1px #cccccc;
      margin-bottom: 18px;
   }

   .votes span.vote {
      float: left;
   }

   .votes span.num {
      float: right;
  
   }
   .votes span#created_on {
      color: black;
  
   }

   .company {
      width:100%;
      float:left;
   }

   .company h2 {
      font-size:21px;
      font-weight:normal;
      color:#545454;
   }

   .company h2 span {
      color:#545454;
      font-size:14px;
   }

   .company p {
      font-size:16px;      
      color:black;
   }

   .container.winners {
      padding: 20px 40px 60px 40px;
      box-sizing: border-box;
      background-color: #2e3336;
    }

    .winners-outer-div {
      background-color: #2e3336;
    }

/*   .winners .grid li {
      padding: 21px 10px 21px 21px;
   }*/

   .winners #tab-2 .grid {
      display:inline-block;
   }

   .success-form {
      width:100%;
      float:left;
      background:#747474;
      min-height:500px;
      padding-top:120px;
   }

   div.success-box {
      width:271px;
      margin:70px auto;      
   }

   div.sb-inner {
      width:100%;
      float:left;
      background:#f2f2f2;
      border-radius:4px;
      text-align:center;
      border:solid 1px #afafaf;      
   }

   div.sb-inner .message h2, div.sb-inner .message p {
      margin:0;
      padding:0;
      font-family: 'Lato', sans-serif;
   }

   div.sb-inner .message h2 {
      font-weight:normal;
      font-size:15px;
      color:#7d7f87;
      font-weight:bold;
      padding:30px 0 16px 0;
   }

   div.sb-inner .message p {
      font-weight:normal;
      font-size:15px;
      color:#7d7f87;
      padding:0 15px 21px 15px;
   }

    div.suc-btn a {
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      border-top: solid 1px #c6c6c8;
      border-bottom: solid 1px #c6c6c8;
      width: 100%;
      float: left;
      color:#7d7f87;
      padding: 6px 0;
    }

    div.suc-btn a:hover {
      color:#000000;
    }

    .container.faq {    
      /*background-color: #cccccc;*/
    }

    .container.faq #accordion {
      margin:0 auto 50px auto;
      /*padding-top:45px;*/
      padding-bottom:45px;
    }

    .container.about {
      background-color: #cccccc;
    }

    .container.about p {
      margin:0;
      padding:20px;
      color:#545454;
    }

    .slider-sm {
      display:none !important;
    }

.prevPost{
    /*color: #fff;
    font-weight: bold;*/
    width: 115px;
    height: 25px;
    background: #007474;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    color: white;
    font-weight: bold;

}
/* ==========================================================================
   Responsive Style Sheet
   ========================================================================== */
   
   /* Responsive style will be placed here... */

   @media screen and (max-width: 617px) {

      .slider-lg {
        display:none !important;
      }

      .slider-sm {
        display:block !important;
      }

      .slider-sm img {
          width:100%;
      }

      .customNavigation{ 
        background:url('../img/btn-bg-m.jpg') no-repeat left top;
        overflow: hidden; /* Clearfix for floated elements */
      }

   }

   .mt-grid {
        margin-top:80px !important;
      }

   @media screen and (max-width: 1076px) {

      .container, .hide-div {
        width:100%;  
      }

      .mt-grid {
        margin-top:160px !important;
      }

   }   

   @media screen and (max-width: 1075px) {

      header {
        box-shadow: none;  
        border-bottom: solid 1px #CCC;
        float: left;
        width: 100%;
        background:#FFF;
      }

      header .container {
        padding:0;
        line-height: 0;
      }

      header .container {
        width:350px;
        margin:0 auto;
      }

      .logo {
        width:auto;
        float:left;
        line-height: 61px;
      }

      .logo img {
        width: 91%;
      }

      .m-search-active, .m-nav-active {
        display:inline-block;
        float:right;
      }

      a.msa:link, a.msa:visited, a.msa:active {
        /*background:url('../img/search-icon.png') no-repeat center center;*/
        width:70px;
        height:66px;
        float:left;
        border-left:solid 1px #cccccc;
        border-right:solid 1px #cccccc;
        text-align: center;
        line-height: 66px;
      }

      a.mna:link, a.mna:visited, a.mna:active {
        /*background:url('../img/nav-icon.png') no-repeat center center;*/
        width:70px;
        height:66px;
        float:left;
        text-align: center;
        line-height: 66px;        
      }

      a.mna-cross:link, a.mna-cross:visited, a.mna-cross:active {
        background: #cccccc; /*url('../img/m-cross-icon.svg') no-repeat center center*/
        /*width:70px;
        height:66px;
        float:left;*/
      }
      a.mna-cross .fa-bars::before,
      a.mna-cross .fa-search::before
      {
        content:'';
        color: #545454;
      }

      .search, .navigation {
        display:none;
      }

      .mobile-filter-search {
        width: 100%;        
        position: absolute;
        left: 0;
        top: 67px;
      }

      .mobile-filter-search div.filter-form {
        width:100%;
        float:left;
        background:#545454;
        padding:18px 0 18px 14px;
        box-sizing:border-box;
      }

      .mobile-filter-search div.filter-form {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
      }

      .mobile-filter-search div.filter-form form {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
      }

      .mobile-filter-search div.filter-form input[type="text"] {
        flex: 1;
        min-width: 200px;
        max-width:317px;
        height:34px;
        outline:none;
        color:#7c7e86;
        font-size:15px;
        border-radius:10px;
        border:0;        
        padding-left:40px;
        padding-right:10px;
        box-sizing:border-box;
        background:#FFF url('../img/search-icon.png') no-repeat 9px center;
      }

      .mobile-filter-search div.filter-form input.search-icon[type="submit"] {
        width:50px;
        height:34px;
        outline:none;
        border:0;
        border-radius:10px;
        background:#545454 url('../img/search-icon.png') no-repeat center center;
        background-size: 18px 17px;
        cursor:pointer;
        flex-shrink: 0;
        padding:0;
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        box-sizing:border-box;
      }

      .mobile-filter-search div.filter-form input.search-icon[type="submit"]:hover {
        background-color:#333;
      }

      .mobile-filter-search div.filter-form .rbtn {
        height:34px;
        padding:0 15px;
        font-size:13px;
        border-radius:10px;
        flex-shrink: 0;
      }

      .mobile-filter-search div.filter-links {
        width:100%;
        float:left;
        background:#cccccc;
        padding:20px 0;
      }

      .mobile-filter-search div.filter-links ul {
        list-style:none;
        width:100%;
        float:left;
        text-transform: uppercase;
        font-size:13px;
        margin:0;
        padding:0;
        line-height: normal;
        font-family: 'Helvetica', 'Arial', sans-serif;  
      }

      .mobile-filter-search div.filter-links ul li {
        float:left;
        display:inline;
        padding: 0 21px;
      }

      .mobile-filter-search div.filter-links ul li:last-child {
        padding-right: 0;
      }

      .mobile-filter-search div.filter-links ul li a {
        text-decoration: none;
        color:#FFFFFF;
      }

      .mobile-filter-search div.filter-links ul li a:hover {
        color:#545454;
      }

      .mobile-filter-search div.mobile-search-filtered {
        width:100%;
        float:left;
        background:#f1f1f1;
        padding:20px 0;
      }

      .mobile-filter-search div.mobile-search-filtered ul {  
        list-style:none;
        font-size:16px;
        margin:0;
        padding:0;
        line-height: normal;
      }

      .mobile-filter-search div.mobile-search-filtered ul li {  
        padding:0;
        float:none;
        display:block;
      }

      .mobile-filter-search div.mobile-search-filtered ul li a {
        border-bottom:solid 1px #d1d1d1;
        padding:8px 0 8px 24px;
        color:#545454;
        text-transform:lowercase;
        display:block;
        text-decoration: none;
      }

      .mobile-filter-search div.mobile-search-filtered ul li a:hover {
        background:#FFFFFF;
        color:#333;
      }

      .mobile-nav {
        width: 100%;
        height:530px;
        background: #545454;
        position: absolute;
        left: 0;
        top: 67px;
      }

      .mobile-nav ul {
        list-style:none;
        font-size:36px;
        line-height: 60px;
        text-align: center;
        margin:0;
        padding:70px 0 0 0;
        font-family: 'Helvetica', 'Arial', sans-serif;  
      }

      .mobile-nav ul li {
      }

      .mobile-nav ul li a {
        color:#CCC;
        text-decoration: none;
      }

      .mobile-nav ul li a:hover {
        color:#FFF;
      }

      .owl-carousel {
        position:inherit !important;
      }

      .slider .container {
        width:auto;
      }

      .upcoming-contest .container {
        width: auto;
        padding: 0 30px;
        margin: 0;
      }

      .latest-post .container {
        width:auto;
      }

/*      .latest-post .post, .winners .post {      
        background:none;
        padding:0;
        border: none !important;
      }*/

/*      .latest-post .post h2, .winners .post h2, .post .fa, .post .vote_count {
        display:none;
      }*/

      .container.winners {
        background:#2e3336;
        display: block;
        /*display: inline-block;*/
      }

      .winners .grid {
        background:none !important;
      }

      .j-tab {
        width: 222px !important;
      }

      .tabs li {
        width:100% !important;
      }

/*    .grid li {  
        width: 33.3% ;
        margin: 0px;
        padding: 0px !important;
        position: static!important;
        display: inline-block!important;
        float: left!important;
        border:solid 1px #FFF;
      }*/

      .winners .grid li {  
        /*width: 33.3% !important;*/
        /*margin: 0;*/
/*        width: 30% !important;
        margin: 10px;*/
        /*padding: 0px !important;*/
        position: static!important;
        display: inline-block!important;
        float: left!important;
        /*border:solid 1px #FFF;*/
      }

      .photo {
        box-sizing: border-box;        
        max-width: 100%;
        padding: 20px;
        width: 620px;
      }

      .photo .customNavigation {
        float:left;
      }
        .winners-outer-div {
    min-height: calc(100vh - 319px) !important;
}
    }

    @media screen and (max-width: 320px) {

      header .container {
        width: 320px;
      }

      .logo {
        padding-left: 13px !important;
      }

      .mobile-filter-search div.filter-form {
        gap: 5px;
      }

      .mobile-filter-search div.filter-form form {
        gap: 5px;
      }

      .mobile-filter-search div.filter-form input[type="text"] {
        max-width: calc(100% - 90px);
        min-width: calc(100% - 90px);
        font-size: 14px;
      }

      .mobile-filter-search div.filter-form input.search-icon[type="submit"] {
        width:40px;
      }

      .mobile-filter-search div.filter-form .rbtn {
        padding:0 10px;
        font-size:12px;
      }

   }

/* ==========================================================================
   Responsive Style Sheet
   ========================================================================== */
   
   
  
/* ==========================================================================
   Popup css
   ========================================================================== */
   	.popup-box {
				display: none;
				width: 1060px;
				margin: 0 auto;
				height: 442px;
				background: #747474;
				text-align: center;
				position: absolute;
				z-index: 9999;
        max-width: 100%;
			}

			.success-box {
				width: 271px;
				height: 216px;
				border-radius: 3px;
				border: solid 1px #afafaf;
				margin-top: 120px;
				display: inline-block;
				background: #f2f2f2;
			}


/* Removed duplicate photo-loader CSS that was causing full-screen overlay */

.search-result-heading {
  width: 100%;
  float: left;
  background: #b2b2b2;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding:20px 0;
}

.rbtn {
    height: 34px;
    border-radius: 4px;
    border: none;
    background-color: #6BC28C;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    padding: 0 18px;
    margin: 0 20px 0 0;
}

.rbtn:hover {
    background-color: #6A6B6A;
}

ul.pagination {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 30px 0;
  border: solid 1px #B2ACAC;
  border-radius: 4px;
}

ul.pagination li {
  display: inline-block;
  padding: 6px 12px;
  border-right: solid 1px #B2ACAC;
}

ul.pagination li:last-child {
  border-right: none;
}

ul.pagination li a {
  color: #6E6B6B;
}

ul.pagination li a:hover {
  color: #000000;
}

ul.pagination li.active span {
  color: #000000;
}

/*.owl-wrapper {
  background:url('../img/featured-image.jpg') no-repeat;
}*/

.wrong_photo {
  background: #555555 none repeat scroll 0 0;
  border: 0 none;
  border-radius: 5px;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  height: 50px;
  line-height: 48px;   
  outline: medium none;
  text-transform: uppercase;
  width: auto;
  cursor: pointer;
  padding: 0 20px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.wrong_photo:hover {
  background: #000000;
  color: #ffffff;
}

 input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #807C7C;
 }
 input:-moz-placeholder, textarea:-moz-placeholder {
  color: #807C7C;
  opacity: 1;
 }
 input::-moz-placeholder, textarea::-moz-placeholder {
  color: #807C7C;
  opacity: 1;
 }
 input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #807C7C;
 }

 .mobile-logo {
    display: none !important;    
  }

 @media screen and (max-width: 1075px) {

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

  .mobile-logo {
    display: inline-block !important;
    width: 56%;
  }

 }

.helperTxt {
    color: #999;
    font-size: 13px;
    line-height: 1.2em;
    margin: 0 auto 16px;
    max-width: 350px;
}

/* ============= Photo Detail Page Styles ============= */
.photo {
    width: 620px;
    margin: 0 auto;
}

.photo .customNavigation {
    background: none !important;
    margin-top: 79px;
}

.photo .customNavigation a {
    color: #999999 !important;
}

.photo .customNavigation a.btn.prev, .photo .customNavigation a.btn.next {
    float: none;
}

.votes {
    width: 100%;
    float: left;
    padding: 40px 0 30px 0;
    border-bottom: solid 1px #cccccc;
    margin-bottom: 18px;
}

.votes span.vote {
    float: left;
}

.votes span.num {
    float: right;
}

.votes span#created_on {
    color: black;
}

.company {
    width: 100%;
    float: left;
}

.company h2 {
    font-size: 21px;
    font-weight: normal;
    color: #656565;
    font-family: 'Conv_ProximaNova-Regular';
    text-transform: uppercase;
    text-align: left;
    padding: 0;
    margin-bottom: 5px;
}

.company h2 span {
    color: #6c6969;
    font-size: 14px;
    display: block;
}

.company p {
    color: #656565;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
}

/* Vote styling */
.vote_photo {
    color: #999;
    text-decoration: none;
}

.vote_photo:hover {
    color: #ffd700;
}

.vote_photo i.fa-star {
    color: #ffd700;
}

.post h2 a {
    height:unset !important;
	color: black;
}

/* Grid post styling for latest-post section */
.grid .post a {
    display: block;
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none;
    /* border-radius: 5px; */
    /* border: 1px solid #ddd; */
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Prevent image from shrinking */
    box-sizing: border-box;
}

.grid .post a:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* Force grid images to be visible */
.grid .post img {
    display: block !important;
    width: 100% !important;
    /* height: 100% !important; */
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10 !important;
    position: relative !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Ensure consistent card dimensions */
.grid .post {
    /* border-radius: 5px; */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive grid layout */
@media (max-width: 900px) {
    .grid li {
        width: 276px !important; /* Keep fixed width */
        height: 298px !important; /* Keep fixed height */
        margin-right: 10px !important; /* Reduce margin on smaller screens */
    }
}

@media (max-width: 600px) {
    .grid li {
        width: 276px !important; /* Keep fixed width */
        height: 298px !important; /* Keep fixed height */
        margin-right: 5px !important; /* Further reduce margin */
    }
}

/* Ensure slider images are visible */
.slider-img .slideer-img {
    display: block !important;
    width: 100%;
    height: 225px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.slideer-img {
    height: 225px;
    display: block;
    background-position: center center;
    background-size: cover;
}
.grid .post .slideer-img {
    height: 200px !important;
}

/*Social icons*/
.company-header {
    position: relative;
}
.socials_wrap{
    position: absolute;
    top: 0;
    right: 0;
}
.socials_wrap {
	display: block;
	vertical-align: middle;
	white-space: nowrap;
	margin: -8px -8px 0 0;
}
.socials_wrap .social_item {
	display: inline-block;
	line-height: inherit;
	vertical-align: top;
	text-align: center;
	margin: 8px 8px 0 0;
}

.social_icon {
    width: 3.33em;
    height: 3.33em;
    line-height: 3.4;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    font-weight: 400;
    padding: 6px;
}
/*.socials_wrap .social_icon.social_facebook {
    background-color: #3C599F;
}
.socials_wrap .social_icon.social_instagramm, .socials_wrap .social_icon.social_instagramm {
    background-color: #A1755C;
}*/
.sc_align_right {
	text-align: right;
}
.social_icon  i {font-size: 26px;}

#accordion li.title a.a-open {
    background: none !important;
}
#accordion li.title a.a-close {
     background: none !important;

}
#accordion li.title a {
	color: #7b7b7b;
}
#accordion li.title a:hover {
	color: black;
}
.winners {
    margin-top: 40px;
}
.winners .item {
    text-align: center;padding: 26px 0;
}
.winners .item h4{
    color: #FFF;
    font-size: 24px;margin: 0;
}
.winners .item p{
    color: #ffcc00;
    font-size: 20px;margin:0;
}
.winners-outer-div {
    min-height: calc(100vh - 397px);
}