/* 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;
}
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: 20px;
  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;
}
.logo-container{
    margin-bottom: -33px;
}
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{
  text-align: center;
}
.mobile-menu-container li a {
  font-size: 24px;
  color: var(--red);
  text-align: center;
  font-weight: 600;
}
.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;
    margin-bottom: 0;
  }
}
/* END HEADER */
/* START HOMEPAGE */
.hero {
  position: relative;
  padding:90px 0 40px;
}
.hero .container img{
  width:100%;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.prizes .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.prizes ul.rules {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-bottom: 60px;
}
.prizes ul.rules li {
  display: flex;
  position: relative;
  padding: 0 15px;
  align-items: center;
}
.prizes ul.rules li img {
  width: 100px;
  height: auto;
  margin-right: 20px;
}
.prizes ul.rules li div.rule {
  margin: auto 0;
}
.prizes ul.rules li div.rule p {
  font-size: 25px;
  line-height: 1.3;
  text-align: start;
}
@media(max-width:1100px){
  .prizes ul.rules {
    flex-direction: column;
    gap:20px;
    margin:20px 0;
  }
}
@media(max-width:767px){
  .prizes ul.rules li{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
  }
  .prizes ul.rules li img{
    width: 40px;
    margin:0;
  }
  .prizes ul.rules li div.rule p{
    font-size: 18px;
    text-align: center;
  }
}
.additional_info{
  max-width: 900px;
  margin: 0 auto;
}
@media(max-width:767px){
  .additional_info p{
    font-size: 12px;
  }
}
.campaign-form {
  width: 100%;
  padding-top: 60px;
}
.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: 850px) {
  .campaign-form {
    padding-top: 20px;
  }
  .campaign-form h2 {
    font-size: 40px;
  }
}
@media(max-width:767px){
  .campaign-form h2 {
    font-size: 24px;
  }
}
/* END HOMEPAGE */

/* 404*/
.page_404{
  text-align: center;
}
/* Default Template */
.content-area h1{
  font-size: 40px;
  margin-bottom: 60px;
	font-weight:700;
  color:var(--yellow);
}
.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: 24px;
	}
	.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"; }
}
