@charset "UTF-8";
:root {
  --primary: #c1202f;
}

button,
.button,
a.lspf-stripe-payment-button,
a.lspf-stripe-payment-button:link,
a.lspf-stripe-payment-button:visited {
  display: block;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 11px 12px;
  text-transform: uppercase;
  font-family: Galvji;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.home .header-2 {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.header-2 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 6px;
  background-color: #c1202f;
}

.header-2__logo {
  display: none;
  font-size: 0;
}
@media screen and (min-width: 1248px) {
  .header-2 {
    height: 120px;
  }

  .header-2__logo {
    display: block;
  }
}
.header-2__logo img {
  max-width: 96px;
  width: 96px;
  height: 96px;
}
.header-2__nav {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0 12px;
}
@media screen and (min-width: 1248px) {
  .header-2__nav {
    justify-content: space-between;
  }
}
.header-2__nav > div:first-child {
  display: none;
}
@media screen and (min-width: 1248px) {
  .header-2__nav > div:first-child {
    display: block;
  }
}
.header-2__nav > div:nth-child(2) {
  display: flex;
}
.header-2 ul li,
.header-2__icon,
.header-2__donate {
  display: inline-block;
  vertical-align: middle;
}
.header-2 ul li a {
  font-family: Galvji;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: white;
  padding: 26px 12px;
}
.header-2 .menu-item-has-children {
  padding-bottom: 0;
}
.header-2__icon {
  margin: 2px;
  color: white;
  width: 32px;
  height: 32px;
  padding: 4px;
  cursor: pointer;
}
.header-2__icons {
  display: flex;
  align-items: center;
}
.header-2__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.header-2__sep {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 22px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.5);
}
.header-2__icon .fa,
.header-2__icon span {
  font-size: 24px;
}
.header-2 ul:not(.sub-menu),
.header-2__donate {
  display: inline-block;
}
.header-2__donate {
  height: 56px;
  cursor: pointer;
}
.header-2 .sub-menu {
  position: absolute;
  width: auto;
  top: 80px;
  margin-left: 0;
  border-top: 6px solid #c1202f;
  background-color: black;
  padding: 12px 16px 0 8px;
  z-index: 10;
}
.header-2 .sub-menu li {
  display: block;
  width: auto;
}
/* news-article component moved to inc/blocks/news-grid/assets/front.css */
.banner {
  position: relative;
  width: 100%;
  height: calc(80dvh - 120px);
}
.banner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(79, 79, 79, 0) 0%,
    rgba(79, 79, 79, 0.7) 12.5%,
    #4f4f4f 100%
  );
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.banner h1 {
  position: absolute;
  bottom: 48px;
  max-width: 967px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
  left: 0;
  right: 0;
  font-family: Galvji;
  font-weight: normal;
  font-size: 36px;
  line-height: 1.167;
  text-transform: uppercase;
  color: white;
}
@media screen and (min-width: 1248px) {
  .banner h1 {
    padding: 0;
  }
}
.banner span {
  color: #5ba4dd;
}
.banner__arrow {
  position: absolute;
  left: 50%;
  width: 32px;
  height: 32px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: translateX(-50%) rotate(-45deg);
  animation: pulse-arrow 1.5s ease-in-out infinite;
  z-index: 2;
  padding: 8px;
  cursor: pointer;
}
@keyframes pulse-arrow {
  0%,
  100% {
    opacity: 1;
    bottom: 24px;
  }
  50% {
    opacity: 0.6;
    bottom: 16px;
  }
}
html {
  scroll-behavior: smooth;
}
.button--white {
  background-color: white;
  color: #5ba4dd;
}
.button--outline {
  box-shadow: 0 0 0 1px #c1202f;
  color: #c1202f;
  background-color: transparent;
}
.button--outline:hover {
  background-color: #c1202f;
  color: white;
}
.button--outline.button--white {
  box-shadow: 0 0 0 1px white;
  color: white;
}
.button--outline.button--white:hover {
  background-color: white;
  color: #5ba4dd;
}
.heading {
  font-family: Galvji;
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
  color: black;
}
.heading--news {
  color: #c1202f;
}
.heading--centered {
  text-align: center;
  padding: 20px 0;
}
/* partners component moved to inc/blocks/partners/assets/front.css */
.section {
  position: relative;
  width: 100%;
}
.section--blue {
  background-color: #5ba4dd;
}
.section--blue .heading {
  color: white;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-wrapper__container {
  max-width: 967px;
  width: 100%;
  padding: 24px 8px;
  margin: 0 auto;
}
@media screen and (min-width: 1248px) {
  .page-wrapper__container {
    padding: 32px 0;
    margin: 0 auto 30px;
  }
}
.contest-image-link {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px;
}
@media screen and (min-width: 1248px) {
  .contest-image-link {
    height: 240px;
  }
}
.contest-image-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contest-image-link figcaption {
  position: relative;
  font-family: Galvji;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.18;
  text-transform: uppercase;
  color: white;
  text-shadow: 4px 4px 20px black;
}
@media screen and (min-width: 768px) {
  .contest-image-link figcaption {
    font-size: 36px;
  }
}
@media screen and (min-width: 1248px) {
  .contest-image-link figcaption {
    font-size: 72px;
  }
}
.contest-list__item,
.contest-list__link {
  margin-bottom: 20px;
}
.contest {
  margin-bottom: 30px;
}
.contest__description,
.contest__image {
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 1248px) {
  .contest__description {
    width: 45%;
    padding-right: 40px;
  }
  .contest__image {
    width: 55%;
  }
  .contest__image img {
    width: 100%;
  }
  .contest__image-title {
    margin-bottom: 20px;
  }
}
.contest__link,
.contest__warning {
  font-family: Arial;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.1667;
  margin-bottom: 20px;
}
.contest a {
  color: #c1202f;
}
.contest__login {
  width: 100%;
  font-family: Arial;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 1.14;
  text-align: center;
  padding: 25px 27px 24px;
  background-color: #c1202f;
  color: white;
  cursor: pointer;
}
@media screen and (min-width: 1248px) {
  .contest__login {
    font-size: 35px;
  }
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #383838;
  justify-content: space-between;
  padding: 20px 15px;
}
@media screen and (min-width: 1248px) {
  .footer {
    display: flex;
  }
}
.footer > div {
  margin-bottom: 12px;
}
@media screen and (min-width: 1248px) {
  .footer > div {
    margin-bottom: 0;
  }
}
.footer a,
.footer__copyright {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.15;
}
@media screen and (min-width: 1248px) {
  .footer a,
  .footer__copyright {
    font-size: 18px;
  }
}
.footer a {
  margin-bottom: 12px;
}
@media screen and (min-width: 1248px) {
  .footer a {
    display: block;
  }
}
.footer__copyright {
  align-self: flex-end;
}
.donation-form {
  width: 100%;
  padding: 18px 17px;
  background-color: #383838;
  align-items: center;
}
@media screen and (min-width: 1248px) {
  .donation-form {
    display: flex;
  }
}
.donation-form .asp-stripe-form,
.donation-form .asp_product_buy_button {
  display: block;
}
@media screen and (min-width: 1248px) {
  .donation-form .asp-stripe-form,
  .donation-form .asp_product_buy_button {
    display: flex;
  }
}
.donation-form .asp_product_item_amount_input,
.donation-form .asp_product_currency_input {
  width: 100%;
  background-color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 16px 9px 10px;
  font-family: Galvji !important;
  font-size: 18px;
  line-height: 1.167;
  color: #6b6b6b;
  outline: none;
  height: 42px;
}
.donation-form .asp_product_item_amount_input_container {
  width: 100%;
}
@media screen and (min-width: 1248px) {
  .donation-form .asp_product_item_amount_input_container {
    width: 190px;
  }
}
.donation-form .asp_product_currency_input_container {
  flex: 1;
  width: 100%;
}
@media screen and (min-width: 1248px) {
  .donation-form .asp_product_currency_input_container {
    max-width: 300px;
    padding: 0 11px;
  }
}
.donation-form h3 {
  width: 320px;
  text-transform: uppercase;
  color: white;
  font-family: Galvji;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 1.6667;
}
.donation-form input + span {
  position: absolute;
  color: #c1202f;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-facebook:before {
  content: "";
}
.icon-user:before {
  content: "";
}
.icon-search:before {
  content: "";
}
.icon-instagram:before {
  content: "";
}
.icon-twitter:before {
  content: "";
}
.icon-chevron:before {
  content: "";
}
/* CURRENCY */
.price {
  position: relative;
}
.price:before {
  content: "$";
  position: relative;
  left: 0;
}
/* div class="GBP"><span class="price">10000</span></div> */
.USD .price:before {
  content: "$";
}
.EUR .price:before {
  content: "€";
}
.GBP .price:before {
  content: "£";
}
/* ALIGNMENT */
.alignnone {
  margin: 5px 15px 15px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
  margin: 5px 0 15px 15px;
}
/* IMAGES */
.wp-caption {
  background: white;
  border: thin solid #f0f0f0;
  max-width: 95%;
  padding: 5px 5px;
  text-align: center;
}
.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  border: 0 none;
  padding: 0;
  margin: 0;
}
div.replace-image {
  padding-top: 56.25%;
}
.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0 5px 5px;
  font-size: 140%;
  line-height: 1.5;
}
/* HEADER */
.header {
  min-height: 60px;
  max-height: 60px;
}
.header #header-nav {
  background-color: #fff;
  display: block;
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  border-bottom: 2px solid #ededed;
}
.header #header-nav #header-nav-wrapper {
  margin: 0 auto;
}
.header #header-nav #header-nav-wrapper #top-nav-left,
.header #header-nav #header-nav-wrapper #top-nav-right {
  display: block;
  height: 40px;
  position: absolute;
}
.header #header-nav #header-nav-wrapper #top-nav-bottom {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  padding-left: 20px;
  border-top: #5ba4dd solid 1px;
}
.header #header-nav #header-nav-wrapper #top-nav-bottom ul {
  margin: 10px auto;
  display: block;
  width: 100%;
  max-width: 1280px;
}
.header #header-nav.nav-fixed {
  height: 60px;
  background-color: white;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  border-bottom: none;
}
.header #header-nav.nav-fixed #top-nav-bottom {
  display: none;
}
.header #header-nav.nav-fixed #header-nav-wrapper #top-nav-left,
.header #header-nav.nav-fixed #header-nav-wrapper #top-nav-left a {
  color: #c1202f;
}
.header #header-nav.nav-fixed #header-nav-wrapper #top-nav-right {
  top: 15px;
}
.header #header-nav.nav-fixed button.mob-menu-left span,
.header #header-nav.nav-fixed button.mob-menu-left:before,
.header #header-nav.nav-fixed button.mob-menu-left:after {
  background-color: white;
}
.header #header-nav.nav-fixed button.mob-menu-left {
  top: 35px;
}
.header #header-nav ul {
  margin-top: 25px;
}
.header #header-nav ul li {
  float: left;
  margin-right: 25px;
}
.header #header-nav ul li.current-menu-item a {
  border-bottom: 0;
  opacity: 0.5;
}
.header #header-nav ul li.current-menu-item a:focus,
.header #header-nav ul li.current-menu-item a:hover {
  opacity: 0.7;
}
.header #header-nav.nav-fixed ul a {
  color: #c1202f;
}
.header #header-nav.nav-fixed ul li.current-menu-item a {
  border-bottom: #5ba4dd solid 1px;
}
.header #header-wrapper {
  position: relative;
  z-index: 1;
  margin: 70px auto;
  text-align: center;
  display: none;
}
.header #header-wrapper .logo {
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  margin: -40px -20px;
  max-width: 145px;
}
.header #header-wrapper.fixed .logo {
  display: none;
}
/* LANGUAGE */
.home button.mob-menu-left span,
.home button.mob-menu-left:before,
.home button.mob-menu-left:after {
  background-color: white;
}
.home #header-nav .lang ul li i.fa {
  color: #fff;
}
.home #header-nav .ru-lang.active a,
.home #header-nav .en-lang.active a {
  border-bottom: #fff solid 1px;
}
#header-nav .lang,
#header-nav.nav-fixed .lang {
  float: right;
}
#header-nav .lang ul,
#header-nav.nav-fixed .lang ul {
  margin-top: 0;
}
#header-nav .lang ul li,
#header-nav.nav-fixed .lang ul li {
  margin-right: 0;
}
#header-nav .lang ul li.lv-lang,
#header-nav .lang ul li.ru-lang,
#header-nav .lang ul li.en-lang,
#header-nav.nav-fixed .lang ul li.lv-lang,
#header-nav.nav-fixed .lang ul li.ru-lang,
#header-nav.nav-fixed .lang ul li.en-lang {
  margin-left: 20px;
  line-height: 2em;
}
#header-nav .lang ul li.lv-lang a,
#header-nav .lang ul li.ru-lang a,
#header-nav .lang ul li.en-lang a,
#header-nav.nav-fixed .lang ul li.lv-lang a,
#header-nav.nav-fixed .lang ul li.ru-lang a,
#header-nav.nav-fixed .lang ul li.en-lang a {
  font-family: "Roboto-Light", sans-serif;
}
#header-nav .lang ul li.lv-lang.active a,
#header-nav .lang ul li.ru-lang.active a,
#header-nav .lang ul li.en-lang.active a,
#header-nav.nav-fixed .lang ul li.lv-lang.active a,
#header-nav.nav-fixed .lang ul li.ru-lang.active a,
#header-nav.nav-fixed .lang ul li.en-lang.active a {
  border-bottom: rgba(255, 255, 255, 0.7) solid 1px;
}
#header-nav .lang ul li i.fa,
#header-nav.nav-fixed .lang ul li i.fa {
  color: #5ba4dd;
  margin-left: 10px;
  margin-right: 10px;
  width: 28px;
  height: 28px;
  text-align: center;
  padding: 5px;
}
#header-nav.nav-fixed .lang ul .ru-lang.active a,
#header-nav.nav-fixed .lang ul .en-lang.active a {
  border-bottom: white solid 1px;
}
/* MENU MOB LEFT */
.menu-left.drawer {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  height: 100vh;
  z-index: 2;
  color: #fff;
  text-align: center;
  visibility: hidden;
  margin-left: -340px;
  background: transparent;
}
.menu-left.drawer.on-toggle {
  transform: translateX(340px) translateZ(340px);
  transition:
    -webkit-transform 0.4s ease-in-out,
    visibility 0.4s;
  transition:
    transform 0.4s ease-in-out,
    visibility 0.4s;
  visibility: visible;
  text-align: center;
  display: inherit;
  width: 338px;
  padding: 20px;
  z-index: 10;
  left: 0;
  background-color: white;
  box-shadow: 10px 12px 27px 0 rgba(0, 0, 0, 0.5);
}
.menu-left.drawer .menu-logo-img img {
  margin-top: 10px;
  margin-bottom: 20px;
  width: 120px;
}
.menu-left.drawer li {
  margin-bottom: 1rem;
}
button.mob-menu-left {
  position: absolute;
  border: none;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
  width: 30px;
  height: 19px;
  padding: 5px;
  background: transparent;
  outline: none;
  z-index: 10000;
}
button.mob-menu-left span {
  top: 0;
  bottom: 0;
  transition: all 800ms ease;
}
button.mob-menu-left span,
button.mob-menu-left:before,
button.mob-menu-left:after {
  height: 3px;
  width: 30px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  content: "";
  margin: auto;
  transition: all 400ms ease;
  border-radius: 0;
}
button.mob-menu-left:before {
  top: 0;
}
button.mob-menu-left:after {
  bottom: 0;
}
button.mob-menu-left.clicked {
  width: 30px;
  height: 20px;
  display: block;
  margin-top: -25px;
  left: 295px;
  float: none;
}
button.mob-menu-left.clicked span {
  opacity: 0;
}
button.mob-menu-left.clicked:before {
  top: 10px;
  width: 30px;
  left: 0;
  transform: rotate(-45deg);
  transition: transform 0.4s;
  background: rgba(0, 0, 0, 0.7);
}
button.mob-menu-left.clicked:after {
  top: 3px;
  width: 30px;
  left: 0;
  transform: rotate(45deg);
  transition: transform 0.4s;
  background: rgba(0, 0, 0, 0.7);
}
button.mob-menu-left.nav-fixed span,
button.mob-menu-left.nav-fixed:before,
button.mob-menu-left.nav-fixed:after {
  background: #c1202f !important;
}
button.mob-menu-left.clicked span,
button.mob-menu-left.clicked:before,
button.mob-menu-left.clicked:after {
  background: #c1202f !important;
}
#bgfull-menu {
  display: none;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 7;
  position: fixed;
  cursor: pointer;
}
/* HOME PAGE */
.home .header #header-nav #header-nav-wrapper #top-nav-left ul {
  margin-top: 0;
}
.home .post-item {
  float: left;
}
.home button.mob-menu-left.nav-fixed {
  display: block;
}
.home #full-screen-bg {
  margin-top: 0;
  z-index: 0;
  min-height: 100%;
  min-width: 100vw;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
}
.home #full-screen-bg .owl-carousel {
  width: 100vw !important;
  height: 100vh;
}
.home #full-screen-bg .owl-carousel .owl-item {
  width: 100vw !important;
  z-index: 1;
  animation: fadein 2s;
}
.home #full-screen-bg .owl-carousel .owl-item:after {
  content: "";
  z-index: 2;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.31));
}
.home #full-screen-bg .owl-carousel .owl-item .item {
  background-position: 50% 25% !important;
  background-size: cover !important;
  width: 100vw !important;
  min-height: 670px;
}
.home #full-screen-bg .owl-carousel .owl-nav {
  position: fixed;
  z-index: 3;
  margin-top: -200px;
  color: #fff;
}
.home #header-nav {
  background-color: transparent;
  box-shadow: none;
  border-bottom: none;
}
.home #header-nav #top-nav-bottom {
  border-top: transparent solid 1px;
  background: transparent !important;
  border: 0 !important;
  width: 400px;
  left: 50% !important;
  padding-left: 0 !important;
  margin: -35px -200px;
  display: block;
}
.home #header-nav #top-nav-bottom a {
  color: #ffffff !important;
  font-size: 16px;
}
.home .wrapper {
  padding: 0;
  max-width: inherit;
}
.home .header {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.home .header:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
  width: 100%;
  min-width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.home .header #header-wrapper {
  display: block;
}
.home hr.home-top-line {
  width: 100px;
  margin: 20px auto;
  border-top: rgba(255, 255, 255, 0.8) solid 1px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.36);
}
.home h2.h2-home-top {
  font-family: "Roboto-Light", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}
