@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
body {
  font-family: "Onest", sans-serif !important;
  margin: 0;
  background: #252525 !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

a:focus {
  outline: none !important;
}

a:focus img {
  outline: none !important;
}

.container {
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1690px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 1430px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1230px) {
  .container {
    max-width: 991px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 768px;
  }
}
.container_fluid {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto !important;
}

/* reset.css for WordPress */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 20px 0;
  transition: all 0.3s;
}

header.site-header.scrolled {
  background: rgb(34, 34, 34);
  transition: all 0.3s;
}

header.site-header.scrolled .header_content .site-logo {
  max-width: 100px;
  transition: all 0.3s;
}

header.site-header .header_content {
  display: flex;
  justify-content: space-between;
  position: relative;
}

header.site-header .header_content .site-logo {
  position: absolute;
  left: 0;
  top: -7px;
  transition: all 0.3s;
  max-width: 184px;
}

@media screen and (max-width: 1430px) {
  header.site-header .header_content .site-logo {
    max-width: 140px;
  }
}
@media screen and (max-width: 991px) {
  header.site-header .header_content .site-logo {
    max-width: 100px;
    z-index: 11;
  }
}
header.site-header .header_content .burger {
  display: none;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .burger {
    display: block;
  }
}
header.site-header .header_content .right_side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side {
    position: fixed;
    max-width: 375px;
    width: 100%;
    background: rgb(34, 34, 34);
    right: -400px;
    top: 0;
    bottom: 0;
    display: block;
    padding: 100px 16px;
    z-index: 10;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side.active {
    right: 0;
    transition: all 0.4s;
  }
}
header.site-header .header_content .right_side .close {
  display: none;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side .close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
  }
}
header.site-header .header_content .right_side nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side nav ul {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
  }
}
header.site-header .header_content .right_side nav ul li {
  margin-right: 12px;
}

@media screen and (max-width: 1430px) {
  header.site-header .header_content .right_side nav ul li {
    margin-right: 6px;
  }
}
@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side nav ul li {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 12px;
  }
}
header.site-header .header_content .right_side nav ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  color: #FFFFFF;
  padding: 12px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

@media screen and (max-width: 1430px) {
  header.site-header .header_content .right_side nav ul li a {
    padding: 12px 6px;
  }
}
@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side nav ul li a {
    font-size: 23px;
    line-height: 1.3;
    display: block;
  }
}
header.site-header .header_content .right_side nav ul li a:hover {
  border-bottom: 1px solid white;
  color: #FF8800;
  transition: all 0.3s;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side nav ul li a:hover {
    color: #F20030;
  }
}
header.site-header .header_content .right_side nav ul li a:focus {
  color: #F20030;
  transition: all 0.3s;
}

header.site-header .header_content .right_side .social {
  display: flex;
  justify-content: flex-end;
  margin-left: 24px;
  align-items: center;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side .social {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
header.site-header .header_content .right_side .social a {
  margin-right: 24px;
}

@media screen and (max-width: 1230px) {
  header.site-header .header_content .right_side .social a {
    margin-right: 16px;
  }
}
@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side .social a {
    order: 1;
  }
}
header.site-header .header_content .right_side .social a svg {
  width: 24px;
  height: 24px;
}

header.site-header .header_content .right_side .social a svg path {
  transition: all 0.3s;
}

header.site-header .header_content .right_side .social a:hover svg path {
  fill: #F20030;
  transition: all 0.3s;
}

header.site-header .header_content .right_side .social .head_button {
  padding: 8px 16px 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  text-align: center;
  text-transform: uppercase;
  color: white;
  background: #DC2626;
  border-radius: 12px;
  box-shadow: 0px 12px 13px 0px rgba(0, 0, 0, 0.168627451);
  transition: all 0.4s;
  margin-right: 0;
}

@media screen and (max-width: 1430px) {
  header.site-header .header_content .right_side .social .head_button {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side .social .head_button {
    order: 0;
    width: 100%;
    margin-bottom: 24px;
    font-size: 23px;
    padding: 14px 16px;
    font-weight: 400;
    font-size: 16px;
  }
}
header.site-header .header_content .right_side .social .head_button:hover {
  background: #bb2020;
  transition: all 0.4s;
}

header.site-header .header_content .right_side .social .head_button:hover svg path {
  fill: white;
}

header.site-header .header_content .right_side .social .head_button svg {
  margin-left: 12px;
}

header.site-header .header_content .right_side .legal {
  display: none;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side .legal {
    display: block;
  }
}
header.site-header .header_content .right_side .legal a {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  text-decoration: underline !important;
  margin-bottom: 24px;
  color: #FFFFFF;
  display: block;
  width: 100%;
  text-align: center;
}

header.site-header .header_content .right_side p {
  display: none;
  margin-top: 100px;
  text-align: center;
  width: 100%;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content .right_side p {
    display: block;
  }
}
.main_section_wrap {
  background: url("/wp-content/themes/victor-child/assets/images/main_image.jpg");
  background-size: cover;
  position: relative;
  padding-top: 140px;
  padding-bottom: 500px;
  background-position: bottom center;
}

.main_section_wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #F7C8B4;
  background: linear-gradient(180deg, rgba(247, 200, 180, 0) 40%, rgb(37, 37, 37) 90%);
}

.main_section_wrap .main_section {
  position: relative;
  z-index: 2;
}

.main_section_wrap .main_section h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 125%;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 22px;
}

