header {
    /*background: url("../img/quetions/head_bg.png") no-repeat;*/
    background-color: black;
    background-size: cover;
    background-position: center bottom;
    height: 398px;

    width: 100%;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.calendar-block {
    width: 100%;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.quetions {
    padding: 50px 0 80px;
}

.accordion {
    width:100%;
    margin: 0 auto
}

.info {
    display: none;
}

.accordion_item {
    background: #fff;
    margin: 15px 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: .4s;
}

.accordion_item:before, .accordion_item:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

.accordion_item:before {
    background-color: #fdb713;
    background-image: url("../img/quetions/quetions_icons.png");
    background-position: center 15px;
    background-repeat: no-repeat;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 0 0 30px 0;
    transition: background-color .4s;
}

.accordion_item:after {
    background-image: url("../img/quetions/quetions_arrow.png");
    background-position: center 28px;
    background-repeat: no-repeat;
    right: 15px;
    bottom: 0;
    width: 50px;
    transition: .4s;
}

.accordion_item h2 {
    display: block;
    padding: 32px 90px;
    cursor: pointer;
}

.accordion_item.active_block {
    background: #fdb713;
    padding-bottom: 40px;
}

.accordion_item.active_block:before {
    background-color: #faa814;
    background-position: center -88px;
    box-shadow: 3px 3px 15px rgba(0,0,0,.3);
}

.accordion_item.active_block:after {
    background-position: center -88px;
}

.info {
    background: #fff;
    margin: auto;
    width: 93%;
    padding: 40px 50px;
    font-weight: 300;
    line-height: 1.7em;
}

@media screen and (max-width: 991px) {
    header {
        height: 270px;
    }

    .header-main {
        font-size: 25pt;
    }
}

@media screen and (max-width: 784px) {
    .header-block__two {
        margin-bottom: 40px;
    }

}

@media screen and (max-width: 679px) {
    header {
        height: 210px;
    }

    .header-main {
        font-size: 20pt;
        margin-top: 160px;
    }

    .accordion_item h3 {
        font-size: 16px;
        padding: 20px 70px;
    }

    .accordion_item::before {
        background-position: center 7px;
        width: 50px;
        height: 50px;
        background-size: 60%;
    }

    .accordion_item.active_block::before {
        background-position: center -82px;
    }

    .accordion_item::after {
        background-size: 45%;
        background-position: center 16px;
    }

    .accordion_item.active_block::after {
        background-position: center -75px;
    }

    .accordion_item.active_block {
        padding-bottom: 18px;
    }

    .info {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 459px) {
    .header-main {
        font-size: 20px;
        margin-top: 160px;
    }

    .accordion_item h3 {
        padding: 15px 60px;
    }

    .info {
        padding: 10px 15px;
        font-size: 14px;
    }
}