@import "style.css";
@import url(./fonts/roboto.css);

.requisites {
    flex: 1;
}

.requisites__container {
    max-width: 1330px;
    width: 100%;
    padding: 30px 40px 48px 80px;
    margin: 0 auto;
}

.requisites__info {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 2px;
}

.requisites__info::before {
    content: '';
    position: absolute;
    top: -2%;
    left: -42px;
    display: block;
    height: 104%;
    width: 5px;
    background-color: #DFAA5B;
}

.requisites__info::after {
    content: '';
    position: absolute;
    top: -26%;
    right: 0;
    display: block;
    height: 114%;
    width: 5px;
    background-color: #DFAA5B;
}

@media screen and (max-width: 476px) {
    .requisites__info {
        font-size: 18px;
    }

    .requisites__info::after {
        display: none;
    }
}