@import url("variables.css");
@import url("font.css");
@import url("responsive.css");

/* Public style start */

.btn-primary,
.btn-primary-sm {
  background-color: var(--color-primary-3);
  color: #fff;
  border-radius: var(--btn-rd);
  border: 1px solid var(--color-primary-3) !important;
}

.btn-primary:hover {
  background-color: var(--color-primary-3);
}

.btn-primary:hover {
  background-color: var(--color-primary-3);
}

.btn-outline-gray:hover {
  color: var(--color-primary-3) !important;
}
.btn-outline-white:hover {
  background-color: none;
  color: var(--color-light) !important;
}

.btn-outline-gray {
  color: var(--color-primary-3);
  background-color: transparent;
  background-image: none;
  border: 1px solid var(--color-gray-3) !important;
  background-color: var(--color-light);
}

.btn-outline-white {
  color: var(--color-light);
  background-color: transparent;
  background-image: none;
  border: 1px solid var(--color-light) !important;
}

.navbar {
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-gray-3);
  z-index: 10000;
}
.nav-link {
  color: var(--color-dark-1) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}
.nav-item .nav-link.active {
  position: relative;
  padding-top: 0.5rem;
}

.nav-item .nav-link.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 37px;
  height: 2px;
  background-color: var(--color-primary-3);
  border-radius: 10px;
}

.nav-login {
  color: var(--color-primary-3) !important;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}
.toggle-menu-btn {
  padding-right: 0;
}

.close-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.custom-offcanvas {
  top: 63px;
  width: calc(100% - 10px);
  height: auto !important;
  max-height: calc(80vh - 40px);
  overflow-y: auto;
  margin: 0 5px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: width 0.1s;
}

.offcanvas-backdrop.show {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

.custom-offcanvas .nav-link {
  font-size: 1.1rem;
  color: #000;
  transition: color 0.3s ease;
}

.custom-offcanvas .nav-link:hover {
  color: var(--color-primary-3);
}
.offcanvas.custom-offcanvas {
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
}
.offcanvas.hiding {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.footer {
  background-color: var(--color-dark-2);
  color: var(--color-light);
  font-family: sans-serif;
  padding: 60px 20px 30px;
  font-size: 14px;
}

.footer .container {
  max-width: 1280px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  flex: 1 1 220px;
}

.footer-brand .logo {
  max-width: 150px;
  margin-bottom: 16px;
}

.footer-description {
  color: var(--color-light);
  margin-bottom: 20px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-socials a {
  display: inline-block;
  margin-right: 12px;
  color: var(--color-light);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex: 2 1 400px;
  justify-content: space-between;
  gap: 40px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--color-light);
  font-family: "Satoshi Bold", sans-serif;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-light);
  font-weight: 400;
  text-decoration: none;
  font-family: "Satoshi", sans-serif;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-newsletter {
  flex: 1 1 280px;
}

.footer-newsletter p {
  color: var(--color-light);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-light);
  border: 1px solid var(--color-gray-4);
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  font-size: 14px;
  color: #333;
  width: 300px;
}

.newsletter-form button {
  background-color: var(--color-primary-3);
  border: none;
  padding: 0 18px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ffffff1f;
  padding-top: 20px;
  font-size: 13px;
  color: #ffffff99;
}

.newsletter-form input::placeholder {
  color: #92979d;
  opacity: 1;
}

/* Public style end */

.section-margin {
  margin-top: 60px;
  margin-bottom: 60px;
}

.bold-title-1 {
  font-size: 48px;
  font-family: "Druk Wide Bold", sans-serif;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 0px;
}
.bold-title-2 {
  font-size: 38px;
  font-family: "Druk Wide Bold", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-dark-3);
}
.bold-title-3 {
  font-size: 36px;
  font-family: "Satoshi Black", sans-serif;
  font-weight: 900;
  line-height: 44px;
}
.bold-title-4 {
  font-size: 24px;
  font-family: "Satoshi Black", sans-serif;
  font-weight: 900;
  line-height: 32px;
}
.bold-title-5 {
  font-size: 20px;
  font-family: "Satoshi Black", sans-serif;
  font-weight: 700;
  line-height: 32px;
}

.description-md {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02rem;
  color: var(--color-gray-1);
}

.description-lg {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03rem;
  color: var(--color-gray-1);
}

