.Blog-section {
    padding: 50px 0;
}

.Blog-section .Blog-title h2 {
    font-weight: 400;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #000000;
    margin-bottom: 50px;
    word-break: break-word;
}

.Blog-section .blog-tab {
    margin-bottom: 73px;
}

.Blog-section .blog-tab ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
}

.Blog-section .blog-tab ul li {
    list-style: none;
    width: 100%;
}

.Blog-section .blog-tab ul li a {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    /*max-width: 313px;*/
    width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #BBBBBB;
    border-right: 0;
    transition: all 0.3s ease-in-out;
}

.Blog-section .blog-tab ul li:last-child a {
    border-right: solid 1px #BBBBBB;
}

.Blog-section .blog-tab ul li a:hover,
.Blog-section .blog-tab ul li a.active {
    border: solid 1px #000000;
}

.Blog-section .Blog-img-detail {
    margin-bottom: 40px;
    display: block;
}

.Blog-section .Blog-img-detail .Blog-image {
	min-height: 332px;
    overflow: hidden;
}

.Blog-section .Blog-img-detail .Blog-image img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all .4s ease-in-out;
}

.Blog-section .Blog-img-detail a:hover .Blog-image img {
    transform: scale(1.1);
}

.Blog-section .Blog-img-detail .Blog-image-details {
    display: flex;
    padding: 22px 0 16px;
    border-bottom: 1px solid #B8B8B8;
}

.Blog-section .Blog-img-detail .Blog-image-details .blog-date {
    max-width: 104px;
    width: 100%;
    position: relative;
}

.Blog-section .Blog-img-detail .Blog-image-details .blog-date p {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    margin: 0;
}

.Blog-section .Blog-img-detail .Blog-image-details .Blog-image-titel {
    padding: 0 0px 0px 35px;
    border-left: solid 1px #D9D9D9;
}

.Blog-section .Blog-img-detail .Blog-image-details .Blog-image-titel h3 {
	min-height: 90px;
    font-weight: 400;
    font-size: 36px;
    line-height: 45px;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.Blog-section .Blog-img-detail .Blog-image-details .Blog-image-titel h3:hover {
    color: #dfba6f;
}

.Blog-section .text-center {
    margin-top: 72px;
}

.Blog-section .text-center .load-more {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 12px 25px;
    position: relative;
    box-shadow: 0px 0px 0 0 #241c15;
    -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);
}

.Blog-section .text-center .load-more: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);
}

.Blog-section .text-center .load-more i {
    padding-left: 12px;
    font-size: 16px;
}

.Blog-section .text-center .load-more:hover i::before {
    animation: loading-spinner 0.9s linear
}

@keyframes loading-spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}