@media screen and (max-width: 768px) {
  .main_section_wrap .main_section h1 {
    font-size: 42px;
    margin-bottom: 12px;
  }
}
.main_section_wrap .main_section p {
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .main_section_wrap .main_section p {
    font-size: 16px;
  }
}
.main_section_wrap .main_section .countdown .countdown_content .clock {
  display: flex;
  justify-content: center;
}

.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box {
  border-radius: 24px;
  padding: 24px 18px;
  margin: 0 12px;
  width: 216px;
  text-align: center;
  height: 208px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box {
    width: 150px;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box {
    width: 80px;
    height: 70px;
    margin: 0 4px;
    padding: 10px;
  }
}
.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border: 2px solid white;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  width: 100%;
  height: calc(50% - 39px);
  top: 0;
}

@media screen and (max-width: 768px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box:before {
    height: calc(50% - 17px);
    border-radius: 8px 8px 0 0;
  }
}
.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border: 2px solid white;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  width: 100%;
  height: calc(50% - 39px);
  top: auto;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box:after {
    height: calc(50% - 17px);
    border-radius: 0 0 8px 8px;
  }
}
.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box .box_wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 2px;
  width: 100%;
  height: 100%;
}

.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box .box_wrap:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 74px;
  border-radius: 0 8px 8px 0;
  border: 2px solid white;
  border-left: 0;
  top: 65px;
  left: -2px;
}

@media screen and (max-width: 991px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box .box_wrap:before {
    top: 21px;
  }
}
@media screen and (max-width: 768px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box .box_wrap:before {
    height: 28px;
    width: 4px;
    top: 19px;
  }
}
.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box .box_wrap:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 74px;
  border-radius: 8px 0 0 8px;
  border: 2px solid white;
  border-right: 0;
  top: 65px;
  right: -2px;
}