.gradient-text {
  background: linear-gradient(to bottom, #33373b, #56616b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-page-text {
  background: linear-gradient(181.59deg, #33373b 70.54%, #535a62 98.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.personal-image {
  width: 100%;
  max-width: 486px;
  height: auto;
  border-radius: var(--card-rd);
  position: relative;
  z-index: 100;
}

.personal-image-part {
  display: flex;
  justify-content: end;
  position: relative;
}

.vertical-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #ccc,
    #ccc 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.rh-badge-1 {
  position: absolute;
  border-radius: var(--btn-rd);
  font-size: var(--font-xs-size);
  max-width: 260px;
  z-index: 110;
  color: var(--color-light);
  overflow: hidden;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.blur-bg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: inherit;
  z-index: 0;
}

.rh-badge-1 img,
.rh-badge-2 img,
.rh-badge-1 > div,
.rh-badge-2 > div {
  position: relative;
  z-index: 5;
}

.rh-badge-position-1 {
  bottom: 30px;
  left: 30px;
}

.rh-badge-position-1 .blur-bg img {
  width: 40px;
}

.rh-badge-2 {
  width: 282px;
  height: 213px;
  background-color: var(--color-primary-2);
  border-radius: var(--btn-rd);
}
.rh-badge-position-2 {
  position: absolute;
  top: -60px;
  left: 0px;
}

.line-background-svg {
  position: absolute;
  top: 5%;
  left: 43%;
  transform: translateX(-50%);
  width: 50%;
  height: 50%;
  background-image: url("../images/bg-header.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.line-background-as-curator-1 {
  position: absolute;
  top: -50px;
  left: 12%;
  width: 380px;
  height: 408px;
  transform: translateX(-50px);
  background: url("../images/bg-header-as-curator-1.svg") center no-repeat;
  z-index: 0;
}

.line-background-as-curator-2 {
  position: absolute;
  top: -50px;
  left: 67%;
  width: 380px;
  height: 468px;
  transform: translateX(-50px);
  background: url("../images/bg-header-as-curator-2.svg") center no-repeat;
  z-index: 0;
}

.line-background-blog-1 {
  position: absolute;
  top: 0;
  left: 15%;
  width: 90px;
  height: 140px;
  background: url("../images/bg-header-blog-1.svg") center no-repeat;
  z-index: 0;
}

.line-background-blog-2 {
  position: absolute;
  top: 0px;
  right: 15%;
  width: 90px;
  height: 260px;
  background: url("../images/bg-header-blog-2.svg") center no-repeat;
  z-index: 0;
}

.sponser-images .item {
  text-align: center;
  display: flex;
  align-items: center;
}

.sponser-images .item img {
  width: 115px !important;
  height: 40px;
}

.owl-carousel {
  display: flex !important;
  justify-content: center !important;
}

.title-with-icon {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04rem;
}
.title-with-icon img {
  width: 20px;
  height: 20px;
}

.why-choose-item {
  display: flex;
  border-radius: var(--btn-rd) !important;
  flex-direction: column;
  align-items: start;
  align-items: start;
  padding: 20px;
  border-radius: var(--btn-rd);
  margin: 0 5px;
  height: 240px;
}
.why-choose-item h5 {
  font-size: var(--font-md-size);
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-align: start;
}

.why-choose .col-12:nth-of-type(1) .why-choose-item {
  background-color: #ebf5ff;
}
.why-choose .col-12:nth-of-type(2) .why-choose-item {
  background-color: #efe6fc;
}
.why-choose .col-12:nth-of-type(3) .why-choose-item {
  background-color: #fef5e6;
}
.why-choose .col-12:nth-of-type(4) .why-choose-item {
  background-color: #fbebeb;
}
.why-choose .col-12:nth-of-type(5) .why-choose-item {
  background-color: #fcf6f0;
}
.why-choose .col-12:nth-of-type(6) .why-choose-item {
  background-color: #ebf7ef;
}
.how-it-work-why-choose-item {
  background-color: var(--color-light) !important;
  box-shadow: 0px 2px 8px 0px #0000000f;
  flex-direction: row;
  height: 148px;
  transition: box-shadow 0.3s ease-in-out;
}
.how-it-work-why-choose-item:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}
.how-it-work-why-choose-item img {
  width: 56px;
}
.opacity-bottom-10 {
  border-bottom: 1px solid #e9edff;
}
.opacity-bottom-20 {
  border: 1px solid #e4e7ec !important;
}
.opacity-bottom-30 {
  border: 0.05rem solid #eff0f0 !important;
}

.why-join .col-12 .why-join-as-curator {
  background-color: var(--color-light) !important;
  box-shadow: 0px 2px 8px 0px #0000000f;
  transition: box-shadow 0.3s ease-in-out;
}
.why-join .col-12 .why-join-as-curator:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}

