@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Bold.eot');
    src: url('../fonts/MyriadPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MyriadPro-Bold.woff') format('woff'),
        url('../fonts/MyriadPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.eot');
    src: url('../fonts/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MyriadPro-Regular.woff') format('woff'),
        url('../fonts/MyriadPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Semibold.eot');
    src: url('../fonts/MyriadPro-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MyriadPro-Semibold.woff') format('woff'),
        url('../fonts/MyriadPro-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
    outline: none!important;
}
body {
    font-family: 'Myriad Pro', sans-serif;
}

.page_cover {
    background-color: #b13c11;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    opacity: 1;
    transition: .3s ease;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
}

.page_cover_img > img {
    max-width: 100%;
    height: auto;
}

.page_cover_img {
    position: relative;
}

.button {
    bottom: 0;
    position: absolute;
    width: 631px;
    height: 139px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 78px;
    padding-right: 60px;
    background: #fff;
    height: 139px;
    color: #000000;
    font-weight: 600;
    font-size: 36px;
    border-radius: 24px;
    left: 50%;
    transform: translateX(-50%);
}


@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.95);
    }
    100% {
      transform: scale(1);
    }
  }
  .button img {
    animation: pulse 1.5s infinite;
}
.page_survey {
    height: 100vh;
    position: relative;
    padding-top: 90px;
    max-width: 638px;
    margin: 0 auto;
    overflow: hidden;
}
.page_survey::before {
    content: '';
    background-image: url(../img/slavia_logo.svg);
    width: 277px;
    height: 136px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    bottom: 16px;
    z-index: -1;
    right: -60px;
}

h1 {
    margin: 0;
    margin-bottom: 31px;
    font-size: 47px;
    line-height: 121%;
}

.question_wrp {
    margin-bottom: 30px;
    background-color: #F7F7F7;
    border-radius: 16px;
    padding: 36px 34px;
    padding-top: 30px;
    border: 1px solid #F7F7F7;
}

.question_wrp h2 {
    margin: 0;
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
}

.answers {
    display: flex;
    gap: 20px;
}

.answers div {
    font-size: 20px;
    color: #1E1715;
    font-weight: 600;
    flex: 1;
    text-align: center;
    height: 54px;
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.answers div.active {
    background-color: #A03219;
    color: #fff;
}

.question_form_wrp {
    display: flex;
    gap: 20px 28px;
    flex-wrap: wrap;
}

.input_el {
    width: 100%;
}

.input_el.half {
    width: calc(50% - 15px);
}

.input_el p {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 125%;
    margin-top: 0;
}

.input_el input {
    margin: 0;
    width: 100%;
    height: 54px;
    background-color: #F7F7F7;
    border: 1px solid #F7F7F7;
    border-radius: 8px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: normal;
}

::placeholder {
  color: #5A5A5A;
  opacity: 1;
}

::-ms-input-placeholder { 
  color: #5A5A5A;
}

.pressing {
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: 42px;
    color: #1E1715;
    font-size: 16px;
    line-height: 150%;
    min-height: 29px;
    display: flex;
    align-items: center;
}

.pressing a {
    text-decoration: underline;
    color: inherit;
    padding-left: 4px;
}

.pressing::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    width: 29px;
    height: 29px;
    border: 2px solid #1E1715;
    box-sizing: border-box;
    transition: .3s;
}

.send_answers {
    margin-top: 4px;
    width: 100%;
    height: 66px;
    border: none;
    background: #A03219;
    border-radius: 8px;
    font-size: 21.5px;
    color: #fff;
    font-weight: 600;
    padding: 0;
    line-height: 1;
}
.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}
:focus::placeholder {
    color: transparent;
}
input:focus {
    border-color: #333!important;
}
.validate_error {
    border-color: #a03219!important;
}
.pressing.pressed::before {
border-width: 9px;
}
.pressing.validate_error::before {
    border-color: #a03219!important;
}

.successfully_sent {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 21, 21, 0.72);
    backdrop-filter: blur(32.1px);
    transition: .3s;
    pointer-events: none;
    opacity: 0;
}

.successfully_sent_inner {
    border-radius: 24px;
    background: #fff;
}

.successfully_sent_inner h2 {
    margin: 0;
    padding-top: 55px;
    padding-left: 47px;
    padding-right: 47px;
    font-size: 27px;
    color: #1E1715;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 35px;
}

.successfully_sent_inner img {
    max-width: 275px;
    height: auto;
    margin-bottom: 30px;
    margin-left: 47px;
    margin-top: 20px;
}

.successfully_sent_inner h2 span {
    font-size: 45px;
    font-weight: bold;
    padding-top: 15px;
    display: block;
}

.successfully_sent.vis {
    opacity: 1;
    pointer-events: all;
}

.data_processing_modal {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 21, 21, 0.72);
    backdrop-filter: blur(32.1px);
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}

.data_processing_modal_inner {
    position: relative;
    width: calc(100% - 100px);
    height: 90vh;
    overflow: auto;
    background: #fff;
}

.data_processing_modal_close {
    background: #fff;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 10000;
    padding: 8px;
    width: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data_processing_modal_close img {
    width: 36px;
    height: auto;
    pointer-events: none;
}

.data_processing_modal_inner iframe {
    width: 100%;
    height: 100%;
    z-index: 0;
    position: relative;
}

.data_processing_modal.showing {
    opacity: 1;
    pointer-events: all;
}

form.post-password-form {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form.post-password-form p:nth-child(1) {
    font-weight: bold;
    font-size: 20px;
    max-width: 400px;
    line-height: 1.4;
}

.post-password-form label {
    width: 100%;
    display: block;
}

.post-password-form label input {
    font-size: 16px;
    height: 34px;
    padding: 0 16px;
    margin-left: 10px;
}

.post-password-form  input[type="submit"] {
    width: 100%;
    display: block;
    height: 50px;
    margin-top: 20px;
    background: #333;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 20px;
}
.show_offer .page_survey {
    display: none!important;
}

.show_offer .page_cover {
    display: none;

}
.show_offer .forms_all {
    display: block!important;
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding: 40px 0;

}
.show_offer .forms_all  ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding: 20px;
    gap: 20px;
    flex-direction: column ;
}
.show_offer .forms_all ul li {
    width: 100%;
    background-color: #f2f2f2;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}