:root {
  /* Color Pallete */
  --primary-color: #f17bb0;
  --glovo-color: #ffc244;
  /* --secondary-color: #216793; */
  --secondary-color: #555;
  --dark-green: #00a082;
  --grey-text: #535353;

  /* Hover colors */
  --hover-primary-color: #dd0e7a;

  /* Font size */
  --h1-font-size: 30px;
  --h2-font-size: 25px;
  --btn-font-size: 16px;
  --p-font-size: 15px;
  --card-font-size: 20px;
  --quote-font-size: 30px;
  --timeline-text-size: 20px;

  /* layout sizes */
  --top-header-size: 40px;
  --header-size: 100px;
  --container-width: 100%;
  --my-6-spacing: 50px;
  --banner-padding: 40px 0;

  /* Rounded image */
  --rounded-padding: 10px;
  --rounded-br: 15px;
  --rounded-br-inner: 10px;

  /* >>>>>>>>>>>>>>>>>>>>>>> BREAKPOINTS <<<<<<<<<<<<<<<<<<<<<< */

  @media (min-width: 576px) {
    /* Layout sizes */
    --container-width: 90vw;

    /* Font size */
    --h1-font-size: 40px;
    --p-font-size: 16px;
    --h2-font-size: 35px;
    --quote-font-size: 45px;
    --timeline-text-size: 25px;

    --my-6-spacing: 80px;

    /* Rounded image */
    --rounded-padding: 15px;
    --rounded-br: 35px;
    --rounded-br-inner: 20px;
    --banner-padding: 40px 5vw;
  }
  @media (min-width: 991px) {
    /* Font size */
    --h1-font-size: 70px;
    --h2-font-size: 50px;
    --p-font-size: 18px;
    --btn-font-size: 18px;
    --timeline-text-size: 30px;

    --my-6-spacing: 100px;
  }
  @media (min-width: 1250px) {
    /* Font size */
    --btn-font-size: 20px;
    --card-font-size: 25px;
  }
  @media (min-width: calc(1920px + 10vw + 30px)) {
    --banner-padding: 40px calc(50% - 1920px / 2);
  }
}

