blockquote {
  font-style: italic;
  position: relative;
  margin-left: 10px;
}

blockquote::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 2px;
  height: 100%;
  margin-left: 10px;
  background-color: #000;
}

@media (min-width: 768px) {
  .splide-wrap {
    width: 450px;
    margin: 0 auto;
  }

  .bax {
    max-width: 50%; 
    margin: 0 auto; 
    display: block;
  }
}

/* ─── Form ───────────────────────────────────────────────────────────────── */
.top_6_oznak-wraper{
  margin-top: 10px;
  background-color: #F9F8F7;
}

.video-wrapper {
  position: relative;
}
.video{
    width: 100%;
}
.unmute {
  position: absolute;
  width: 280px;
  height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(57, 116, 255, 0.75);
  flex-direction: column;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%,-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  
  70% {
    transform: translate(-50%,-50%) scale(1.03);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  
  100% {
    transform: translate(-50%,-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


.btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    outline: none;
    border: none;
    border-style: solid;
    border-width: 0.1rem;
    border-color: rgb(214, 178, 106);
    border-radius: 4px 4px 4px 4px;
    padding: 1rem 4rem;
    width: max-content;
    max-width: 100%;
    box-shadow: 0 0px 0px 0px rgba(214, 178, 106, 0);
    font-size: 16px;
    color: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(214, 178, 106), rgb(214, 178, 106));
    transition: 150ms transform;
    margin: 0px auto;
    margin-bottom: 50px;
}

.btn-primary .flare {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.15) 100%);
    background-origin: content-box;
    transform: skewX(-45deg) translateX(-150%);
    animation: btn_primary_flare_moving 3s ease-in-out infinite;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    min-height: 100%;
}

.modal__content {
    position: relative;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 410px;
    background-color: rgb(252, 245, 237);
    opacity: 0;
    transform: translateY(-100%);
    transition: transform var(--transition), opacity var(--transition);
}

.modal.show .modal__content {
    opacity: 1;
    transform: translateY(0);
    transition: transform var(--transition), opacity var(--transition);
}

.modal-creatium__title {
    font-family: var(--font-family-title);
    text-align: center;
   
}

.modal-creatium__form {
    margin-top: 1rem;
}

.modal .home-form,
.home-form {
    margin-top: -1rem;
}

.modal .form label {
    font-size: 14px;
    color: rgb(51, 51, 51);
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 0px;
}

.modal .form input {
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    padding: 12px 10px;
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.5);
    background-color: rgb(252, 245, 237);
    cursor: initial;
    max-width: 100%;
}

.modal .form .btn-primary {
    color: rgb(255, 255, 255);
    cursor: pointer;
    margin-top: 25px;
}

.consultation-inputs {
    display: flex
;
    gap: 16px;
    flex-direction: column;
}

.modal__close {
    position: absolute;
    top: -10px;              /* отступ сверху */
    right: -10px;            /* отступ справа */
    width: 30px;            /* размер кнопки */
    height: 30px;
   border: 2px solid;
    border-radius: 50%;     /* круглая кнопка */
    background-color: #fff; /* белый фон */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;          /* чтобы поверх попапа */
    padding: 0;
}

.modal__close:hover .close-cross::before,
.modal__close:hover .close-cross::after {
    background-color: #000; /* цвет крестика при наведении */
}

.close-cross {
    position: relative;
    width: 20px;
    height: 20px;
}

.close-cross::before,
.close-cross::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;              /* толщина линии крестика */
    background-color: #333;    /* цвет крестика */
    transform-origin: center;
}

.close-cross::before {
    transform: rotate(45deg);
}

.close-cross::after {
    transform: rotate(-45deg);
}

.wpcf7 form .wpcf7-response-output {
    color: #0b0b0b;
    
}

@media (max-width: 768px) {
    .modal .form input {
        border-radius: 8px;
        font-size: 16px;
        max-width: 90%;
        display: block;
        margin: 0px auto;
    }
    .modal .form label{
      max-width: 90%;
        display: block;
        margin: 0px auto;
        width: 100%;
    }
    .modal-creatium__title {
    font-size: 26px;
}
}