/* <--------------------------------------------------------- FONTS ---------------------------------------------------------> */

@font-face {
  font-family: "Poppins-Bold";
  src: url(fonts/Poppins-Bold.ttf);
  font-display: swap;
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url(fonts/Poppins-SemiBold.ttf);
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Medium";
  src: url(fonts/Poppins-Medium.ttf);
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Regular";
  src: url(fonts/Poppins-Regular.ttf);
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Light";
  src: url(./fonts/Poppins-Light.ttf);
  font-display: swap;
}

/* <--------------------------------------------------------- ROOT ---------------------------------------------------------> */

:root {
  /**************************************** FONTS ****************************************/

  --bold: "Poppins-Bold";
  --semibold: "Poppins-SemiBold";
  --medium: "Poppins-Medium";
  --regular: "Poppins-Regular";
  --light: "Poppins-Light";

  /**************************************** COLORS ****************************************/

  --primary-color: #ce1d3f;
  --hover-color-btn: #a41732;
  --hover-color-btn-secondary: #007388;
  --secondary-color: #0097b2;
  --black: #000000;
  --white: #ffffff;

  /**************************************** TRANSITIONS ****************************************/
  --transition-superfast: all 0.15s linear;
  --transition-fast: all 0.25s linear;
  --transition-medium: all 0.35s linear;
  --transition-slow: all 0.5s linear;
}

/* <--------------------------------------------------------- TYPOGRAPHY ---------------------------------------------------------> */

h1 {
  font-family: var(--medium);
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 1.4634))), 48px);
  color: var(--black);
}

h2 {
  font-family: var(--medium);
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 1.7073))), 48px);
  color: var(--black);
}

h3 {
  font-family: var(--medium);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
  color: var(--black);
}

h4 {
  font-family: var(--semibold);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
  color: var(--black);
}

strong {
  font-family: var(--bold);
  color: var(--black);
}

p {
  font-family: var(--regular);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.122))), 18px);
  color: var(--black);
}

a {
  font-family: var(--semibold);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.122))), 18px);
  color: var(--black);
}

li {
  font-family: var(--regular);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: var(--black);
}

/* <--------------------------------------------------------- GENERALS ---------------------------------------------------------> */

/**************************************** SPACE ****************************************/

.mt_40 {
  margin-top: 40px;
}

.mb_70 {
  margin-bottom: 70px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_20h2 h2 {
  margin-bottom: 20px;
}

.mb_10h2 h2 {
  margin-bottom: 10px;
}

.mb_20h3 h3 {
  margin-bottom: 20px;
}

.container .mt_0 {
  margin-top: 0px;
}

/**************************************** CONTAINERS ****************************************/

.container {
  width: 90vw;
  max-width: 1920px;
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1920px;
}

body.noscroll {
  overflow: hidden;
}

/**************************************** BUTTONS ****************************************/

/* PRIMARY */

.btn-primary {
  background-color: var(--primary-color);
  padding: 15px 30px;
  border: 0px;
  border-radius: 5px;
  font-family: var(--medium);
  position: relative;
  text-decoration: none;
  text-align: center;
  border: none;
  overflow: hidden;
  transition: var(--transition-fast);
}

.btn-primary svg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: -30px;
  transition: var(--transition-superfast);
}

.btn-primary:hover svg {
  right: 30px;
  transition: var(--transition-superfast);
}

.btn-primary:hover {
  padding-right: 66px;
  transition: var(--transition-superfast);
  background-color: var(--hover-color-btn);
}

button:focus {
  outline: none;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: none;
}

.btn-primary:focus,
.btn-primary.focus {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: none;
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

/* <--------------------------------------------------------- NAVBAR ---------------------------------------------------------> */

#main-navbar .btn-write {
  font-family: var(--light);
  color: var(--white);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--primary-color);
  transition: var(--transition-superfast);
}

#main-navbar .btn-write:hover {
  text-decoration: none;
  background-color: var(--hover-color-btn);
  transition: var(--transition-superfast);
}

#main-navbar .btn-write svg path {
  fill: var(--white);
}

#main-navbar {
  padding: 0;
}

#main-navbar .navbar-brand {
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-family: var(--regular);
  color: var(--black);
}
.navbar-expand-lg .navbar-nav .nav-item {
  position: relative;
}

.navbar-expand-lg .navbar-nav li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--primary-color);
  transition: var(--transition-fast);
  z-index: -1;
}

