@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap");
.text_image_section.about_block {
  margin: 48px 0;
}

@media screen and (max-width: 768px) {
  .text_image_section.about_block {
    margin: 24px 0;
  }
}
.text_image_section.about_block .left_side h2 {
  margin-bottom: 24px;
}

.text_image_section.about_block .left_side .description p {
  margin-bottom: 12px;
}

.text_image_section.about_block .right_side img {
  width: 100%;
}

.biggest_hits {
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .biggest_hits {
    padding: 24px 0;
  }
}
.biggest_hits h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .biggest_hits h2 {
    font-size: 36px;
  }
}
.biggest_hits .hits {
  width: calc(25% - 18px);
  height: 334px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 24px;
  border-radius: 12px;
}

@media screen and (max-width: 1230px) {
  .biggest_hits .hits {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .biggest_hits .hits {
    width: 100%;
    margin-bottom: 12px;
    height: 250px;
  }
}
.biggest_hits .hits:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.86%, #000000 80.69%);
  border-radius: 12px;
}

.biggest_hits .hits h5 {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 23px;
  line-height: 130%;
  color: #FFFFFF;
  margin: 0;
}

.biggest_hits .hits a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: white;
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: #B91C1C;
  font-weight: 600;
  font-size: 16px;
  width: fit-content;
  margin-top: 12px;
}

.biggest_hits .hits a svg {
  margin-right: 12px;
}

:root {
  --gutter: 16px;
  --container: 1438px;
}

@media (max-width: 1438px) {
  :root {
    --container: 1230px;
  }
}
@media (max-width: 1230px) {
  :root {
    --container: 991px;
  }
}
@media (max-width: 991px) {
  :root {
    --container: 768px;
  }
}
img {
  max-width: 100%;
}

body {
  font-family: "TikTok Sans", sans-serif !important;
  background: #f4efed;
  margin: 0 auto;
  color: #0A0A0A;
}

.site-main {
  padding: 0 !important;
}

