.btn {
    overflow: hidden;
    width: 380px;
    height: 54px;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #f7f6f3;
    border-radius: 4px;
    position: relative;
    z-index: 2; 
    box-sizing: border-box;
    transition: all 0.2s; 
}
.btn a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 100;
    text-align: center;
    line-height: 54px;
    color: #6fc7d0;
    font-size: 18px;
    font-weight: bold; 
    text-decoration: none;
}
.btn::before {
    content: ''; 
    display: block;
    position: absolute;
    top: 0;
    right: 0; 
    width: 50%;
    height: 100%;
    background-color: #f7f6f3; 
    z-index: -1;
    box-sizing: border-box;
    transition: all 0.2s; 
}
.btn::after {
    content: ''; 
    display: block;
    position: absolute;
    top: 0;
    left: 0; 
    width: 50%;
    height: 100%;
    background-color: #f7f6f3; 
    z-index: -1;
    box-sizing: border-box;
    transition: all 0.2s; 
}
.btn:hover {
    background-color: #114756;
    color: #6fc7d0; 
}
.btn:hover::before, .btn:hover::after {
    width: 0; 
}

/* ------------------------------------ */
.more {
    position: relative;
    top: 10%;
    overflow: hidden;
    width: 200px;
    height: 40px;
    border: 1px solid #aebcbb;
    margin: 0 auto;
    border-radius: 4px;
    opacity: 0; 

    clear: both;
}
.more a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    color: #114756;
    font-size: 12px;
    line-height: 36px; 
    text-decoration: none;
    font-weight: bold;
}
.more a span {
    margin-left: -32px;
}
.cursol a {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #114756;
    vertical-align: middle;
    transition: color 0.2s;
    transition: background-color 0.2s; 
}
.cursol a::before, .cursol a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    vertical-align: middle; 
}
.cursol a::before {
    left: 14px;
    width: 7px;
    height: 1px;
    background: #114756; 
}
.cursol a::after {
    left: 14px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #114756;
    border-right: 1px solid #114756;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); 
}
.cursol a:hover {
    color: #f7f6f3;
    background: #114756;
    transition: background-color 0.2s; 
}
.cursol a:hover::before {
    background: #f7f6f3;
    transition: background-color 0.2s; 
}
.cursol a:hover::after {
    border-color: #f7f6f3;
    transition: border-color 0.2s; 
}