.home .jump-arrow {
  position: absolute;
  bottom: 0px;
  display: block;
  left: 50%;
  margin-left: -18px;
  z-index: 9;
}
.home .bounce.arrow {
  display: none;
  padding: 5px;
  bottom: 20px;
  width: 36px;
  height: 30px;
  background-image: url("../../img/icons/scroll_down_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  animation: bounce 2s infinite;
  display: block;
  background-size: 100%;
}
.home .bounce.arrow .fa-angle-double-down:before {
  content: "";
}
#main-home {
  width: 100%;
}
#main-home section {
  padding: 0;
  margin: 0 auto;
  display: block;
  width: 100%;
  font-size: 16px;
}
#main-home section.white {
  display: inline-block;
  background-color: #eee;
  /*$white-color;*/
  padding-bottom: 50px;
}
#main-home section.white h2 {
  font-size: 2em;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
  line-height: 1.5em;
  border-top: 0;
  display: inline-block;
}
#main-home section.white .b03 #pg-44-1 .panel-grid-cell .simple-image,
#main-home section.white .b03 #pg-44-3 .panel-grid-cell .simple-image {
  width: 100%;
  height: 500px;
  max-height: 500px;
  display: inline-block;
}
#main-home section.white .b03 #pg-44-3 .panel-grid-cell .simple-image {
  height: 400px;
  max-height: 400px;
}
#main-home section.red {
  background-color: #ca122e;
  min-height: 300px;
}
#main-home section.red div.panel-grid {
  margin: 40px auto;
  max-width: 1280px;
  display: block;
}
#main-home section.red div.panel-grid div.so-panel.widget_simpleimage {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14);
  border: solid 0.2px #eaeaea;
  padding: 5%;
  text-align: center;
  border-radius: 3px;
}
#main-home section.red div.panel-grid div.so-panel.widget_simpleimage img {
  border-radius: 100%;
}
#main-home
  section.red
  div.panel-grid
  div.so-panel.widget_simpleimage
  img:hover {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.14);
}
#main-home section.red div.panel-grid div.so-panel.widget_simpleimage h2,
#main-home section.red div.panel-grid div.so-panel.widget_simpleimage h3,
#main-home section.red div.panel-grid div.so-panel.widget_simpleimage p {
  color: #333333;
}
#main-home section.grey {
  background-color: #f0f0f0;
}
#main-home section .bl-full {
  text-align: center;
  margin: 0 auto;
}
#main-home section .bl-full.bl-bg {
  color: #ffffff;
  background-size: cover !important;
  min-height: 300px;
}
#main-home section .bl-full.bl-bg .bl-wrapper {
  position: absolute;
  left: 50%;
  z-index: 1;
}
#main-home section .bl-full.bl-bg .bl-wrapper h2 {
  color: #ffffff;
  max-width: 300px;
  margin: auto;
  line-height: 6rem;
}
#main-home section .bl-full.bl-bg:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  width: 100%;
  min-width: 100%;
  height: 300px;
  overflow: hidden;
  position: absolute;
  left: 0;
}
/* About us */
.single .header #header-nav #top-nav-bottom,
.post-type-archive-news .header #header-nav #top-nav-bottom,
.page .header #header-nav #top-nav-bottom {
  background-color: #ffffff;
  border-bottom: #f0f0f0 solid 1px;
  height: 50px;
}
.single .header #header-nav #top-nav-bottom ul li a,
.post-type-archive-news .header #header-nav #top-nav-bottom ul li a,
.page .header #header-nav #top-nav-bottom ul li a {
  text-align: left;
}
.post-type-archive-news h2 + p > a.view-article {
  position: relative;
  border: #999 solid 1px;
  border-radius: 3px;
  width: 100px;
  padding: 5px;
  text-align: center;
  float: right;
  margin-top: 10px;
}
.post-type-archive-news .wrapper article {
  width: 33.3333%;
  display: inline-block;
  margin-bottom: 0;
  height: 440px;
  vertical-align: top;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.5s;
}
.post-type-archive-news .wrapper article:hover {
  border-color: #5ba4dd;
}
.post-type-archive-news .wrapper article p .view-article {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 120px;
  height: 40px;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  padding: 9px;
}
.post-type-archive-news article .news-item {
  height: 250px;
  display: block;
  overflow: hidden;
  border-radius: 3px;
}
.post-type-archive-news article .news-item img {
  transition: transform 1s;
}
.post-type-archive-news article .news-item:hover img {
  transform: scale(1.2);
}
.post-type-archive-news article .news-item .item {
  background-position: center 0 !important;
  background-size: 110% !important;
  transition: all 0.7s ease-in-out;
}
.post-type-archive-news article .news-item .item:hover {
  border-radius: 3px;
  background-size: 115% !important;
  transform: scale(1.05, 1.05);
}
.single-photographers main {
  display: inline-block;
  background: #fff;
  width: 100%;
  height: 100%;
}
.single-photographers main section {
  padding: 20px;
}
.single-photographers main section #single-photographers-img {
  width: 100%;
  display: block;
  border-radius: 100%;
  margin-left: 0;
}
.single-photographers main section #single-photographers-img img {
  width: 350px;
  display: inline-block;
}
.single-photographers main section h1 {
  font-size: 40px;
  display: inline-block;
}
.single-photographers main section #photographers-post-content {
  margin-bottom: 70px;
}
.single-photographers main section .owl-carousel {
  margin-bottom: 70px;
}
.single-photographers main section .owl-carousel .owl-nav div {
  position: absolute;
  margin-top: -150px;
  padding: 15px;
  cursor: pointer;
}
.single-photographers main section .owl-carousel .owl-nav div.owl-prev {
  left: -50px;
}
.single-photographers main section .owl-carousel .owl-nav div.owl-next {
  right: -50px;
}
.single-photographers main section .owl-carousel .owl-dots {
  position: absolute;
  left: 50%;
  width: 100%;
  margin: 35px -12%;
  display: block;
}
.single-photographers main section .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  float: left;
  margin-left: 10px;
  margin-bottom: 10px;
  border-radius: 100%;
}
.single-photographers main section .owl-carousel .owl-dots .owl-dot.active {
  background: rgba(0, 0, 0, 0.4);
}
/* WRAPPER */
.wrapper {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
.wrapper article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 40px;
  display: block;
}
.comments {
  display: none;
}
.gallery .gallery-item {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid #a9a9a9;
  padding: 5px;
}
/* CONTACTS & PROFILE */
.profile h2 {
  display: inline-block;
}
.profile article ul {
  list-style: none;
}
.profile article ul li {
  list-style: none;
  margin-left: 0;
}
.profile #loginform,
.profile #wppb-edit-user {
  max-width: 300px;
}
.profile #loginform input[type="password"],
.profile #wppb-edit-user input[type="password"] {
  box-shadow: none;
  padding: 7px 5px 7px 15px;
  min-height: 40px;
}
.profile input#wppb-submit,
.profile input#edit_profile {
  background-color: #5ba4dd;
  border-color: #5ba4dd !important;
  color: #fff;
}
.overlay form input[type="submit"] {
  font-family: Raleway, Helvetica, Arial, sans-serif;
  min-height: 39px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  width: 120px;
}
.overlay form div.wpcf7-mail-sent-ok {
  border: 0;
  font-size: 14px;
  position: absolute;
  background-color: #fff;
  top: -30px;
  right: -20px;
  height: 180px;
  cursor: pointer;
  width: 450px;
  padding-top: 20px;
}
.overlay form div.wpcf7-mail-sent-ok:before {
  content: "X";
  color: #333;
  position: absolute;
  right: 30px;
}
.overlay div#payment form input {
  border-bottom: #999 solid 1px;
  margin-bottom: 10px;
  margin-top: 10px;
}
/* Post lists bottom Photographers */
#posts-list-bottom .post-item article {
  height: inherit !important;
}
#posts-list-bottom h3 + p {
  min-height: 115px;
  max-height: 115px;
  overflow: hidden;
  display: block;
  position: relative;
}
#posts-list-bottom a.view-article {
  background-color: #fff;
  border: #5ba4dd solid 1px;
  border-radius: 3px;
  opacity: 1;
  padding: 9px;
  width: 120px;
  margin-left: 11%;
  position: absolute;
  text-decoration: none;
  text-align: center;
  right: 1px;
  bottom: 2px;
  height: 40px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: Raleway, Helvetica, Arial, sans-serif;
}
/* WORKSHOP */
#single-workshop-img {
  padding-top: 40px;
}
#single-workshop-img img {
  max-width: 200px;
  border-radius: 100%;
  display: block;
  overflow: hidden;
  line-height: 22px;
}
/* FOOTER */
/* 404 page */
#post-404 {
  min-height: 350px;
  padding-top: 70px;
  padding-bottom: 140px;
  width: 100%;
}
#post-404 h1 {
  text-align: center;
  font-size: 40px;
  padding: 40px;
}
#post-404 a.bt404.btn.tn-read-more {
  margin: 40px auto;
  display: block;
  max-width: 150px;
}
/* BOX ARROW */
.box.arrow-top-left:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-top-left:after {
  border-width: 10px;
  border-bottom-color: #4fade3;
  top: -20px;
  left: 10px;
}
.box.arrow-top-right:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-top-right:after {
  border-width: 10px;
  border-bottom-color: #4fade3;
  top: -20px;
  right: 10px;
}
.box.arrow-top-center:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-top-center:after {
  border-width: 10px;
  border-bottom-color: #4fade3;
  top: -20px;
  right: 50%;
  margin-right: -10px;
}
.box.arrow-bottom-left:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-bottom-left:after {
  border-width: 10px;
  border-top-color: #4fade3;
  bottom: -20px;
  left: 10px;
}
.box.arrow-bottom-right:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-bottom-right:after {
  border-width: 10px;
  border-top-color: #4fade3;
  bottom: -20px;
  right: 10px;
}
.box.arrow-bottom-center:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-bottom-center:after {
  border-width: 10px;
  border-top-color: #4fade3;
  bottom: -20px;
  right: 50%;
  margin-right: -10px;
}
.box.arrow-left-top:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-left-top:after {
  border-width: 10px;
  border-right-color: #4fade3;
  left: -20px;
  top: 10px;
}
.box.arrow-left-center:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-left-center:after {
  border-width: 10px;
  border-right-color: #4fade3;
  left: -20px;
  top: 50%;
  margin-top: -10px;
}
.box.arrow-left-bottom:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-left-bottom:after {
  border-width: 10px;
  border-right-color: #4fade3;
  left: -20px;
  bottom: 10px;
}
.box.arrow-right-top:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-right-top:after {
  border-width: 10px;
  border-left-color: #4fade3;
  right: -20px;
  top: 10px;
}
.box.arrow-right-center:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-right-center:after {
  border-width: 10px;
  border-left-color: #4fade3;
  right: -20px;
  top: 50%;
  margin-top: -10px;
}
.box.arrow-right-bottom:after {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box.arrow-right-bottom:after {
  border-width: 10px;
  border-left-color: #4fade3;
  right: -20px;
  bottom: 10px;
}
.box-with-border.arrow-top-left:after,
.box-with-border.arrow-top-left:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-top-left:after {
  border-width: 10px;
  border-bottom-color: #eee;
  top: -20px;
  left: 10px;
}
.box-with-border.arrow-top-left:before {
  border-width: 16px;
  border-bottom-color: #4fade3;
  top: -32px;
  left: 4px;
}
.box-with-border.arrow-top-right:after,
.box-with-border.arrow-top-right:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-top-right:after {
  border-width: 10px;
  border-bottom-color: #eee;
  top: -20px;
  right: 10px;
}
.box-with-border.arrow-top-right:before {
  border-width: 16px;
  border-bottom-color: #4fade3;
  top: -32px;
  right: 4px;
}
.box-with-border.arrow-top-center:after,
.box-with-border.arrow-top-center:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-top-center:after {
  border-width: 10px;
  border-bottom-color: #eee;
  top: -20px;
  right: 50%;
  margin-right: -10px;
}
.box-with-border.arrow-top-center:before {
  border-width: 16px;
  border-bottom-color: #4fade3;
  top: -32px;
  right: 50%;
  margin-right: -16px;
}
.box-with-border.arrow-bottom-left:after,
.box-with-border.arrow-bottom-left:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-bottom-left:after {
  border-width: 10px;
  border-top-color: #eee;
  bottom: -20px;
  left: 10px;
}
.box-with-border.arrow-bottom-left:before {
  border-width: 16px;
  border-top-color: #4fade3;
  bottom: -32px;
  left: 4px;
}
.box-with-border.arrow-bottom-right:after,
.box-with-border.arrow-bottom-right:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-bottom-right:after {
  border-width: 10px;
  border-top-color: #eee;
  bottom: -20px;
  right: 10px;
}
.box-with-border.arrow-bottom-right:before {
  border-width: 16px;
  border-top-color: #4fade3;
  bottom: -32px;
  right: 4px;
}
.box-with-border.arrow-bottom-center:after,
.box-with-border.arrow-bottom-center:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-bottom-center:after {
  border-width: 10px;
  border-top-color: #eee;
  bottom: -20px;
  right: 50%;
  margin-right: -10px;
}
.box-with-border.arrow-bottom-center:before {
  border-width: 16px;
  border-top-color: #4fade3;
  bottom: -32px;
  right: 50%;
  margin-right: -16px;
}
.box-with-border.arrow-left-top:after,
.box-with-border.arrow-left-top:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-left-top:after {
  border-width: 10px;
  border-right-color: #eee;
  left: -20px;
  top: 10px;
}
.box-with-border.arrow-left-top:before {
  border-width: 16px;
  border-right-color: #4fade3;
  left: -32px;
  top: 4px;
}
.box-with-border.arrow-left-center:after,
.box-with-border.arrow-left-center:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-left-center:after {
  border-width: 10px;
  border-right-color: #eee;
  left: -20px;
  top: 50%;
  margin-top: -10px;
}
.box-with-border.arrow-left-center:before {
  border-width: 16px;
  border-right-color: #4fade3;
  left: -32px;
  top: 50%;
  margin-top: -16px;
}
.box-with-border.arrow-left-bottom:after,
.box-with-border.arrow-left-bottom:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-left-bottom:after {
  border-width: 10px;
  border-right-color: #eee;
  left: -20px;
  bottom: 10px;
}
.box-with-border.arrow-left-bottom:before {
  border-width: 16px;
  border-right-color: #4fade3;
  left: -32px;
  bottom: 4px;
}
.box-with-border.arrow-right-top:after,
.box-with-border.arrow-right-top:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-right-top:after {
  border-width: 10px;
  border-left-color: #eee;
  right: -20px;
  top: 10px;
}
.box-with-border.arrow-right-top:before {
  border-width: 16px;
  border-left-color: #4fade3;
  right: -32px;
  top: 4px;
}
.box-with-border.arrow-right-center:after,
.box-with-border.arrow-right-center:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-right-center:after {
  border-width: 10px;
  border-left-color: #eee;
  right: -20px;
  top: 50%;
  margin-top: -10px;
}
.box-with-border.arrow-right-center:before {
  border-width: 16px;
  border-left-color: #4fade3;
  right: -32px;
  top: 50%;
  margin-top: -16px;
}
.box-with-border.arrow-right-bottom:after,
.box-with-border.arrow-right-bottom:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  visibility: visible;
}
.box-with-border.arrow-right-bottom:after {
  border-width: 10px;
  border-left-color: #eee;
  right: -20px;
  bottom: 10px;
}
.box-with-border.arrow-right-bottom:before {
  border-width: 16px;
  border-left-color: #4fade3;
  right: -32px;
  bottom: 4px;
}
.box-with-border,
.box {
  width: 120px;
  height: 70px;
  background: #4fade3;
  margin: 5px;
  display: inline-block;
  position: relative;
}
.box-with-border span,
.box span {
  color: #f1f1f1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  text-align: center;
  font-size: 18px;
}
.box-with-border {
  border: #4fade3 solid 1px;
  background: #eee;
  float: left;
}
.box-with-border span {
  color: #4fade3;
}
.box-with-border.arrow-left-center:before {
  border-width: 13px;
  border-right-color: #4fade3;
  left: -26px;
  top: 50%;
  margin-top: -13px;
}
/* WORKSHOPS */
.post-type-archive-workshops h1,
.single-workshops h1 {
  padding-left: 15px;
}
.post-type-archive-workshops .su-highlight,
.single-workshops .su-highlight {
  font-size: 20px;
  font-family: Raleway, Helvetica, Arial, sans-serif;
}
.post-type-archive-workshops .su-highlight strong,
.single-workshops .su-highlight strong {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
.post-type-archive-workshops .su-highlight strong:before,
.single-workshops .su-highlight strong:before {
  content: "£";
}
.post-type-archive-workshops a.apply-workshop,
.single-workshops a.apply-workshop {
  display: block;
  max-width: 200px;
  margin-top: 40px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  font-size: 1.3rem;
  padding: 10px 0;
  cursor: pointer;
  font-weight: bold;
}
.post-type-archive-workshops .workshop-item article .text-content,
.single-contest .workshop-item article .text-content {
  display: block;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .post-type-archive-workshops .workshop-item article .text-content,
  .single-contest .workshop-item article .text-content {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .post-type-archive-workshops .apply-workshop,
  .single-contest .apply-workshop {
    max-width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }
}
/* RESPONSIVE */
/* tablet-wide - 1024 */
@media only screen and (max-width: 1024px) {
  .wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .menu-left.drawer.on-toggle {
    width: 80%;
  }
  button.mob-menu-left.clicked {
    left: 85%;
  }
  #header-nav .search {
    display: none;
  }
  .post-item article > a {
    height: auto !important;
  }
}
/*     NEW STYLES      */
.page-template-tpl_home .lazy-1 img {
  height: 100vh;
}
#main-home section .bl-full.bl-bg {
  min-height: 800px;
  position: relative;
}
#main-home section .bl-full.bl-bg:after {
  height: 800px;
}
#main-home section .bl-full.bl-bg .bl-wrapper {
  top: 0;
  margin: auto;
  left: 0;
  bottom: 0;
  right: 0;
  height: 600px;
}
#main-home section .bl-f.ull.bl-bg .bl-wrapper h2 {
  margin: auto;
  font-size: 6rem;
  max-width: 600px;
}
#posts-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.bl-fixed {
  padding: 20px;
}
.post-item {
  width: 33.3333%;
  padding: 10px;
}
.post-item img,
.simple-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin: 0px 0px 15px;
}
.post-item article > a,
.simple-image > a {
  transition: opacity 0.3s;
}
.post-item h3,
.simple-image h3 {
  color: #be2233;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  margin: 0px 0px 10px;
  font-weight: normal;
  font-size: 18px;
}
h2,
#main-home section.white h2,
.widget_text .widget-title {
  color: #5ba4dd;
  letter-spacing: 3.5px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  margin: 1.5rem 0px;
  line-height: 3rem;
  font-size: 5rem;
  font-weight: normal;
}
.title-area,
.widget_text .widget-title {
  margin: 20px 0px;
}
.btn {
  color: white !important;
  background-color: #5ba4dd;
  border-color: #5ba4dd !important;
}
.copyright {
  color: #bbb !important;
}
.header #header-nav #header-nav-wrapper #top-nav-right {
  right: 4px;
}
.arrow {
  cursor: pointer;
}
.simple-image,
.post-item article {
  padding: 10px;
  box-shadow: 0 0 2px gray;
  background-color: white;
}
.simple-image:hover,
.post-item article:hover {
  box-shadow: 0 0 25px gray;
}
.post-item article,
.simple-image {
  height: 407px !important;
  margin-bottom: 0;
  transition: box-shadow 0.5s;
}
#header-nav.nav-fixed .lang ul li i {
  color: #5ba4dd;
}
.home #header-nav.nav-fixed #top-nav-bottom a {
  color: #5ba4dd !important;
}
.home .header #header-nav #top-nav-left ul li:first-child {
  display: none !important;
}
.header #header-nav.nav-fixed #top-nav-bottom {
  display: block;
}
.header #header-nav ul li.current-menu-item a {
  opacity: 1;
}
.header #header-nav ul li a:focus,
.header #header-nav ul li a:hover {
  text-decoration: none;
  opacity: 1;
}
.home #header-nav.nav-fixed #top-nav-bottom a,
.home #header-nav.nav-fixed #top-nav-left a {
  color: #5ba4dd !important;
}
.header #header-nav #header-nav-wrapper #top-nav-bottom ul {
  margin: auto;
  margin-top: -6px;
}
.home #header-nav #top-nav-bottom {
  max-width: 600px;
}
.post-item article > a,
.simple-image > a {
  height: 240px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}