.navbar-expand-lg .navbar-nav li:not(:last-of-type):hover::before {
  width: 100%;
  transition: var(--transition-fast);
}

.navbar-expand-lg .navbar-nav {
  gap: 25px;
  align-items: center;
}

header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  padding: 20px 0;
  background-color: rgb(255, 255, 255, 50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

header.fixed {
  padding: 20px 0;
  transition: var(--transition-fast);
}

header.fixed .logo {
  max-width: 200px;
  transition: var(--transition-fast);
}

header .logo {
  max-width: 300px;
  width: 100%;
  transition: var(--transition-fast);
}

.navbar-expand-xl .navbar-nav .search-toggle {
  margin-left: 25px;
}

/* <--------------------------------------------------------- ACASA ---------------------------------------------------------> */
/**************************************** HERO ****************************************/

/* .slick-track .hero-slide-1 {
  display: none !important;
}

.hero-slider .slick-track .slick-current {
  display: block !important;
} */

.acasa-hero-section {
  max-height: fit-content;
  overflow: hidden;
}

.acasa-hero-section .hero-slide-1 {
  min-height: 100vh;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(5vw + 15px);
  padding-right: calc(5vw + 15px);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.acasa-hero-section .hero-slide-1 .module-text {
  max-width: calc(50% - 5vw - 15px);
  margin-bottom: 40px;
}

.acasa-hero-section .hero-slide-1 .module-text h1 {
  margin-bottom: 20px;
  color: var(--white);
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.acasa-hero-section .hero-slide-1 .module-text p:last-of-type {
  margin-bottom: 0px;
}

.acasa-hero-section .hero-slide-1 .module-text p {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.acasa-hero-section .hero-slide-1 .module-text p {
  color: var(--white);
}

.acasa-hero-section .slick-arrow {
  background-color: var(--primary-color);
  display: flex;
  height: 60px;
  width: 60px;
  align-items: center;
  justify-content: flex-end;
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
  cursor: pointer;
}

.acasa-hero-section .slick-arrow-right:hover {
  right: -15px;
  transition: var(--transition-fast);
  background-color: var(--hover-color-btn);
}

.acasa-hero-section .slick-arrow-right:hover .arrow {
  margin-left: 16.5px;
  transition: var(--transition-fast);
}

.acasa-hero-section .slick-arrow .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.acasa-hero-section .slick-arrow-right {
  right: -30px;
  transition: var(--transition-fast);
  justify-content: flex-start;
}

.acasa-hero-section .slick-arrow-right .arrow {
  margin-left: 9px;
  transition: var(--transition-fast);
}

.acasa-hero-section .slick-arrow-left {
  left: -30px;
  transition: var(--transition-fast);
}

.acasa-hero-section .slick-arrow-left .arrow {
  margin-right: 9px;
  transition: var(--transition-fast);
}

.acasa-hero-section .slick-arrow-left:hover {
  left: -15px;
  background-color: var(--hover-color-btn);
  transition: var(--transition-fast);
}

.acasa-hero-section .slick-arrow-left:hover .arrow {
  margin-right: 16.5px;
  transition: var(--transition-fast);
}

.acasa-hero-section .hero-slider-img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
}
.acasa-hero-section .hero-slider-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(0, 0, 0, 50%);
}
.acasa-hero-section .hero-slider-img img {
  height: 100%;
  object-fit: cover;
}

/**************************************** POST VIEW ****************************************/

.categ-image-wrapper img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  object-fit: cover;
  object-position: left;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.categ-image-wrapper {
  position: relative;
  padding-top: 60%;
}

.categories-grid {
  gap: 30px 0;
}

.view-post-page {
  margin-top: 160px;
  margin-bottom: 70px;
}

.categ-image-wrapper .blog-date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--black);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 10px;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: var(--white);
  font-family: var(--regular);
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 999;
}

.blog-category-item .short-description {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  margin-top: auto;
}

