.pro-testimo-wrapper {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
  .pro-testimo-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pro-testimo-card {
  position: relative;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  color: white;
  text-align: start;
  font-family: "Noto Sans Hebrew";
  min-height: 20rem;
}
.pro-testimo-card .pro-testimo-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4509803922);
  border-radius: 10px;
}
.pro-testimo-card h3 {
  font-size: 1.6rem;
  position: relative;
}
.pro-testimo-card p {
  font-size: 1.6rem;
  position: relative;
}
.pro-testimo-card .pro-testimo-play {
  position: absolute;
  bottom: 0.4rem;
  right: 1rem;
}

.pro-testimo-modal {
  display: none;
  z-index: 999999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.pro-testimo-modal .pro-testimo-modal-content {
  position: relative;
  border-radius: 10px;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pro-testimo-modal .pro-testimo-modal-content .pro-testimo-close {
  position: absolute;
  right: 10%;
  cursor: pointer;
  color: white;
  font-size: 5rem;
  top: -6rem;
}
@media (max-width: 1023px) {
  .pro-testimo-modal .pro-testimo-modal-content .pro-testimo-close {
    right: 0;
  }
}
.pro-testimo-modal .pro-testimo-modal-content .pro-testimo-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pro-testimo-modal .pro-testimo-modal-content .pro-testimo-video-container iframe {
  height: auto;
  aspect-ratio: 16/9;
  width: 80%;
}
@media (max-width: 1023px) {
  .pro-testimo-modal .pro-testimo-modal-content .pro-testimo-video-container iframe {
    width: 100%;
  }
}

.feature-post-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-family: "Noto Sans Hebrew";
}
.feature-post-image {
  position: relative;
  padding-top: 66%;
  border-radius: 10px;
}
.feature-post-image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px !important;
}
.feature-post-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-post-inner-title {
  font-size: 3.2rem;
}
.feature-post-inner h3 {
  display: none;
}
.feature-post-inner p {
  font-size: 2rem;
}

.post-vote {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
}
.post-vote .post-vote__question {
  font-size: 2rem;
  font-family: "Noto Sans Hebrew";
  font-weight: 700;
  margin: 0;
}
.post-vote .post-vote__circles {
  display: flex;
  gap: 2rem;
}
.post-vote .post-vote__circles .post-vote__circle {
  --base-size: 8rem;
  width: var(--base-size);
  height: var(--base-size);
  border: 2px solid #FF7A01;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease, height 0.3s ease;
  background: #fff;
  cursor: pointer;
}
.post-vote .post-vote__circles .post-vote__circle .vote-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: inherit;
  padding: 0;
  font-family: "Noto Sans Hebrew";
  color: #141414;
}
.post-vote .post-vote__circles .post-vote__circle .vote-count {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #efefef;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}/*# sourceMappingURL=pro-testimo.css.map */