.downloads {
    padding: 120px 0 40px;
    position: relative;
}

.downloads .items-wrapper {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.downloads .single-item {
    background-color: #F0F1F3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 130px;
    position: relative;
    transition: background .3s ease;
    gap: 20px;
    font-size: 18px;
    color: #2E3B4E
}

.downloads .item-wrapper-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.downloads .item-wrapper-description p {
    max-width: 75%;
    font-size: 20px;
}

.downloads .item-col {
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}

.downloads .item-col-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.downloads .item-col-wrapper>* {
    flex: 1 auto;
}

.downloads .item-col-wrapper>*:nth-child(2) {
    text-align: right;
}

.downloads .item-col a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #CE3F23;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

.downloads .items-filter {
    display: flex;
    gap: 10px 30px;
    margin-top: 70px;
}

.downloads .single-filter {
    flex: 1 auto;
}

.downloads select,
.downloads textarea,
.downloads input {
    border-radius: 30px;
    color: #05152F;
    border: 0;
    padding: 14px 30px;
    max-width: 100%;
    width: 100%;
    outline: 0;
    font-size: 18px;
    background-color: #fff;
    border: 1px solid #D9DADE;
}

.downloads textarea::placeholder,
.downloads input::placeholder {
    color: #B7BFD0;
}

.downloads select {
    width: auto;
    -webkit-appearance: none;
    background-color: #fff;
    padding-right: 60px;
}

.downloads .data-select {
    position: relative;
}

.downloads .data-select::before {
    content: '';
    background-image: url(../../assets/images/dark-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotateZ(90deg);
    pointer-events: none;
}

.downloads .btn {
    padding: 13px 27px;
}

@media (max-width:1366px) {
    .downloads .single-item {
        padding: 25px 60px;
    }
}

@media (max-width:1199px) {

    .downloads {
        padding: 140px 0;
    }

    .downloads .single-item {
        padding: 25px 30px;
        font-size: 16px;
    }

    .downloads .items-filter {
        flex-wrap: wrap;
    }

    .downloads .data-select {
        flex: 0;
    }
}

@media (max-width:991px) {

    .downloads {
        padding: 80px 0 0;
    }

    .downloads .single-item {
        flex-wrap: wrap;
    }

    .downloads .item-col {
        width: calc(50% - 10px);
    }

    .downloads .item-wrapper-description {
        margin-top: 15px;
    }

    .downloads .items-wrapper {
        margin-top: 20px;
    }
}

@media (max-width:768px) {
    .downloads .single-item {
        gap: 0;
    }

    .downloads .item-col {
        width: 100%;
        gap: 0 8px;
    }
}

@media (max-width:479px) {
    .downloads .single-filter {
        width: 100%;
        flex: 1 auto;
    }

    .downloads select {
        width: 100%;
    }

    .downloads .single-filter .btn {
        margin-left: auto;
        display: flex;
    }
}

@media (min-width:992px) {
    .downloads .single-item {
        gap: 70px;
    }

    .downloads .single-item .item-col:nth-child(1) {
        width: 30%;
    }

    .downloads .single-item .item-col:nth-child(2) {
        width: 24%;
    }

    .downloads .single-item .item-col:nth-child(3) {
        width: 15%;
    }

    .downloads .single-item .item-col:nth-child(4) {
        width: 31%;
    }
	.downloads .item-wrapper-description p{
		max-width: 100%;
	}
}