.rec_container {
    background: #fff;
}

.down_main {
    padding-top: 5%;
    border-top: 1px solid #E5E5E5;
}

.down_main_title {
    text-align: center;
    font-family: Lato-Regular;
    font-weight: 400;
    font-size: 30px;
    color: #000000;
}

.down_tabs {
    margin: 30px 0;
    justify-content: center;
}

.down_tab {
    padding: 0 20px;
    min-width: 189px;
    height: 42px;
    background: #F0F3FA;
    border-radius: 3px 3px 3px 3px;
    margin-right: 30px;
    line-height: 42px;
    text-align: center;
    text-transform: capitalize;
}

.down_tabs .down_tab:last-child {
    margin-right: 0;
}

.down_tab:hover {
    background: #F08F11;
    color: #fff;
}

.down_tab.active {
    background: #F08F11;
    color: #fff;
}

.down_content {
    display: none;
}

.down_content.active {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.down_div {
    width: calc((100% - 66px) / 2);
    padding: 28px 15px;
    border-bottom: 1px solid #D9D9D9;
}

.down_div .down_icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url('img/pdf1.png') no-repeat;
    background-size: 100% 100%;
    flex-shrink: 0;
}

.down_div_title {
    font-family: Lato-Regular;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin: 0 15px;
    flex: 1;
}

.down_icon2 {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url('img/down1.png') no-repeat;
    background-size: 100% 100%;
    flex-shrink: 0;
}

.down_div:hover {
    background: #F08F11;
    border-bottom: 1px solid #F08F11;
}

.down_div:hover a {
    color: #FFFFFF;
}

.down_div:hover .down_icon {
    background: url('img/pdf2.png') no-repeat;
    background-size: 100% 100%;
}

.down_div:hover .down_icon2 {
    background: url('img/down2.png') no-repeat;
    background-size: 100% 100%;
}

@media only screen and (max-width: 950px) {

    .down_tabs{
        flex-wrap: wrap;
    }
    .down_tab{
        padding: 0 10px;
        margin-bottom: 10px;
        min-width: unset;
        margin-right: 10px;
    }

    .down_div{
        width: 100%;
    }
}