.news {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0px 80px 200px;
    
    background: #333;
}
.news > h2 {
    width: 100%;
    margin-bottom: 50px;

    color: #fff;
    font-size: 24px;
}
.news_container {
    position: relative;
    display: flex;
    width: 100%;
    padding: 30px 0;

    border-top: solid 1px #aaa;
}
.news_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 1px;
    
    background: #fff;
    
    transition: .5s;
    transition-timing-function: ease-in-out;
}
.news_container:hover::before {
    width: 100%;
}
.news_container::after {
    content: '⇀';
    position: absolute;
    top: 50%;
    right: 10px;
    
    color: #fff;
    font-size: 30px;

    transition: .5s;
    transform: translateY(-50%);
}
.news_container:hover::after {
    transform: translateY(-50%) translateX(10px);
}
.news_container h2 {
    width: 200px;

    color: #aaa;
    font-size: 18px;
}
.news_container-text {
    width: calc(100% - 380px);
}
.news_container-text p {
    color: #fff;
    font-size: 18px;
}
.news_container-text p:nth-child(2) {
    margin-top: 20px;

    color: #aaa;
    font-size: 13px;
}
.news_container-img {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 180px;
    padding-right: 30px;
}
.news_container-imgBx {
    width: 44px;
    height: 44px;
    overflow: hidden;

    background: #fff;
    border-radius: 50%;
}
.news_container-imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_container-img p {
    color: #aaa;
    font-size: 13px;
}
.news_contactBx {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
}
.news_contactBx p {
    position: relative;

    color: #fff;
    font-size: 20px;
}
.news_contactBx p::before {
    content: '>';
    position: absolute;
    top: 2px;
    right: -56px;

    font-size: 20px;
    
    transition: .5s;
}
.news_contactBx:hover p::before {
    transform: translateX(10px);
}
.news_contactBx svg {
    width: 54px;
    height: 54px;
}
.news_contactBx svg circle {
    fill: transparent;
    stroke: #aaa;
    stroke-width: 1px;
}
.news_contactBx:hover svg circle:nth-child(2) {
    animation: svgCircle .5s ease-in-out forwards;
}

@media screen and (max-width:1024px) {
    .news {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0px 30px 100px;
    }
    .news > h2 {
        margin-bottom: 30px;

        color: #fff;
        font-size: 18px;
    }
    .news_container {
        position: relative;
        display: block;
        width: 100%;
        padding: 12px 0 30px;
    
        border-top: solid 1px #aaa;
    }
    .news_container::after {
        content: '⇀';
        position: absolute;
        top: 25px;
        right: 10px;
        
        color: #fff;
        font-size: 20px;
    
        transition: .5s;
        transform: translateY(-50%);
    }
    .news_container h2 {
        color: #aaa;
        font-size: 15px;
    }
    .news_container-text {
        width: 100%;
        margin: 20px 0 40px;
    }
    .news_container-text p {
        color: #fff;
        font-size: 15px;
    }
    .news_container-text p:nth-child(2) {
        position: absolute;
        top: 0;
        right: 40px;
    }
    .news_container-imgBx {
        width: 33px;
        height: 33px;
    
        background: #fff;
        border-radius: 50%;
    }
    .news_contactBx {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
    .news_contactBx p {
        position: relative;
    
        font-size: 14px;
        font-weight: 700;
    }
    .news_contactBx p::before {
        content: '>';
        position: absolute;
        top: 2px;
        right: -45px;
    
        font-size: 14px;
        
        transition: .5s;
    }
}