.blog-category-item .title-description {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.categ-image-wrapper {
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.categ-title .author {
  display: flex;
  flex-direction: wrap;
  justify-content: space-between;
  font-family: var(--regular);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.categ-title .author .name {
  font-family: var(--semibold);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.reclama-title {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  padding: 10px;
}

.reclama-title p {
  color: var(--white);
  margin: 0;
}

.categ-image-wrapper .view-post-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 13px 30px;
  background-color: var(--primary-color);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--regular);
  color: var(--white);
  transition: var(--transition-superfast);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.categ-image-wrapper .view-post-btn:hover {
  background-color: var(--hover-color-btn);
  transition: var(--transition-superfast);
  text-decoration: none;
}

.articole-recomandate .categories-grid {
  flex-direction: column;
}

.articole-recomandate .categories-grid .categories-item-wrapper {
  max-width: 100%;
  width: 100%;
}

.articole-recomandate {
  padding-left: 35px;
}

.articole-recomandate .short-description {
  display: none;
}

.articole-recomandate .author {
  display: none;
}

.articole-recomandate .blog-date {
  display: none;
}

.articole-recomandate .view-post-btn {
  display: none;
}

.articole-recomandate .categories-grid .categories-item-wrapper {
  padding: 0;
}

.articole-recomandate .categories-grid {
  width: 100%;
  margin: 0;
  padding: 20px 20px;
  border: 1px solid var(--secondary-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 20px;
  gap: 20px 0;
}

.articole-recomandate .articole-recomandate-titlu {
  background-color: var(--secondary-color);
  padding: 12px;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.articole-recomandate .articole-recomandate-titlu p {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
  font-family: var(--medium);
  color: var(--white);
  margin: 0;
}

.articole-recomandate .title-description {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.122))), 18px);
}

.articole-recomandate .categories-item-wrapper:not(:last-of-type) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--secondary-color);
}

.articole-recomandate .articole-recomandate-img {
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
}

.articole-recomandate .articole-recomandate-img img {
  border-radius: 20px;
}

.view-post-page .view-post-page-title h1 {
  color: var(--secondary-color);
}

.view-post-page .view-post-page-all-btn {
  margin-top: 40px;
}

.view-post-page-right .articole-recomandate {
  padding-left: 15px;
  padding-right: 35px;
}

.categories-grid .blog-category-item {
  height: 100%;
}

.categories-grid .blog-category-item .category-item-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.view-post-page .articole-recomandate {
  height: fit-content;
  position: sticky;
  top: 110px;
}

.categories-grid .blog-category-item .category-item-inner .categ-title {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.categories-grid .blog-category-item .category-item-inner .categ-title a:hover {
  text-decoration: none;
}

.categories-grid .blog-category-item .category-item-inner .categ-title a:hover h3 {
  color: var(--primary-color);
  transition: var(--transition-fast);
}
/**************************************** BANNER ****************************************/
.banner .banner-container {
  padding: 0px;
  max-height: 500px;
}
/**************************************** FOOTER ****************************************/
footer {
  background-color: var(--secondary-color);
}

footer .social-i .s-icon img {
  max-width: 20px;
  max-height: 20px;
}

footer .social-i .s-icon {
  max-width: fit-content;
  height: fit-content;
}

footer .social-i .f-icon {
  margin-left: auto;
}

footer .social-i .t-icon {
  margin-left: auto;
  margin-right: auto;
}

footer .social-i {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  max-width: 200px;
  height: fit-content;
  gap: 10px 0;
}

footer .social-i .logo-f {
  grid-column: 1/4;
  height: fit-content;
}

footer .social-i .logo-f img {
  filter: brightness(3);
}

footer .footer-menu .module-text p {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  color: var(--white);
  font-family: var(--semibold);
}

footer .footer-menu .module-text ul li a {
  font-family: var(--regular);
  color: var(--white);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.122))), 18px);
  position: relative;
}

footer .footer-menu .module-text ul li a:hover {
  text-decoration: none;
}

footer .footer-menu .module-text ul li a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  border-bottom: 1px solid var(--primary-color);
  bottom: 0;
  left: 0;
  right: 0;
  transition: var(--transition-fast);
}

footer .footer-menu .module-text ul li a:hover::before {
  width: 100%;
  transition: var(--transition-fast);
}

footer .footer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .footer-gdpr img {
  max-width: 200px;
}
footer .footer-gdpr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

footer .footer-content {
  justify-content: space-between;
  gap: 20px;
  padding: 50px 0;
}

