/*Common Styles Start*/
.common-image {
  position: relative;
  height: 100%;
  width: 100%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#nav-desktop {
  display: none;
}

/*Auth Component*/
.navbar-bottom {
  position: fixed;
  top: 85px;
  width: 100%;
  background-color: #101828;
  justify-content: flex-end;
}
/*Common Styles End*/

/*Navbar.scss Start*/
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fcfcfd;
  padding-block: unset;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  z-index: 250;
}
.navbar.hidden {
  transform: translateY(-166%);
}
.navbar.open-menu {
  background-color: #101828;
  margin-bottom: 0;
  padding-block: unset;
}
.navbar.open-menu .navbar__content {
  height: 168px;
}
.navbar.open-menu .navbar__content .navbar__content__actions {
  margin-bottom: 29px;
}
.navbar__content {
  position: relative;
  height: 5.3125rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  transition: all 0.3s ease;
}
.navbar__content__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.navbar__content__actions .menu-btn {
  width: 94px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  background-color: #101828;
  border-radius: 31px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}
.navbar__content__actions .menu-btn__text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: #fcfcfd;
  transition: all 0.3s ease;
}
.navbar__content__actions .menu-btn__icon svg path {
  fill: #fcfcfd;
  stroke: #fcfcfd;
}
.navbar__content__actions .menu-btn.open-menu {
  border: 1px solid #1d2939;
  background-color: #1d2939;
}