/* Fonts */
@font-face {
  font-family: Maian;
  src: url("../fonts/MAIAN.TTF");
  font-weight: 400;
}
@font-face {
  font-family: WorkSans;
  src: url("../fonts/WorkSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: WorkSans;
  src: url("../fonts/WorkSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: WorkSans;
  src: url("../fonts/WorkSans-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: WorkSans it;
  src: url("../fonts/WorkSans-Italic.ttf");
  font-weight: 400;
}
@font-face {
  font-family: WorkSans it;
  src: url("../fonts/WorkSans-MediumItalic.ttf");
  font-weight: 500;
}
@font-face {
  font-family: Rage it;
  src: url("../fonts/Rage-Italic.ttf");
  font-weight: 500;
}
/* Fonts */

/* Typography */
a {
  transition: all 0.2s linear;
  color: var(--primary-color);
}
a:hover {
  text-decoration: none;
  color: var(--hover-primary-color);
}
h1 {
  font-size: var(--h1-font-size);
}
h2 {
  font-size: var(--h2-font-size);
  color: var(--primary-color);
}
p {
  font-family: "WorkSans";
  font-weight: 400;
  font-size: var(--p-font-size);
}
/* Typography */

/* General */
body {
  font-family: "Maian";
}
.prominence {
  position: relative;
  z-index: 2;
}
.button_text_spacing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem !important;
}
.button_text_spacing h2 {
  margin-bottom: 1.5rem !important;
}
.button_text_spacing p:last-of-type {
  margin: 0 !important;
}

/* UI */
.btn-primary {
  font-family: "WorkSans";
  font-size: var(--btn-font-size);
  background: var(--primary-color);
  color: #fff;
  border: unset;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 9999px;
}
button:focus {
  outline: unset;
  outline: unset;
}
.btn-primary:hover {
  background: var(--hover-primary-color);
  color: #fff;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--hover-primary-color);
  border: unset;
  box-shadow: 0 0 0 0.2rem var(--primary-color);
}
.btn.btn-secondary {
  background: #fff;
  border-radius: 99999px;
  padding: 10px 20px;
  color: var(--hover-primary-color);
  text-transform: uppercase;
  font-weight: 500;
  font-family: "WorkSans";
  border: 1px solid #fff;
}
.banner,
.secondary_hero,
.common_hero,
.hero_category {
  padding: var(--banner-padding);
  position: relative;
}
/* General */

/* Spacing */
.container,
.col_container {
  width: var(--container-width);
  max-width: 1920px;
  margin: 0 auto;
}
.col_container {
  flex: unset;
}

.my-6 {
  margin-top: var(--my-6-spacing);
  margin-bottom: var(--my-6-spacing);
}
.mt-6 {
  margin-top: var(--my-6-spacing);
}
.mb-6 {
  margin-bottom: var(--my-6-spacing);
}
.py-6 {
  padding-top: var(--my-6-spacing);
  padding-bottom: var(--my-6-spacing);
}
.pt-6 {
  padding-top: var(--my-6-spacing);
}
.pb-6 {
  padding-bottom: var(--my-6-spacing);
}
/* Spacing */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> LAYOUT <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/* Header */
header {
  position: fixed;
  z-index: 9999999;
  top: 0;
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #ddd;
  transform: translate(0);
  transition: all 0.2s linear;
}
header.scroll {
  transform: translateY(-80px);
}


.container_social_media {
  display: flex;
  gap: 7.5px;
}
.social_media_icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
  background: var(--hover-primary-color);
  padding: 5px;
  border-radius: 5px;
  border: 0.5px solid #fff5;
  transition: all 0.2s linear;
}
.social_media_icon svg:hover {
  background-color: #000000;
}
.social_media_icon svg path {
  fill: #fff;
}
.top_side_menu {
  background: var(--primary-color);
  height: var(--top-header-size);
}

.container_header_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.toggle_address_info {
  border: unset;
  background: transparent;
  color: #fff;
  font-family: "WorkSans";
  padding: 5px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.toggle_address_info svg {
  width: 12px;
  height: 12px;
  transition: all 0.2s linear;
  transform: rotate(0);
}
.toggle_address_info.rotate svg {
  transform: rotate(180deg);
}
.address_header {
  display: flex;
  list-style: none;
  margin: 0;
  flex-direction: column;
  background: var(--hover-primary-color);
  position: absolute;
  right: 0;
  bottom: top;
  top: 35px;
  z-index: 99;
  padding: 0;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: none;
  overflow: hidden;
}
.address_header .nav-item svg {
  width: 14px;
  height: 14px;
}
.address_header .nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 5px 15px;
  border-bottom: 1px solid #fff4;
  transition: all 0.2s linear;
}
.address_header .nav-item:hover {
  background-color: #000000;
}
.address_header .nav-item a:hover {
  text-decoration: underline;
}
.address_header .nav-item:last-of-type {
  border-bottom: unset !important;
}
.address_header .nav-item a {
  color: #fff;
  font-size: 12px;
  text-transform: capitalize;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.phone_svg_hero svg {
  width: 18px;
  height: 18px;
}
.phone_svg_hero svg path {
  fill: #fff;
}

.top_glovo_menu {
  background: var(--glovo-color);
  height: var(--top-header-size);
}
.glovo_text span {
  color: var(--dark-green);
  font-weight: 500;
  font-family: "WorkSans";
  font-size: 19px;
  user-select: none;
}

.top_glovo_menu,
.top_side_menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
#main-navbar {
  background-color: #fff;
  height: var(--header-size);
}
.logo {
  max-height: unset;
  height: 70px;
}
header .nav-link {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 18px;
  font-family: "WorkSans";
  font-weight: 400;
}

/* Main */
main {
  padding-top: calc(
    var(--header-size) + var(--top-header-size) + var(--top-header-size)
  );
}

/* Footer */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> PAGES <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/* Homepage */
.hero_homepage {
  position: relative;
  min-height: calc(100vh - var(--header-size) - var(--top-header-size) * 2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fde9ea;
}
.hero_homepage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0009;
  background: -moz-linear-gradient(
    90deg,
    rgb(17, 17, 17) 0,
    rgba(0, 0, 0, 0.41) 100%
  );
  background: -webkit-linear-linear-gradient(
    90deg,
    rgb(17, 17, 17) 0,
    rgba(0, 0, 0, 0.41) 100%
  );
  background: linear-gradient(90deg, #fff 0, #fff2 100%);
}
.hero_homepage .col_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: calc(100vh - calc(var(--header-size) + var(--top-header-size) * 2));
  padding: 0 calc(5vw + 15px);
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero_homepage .col_container::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0009;
}
.hero_homepage .module-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.hero_homepage .module-button {
  position: relative;
  display: flex;
  margin: 0 auto;
}
.hero_homepage .module-text h1,
.hero_homepage .module-text h2 {
  max-width: 1000px;
  font-size: var(--h1-font-size);
  color: #fff;
  margin: 0;
}
.hero_homepage .module-text p {
  max-width: 700px;
  color: #fff;
  margin: 0;
}

.hero_homepage .custom_arrow {
  background: #fff !important;
  border: unset !important;
  border-radius: 0 !important;
  width: 50px !important;
}

.hero_homepage .custom_arrow {
  height: 50px;
  top: calc(50% - 25px);
  background: transparent !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.hero_homepage .custom_prev_arrow {
  left: 40px;
}
.hero_homepage .custom_next_arrow {
  right: 40px;
}

.fickle_category_item {
  display: flex !important;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
.fickle_category_item {
  display: flex !important;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  background: #fde9ea;
  margin: 0 7.5px;
  padding: 15px;
  border-radius: 15px;
}

.fickle_category_item img {
  max-height: unset;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  width: 200px;
}

.custom_arrow {
  position: absolute;
  z-index: 1;
  background: #fff7;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #0003;
  border-radius: 10px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 0;
  transition: all 0.2s linear;
}
.custom_arrow:hover {
  background-color: #fff9;
}
.custom_next_arrow {
  right: 0;
}
.custom_prev_arrow {
  left: 0;
}

/* SECTION 2 HOMEPAGE */
.fickle_argument {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 30px;
  border: 1px solid #ceb58550;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.07) 0px 2px 8px 0px;
  background: #eee;
}
.fickle_argument .fickle-item.fickle-image {
  width: 100px;
  background: #fff;
  padding: 15px;
  border-radius: 50%;
  border: 2px solid #bbb;
}
.fickle_argument .fickle-title {
  font-size: var(--card-font-size);
  font-weight: 400;
}

.quote p {
  font-family: "WorkSans it";
  font-size: var(--quote-font-size);
  max-width: 1000px;
  margin: auto;
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.quote span {
  font-family: "Rage it";
  font-size: 60px;
}

/* SECTION 2 HOMEPAGE */
.rounded_image {
  position: relative;
  max-height: 700px;
  display: flex;
  padding: var(--rounded-padding);
  background-color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: var(--rounded-br);
}

.rounded_image img {
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--rounded-br-inner);
}
/* Banner */
.banner.home_banner {
  min-height: 450px;
  background-size: cover;
  background-position: center;
}
.banner.home_banner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--hover-primary-color);
  left: 0;
  top: 0;
  z-index: 2;
  background: #000;
  opacity: 0.6;
}
.banner.banner.home_banner .text_left ol {
  margin: 0;
}
.banner.banner.home_banner .text_left h2 {
  margin-bottom: 30px;
  color: #fff;
}
.banner.banner.home_banner .text_left .btn.btn-secondary {
  margin-top: 25px;
}
.banner.banner.home_banner .text_left li {
  font-family: "WorkSans";
  font-size: 18px;
  margin-bottom: 5px;
}
.banner.banner.home_banner .text_left li::marker {
  color: #fff;
  font-size: 20px;
}

.grid_right_text {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.grid_right_text .module-text {
  border: 1px solid #002b39;
  border-radius: 15px;
}
.grid_right_text h3 {
  position: relative;
  /* padding-left: 30px; */
  margin: 0;
  font-size: 20px;
  user-select: none;
}

.grid_right_text .fickle-header:hover {
  cursor: pointer;
}
.grid_right_text h3::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-left: 0;
  border-top: 0;
  right: 5px;
  top: calc(50% - 6.5px);
  transform: rotate(225deg);
  clip-path: polygon(
    20% 0%,
    0% 20%,
    30% 50%,
    0% 80%,
    20% 100%,
    50% 70%,
    80% 100%,
    100% 80%,
    70% 50%,
    100% 20%,
    80% 0%,
    50% 30%
  );
  background-color: #dd0e7a8c;
}

/* Accordion */

.fickle_accordion {
  padding: 0;
  border-radius: 5px;
  border: unset;
  background: transparent;
  overflow: hidden;
  max-width: 700px;
}
.fickle_accordion .fickle-content {
  display: none;
  padding: 0 15px;
}
.fickle_accordion.active .fickle-content {
  display: block;
}
.fickle_accordion .fickle-content .fickle-text-content {
  background: #fff;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 15px;
}
.fickle_accordion .fickle-content .fickle-text-content p:last-of-type {
  margin: 0;
}
.fickle_accordion .fickle-content .fickle-text-content > * {
  font-size: 16px;
  color: #848484;
}
.fickle_accordion .fickle-header {
  padding: 15px;
  background: #fff9;
  border-radius: 9999px;
  border: 1px solid #dd0e7a73;
}
.fickle_accordion.active .fickle-header {
  background-color: var(--hover-primary-color);
  color: #fff;
  border-radius: 9999px;
}
.fickle_accordion.active h3::before {
  background-color: #fff;
}

/* section 3 homepage */
.section_3_homepage .fickle_argument {
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  border: unset !important;
  border-radius: 15px;
  background: #ddd;
  color: #fff;
  overflow: hidden;
}
.section_3_homepage .fickle_argument .fickle-header {
  background: var(--primary-color);
  padding: 10px 20px;
  min-height: 65px;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 0;
  border: unset;
  margin-bottom: 1em;
}
.section_3_homepage .fickle_argument .fickle-title {
  font-size: 20px;
  text-align: center;
  width: 100%;
  margin: 0;
}
.section_3_homepage .fickle_argument .fickle-content {
  flex-grow: 1;
  padding: 0 10px;
}
.section_3_homepage .fickle_argument .fickle-item.fickle-text-content p {
  font-size: 16px;
  text-align: center;
  color: #222;
}

/* Section 4 homepage */
.card_with_image {
  background: var(--primary-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
}
.card_with_image .fickle-item.fickle-text-content {
  padding: 0 15px;
}
.card_with_image .fickle-item.fickle-text-content h3 {
  font-family: "WorkSans";
  font-size: 25px;
}
.card_with_image .fickle-image img {
  height: 280px;
  object-fit: cover;
  width: 100%;
  object-position: center;
}

/* Testimonials */
.section_testimonials {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.1) 13%,
    rgba(221, 14, 122, 0.8) 100%
  );
}
.section_testimonials h2 {
  color: #fff;
}
.testimonial_card {
  display: flex !important;
  gap: 20px;
  border: 1px solid #0004;
  padding: 30px;
  border-radius: 15px;
  margin: 0 15px;
  background-color: #fff;
  height: 100% !important;
  flex-direction: column;
  min-height: 400px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.testimonial_card h3 {
  text-transform: uppercase;
  font-size: 20px;
}
.testimonial_card h4 {
  color: var(--primary-color);
  font-size: 20px;
}
.testimonial_card p {
  color: #404040;
}
.testimonial_container {
  max-width: 950px;
  margin: auto;
}
.fickle-item.fickle-additional-html-code svg {
  width: 30px;
  height: 30px;
}
.testimonial_card .fickle-image {
  margin: 0 !important;
}
.testimonial_card .fickle-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #0003;
  object-fit: cover;
  object-position: center;
}