.copyright-footer {
  background-color: var(--primary-color);
  padding: 30px 0;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

footer .container-fluid {
  margin-left: 0;
  margin-right: 0;
}

.copyright-footer .copyright-footer-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.copyright-footer .copyright-footer-content .module-text p {
  margin-bottom: 0px;
  color: var(--white);
  text-align: center;
}

.copyright-footer .copyright-footer-content .module-text a {
  color: var(--white);
  font-family: var(--semibold);
  text-decoration: underline;
}

/**************************************** BLOG VIEW ****************************************/
.post_container .blog-content .page-description p img {
  max-width: 100%;
}

.post_container {
  padding-top: 160px;
  gap: 50px 0;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.post_container .similar_posts .categories-grid {
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
}

.post_container .similar_posts .similar-posts-content {
  position: sticky;
  top: 110px;
}

.post_container .similar_posts .categories-grid .categories-item-wrapper {
  max-width: 100%;
  flex: 0 0 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(0, 0, 0, 20%);
  padding-left: 0px;
  padding-right: 0px;
}

.post_container .similar_posts .blog-category-item .category-item-inner {
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  justify-content: space-between;
}

.post_container .similar_posts .blog-category-item .categ-image-wrapper {
  max-width: 90px;
  max-height: 60px;
  padding-top: 50px;
  padding-right: 90px;
}
.post_container .blog-content {
  padding-right: 30px;
  padding-left: 0px;
  max-width: 800px;
  min-width: 800px;
}

.blog-content .page-header-background {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 50px;
}

.post_container .blog-content .page-description h2 {
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 0.2439))), 28px);
}

.blog-content .page-header-background .title-btn-back h1 {
  font-size: min(max(32px, calc(2rem + ((1vw - 2.8px) * 0.3659))), 38px);
}
.post_container .similar_posts {
  border-left: 1px solid rgb(0, 0, 0, 20%);
  padding-right: 0px;
  padding-left: 30px;
  max-width: 320px;
  min-width: 320px;
}

.post_container .similar_posts .blog-category-item .title-description {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.post_container .similar_posts .blog-category-item .categ-title .author {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  margin-bottom: 0px;
}

.post_container .similar_posts .blog-category-item .categ-title .author .name {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
}

.post_container .similar_posts .blog-category-item .short-description {
  display: none;
}

.post_container .similar_posts .blog-category-item .blog-date {
  display: none;
}

.post_container .similar_posts .blog-category-item .view-post-btn {
  display: none;
}

.post_container .similar_posts .blog-category-item .categ-image-wrapper {
  border-radius: 0px;
  margin-bottom: 0px;
}

.post_container .similar_posts .similar-posts-content .similar-posts-content-title {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(0, 0, 0, 20%);
  font-family: var(--semibold);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
}

.post_container .page-header-background img {
  max-width: 100%;
}

.post_container .back-button .blog-back-btn {
  background-color: transparent;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
  font-family: var(--medium);
  margin-bottom: 20px;
}

.post_container .date-time-read .time-read {
  margin-bottom: 0;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-family: var(--light);
}

.post_container .back-button .blog-date {
  margin-bottom: 0;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-family: var(--light);
}

.post_container .date-time-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.post_container .back-button .blog-back-btn svg path {
  stroke: var(--black);
}

.post_container .share-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid rgb(0, 0, 0, 20%);
  border-bottom: 1px solid rgb(0, 0, 0, 20%);
}

.post_container .share-section p {
  margin: 0;
  color: var(--black);
}

.similar_posts .similar-posts-content .categories-grid .categ-image-wrapper img {
  border-radius: 5px;
}

