.footer-logo-title{
	white-space: nowrap;
    font-size: 1.2em!important;
    text-align: center!important;
    margin-bottom: 10px!important;
}

.MagTitle {
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
}

.MagDetails .left {
    display: inline-block;
    width: 40%;
    vertical-align: top;
    padding: 0 10px 0 0;
    box-sizing: border-box;
}

.MagDetails .right {
    display: inline-block;
    width: 60%;
    vertical-align: top;
    padding: 10px 10px 0 0;
    box-sizing: border-box;
}

.MagDetails .left img {
    padding: 0;
    width: 90%;
}

.txt-link {
    font-size: 16px;
}

.txt-link a {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}



.txt-link a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bs-primary);
    visibility: hidden;
    transition: all .3s ease-in-out 0s;
}
.txt-link a:hover{
	text-decoration: none;}

.txt-link a:hover::before {
    visibility: visible;
    width: 100%;
}