@media screen and (max-width: 991px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box .box_wrap:after {
    top: 21px;
  }
}
@media screen and (max-width: 768px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box .box_wrap:after {
    height: 28px;
    width: 4px;
    top: 19px;
  }
}
.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box span {
  font-weight: 600;
  font-size: 128px;
  line-height: 125%;
  text-align: center;
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box span {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .time-box span {
    font-size: 42px;
  }
}
.main_section_wrap .main_section .countdown .countdown_content .clock .wrap .label {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  text-align: center;
  margin-top: 9px;
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  .main_section_wrap .main_section .countdown .countdown_content .clock .wrap .label {
    font-size: 16px;
  }
}
.main_section_wrap .main_section .countdown .countdown_content p {
  font-weight: 400;
  font-size: 32px;
  line-height: 115%;
  text-align: center;
  color: #FFFFFF;
  margin-top: 36px;
}

@media screen and (max-width: 991px) {
  .main_section_wrap .main_section .countdown .countdown_content p {
    font-size: 16px;
  }
}
.main_section_wrap .main_section a {
  padding: 8px 16px 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  text-align: center;
  text-transform: uppercase;
  color: white;
  background: #DC2626;
  border-radius: 12px;
  box-shadow: 0px 12px 13px 0px rgba(0, 0, 0, 0.168627451);
  transition: all 0.4s;
  width: fit-content;
  margin: 48px auto;
}

@media screen and (max-width: 991px) {
  .main_section_wrap .main_section a {
    order: 0;
    margin-bottom: 24px;
    font-size: 23px;
  }
}
.main_section_wrap .main_section a:hover {
  background: #bb2020;
  transition: all 0.4s;
}

.main_section_wrap .main_section a:hover svg path {
  fill: white;
}

.main_section_wrap .main_section a svg {
  margin-left: 12px;
}

.main_section_wrap .main_section span.note {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  text-align: center;
  padding: 12px 24px;
  background: #1C1816;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.premii_wrap {
  border-radius: 36px;
  padding: 48px 120px;
  background: linear-gradient(0deg, rgba(54, 54, 54, 0.2), rgba(54, 54, 54, 0.2)), linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  position: relative;
  max-width: 1400px;
  margin: -320px auto 48px;
  z-index: 9;
  backdrop-filter: blur(10px);
  height: 642px;
}

@media screen and (max-width: 1400px) {
  .premii_wrap {
    max-width: 1200px;
    margin: -320px auto 48px;
    height: 580px;
  }
}
@media screen and (max-width: 1200px) {
  .premii_wrap {
    max-width: 991px;
    height: 520px;
  }
}
@media screen and (max-width: 991px) {
  .premii_wrap {
    max-width: 768px;
    padding: 24px 20px;
  }
}
@media screen and (max-width: 768px) {
  .premii_wrap {
    height: 480px;
    padding: 24px 0;
  }
}
@media screen and (max-width: 768px) {
  .premii_wrap .container {
    padding: 0;
  }
}
.premii_wrap h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 125%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .premii_wrap h2 {
    font-size: 32px;
  }
}
.premii_wrap .premii {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

.premii_wrap .premii .slick-track {
  display: flex;
  align-items: center;
}

.premii_wrap .premii .slick-slide {
  max-width: 400px;
  transition: all 0.4s;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .premii_wrap .premii .slick-slide {
    max-width: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .premii_wrap .premii .slick-slide {
    max-width: 250px;
  }
}
.premii_wrap .premii .slick-slide.slick-current .block {
  max-width: 400px;
  transition: all 0.4s;
}

@media screen and (max-width: 1400px) {
  .premii_wrap .premii .slick-slide.slick-current .block {
    max-width: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .premii_wrap .premii .slick-slide.slick-current .block {
    max-width: 250px;
  }
}
.premii_wrap .premii .slick-slide.slick-current .block .img_wrap img {
  display: none;
  transition: all 0.4s;
}

.premii_wrap .premii .slick-slide.slick-current .block .img_wrap img.active {
  display: block;
  width: 390px;
  transition: all 0.4s;
}

.premii_wrap .premii .slick-slide.slick-current .block h4 {
  opacity: 1;
  transition: all 0.4s;
  visibility: visible;
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  .premii_wrap .premii .slick-slide.slick-current .block h4 {
    font-size: 23px;
  }
}
.premii_wrap .premii .slick-slide .block {
  max-width: 300px;
  transition: all 0.4s;
}

@media screen and (max-width: 1400px) {
  .premii_wrap .premii .slick-slide .block {
    max-width: 200px;
  }
}
.premii_wrap .premii .slick-slide .block .img_wrap img {
  width: 300px;
  transition: all 0.4s;
}

.premii_wrap .premii .slick-slide .block .img_wrap img.active {
  display: none;
  transition: all 0.4s;
}

.premii_wrap .premii .slick-slide .block h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 125%;
  color: #FFFFFF;
  text-align: center;
  margin-top: 12px;
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
}

.ce_trebuie {
  background: #252525;
  padding: 96px 48px;
  margin: 0 auto;
}

@media screen and (max-width: 1600px) {
  .ce_trebuie {
    max-width: 1400px;
  }
}
@media screen and (max-width: 768px) {
  .ce_trebuie {
    padding: 48px 16px;
  }
}
.ce_trebuie h2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 115%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .ce_trebuie h2 {
    font-size: 32px;
  }
}
.ce_trebuie .conditii {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .ce_trebuie .conditii {
    justify-content: center;
  }
}
.ce_trebuie .conditii .block {
  max-width: calc(20% - 19px);
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .ce_trebuie .conditii .block {
    max-width: calc(33.3333333333% - 19px);
    margin: 0 9px 20px;
  }
}
@media screen and (max-width: 768px) {
  .ce_trebuie .conditii .block {
    max-width: 100%;
    margin: 0 0 34px 0;
  }
}
.ce_trebuie .conditii .block img {
  width: 100%;
  margin-bottom: 12px;
}

.ce_trebuie .conditii .block h5 {
  font-weight: 600;
  font-size: 23px;
  line-height: 115%;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 1600px) {
  .ce_trebuie .conditii .block h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .ce_trebuie .conditii .block h5 {
    font-size: 23px;
  }
}
.ce_trebuie .conditii .block h5 span {
  padding: 4px 16px;
  border: 1px solid #FFFFFF;
  border-radius: 99px;
  margin-right: 8px;
}

@media screen and (max-width: 1600px) {
  .ce_trebuie .conditii .block h5 span {
    padding: 4px 10px;
  }
}
.ce_trebuie p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
  margin-top: 12px;
  text-align: left;
}