.post_container .share-section .icon-section {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.post_container .share-section .share-title {
  color: var(--black);
  font-family: var(--medium);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
}

.post_container .share-section .icon-section .share-icon {
  min-width: 45px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.post_container .share-section .icon-section .fb-share {
  background-color: #3b5998;
}

.post_container .share-section .icon-section .mail-share {
  background-color: #db4a39;
}

.post_container .share-section .icon-section .tw-share {
  background-color: #1da1f2;
}

.post_container .share-section .icon-section .wapp-share {
  background-color: #25d366;
}

.post_container .share-section .icon-section .link-share {
  background-color: var(--black);
  position: relative;
}

.post_container .post-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  width: 100%;
}

.post_container .post-buttons .btn-primary {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post_container .post-buttons .btn-primary:hover {
  padding: 15px 30px;
  text-decoration: none;
}

.post_container .post-buttons .btn-primary svg {
  position: static;
}

.post_container .share-section .icon-section .copy-notification {
  display: none;
  position: absolute;
  bottom: -50px;
  font-size: 12px;
  background: black;
  color: white;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 30px;
}

.post_container .share-section .icon-section .copy-notification::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--black);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: -40px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.post_container .share-section .icon-section .copy-notification.active {
  display: block;
}

.post_container .blog-content .author {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-family: var(--light);
  margin-bottom: 0px;
}

.post_container .blog-content .author .name {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-family: var(--medium);
}

.post_container .follow-us .follow-btn {
  display: flex;
  align-items: center;
  max-width: fit-content;
  gap: 15px;
  min-width: 40px;
  min-height: 40px;
  color: var(--white);
  font-family: var(--regular);
  border-radius: 50px;
  justify-content: center;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}
.post_container .follow-us .follow-fb {
  background-color: #3b5998;
}

.post_container .follow-us .follow-insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.post_container .follow-us .follow-tw {
  background-color: #1da1f2;
}

.post_container .follow-us .follow-us-title {
  font-family: var(--semibold);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  margin-bottom: 10px;
}

.post_container .follow-us {
  margin-top: 20px;
}

.post_container .follow-us .all-icon-section {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.post_container .blog-content .page-description h2 {
  margin-bottom: 20px;
  color: var(--black);
  font-family: var(--semibold);
}

.post_container .similar-posts-view-post .similar-posts-view-post-title {
  font-family: var(--semibold);
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 0.4878))), 28px);
  margin-bottom: 10px;
  margin-bottom: 20px;
}

.post_container .similar-posts-view-post {
  padding: 0px;
  max-width: 100%;
}

.post_container .similar-posts-view-post .blog-date {
  display: none;
}

.similar-posts-view-post .slick-list {
  display: grid;
}

.similar-posts-view-post .similar-posts-slider .slick-arrow {
  background-color: var(--primary-color);
  position: absolute;
  bottom: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: var(--transition-fast);
}

.similar-posts-view-post .similar-posts-slider .slick-arrow:hover {
  background-color: var(--hover-color-btn);
  transition: var(--transition-fast);
}

.similar-posts-view-post .similar-posts-slider .slick-arrow-right {
  left: 60px;
}

.similar-posts-view-post .similar-posts-slider .slick-arrow-left {
  right: 60px;
}

.similar-posts-view-post .similar-posts-slider .categ-title .author {
  margin-bottom: 0px;
}

.similar-posts-view-post .similar-posts-slider {
  padding-bottom: 85px;
}

.similar-posts-view-post .similar-posts-slider .categ-image-wrapper .view-post-btn {
  background-color: var(--black);
}

.similar-posts-view-post .similar-posts-slider .categ-image-wrapper .view-post-btn:hover {
  background-color: var(--primary-color);
}
/**************************************** SEARCH ****************************************/

.search-wrapper.show {
  top: 0px;
  display: block;
}

header.fixed .search-wrapper.show {
  top: 70px;
}

.search-wrapper {
  transition: var(--transition-fast);
}

.search-wrapper a.search-hide {
  right: 0;
  top: 0;
}

.search-wrapper #search,
input::placeholder {
  font-family: var(--medium);
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
  color: var(--black);
  padding-top: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
}

header.fixed .search-wrapper.show {
  padding-top: 50px;
  padding-bottom: 50px;
}

header .item-search {
  margin-left: 50px;
}

.search-wrapper.show body {
  overflow-y: hidden;
}

.search-wrapper {
  padding-right: calc(5vw + 15px);
  padding-left: calc(5vw + 15px);
  padding-top: 50px;
  padding-bottom: 100px;
  height: 100vh;
  top: 110px;
  display: none;
  overflow-y: auto;
}

.search-results .page-description {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.search-results .page-description h3,
.search-results .page-description ul,
.search-results .page-description h1,
.search-results .page-description ol {
  display: none;
}

.search-results .page-description p:first-of-type {
  margin-bottom: 0px;
}

.search-results .page-description h2 {
  display: none;
}

.search-results .page-description p:not(:first-of-type) {
  display: none;
}

.search-results .search-results-content .search-results-img-text a img {
  width: 100%;
  max-height: 200px;
  min-width: 370px;
  object-fit: cover;
  max-width: 370px;
}

.search-results .search-results-content .search-results-img-text {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
}

.search-wrapper .search-results ul li:first-child {
  padding-top: 40px;
}

.search-results li:not(:last-of-type) {
  border-bottom: 1px solid rgb(0, 0, 0, 20%);
}

.search-results {
  max-width: 800px;
}

.search-wrapper #search,
.search-wrapper #search:focus {
  width: 100%;
  max-width: 800px;
}

