.btn-main {
    width: 380px;
    height: 60px;
    background-color: #DDDDDD;
    color:#133957;
    border: none;
    margin-top: 190px;
    font-size: 13px;
    position: relative;
    font-weight: bold;
}
.btn-main-text {
    font-family: Karla, Arial, Helvetica, sans-serif;
    font-size: 15px;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}
.btn-text {
    margin-right: 0;
    transition: all 0.6s ease-out;
}
.arrow-right{
    width: 16px;
    margin-top:-2px;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateX(-5px);
    position: absolute;
    top: 20px;
}

.line-1,
.line-2,
.line-3,
.line-4 {
    width: 100%;
    height: 2px;
    background-color:white;
    position: absolute;
    left: 0;
    top: 0;
}

.line-2 {
    right: 0;
    width: 2px;
    height: 100%;
    left: unset;
}
.line-3 {
    right: 0;
    left: unset;
    top: 100%;
}
.line-4 {
    left: 0;
    height: 100%;
    width: 2px;
    top: unset;
    bottom: 0;
}
.btn-main:hover > .line-1 {
    background-color: #A5312D;
    animation: line-move1 1s forwards ease;
    transition: background-color 1s ease-in-out;
}
.btn-main:hover > .line-2 {
    background-color: #A5312D;
    animation: line-move2 1s forwards ease;
    transition: background-color 1s ease-in-out;
}
.btn-main:hover > .line-3 {
    background-color: #A5312D;
    animation: line-move3 1s forwards ease;
    transition: background-color 1s ease-in-out;
}
.btn-main:hover > .line-4 {
    background-color: #A5312D;
    animation: line-move4 1s forwards ease;
    transition: background-color 1s ease-in-out;
}
.btn-main:hover {
    color: #A5312D;
}
.btn-main:hover > .arrow-right {
    opacity: 1;
    transform: translateX(0);
    position: static;
}
.btn-main:hover > .btn-text {
    margin-right: 5px;
}


@keyframes line-move1 {
    0% {
        width: 0;
        left: 0;
        background-color: white;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        background-color: #A5312D;
        width: 100%;
    }
}
@keyframes line-move2 {
    0% {
        height: 100%;
        right: 0;
        background-color: white;
    }
    54% {
        height: 0;
        right: 0;
        top: 100%;
    }
    55% {
        height: 0;
        top: 0;
    }
    100% {
        height: 100%;
        right: 0;
        background-color: #A5312D;
    }
}
@keyframes line-move3 {
    0% {
        width: 0;
        right: 0;
        background-color: white;
    }

    50% {
        width: 100%;
        height: 2px;
        right: 0;
    }

    100% {
        width: 100%;
        background-color: #A5312D;
    }
}
@keyframes line-move4 {
    0% {
        height: 100%;
        left: 0;
        bottom: 0;
        background-color: white;
    }
    54% {
        height: 0;
        left: 0;
        bottom: 100%;
    }
    55% {
        height: 0;
        bottom: 0;
    }
    100% {
        height: 100%;
        background-color: #A5312D;
    }
}
.loadmore-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 40px;
    background-color: #ddd;
    text-transform: uppercase;
    font-family: Karla;
    font-size: 13px;
    text-decoration: none;
    color: #133957;
    font-weight: bold;
    margin: 0 auto;
}
.loadmore-btn:hover {
    color: #133957;
}
.loadmore-btn::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('../../homepages/img/pressroom/loadmore.png') no-repeat center center/100%;
    margin: 0 8px;
}
