.header {
  z-index: 99;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
  background: #103b03;
}
.header.is-sticky {
  top: 0;
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  column-gap: 14px;
  padding: 17px 2px;
}

.programari-btn-menu {
  color: #103b03;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  border-radius: 50px;
  background: #c6e0c3;
  border: 1px solid #c6e0c3;
  padding: 10px 18px;
  transition: 0.3s all ease-in-out;
}
.programari-btn-menu:hover {
  background: transparent;
  border: 1px solid #c6e0c3;
  color: white;
  text-decoration: none;
}
body .programari-btn-menu-mobile.menu-link {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  border-radius: 50px;
  background: #103b03;
  border: 1px solid #c6e0c3;
  padding: 13px 40px;
  transition: 0.3s all ease-in-out;
  margin-top: 20px;
}

.search-icon {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
}
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-block: 6rem 2rem;
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.35s ease;
}
.menu.is-active {
  right: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  list-style: none;
  padding-left: 0;
  /* row-gap: 1.5rem; */
}
.menu-link {
  color: #fcfefe;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease;
}
.menu-link:hover {
  text-decoration: none;
  color: #8dbf6a;
}
.menu-block {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}

@media only screen and (min-width: 992px) {
  .menu {
    position: relative;
    top: initial;
    right: initial;
    width: auto;
    height: auto;
    padding: unset;
    margin-right: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    margin-inline: auto;
    margin-bottom: 0 !important;
  }
}

.burger {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1rem;
  z-index: 99;
  visibility: visible;
}
@media only screen and (min-width: 992px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  line-height: 1.25;
  background-color: #fff;
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0.25rem;
}
.burger-line:nth-child(2) {
  top: 0.75rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.wrapper-column {
  display: grid;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 90dvh;
}
.wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2rem;
  column-gap: 2rem;
  text-align: center;
}
.is-active .menu-link {
  color: black;
}
.is-active .burger-line {
  background-color: #000;
}
.info-bar-menu {
  margin: 16px 0;
}
.info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  column-gap: 32px;
}
.info-bar .brand-logo {
  margin-right: auto;
  width: 150px;
  max-width: 100%;
  height: auto;
}
.info-bar .custom-logo-link img {
  width: 100px !important;
  max-width: 100%;
  height: auto;
  margin-right: auto;
}
.info-bar .custom-logo-link {
  margin-right: auto;
}
.info-box-menu {
  position: relative;
}
body .custom-logo-mobile img{
  width:75px;
  height: auto;
}
.info-box-menu p {
  margin-bottom: 2px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.green-paragraph {
  color: #009345;
}
.darkgreen-paragraph {
  color: #103b03;
}
.info-box-menu a {
  transition: 0.3s all ease-in-out;
}
.info-box-menu a:hover {
  color: #103b03;
  text-decoration: none;
}
.wrap-info-box {
  padding-left: 45px;
}
.info-box-menu img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
ul#menu-menu-principal li {
  margin-bottom: 0;
}
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .navbar.container {
    max-width: 1340px;
  }
}

@media screen and (max-width: 1400px) {
  .navbar {
    padding: 17px 14px;
  }
}
@media screen and (max-width: 992px) {
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c6e0c3;
    z-index: 99;
  }
  .menu ul {
    list-style-type: none;
    list-style: none;
    padding-left: 0;
  }
  .menu-link {
    margin-bottom: 12px;
    display: block;
    color: #103b03;
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .menu-link:hover,
  .menu-link:active,
  .menu-link:focus,
  .menu-link:focus-visible,
  .menu-link:target {
    color: green;
  }
  .info-bar-menu {
    display: none;
  }
  .search-icon {
    margin-left: auto;
  }
  body .programari-btn-menu-mobile.menu-link {
    font-size: 16px;
  }
  .programari-btn-menu {
    padding: 8px 16px;
    font-size: 14px;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    padding: 8px 14px;
  }
}
@media screen and (max-width:576px){
  .programari-btn-menu.programari-btn-menu-pacienti{
    display: none;
  }
}
