

.company-info-content {
    /*background: linear-gradient(0deg, rgba(245, 245, 245, 0.8), rgba(245, 245, 245, 0.8)), url("../images/company-bg.png");*/
    background: linear-gradient(0deg, rgba(245, 245, 245, 0.6), rgba(245, 245, 245, 0.6)), url("../images/mobile-bg.png") no-repeat center;
    background-size: cover;
    min-height: 280px;
    height: auto;
    /*display: grid;*/
    /*grid-template-columns: 1fr 4fr 1fr;*/
    display: flex;
    justify-content: center;
}
.company-info-row {
    /*display: grid;*/
    /*grid-column-start: 2;*/
    /*row-gap: 10px;*/
    /*padding: 10px 0;*/
    /*justify-items: center;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    padding: 25px 0;
}
.company-info-row .logo img {
    width: 250px;
}
.company-info-row .company-name .agency-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: right;
    color: #015757;
}
.company-info-row .company-name {
    width: fit-content;
    font-weight: 500;
    font-size: 40px;
    line-height: 47px;
    color: #737373;
}
.company-info-row .company-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #222626;
}
.company-info-row .company-contacts{
    align-items: baseline;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.company-contacts .contacts-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    row-gap: 5px;
}
.contacts-row .contact-item {
    display: grid;
    grid-template-columns: 1fr 4fr;
}
.contacts-row .contact-item a {
    color: #015757;
    text-decoration: none;
}
.contacts-row .contact-item a:hover {
    text-decoration: underline;
}
.contacts-row .contact-item .text {
    font-weight: 400;
    font-size: 16px;
    text-decoration-line: underline;
    color: #687575;
    text-align: left;
}
.contacts-row .contact-item .icon img {
    width: 14px;
    height: 16px;
}
.company-slogan {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: end;
    color: #015757;
    margin-top: 10px;
}

.announcements-content {
    display: grid;
    margin: 64px 0;
    grid-template-columns: 3fr 9fr;
    column-gap: 20px;
    max-width: 100%;
}

.announcement-filters {
    padding: 0 20px;
    display: none;
}

.deal-type .deal-type-btn {
    background: #019696;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}
.deal-type .btn {
    width: 100%;
    background: #019696;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
}
.deal-type .btn:hover {
    background: #017A7A;
}
.deal-type .btn.active {
    background: #015757;
}
.deal-type input[type=radio] {
    visibility: hidden;
    position: absolute;
}

.advertisements {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    justify-items: center;
    text-align: center;
}
.advertisements .advertising-item {
    background: #D8DFDF;
    border: 1px solid #015757;
    border-radius: 8px;
    width: 311px;
    padding: 6px 0;
}
.advertising-item .gov-header {
    text-align: center;
    display: grid;
    flex-direction: row;
    padding: 12px 60px;
}

.gov-header .agency-name {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #222626;
    display: grid;
    flex-direction: row;
}

.gov-header .logo {
    text-align: center;
}
.gov-header .logo img {
    width: 132.13px;
    height: 90px;
}

.advertising-item .divider {
    background: #9E9E9E;
    height: 1px;
    margin: 10px;
}

.advertising-item .desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    color: #222626;
    padding: 12px 12px;
}
.advertising-item .desc .paying-type {
    color: #015757;
}
.advertising-footer {
    padding-bottom: 24px;
}
.advertising-footer a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-decoration-line: underline;
    color: #687575;
}

.mobile-filter .search-form {
    display: block;
    margin: 15px 0;
}

@media (max-width: 389.98px) {
    .company-info-content {
        grid-template-columns: 1fr;
        padding: 0 6px;
    }
    .company-info-row .logo img {
        width: 150px;
        height: 105px;
    }
    .company-info-row .company-name {
        font-size: 18px;
        line-height: 21px;
    }
    .company-info-row .company-desc {
        font-size: 14px;
        line-height: 20px;
    }
    .company-contacts .contacts-row {
        grid-column-start: 1;
        grid-template-columns: repeat(2,1fr);
        row-gap: 10px;
    }
    .contacts-row .contact-item .text {
        font-size: 14px;
        line-height: 16px;
    }
    .contacts-row .contact-item .icon {
        line-height: 16px;
    }
    .company-contacts .company-slogan {
        font-size: 14px;
        line-height: 23px;
        text-align: right;
    }

    .announcements-content {
        display: block;
        /*grid-template-columns: 1fr;*/
        margin: 18px 0;
    }
    .mobile-filter-btn {
        display: block !important;
    }
}
@media (min-width: 390px) and (max-width: 543.98px) {
    .company-info-content {
        grid-template-columns: 1fr;
        padding: 0 6px;
    }
    .company-info-row .logo img {
        width: 150px;
        height: 105px;
    }
    .company-info-row .company-name {
        font-size: 18px;
        line-height: 21px;
    }
    .company-info-row .company-desc {
        font-size: 14px;
        line-height: 20px;
    }
    .company-contacts .contacts-row {
        grid-column-start: 1;
        grid-template-columns: repeat(2,1fr);
        row-gap: 10px;
    }
    .contacts-row .contact-item .text {
        font-size: 14px;
        line-height: 16px;
    }
    .contacts-row .contact-item .icon {
        line-height: 16px;
    }
    .company-contacts .company-slogan {
        font-size: 14px;
        line-height: 23px;
        text-align: right;
    }

    .announcements-content {
        grid-template-columns: 1fr;
        margin: 18px 0;
    }
    .mobile-filter-btn {
        display: block !important;
    }
}
@media (min-width: 544px) and (max-width: 767.98px) {
    .announcements-content {
        grid-template-columns: 1fr;
        margin: 18px 0;
    }

    .company-info-row .company-contacts {
        grid-template-columns: 2fr 8fr 2fr;
    }
    .company-contacts .contacts-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacts-row .contact-item .text {

    }
    .mobile-filter-btn {
        display: block !important;
    }
}


@media (min-width: 768px) {
    .company-info-content {
        background: linear-gradient(0deg, rgba(245, 245, 245, 0.6), rgba(245, 245, 245, 0.6)),
        url("../images/desktop-bg.png") no-repeat;
        background-size: 100%;
    }
    .announcements-content {
        width: 95%;
        margin: 50px auto;
    }
    .announcement-filters {
        padding: 0 5px 0 0;
    }
    .announcement-filters .filter-head {
        padding-left: 5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .company-info-content {
        background-size: cover;
    }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
    .announcements-content {
        grid-template-columns: 1fr;
    }

    .company-info-row .company-contacts {
        grid-template-columns: 2fr 8fr 2fr;
    }
    .company-contacts .contacts-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .contacts-row .contact-item .text {

    }
    .mobile-filter-btn {
        display: block !important;
    }
    .company-info-content {
        background-size: cover;
    }
}
@media (min-width: 1024px) {
    .announcement-filters {
        display: block;
    }
}
@media (min-width: 1024px) and (max-width: 1399.98px) {
    .company-info-row .logo img {
        width: 160px;
    }
}
@media (min-width: 1400px) {
    .company-info-content {
        height: 390px;
    }
}

@media (min-width: 1600px) {
    .company-info-content {
        height: 450px;
    }
    .company-info-row .logo img {
        width: 270px;
    }

    .company-slogan {
        font-size: 22px;
        margin-top: 20px;
    }

    .contacts-row .contact-item .text {
        font-size: 22px;
    }
}
