* {
    margin: 0;
    padding: 0;
    user-select: none;
    outline: none;
    color: #2C2C2C;
}



@font-face {
    font-family: "Montserrat-Medium";
    /* Гарнитура шрифта */
    src: url('../fonts/Montserrat/Montserrat-Medium.ttf')format("truetype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Montserrat-Bold";
    /* Гарнитура шрифта */
    src: url('../fonts/Montserrat/Montserrat-Bold.ttf')format("truetype");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Helvetica-Light";
    /* Гарнитура шрифта */
    src: url('../fonts/Helvetica/Helvetica-Light.ttf')format("truetype");
    font-style: normal;
    font-weight: 300;
}



body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-image: url(../images/fon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

p {
    font-family: Arial, Helvetica, sans-serif;
}


.header {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 465px;
    background-image: url(../images/Header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.header div {
    max-width: 660px;
    padding: 40px 70px;
    background-color: #a72126c7;
}

.header div h1 {
    color: #ffffff;
    font-family: Montserrat-Bold;
    font-size: 40px;
    text-align: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px; 
    padding: 60px 0;
}

.container__box {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 950px;
    padding: 0 30px;
}

.container__box .number {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    height: 70px;
    margin: 0 50px 0 0;
    background-color: #A72126;
    color: #ffffff;
    font-family: Montserrat-Bold;
    font-size: 36px;
}

.container__box .number::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, rgba(167,33,38,1) 0%, rgba(167,33,38,0) 100%);
    top: 100%;
}

.container__box .text {
    flex-grow: 1;
}

.container__box .text h2 {
    color: #A72126;
    font-family: Montserrat-Medium;
    font-size: 26px;
    padding: 0 0 30px 0;
}

.container__box .text p {
    font-size: 16px;
}

.container__box .text ul {
    margin: 0;
}

.container__box .text ul li {
    list-style: none;
    position: relative;
    padding: 5px 0 5px 20px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}
  
.container__box .text ul li::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #2C2C2C;
}

.container__QR {
    padding: 60px 0 180px 0;
    background-color: #A72126;
}

.container__box__QR {
    justify-content: space-around;
}

.QR {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.QR img {
    width: 180px;
    margin: 0 0 10px 0;
    padding: 0 20px 0;
}

.QR p {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #ffffff;
    border-top: 2px solid #A72126;
}

.footer .footer__box {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer .footer__box p {
    margin: 10px 0;
    font-family: Montserrat-Medium;
}

.footer .footer__box a {
    text-align: center;
    padding: 10px 20px;
    margin: 6px;
    border: none;
    background-color: #A72126;
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    font-family: Montserrat-Medium;
    transition: .4s;
    cursor: pointer;
}

.footer .footer__box a:hover {
    opacity: 0.7;
}

.footer .footer__box a:active {
    opacity: 1;
}

.helpme::after {
    content: "ID - Accounts_at_CZCB";
    position: absolute;
    background-color: #fff;
    padding: 10px 20px;
    color: #A72126;
    font-size: 14px;
    font-family: Montserrat-Medium;
    opacity: 0;
    bottom: -12px;
    transition: .4s;
}

.helpme {
    position: relative;
}

.helpme:hover::after {
    opacity: 1;
}

.helpme2::after {
    content: "@accounts_CZCB";
    position: absolute;
    background-color: #fff;
    padding: 10px 20px;
    color: #A72126;
    font-size: 14px;
    font-family: Montserrat-Medium;
    opacity: 0;
    bottom: -12px;
    transition: .4s;
}

.helpme2 {
    position: relative;
}

.helpme2:hover::after {
    opacity: 1;
}

/* --------- POPUP ---------*/

.overlay-popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 999999;
}

.popup {
    width: 400px;
    padding: 40px 20px 20px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    background-color: #A72126;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
}

.close-popup {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.close-popup:before {
    width: 25px;
    height: 2px;
    position: absolute;
    top: 11px;
    left: 0;
    content: '';
    background-color: #ffffff;
    transform: rotate(-45deg);
}

.close-popup:after {
    width: 25px;
    height: 2px;
    position: absolute;
    top: 11px;
    left: 0;
    content: '';
    background-color: #ffffff;
    transform: rotate(45deg);
}

.feed-popup-block {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.feed-popup-text-block {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.feed-popup-check-block {
    width: auto;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

#answer {
    color: #fff;
    text-align: center;
    font-family: Montserrat-Medium;
}

/* --------- POPUP ---------*/







/* --------- FEEDBACK --------- */

@media only screen and (min-width: 1420px) {

    .write-us {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 10px;
    }
    
}

.field-block {
    margin-bottom: 20px;
}

.feed-block {
    width: 25%;
    margin: 0 3%;
    margin-bottom: 30px;
    display: inline-block;
}

.feed-text-block {
    width: 88%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.feed-check-block {
    width: auto;
    display: inline-block;
    margin-bottom: 0px;
}

.field-block label,
.field-block .field {
    width: calc(100% - 20px);
    display: block;
}

.field-block label {
    margin-bottom: 10px;
    text-align: left;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.field-block .field {
    padding: 10px;
    border: none;
    font-size: 1em;
    transition: .4s;
}

.field-block .field:focus {
    box-shadow: 0 0 150px rgba(0, 0, 0, .2);
}

.field-block textarea {
    resize: vertical;
}

/* ------ CHECKBOX ------ */

.toggle-button {
    margin-right: 10px;
    position: relative;
    color: #fff;
    display: inline-block;
}

.toggle-button label {
    height: 25px;
    line-height: 25px;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s;
}

.toggle-button label:before,
.toggle-button label:after {
    position: absolute;
    right: 1rem;
    transition: all 0.2s .1s ease-out;
}

.toggle-button input {
    display: none;
}

.toggle-button-icon {
    cursor: pointer;
    pointer-events: none;
}

.toggle-button-icon:before,
.toggle-button-icon:after {
    content: "";
    position: absolute;
    top: 42%;
    left: 30%;
    transition: .2s ease-out;
}

.toggle-button input[type=checkbox] + label {
    width: 25px;
    background: white;
}

.toggle-button input[type=checkbox] + label:before {
    opacity: 0;
    transform: translate(0, 20px);
}

.toggle-button input[type=checkbox] + label:after {
    opacity: 1;
    transform: translate(0, 0);
}

.toggle-button input[type=checkbox]:checked ~ label {
    width: 25px;
}

.toggle-button input[type=checkbox]:checked ~ .toggle-button-icon:before {
    background: #61B136;
    transform: translate(-30%, 100%) rotate(45deg) scale(0.6, 1);
}

.toggle-button input[type=checkbox]:checked ~ .toggle-button-icon:after {
    background: #61B136;
    transform: translate(20%) rotate(-45deg);
}

.toggle-button .toggle-button-icon {
    position: absolute;
    height: 25px;
    width: 25px;
    top: 0;
    left: 0;
}

.toggle-button .toggle-button-icon:before,
.toggle-button .toggle-button-icon:after {
    width: 15px;
    height: 3px;
    border-radius: 3px;
    background: #FF5335;
    margin-left: -14%;
    top: 43%;
}

.toggle-button .toggle-button-icon:before {
    transform: rotate(45deg);
}

.toggle-button .toggle-button-icon:after {
    transform: rotate(-45deg);
}

.field-block-hiden {
    display: none;
}

/* ------ CHECKBOX ------ */

.check-text {
    position: relative;
    top: -6px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.feedbutton {
    margin-bottom: 5px;
    padding: 10px;
    position: relative;
    top: -6px;
    width: 100%;
    border: none;
    font-size: 1em;
    background-color: white;
    cursor: pointer;
    transition: .4s;
}

.feedbutton:hover {
    opacity: 0.7;
}

.feedbutton:active {
    opacity: 1;
}

/* ------ LOADER ------ */

#loader {
    display: none;
}

.sk-three-bounce {
    width: 8em;
    margin: auto;
    text-align: center;
}

.sk-three-bounce .sk-child {
    width: 1em;
    height: 1em;
    background-color: #fff;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce-1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce-2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ------ LOADER ------ */

/* --------- FEEDBACK --------- */



@media only screen and (max-width: 980px) {

    .number {
        display: none !important;
    }

}


@media only screen and (max-width: 594px) {
    
    .container__box__QR {
        flex-direction: column;
    }

    .QR {
        margin: 20px 0;
    }

    .footer {
        position: relative;
        flex-direction: column;
    }

    .header div h1 {
        font-size: 26px;
    }

    .container__box .text h2 {
        font-size: 20px;
    }

    .container__QR {
        padding: 60px 0 60px 0;
        background-color: #A72126;
    }

}