.home .button.btn-read-more {
  position: absolute;
  width: 160px;
  bottom: 70px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  cursor: pointer;
}
.home .header #header-wrapper {
  height: calc(100vh - 100px);
}
.header #header-wrapper .logo {
  background: rgba(255, 255, 255, 0.6);
  margin: 20px;
  margin-top: 60px;
}
#header-nav .search .search-input:focus {
  width: 180px;
}
.home .header {
  position: relative;
}
.home .header:after {
  background-color: rgba(0, 0, 0, 0.3);
}
#header-nav .search:before {
  content: "";
  display: block;
  font-family: FontAwesome;
  top: 2px;
  position: absolute;
  font-size: 18px;
  line-height: 16px;
  color: #5ba4dd;
}
.home #header-nav .search:before {
  color: white;
}
#header-nav.nav-fixed .search:before {
  color: #5ba4dd;
}
.header #header-nav ul li.current-menu-item a {
  border-bottom: 1px solid white;
}
.home .header #header-nav #header-nav-wrapper #top-nav-left {
  padding-left: 180px;
  padding-top: 20px;
  width: 77%;
}
.header #header-nav.nav-fixed #header-nav-wrapper #top-nav-left {
  padding-left: 19px;
}
.header #header-nav #header-nav-wrapper {
  margin: 0 auto;
  position: relative;
}
.header #header-wrapper {
  margin: auto;
  margin-top: -40px;
}
.view-article {
  display: block;
}
.post-type-archive-news button.mob-menu-left span,
.single-news button.mob-menu-left span,
.page-template-tpl_about button.mob-menu-left span,
.page-template-tpl_contacts button.mob-menu-left span,
.page-template-default button.mob-menu-left span,
.search-results button.mob-menu-left span,
.post-type-archive-news button.mob-menu-left:before,
.single-news button.mob-menu-left:before,
.page-template-tpl_about button.mob-menu-left:before,
.page-template-tpl_contacts button.mob-menu-left:before,
.page-template-default button.mob-menu-left:before,
.search-results button.mob-menu-left:before,
.post-type-archive-news button.mob-menu-left:after,
.single-news button.mob-menu-left:after,
.page-template-tpl_about button.mob-menu-left:after,
.page-template-tpl_contacts button.mob-menu-left:after,
.page-template-default button.mob-menu-left:after,
.search-results button.mob-menu-left:after {
  background: white !important;
}
.page-template-tpl_home .owl-carousel .owl-nav {
  height: 110px;
  width: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
.page-template-tpl_home .owl-carousel .owl-nav div {
  position: absolute;
  margin: auto;
  padding: 15px;
  cursor: pointer;
}
.page-template-tpl_home .owl-carousel .owl-nav div.owl-prev {
  left: 0;
}
.page-template-tpl_home .owl-carousel .owl-nav div.owl-next {
  right: 0;
}
.page-template-tpl_home .owl-carousel .owl-nav i:before {
  color: #5ba4dd;
}
.page-template-tpl_home .owl-carousel .owl-dots {
  position: absolute;
  left: 50%;
  margin: 35px 0;
  display: block;
  transform: translateX(-50%);
}
.page-template-tpl_home .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  background: rgba(30, 68, 147, 0.2);
  border: 0;
  float: left;
  margin-left: 10px;
  border-radius: 100%;
}
.page-template-tpl_home .owl-carousel .owl-dots .owl-dot.active {
  background: rgba(30, 68, 147, 0.6);
}
.page-template-default .simple-image {
  height: auto !important;
}
.page-template-default h1,
.page-template-default h2,
.page-template-default h3,
.page-template-default h4,
.page-template-default h5 {
  text-align: left;
}
.page-template-default .wrapper article {
  padding: 0;
  margin-top: -20px;
}
.page-template-default article > p {
  display: inline-block;
}
.page-template-default article li {
  list-style: circle;
  margin-left: 16px;
}
.page-template-default section {
  margin-bottom: 80px;
}
article {
  position: relative;
}
.photogallery .slick-slide img {
  max-height: 80vh;
}
.so-widget-sow-slider {
  max-width: 896px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: -80px;
}
#home-title-block {
  display: none;
}
.page-template-tpl_home #home-title-block {
  display: inline-block;
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  max-width: 80%;
}
.page-template-tpl_home #home-title-block h1 {
  font-size: 5.5rem;
  line-height: 1;
}
.page-template-tpl_home #home-title-block .hr {
  width: 150px;
  height: 1px;
  background-color: white;
  margin-bottom: 20px;
  margin: 10px auto 20px;
}
.page-template-tpl_home #home-title-block p {
  color: white;
  font-size: 21px;
}
.single-photographers .item,
.single-news .wp-post-image {
  box-shadow: 0 0 6px grey;
}
.post-type-archive-workshops .wpcf7-response-output {
  display: none !important;
}
#posts-list-bottom .post-item {
  width: 25%;
}
#loginform [type="password"],
#loginform [type="text"] {
  display: inline-block;
  margin: 5px 0px 15px;
  height: 35px;
  width: 200px;
  border: 1px solid #dfdfdf;
  padding: 0 0.5rem;
}
#loginform .forgetmenot {
  line-height: 14px;
}
@keyframes loading {
  0% {
    content: "...";
  }
  33% {
    content: ".  ";
  }
  67% {
    content: ".. ";
  }
  100% {
    content: "...";
  }
}
.wait {
  display: inline;
}
.wait:after {
  content: "...";
  animation-name: loading;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  display: inline;
  color: #5ba4dd;
  font-weight: 600;
  white-space: pre;
}
#login-window {
  max-width: 360px;
  width: calc(100% - 40px);
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 20px;
  text-align: center;
}
.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}
.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .home .header .button.btn-read-more {
    bottom: 0;
  }
}
@media screen and (max-width: 895px) {
  #top-nav-right {
    width: 100% !important;
  }
  #header-nav .search .search-input:focus {
    width: 95px;
  }
  h2,
  #main-home section.white h2,
  .widget_text .widget-title {
    font-size: 3rem;
  }
  #main-home section .bl-full.bl-bg .bl-wrapper h2 {
    font-size: 3.5rem;
    width: 300px;
  }
  .header #header-wrapper .logo {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  .sponsors h2 {
    width: initial !important;
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .sponsors img {
    max-width: 100px;
    padding: 10px !important;
  }
  .page-template-tpl_home .lazy-2 .slick-dots {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .post-type-archive-news article {
    width: 50%;
  }
  .post-item {
    width: 50%;
  }
  .header #header-nav #header-nav-wrapper #top-nav-left a {
    font-size: 28px;
  }
  .header #header-nav #header-nav-wrapper #top-nav-left li {
    margin-right: 15px;
  }
  .page-template-tpl_home #home-title-block {
    margin-top: 30px;
  }
  .page-template-tpl_home #home-title-block h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 696px) {
  .footer .copyright {
    margin-top: 12px;
    font-size: 12px;
    width: 100%;
  }
  .post-item {
    width: 100%;
  }
  .post-type-archive-news article {
    width: 100%;
  }
  .page-template-tpl_home #home-title-block {
    padding: 10px;
    margin-top: 40px;
  }
  .page-template-tpl_home #home-title-block h1 {
    font-size: 2.5rem;
  }
}
.photo-gallery {
  padding: 0 !important;
}
.owl-item a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  transition: opacity 1s;
  opacity: 0.75;
}
.owl-item.center a:after {
  opacity: 0;
}
#soc-footer {
  margin: 30px 0;
  padding: 20px 10px;
  border-top: 1px solid #ddd;
}
#soc-footer > span {
  font-size: 16px;
  line-height: 32px;
}
#soc-footer a {
  padding: 0 5px;
}
#soc-footer svg,
#soc-footer span,
#soc-footer a {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
}
.owl-item a {
  width: 1000px !important;
  height: 650px !important;
}
.blog-news-area h1 {
  text-align: center;
  margin-top: 30px;
}
.sponsors {
  background-color: rgba(0, 0, 0, 0.4);
  width: 50%;
  max-width: 600px;
  margin: auto;
  display: inline-block;
  padding: 30px;
}
.sponsors h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 1080px) {
  .owl-item a {
    width: 800px !important;
    height: 530px !important;
  }
}
@media screen and (max-width: 880px) {
  .owl-item a {
    width: 600px !important;
    height: 450px !important;
  }
}
@media screen and (max-width: 680px) {
  .owl-item a {
    width: 400px !important;
    height: 300px !important;
  }
}
@media screen and (max-width: 480px) {
  .owl-item a {
    width: 300px !important;
  }
}
@media screen and (max-width: 1100px) {
  #posts-list-bottom .post-item {
    width: 33.3333%;
  }
  #header-nav .lang ul li,
  #header-nav.nav-fixed .lang ul li,
  #header-nav .lang ul li i.fa,
  #header-nav.nav-fixed .lang ul li i.fa {
    margin-right: 2px;
    margin-left: 2px;
  }
}
@media screen and (max-width: 768px) {
  #posts-list-bottom .post-item {
    width: 50%;
  }
}
@media screen and (max-width: 560px) {
  #posts-list-bottom .post-item {
    width: 100%;
  }
}
i.fa.fa-search {
  position: relative;
  right: -2px;
}
@media screen and (min-width: 896px) {
  .home .header a.btn.btn-read-more {
    bottom: 0;
  }
}
.menu-item-has-children {
  padding-bottom: 20px;
}
.menu-item-has-children:hover .sub-menu {
  display: block;
}
.nav-fixed .sub-menu {
  background-color: white;
  top: 60px;
}
.sub-menu {
  position: absolute;
  width: 320px;
  top: 45px;
  padding: 20px 20px 0;
  margin-left: -20px;
  display: none;
}
.nav-fixed .sub-menu {
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.15);
}
.home .header #header-nav #top-nav-left ul.sub-menu li:first-child {
  display: block !important;
}
.sub-menu li {
  height: 45px;
  width: 100%;
}
.blog-news-date {
  position: absolute;
  display: block;
  bottom: 25px;
}
.asp_product_item_qty_input_container {
  display: none !important;
}
.asp_product_item {
  border: none;
  box-shadow: none;
}
.asp_product_item {
  box-shadow: none !important;
  border: none !important;
}
.asp-stripe-form,
.text-center {
  text-align: center;
}
.pay-for-contest {
  display: inline-block;
  background: #5ba4dd;
  color: white !important;
  border: 1px solid #5ba4dd;
  text-shadow: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  width: 160px;
  height: 40px;
  padding: 10px;
  border-radius: 0.25rem;
  transition: all ease-out 0.3s;
}
.pay-for-contest:hover {
  background: #5ba4dd;
  border-color: white;
  text-shadow: none;
  box-shadow: none;
  transition: all 0.5s ease;
  opacity: 0.8;
}
.pay-for-contest[disabled],
.pay-for-contest.disabled {
  background: gray;
  border-color: gray;
  cursor: default;
}
.pay-for-contest[disabled]:hover,
.pay-for-contest.disabled:hover {
  opacity: 1;
}
.pay-for-contest span {
  font-weight: 600;
}
*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 16px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
  position: relative;
  min-height: 100vh;
  padding-bottom: 100px;
  margin: 0;
}
@media screen and (min-width: 1248px) {
  body {
    display: block;
  }
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
p {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.3125rem;
}
a {
  color: #c1202f;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a.view-article {
  color: #5ba4dd !important;
  border-color: #5ba4dd !important;
  transition:
    color 0.5s,
    background-color 0.5s;
}
a.view-article:hover {
  color: white !important;
  background-color: #5ba4dd !important;
}
a.upagievent.inactive {
  color: #999999;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Raleway, Helvetica, Arial, sans-serif;
  color: black;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.75rem;
}
article {
  padding: 0 1rem;
}
ol {
  padding-left: 1.5rem;
}
li {
  font-size: 1rem;
  list-style-type: disc;
}
input:focus,
select:focus,
select:active,
select:hover,
textarea:focus,
button:focus,
*:focus {
  outline: none !important;
}
input:focus {
  outline: 0;
}
input::placeholder,
textarea::placeholder {
  color: #999999;
}
input[type="text"],
input[type="search"],
input[type="password"] {
  font-size: inherit;
  line-height: inherit;
}
::selection {
  background-color: #04a4cc;
  color: white;
  text-shadow: none;
}
::-webkit-scrollbar {
  width: 9px;
  border-radius: 4px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.4);
}
/* UTILS */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}
.reset-box {
  padding: 0;
  margin: 0;
}
.hidden {
  display: none !important;
}
.title-block {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
}
.title-block.white h2 {
  color: white;
}
.title-block.white.line:after {
  background-color: white;
}
.title-block.line {
  margin-bottom: 2rem;
}
.title-block.line:after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 1px;
  background-color: #5ba4dd;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  margin: auto;
}
.title-block h2 {
  letter-spacing: 0.25rem;
}
.spacer {
  display: block;
  width: 100%;
  height: 2rem;
}
.fa {
  font-size: 1.125rem;
  line-height: 1;
}
.background-image {
  position: relative;
  min-height: calc(100vh - 60px);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #d2800c;
}
.home .header a {
  color: white;
}
.home .header #top-nav-left {
  top: 0;
}
.header a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: Raleway, Helvetica, Arial, sans-serif;
}
.header li {
  list-style: none;
  margin-left: 0;
}
.header #header-nav-wrapper {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}
.header #header-wrapper {
  max-width: 540px;
}
.header #top-nav-left {
  width: 75%;
  top: 10px;
  left: 0;
  padding-left: 19px;
}
.header #top-nav-left ul {
  margin-top: 8px;
}
.header #top-nav-left .sub-menu {
  margin-top: 4px;
}
.header #top-nav-right {
  width: 25%;
  right: 40px;
  top: 15px;
  text-align: right;
}
.container {
  width: 100%;
  margin: auto;
  max-width: 540px;
}
.sponsor-container {
  position: absolute;
  display: inline-block;
  width: 90%;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
}
.sponsor-1,
.sponsor-2,
.sponsor-3 {
  width: 60px;
  padding: 6px;
}
.sponsor-4 {
  width: 180px;
  padding: 10px 0px;
}
.sponsor-5 {
  width: 120px;
  padding: 10px 0;
}
.sponsor-6 {
  width: 120px;
  padding: 0px 20px;
}
.sponsor-7 {
  width: 120px;
  padding: 10px 0;
}
.sponsor-8 {
  background-color: white;
  width: 120px;
  padding: 10px 5px;
}
.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.grid-item {
  padding: 0 15px;
  margin-bottom: 30px;
  flex: 0 0 100%;
}
.grid-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.grid-image .img {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.grid-context {
  flex: 1 1 auto;
  padding: 1.25rem 1.25rem 4.5rem;
}
.grid-footer {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 72px;
  bottom: 0;
  padding: 0 1.25rem;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  transition: box-shadow ease-in-out 0.3s;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card .grid-image .img {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
.card .grid-context {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  border-top: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.card:hover {
  box-shadow: 0.1rem 0.25rem 1rem rgba(0, 0, 0, 0.2);
}
.post-date {
  font-size: 14px;
}
.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
}
.banner-image {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}
.banner-gallery {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.banner-gallery:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}
.banner-title-block {
  display: inline-block;
  position: absolute;
  top: 30%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  max-width: 80%;
}
.banner-title-block h1 {
  color: white;
  text-transform: uppercase;
}
.banner-title-block h3 {
  color: white;
}
.photo-gallery,
.photo-gallery img {
  height: calc(100vh - 60px - 6rem);
}
.photo-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.photo-gallery li {
  list-style: none;
}
.photo-gallery .slick-slide {
  padding: 0 0.5rem;
  opacity: 0.3;
  transition: opacity ease-in-out 0.5s;
}
.photo-gallery .slick-center {
  opacity: 1;
}
.photo-gallery .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14%;
  z-index: 1;
  cursor: pointer;
}
.photo-gallery .slick-arrow-prev {
  left: 0;
}
.photo-gallery .slick-arrow-next {
  right: 0;
}
.photo-gallery i {
  display: none;
}
.hr {
  width: 150px;
  height: 1px;
  background-color: white;
  margin-bottom: 20px;
  margin: 10px auto 20px;
}
.photographer-grid .grid-item {
  flex: 0 0 100%;
}
.photographer-main-portrait {
  width: 260px;
  height: 260px;
  display: block;
  position: relative;
  left: 50%;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  margin-bottom: 1rem;
  background-position: 0% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}
.portret-image {
  position: relative;
  width: 70%;
  left: 15%;
  padding-bottom: 70%;
  height: 0;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}
.portret-name,
.portret-desc {
  text-align: center;
}
.nav-pag {
  font-size: 18px;
  display: block;
  margin: 20px auto;
  width: 100%;
  text-align: center;
}
.page-numbers {
  width: 40px;
  height: 40px;
  margin: 5px;
  padding: 11px 0;
  line-height: 16px;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  text-decoration: none !important;
  background-color: white;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  transition:
    background-color 0.3s,
    color 0.3s;
}
.page-numbers.next,
.page-numbers.prev {
  font-size: 35px;
  line-height: 31px;
  padding: 0;
  font-weight: 100;
}
span.page-numbers,
.page-numbers:focus,
.page-numbers:hover {
  background-color: #c1202f;
  color: white !important;
}
.bg-white {
  background-color: white;
}
.loader {
  position: relative;
  left: 50%;
  transform: translatex(-50%);
  width: 2.375rem;
  height: 2.375rem;
}
.nowrap {
  white-space: nowrap;
}
.contest-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contest-item {
  flex: 0 0 100%;
}
.contest-item-block {
  position: relative;
  margin-bottom: 0;
}
.contest-item img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  transition: transform 1s;
}
.contest-item .text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: inline-block;
}
.contest-item h3 {
  font-size: 1.75rem;
  color: white;
  width: auto;
  white-space: nowrap;
  display: inline;
  text-transform: uppercase;
}
.contest-item hr {
  position: relative;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: white;
  transition: width 1s;
}
.contest-item:hover hr {
  width: 100%;
}
.contest-item .over {
  position: relative;
  overflow: hidden;
}
.contest-item .over:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s;
  position: absolute;
  top: 0;
  left: 0;
}
.contest-item:hover img {
  transform: scale(1.125);
}
.contest-item-list {
  text-align: center;
}
.contest-post img {
  margin-bottom: 1rem;
}
.workshop-item:last-child hr {
  display: none;
}
.menu-left ul {
  padding-right: 1.5rem;
}
.menu-item a {
  font-family: Raleway, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
}
.hentry {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #cccccc;
}
.hentry .author,
.hentry .post-edit-link {
  display: none;
}
.hentry h2 {
  text-align: left;
  font-size: 1.5rem;
  margin: 0.25rem 0;
}
.hentry .date {
  display: block;
  color: gray;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 16px;
  width: 100%;
}
input[type="checkbox"] {
  width: auto;
}
.form-control {
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-family: "Roboto", sans-serif;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.subscribe-form {
  position: relative;
}
.subscribe-title {
  display: block;
  text-align: left;
  color: white;
  font-size: 1rem;
}
.subscribe-row {
  text-align: left;
  margin-top: 1rem;
}
.subscribe-row .wpcf7-form-control-wrap {
  margin-bottom: 1rem;
}
.subscribe-email,
.subscribe-submit {
  display: inline-block;
  vertical-align: top;
}
.subscribe-email {
  width: 100%;
}
.subscribe-submit {
  width: 100%;
}
.subscribe-submit .button {
  padding: 0.5rem 0;
}
#subscribe-form {
  width: 100%;
  padding: 0 20px;
}
.search-input {
  min-width: 260px;
  margin-bottom: 1rem;
}
#search {
  padding: 10px 0;
}
.wpcf7-form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  max-width: 640px;
  margin: 0 auto;
}
.wpcf7-form h3 {
  text-align: center;
  margin-bottom: 16px;
}
.wpcf7-submit {
  margin-top: 1.5rem;
}
.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
}
.wpcf7-not-valid-tip {
  color: #be2233 !important;
  position: absolute;
  top: -1.15rem;
  font-size: 0.75rem;
}
.wpcf7-response-output {
  border: none !important;
  margin: 0 0 1rem !important;
  padding: 0.2rem 0 !important;
  color: #be2233;
}
.wpcf7-spinner {
  display: none;
}
.wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
  color: #398f14;
}
.lang {
  padding-right: 5px;
}
#top-nav-left {
  display: none !important;
}
.mob-menu-left {
  display: block !important;
}
@media (max-width: 575px) {
  .hidden-xs {
    display: none;
  }
}
@media (min-width: 576px) {
  .hidden-xs {
    display: block;
  }
  .hidden-sm {
    display: none;
  }
  .photographer-grid .grid-item {
    flex: 0 0 50%;
  }
}
@media (min-width: 768px) {
  body {
    padding-bottom: 100px;
  }
  .header #header-nav-wrapper {
    max-width: 720px;
  }
  .header #header-wrapper {
    max-width: 720px;
  }
  .hidden-sm {
    display: block;
  }
  .hidden-md {
    display: none;
  }
  .container {
    max-width: 720px;
  }
  .news-grid .grid-item {
    flex: 0 0 50%;
  }
  .photo-gallery,
  .photo-gallery img {
    height: calc(100vh - 60px - 10rem);
  }
  .photographer-grid .grid-item {
    flex: 0 0 33.3333%;
    max-width: 33%;
  }
  #subscribe-form {
    width: 480px;
  }
  .lang {
    padding-right: 0;
  }
  .portret-image {
    width: 90%;
    left: 5%;
    padding-bottom: 90%;
  }
}
.post-type-archive-workshops h3 {
  margin: 10px 0 15px;
}
.post-type-archive-workshops .pay-for-contest {
  left: 0 !important;
  transform: translateX(0) !important;
}
@media (min-width: 992px) {
  .hidden-md {
    display: block;
  }
  .hidden-lg {
    display: none;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.125rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.75rem;
  }
  p {
    font-size: 1rem;
  }
  article {
    padding: 0 15px;
  }
  .title-block.line {
    margin-bottom: 3.5rem;
  }
  .title-block.line:after {
    bottom: -1.2rem;
  }
  .title-block h2 {
    letter-spacing: 0.5rem;
  }
  .header #header-nav-wrapper {
    max-width: 960px;
  }
  .header #header-wrapper {
    max-width: 960px;
  }
  .container {
    max-width: 960px;
  }
  .banner-title-block {
    top: 50%;
  }
  .news-grid .grid-item {
    flex: 0 0 33.3333%;
    max-width: 33%;
  }
  .photo-gallery .slick-slide {
    padding: 0 1rem;
  }
  .photographer-grid .grid-item {
    flex: 0 0 25%;
  }
  .sponsor-1,
  .sponsor-2,
  .sponsor-3 {
    width: 120px;
    padding: 15px;
  }
  .sponsor-4 {
    width: 280px;
    padding: 30px 0px;
  }
  .sponsor-5 {
    width: 210px;
    padding: 20px 15px;
  }
  .sponsor-6 {
    width: 110px;
    padding: 0px 15px;
  }
  .sponsor-7 {
    width: 160px;
    padding: 0px 15px;
  }
  .sponsor-container {
    width: 85%;
  }
  .contest-item {
    flex: 0 0 50%;
  }
  .contest-item h3 {
    font-size: 2.25rem;
  }
  .alignleft {
    float: left;
    margin: 5px 15px 15px 0;
  }
  .subscribe-email,
  .subscribe-submit {
    margin-right: 2.5%;
  }
  .subscribe-email {
    width: 55%;
  }
  .subscribe-submit {
    width: 35%;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: block;
  }
  .header #header-nav-wrapper {
    max-width: 1140px;
  }
  .header #header-wrapper {
    max-width: 1140px;
  }
  .container {
    max-width: 1140px;
  }
  .mob-menu-left {
    display: none !important;
  }
  #top-nav-left {
    display: block !important;
  }
}
@media (max-height: 600px) and (min-width: 992px) {
  .banner-title-block {
    width: 800px;
  }
  .sponsor-container {
    max-width: 800px;
  }
}
.post-password-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-password-form p {
  max-width: 75%;
  margin-bottom: 1rem;
}
.post-password-form input[type="submit"] {
  display: inline-block;
  background: #5ba4dd;
  color: white !important;
  border: 1px solid #5ba4dd;
  text-shadow: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  width: 160px;
  height: 40px;
  padding: 10px;
  border-radius: 0.25rem;
  transition: all ease-out 0.3s;
}
.post-password-form input[type="password"] {
  display: block;
  margin-bottom: 1rem;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-container a {
  position: relative;
  display: block;
  width: 33.3333%;
  padding: 8px;
}
@media only screen and (max-width: 767px) {
  .flex-container a {
    width: 50%;
  }
}
.flex-container a:after {
  content: attr(name);
  position: absolute;
  width: 100%;
  display: block;
  color: white;
  font-size: 24px;
  text-shadow: 0 0 10px black;
  text-align: center;
  left: 0;
  bottom: 16px;
}
.flex-container img {
  width: 100%;
  margin: 0;
}
.hide-if-no-js {
  display: none;
}
#login-window .submit {
  height: 72px;
  display: block;
  padding-top: 26px;
}
.asp_product_buy_btn_container {
  text-align: center;
}

.single-contest {
  max-width: 1040px;
  margin: 64px auto;
}

.single-contest p {
  margin-bottom: 0.5rem;
}

.single-contest ul {
  margin-bottom: 1rem;
}

/* ── User-area navigation (profile / photos / orders) ───────────────── */

.user-nav {
  background: white;
  padding: 14px 16px;
  margin-bottom: 24px;
}

.user-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.user-nav__link {
  display: inline-block;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.user-nav__link:hover,
.user-nav__link:focus {
  background: #e5e7eb;
  color: #111;
  text-decoration: none;
}

.user-nav__link--active {
  background: var(--primary);
  color: #fff;
}

.user-nav__link--active:hover,
.user-nav__link--active:focus {
  background: var(--primary);
  color: #fff;
  opacity: 0.92;
}

.wpcf7-turnstile > div {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 0;
}
