/* Media queries */
@media (max-width: 1080px) {
  .under-construction {
    position: fixed;
    top: 90px;
    left: 10px;
    transform: rotate(-30deg);
    font-size: 0.6rem;
    color: rgba(100, 100, 100, 0.8);
    z-index: 9;
    pointer-events: none;
    font-weight: bold;
    white-space: nowrap;
  }

  .breadcrumbs {
    display: block;
  }

  .breadcrumbs-navigation svg {
    height: 18px;
  }

  .breadcrumbs:hover svg,
  .last-breadcrumb svg {
    stroke: var(--colorPrimary);
  }

  .breadcrumbs:hover,
  .last-breadcrumb {
    color: var(--colorPrimary);
  }

  .breadcrumbs-navigation {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .breadcrumbs-navigation > a:first-child {
    height: 18px;
    width: 18px;
  }

  .nav-desktop {
    position: fixed;
    height: calc(100vh - 66px);
    overflow: scroll;
    top: 66px;
    right: -100%;
    background-color: #fff;
    padding: 0 20px 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
    width: 0;
    max-width: 0px;
    border-radius: 0 0 0 4px;
    transition: all 0.3s ease;
  }

  .nav-desktop.active {
    width: auto;
    min-width: 200px;
    right: 0px;
    max-width: 480px;
  }

  .mobile-toggle {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
  }

  .mobile-toggle .line {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--colorFontPrimary);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }

  /* Hamburger like */
  .mobile-toggle .line:nth-child(1) {
    top: 2px;
  }

  .mobile-toggle .line:nth-child(2) {
    top: 8px;
  }

  .mobile-toggle .line:nth-child(3) {
    top: 14px;
  }

  /* Mobile toggle menu and morph into X */
  .mobile-toggle.active .line:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
  }

  .mobile-toggle.active .line:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg);
    top: 6px;
  }

  .nav-list {
    margin-top: 20px;
    flex-direction: column;
    padding: 20px;
  }

  .nav-list li > a {
    padding: 0;
  }

  .nav-link {
    padding: 0;
  }
  .nav-link::after {
    bottom: -5px;
  }

  .dropdown-item:hover {
    color: var(--colorPrimary);
  }
  .language-dropdown {
    margin-right: 30px;
  }
  /******************************/
  .dropdown-toggle-btn svg {
    position: absolute;
    height: 22px !important;
    width: 22px !important;
  }

  .nav-item-wrapper {
    margin-right: auto;
  }

  .dropdown-menu {
    max-height: 0;
    position: relative;
    flex-direction: column;
    top: 0;
    left: 0;
    background-color: #fff;
    min-width: unset;
    box-shadow: none;
    border-radius: 4px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 10;
  }

  .dropdown-menu.active {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-toggle-btn.active svg {
    transform: rotate(180deg);
  }

  .btn-lets-talk {
    margin: 20px;
    padding: 10px;
    width: calc(100% - 40px);
  }
}