@keyframes show_msg_first {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes show_msg {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
* {
  box-sizing: border-box;
}

.container {
  max-width: 1438px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 1438px) {
  .container {
    max-width: 1230px;
  }
}
@media screen and (max-width: 1230px) {
  .container {
    max-width: 991px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 768px;
  }
}
.text_page {
  margin-top: 60px !important;
}

.text_page h1 {
  font-size: 48px;
  margin-bottom: 30px;
}

.text_page p {
  margin-bottom: 10px;
}

.flatpickr-calendar {
  border: 1px solid #1A91FF !important;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  display: none !important;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month select, .flatpickr-calendar .flatpickr-months .flatpickr-current-month input {
  font-weight: 600;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekdaycontainer span {
  color: #A3A3A3;
  font-size: 16px;
  font-weight: 400;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer .flatpickr-day {
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  color: #0A0A0A;
  transition: all 0.2s;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer .flatpickr-day:hover {
  background: #addbff;
  color: white;
  transition: all 0.2s;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer .flatpickr-day.today {
  background: #1A91FF;
  color: white;
  border: 0;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer .flatpickr-day.nextMonthDay {
  color: #A3A3A3;
}

.contact_us {
  margin-top: 48px;
}

.contact_us .contact_information .contacts h1 {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 64px;
  line-height: 130%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact_us .contact_information .contacts h1 {
    font-size: 42px;
  }
}
.contact_us .contact_information .contacts ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
}

.contact_us .contact_information .contacts ul li {
  list-style: none;
  width: calc(25% - 10px);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: white;
}

@media screen and (max-width: 1230px) {
  .contact_us .contact_information .contacts ul li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact_us .contact_information .contacts ul li {
    width: 100%;
    margin: 0 0 20px;
    height: 103px;
  }
}
@media screen and (max-width: 768px) {
  .contact_us .contact_information .contacts ul li:last-of-type {
    margin-bottom: 0;
  }
}
.contact_us .contact_information .contacts ul li svg {
  margin-right: 12px;
}

.contact_us .contact_information .contacts ul li p {
  width: calc(100% - 80px);
  margin-bottom: 0;
  margin-top: 0;
}

.contact_us .contact_information .contacts ul li p b {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #737373;
  display: block;
}

.contact_us .contact_information .contacts ul li p span {
  font-weight: 400;
  font-size: 23px;
  line-height: 130%;
  display: block;
}

.contact_us .contact_information .contacts ul li p a {
  font-weight: 400;
  font-size: 23px;
  line-height: 130%;
  text-decoration: underline;
  color: #0077E6;
}

.contact_us .note {
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  color: #B91C1C;
  max-width: 800px;
  margin: 24px auto;
}

@media screen and (max-width: 768px) {
  .contact_us .note {
    font-size: 24px;
  }
}
.contact_us .maps {
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .contact_us .maps {
    order: 3;
    margin-bottom: 30px;
  }
}
.page-template-contact-us footer .top_footer {
  display: none;
}

.page-template-contact-us footer .footer_content .head_footer {
  margin-bottom: 0;
}

.page-template-contact-us footer .footer_content .footer_map {
  display: none;
}

footer {
  margin-top: 45px;
  padding: 0 !important;
  background-color: #B91C1C;
}

@media screen and (max-width: 991px) {
  footer {
    padding: 0 0px !important;
  }
}
footer .top_footer {
  padding: 48px 0 96px;
  background-color: #ede5e3;
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  footer .top_footer {
    padding: 48px 0;
  }
}
footer .top_footer .top_footer_wrap {
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  footer .top_footer .top_footer_wrap {
    flex-wrap: wrap;
    padding: 15px;
  }
}
footer .top_footer .top_footer_wrap .footer_top_block {
  max-width: calc(50% - 12px);
  width: 100%;
  padding: 24px;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  footer .top_footer .top_footer_wrap .footer_top_block {
    max-width: 100%;
    padding: 24px 12px;
  }
}
footer .top_footer .top_footer_wrap .footer_top_block .icon {
  text-align: center;
  margin-bottom: 24px;
}

footer .top_footer .top_footer_wrap .footer_top_block h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  footer .top_footer .top_footer_wrap .footer_top_block h2 {
    font-size: 22px;
  }
}
footer .top_footer .top_footer_wrap .footer_top_block p {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #0A0A0A;
  max-width: 480px;
  margin: 0 auto;
}

footer .top_footer .top_footer_wrap .footer_top_block a {
  padding: 12px 20px;
  background: #FFFFFF;
  display: flex;
  border-radius: 8px;
  color: #2AC78D;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  align-items: center;
  width: fit-content;
  margin: 20px auto 0;
  border: 1px solid #2AC78D;
  transition: all 0.4s;
}

footer .top_footer .top_footer_wrap .footer_top_block a:hover {
  background: #2AC78D;
  transition: all 0.4s;
  border-color: white;
  color: white;
}

footer .top_footer .top_footer_wrap .footer_top_block a:hover svg path {
  fill: white;
  transition: all 0.4s;
}

footer .top_footer .top_footer_wrap .footer_top_block a:active {
  color: #2AC78D;
  background: white;
  transition: all 0.4s;
}

footer .top_footer .top_footer_wrap .footer_top_block a:active svg path {
  fill: #2AC78D;
  transition: all 0.4s;
}

footer .top_footer .top_footer_wrap .footer_top_block a svg {
  margin-right: 12px;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email {
  background-color: #F4EFED;
}

@media screen and (max-width: 768px) {
  footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email {
    margin-bottom: 20px;
  }
}
footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email h2 {
  color: #0A0A0A;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields {
    flex-wrap: wrap;
  }
}
footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields input[type=email] {
  border: 1px solid #A3A3A3;
  margin: 0;
  padding: 0 12px;
  background: #FFFFFF;
  height: 48px;
  width: calc(100% - 178px);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #0A0A0A;
}

@media screen and (max-width: 768px) {
  footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields input[type=email] {
    width: 100%;
    margin-bottom: 12px;
  }
}
footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields input[type=email]:focus {
  outline: none;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields button {
  border: 0;
  background-color: #DC2626;
  color: white;
  position: relative;
  padding: 12px;
  border-radius: 8px;
  width: 166px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields button {
    width: 100%;
  }
}
footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields button:hover {
  background: #EF4444;
  transition: all 0.4s;
  border-color: #EF4444;
  color: white;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields button:active {
  color: #DC2626;
  background: white;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields button:active svg path {
  fill: #DC2626;
  transition: all 0.4s;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_email form .mc4wp-form-fields button svg {
  margin-right: 12px;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_whatsapp {
  background-color: #2AC78D;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_whatsapp p {
  color: white;
}

footer .top_footer .top_footer_wrap .footer_top_block.top_footer_whatsapp h2 {
  color: white;
}

@media screen and (max-width: 768px) {
  footer .footer_menu ul li {
    width: 100%;
  }
}
footer .footer_menu ul li.current-menu-item a {
  color: #E20611;
}

footer .footer_menu ul li a {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.4s;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
}

footer .footer_menu ul li a:hover {
  color: #E20611;
  transition: all 0.4s;
  text-decoration: none;
}

footer .footer_content {
  margin-top: 24px;
}

footer .footer_content .head_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  footer .footer_content .head_footer {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer_content .head_footer .right_side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 768px) {
  footer .footer_content .head_footer .right_side {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer_content .head_footer .right_side .footer_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  footer .footer_content .head_footer .right_side .footer_menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer_content .head_footer .right_side .footer_menu li {
  list-style: none;
  margin: 0 6px;
}

@media screen and (max-width: 768px) {
  footer .footer_content .head_footer .right_side .footer_menu li {
    flex-wrap: wrap;
    margin: 0 0 6px;
    width: 100%;
    text-align: center;
  }
}
footer .footer_content .head_footer .right_side .footer_menu li.current-menu-item a {
  border-bottom: 2px solid white;
}

footer .footer_content .head_footer .right_side .footer_menu li.pll-parent-menu-item {
  display: none;
}

footer .footer_content .head_footer .right_side .footer_menu li.item_button {
  margin-right: 12px;
}

footer .footer_content .head_footer .right_side .footer_menu li.item_button.current-menu-item a {
  border-bottom: 0;
}

footer .footer_content .head_footer .right_side .footer_menu li.item_button a {
  border-radius: 8px;
  background: white;
  color: #b91c1c;
  padding: 12px;
  border: 1px solid white !important;
}

footer .footer_content .head_footer .right_side .footer_menu li.item_button a:hover {
  background: #b91c1c;
  transition: all 0.4s;
  border-color: #EF4444;
  color: white;
}

footer .footer_content .head_footer .right_side .footer_menu li.item_button a:active {
  color: #b91c1c;
  background: white;
}

footer .footer_content .head_footer .right_side .footer_menu li a {
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 13px;
  display: block;
}

@media screen and (max-width: 768px) {
  footer .footer_content .head_footer .right_side .footer_menu li a {
    width: fit-content;
    text-align: center;
    margin: 0 auto;
  }
}
footer .footer_content .head_footer .right_side .program {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px 8px 12px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
}

footer .footer_content .head_footer .right_side .program svg {
  margin-right: 12px;
}

footer .footer_content .head_footer .right_side .program p {
  margin: 0;
}

footer .footer_content .head_footer .right_side .program p span {
  display: block;
  font-weight: 600;
  font-size: 11px;
  line-height: 125%;
  color: white;
}

footer .footer_content .head_footer .right_side .program p span:first-of-type {
  margin-bottom: 4px;
}

footer .footer_content .footer_map iframe {
  border-radius: 12px;
}

footer .powered-by_wrap {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1230px) {
  footer .powered-by_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .powered-by_wrap .powered-by {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 1230px) {
  footer .powered-by_wrap .powered-by {
    order: 2;
    margin-top: 12px;
  }
}
footer .powered-by_wrap .legal_menu .footer_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  footer .powered-by_wrap .legal_menu .footer_menu {
    flex-wrap: wrap;
  }
}
footer .powered-by_wrap .legal_menu .footer_menu li {
  list-style: none;
  margin: 0 12px;
}

@media screen and (max-width: 768px) {
  footer .powered-by_wrap .legal_menu .footer_menu li {
    width: 100%;
    margin: 0 0 12px;
    text-align: center;
  }
}
footer .powered-by_wrap .legal_menu .footer_menu li:last-of-type {
  margin-right: 0;
}

footer .powered-by_wrap .legal_menu .footer_menu li a {
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
  text-decoration: none;
}

header.site-header .header_content {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 16px 0;
  align-items: center;
}

header.site-header .header_content .site-logo img {
  max-width: 150px;
}

header.site-header .header_content nav.primary-navigation {
  display: flex;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation {
    position: fixed;
    left: -100%;
    top: 0;
    max-width: 100%;
    bottom: 0;
    width: 100%;
    padding: 12px 16px;
    background: #b91c1c;
    z-index: 99;
    transition: all 0.4s;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation.active {
    left: 0;
    transition: all 0.4s;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  padding-left: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper {
    flex-wrap: wrap;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li {
  margin: 0 6px;
  list-style: none;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li {
    margin: 0 3px;
  }
}
@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li {
    width: 100%;
    margin: 0 6px 20px;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.current_page_item a {
  text-decoration: none;
  position: relative;
  color: #DC2626;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.current_page_item a {
    color: white;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.current_page_item a:before {
  transform: scale(1);
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item {
  padding-right: 18px;
  position: relative;
  border-radius: 12px 12px 0 0;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:focus-visible {
  outline: none;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover {
  border-top: 1px solid #737373;
  border-right: 1px solid #737373;
  border-left: 1px solid #737373;
  transition: all 0.4s;
  border-bottom: 0;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover {
    border: 0;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover:after {
  transform: rotate(-90deg);
  transition: all 0.4s;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover a {
  color: #0A0A0A;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover a {
    color: white;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover a:before {
  display: none;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover ul.sub-menu {
  border-bottom: 1px solid #737373;
  border-right: 1px solid #737373;
  border-left: 1px solid #737373;
  transition: all 0.4s;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:hover ul.sub-menu {
    top: 100%;
    border: 0;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:after {
  content: "";
  position: absolute;
  right: 4px;
  width: 24px;
  height: 24px;
  display: block;
  background: url("/wp-content/themes/twentytwentyone-child/assets/img/CaretRight.png");
  top: 13px;
  transition: all 0.4s;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:after {
    top: 9px;
  }
}
@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item:after {
    position: relative;
    background: url("/wp-content/themes/twentytwentyone-child/assets/img/CaretRightWhite.png");
    top: 3px;
    background-size: contain;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item button {
  display: none;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu {
  padding-left: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 9;
  border: 1px solid transparent;
  transition: all 0.4s;
  border-radius: 0 0 12px 12px;
  width: 63px;
  left: -1px;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu {
    width: 100%;
    background: transparent;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu li {
  margin: 0 0 4px;
  border-top: 1px solid #737373;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu li {
    max-width: 80px;
    margin: 0 auto;
    background: white;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu li:last-of-type {
  border-radius: 0 0 12px 12px;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu li:hover a {
  opacity: 1;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu li a {
  padding: 5px 12px;
  opacity: 0.5;
  color: #0A0A0A;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.pll-parent-menu-item ul.sub-menu li a:before {
  display: none;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button {
    width: fit-content;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a {
  padding: 14px 20px 14px 48px;
  margin: 0 5px;
  background: #DC2626;
  color: white;
  border-radius: 8px;
  transition: all 0.4s;
  position: relative;
  border: 1px solid #DC2626;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a {
    font-size: 14px;
    padding: 14px 10px 14px 28px;
  }
}
@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a {
    font-size: 18px;
    padding: 14px 20px 14px 48px;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a:hover {
  background: #EF4444;
  transition: all 0.4s;
  border-color: #EF4444;
  color: white;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a:active {
  color: #DC2626;
  background: white;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a:before {
  display: none;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a:after {
  content: "";
  position: absolute;
  left: 20px;
  width: 24px;
  height: 24px;
  background: url("/wp-content/themes/twentytwentyone-child/assets/img/cart.svg");
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a:after {
    left: 4px;
  }
}
@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li.item_button a:after {
    left: 20px;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li a {
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0A0A0A;
  position: relative;
  transition: all 0.4s;
  text-decoration: none;
  display: block;
}

@media screen and (max-width: 991px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li a {
    font-size: 14px;
    padding: 10px 6px;
  }
}
@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li a {
    text-align: center;
    color: white;
    font-size: 23px;
    font-weight: 400;
    padding: 8px 12px;
  }
}
header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li a:hover {
  color: #DC2626;
  transition: all 0.4s;
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li a:hover:before {
  transform: scale(1);
}

header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #DC2626;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .primary-menu-container ul.menu-wrapper li a:before {
    background: white;
  }
}
header.site-header .header_content nav.primary-navigation .mobile_head {
  justify-content: space-between;
  align-items: center;
  display: none;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .mobile_head {
    display: flex;
    margin-bottom: 30px;
  }
}
header.site-header .header_content nav.primary-navigation .mobile_head .close {
  display: none;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .mobile_head .close {
    display: block;
  }
}
header.site-header .header_content nav.primary-navigation .powered-by_wrap {
  display: none;
  position: absolute;
  bottom: 8px;
  left: 16px;
  right: 16px;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content nav.primary-navigation .powered-by_wrap {
    display: block;
  }
}
header.site-header .header_content nav.primary-navigation .powered-by_wrap .legal_menu ul.footer_menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
}

header.site-header .header_content nav.primary-navigation .powered-by_wrap .legal_menu ul.footer_menu li {
  list-style: none;
  margin: 0 6px 12px;
}

header.site-header .header_content nav.primary-navigation .powered-by_wrap .legal_menu ul.footer_menu li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}

header.site-header .header_content nav.primary-navigation .powered-by_wrap .powered-by {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  text-align: center;
}

header.site-header .header_content .program {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px 8px 12px;
  border: 1px solid #DC2626;
  border-radius: 8px;
  background: white;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content .program {
    width: fit-content;
    margin: 0 auto;
  }
}
header.site-header .header_content .program svg {
  margin-right: 12px;
}

header.site-header .header_content .program p {
  margin: 0;
}

header.site-header .header_content .program p span {
  display: block;
  font-weight: 600;
  font-size: 11px;
  line-height: 125%;
  color: #0A0A0A;
}

header.site-header .header_content .program p span:first-of-type {
  margin-bottom: 4px;
}

header.site-header .header_content .burger {
  width: 36px;
  height: 36px;
  position: relative;
  display: none;
}

@media screen and (max-width: 768px) {
  header.site-header .header_content .burger {
    display: block;
  }
}
.main_section_content {
  margin-bottom: 24px;
  margin-top: 24px;
}

.main_section_content h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 4px;
  color: #0A0A0A;
  margin-top: 0;
  font-family: "TikTok Sans", sans-serif;
}

@media screen and (max-width: 991px) {
  .main_section_content h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .main_section_content h1 {
    font-size: 36px;
  }
}
.main_section_content p {
  font-weight: 400;
  font-size: 23px;
  line-height: 130%;
  text-align: center;
  color: #0A0A0A;
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .main_section_content p {
    font-size: 18px;
  }
}
.main_section {
  padding-left: max(15px, (100vw - var(--container)) / 2);
}

.main_section .content_slider .slick-slide {
  margin-right: 24px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .main_section .content_slider .slick-slide {
    margin-right: 12px;
  }
}
.main_section .content_slider .img_wrap {
  position: relative;
  overflow: hidden;
  height: 400px;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  border-radius: 12px;
  display: block;
}

@media screen and (max-width: 991px) {
  .main_section .content_slider .img_wrap {
    height: 223px;
  }
}
@media screen and (max-width: 600px) {
  .main_section .content_slider .img_wrap {
    height: 176px;
  }
}
.main_section .content_slider .img_wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.slick-dots {
  justify-content: center;
  align-items: center;
  display: flex;
  bottom: -37px;
}

.slick-dots li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #EF4444;
  opacity: 0.34;
  transition: all 0.4s;
}

.slick-dots li.slick-active {
  width: 24px;
  height: 24px;
  opacity: 1;
  transition: all 0.4s;
}

.slick-dots li button {
  display: none;
}

.home_about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 96px;
}

@media screen and (max-width: 768px) {
  .home_about {
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.home_about .left_img {
  width: calc(50% - 12px);
  position: relative;
  overflow: hidden;
  height: 390px;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .home_about .left_img {
    width: 100%;
    margin-bottom: 24px;
  }
}
.home_about .left_img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.home_about .right_side {
  width: calc(50% - 12px);
}

@media screen and (max-width: 768px) {
  .home_about .right_side {
    width: 100%;
  }
}
.home_about .right_side h2 {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 130%;
  margin-top: 0;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .home_about .right_side h2 {
    font-size: 36px;
  }
}
.home_about .right_side p {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 24px;
  max-width: 600px;
}

.home_about .right_side ul {
  padding-left: 0;
  margin-bottom: 24px;
}

.home_about .right_side ul li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  font-family: "TikTok Sans", sans-serif;
  margin-bottom: 12px;
  list-style: none;
}

.home_about .right_side ul li:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("/wp-content/themes/twentytwentyone-child/assets/img/CheckFat.png");
}

.home_about .right_side a {
  background: #DC2626;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  font-family: "TikTok Sans", sans-serif;
  color: white;
  text-decoration: none;
  width: fit-content;
  border: 1px solid #DC2626;
}

.home_about .right_side a:hover {
  background: #EF4444;
  transition: all 0.4s;
  border-color: #EF4444;
  color: white;
}

.home_about .right_side a:active {
  color: #DC2626;
  background: white;
}

.home_about .right_side a:active svg path {
  fill: #DC2626;
}

.home_about .right_side a svg {
  margin-right: 12px;
}

.why_love_us_wrap {
  background: #EDE5E3;
  padding: 48px 0 96px;
}

@media screen and (max-width: 768px) {
  .why_love_us_wrap {
    padding: 48px 0;
  }
}
.why_love_us_wrap h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 130%;
  text-align: center;
  font-family: "TikTok Sans", sans-serif;
  margin-bottom: 24px;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .why_love_us_wrap h2 {
    font-size: 36px;
  }
}
.why_love_us_wrap .why_love_us .reasons {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .why_love_us_wrap .why_love_us .reasons {
    flex-wrap: wrap;
  }
}
.why_love_us_wrap .why_love_us .reasons .reason {
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  border-radius: 12px;
  background: #FFFFFF;
  width: calc(25% - 18px);
  transition: all 0.4s;
}

@media screen and (max-width: 991px) {
  .why_love_us_wrap .why_love_us .reasons .reason {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 600px) {
  .why_love_us_wrap .why_love_us .reasons .reason {
    width: 100%;
    margin-bottom: 12px;
  }
}
.why_love_us_wrap .why_love_us .reasons .reason .img_wrap {
  height: 202px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.why_love_us_wrap .why_love_us .reasons .reason .img_wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.why_love_us_wrap .why_love_us .reasons .reason .content {
  padding: 12px;
  background: #FFFFFF;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why_love_us_wrap .why_love_us .reasons .reason .content h5 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 23px;
  line-height: 130%;
  min-height: 60px;
}

@media screen and (max-width: 1230px) {
  .why_love_us_wrap .why_love_us .reasons .reason .content h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .why_love_us_wrap .why_love_us .reasons .reason .content h5 {
    font-size: 20px;
    min-height: 50px;
  }
}
.why_love_us_wrap .why_love_us .reasons .reason .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-top: 0;
  margin-bottom: 0;
}

.promotions {
  padding-left: max(15px, (100vw - var(--container)) / 2);
  display: flex;
  justify-content: space-between;
  margin: 96px 0;
}

@media screen and (max-width: 768px) {
  .promotions {
    flex-wrap: wrap;
    margin: 60px 0;
  }
}
.promotions .left_content {
  width: calc(50% - 12px);
  align-self: center;
}

@media screen and (max-width: 768px) {
  .promotions .left_content {
    width: 100%;
    margin-bottom: 24px;
  }
}
.promotions .left_content h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 130%;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .promotions .left_content h2 {
    font-size: 36px;
  }
}
.promotions .left_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 24px;
  max-width: 600px;
}

.promotions .left_content a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DC2626;
  border-radius: 4px;
  padding: 12px 20px;
  text-decoration: none;
  width: fit-content;
  color: white;
  border: 1px solid #DC2626;
}

.promotions .left_content a:hover {
  background: #EF4444;
  transition: all 0.4s;
  border-color: #EF4444;
  color: white;
}

.promotions .left_content a:active {
  color: #DC2626;
  background: white;
}

.promotions .left_content a:active svg path {
  fill: #DC2626;
}

.promotions .left_content a svg {
  margin-right: 12px;
}

.promotions .flyer_side {
  width: calc(50% - 12px);
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .promotions .flyer_side {
    width: 100%;
  }
}
.promotions .flyer_side .slick-slide {
  margin-right: 12px;
}

.promotions .flyer_side a {
  overflow: hidden;
  display: block;
  height: 300px;
  position: relative;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  margin-bottom: 12px;
  border-radius: 12px;
}

.promotions .flyer_side a img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.text_image_section {
  display: flex;
  justify-content: center;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  border-radius: 12px;
}

@media screen and (max-width: 991px) {
  .text_image_section {
    flex-wrap: wrap;
  }
}
.text_image_section .left_side {
  background: #B91C1C;
  padding: 85px 48px;
  border-radius: 12px 0 0 12px;
  width: 50%;
}

@media screen and (max-width: 991px) {
  .text_image_section .left_side {
    width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 48px;
  }
}
@media screen and (max-width: 768px) {
  .text_image_section .left_side {
    padding: 24px;
  }
}
.text_image_section .left_side h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 130%;
  margin-bottom: 4px;
  margin-top: 0;
  color: white;
}

@media screen and (max-width: 768px) {
  .text_image_section .left_side h2 {
    font-size: 36px;
  }
}
.text_image_section .left_side .description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: white;
  margin: 0;
}

.text_image_section .left_side .description p strong {
  margin-top: 12px;
  display: block;
}

.text_image_section .left_side a {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #B91C1C;
  text-decoration: none;
  width: fit-content;
  margin-top: 24px;
  border: 1px solid #FFFFFF;
  transition: all 0.4s;
}

.text_image_section .left_side a:hover {
  background: #B91C1C;
  transition: all 0.4s;
  color: #FFFFFF;
}

.text_image_section .left_side a:hover svg path {
  fill: white;
  transition: all 0.4s;
}

.text_image_section .left_side a svg {
  margin-right: 12px;
}

.text_image_section .left_side a svg path {
  transition: all 0.4s;
}

.text_image_section .right_side {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 0 12px 12px 0;
}

@media screen and (max-width: 991px) {
  .text_image_section .right_side {
    width: 100%;
    height: 300px;
    border-radius: 0 0 12px 12px;
  }
}
.text_image_section .right_side img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.testimonials {
  padding-left: max(15px, (100vw - var(--container)) / 2);
  margin: 96px 0;
}

@media screen and (max-width: 768px) {
  .testimonials {
    margin: 48px 0;
  }
}
.testimonials .content {
  max-width: 750px;
  margin: 0 auto;
}

.testimonials .content h2 {
  margin-top: 0;
  font-weight: 600;
  font-size: 45px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .testimonials .content h2 {
    font-size: 36px;
  }
}
.testimonials .content p {
  max-width: 600px;
  margin: 0 auto 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
}

.testimonials .content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .testimonials .content ul {
    flex-wrap: wrap;
  }
}
.testimonials .content ul li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  margin: 0 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #B91C1C;
}

@media screen and (max-width: 768px) {
  .testimonials .content ul li {
    margin-bottom: 5px;
  }
}
.testimonials .content ul li:first-of-type {
  margin-left: 0;
}

.testimonials .content ul li:last-of-type {
  margin-right: 0;
}

.testimonials .content ul li:before {
  content: "";
  background-image: url("/wp-content/themes/twentytwentyone-child/assets/img/check.png");
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 2px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonials .ti-widget.ti-goog .ti-controls-line {
  display: none !important;
}

.online_order {
  margin-top: 48px;
}

.online_order h2 {
  margin-top: 0;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 45px;
  line-height: 130%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .online_order h2 {
    font-size: 32px;
  }
}
.online_order h5 {
  padding: 4px 8px;
  font-weight: 600;
  font-size: 23px;
  line-height: 130%;
  text-align: center;
  color: #DC2626;
  border-radius: 4px;
  background: #FEE2E2;
  width: fit-content;
  margin: 0 auto 24px;
}

@media screen and (max-width: 768px) {
  .online_order h5 {
    font-size: 20px;
  }
}
.online_order .step.fields_wrap {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  background: #FFFFFF;
  padding: 24px 12px;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .online_order .step.fields_wrap {
    flex-wrap: wrap;
  }
}
.online_order .step.fields_wrap .left_side {
  width: calc(50% - 24px);
}

@media screen and (max-width: 768px) {
  .online_order .step.fields_wrap .left_side {
    width: 100%;
  }
}
.online_order .step.fields_wrap .right_side {
  width: calc(50% - 24px);
}

@media screen and (max-width: 768px) {
  .online_order .step.fields_wrap .right_side {
    width: 100%;
  }
}
.online_order .step.fields_wrap .right_side textarea {
  padding: 12px;
  width: 100%;
  border: 1px solid #A3A3A3;
  border-radius: 8px;
  height: calc(192px + 3rem);
}

.online_order .step b {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 12px;
}

.online_order .step b svg {
  margin-right: 8px;
}

.online_order .step .form_row label {
  position: relative;
  width: 100%;
  display: block;
}

.online_order .step .form_row label input {
  height: 48px;
  padding: 12px;
  width: 100%;
  border: 1px solid #A3A3A3;
  border-radius: 8px;
}

.online_order .step .form_row label input.error {
  border: 1px solid #EF4444;
}

.online_order .step .form_row label .clear {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 24px;
  height: 24px;
  display: none;
  cursor: pointer;
}

.online_order .step .form_row label .calendar_icon {
  position: absolute;
  right: 12px;
  top: 12px;
}

.online_order .step .cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.online_order .step .cards .card {
  position: relative;
  margin-bottom: 12px;
  width: calc(50% - 12px);
}

@media screen and (max-width: 768px) {
  .online_order .step .cards .card {
    width: 100%;
  }
}
.online_order .step .cards .card .label-coperta {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}

.online_order .step .cards .card input[type=radio] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.online_order .step .cards .card input[type=radio]:checked + .card_content {
  background: #FEE2E2;
}

.online_order .step .cards .card input[type=radio]:checked + .card_content .content .bottom_content label {
  background: white;
}

.online_order .step .cards .card .card_content {
  display: flex;
  justify-content: flex-start;
  padding: 12px;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  border-radius: 12px;
  flex-wrap: wrap;
  background: white;
}

.online_order .step .cards .card .card_content .img_wrap {
  width: 96px;
  height: 96px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .online_order .step .cards .card .card_content .img_wrap {
    width: 100%;
    height: 200px;
    margin-bottom: 12px;
  }
}
.online_order .step .cards .card .card_content .img_wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.online_order .step .cards .card .card_content .content {
  width: calc(100% - 108px);
  margin-left: 12px;
}

@media screen and (max-width: 768px) {
  .online_order .step .cards .card .card_content .content {
    width: 100%;
    margin-left: 0;
  }
}
.online_order .step .cards .card .card_content .content h3 {
  margin-top: 0;
  font-weight: 600;
  font-size: 23px;
  line-height: 130%;
  margin-bottom: 4px;
}

.online_order .step .cards .card .card_content .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 4px;
}

.online_order .step .cards .card .card_content .content .bottom_content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.online_order .step .cards .card .card_content .content .bottom_content .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-right: 12px;
}

.online_order .step .cards .card .card_content .content .bottom_content label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #E5E5E5;
  padding: 4px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  /* Firefox */
}

.online_order .step .cards .card .card_content .content .bottom_content label input {
  width: 40px;
  background: transparent;
  border: 0;
  text-align: center;
  font-weight: 400;
  font-size: 23px;
  line-height: 125%;
}

.online_order .step .cards .card .card_content .content .bottom_content label input.error {
  border: 1px solid #EF4444;
}

.online_order .step .cards .card .card_content .content .bottom_content label input:focus {
  outline: none;
}

.online_order .step .cards .card .card_content .content .bottom_content label input::-webkit-outer-spin-button,
.online_order .step .cards .card .card_content .content .bottom_content label input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.online_order .step .cards .card .card_content .content .bottom_content label input[type=number] {
  -moz-appearance: textfield;
}

.online_order .step .cards .card .card_content .content .bottom_content label .minus, .online_order .step .cards .card .card_content .content .bottom_content label .plus {
  width: 36px;
  height: 36px;
}

.online_order .step .cards .card .card_content textarea {
  border: 1px solid #A3A3A3;
  width: 100%;
  height: 125px;
  border-radius: 8px;
  padding: 12px;
  position: relative;
  z-index: 2;
  margin-top: 12px;
}

.online_order .step .accept_terms {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-top: 24px;
  margin-bottom: 24px;
}

.online_order .step .accept_terms input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.online_order .step .accept_terms input:checked + span {
  transition: all 0.4s;
  border: 1px solid #2ac78d;
}

.online_order .step .accept_terms input:checked + span:before {
  opacity: 1;
  visibility: visible;
}

.online_order .step .accept_terms input.error + span {
  border: 1px solid #DC2626;
}

.online_order .step .accept_terms span {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  border: 1px solid #0A0A0A;
  border-radius: 4px;
  transition: all 0.4s;
  margin-right: 8px;
}

.online_order .step .accept_terms span:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #2ac78d;
  position: absolute;
  left: 1px;
  transition: all 0.4s;
  top: 1px;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
}

.online_order .step .accept_terms b {
  width: calc(100% - 24px);
  margin-bottom: 0;
  font-weight: 400;
}

.online_order button {
  background: #DC2626;
  border-radius: 8px;
  padding: 12px 20px 12px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #DC2626;
  transition: all 0.4s;
}

.online_order button:hover {
  background: #EF4444;
  transition: all 0.4s;
  border-color: #EF4444;
  color: white;
}

.online_order button:active {
  color: #DC2626;
  background: white;
}

.online_order button:active svg path {
  fill: #DC2626;
  transition: all 0.4s;
}

.online_order button svg {
  margin-right: 12px;
}

.online_order button svg path {
  transition: all 0.4s;
}

.online_order button.is-invalid {
  opacity: 0.4;
  cursor: initial;
}

.modal_overlay {
  display: none;
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1019607843);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(6px);
}

.modal_overlay.modal_respons_erorr.is-error {
  display: block;
}

.modal_overlay.modal_response_success.success {
  display: block;
}

.modal_overlay .modal {
  max-width: 520px;
  position: absolute;
  z-index: 10;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  background: #F5F5F5;
  padding: 16px;
  border-radius: 12px;
}

.modal_overlay .modal h4 {
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 23px;
  line-height: 130%;
}

.modal_overlay .modal p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  margin-bottom: 32px;
}

.modal_overlay .modal .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_overlay .modal .buttons .close_1 {
  padding: 14px 32px;
  border: 1px solid #A3A3A3;
  border-radius: 8px;
  background: transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #0A0A0A;
  margin: 0 5px;
  cursor: pointer;
}

.modal_overlay .modal .buttons .close_2 {
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background: #DC2626;
  margin: 0 5px;
  line-height: 1;
  cursor: pointer;
}

.modal_overlay .modal .buttons .close_2 svg {
  margin-right: 12px;
}

.promotions_page {
  margin-top: 48px;
}

.promotions_page h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 130%;
  text-align: center;
  margin-top: 0;
  margin-bottom: 24px;
}

.promotions_page .flyere-wrap .flyere-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotions_page .flyere-wrap .flyere-tabs a {
  padding: 9px;
  width: 165px;
  height: 32px;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  text-align: center;
  margin: 0 6px;
  background: #FFFFFF;
  border-radius: 4px;
  text-decoration: none;
  color: #0A0A0A;
}

.promotions_page .flyere-wrap .flyere-tabs a[aria-current=page] {
  color: white;
  background: #B91C1C;
}

.promotions_page .flyere-wrap .flyere-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .promotions_page .flyere-wrap .flyere-grid {
    justify-content: space-between;
  }
}
.promotions_page .flyere-wrap .flyere-grid .flyer-card {
  width: calc(20% - 19px);
  margin-bottom: 23px;
  margin-right: 23px;
  box-shadow: 0px 4px 5.46px 0px rgba(0, 0, 0, 0.3215686275);
  background: #FFFFFF;
  padding: 12px;
  border-radius: 12px;
  position: relative;
}

@media screen and (max-width: 1230px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card {
    width: calc(25% - 19px);
  }
}
@media screen and (max-width: 991px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card {
    width: calc(33.3333333333% - 19px);
  }
}
@media screen and (max-width: 768px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card {
    width: calc(50% - 12px);
    margin-right: 0;
  }
}
@media screen and (max-width: 540px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card {
    width: 100%;
  }
}
.promotions_page .flyere-wrap .flyere-grid .flyer-card:nth-of-type(5n) {
  margin-right: 0;
}

@media screen and (max-width: 1230px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card:nth-of-type(5n) {
    margin-right: 23px;
  }
}
@media screen and (max-width: 768px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card:nth-of-type(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1230px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card:nth-of-type(4n) {
    margin-right: 23px;
  }
}
@media screen and (max-width: 768px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .promotions_page .flyere-wrap .flyere-grid .flyer-card:nth-of-type(3n) {
    margin-right: 0;
  }
}
.promotions_page .flyere-wrap .flyere-grid .flyer-card .flyer-dates {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
}

.promotions_page .flyere-wrap .flyere-grid .flyer-card .badge {
  position: absolute;
  width: 82px;
  height: 40px;
  top: 0;
  left: 0;
  border-radius: 12px 0 12px 0;
  background: #34D399;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #FFFFFF;
  justify-content: center;
  align-items: center;
  display: none;
}

.promotions_page .flyere-wrap .flyere-grid .flyer-card.is-active .badge {
  display: flex;
}

.promotions_page .flyere-wrap .flyere-grid .flyer-card.is-active .flyer-dates {
  color: #34D399;
}



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