.defpage {
    background: #F5F6F8;
}

.defpage--news {
    padding-top: 0;
    padding-bottom: 80px;
}


.defpage--news .hero {
    margin-bottom: 60px;
}

.single-page-content {
    width: 845px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    color: #363B41;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 62px;
    margin-bottom: 40px;
}

.main-image {
    display: block;
    width: 100%;
    margin-bottom: 40px;
}

.main-image img {
    display: block;
    width: 100%;
    height: auto;
	max-height: 600px;
	object-fit: contain;
	object-position: center;
}

.single-bottom-page {
    padding-top: 100px;
    margin-top: 100px;
    border-top: 1px solid #000;
}

.single-bottom-title {
    color: #363B41;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 62px;
    text-transform: uppercase;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-item {
    width: calc(33.33% - 60px / 3);
}

.blog-item-image {
    width: 100%;
    position: relative;
}

.blog-item-image:after {
    content: '';
    display: block;
    padding-top: 75%;
}

.blog-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-item-box {
    background: #F5F6F8;
    width: calc(100% - 65px);
    padding: 20px 15px;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.blog-item-title {
    color: #363B41;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-item-date {
    color: #363B41;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
}

.blog-item-description {
    color: #363B41;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-top: 20px;
    margin-top: 20px;
    position: relative;
}

.blog-item-description:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 2px;
    background: #1B3545;
}

.single-bottom-title {
    color: #363B41;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 62px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.pagination {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-numbers {
    border: 1px solid #242424;
    border-right: none;
    background: #F5F6F8;
    width: 48px;
    min-width: 48px;
    height: 48px;
    color: #242424;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.page-numbers:last-child {
    border-right: 1px solid #242424;
}

.page-numbers.current {
    background: #1B3545;
    color: #fff;
}

.page-numbers.next,
.page-numbers.prev  {
    width: 72px;
    min-width: 72px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNiAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuODUzNTIgMTMuMzUzNUwxNC4zNTM1IDYuODUzNTJMNy44NTM1MiAwLjM1MzUxNSIgc3Ryb2tlPSIjMjQyNDI0Ii8+CjxwYXRoIGQ9Ik0wLjM1MzUxNiAxMy4zNTM1TDYuODUzNTIgNi44NTM1MkwwLjM1MzUxNyAwLjM1MzUxNSIgc3Ryb2tlPSIjMjQyNDI0Ii8+Cjwvc3ZnPgo=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.page-numbers.prev {
    transform: rotate(180deg);
    border-right: 1px solid #242424;
    border-left: none;
}

@media screen and (max-width: 1200px) {
    .blog-item-box {
        width: calc(100% - 32px);
    }
}

@media screen and (max-width: 992px) {
    .main-title {
        font-size: 36px;
        line-height: 48px;
    }

    .single-bottom-title {
        font-size: 32px;
        line-height: 42px;
    }

    .blog-item {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width:767px) {
    .main-title {
        font-size: 28px;
        line-height: 36px;
    }

    .single-bottom-title {
        font-size: 26px;
        line-height: 36px;
    }

    .blog-item {
        width: 100%;
    }

    .single-bottom-page {
        padding-top: 60px;
        margin-top: 60px;
    }

    .single-bottom-title {
        margin-bottom: 32px;
    }
}