.formular {
  background: rgb(34, 34, 34);
  padding: 96px 0;
  position: relative;
  background: url("/wp-content/themes/victor-child/assets/images/form_bg.jpg");
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 991px) {
  .formular {
    padding: 48px 0;
  }
}
.formular .form_wrap {
  background: rgba(255, 255, 255, 0.1215686275);
  padding: 24px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  /* Aliniere rând input-uri */
  /* Zona de Upload */
  /* Checkbox-uri custom */
}

@media screen and (max-width: 768px) {
  .formular .form_wrap {
    padding: 24px 8px;
  }
}
.formular .form_wrap h3 {
  font-weight: 600;
  font-size: 64px;
  line-height: 125%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .formular .form_wrap h3 {
    font-size: 32px;
  }
}
.formular .form_wrap form {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.formular .form_wrap form input {
  height: 48px;
  border-radius: 8px;
  padding: 14px 12px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  transition: all 0.3s;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.formular .form_wrap form input:focus {
  outline: none;
  transition: all 0.3s;
}

.formular .form_wrap form input.wpcf7-not-valid {
  border: 1px solid #EF4444;
  color: #EF4444;
}

.formular .form_wrap form input.wpcf7-not-valid::placeholder {
  color: #EF4444;
}

.formular .form_wrap form input.wpcf7-not-valid + .wpcf7-not-valid-tip {
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: #EF4444;
}

.formular .form_wrap form .wpcf7-not-valid-tip {
  margin-top: 5px;
  margin-left: 5px;
}

.formular .form_wrap form .half {
  max-width: calc(33.3333333333% - 16px);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap form .half {
    max-width: 100%;
  }
}
.formular .form_wrap form .half .wpcf7-not-valid-tip {
  color: rgb(255, 255, 255);
}

.formular .form_wrap form .full {
  width: 100%;
}

.formular .form_wrap form .full label {
  background: rgba(255, 255, 255, 0.1215686275);
  height: 208px;
  border-radius: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding: 10px;
}

.formular .form_wrap form .full label:before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  left: 8px;
  bottom: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.4784313725);
  border-radius: 4px;
}

.formular .form_wrap form .full label input[type=file] {
  display: none;
}

.formular .form_wrap form .full label .icon {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 12px;
  background: url("/wp-content/themes/victor-child/assets/images/upload_icon.svg");
}

.formular .form_wrap form .full label br {
  display: none;
}

.formular .form_wrap form .full label b {
  font-family: Onest;
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.formular .form_wrap form .full label b span {
  color: #EF4444;
  display: block;
  text-align: center;
  margin-bottom: 0;
}

.formular .form_wrap form .full label span {
  font-family: Onest;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.formular .form_wrap form .full .file-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 24px;
}

.formular .form_wrap form .full .file-list .file-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px 12px;
  max-width: calc(33.3333333333% - 6px);
  width: 100%;
  margin-bottom: 12px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap form .full .file-list .file-item {
    max-width: 100%;
  }
}
.formular .form_wrap form .full .file-list .file-item .icon {
  margin-right: 8px;
}

.formular .form_wrap form .full .file-list .file-item .name {
  font-family: Onest;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #222222;
  display: block;
}

.formular .form_wrap form .full .file-list .file-item .size {
  font-family: Onest;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: rgba(34, 34, 34, 0.5);
  display: block;
}