.testimonial_card .fickle-item.fickle-text-content {
  grid-column: 1 / -1;
}
.testimonial_card .fickle-additional-html-code {
  grid-row: 1/2;
  margin-bottom: 15px;
  grid-column: 2/3;
  align-self: center;
}
/* Homepage */

/* Footer */
footer {
  padding-top: 100px;
  background: #fde9ea;
}
footer .copywrite {
  background: var(--hover-primary-color);
  padding: 10px 15px;
  margin-top: 20px;
}
footer .copywrite p {
  color: #fff;
  margin: 0;
  width: fit-content;
  margin: auto;
  font-size: 17px;
  text-align: center;
}
.logo_footer,
.col_logo_footer {
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
.logo_footer img {
  max-width: 250px;
}
.col_list_footer h3 {
  color: var(--hover-primary-color);
  font-size: 19px;
  text-transform: uppercase;
  font-family: "WorkSans";
  font-weight: 500;
}
.col_list_footer .nav {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.legal_logo {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.legal_logo img {
  max-width: 190px;
}

.col_list_footer .nav-item a {
  padding: 0;
  margin: 7.5px 0px;
  color: var(--primary-color);
  width: fit-content;
  font-size: 19px;
  margin: 3px 0;
}

/* About us */
.infinite_slider_section figure {
  height: 300px;
  width: 300px;
  margin: 15px 7.5px;
  border: 1px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.photo_s_hero img {
  max-height: 500px;
  object-fit: contain;
  background: #0002;
  border: 1px solid #fff5;
  border-radius: var(--rounded-br);
}
.text_s_hero {
  display: flex;
  align-items: center;
}

.secondary_hero {
  background-size: cover;
  background-position: center;
  position: relative;
  /* min-height: 550px; */
  display: flex;
  align-items: center;
}
.secondary_hero::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: #000;
  opacity: 0.6;
}
.secondary_hero .col_container {
  max-width: 950px;
  margin: unset;
}
.secondary_hero .col_container .module-text h1 {
  margin-bottom: 25px;
}
.secondary_hero .col_container .module-text p:last-of-type {
  margin: 0;
}
.common_hero {
  background-color: var(--hover-primary-color);
}

.standard_image {
  border-radius: var(--rounded-br);
  background-color: #ddd;
}
.standard_image img {
  max-height: 800px;
  object-fit: contain;
}

.timeline {
  position: relative;
}

.year,
.event {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
}
.year h3 {
  font-size: var(--h1-font-size);
  color: var(--secondary-color);
}
.abs_clock {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event p {
  font-size: var(--timeline-text-size);
}
.abs_clock svg {
  width: 100%;
  height: 100%;
}

.abs_clock {
  animation: rotate 40s linear infinite;
  transform-origin: center;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Contact */
.contact_form_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 30px 15px;
}
.contact_form_container .container-fluid {
  padding: 0;
}

/* BLOG posts cards */
/* <--------------------------------------------------------- NOUTATI ---------------------------------------------------------> */
/******************** VIEW POST *********************/
.categories-grid {
  gap: 30px 0;
}
.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-image-wrapper
  .categ-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-image-wrapper {
  position: relative;
}
.blog-categories-item-wrapper .category-item {
  height: 100%;
}
.blog-categories-item-wrapper .category-item .category-item-inner {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid #ddd;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
}

.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-image-wrapper
  .blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  border-radius: 9999px;
  border: 1px solid #fff5;
}

.blog-categories-item-wrapper .category-item .category-item-inner .categ-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  height: 100%;
  justify-content: space-between;
}
.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-title
  .btn-primary {
  clip-path: unset;
}

.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-title
  .title-description
  h3,
.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-title
  .title-description
  a {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.4878))), 24px);
  color: var(--primary-color);
}

