.download-pdf-section {
    padding: 80px 20px 50px 20px;
}

.download-pdf-section .download-title h2 {
    font-weight: 400;
    font-size: 80px;
    line-height: 80px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #212121;
    padding-bottom: 40px;
    word-break: break-word;
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
}

.download-pdf-section .nav-tabs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin-bottom: 45px;
	border: 0;
}
.download-pdf-section .nav-tabs .nav-link {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 310px;
	width: 100%;
	height: 91px;
	margin: 0;
	padding: 7px 10px;
	outline: 0;
	border: solid 1px #BBBBBB;
	border-right: 0;
	background: transparent;
	border-radius: 0px;
	font-size: 17px;
	color: #000000;
	font-weight: 400;
	line-height: 20px;
	transition: all 0.3s ease-in-out;
}
.download-pdf-section .nav-tabs .nav-link:last-child {
	border-right: solid 1px #BBBBBB;
}
.download-pdf-section .nav-tabs .nav-link:hover,
.download-pdf-section .nav-tabs .nav-link.active {
	border: solid 1px #000000;
}

.download-pdf-section .filters-button-group ul {
    padding: 0;
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
}
.download-pdf-section .filters-button-group ul li {
    list-style: none;
    max-width: 310px;
    width: 100%;
    height: 91px;
}
.download-pdf-section .filters-button-group ul li .button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 7px 10px;
	border: solid 1px #BBBBBB;
	border-right: 0;
	background: transparent;
	font-size: 17px;
	color: #000000;
	font-weight: 400;
	line-height: 20px;
	transition: all 0.3s ease-in-out;
}
.download-pdf-section .filters-button-group ul li:last-child .button {
    border-right: solid 1px #BBBBBB;
}
.download-pdf-section .filters-button-group ul li .button:hover,
.download-pdf-section .filters-button-group ul li .button.btn-active {
    border: solid 1px #000000;
}

.download-pdf-section .element-item {
    width: 49.9%;
    margin-bottom: 30px;
}

.download-pdf-section .element-item .download-box {
    display: flex;
	align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #B8B8B8;
}

.download-pdf-section .element-item .download-box .image-box {
    width: 50%;
    overflow: hidden;
}

.download-pdf-section .element-item .download-box .image-box img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all .4s ease-in-out;
}

.download-pdf-section .element-item .download-box .image-box img:hover {
    transform: scale(1.1);
}

.download-pdf-section .element-item .download-box .download-image-details {
    width: 50%;
	padding-left: 30px;
}

.download-pdf-section .element-item .download-box .download-image-details h3 {
    min-height: 60px;
	margin-bottom: 10px;
    font-size: 24px;
	color: #252525;
	font-weight: 400;
    line-height: 30px;
}

.download-pdf-section .element-item .download-box .download-image-details h5 {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #252525;
    margin-bottom: 20px;
}

.download-pdf-section .element-item .download-box .download-image-details p {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #252525;
    margin-bottom: 19px;
}

.download-pdf-section .element-item .download-box .download-image-details .download-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #252525;
    display: inline-block;
    border: solid 1px #000000;
    background: transparent;
    position: relative;
    box-shadow: 0px 0px 0 0 #241c15;
	padding: 10px 20px 10px 36px;
	background: url(../images/pdf.svg) no-repeat;
	background-size: 23px;
    background-position-x: 6px;
    background-position-y: 6px;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    -o-transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
    transition: transform .3s cubic-bezier(.5, 2.5, .7, .7), box-shadow .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-transform .3s cubic-bezier(.5, 2.5, .7, .7), -webkit-box-shadow .3s cubic-bezier(.5, 2.5, .7, .7);
}
.download-pdf-section .element-item .download-box .download-image-details .download-btn:hover {
    -webkit-box-shadow: 4px 4px 0 0 #241c15;
    box-shadow: 4px 4px 0 0 #241c15;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}