.formular .form_wrap form .full .file-list .file-item .remove-file {
  position: absolute;
  right: 12px;
}

.formular .form_wrap form p {
  width: 100%;
}

.formular .form_wrap form p .wpcf7-form-control-wrap {
  margin-bottom: 30px;
  display: block;
}

.formular .form_wrap form p .wpcf7-form-control-wrap .wpcf7-list-item {
  margin-left: 0;
}

.formular .form_wrap form p .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.formular .form_wrap form p .wpcf7-form-control-wrap .wpcf7-list-item label input {
  width: 20px;
  height: 20px;
}

.formular .form_wrap form p .wpcf7-form-control-wrap .wpcf7-list-item label .wpcf7-list-item-label {
  color: white;
  margin-left: 10px;
  font-size: 18px;
}

.formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-411], .formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-292] {
  margin-bottom: 0;
}

.formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-411] .wpcf7-acceptance .wpcf7-list-item label input:checked + span:before, .formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-292] .wpcf7-acceptance .wpcf7-list-item label input:checked + span:before {
  background: url("/wp-content/themes/victor-child/assets/images/check_full.svg");
}

.formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-411] .wpcf7-acceptance .wpcf7-list-item label input, .formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-292] .wpcf7-acceptance .wpcf7-list-item label input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-411] .wpcf7-acceptance .wpcf7-list-item label span, .formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-292] .wpcf7-acceptance .wpcf7-list-item label span {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: white;
  margin-left: 0;
  position: relative;
  padding-left: 28px;
}

.formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-411] .wpcf7-acceptance .wpcf7-list-item label span:before, .formular .form_wrap form p .wpcf7-form-control-wrap[data-name=acceptance-292] .wpcf7-acceptance .wpcf7-list-item label span:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("/wp-content/themes/victor-child/assets/images/check_empty.svg");
}

.formular .form_wrap form p input[type=submit] {
  padding: 14px 48px;
  font-weight: 600;
  font-size: 23px;
  line-height: 115%;
  color: #FFFFFF;
  background: #DC2626;
  border-radius: 8px;
  display: block;
  width: fit-content;
  transition: all 0.3s;
  border: 0;
  height: auto;
  margin-top: 24px;
}

.formular .form_wrap form p input[type=submit]:hover {
  background: #bb2020;
  transition: all 0.3s;
}

.formular .form_wrap form p input[type=submit]:focus {
  background: #F20030;
  transition: all 0.3s;
}

.formular .form_wrap form p .wpcf7-spinner {
  width: 60px;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side, #fbfbfb 90%, rgba(0, 0, 0, 0)) 0/33.3333333333% 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
  display: block;
  color: white;
  margin: 20px auto 0;
  height: auto;
  border-radius: 0;
}

@keyframes l1 {
  to {
    clip-path: inset(0 -34% 0 0);
  }
}
.formular .form_wrap form p .wpcf7-spinner:before {
  display: none;
}

.formular .form_wrap form .wpcf7-response-output {
  display: none !important;
}

.formular .form_wrap .input-row {
  gap: 12px;
  display: flex;
  margin-bottom: 25px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .input-row {
    flex-wrap: wrap;
  }
}
.formular .form_wrap .input-row input {
  flex: 1;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  padding: 12px 15px;
  color: white;
  outline: none;
}

.formular .form_wrap .input-row input::placeholder {
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .input-row input {
    width: 100%;
    flex: auto;
  }
}
.formular .form_wrap .upload-container {
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 25px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  background: rgba(255, 255, 255, 0.1215686275);
  position: relative;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .upload-container {
    padding: 8px;
  }
}
.formular .form_wrap .upload-container:before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  bottom: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.4784313725);
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .upload-container:before {
    top: 8px;
    right: 8px;
    left: 8px;
    bottom: 8px;
  }
}
.formular .form_wrap .upload-container .upload-icon {
  margin: 10px auto 12px;
  text-align: center;
}

.formular .form_wrap .upload-container p {
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .upload-container p {
    font-size: 16px;
  }
}
.formular .form_wrap .upload-container p span {
  display: block;
  color: #EF4444;
}