.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-title
  .title-description
  .short-description
  * {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.blog-categories-item-wrapper
  .category-item
  .category-item-inner
  .categ-title
  .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-title {
  padding-top: 50px;
}
.news-section {
  padding-bottom: 50px;
}

.news-title .news-title-inner {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.news-title .news-title-inner .module-text > * {
  text-align: center;
}

/******************** POST *********************/
.post_container {
  padding-top: 100px;
  padding-bottom: 50px;
}
.post_container .blog-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 35px;
  overflow: hidden;
}

.post_container .blog-content .title-btn-back .back-button .title {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 1.2195))), 38px);
}

.post_container .blog-content .title-btn-back .back-button {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 40px;
}

.post_container .blog-content .page-header-background {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post_container .blog-content .title-btn-back .back-button .blog-date {
  color: #222;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
  text-align: end;
}
.post_container .blog-content .page-header-background img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.post_container .blog-content .page-content-buttons {
  padding: 40px;
}

.post_container .blog-content .title-btn-back .back-button .blog-back-btn {
  display: flex;
  gap: 5px;
  align-items: center;
}

.post_container .blog-content .title-btn-back .back-button .blog-back-btn {
  color: #fff;
  background: var(--primary-color);
  width: fit-content;
  padding: 10px 15px;
  border-radius: 9999px;
}
.post_container
  .blog-content
  .title-btn-back
  .back-button
  .blog-back-btn:hover {
  color: #fff;
}

.post_container .blog-content p,
.post_container .blog-content li {
  color: #4f4f4f;
}

.blog-content h2 {
  font-size: 24px;
  color: #333; /* culoarea textului pentru h2 */
  margin-top: 20px; /* spațierea de sus */
  margin-bottom: 10px; /* spațierea de jos */
}

.blog-content h3 {
  font-size: 20px;
  color: #222; /* culoarea textului pentru h3 */
  margin-top: 15px; /* spațierea de sus */
  margin-bottom: 8px; /* spațierea de jos */
}
.blog-content h4 {
  font-size: 20px;
  color: #555; /* culoarea textului pentru h3 */
  margin-top: 15px; /* spațierea de sus */
  margin-bottom: 8px; /* spațierea de jos */
}

.blog-content p {
  font-size: 18px;
}

/* Preturi */
.text_s_hero .btn-secondary {
  color: #222;
}
.col_coaching_plan .module-text {
  text-align: center;
}
.col_coaching_plan .module-text p strong {
  color: var(--secondary-color);
  font-size: 40px;
}
.section_coaching_plans {
  display: grid;
  grid-template: auto / repeat(3, 1fr);
  gap: 50px;
}
.title_section_coaching {
  grid-column: 1 / -1;
}
.col_coaching_plan {
  border: 5px solid #ddd;
  padding: 50px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  transition: all 0.3s linear;
}
.col_coaching_plan:hover {
  border: 5px solid var(--primary-color);
}
.col_coaching_plan .module-button {
  text-align: center;
}
.col_coaching_plan .module-button .btn-primary {
  width: 100%;
}

/* <--------------------------------------------------------- PAGINATION ---------------------------------------------------------> */

.pagination {
  align-items: center;
  justify-content: center;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.page-link {
  color: var(--primary-color);
}
.page-link:hover {
  z-index: 2;
  color: var(--hover-primary-color);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  box-shadow: unset;
}

/* Blog filter */
.nav_filter {
  margin-bottom: 30px;
}


.nav_filter_item {
  color: var(--primary-color);
  font-size: 18px;
  position: relative;
  white-space: nowrap;
  display: flex !important;
  flex-direction: column;
  background: #fde9ea;
  padding: 7.5px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 170px;
  margin: 7.5px;
  border: 1px solid transparent;
  overflow: hidden;
}
@media(max-width: 575.99px) {
  .nav_filter {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto hidden;
    width: 100%;
  }
  .nav_filter_item {
    flex-shrink: 0;
    width: 150px;
  }
}
.nav_filter_item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.nav_filter_item.active {
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}

/* Loader */
.overlay_spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff9;
}
.spinner-border {
  position: absolute;
  inset: 0;
  margin: auto;
}
.no_results {
  font-size: 18px;
  color: var(--primary-color);
  margin: auto;
  padding: 50px 15px;
}

/* Cos cumparaturi custom */
.custom_cart {
  background: #fff;
  border: 1px solid #0004;
  position: fixed;
  bottom: 0;
  right: 10vh;
  padding: 0 15px;
  width: 350px;
  overflow: visible !important;
  border-radius: 15px 15px 0 0;
  display: none;
  z-index: 9999999;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.custom_cart_inner_content {
  max-height: calc(100vh - 50px);
  overflow: hidden auto;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.custom_cart_inner_content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.custom_cart_inner_content {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.clear_cart {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  background: transparent;
  color: var(--hover-primary-color);
  font-family: "WorkSans";
  border: 1px solid;
  padding: 2px 15px;
  border-radius: 9999px;
  user-select: none;
  margin-right: auto;
}
.custom_form_order {
  display: none;
}
.custom_form_order .btn-section .btn {
  width: 100%;
  padding: 7.5px;
  font-size: 16px;
}
.custom_form_order .c-form-success {
  background: #cedfce;
  color: #156215;
  padding: 5px 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.floating_cart {
  position: fixed;
  bottom: 15px;
  right: 10vh;
  background: var(--hover-primary-color);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 99999;
  user-select: none;
  cursor: pointer;
  display: none;
}
.floating_cart svg {
  position: absolute;
  inset: 0;
  margin: auto;
}
.close_custom_cart {
  position: absolute;
  z-index: 9999999;
  width: 40px;
  height: 40px;
  border: unset;
  background: var(--hover-primary-color);
  border-radius: 50%;
  top: -20px;
  right: -20px;
}
.place_order_btn {
  background: var(--hover-primary-color);
  width: 100%;
  margin-bottom: 15px;
  color: #fff;
  font-family: "WorkSans";
  font-weight: 600;
  font-size: 15px;
}
.place_order_btn:hover {
  color: #fff;
}
.place_order_btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: unset;
}
.info_custom_order {
  background: #fde9ea;
  margin-top: 15px;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
}
.info_custom_order .title_cart_items {
  font-size: 18px;
  color: var(--hover-primary-color);
  width: 100%;
  border-bottom: 1px solid #d5117750;
  display: flex;
  margin-bottom: 5px;
}
.info_custom_order ul {
  padding-left: 0;
  font-size: 15px;
}
.info_custom_order ul li {
  background: var(--hover-primary-color);
  padding: 5px;
  border-radius: 7.5px;
  margin-bottom: 7px;
  color: #fff;
  list-style: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  font-size: 13px;
  font-family: "WorkSans";
}
.remove_item_from_cart {
  border: 1px solid #fff;
  background: #fff;
  color: var(--hover-primary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.info_custom_order ul li span {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.info_custom_order ul li img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin: 0 7.5px;
  border-radius: 10px;
}
.preview_cart {
  max-height: 250px;
  overflow-y: auto;
}

.custom_cart .item-000 {
  display: none;
}
.custom_cart .item-000 textarea {
  max-height: 200px;
  overflow-y: auto;
  resize: none;
  display: none;
}
.custom_cart .container-fluid {
  padding: 0 !important;
}

/* Products */
.products-grid {
	padding: 0 7.5px;
}
.col_product {
  padding: 7.5px;
}
.image_product img {
  width: 100%;
  object-fit: contain;
  height: 150px;
}
.price {
	font-weight: 600;
	color: var(--hover-primary-color);
	font-size: 14px;
}
.add-to-cart {
  border-radius: 10px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.add-to-cart:hover {
  background-color: var(--hover-primary-color);
  border: 1px solid var(--hover-primary-color);
}
.product_type {
	position: absolute;
	top: 14px;
	background: var(--primary-color);
	color: #fff;
	padding: 2px 15px;
	border-radius: 9999px 0 0 9999px;
	right: 0;
	font-size: 13px;
	user-select: none;
	pointer-events: none;
}
.count_cart_items {
  background: #b7005f;
  width: 30px;
  height: 30px;
  display: flex;
  z-index: 99;
  position: absolute;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  top: -5px;
  right: -15px;
  border: 1px solid #fff;
}
.product_inner_content {
  border: 1px solid #ddd;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
  overflow: hidden;
}
.image_product {
  border-bottom: 1px solid #ddd;
  position: relative;
}

.price_wrapper {
	padding: 7.5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.product_card_details {
	padding: 0 7.5px;
	border-bottom: 1px solid #ddd;
	flex-grow: 1;
	margin-top: 15px;
	padding-bottom: 15px !important;
}
.title_product h2 {
	color: var(--hover-primary-color);
	font-size: 14px;
	font-family: "WorkSans";
	text-transform: uppercase;
}
.product_card_details p {
	font-size: 13px;
	color: #7d7d7d;
	margin: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media(min-width: 576px) {
  .add-to-cart {
    border-radius: 9999px;
  }
  .image_product img {
    height: 200px;
  }
  .page-id-17 .image_product img  {
    height: 267px;
    max-width:100%;
  }
  .title_product h2 {
    font-size: 16px;
  }
  .product_type {
    top: 20px;
    font-size: 15px;
  }
}

@media(min-width: 1500px) {
  .col_product {
    padding: 15px;
  }
  .products-grid {
    padding: 0;
  }
  .image_product img {
    height: 250px;
  }
  .title_product h2 {
    font-size: 18px;
  }
  .product_card_details p {
    font-size: 15px;
  }
  .price {
    font-size: 16px;
  }
}

/* Error page */
.error_container {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart_link {
  margin-left: 15px;
}
.cart_link svg path {
  fill: var(--primary-color);
}
.cart-items span {
  color: var(--primary-color);
}

/* Cart message */
#cart-message-box,
#fav-message-box {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  font-size: 14px;
  color: #fff;
  width: 100%;
  padding: 20px 15px;
}
.cart-message-box-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.cart-message-box-buttons a {
  background: #fff;
  padding: 7.5px 15px;
  border-radius: 9999px;
  color: var(--primary-color);
  font-family: "WorkSans";
  font-weight: 500;
}

/* Contact */
.module_code_contact input {
  border-radius: 9999px;
  border: 0.5px solid #0003;
}
.module_code_contact .container-fluid {
  padding: 0;
}
.module_code_contact .btn {
  display: flex;
  margin: auto;
}
.module_code_contact .form-group {
  text-align: center;
}
.c-error.text-danger {
  background: #fdcece;
  color: #db2727 !important;
  padding: 5px 10px;
  top: 5px;
  position: relative;
  border-radius: 5px;
}

/* Gallery */
.site_gallery {
  display: grid;
  grid-template: auto / 1fr 1fr;
  gap: 7.5px;
}
.site_gallery figure {
  margin: 0;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.site_gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#lightbox,
#lightboxOverlay {
  z-index: 99999999;
}

@media (min-width: 350px) {
  .site_gallery {
    gap: 10px;
  }
  .site_gallery figure {
    height: 150px;
  }
}
@media (min-width: 500px) {
  .site_gallery {
    gap: 15px;
  }
  .site_gallery figure {
    border-radius: 10px;
  }
}
@media (min-width: 650px) {
  .site_gallery figure {
    height: 200px;
  }
}
@media (min-width: 750px) {
  .site_gallery figure {
    height: 250px;
  }
}
@media (min-width: 950px) {
  .site_gallery figure {
    height: 300px;
  }
}
@media (min-width: 1150px) {
  .site_gallery {
    grid-template: auto / repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1150px) {
  .site_gallery {
    grid-template: auto / repeat(4, 1fr);
    gap: 30px;
  }
}

.col_video {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: start;
  gap: 20px;
  overflow: auto hidden;
  background: var(--primary-color);
  padding: 40px;
}

.col_video .module.module-code {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 20px;
}
.col_video .module.module-code iframe {
  border: none;
  overflow: hidden;
  border-radius: 15px;
}
.col_video .slick-track {
  display: flex;
  align-items: center;
}



@media(max-width: 1199.99px) {
  #main-navbar-collapse {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid #0003;
    border-bottom: 1px solid #0003;
    padding: 0 5vw;
  }
}
/* Menu dropdown */
.dropdown_navlink {
  display: flex;
  align-items: center;
  margin-right: 10px;
  justify-content: space-between;
}
.dropdown_products {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  background: var(--primary-color);
  width: 300px;
  border-radius: 15px;
  padding: 7.5px;
  border: 1px solid #fff4;
  max-height: 90vh;
  overflow: hidden auto;
}
@media(min-width: 1200px) {
  .mega-item:hover .dropdown_products {
    display: flex;
  }
}
.dropdown_menu_item {
  color: #fff;
  background: #fff4;
  border-radius: 9999px;
}
.dropdown_menu_item:hover {
  color: #fff;
  background-color: var(--hover-primary-color);
}
.dropdown_menu_item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.mega-item > .nav-link {
  display: flex;
  gap: 7.5px;
  align-items: center;
}
.toggle_menu_arrow {
  background: var(--primary-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
  transform: rotate(0);
}
.toggle_menu_arrow.rotate {
  transform: rotate(180deg);
}
.toggle_menu_arrow svg {
  width: 15px;
  height: 15px;
}
.toggle_menu_arrow svg path {
  fill: #fff;
}

/* Categorieis */
.categ_hero_item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.categ_hero_item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff4;
}

.hero_category {
  background: var(--hover-primary-color);
}
.categ_hero_item h1 {
  color: #fff;
}

.breadcrumb {
  margin-bottom: 0;
  background-color: var(--primary-color);
  border-radius: 9999px;
  border: 1px solid #fff4;
  padding: 10px 30px;
  display: flex;
  gap: 4px;
  align-items: center;
  width: fit-content;
}
.breadcrumb-item.active {
  color: #1c1c1c;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb svg {
  width: 16px;
  height: 16px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* SG product page */
.inner_content_image {
  border: 1px solid var(--primary-color);
  border-radius: 15px;
}
.inner_content_image img {
  width: 70%;
  height: auto;
  object-fit: cover;
  margin: auto;
  display: block;
}
.section_text_product .price_wrapper {
  width: fit-content;
  gap: 25px;
  background: #ffd9e0;
  border-radius: 9999px;
}

.section_text_product h1 {
  color: var(--primary-color);
  font-size: 50px;
}
.section_text_product h1,
.section_text_product .product_page_description {
  max-width: 700px;
}