.search-results .search-results-content .searchi-results-title {
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 0.4878))), 28px);
  font-family: var(--medium);
}

.search-results .search-results-content .searchi-results-title:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.search-results ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.search-results .search-results-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-results .search-results-content .search-results-view-more {
  color: var(--primary-color);
}

.search-results .search-results-content .search-results-view-more:hover {
  text-decoration: none;
}

.post_container .banner-posts-view .img-content img {
  width: 100%;
}

.post_container .banner-posts-view {
  padding: 0;
  max-width: 100%;
  flex: 0 0 100%;
}

.search-content {
  max-width: 1920px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/**************************************** CONTACT ****************************************/
.c-form .container {
  max-width: 100%;
}

.contact-section {
  min-height: 100vh;
}

.contact-section .contact-form-text {
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw;
}

.contact-section .contact-form-content {
  padding: 100px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section .contact-form-text .module-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-section .contact-form-text .module-text p {
  color: var(--white);
}

.contact-section .contact-form-text .module-text p:last-of-type {
  margin-bottom: 0px;
}

.contact-form-all .contact-form-content .btn-section {
  margin-bottom: 0px;
}

.contact-section .contact-form {
  padding: 0px;
}

.contact-form-all .form-control {
  background: transparent;
  border: 1px solid #00000020;
  border-radius: 20px;
  padding: 10px 15px;
  min-height: 50px;
}

.contact-form-all .form-group {
  position: relative;
  height: fit-content;
}

.contact-form-all .form-group:not(.agreement-radio):not(.checkout-gdpr):not(.checkbox) label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-left: 15px;
  height: fit-content;
  z-index: -1;
  font-family: var(--regular);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.contact-form-all .textarea-form:not(.agreement-radio):not(.checkout-gdpr):not(.checkbox) label {
  margin-top: 10px;
}

.contact-form-all .textarea-form textarea {
  min-height: 100px;
}

.contact-form-all .form-control:focus {
  color: #495057;
  background-color: inherit;
  border-color: inherit;
  box-shadow: none;
}

.contact-form-all .focus label,
.contact-form-all .focus span {
  color: transparent;
}

.contact-form-all .invoice-group label {
  color: var(--black);
}

.contact-form-all .item-acceptance span {
  color: var(--black);
}

.contact-form-all input[type="checkbox"] {
  display: none;
}

.contact-form-all input[type="checkbox"] + .checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  position: absolute;
  left: 0;
  top: 0px;
  transition: all 0.12s, border-color 0.08s;
  border-radius: 5px;
}

.contact-form-all input[type="checkbox"]:checked + .checkbox-text:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.contact-form-all input[type="checkbox"] + .checkbox-text {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}

.contact-form-all .c-error {
  position: absolute;
  bottom: -1rem;
  left: 0;
  font-size: 12px;
}

/**************************************** COOKIE ****************************************/

#cookie_notice {
  margin-left: calc(5vw + 15px);
  margin-right: calc(5vw + 15px);
  padding: 40px;
  border-radius: 30px;
  background-color: var(--white);
  border: 1px solid rgb(0, 0, 0, 20%);
}

#cookie_notice.active {
  bottom: 20px;
}

#cookie_notice .cookie_notice_container {
  flex-direction: column;
  gap: 20px;
}

#cookie_notice .cookie_notice_container button {
  margin-left: 0px;
  padding: 15px 30px;
  font-family: var(--medium);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  border: 0px;
}

#cookie_notice .cookie_notice_container button:hover {
  background-color: var(--hover-color-btn);
}

.btn-info.focus,
.btn-info:focus {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: none;
  box-shadow: none;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

#cookie_notice .cookie_notice_container p {
  color: var(--black);
  margin-bottom: 0px;
  text-align: center;
}

#cookie_notice .cookie_notice_container p a {
  color: var(--primary-color);
  font-family: var(--semibold);
  text-decoration: underline;
}

/**************************************** 404 ****************************************/

.site-error h1 {
  font-family: var(--bold);
  font-size: min(max(64px, calc(4rem + ((1vw - 2.8px) * 8.2927))), 200px);
  color: var(--primary-color);
}

.site-error .error-404 {
  min-height: calc(100vh - 160px);
}

.site-error .btn-404 {
  margin-top: 20px;
}

.site-error .message-404 {
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 0.4878))), 28px);
  font-family: var(--semibold);
}