.formular .form_wrap .upload-container .formats {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #fff;
  width: 100%;
  display: block;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .upload-container .formats {
    font-size: 11px;
  }
}
.formular .form_wrap .file-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.formular .form_wrap .file-list .file-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px 12px;
  max-width: calc(33.3333333333% - 6px);
  width: 100%;
  margin-bottom: 12px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .file-list .file-item {
    max-width: 100%;
  }
}
.formular .form_wrap .file-list .file-item .icon {
  margin-right: 8px;
}

.formular .form_wrap .file-list .file-item .name {
  font-family: Onest;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #222222;
  display: block;
}

.formular .form_wrap .file-list .file-item .size {
  font-family: Onest;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: rgba(34, 34, 34, 0.5);
  display: block;
}

.formular .form_wrap .file-list .file-item .remove-file {
  position: absolute;
  right: 12px;
}

.formular .form_wrap .checkbox-group {
  text-align: left;
  margin-bottom: 12px;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .checkbox-group {
    margin-top: 12px;
  }
}
.formular .form_wrap .checkbox-group label {
  display: flex;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #ffffff;
}

.formular .form_wrap .checkbox-group label input {
  display: none;
}

.formular .form_wrap .checkbox-group label input:checked + .checkmark:before {
  background: url("/wp-content/themes/victor-child/assets/images/check_full.svg");
}

.formular .form_wrap .checkbox-group label span {
  padding-left: 28px;
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}

.formular .form_wrap .checkbox-group label span:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("/wp-content/themes/victor-child/assets/images/check_empty.svg");
}

.formular .form_wrap .btn_wrap {
  width: 100%;
}

.formular .form_wrap .btn_wrap .btn-submit {
  padding: 14px 48px;
  font-weight: 400;
  font-size: 23px;
  line-height: 115%;
  color: #FFFFFF;
  background: #DC2626;
  border-radius: 8px;
  width: fit-content;
  transition: all 0.3s;
  border: 0;
  height: auto;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .formular .form_wrap .btn_wrap .btn-submit {
    width: 100%;
    font-size: 16px;
    text-align: center;
    justify-content: center;
  }
}
.formular .form_wrap .btn_wrap .btn-submit:hover {
  background: #bb2020;
  transition: all 0.3s;
}

.formular .form_wrap .btn_wrap .btn-submit:focus {
  background: #F20030;
  transition: all 0.3s;
}

.regulament {
  padding: 96px 0;
  background: #252525;
}

@media screen and (max-width: 991px) {
  .regulament {
    padding: 48px 0;
  }
}
.regulament h3 {
  font-family: Onest;
  font-weight: 600;
  font-size: 64px;
  line-height: 115%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .regulament h3 {
    font-size: 32px;
  }
}
.regulament .accordion {
  background: rgba(255, 255, 255, 0.1215686275);
  border-radius: 12px;
  padding: 24px;
  max-width: 1430px;
  margin: 0 auto 24px;
}

@media screen and (max-width: 768px) {
  .regulament .accordion {
    padding: 14px 16px;
    border-radius: 8px;
    margin: 0 auto 12px;
  }
}
.regulament .accordion:last-of-type {
  margin-bottom: 0;
}

.regulament .accordion .accordion_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 32px;
  line-height: 115%;
  color: #FFFFFF;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .regulament .accordion .accordion_header {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .regulament .accordion .accordion_header {
    font-size: 16px;
  }
}
.regulament .accordion .accordion_header svg {
  transition: all 0.4s;
  max-width: 16px;
  height: 16px;
}

.regulament .accordion .accordion_header.active svg {
  transform: rotate(-180deg);
  transition: all 0.4s;
}

.regulament .accordion .accordion_content {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
  margin-top: 20px;
}

.regulament .accordion .accordion_content b {
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.regulament .accordion .accordion_content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.regulament .accordion .accordion_content ul li {
  list-style: disc;
  margin-bottom: 5px;
}

.magazine {
  background: rgb(34, 34, 34);
  padding: 96px 0;
}

@media screen and (max-width: 991px) {
  .magazine {
    padding: 48px 0;
  }
}
.magazine h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: Italic;
  font-size: 64px;
  line-height: 115%;
  text-align: center;
  margin-bottom: 96px;
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  .magazine h2 {
    margin-bottom: 48px;
    font-size: 32px;
  }
}
.magazine .images {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .magazine .images {
    flex-wrap: wrap;
  }
}
.magazine .images img {
  margin: 0 6px;
  max-width: calc(24% - 6px);
  transition: all 0.3s;
}

