/* START HEADER */

header {
  position: fixed;
  width: 100%;
  background-color: var(--yellow);
  padding: 10px 0;
  z-index: 99999;
  transition: all .4s ease-in-out;
}
body.sticky-header header {
  position: fixed;
  padding: 0;
}
header .container::before,
header .container::after {
  display: none;
}
header .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
header .main-menu li a {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--red);
}
header .main-menu li.current-menu-item a,
header .main-menu li a:hover {
  color: #000;
}
.mobile-nav {
  display: none;
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav .toggle-menu,
.logo-container {
  position: relative;
  cursor: pointer;
  z-index: 9999;
}
body.show-menu .mobile-nav .toggle-menu:hover rect {
  fill: #000;
}
body.show-menu .mobile-nav .toggle-menu:hover path {
  stroke: #000;
}
.mobile-nav .close-menu {
  display: none;
}
.mobile-nav .open-menu {
  width: 100%;
  max-width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav .open-menu rect {
  fill: var(--red);
  transitin: all .3s ease-in-out;
}
body.show-menu .mobile-nav .open-menu {
  display: none;
}
body.show-menu .mobile-nav .close-menu {
  display: block;
}
.mobile-nav .close-menu path {
  stroke: var(--red);
}
.mobile-menu-container {
  display: flex;
  position: fixed;
  padding: 80px 20px 60px;
  background-color: var(--yellow);
  color: #000;
  top: 0;
  width: 60%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: -100%;
  transition: .3s;
  z-index: 100;
}
body.show-menu .mobile-menu-container {
  right: 0;
}
.mobile-menu-container li a {
  font-size: 32px;
  color: var(--red);
}
.mobile-menu-container li.current-menu-item a {
  color: #000;
}
@media only screen and (max-width: 1025px) {
  header {
    padding: 5px 0 0 0;
  }
  header .main-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .logo-container {
    width: 40px;
  }
}
/* END HEADER */
/* START HOMEPAGE */
.hero {
  position: relative;
  padding-top: 100px;
}

h1 {
  position: relative;
  margin-top: -40px;
  margin-bottom: 60px;
  text-align: center;
}
h1 p {
  font-family: 'Nutmeg Extra';
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: var(--red);
}
h1 strong {
  font-size: 110px;
  color: #000;
}
@media only screen and (max-width: 1440px) {
  h1 p {
    font-family: 'Nutmeg Extra';
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: var(--red);
  }
  h1 strong {
    font-size: 96px;
    color: #000;
  }
}
@media only screen and (max-width: 1025px) {
  .hero {
    padding-top: 50px;
  }
  h1 p {
    font-size: 36px;
  }
  h1 strong {
    font-size: 80px;
  }
}
@media only screen and (max-width: 769px) {
  h1 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  h1 p{
    font-size: 22px;
  }
  h1 strong {
    font-size: 48px;
  }
}
.prizes .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.prizes ul.rules {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  margin-bottom: 60px;
}
.prizes ul.rules li {
  display: flex;
  position: relative;
}
.prizes ul.rules li img {
  width: 150px;
  height: 200px;
}
.prizes ul.rules li div.rule {
  position: relative;
  left: -10px;
  margin: auto 0;
}
.prizes ul.rules li div.rule p {
  font-size: 40px;
  line-height: 1;
  text-align: start;
}
@media only screen and (max-width: 1025px) {
  .hero img {
    object-fit: cover;
  }
  .prizes ul.rules li div.rule p {
    font-size: 26px;
  }
}
@media only screen and (max-width: 769px) {
  .prizes ul.rules li:nth-child(1) {
    align-self: flex-start;
  }
  .prizes ul.rules li:nth-child(2) {
    top: 20px;
  }
  .prizes ul.rules li:nth-child(3) {
    top: 40px;
    align-self: flex-end;
  }
  .prizes ul.rules li img {
    width: 40px;
    height: auto;
  }
  .prizes ul.rules li div.rule {
    left: -3px;
  }
  .prizes ul.rules li div.rule p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .prizes ul.rules {
    flex-direction: column;
  }
}
.campaign-form {
  background-color: var(--red);
  width: 100%;
  clip-path: ellipse(2400px 100% at 50% 100%);
  padding-top: 80px;
}
.campaign-form h2 {
  font-family: 'Nutmeg Extra';
  font-size: 65px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .campaign-form {
    clip-path: ellipse(1400px 100% at 50% 100%);
    padding-top: 20px;
  }
  .campaign-form h2 {
    font-size: 18px;
  }
}
/* END HOMEPAGE */

/* 404*/
.page_404{
  text-align: center;
}
/* Default Template */
.content-area h1{
  font-size: 50px;
  margin-bottom: 60px;
	font-family: 'museo-slab';
	font-weight:700;
}
.content-area a{
  text-decoration: underline;
}
.content-area table,
.content-area tr,
.content-area td,
.content-area th{
	border:none;
}
.content-area th {
  font-size: 28px;
}
.content-area td {
  font-size: 24px;
}
.content-area li {
  font-size: 18px;
}
@media(max-width:850px){
	.content-area{
		margin-top: 0;
	}
  .content-area li {
    font-size: 15px;
  }
}
@media(max-width:767px){
	.content-area h1{
		font-size: 30px;
	}
	.content-area table,
  .content-area thead,
  .content-area tbody,
  .content-area th,
  .content-area td,
  .content-area tr {
		display: block;
    width: 100%!important;
    height: auto!important;
    font-size: 16px;
	}
	.content-area  tr:first-child {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.content-area td {
		border: none;
		position: relative;
		padding-left: 50%;
    position: relative;
	}
  .content-area table tr{
    border-bottom: 1px solid #000;
    margin:20px 0;
  }
	.content-area td:before {
		position: absolute;
		top: 50%;
    transform:translateY(-50%);
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
    font-weight: 600;
    color:var(--fino-red);
	}
	.content-area td:nth-of-type(1):before { content: "NR."; }
	.content-area td:nth-of-type(2):before { content: "NUME"; }
	.content-area td:nth-of-type(3):before { content: "PREMIU"; }
}
