.go-back-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
}

@media(min-width: 992px) {
    .go-back-wrapper {
        display: flex;
        justify-content: end;
        text-align: right;
        margin-bottom: 10px;
    }
}



.go-back {
    display: flex;
    align-items: center;
    color: #05497a;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    border: 2px solid #05497a;
    border-radius: 40px;
    padding: 5px 14px;
    transition: all 300ms ease;
}

.go-back:hover {
    color: #05497a;
}

.go-back .ico {
    margin-right: 5px;
    width: 24px;
}

.go-back .ico img {
    display: block;
    width: 100%;
}

.go-back-wrapper .dropdown ul {
    width: 100%;
    text-align: center;
}

@media(max-width: 992px) {
    .go-back-wrapper .dropdown .show+ul {
        margin-top: 10px !important;
        position: static !important;
        transform: none !important;
    }
}

@media (min-width: 992px) {
    header .go-back-wrapper .hideThis {
        transition: all 200ms ease;
        transform: scale(1);
        opacity: 1;
        height: auto;
    }

    .scrolled header .go-back-wrapper .hideThis {
        transform: scale(0);
        opacity: 0;
        height: 0;
    }

    .scrolled header .go-back-wrapper {
        margin-bottom: 0;
    }
}

footer .go-back-wrapper {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

footer .go-back-wrapper .go-back {}

footer .footerMenu .go-back-wrapper {
    padding-top: 20px;
}

.dropdown li {
    padding: 5px 15px;
}

.dropdown li a {
    color: #05497a;
    border-radius: 10px;
    padding: 7px 3px;
    transition: all 300ms ease;
}

.dropdown .dropdown-item.active,
.dropdown .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #05497a;
    font-weight: bold;
}