:root {
    --blue-main: #063350;
    --green: #4BAC9A;
    --text: #373D45;
    --background: #F6FAFF;
    --sidebar-w: 260px;
    --header-h: 64px;
    --white: #ffffff;
    --border: #E2E8F0;
    --hover: rgba(75, 172, 154, 0.08);
    --shadow: 0 1px 3px rgba(6, 51, 80, 0.06);
    --radius: 8px;
}

.blog__item-wrapper {
    width: 1300px;
    padding-top: 140px;
    margin: 0 auto;

}

.blog__item-name {
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--blue-main);
}
.blog__item-name h3{
    font-weight: 500;
}
.blog__item-date {
    color: #333333;
    font-size: 14px;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 35px;
}

.blog__item-image {

    width: 800px;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius);
    margin: 0 auto;
    background-color: var(--background);
    box-shadow: 0px 0px 5px #00000027;
}
.blog__item-image img{
    width: 100%;
    height: 100%;
}
.blog__item-description {
    margin-top: 30px;
    color: var(--text);
    font-size: 16px;
    line-height: 140%;
}

.blog__item-images {
    margin-top: 40px;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.blog__item-images a {
    width: 265px;
    height: 140px;
    border-radius: var(--radius);
        box-shadow: 0px 0px 5px #00000027;
            overflow: hidden;
}
.blog__item-images a img{

    width: 100%;
    height: 100%;
    object-fit: cover;

}
.blog__item-share {
    margin-top: 40px;

}
.blog__item-share p {
    color: var(--blue-main);
    font-size: 20px;
    font-weight: 500;
}
.blog__item-icons {
    display: flex;
    margin-top: 20px;
    margin-bottom: 40px;
}
.blog__item-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #fff;
    border: 2px solid var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
        margin-right: 8px;
}
.blog__item-icons i {
    color: var(--blue-main);
    font-size: 17px;

}
.fa {}

.fa-facebook {}

.fa-whatsapp {}

.fa-telegram {}

.fa-twitter {}

.fa-vk {}
.blog__item-video {
    margin-top: 40px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0px 0px 5px #00000027;
    background: #000;
}

.blog__item-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
    .blog__item-wrapper{
        width: 95%;
        margin: 0 auto;
        padding-bottom: 40px;
    }
    .blog__item-image{
        width: 100%;
        height: 300px;
    }
}