.center-part-title,
.center-part-title div,
.music-professional,
.music-professional div {
  justify-content: center;
  text-align: center;
}

.how-works-item {
  background-color: var(--color-light);
  border-radius: var(--card-rd);
  padding: 40px 20px;
}

.how-works-item-content {
  text-align: left;
  border-right: 1px solid #333;
  border-image: linear-gradient(to top, #fff, #cccfd1, #fff) 1;
  width: 60%;
  padding-right: 100px;
}

.how-works-item-image {
  width: 600px;
  width: 40%;
  justify-items: center;
}

.step-part .row .col-12 {
  position: sticky;
  border-radius: var(--card-rd);
  top: 50px;
  margin: 30px auto;
  box-shadow: 0px 8px 16px 0px #00000014;
}

.as-curator-steps .col-12 {
  border-radius: var(--card-rd);
  padding: 40px 20px;
  box-shadow: 0px 8px 16px 0px #0000000a;
}

.as-curator-steps-item-content {
  text-align: left;
  width: 60%;
  padding-right: 50px;
}

.as-curator-steps-item-image {
  width: 600px;
  width: 40%;
  justify-items: center;
}

.step-part .row .col-12:nth-child(2) {
  z-index: 2;
}
.step-part .row .col-12:nth-child(3) {
  z-index: 3;
}
.step-part .row .col-12:nth-child(4) {
  z-index: 4;
}
.step-part .row .col-12:nth-child(5) {
  z-index: 5;
}
.step-side-image {
  width: 240px;
  height: 240px;
}
.step-side-image-large {
  width: 360px;
  height: 360px;
}

.music-professional {
  padding: 40px 30px;
}

.music-professional-image {
  width: 460px;
  height: 460px;
}

.key-benefits-item {
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) -30.83%,
    rgba(204, 207, 209, 0.2) 57.28%,
    rgba(255, 255, 255, 0) 130.83%
  );
  border-image-slice: 1;
  border-radius: 10px;
}

.key-benefits-item:nth-child(5) {
  border-bottom: none !important;
}

.fresh-discoveries {
  gap: 100px;
}

.rh-badge {
  position: absolute;
  border-radius: var(--btn-rd);
  font-size: var(--font-xs-size);
  max-width: 134px;
  z-index: 110;
  color: var(--color-dark-1);
  background: var(--color-light);
  box-shadow: 0px 4px 11.9px 0px #00000014;
  padding: 8px 12px;
}
.rh-badge img {
  width: 24px;
}
.how-work-badge .rh-badge:nth-child(2) {
  bottom: 85px;
  left: 91px;
}
.how-work-badge .rh-badge:nth-child(3) {
  bottom: 20px;
  left: 117px;
}

.rh-badge-slider-1 {
  border-radius: var(--card-rd);
  font-size: var(--font-xs-size);
  max-width: 220px;
  z-index: 110;
  color: var(--color-light);
  background: var(--color-dark-3);
  padding: 20px;
}

.rh-badge-slider-1 div {
  display: flex;
  align-items: center;
  font-size: var(--font-xs-size);
}

.rh-badge-slider-1 img {
  width: 64px;
  height: 64px;
}

#owl-carousel-second-fresh-discover .item {
  padding: 0 5px;
}

.custom-accordion .accordion-item {
  border: none;
  border-radius: var(--btn-rd);
  margin-bottom: 12px;
  overflow: hidden;
  border: none !important;
}

.custom-accordion .accordion-header {
  margin: 0;
}

.custom-accordion .accordion-button {
  background-color: var(--color-light);
  color: var(--color-dark-3);
  font-weight: 600;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 24px;
}

.custom-accordion .accordion-button::after {
  content: "+";
  font-size: 24px;
  color: var(--color-dark-3);
  background-image: none !important;
  transform: none;
  height: auto;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "×";
  transform: none;
  color: var(--color-error);
  background-image: none !important;
  transform: none;
  height: auto;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--color-dark-3);
}

.custom-accordion .accordion-body {
  background-color: var(--color-light);
  color: var(--color-dark-3);
  color: var(--color-gray-1);
  font-size: 15px;
  padding: 0 24px 18px;
}

.blog-card-img {
  position: relative;
}

.blog-card-img img {
  border-radius: var(--btn-rd);
}
.blog-recent-row-img {
  height: 228px;
  width: 284px;
  object-fit: cover;
  max-width: none;
}

.blog-date {
  position: absolute;
  border-radius: var(--btn-rd);
  bottom: 5px;
  right: 5px;
  background-color: var(--color-gray-4);
  padding: 8px 12px;
  margin: 0;
}

