.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.navigation__logo {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navigation__text-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navigation__text-logo-title {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 100;
}

.navigation__text-logo-adress {
    font-family: "BalsamiqSansRegular";
    color: #965186;
    font-size: 18px;
}

.navigation__items {
    width: 50%;
    max-width: 580px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation__item--on {
    position: relative;
}

.phone-number-dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 10px;
    top: -300px;
    right: 0;
    width: 200px;
    height: 40px;
    padding: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 60;
}

.phone-number-dropdown.active-tel {
    top: 40px;
}

.navigation__item--nomber {
    display: none;
    background-color: #fff;
}

@media (max-width: 1024px) {
    .navigation {
        height: 65px;
    }

    .navigation__logo {
        width: 80%;
    }

    .navigation__logo-img {
        width: 80px;
    }

    .navigation__text-logo-title {
        font-size: 16px;
    }

    .navigation__text-logo-adress {
        font-size: 16px;
    }

    .navigation__items {
        width: 20%;
        display: none;
    }

    .navigation__items {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        right: 0;
        top: -100%;
        width: 200px;
        height: 250px;
        overflow: auto;
        transition: all 0.3s ease 0s;
        background-color: #fff;
        border-bottom-left-radius: 10px;
        z-index: 10;
      }

      .navigation__items.active {
        top: 65px;
      }

      .navigation__item {
        margin: 10px;
        max-width: 250px;
      }

      .navigation__item--on {
        display: none;
      }

      .navigation__item--nomber {
        display: flex;
        font-family: "BalsamiqSansRegular";;
        background-color: #fff;
        color: #444;
      }
}

@media (max-width: 768px) {
    .navigation {
        height: 60px;
    }

    .navigation__items.active {
        top: 60px;
      }
}

@media (max-width: 480px) {
    .navigation__text-logo-title {
        font-size: 14px;
    }

    .navigation__text-logo-adress {
        font-size: 14px;
    }    
}