.nav-spacer {
  position: relative;
  width: 100%;
  min-height: 8.8125rem;
  margin-bottom: 16px;
}
.nav-spacer.open-menu {
  background-color: #101828;
}
/*Navbar.scss End*/
/*NavbarHeader.scss Start*/
.navbar-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #f2f3f4;
  z-index: 251;
  transition: transform 0.3s ease;
}
.navbar-header.hidden {
  transform: translateY(-100%);
}
.navbar-header.menu-open {
  transform: translateY(-100%);
}
.navbar-header__content {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  transition: all 0.3s ease;
}
.navbar-header__content__left .text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: #101828;
}
.navbar-header__content__right {
  display: none;
  align-items: center;
}
/*NavbarHeader.scss End*/
/*NavbarMenuDropdown.scss Start*/
.navbar-menu-dropdown {
  position: relative;
  background-color: #fcfcfd;
  padding: 0 21px 16px 16px;
}
.navbar-menu-dropdown__dropdown-toggle {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: space-between;
  background-color: #f2545b;
  border-radius: 24px;
  cursor: pointer;
}
.navbar-menu-dropdown__dropdown-toggle__selected-text {
  width: calc(100% - 3.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-menu-dropdown__dropdown-toggle__selected-text span {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
  text-transform: uppercase;
}
.navbar-menu-dropdown__dropdown-toggle__arrow {
  position: relative;
  border-left: 1px solid #fcfcfd;
}
.navbar-menu-dropdown__dropdown-toggle__arrow .icon {
  width: 3.875rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-menu-dropdown__dropdown-menu {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  width: calc(100% - 37px);
  min-height: 97px;
  background: #fcfcfd;
  border: 1px solid #f2545b;
  border-radius: 24px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  margin: auto;
  list-style: none;
  z-index: 110;
}
.navbar-menu-dropdown__dropdown-menu :last-child.dropdown-item {
  border-radius: 0 0 24px 24px;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item {
  width: 100%;
  min-height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
  border-bottom: 1px solid #d0d5dd;
  border-radius: 24px 24px 0 0;
  transition: all 0.5s ease;
  cursor: pointer;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__title {
  width: calc(100% - 3.875rem);
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__title span {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
  text-transform: uppercase;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__arrow {
  border-left: 1px solid #d0d5dd;
}
.navbar-menu-dropdown__dropdown-menu .dropdown-item__arrow .icon {
  width: 3.875rem;
  min-height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*NavbarMenuDropdown.scss End*/
/*NavbarMenuMobile.scss Start*/
.navbar-menu-mobile {
  position: fixed;
  top: 170px;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #fcfcfd;
  overflow: hidden;
  transition: all 0.8s ease;
  pointer-events: none;
  z-index: 240;
  display: flex;
  flex-direction: column;
  display: none;
}
.navbar-menu-mobile.open {
  display: flex;
  height: 100vh;
  height: 100svh;
  pointer-events: auto;
}
.navbar-menu-mobile.open .navbar-menu-mobile__info-container {
  opacity: 1;
}
.navbar-menu-mobile__info-container {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100% - 170px - 90px);
  max-height: calc(100% - 170px - 90px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s ease;
}
.navbar-menu-mobile__top {
  padding-left: 16px;
  padding-right: 8px;
  padding-top: 3px;
}
.navbar-menu-mobile__top__content__go-back {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  width: 100%;
}
.navbar-menu-mobile__top__content__go-back svg path {
  fill: #1f56a3;
}
.navbar-menu-mobile__top__content__go-back__title__text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #072f63;
}
.navbar-menu-mobile__top__content__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
  border: 0.2px solid #ededed;
}
.navbar-menu-mobile__top__content__item.child .navbar-menu-mobile__top__content__item__title__text {
  font-weight: 500;
  color: #101828;
}
.navbar-menu-mobile__top__content__item__title {
  padding-left: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  padding-right: 24px;
}
.navbar-menu-mobile__top__content__item__title__text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-montserrat);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
}
.navbar-menu-mobile__top__content__item__title:hover {
  transition: all 0.3s ease;
  background-color: #f2f3f4;
}
.navbar-menu-mobile__top__content__item__arrow {
  width: 3.75rem;
  height: 100%;
  border-left: 0.2px solid #ededed;
  transition: all 0.3s ease;
}
.navbar-menu-mobile__top__content__item__arrow svg {
  width: 14px;
  height: 15px;
}
.navbar-menu-mobile__top__content__item__arrow svg path {
  fill: #1f56a3;
}
.navbar-menu-mobile__top__content__item__arrow:hover {
  transition: all 0.3s ease;
  background-color: #f2f3f4;
}
.navbar-menu-mobile__bottom-content {
  width: 100%;
  height: 80px;
  top: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #101828;
  padding: 0 20px 0 15px;
}
/*NavbarMenuMobile.scss End*/
/*NavbarSocials.scss Start*/
.navbar-socials-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
}
.navbar-socials-content__item {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}
.navbar-socials-content__item .common-image {
  width: fit-content;
  height: fit-content;
  display: flex;
}
.navbar-socials-content__item .common-image .icon {
  width: fit-content;
  height: fit-content;
  filter: brightness(0) saturate(100%) invert(7%) sepia(26%) saturate(2084%) hue-rotate(188deg) brightness(90%) contrast(94%);
  transition: all 0.3s ease;
}
/*NavbarSocials.scss End*/
/*NavbarLogo.scss Start*/
.navbar-logo {
  position: relative;
}
.navbar-logo__wrapper {
  width: 10.75rem;
  height: 3.3125rem;
  margin-bottom: unset;
}
.navbar-logo__image {
  width: 10.75rem;
  height: 3.3125rem;
}
.navbar-logo__image .common-image {
  width: 100%;
  height: auto;
}
.navbar-logo__image .common-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*NavbarLogo.scss End*/

@media screen and (min-width: 768px) {
  /*Navbar.scss Start*/
  .navbar {
    margin-bottom: 0;
    top: 0;
  }
  .navbar.open-menu {
    
  }
  .navbar.open-menu .navbar__content .navbar__content__actions {
    margin-bottom: 10px;
  }
  .navbar__content {
    height: 6rem;
    padding: 0 48px 0 48px;
  }
  .navbar__content__actions {
    gap: 8px;
  }
  .nav-spacer {
    min-height: 9.5rem;
    margin-bottom: 13px;
  }
  /*Navbar.scss End*/
  /*NavbarHeader.scss Start*/
  .navbar-header__content {
    height: 3.5rem;
    padding: 0 44px 0 47px;
  }
  .navbar-header__content__left .text {
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--font-montserrat);
    font-weight: 700;
  }
  /*NavbarHeader.scss End*/
  /*NavbarLogo.scss Start*/
  .navbar-logo__wrapper {
    width: 13rem;
    height: 4rem;
  }
  .navbar-logo__image {
    width: 13rem;
    height: 4rem;
  }
  /*NavbarLogo.scss End*/
  /*NavbarMenuDropdown.scss Start*/
  .navbar-menu-dropdown {
    padding: 0 44px 16px 46px;
  }
  .navbar-menu-dropdown__dropdown-toggle__selected-text {
    width: calc(100% - 4.0625rem);
  }
  .navbar-menu-dropdown__dropdown-toggle__arrow .icon {
    width: 4.0625rem;
  }
  .navbar-menu-dropdown__dropdown-menu {
    top: 64px;
    width: calc(100% - 90px);
  }
  /*NavbarMenuDropdown.scss End*/
  /*NavbarMenuMobile.scss Start*/
  .navbar-menu-mobile {
    top: 168px;
  }
  .navbar-menu-mobile.open {
    height: calc(100vh - 168px);
    height: calc(100svh - 168px);
  }
  .navbar-menu-mobile__info-container {
    max-height: calc(100% - 84px);
  }
  .navbar-menu-mobile__top__content__go-back {
    padding: 16px 48px;
  }
  .navbar-menu-mobile__top__content__item__title {
    padding-left: 48px;
    padding-right: 24px;
  }
  .navbar-menu-mobile__top__content__item__title__text {
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--font-montserrat);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .navbar-menu-mobile__top__content__item__arrow {
    display: flex;
    align-items: center;
    width: 6.75rem;
  }
  .navbar-menu-mobile__top__content__item__arrow svg {
    padding-left: 24px;
  }
  .navbar-menu-mobile__bottom-content {
    position: relative;
    width: 100%;
    padding: 0 44px 0 47px;
    height: 84px;
  }
  /*NavbarMenuMobile.scss End*/

  /*Auth Component*/
  .navbar-bottom {
    top: 96px;
  }
}
@media screen and (min-width: 1200px) {
  #nav-mobile {
    display: none;
  }
  #nav-desktop {
    display: block;
  }
  /*Navbar.scss Start*/
  .navbar {
    margin-bottom: 44px;
    top: 0;
  }
  .navbar__content {
    max-width: 110rem;
    height: 6rem;
    display: block;
    justify-content: unset;
    padding: 0 80px;
    margin: auto;
  }
  .nav-spacer {
    min-height: 9.4375rem;
  }
  /*Navbar.scss End*/

  /*NavbarHeader.scss Start*/
  .navbar-header__content {
    max-width: 110rem;
    height: 3.4375rem;
    padding: 0 70px 0 80px;
    margin: auto;
  }
  .navbar-header__content__left .text {
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--font-montserrat);
    font-weight: 700;
  }
  .navbar-header__content__right {
    display: flex;
  }
  /*NavbarHeader.scss End*/
  /*NavbarLogo.scss Start*/
  .navbar-logo__wrapper {
    width: 13rem;
    height: 4rem;
  }
  .navbar-logo__image {
    width: 13rem;
    height: 4rem;
  }
  /*NavbarLogo.scss End*/
  /*NavbarMenuDesktop.scss Start*/
  .navbar-menu-desktop {
    position: relative;
    min-width: 44.375rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
  }
  .navbar-menu-desktop__middle-content {
    position: relative;
    width: fit-content;
    height: 3rem;
    border: 1px solid #9ba5b5;
    border-radius: 28px;
    margin: auto;
    z-index: 100;
  }
  .navbar-menu-desktop__middle-content .active-element {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 48px;
    width: calc(100% - 69px);
    background-color: #1f56a3;
    border-radius: 42px;
    transition: all 0.5s ease;
    z-index: 0;
  }
  .navbar-menu-desktop__middle-content__info-list-content {
    height: 3rem;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    opacity: 1;
    transition: all 0.5s ease;
  }
  .navbar-menu-desktop__middle-content__info-list-content :nth-child(1).info-parent {
    width: calc(100% - 69px);
    padding-inline: 16px;
  }
  .navbar-menu-desktop__middle-content__info-list-content :nth-child(2).info-parent {
    width: calc(100% - 69px);
    padding: 0 24px 0 24px;
  }
  .navbar-menu-desktop__middle-content__info-list-content :nth-child(3).info-parent {
    width: calc(100% - 69px);
    padding: 0 24px 0 24px;
  }
  .navbar-menu-desktop__middle-content__info-list-content :nth-child(4).info-parent {
    width: calc(100% - 69px);
    padding: 0 24px 0 24px;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent {
    position: relative;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent__title {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent__title span {
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--font-montserrat);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: unset;
    color: #101828;
    position: relative;
    transition:
      background-color 0.1s ease,
      color 0.3s ease;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent:hover .info-parent__title span,
  .navbar-menu-desktop__middle-content__info-list-content .info-parent.active .info-parent__title span {
    color: #fcfcfd;
    background-color: #1f56a3;
    transition:
      background-color 2.5s ease,
      color 0.3s ease 0.1s;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent:hover .info-parent__title span,
  .navbar-menu-desktop__middle-content__info-list-content .info-parent.open .info-parent__title span {
    position: relative;
  }

  .navbar-menu-desktop__middle-content__info-list-content .info-parent.active .info-parent__container::after,
  .navbar-menu-desktop__middle-content__info-list-content .info-parent.open .info-parent__container::after {
    pointer-events: all;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent.active .info-parent__title span,
  .navbar-menu-desktop__middle-content__info-list-content .info-parent.open .info-parent__title span {
    position: relative;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent__container {
    position: relative;
    height: 3rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent__container::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: transparent;
    z-index: 1;
    pointer-events: none;
  }
  .navbar-menu-desktop__middle-content__info-list-content .info-parent.mirror {
    padding-inline: 24px;
  }
  .navbar-menu-desktop__right-content {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    z-index: 105;
  }
  /*NavbarMenuDesktop.scss End*/
  /*NavbarSocials.scss Start*/
  .navbar-socials-content {
    position: absolute;
    right: 18px;
    top: 426px;
    flex-direction: column;
    gap: 16px;
  }
  .navbar-socials-content__item {
    width: 43px;
    height: 43px;
    background: #fcfcfd;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
  }
  .navbar-socials-content__item:hover {
    background: #f2f3f4;
    border: 1px solid #f2f3f4;
  }
  .navbar-socials-content__item:hover .common-image .icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(74%) saturate(594%) hue-rotate(309deg) brightness(95%) contrast(100%);
  }
  /*NavbarSocials.scss End*/
}

@media screen and (min-width: 1611px) {
  /*NavbarMenuDesktop.scss Start*/
  .navbar-menu-desktop__middle-content {
    position: absolute;
    left: 0;
    right: 0;
  }
  /*NavbarMenuDesktop.scss End*/
}