.blog-title {
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-family: "Satoshi", sans-serif;
  letter-spacing: 0.05rem;
}

.blog-description {
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.badge-success,
.badge-warning,
.badge-gray {
  padding: 5px 10px;
  font-weight: 700;
  border-radius: 5px;
  letter-spacing: 0.04rem;
  font-size: var(--font-xs-size);
}

.badge-success {
  background-color: #ebf7ef;
  color: #34aa63;
}
.badge-warning {
  background-color: #fef5e6;
  color: #f99604;
}
.badge-gray {
  background-color: #eff0f0;
  color: #545b62;
}

.inside-btn-icon {
  width: 17px !important;
}

.item-testimonials {
  flex: 0 0 23.5%;
  height: 400px;
  border-radius: var(--card-rd);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.item-phone-testimonials {
  flex: 0 0 23.5%;
  height: 400px;
  border-radius: var(--card-rd);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.card-inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.card-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.info-avalible {
  position: absolute;
  bottom: 7%;
  left: 3%;
  color: #fff;
  padding: 0 15px;
}
.info-avalible h4,
.card-info h5,
.click-avalible h3 {
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.info-avalible span,
.card-info span,
.click-avalible span {
  font-size: var(--font-xs-size);
  font-family: "Satoshi Light";
}
.card-info {
  flex: 1;
  padding: 1rem;
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
  flex-direction: column;
  z-index: 1;
}

.card-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)),
    linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  z-index: 1;
  pointer-events: none;
}

.card-info h3 {
  letter-spacing: 1px;
  line-height: 25px;
  font-size: 15px;
}

.item-testimonials.expanded {
  flex: 0 0 50%;
  z-index: 2;
}

.item-testimonials.expanded .card-info {
  display: flex;
}

.item-testimonials.expanded .info-avalible {
  display: none;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-slider {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.item-testimonials.hovered {
  flex: 0 0 50%;
  z-index: 2;
}

.item-testimonials.shrinked {
  flex: 0 0 14.6%;
  filter: blur(0);
}

.item-phone-testimonials.hovered {
  flex: 0 0 50%;
  z-index: 2;
}

.item-phone-testimonials.shrinked {
  flex: 0 0 14.6%;
  filter: blur(0);
}

.slider-prev.disabled,
.slider-next.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
  background-color: #eff0f0;
}
.slider-next .arrow-next {
  display: flex;
}
.slider-next .arrow-disable-next {
  display: none;
}
.slider-next.disabled .arrow-next {
  display: none;
}
.slider-next.disabled .arrow-disable-next {
  display: flex;
  transform: rotate(180deg);
}
.slider-prev .arrow-prev {
  display: flex;
}
.slider-prev .arrow-disable-prev {
  display: none;
}
.slider-prev.disabled .arrow-prev {
  display: none;
}
.slider-prev.disabled .arrow-disable-prev {
  display: flex;
  transform: rotate(180deg);
}

.slider-next {
  background-color: #eff0f0;
  padding: 17px 15px;
  border-radius: 100px;
}

.slider-prev {
  background-color: #eff0f0;
  transform: rotate(180deg);
  padding: 17px 15px;
  border-radius: 100px;
}
.comma {
  width: 68px;
  height: 68px;
}
.comma-description {
  font-size: 32px;
  line-height: 40px;
}
.how-it-work-badge {
  top: -70px;
  right: 10px;
  left: unset !important;
}
.side-icon {
  width: 24px;
  height: 24px;
}
.pricing-box {
  box-shadow: 2px 4px 12px 0px #00000014;
  border-radius: var(--card-rd);
  height: 676px;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-gray-1);
}
.pricing-list li i {
  font-size: 16px;
}
.dashed {
  border: none;
  border-top: 2px dashed #5e6164;
  height: 1px;
  background: none;
}
.pricing-img {
  height: 100%;
}

.input-wrapper .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  color: #92979d;
  font-size: 16px;
  pointer-events: none;
}

.tag-dropdown {
  border-right: 1px solid #cccfd1 !important;
  padding-right: 20px;
  margin-right: 5px;
  height: 70%;
  font-size: var(--font-sm-size);
}

.accordion-filter-bar {
  border-bottom: 1px solid var(--color-gray-3);
}

.tag-filter-bar {
  color: #fff;
  height: 58px;
  padding: 0rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}

.tag-filter-bar::-webkit-scrollbar {
  height: 6px;
}

.tag-filter-bar::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

.tag-filter-bar label {
  font-size: var(--font-sm-size);
  margin-bottom: 0;
  color: #92979d;
  cursor: pointer;
  font-weight: 400;
  white-space: nowrap;
}