.site-error {
  padding-top: 160px;
  padding-bottom: 50px;
}

/* <--------------------------------------------------------- PUBLICA CONTINUTUL TAU ---------------------------------------------------------> */

.publica-continut-hero-section {
  margin-top: 160px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.publica-continut-section-1 {
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.publica-continut-section-1 .write-content-form-all {
  padding: 0px;
}

.publica-continut-section-1 .form-control {
  background: transparent;
  border: 1px solid #00000020;
  border-radius: 20px;
  padding: 10px 15px;
  min-height: 50px;
}

.publica-continut-section-1 .form-group {
  position: relative;
  height: fit-content;
}

.publica-continut-section-1 .form-group:not(.agreement-radio):not(.checkout-gdpr):not(.checkbox) label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-left: 15px;
  height: fit-content;
  z-index: -1;
  font-family: var(--regular);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.publica-continut-section-1 .textarea-form textarea {
  min-height: 100px;
}

.publica-continut-section-1 .textarea-form:not(.agreement-radio):not(.checkout-gdpr):not(.checkbox) label {
  margin-top: 10px;
}

.publica-continut-section-1 .form-control:focus {
  color: #495057;
  background-color: inherit;
  border-color: inherit;
  box-shadow: none;
}

.publica-continut-section-1 .focus label,
.publica-continut-section-1 .focus span {
  color: transparent;
}

.publica-continut-section-1 .invoice-group label {
  color: var(--black);
}

.publica-continut-section-1 .item-acceptance span {
  color: var(--black);
}

.publica-continut-section-1 input[type="checkbox"] {
  display: none;
}

.publica-continut-section-1 input[type="checkbox"] + .checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  position: absolute;
  left: 0;
  top: 0px;
  transition: all 0.12s, border-color 0.08s;
  border-radius: 5px;
}

.publica-continut-section-1 input[type="checkbox"]:checked + .checkbox-text:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.publica-continut-section-1 input[type="checkbox"] + .checkbox-text {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}

.publica-continut-section-1l .c-error {
  position: absolute;
  bottom: -1rem;
  left: 0;
  font-size: 12px;
}

.publica-continut-section-1 .upload-file:not(.agreement-radio):not(.checkout-gdpr):not(.checkbox) label {
  position: static;
  font-family: var(--regular);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: var(--secondary-color);
  margin: 0px;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  transition: var(--transition-superfast);
  min-width: 190px;
}

.publica-continut-section-1 .upload-file:not(.agreement-radio):not(.checkout-gdpr):not(.checkbox) label:hover {
  background-color: var(--hover-color-btn-secondary);
  transition: var(--transition-superfast);
}

.publica-continut-section-1 input::file-selector-button {
  font-family: var(--regular);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background-color: var(--secondary-color);
  display: none;
}

.publica-continut-section-1 .upload-file {
  height: 50px;
}

.publica-continut-section-1 .upload-file input {
  height: 100%;
  padding: 13px 20px;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-family: var(--regular);
  color: var(--black);
  cursor: pointer;
}

.publica-continut-section-1 .upload-file .form-control:focus {
  color: var(--secondary-color);
}

/* <--------------------------------------------------------- GDRP ---------------------------------------------------------> */

.gdpr-section {
  padding-top: 160px;
  margin-bottom: 50px;
}
.gdpr-section h1 {
  margin-bottom: 50px;
}
.gdpr-section h2 {
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 0.2439))), 28px);
  font-family: var(--semibold);
  margin-bottom: 20px;
}

.gdpr-section h2:not(:first-of-type) {
  margin-top: 40px;
}

.gdpr-section ul li::marker {
  color: var(--primary-color);
}

.gdpr-section a {
  font-family: var(--semibold);
  color: var(--primary-color);
}

/* <--------------------------------------------------------- PAGINATION ---------------------------------------------------------> */

.pagination {
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding-top: 20px;
}

.pagination .disabled {
  display: none;
}

.pagination li {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
}

.pagination li:hover {
  background-color: var(--primary-color);
}

.pagination li:hover a {
  color: var(--white);
}

.pagination li a {
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination li a svg path {
  stroke: var(--white);
}

.pagination li a svg {
  max-height: 16px;
}

.pagination li a:hover {
  text-decoration: none;
}

.pagination .active {
  background-color: var(--primary-color);
}

.pagination .active a {
  color: var(--white);
}

.pagination .active a:hover {
  text-decoration: none;
}