.magazine .images img:hover {
  opacity: 0.75;
  transition: all 0.3s;
}

@media screen and (max-width: 991px) {
  .magazine .images img {
    max-width: calc(49% - 6px);
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .magazine .images img {
    max-width: 100%;
    margin: 0 0 12px;
  }
}
.modal_overlay {
  backdrop-filter: blur(25px);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: none;
}

.modal_overlay.active {
  display: block;
}

.modal_overlay .modal_content {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background: #F5F5F5;
}

@media screen and (max-width: 520px) {
  .modal_overlay .modal_content {
    flex-wrap: wrap;
    max-width: 375px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 400px) {
  .modal_overlay .modal_content {
    max-width: 300px;
  }
}
.modal_overlay .modal_content .icon {
  display: block;
  text-align: center;
}

.modal_overlay .modal_content h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  margin: 8px auto 16px;
  width: 100%;
  text-align: center;
  color: #222222;
}

.modal_overlay .modal_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  padding: 16px;
  color: #222222;
  margin-bottom: 16px;
}

.modal_overlay .modal_content .close {
  border-radius: 8px;
  padding: 14px 12px;
  border: 1px solid #A3A3A3;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #222222;
  margin: 0 auto;
  width: 150px;
}

footer {
  background: #252525;
  padding: 24px 0 30px;
}

footer .logo {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  footer .logo {
    flex-wrap: wrap;
  }
}
footer .logo img {
  max-width: 125px;
  margin: 0 12px;
}

@media screen and (max-width: 768px) {
  footer .logo img {
    max-width: 90px;
  }
}
footer .footer_nav {
  margin-bottom: 24px;
}

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

@media screen and (max-width: 991px) {
  footer .footer_nav ul {
    flex-wrap: wrap;
  }
}
footer .footer_nav ul li {
  margin: 0 7px;
  width: calc(20% - 10px);
  text-align: center;
}

@media screen and (max-width: 991px) {
  footer .footer_nav ul li {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_nav ul li {
    width: 100%;
  }
}
footer .footer_nav ul li:last-of-type a {
  padding: 14px;
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  color: #FFFFFF;
  border-bottom: 0 !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  background: #DC2626;
  border-radius: 12px;
  transition: all 0.4s;
  margin-right: 0;
  display: flex;
}

footer .footer_nav ul li:last-of-type a:hover {
  border-bottom: 0;
  background: #bb2020;
  color: white;
}

footer .footer_nav ul li a {
  padding: 14px;
  font-weight: 600;
  font-size: 23px;
  line-height: 125%;
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  width: 100%;
  display: block;
}

@media screen and (max-width: 1024px) {
  footer .footer_nav ul li a {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  footer .footer_nav ul li a {
    font-size: 23px;
  }
}
footer .footer_nav ul li a:hover {
  border-bottom: 1px solid #EF4444;
  color: #EF4444;
  transition: all 0.3s;
}

footer .footer_nav ul li a:focus {
  color: #F20030;
  transition: all 0.3s;
}

footer .social {
  display: flex;
  justify-content: center;
}

footer .social a {
  margin: 0 12px;
}

footer .social a svg path {
  transition: all 0.3s;
}

footer .social a:hover svg path {
  fill: #727272;
  transition: all 0.3s;
}

footer .footer_bottom {
  text-align: center;
  font-weight: 400;
  font-size: 23px;
  line-height: 125%;
  color: #FFFFFF;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  footer .footer_bottom {
    font-size: 16px;
    flex-wrap: wrap;
  }
}
footer .footer_bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  footer .footer_bottom p {
    order: 2;
    text-align: center;
    width: 100%;
  }
}
footer .footer_bottom .legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 768px) {
  footer .footer_bottom .legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer_bottom .legal a {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
  text-decoration: underline !important;
}

@media screen and (max-width: 768px) {
  footer .footer_bottom .legal a {
    margin-bottom: 24px;
  }
}
footer .footer_bottom .legal a:last-of-type {
  margin-left: 24px;
}

@media screen and (max-width: 768px) {
  footer .footer_bottom .legal a:last-of-type {
    margin-left: 0;
  }
}


/*# sourceMappingURL=main.css.map */