.tag-filter-bar input[type="radio"] {
  accent-color: #fff;
  margin-right: 0.4rem;
}
.form-check-input {
  width: var(--font-sm-size) !important;
  height: var(--font-sm-size) !important;
  padding: 6px !important;
}

.tag-filter-bar input[type="radio"]:checked + label {
  color: #fff;
}

.tag-button {
  background: transparent;
  color: #fff;
  border: none;
  font-weight: 500;
  white-space: nowrap;
}

.divider {
  height: 20px;
  width: 1px;
  background-color: #444;
}

.tag-items {
  display: flex;
  gap: 0;
  min-width: max-content;
}

/* حذف استایل پیش‌فرض */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #999;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}

input[type="radio"]:checked {
  border-color: var(--color-light);
}

input[type="radio"]:checked::after {
  opacity: 1;
}

.form-check-input:checked {
  background-color: transparent !important;
}
.form-check-input:focus,
.form-control:focus {
  box-shadow: none !important;
}

.container-center {
  max-width: 100% !important;
}
.blog-post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 70%;
  width: 100%;
}

.profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-box {
  border-radius: 8px;
  padding: 0;
  resize: none;
}
.btn-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-right-btns button {
  margin-left: 8px;
}
.comment-icon,
.comment-icon a {
  color: #b4b8bb;
  padding: 0.5rem 0.75rem;
  font-size: var(--font-sm-size) !important;
}
.comment-icon i {
  font-size: 18px !important;
  width: 20px !important;
  height: 20px !important;
  padding-top: 2px;
}
.comment-header {
  font-size: var(--font-md-size);
  font-weight: 600;
}
.comment-time {
  font-size: var(--font-sm-size);
  color: #b4b8bb;
  padding-left: 5px;
}
.comment-actions {
  font-size: var(--font-sm-size);
  color: #b4b8bb;
  font-weight: 700;
}

.reply {
  padding-left: 2.5rem;
  border: none;
  border-left: 2px dashed var(--color-gray-4);
}

.contact-header {
  background: url("../images/bg-contact.svg") no-repeat center center;
  background-size: cover;
  color: var(--color-light);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
}
.contact-header h1 {
  font-weight: 700;
  font-size: 2.5rem;
}
.contact-header p {
  max-width: 600px;
  margin: 15px auto;
}
.contact-email,
.contact-social {
  margin-top: 20px;
}

.contact-form-container {
  position: relative;
  margin-top: -30px;
  padding: 40px;
  background: var(--color-light);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
}

.bg-contact-submit {
  background: url("../images/letter_send.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: -90px;
  right: -190px;
  z-index: 1000;
  width: 240px;
  height: 202px;
}

.about-header {
  object-fit: cover;
  height: 476px;
}

.faq-sidebar {
  border-right: 1px solid var(--color-gray-4);
  min-height: 100vh;
}

.faq-sidebar a {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  border-left: none;
  font-size: var(--font-sm-size);
}

.faq-sidebar .faq-nav-link.active {
  font-weight: 700 !important;
  color: var(--color-primary-3) !important;
  border-left: none !important;
  background-color: transparent !important;
}

.faq-content h4 {
  font-weight: bold;
  font-size: 1.25rem;
}

.info-section {
  width: 40%;
  padding: 20px;
}

.form-section {
  background: var(--color-light);
  padding: 40px;
  border-radius: var(--card-rd);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.benefits-box {
  background: var(--color-light);
  padding: 20px;
  border-radius: var(--card-rd);
  margin-top: 20px;
}

.form-sign {
  height: 600px;
}
.form-sign-bg-dark {
  height: 80px;
}
.sign-check-box[type="checkbox"] {
  accent-color: #33373b;
  width: 16px;
  height: 16px;
}
.form-box-sign {
  height: 600px;
  overflow-y: scroll;
  scrollbar-width: none;
}
.success-icon {
  width: 120px;
  height: 120px;
}

.success-box {
  max-width: 700px;
}

.custom-modal {
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.custom-modal.show {
  display: flex;
}

.custom-modal-content {
  position: relative;
  background-color: #fff;
  max-width: 600px;
  width: 90%;
  border-radius: 20px;
  animation: fadeInModal 0.3s ease-in-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.custom-close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  border: 2px solid var(--color-gray-3);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  color: var(--color-dark-1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.custom-close-btn:hover {
  transform: scale(1.1);
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-10px);
  }
  40%,
  80% {
    transform: translateX(10px);
  }
}
