html :focus-visible {
  outline: 4px dashed #097bb1 !important;
  outline-offset: 5px !important;
  border-radius: 05px !important;
  transition: outline-offset 0.1s ease-in-out;
}

html .bg-qantos :focus-visible {
  outline: 4px dashed #fff !important;
}

.dropbtn {
  background: #0c74b7 !important;
}

.menu-container {
    bottom: 20px;
    right: 20px;
    position: fixed;
}

.menu-toggle-btn {
    height: 60px;
    width: 60px;
    bottom: 5px;
    right: 5px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #059FE0;
    box-shadow: 3px 3px 2px 1px rgb(0 0 0 / 20%);
    z-index: 2;
    cursor: pointer;
}

.menu-toggle-btn i {
    font-size: 2rem;
    color: #eeeeee;
    transition: 0.5s;
}

.menu-toggle-btn.effect i {
    transform: rotate(135deg);
}

.menu-list {
    list-style: none;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.menu-list .menu-item {
    height: 2.5rem;
    width: 2.5rem;
    bottom: -.5rem;
    right: 1rem;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #059FE0;
    transition: 0.5s;
}

.menu-list .menu-item a {
    text-decoration: none;
    color: #eeeeee;
}

.menu-list .menu-item:hover {
    background-color: #39baf2;
}

.menu-list.effect .menu-item {
    box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.2);
}

.menu-list.effect .menu-item:nth-of-type(1) {
    bottom: 3rem;
    right: 0.5rem;
    transition-delay: 0.2s;
}

.menu-list.effect .menu-item:nth-of-type(2) {
    bottom: 2rem;
    right: 3.5rem;
    transition-delay: 0.1s;
}

.menu-list.effect .menu-item:nth-of-type(3) {
    bottom: -1rem;
    right: 4.25rem;
}

.menu-item svg {
    position: relative;
    top: 0px;
}