/*section for top menu*/

.header {
    height: 100px;
    background-color: black;
}

@media only screen and (max-width: 667px) {
    .header {
        height: 80px;
    }
}

/*any container*/

.container-black {
    width: 100%;
    background-color: #262626;
}

.container-white {
    width: 100%;
    background-color: white;
}

.sjimator {
    margin-left: 10%;
    margin-right: 10%;
    height: auto;
}

.sjimator-on-page {
    margin-left: 14%;
    margin-right: 10%;
    height: auto;
}

.second-sjimator-on-page {
    margin-right: 20%;
    background-color: green;
}

@media only screen and (max-width: 1370px) {
    .sjimator-on-page {
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media only screen and (max-width: 667px) {
    .sjimator-on-page {
        margin-left: 5%;
        margin-right: 5%;
    }
}

/* hero section */

.container-really-black {
    width: 100%;
    background-color: transparent;
}

.picture {
    background-image: url('../img/hero_photo.png');
    width: 100%;
    height: 472px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 1370px) {
    .picture {
        height: 420px;
    }
}

@media only screen and (max-width: 667px) {
    .picture {
        height: 150px;
        background-size: cover;
        background-image: url('../img/hero_photo.png1');
    }
}

.logoText {
    position: relative;
    display: inline;
}

.hero-logo {
    width: 100px;
    height: 100px;
    background-image: url('../img/Logo\ \(черная\).svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    background-position: center center;
}

@media only screen and (max-width: 667px) {
    .hero-logo {
        width: 50px;
        height: 50px;
    }
}

.hero-text {
    color: white;
    font-style: italic;
    text-align: center;
    margin-top: 25px;
    font-size: 20px;
}

@media only screen and (max-width: 667px) {
    .hero-text {
        margin-top: 10px;
        font-size: 15px;
    }
}

/* singers section */

.singers-title {
    text-align: center;
    padding-top: 35px;
    font-weight: bold;
    font-size: 25px;
}

@media only screen and (max-width: 667px) {
    .singers-title {
        font-size: 20px;
    }
}

.white {
    color: white
}

.singers-text {
    text-align: center;
    padding-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: lightgray;
    padding-bottom: 15px;
}

@media only screen and (max-width: 667px) {
    .singers-text {
        font-size: 15px;
    }
}

.singers-threesingers {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-around;
}

@media only screen and (max-width: 667px) {
    .singers-threesingers {
        display: block;
    }
}

.singers-onesinger {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 1024px) {
    .singers-onesinger {
        display: contents;
    }
}

.onesinger-link {
    text-decoration: none;
    color: black;
    align-items: center;
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 667px) {
    .onesinger-link {
        align-items: none;
        display: block;
        flex-direction: none;
    }
}

.onesinger-photo {
    width: 250px;
    height: 250px;
    background-size: cover;
    border: 10px solid black;
    border-radius: 50%;
    filter: grayscale(100%);
}

@media only screen and (max-width: 667px) {
    .onesinger-photo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 200px;
        height: 200px;
        border: 5px solid black;
    }
}

.onesinger-photo:hover {
    filter: none;
}

.onesinger-name {
    text-align: center;
    padding-top: 20px;
    font-weight: bold;
    font-size: 25px;
    white-space: nowrap;
}

@media only screen and (max-width: 667px) {
    .onesinger-name {
        padding-top: 10px;
        font-size: 18px;
    }
}

.onesinger-job {
    color: gray;
    text-align: center;
}

@media only screen and (max-width: 667px) {
    .onesinger-job {
        font-size: 15px;
        padding-bottom: 20px;
    }
}

.singers-showall {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 30px;
}

.singers-showall_link {
    text-decoration: none;
    color: orange;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}

.black-hover:hover {
    color: black;
}

.white-hover:hover {
    color: white;
}

.singers-showall_link:focus {
    color: black;
    border-bottom: none;
}

/* songs*/

.eight-songs {
    column-count: 2;
    column-gap: 5px;
    margin-top: 20px;
}

@media only screen and (max-width: 667px) {
    .eight-songs {
        column-count: 1;
        column-gap: none;
        margin-top: 0;
    }
}

.eight-songs-2 {
    width: 75%;
    margin-top: 30px;
}

@media only screen and (max-width: 667px) {
    .eight-songs-2 {
        column-count: none;
        column-gap: none;
        margin-top: 0;
    }
}

.songbox {
    background-color: white;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.songbox:hover, .songbox:focus {
    background-color: #e6e6e6;
}

.songbox-link {
    text-decoration: none;
}

.songbox-singer {
    display: inline-block;
    width: 60%;
}

@media only screen and (max-width: 667px) {
    .songbox-singer {
        width: 50%
    }
}

@media only screen and (max-width: 667px) {
    .songbox-singer {
        display: block;
        width: 100%;
    }
}

.songbox-singer-photo {
    width: 45px;
    height: 45px;
    background-size: cover;
    display: inline-block;
    padding: 5px;
    margin: 10px 20px;
    vertical-align: middle;
    border-radius: 50%;
}

@media only screen and (max-width: 667px) {
    .songbox-singer-photo {
        display: inline-block;
        margin: 5px;
    }
}

.songbox-singer-info {
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 667px) {
    .songbox-singer-info {
        display: inline-block;
        text-align: center;
        font-size: 15px;
    }
}

.songbox-singer-song {
    color: black;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: Arial;
}

.songbox-singer-singer {
    color: gray;
    font-family: Arial;
}

@media only screen and (max-width: 667px) {
    .songbox-singer-singer {
        display: none;
    }
}

.songbox-icons {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    margin-right: 5px;
    width: 36%;
}

@media only screen and (max-width: 1370px) {
    .songbox-icons {
        width: 36%;
    }
}

@media only screen and (max-width: 667px) {
    .songbox-icons {
        display: none;
    }
}

.songbox-icon-one {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('../img/fb.jpg');
    background-size: cover;
    margin-left: 25px;
}

.songbox-icon-text {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url('../img/signs/text.svg');
    background-size: cover;
    margin-left: 25px;
}

.songbox-icon-yt {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url('../img/signs/youtube.svg');
    background-size: cover;
    margin-left: 25px;
}

.songbox-icon-language {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url('../img/signs/language.svg');
    background-size: cover;
    margin-left: 25px;
}

.songbox-icon-chords {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url('../img/signs/chords.svg');
    background-size: cover;
    margin-left: 25px;
}

@media only screen and (max-width: 1370px) {
    .songbox-icon-one, .songbox-icon-text, .songbox-icon-language, .songbox-icon-chords, .songbox-icon-yt {
        margin-left: 5px;
    }
}

/* новости */

.news_table {
    justify-items: center;
}

.news_table ul {
    position: relative;
    width: 100%;
}

.news__list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 10px;
}

@media only screen and (max-width: 667px) {
    .news__list {
        display: contents;
    }
}

.news__item {
    height: 350px;
    margin-bottom: 35px;
    margin: 10px;
    border-radius: 5px;
    background-color: lightgray;
    justify-content: space-between;
}

@media only screen and (max-width: 667px) {
    .news__item {
        width: 90%;
        background-color: gray;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.news__content {
    position: relative;
    height: 350px;
    width: auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
}

.news__content:hover img {
    transform: scale(1.1, 1.1);
}

.news__content img {
    transition: 0.5s ease;
}

@media only screen and (max-width: 667px) {
    .news__content {
        display: block;
    }
}

.news__disc {
    position: absolute;
    height: 170px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    background: rgba(35, 35, 35, 1);
    font-size: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 5px 5px;
}

@media only screen and (max-width: 667px) {
    .news__disc {
        height: 180px;
        transform: none;
        transition: none;
        padding: 10px 10px;
    }
}

.news_link {
    text-decoration: none;
}

.news__img {
    display: block;
}

@media only screen and (max-width: 1370px) {
    .news__img {
        height: inherit;
        width: auto;
    }
}

@media only screen and (max-width: 667px) {
    .news__img {
        width: auto;
        max-height: 50%;
        margin: 0 auto;
        align-items: center;
    }
}

.news__disc-title {
    text-align: left;
    color: #ffcc33;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.news__disc-title:hover {
    color: white;
}

@media only screen and (max-width: 667px) {
    .news__disc-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

.news__disc-text {
    text-align: left;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.3;
}

@media only screen and (max-width: 667px) {
    .news__disc-text {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

.news-btn {
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    color: black;
    border-radius: 40px;
    background-color: #ffcc33;
    padding: 10px;
    font-weight: bold;
    float: right;
    text-decoration: none;
}

@media only screen and (max-width: 667px) {
    .news-btn {
        border-radius: none;
        font-size: 15px;
        font-weight: bold;
        padding-bottom: none;
        display: block;
    }
}

.news-btn:hover {
    background: white;
}

/* instruments */

.inst__list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

@media only screen and (max-width: 667px) {
    .inst__list {
        display: contents;
    }
}

.inst_link {
    text-decoration: none;
}

.inst__item {
    width: auto;
    height: 286px;
    margin-bottom: 35px;
    display: inline-block;
}

@media only screen and (max-width: 667px) {
    .inst__item {
        margin: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: inherit;
    }
}

.inst__img-block {
    text-align: center;
    margin-bottom: 15px;
}

@media only screen and (max-width: 667px) {
    .inst__img-block {
        display: block;
    }
}

.inst__img {
    width: inherit;
    height: 230px;
    border: 3px solid white;
}

@media only screen and (max-width: 667px) {
    .inst__img {
        margin: 0 auto;
    }
}

.inst__img:hover, .inst__img:focus {
    border: 3px solid black;
}

.inst__disc {
    background: rgba(35, 35, 35, 0.8);
    font-size: 15px;
    color: white;
    margin-top: 25px;
    text-align: center;
    font-weight: bold;
}

@media only screen and (max-width: 667px) {
    .inst__disc {
        transform: none;
        transition: none;
        padding: 10px 10px;
    }
}

.inst__disc-text {
    font-size: 20px;
    display: inline-block;
}

.inst__disc-price {
    display: inline-block;
    color: white;
    font-size: 20px;
}

/*contact us form*/

.contactus {
    height: 330px;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 5rem;
    padding-top: 2rem;
    background-color: #f2f3f5;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(207, 207, 207, 0.9);
    -moz-box-shadow: 0px 4px 5px 0px rgba(207, 207, 207, 0.9);
    box-shadow: 0px 4px 5px 0px rgba(207, 207, 207, 0.9);
}

@media only screen and (max-width: 667px) {
    .contactus {
        display: contents;
    }
}

.contactus-main {
    height: 220px;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 667px) {
    .contactus-main {
        display: contents;
    }
}

.contactus-main-info {
    width: 49%;
    height: inherit;
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 667px) {
    .contactus-main-info {
        width: 100%;
    }
}

.input_style[type=text], .input_style[type=email] {
    width: 90%;
    height: 45px;
    padding-left: 10px;
    margin-left: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    border: none;
}

@media only screen and (max-width: 667px) {
    .input_style[type=text], .input_style[type=email] {
        margin-bottom: 10px;
        margin-top: 10px;
        border: 2px solid dimgray;
    }
}

.contactus-main-msg {
    width: 49%;
    height: 200px;
    float: right;
}

@media only screen and (max-width: 667px) {
    .contactus-main-msg {
        display: contents;
    }
}

textarea {
    width: 90%;
    height: 180px;
    padding-top: 15px;
    padding-left: 10px;
    margin-left: 15px;
    border-radius: 5px;
    border: none;
}

@media only screen and (max-width: 667px) {
    textarea {
        width: 90%;
        margin-bottom: 10px;
        border: 2px solid dimgray;
    }
}

.contactus-btn {
    height: 70px;
    margin-left: 5rem;
    margin-right: 5rem;
    text-align: center;
}

@media only screen and (max-width: 667px) {
    .contactus-btn {
        display: contents;
    }
}

.submit-btn {
    width: 20%;
    height: 80%;
    color: white;
    background-color: #52ac64;
    font-size: 20px;
    font-weight: bold;
    border-radius: 7px;
}

@media only screen and (max-width: 667px) {
    .submit-btn {
        width: initial;
        height: 40px;
        margin-left: 30%;
        color: black;
        background-color: #ffcc33;
        border: 2px solid black;
        font-size: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.red {
    color: red;
    margin-top: 2px;
}

/* footer */

.footer_in_page {
    bottom: 0px;
    position: fixed;
    width: 100%;
}

.footer-align {
    font-size: 20px;
}

@media only screen and (max-width: 667px) {
    .footer-align {
        text-align: left;
    }
}