.menu {
  width: 100%;
  min-height: 100px;

  padding: 0 5%;

  background-color: var(--blue-500);
  display: flex;
  justify-content: center;
  align-items: center;

  a:hover {
    color: #ffffff95;

    transform: scale(1.09);
  }
}

.logo-link {
  width: 101px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 !important;

  img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }
}

.dropdown-product-menu {
  height: 100%;
  display: flex;
  flex: 1;
}

.mobile-menu-icon {
  display: none;
  width: 22px;

  cursor: pointer;
}

.mobile-menu-icon-close {
  width: 22px;
  height: 22px;

  cursor: pointer;
}

.menu-radius {
  border-radius: 0px 0px 64px 64px;
}

.nav-menu {
  width: 100%;
  max-width: var(--view-port);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  position: relative;
  height: 100%;
}

.nav-menu-ul {
  list-style: none;
  display: flex;
  gap: 40px;
  height: 100px;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.nav-menu-ul-mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}

.nav-menu-li,
.menu-item a,
.menu-item {
  color: #fff;
  text-decoration: none;
  transition: all ease 0.5s;
  display: flex;
  align-items: center;

  img {
    width: 12px;
    height: 12px;
    margin-left: 12px;
    cursor: pointer;
  }
}

.nav-menu #openSearch {
  @media screen and (max-width: 750px) {
    display: none;
  }
}

.dropdown-menu-container {
  border-radius: 16px;
  background: #fff;
  padding: 27px 42px;
  padding-bottom: 55px;

  position: absolute;
  top: 100px;
  z-index: 20000;

  display: none;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

  animation: animateToBottom 0.3s;
}

.drop_container,
.show {
  display: flex;
  animation: animateFromBottom 0.3s;
}

.drop_container,
.show.animate-out {
  animation: animateToBottom 0.3s;
}

.dropdown-menu-products {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.dropdown-menu-products-list {
  display: flex;
  flex-direction: column;

  gap: 20px;

  .list-of-products-optins {
    display: flex;
    flex-direction: column;
    gap: 2px;

    span {
      color: #2d2869;
      font-feature-settings: "liga" off, "clig" off;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
    }
  }

  .list-of-products-optins a {
    text-decoration: none;
    color: #2d2869;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
}

.dropdown-menu-products-list-subtitle {
  color: var(--blue-700);
  font-family: Poppins;
  font-size: 18.028px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;

  a {
    color: var(--blue-700);
    font-family: Poppins;
    font-size: 18.028px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
  }

  a:hover {
    color: var(--blue-700);
    opacity: 0.8;

    transform: scale(1.01);
  }
}

.dropdown-menu-products-slide-products {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;

  max-width: 700px;

  gap: 20px;

  .product-list {
    width: 100%;

    div {
      max-width: 300px;
    }
  }

  .slide-button {
    border: transparent;
    background-color: transparent;
    cursor: pointer;
  }
}

.social-media-list {
  display: flex;
  align-items: center;

  gap: 6px;
}

.social-media-list-mobile {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  gap: 6px;

  margin-bottom: 40px;
}

.social-media {
  width: 24px;
  height: 24px;

  img {
    width: 24px;
    height: 24px;
    transition: all ease 0.5s;
  }

  img:hover {
    transform: scale(1.09);
  }
}

.logo {
  width: 101px;
  height: 73px;
}

.no-bg-button {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;

  display: flex;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 600px;
  border: 1px solid #33a3ff;

  background-color: transparent;

  cursor: pointer;

  transition: all ease 0.5s;
}

.no-bg-button-mobile {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;

  width: 100%;

  display: flex;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 600px;
  border: 1px solid #33a3ff;

  background-color: transparent;

  cursor: pointer;

  transition: all ease 0.5s;
}

.no-bg-button:hover {
  transform: scale(1.09);
}

.icon-search {
  width: 24px;
  height: 24px;

  cursor: pointer;

  transition: all ease 0.5s;
}

.icon-search:hover {
  transform: scale(1.09);
}

.page-title-wrapper {
  width: 100%;
  padding: 62px max(calc((100% - var(--view-port)) / 2), 5%);

  background-color: var(--blue-500);

  padding-bottom: 110px;

  position: relative;

  display: flex;
  flex-direction: column;
  gap: 24px;

  border-radius: 0px 0px 120px 120px;
}
@media screen and (max-width: 750px) {
  .page-title-wrapper {
    border-radius: 0;
  }
}

.page-title-wrapper-subtitle {
  color: #33a3ff;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.page-title-wrapper-title {
  color: #fff;
  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width: 750px) {
  .page-title-wrapper-title {
    font-size: 46px;
  }
  .page-title-wrapper-title br {
    display: none;
  }
}

.page-title-wrapper-arrow-bg {
  position: absolute;
  right: max((calc((100% - var(--view-port)) / 2) - 50px), 5%);
  bottom: -80px;
  z-index: 2;

  max-width: 290px;
}

.menu-mobile {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 200;

  padding: 0 5%;

  background-color: var(--blue-500);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding-top: 6px;

  overflow: hidden;
  height: 0;

  transition: all ease 0.5s;
}

.menu-mobile-content {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.menu-mobile-logo-end-close {
  width: 100%;
  min-height: 100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .dropdown-menu-products-slide-products {
    max-width: 600px;
  }
}

@media screen and (max-width: 1000px) {
  .nav-menu {
    gap: 20px;

    padding: 20px 0;
  }

  .nav-menu-ul {
    gap: 20px;
  }

  .dropdown-menu-products-slide-products {
    max-width: 400px;
  }
}

@media screen and (max-width: 750px) {
  .social-media-list,
  .no-bg-button,
  .icon-search,
  .nav-menu-ul {
    display: none;
  }

  .mobile-menu-icon {
    display: flex;
  }

  .mobile-menu-icon-close {
    display: flex;
  }

  .dropdown-menu-container {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .menu-mobile {
    display: none !important;
  }
}

@keyframes animateFromBottom {
  from {
    transform: translate3d(0, 10px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes animateToBottom {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 10px, 0);
    opacity: 0;
  }
}

@media screen and (max-width: 750px) {
  .menu-mobile {
    overflow: auto;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
  }
  .open-menu-mobile .menu-mobile {
    opacity: 1;
    visibility: visible;
  }
  .menu-mobile .no-bg-button-mobile {
    margin-bottom: 50px;
  }
  .nav-menu-ul-mobile {
    gap: 5px;
  }
  .nav-menu-ul-mobile li {
    display: block;
    width: 100%;
  }
  .nav-menu-ul-mobile li a {
    padding: 10px 14px;
  }
}
