:root {
  --primary: #000000;
  --secondary: #6c757d;
  --gray: #adb5bd;
  --background: #ffffff;
  --card-background: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --error: #dc3545;
  --success: #28a745;
  --warning: #ffc107;
  --info: #17a2b8;
}

:root {
  --font-family: Montserrat, sans-serif, Arial, sans-serif;
  --font-base: Montserrat, sans-serif;
  --font-fallback: Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  line-height: 1.5;
  color: var(--black);
  background-color: var(--background);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

.topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}
@media (max-width: 767px) {
  .topbar {
    padding: 20px 0;
  }
}
@media (max-width: 374px) {
  .topbar {
    padding: 15px 0;
  }
}
.topbar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}
@media (max-width: 991px) {
  .topbar__wrapper {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .topbar__wrapper {
    flex-wrap: nowrap;
    gap: 16px;
    min-height: auto;
  }
}
@media (max-width: 374px) {
  .topbar__wrapper {
    gap: 0;
    min-height: 41px;
    justify-content: space-between;
  }
}
.topbar__menu-toggler {
  width: 42px;
  height: 41px;
  padding: 0;
  border: none;
  background: transparent;
  flex-shrink: 0;
  align-items: center;
  color: var(--white);
  opacity: 1;
}
.topbar__menu-toggler:focus {
  box-shadow: none;
  outline: none;
}
.topbar__menu-toggler i {
  font-size: 20px;
  color: var(--white);
}
@media (max-width: 374px) {
  .topbar__menu-toggler {
    width: 42px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.topbar__logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .topbar__logo {
    flex: 0;
    justify-content: flex-start;
  }
}
.topbar__logo-link {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  line-height: normal;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .topbar__logo-link {
    font-size: 26px;
  }
}
@media (max-width: 374px) {
  .topbar__logo-link {
    font-size: 20px;
  }
}
@media (max-width: 374px) {
  .topbar__logo {
    flex: 1;
    justify-content: center;
  }
}
.topbar__search {
  max-width: 500px;
  width: 100%;
}
@media (max-width: 991px) {
  .topbar__search {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .topbar__search {
    order: 3;
    width: 100%;
    max-width: 100%;
  }
}
.topbar__search-form {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 991px) {
  .topbar__search-form {
    max-width: 100%;
    width: 100%;
  }
}
.topbar__search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 10px 20px;
  border: 1px solid var(--white);
  border-radius: 8px;
  background: transparent;
  box-sizing: border-box;
  gap: 10px;
}
.topbar__search-icon {
  flex-shrink: 0;
  color: var(--white);
  font-size: 16px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar__search-text {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: normal;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.topbar__search-input {
  width: 100%;
  padding: 10px 20px 10px 0px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
.topbar__search-input:focus {
  outline: none;
}
.topbar__search-input::-moz-placeholder {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
}
.topbar__search-input::placeholder {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
}
.topbar__search-input::-webkit-search-cancel-button, .topbar__search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.topbar__search-input::-ms-clear, .topbar__search-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.topbar__search-input::-moz-search-clear {
  display: none;
}
.topbar__search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  opacity: 1;
  transition: 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}
.topbar__search-clear i {
  font-size: 14px;
  line-height: 1;
}
.topbar__search-clear:hover {
  opacity: 1;
  color: var(--white);
}
.topbar__search-clear:active {
  opacity: 0.9;
}
.topbar__search-clear:focus {
  outline: none;
  opacity: 1;
}
@supports selector(:has(*)) {
  .topbar__search-wrapper:has(.topbar__search-input:not(:-moz-placeholder)) .topbar__search-clear {
    display: flex;
  }
  .topbar__search-wrapper:has(.topbar__search-input:not(:placeholder-shown)) .topbar__search-clear {
    display: flex;
  }
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  height: 40px;
}
.topbar__auth-buttons {
  display: flex;
  gap: 25px;
  align-items: center;
  height: 40px;
}
@media (max-width: 767px) {
  .topbar__auth-buttons {
    gap: 12px;
  }
}
@media (max-width: 374px) {
  .topbar__auth-buttons {
    display: none;
  }
}
.topbar__login--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 20px;
  color: var(--white);
  transition: 0.3s ease;
  text-decoration: none;
}
.topbar__login--mobile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.topbar__dropdown {
  position: relative;
}
@media (max-width: 374px) {
  .topbar__dropdown {
    display: none;
  }
}
.topbar__user-toggle {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.topbar__user-toggle:focus {
  box-shadow: none;
  outline: none;
}
.topbar__user-toggle:hover {
  background: transparent;
}
.topbar__user-toggle::after {
  display: none;
}
.topbar__user-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  height: 40px;
}
@media (max-width: 767px) {
  .topbar__user-content {
    width: auto;
    min-width: 200px;
  }
}
.topbar__user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 35px;
}
.topbar__user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.topbar__user-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}
.topbar__user-mobile:hover {
  opacity: 0.8;
}
.topbar__user-mobile .topbar__user-avatar {
  margin-left: 0;
}
@media (max-width: 374px) {
  .topbar__user-mobile {
    width: 40px;
    height: 40px;
  }
}
.topbar__user-name {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  line-height: normal;
  white-space: nowrap;
  margin-left: 15px;
  flex: 1;
}
@media (max-width: 767px) {
  .topbar__user-name {
    font-size: 14px;
    margin-left: 12px;
  }
}
.topbar__dropdown-icon {
  color: var(--white);
  font-size: 10px;
  margin-left: auto;
  margin-right: 0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.topbar__dropdown-menu {
  background: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0;
  min-width: 200px;
  overflow: hidden;
}
.topbar__dropdown-menu.show {
  transform: translate(0, 52px) !important;
}
.topbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--black);
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  transition: 0.3s ease;
}
.topbar__dropdown-item i {
  font-size: 14px;
  width: 16px;
  text-align: center;
  color: var(--gray);
  transition: 0.3s ease;
}
.topbar__dropdown-item:hover {
  background: var(--black);
  color: var(--white);
  transition: 0.3s ease;
}
.topbar__dropdown-item:hover i {
  color: var(--white);
}
.topbar__dropdown-item:active {
  background: rgba(255, 255, 255, 0.15);
}
.topbar .show .topbar__dropdown-icon {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .topbar__container {
    padding: 0 30px;
  }
}
@media (max-width: 374px) {
  .topbar__container {
    padding: 0 16px;
  }
}
.topbar #mobileMenu.offcanvas {
  background: var(--white);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.topbar #mobileMenu.offcanvas.offcanvas-start {
  left: 0;
  transform: translateX(-100%);
}
.topbar #mobileMenu.offcanvas.offcanvas-start.show {
  transform: translateX(0);
}
.topbar__offcanvas-header {
  padding: 43px 16px 0;
  border-bottom: none;
  position: relative;
  min-height: 106px;
  background: var(--white);
  flex-shrink: 0;
}
.topbar__close-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.topbar__close-btn:focus {
  outline: none;
  box-shadow: none;
}
.topbar__close-btn:hover {
  opacity: 0.7;
}
.topbar__close-btn i {
  font-size: 20px;
  color: var(--black);
}
.topbar__offcanvas-title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  white-space: nowrap;
}
.topbar__offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  overflow-y: auto;
  flex: 0 0 auto;
  min-height: 0;
  justify-content: flex-start;
  margin-top: 0;
  height: 100%;
  max-height: 60vh;
  overflow-y: auto;
}
.topbar__mobile-nav {
  width: 343px;
  max-width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 0;
}
.topbar__mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #f3f3f3;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  box-sizing: border-box;
}
.topbar__mobile-nav-item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}
.topbar__mobile-nav-item:last-child {
  border-bottom: none;
}
.topbar__mobile-nav-item span {
  display: block;
}
.topbar__offcanvas-footer {
  padding: 40px 0 20px;
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  margin-bottom: auto;
  flex-shrink: 0;
}
.topbar__auth-buttons-mobile {
  display: flex;
  gap: 25px;
  align-items: center;
  height: 40px;
  width: 100%;
  justify-content: center;
}

.navbar {
  background: var(--card-background);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  z-index: 1030;
  transition: 0.3s ease;
}
.navbar.fixed-top {
  transition: 0.3s ease;
}
.navbar .navbar-nav {
  gap: 50px;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
.navbar .nav-link {
  padding: 0px 16px;
  color: var(--black);
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s ease;
  position: relative;
  border-radius: 4px;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s ease;
}
.navbar .nav-link:hover {
  color: var(--primary);
}
.navbar .nav-link:hover::after {
  width: calc(100% - 15px);
}
.navbar .nav-link.active {
  color: var(--primary);
}
.navbar .nav-link.active::after {
  width: calc(100% - 15px);
}
@media (max-width: 991px) {
  .navbar .nav-link {
    padding: 12px 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(173, 181, 189, 0.2);
  }
  .navbar .nav-link::after {
    display: none;
  }
}
.navbar .navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar__search {
  max-width: 500px;
  width: 100%;
}
@media (max-width: 991px) {
  .navbar__search {
    max-width: 100%;
    width: 100%;
  }
}
.navbar__search-form {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 991px) {
  .navbar__search-form {
    max-width: 100%;
    width: 100%;
  }
}
.navbar__search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 10px 20px;
  border: 1px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-sizing: border-box;
  gap: 10px;
}
.navbar__search-icon {
  flex-shrink: 0;
  color: var(--gray);
  font-size: 16px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__search-text {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  line-height: normal;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navbar__search-input {
  width: 100%;
  padding: 10px 20px 10px 0px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--gray);
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
.navbar__search-input:focus {
  outline: none;
}
.navbar__search-input::-moz-placeholder {
  color: var(--gray);
  font-weight: 500;
  font-size: 16px;
}
.navbar__search-input::placeholder {
  color: var(--gray);
  font-weight: 500;
  font-size: 16px;
}
.navbar__search-input::-webkit-search-cancel-button, .navbar__search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.navbar__search-input::-ms-clear, .navbar__search-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.navbar__search-input::-moz-search-clear {
  display: none;
}
.navbar__search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray);
  opacity: 1;
  transition: 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}
.navbar__search-clear i {
  font-size: 14px;
  line-height: 1;
}
.navbar__search-clear:hover {
  opacity: 1;
  color: var(--gray);
}
.navbar__search-clear:focus {
  outline: none;
}
@supports selector(:has(*)) {
  .navbar__search-wrapper:has(.navbar__search-input:not(:-moz-placeholder)) .navbar__search-clear {
    display: flex;
  }
  .navbar__search-wrapper:has(.navbar__search-input:not(:placeholder-shown)) .navbar__search-clear {
    display: flex;
  }
}

.footer {
  background: #f3f3f3;
  color: var(--black);
  padding: 50px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer {
    padding: 20px 0;
    gap: 24px;
  }
}
.footer__content {
  gap: 25px;
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.footer__card {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__card {
    align-items: flex-start;
    width: 100%;
  }
  .footer__card--logo {
    width: 270px;
    align-items: flex-start;
    text-align: left;
  }
  .footer__card--category {
    width: 107px;
  }
  .footer__card--page {
    width: 65px;
  }
  .footer__card--auth {
    width: 135px;
  }
}
.footer__logo {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 26px;
  font-weight: 800;
  line-height: normal;
  color: var(--black);
  margin: 0;
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 767px) {
  .footer__logo {
    text-align: center;
    font-size: 22px;
  }
}
@media (max-width: 374px) {
  .footer__logo {
    font-size: 20px;
  }
}
.footer__social {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--black);
  text-decoration: none;
  transition: 0.3s ease;
}
.footer__social-link:hover {
  opacity: 0.7;
}
.footer__social-link i {
  font-size: 25px;
}
.footer__title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 20px;
  font-weight: 800;
  line-height: normal;
  color: var(--black);
  margin: 0 0 10px 0;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__auth-buttons {
  display: flex;
  gap: 25px;
  align-items: center;
  height: 40px;
}
@media (max-width: 767px) {
  .footer__auth-buttons {
    gap: 16px;
    height: auto;
    align-items: flex-start;
  }
}
.footer__divider {
  height: 1px;
  width: 100%;
  background: var(--white);
  margin: 25px 0;
}
@media (max-width: 767px) {
  .footer__divider {
    width: 343px;
    max-width: 100%;
  }
}
.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .footer__bottom {
    justify-content: center;
    padding: 0 16px;
  }
}
.footer__copyright {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__copyright {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__separator {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--white);
  transform: rotate(90deg);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .footer__container {
    padding: 0 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
  outline: none;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--default {
  height: 40px;
  padding: 10px 30px;
  font-weight: 500;
}
.btn--large {
  height: 54px;
  padding: 10px 20px;
  font-weight: 600;
}
.btn--social {
  height: 48px;
  padding: 10px 20px;
  width: 110px;
  font-weight: 500;
}
.btn--primary {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid transparent;
}
.btn--primary:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white);
}
.btn--primary:active:not(:disabled) {
  border-color: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.btn--secondary {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid transparent;
}
.btn--secondary:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--black);
}
.btn--secondary:active:not(:disabled) {
  border-color: none;
  background-color: rgba(255, 255, 255, 0.9);
}
.btn--outline {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--outline:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: var(--black);
  color: var(--black);
}
.btn--outline:active:not(:disabled) {
  border-color: none;
  background-color: rgba(0, 0, 0, 0.1);
}
.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--outline-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-white:active:not(:disabled) {
  border-color: none;
  background-color: rgba(255, 255, 255, 0.15);
}
.btn--social {
  background-color: var(--white);
  border: 1px solid #f3f3f3;
  color: var(--black);
  padding: 10px 20px;
}
.btn--social:hover:not(:disabled) {
  border-color: var(--black);
  background-color: #fafafa;
}
.btn--social:active:not(:disabled) {
  border-color: none;
}
.btn--social img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn--social i {
  font-size: 24px;
  color: var(--black);
}
.btn--w-110 {
  width: 110px;
}
.btn--w-135 {
  width: 135px;
}
.btn--w-100 {
  width: 100%;
}
@media (max-width: 767px) {
  .btn--default {
    padding: 10px 20px;
    width: auto;
    min-width: 100px;
  }
}
@media (max-width: 374px) {
  .btn--social {
    flex: 1;
    min-width: calc(33.333% - 7px);
  }
}

.artwork__card {
  cursor: pointer;
  border: none;
  text-align: center;
  color: var(--white);
  height: 100%;
  --width: 93px;
  --height: 93px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: var(--width)/var(--height);
  transition: 0.3s ease;
}
.artwork__card .card-title {
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s ease;
}
.artwork__card--add {
  background-color: var(--black);
}
.artwork__card--add .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 13px;
}
.artwork__card--add .card-body i {
  font-size: 20px;
}
.artwork__card--hasimage .card-img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 13px;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease;
}
.artwork__card--hasimage .card-img-overlay .card-title {
  display: none;
  transition: 0.3s ease;
}
.artwork__card--hasimage:hover .card-img-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}
.artwork__card--hasimage:hover .card-img-overlay .card-title {
  display: block;
  transition: 0.3s ease;
}
.artwork__card--noimage .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 13px;
}

.artist-modal-content {
  background: var(--black);
  border: none;
  border-radius: 8px;
  padding: 50px;
}
@media (max-width: 767px) {
  .artist-modal-content {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .artist-modal-content {
    padding: 32px 16px;
  }
}

.modal-body::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
}
.modal-body::-webkit-scrollbar-track {
  background-color: #ffffff;
  width: 5px;
  border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb {
  background-color: #aaaaaa;
  border-radius: 10px;
}

.modal-header {
  position: relative;
  width: 100%;
  padding: 0 0 20px;
}

.artist-modal__close {
  position: relative;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background: transparent;
  border: none;
  padding: 0;
  margin-left: auto;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: fadeInRotate 0.3s ease-out;
}
.artist-modal__close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}
.artist-modal__close:active {
  transform: rotate(90deg) scale(0.9);
}
.artist-modal__close:focus {
  outline: none;
  box-shadow: none;
}
.artist-modal__close i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

@keyframes fadeInRotate {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.artist-modal__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  justify-content: flex-start;
  flex-shrink: 0;
}

.artist-modal__avatar-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 374px) {
  .artist-modal__avatar-wrapper {
    width: 200px;
    height: 200px;
  }
}

.artist-modal__avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.artist-modal__name {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: var(--white);
  margin: 0;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white);
}

.artist-modal__social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}
.artist-modal__social li:not(:last-child) {
  margin-right: 12px;
  margin-left: 12px;
}
.artist-modal__social li:first-child {
  margin-left: 0;
  margin-right: 12px;
}
.artist-modal__social li:last-child {
  margin-right: 0;
  margin-left: 12px;
}
.artist-modal__social li a {
  text-decoration: none;
  font-size: 25px;
  color: var(--white);
  transition: 0.3s ease;
}
.artist-modal__social li a:hover {
  opacity: 0.7;
}

.artist-modal__share {
  display: flex;
  gap: 25px;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .artist-modal__share {
    width: auto;
  }
}
.artist-modal__share-label {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--white);
  margin: 0;
  flex-shrink: 0;
}
.artist-modal__share-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.artist-modal__share-icons li:not(:last-child) {
  margin-right: 12px;
  margin-left: 12px;
}
.artist-modal__share-icons li:first-child {
  margin-left: 0;
  margin-right: 12px;
}
.artist-modal__share-icons li:last-child {
  margin-right: 0;
  margin-left: 12px;
}
.artist-modal__share-icons li a {
  text-decoration: none;
  transition: 0.3s ease;
}
.artist-modal__share-icons li a i.fa-facebook {
  width: 22px;
  height: 22px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  transition: 0.3s ease;
  color: var(--white);
  background-color: #0070f3;
}
.artist-modal__share-icons li a i.fa-whatsapp {
  width: 22px;
  height: 22px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  transition: 0.3s ease;
  color: var(--white);
  background-color: #01b41f;
}
.artist-modal__share-icons li a i.fa-telegram-plane {
  width: 22px;
  height: 22px;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  transition: 0.3s ease;
  color: #00c3ff;
  background-color: var(--white);
}
.artist-modal__share-icons li a i.fa-x-twitter {
  width: 22px;
  height: 22px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  transition: 0.3s ease;
  color: var(--white);
  background-color: #00c3ff;
}

.artist-modal__category {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 26px;
  font-weight: 800;
  line-height: normal;
  color: var(--white);
  margin-bottom: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .artist-modal__category {
    width: auto;
    height: auto;
  }
}
@media (max-width: 374px) {
  .artist-modal__category {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    width: 100%;
    height: auto;
  }
}

.artist-modal__gallery {
  border-left: 1px solid var(--white);
  border-radius: 0;
  margin-left: auto;
  height: auto;
  padding: 0 0 0 50px;
}
@media (max-width: 991px) {
  .artist-modal__gallery {
    border-left: none;
    border-top: 1px solid var(--white);
    padding: 25px 0 0;
  }
}
@media (max-width: 374px) {
  .artist-modal__gallery {
    border-left: none;
    padding: 0;
  }
}
.artist-modal__gallery .card-body {
  padding: 25px 0;
}
.artist-modal__gallery .artist-modal__gallery-item {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
}
.artist-modal__gallery .artist-modal__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.artist-modal__description {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  flex-shrink: 0;
  padding-top: 25px;
}
@media (max-width: 991px) {
  .artist-modal__description {
    padding-top: 5px;
    padding-bottom: 25px;
  }
}

.modal-xl .modal-content {
  border-radius: 8px;
}

.auth-required-modal-content {
  background: var(--black);
  border: none;
  border-radius: 8px;
  color: var(--white);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  position: relative;
}
@media (max-width: 575px) {
  .auth-required-modal-content {
    padding: 32px 16px;
    gap: 16px;
  }
}

.auth-required-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.auth-required-modal__close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}
.auth-required-modal__close:active {
  transform: rotate(90deg) scale(0.9);
}
.auth-required-modal__close:focus {
  outline: none;
  box-shadow: none;
}
.auth-required-modal__close i {
  font-size: 20px;
}

.auth-required-modal-content .modal-header {
  position: relative;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}

.auth-required-modal-content .modal-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .auth-required-modal-content .modal-body {
    gap: 16px;
  }
}

.auth-required-modal__icon-wrapper {
  max-width: 263px;
  max-height: 264px;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .auth-required-modal__icon-wrapper {
    max-width: 263px;
    max-height: 264px;
    height: 100%;
    width: 100%;
  }
}

.auth-required-modal__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.auth-required-modal__text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (max-width: 575px) {
  .auth-required-modal__text {
    gap: 16px;
  }
}

.auth-required-modal__title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 52px;
  font-weight: 800;
  line-height: 100%;
  color: var(--white);
  margin: 0;
  width: 100%;
  height: auto;
}
@media (max-width: 575px) {
  .auth-required-modal__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 100%;
  }
}

.auth-required-modal__subtitle {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: var(--white);
  margin-bottom: 25px;
  width: 100%;
}

.auth-required-modal__buttons {
  display: inline-flex;
  gap: 20px;
  width: 100%;
  flex-wrap: nowrap;
  padding: 25px 0;
}
@media (max-width: 575px) {
  .auth-required-modal__buttons {
    flex-wrap: nowrap;
  }
}
@media (max-width: 479px) {
  .auth-required-modal__buttons {
    flex-wrap: wrap;
  }
}
@media (max-width: 374px) {
  .auth-required-modal__buttons {
    flex-wrap: wrap;
  }
}

.artist-modal-dialog {
  max-width: 1340px;
}

.auth-required-modal-dialog {
  max-width: 846px;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 8px;
  display: block;
}

.form-input-wrapper {
  position: relative;
  width: 100%;
}

.form-control {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: var(--black);
  background-color: var(--white);
  border: 1px solid #f3f3f3;
  border-radius: 8px;
  padding: 8px 20px;
  height: 48px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control::-moz-placeholder {
  color: #adb1b5;
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 400;
}
.form-control::placeholder {
  color: #adb1b5;
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 400;
}
.form-control:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.form-control:disabled {
  background-color: #f3f3f3;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-control:not(:-moz-placeholder) {
  border-color: rgba(0, 0, 0, 0.5);
}
.form-control:not(:placeholder-shown) {
  border-color: rgba(0, 0, 0, 0.5);
}

.form-password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #adb1b5;
  transition: color 0.3s ease;
}
.form-password-toggle:hover {
  color: var(--black);
}
.form-password-toggle:focus {
  outline: none;
}
.form-password-toggle i {
  font-size: 16px;
}

.form-select-wrapper {
  position: relative;
  width: 100%;
}
.form-select-wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 5px;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.form-select {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: var(--black);
  background-color: var(--white);
  border: 1px solid #f3f3f3;
  border-radius: 8px;
  padding: 8px 40px 8px 20px;
  height: 48px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.form-select:disabled {
  background-color: #f3f3f3;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-select option {
  color: var(--black);
  background-color: var(--white);
  padding: 8px;
}
.form-select option:disabled {
  color: #adb1b5;
}
.form-select:invalid {
  color: #adb1b5;
}
.form-select:not(:invalid) {
  border-color: rgba(0, 0, 0, 0.5);
}

.form-textarea {
  min-height: 140px;
  height: auto;
  padding: 20px;
  resize: vertical;
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.form-textarea::-moz-placeholder {
  color: #adb1b5;
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 400;
}
.form-textarea::placeholder {
  color: #adb1b5;
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 400;
}

.image-upload__wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.image-upload__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: none;
}

.image-upload__edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: 0.3s ease;
  z-index: 10;
}
.image-upload__edit.gallery--edit {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--white);
  transition: 0.3s ease;
}
.image-upload__edit.gallery--edit i {
  font-size: 18px;
  color: var(--black);
  transition: 0.3s ease;
}
.image-upload__edit.gallery--edit:hover {
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease;
}
.image-upload__edit.gallery--edit:hover i {
  color: var(--white);
  transition: 0.3s ease;
}
.image-upload__edit:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}
.image-upload__edit i {
  font-size: 12px;
  color: var(--white);
}

.image-upload__empty {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: var(--black);
  border-radius: 8px;
  height: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}
.image-upload__empty:hover {
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease;
}
.image-upload__empty:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.image-upload__empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.image-upload__empty i {
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #adb1b5;
  transform: scale(1);
  transition: 0.3s ease;
}
.image-upload__empty:hover i {
  color: var(--white);
  transform: scale(1.1);
  transition: 0.3s ease;
}

.image-upload__input {
  display: none;
}

.avatar-upload {
  position: relative;
  display: inline-block;
}
.avatar-upload .image-upload__wrapper {
  position: relative;
  display: inline-block;
}
.avatar-upload .image-upload__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.gallery-upload-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-upload-item .image-upload__image {
  border-radius: 8px;
}
.gallery-upload-item .image-upload__edit {
  bottom: 8px;
  right: 8px;
}
.gallery-upload-item .image-upload__edit.gallery--edit {
  bottom: 20px;
  right: 20px;
}

.section {
  padding: 80px 0;
}
.section__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--black);
}

.gallery {
  background: var(--background);
}

.register-section {
  padding: 50px 0 100px;
}
@media (max-width: 575px) {
  .register-section {
    padding: 50px 0 100px;
  }
}

.register-title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 52px;
  font-weight: 800;
  line-height: 100%;
  color: var(--black);
  text-align: center;
  margin-bottom: 113px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .register-title {
    font-size: 36px;
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  .register-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.forgot-password-link {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  color: #adb1b5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.forgot-password-link:hover {
  color: var(--black);
  text-decoration: underline;
}

.register-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}

.register-divider-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 50%;
  margin: 0 auto;
  height: 1px;
  background: #f3f3f3;
  transform: translateY(-50%);
  z-index: 0;
}

.register-divider-text {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 0;
  color: #adb1b5;
  background: var(--white);
  padding: 5px 12px;
  position: relative;
  z-index: 1;
}

.register-social {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 374px) {
  .register-social {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.register-login-link {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  color: #adb1b5;
  text-align: center;
  margin: 0;
  padding-top: 0;
}
.register-login-link a {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.register-login-link a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contacts-section {
  padding: 50px 0 100px;
  background: var(--white);
}
@media (max-width: 575px) {
  .contacts-section {
    padding: 24px 0 32px;
  }
}

.contacts-title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 100px;
  font-weight: 700;
  line-height: 100%;
  color: var(--black);
  text-align: center;
  margin-bottom: 72px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .contacts-title {
    font-size: 60px;
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  .contacts-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

.contacts-cards {
  margin-bottom: 100px;
}
@media (max-width: 575px) {
  .contacts-cards {
    margin-bottom: 50px;
  }
}

.contact-card {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  width: 100%;
}
@media (max-width: 575px) {
  .contact-card {
    height: auto;
    min-height: 232px;
    padding: 30px 20px;
  }
}
@media (max-width: 374px) {
  .contact-card {
    padding: 30px 20px;
  }
}

.contact-card__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--black);
  border-radius: 50%;
}
.contact-card__icon i {
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.contact-card__title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  color: var(--black);
  margin: 0;
  white-space: nowrap;
}

.contact-card__text {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #adb1b5;
  margin: 0;
  max-width: 310px;
  width: 100%;
}

.contacts-map {
  width: 100%;
  max-width: 1440px;
  height: 500px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .contacts-map {
    height: 400px;
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  .contacts-map {
    height: 300px;
    margin-bottom: 30px;
  }
}

.contacts-map__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contacts-map__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(100%);
  mix-blend-mode: luminosity;
}

.contacts-form-wrapper {
  position: relative;
  margin-top: -214px;
}
.contacts-form {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .contacts-form {
    padding: 30px 20px;
    max-width: 100%;
  }
}
@media (max-width: 374px) {
  .contacts-form {
    padding: 20px 16px;
  }
}

.contacts-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.profile-section {
  padding: 50px 0 100px;
  background: var(--white);
}
@media (max-width: 575px) {
  .profile-section {
    padding: 30px 0 50px;
  }
}

.profile-sidebar {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 0px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .profile-sidebar {
    margin-bottom: 30px;
    min-height: auto;
  }
}

.profile-sidebar__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  border-bottom: none;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .profile-sidebar__header {
    flex-direction: column;
    text-align: center;
  }
}

.profile-sidebar__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.profile-sidebar__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.profile-sidebar__name {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.profile-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 575px) {
  .profile-sidebar__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
  }
  .profile-sidebar__nav::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 10px;
  }
  .profile-sidebar__nav::-webkit-scrollbar-track {
    background: #f3f3f3;
  }
  .profile-sidebar__nav::-webkit-scrollbar-thumb {
    background: #adb1b5;
  }
}

.profile-sidebar__nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  text-decoration: none;
  color: #adb1b5;
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border-radius: 8px;
  transition: 0.3s ease;
}
.profile-sidebar__nav-item:first-child {
  border-radius: 8px;
}
.profile-sidebar__nav-item:last-child {
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.profile-sidebar__nav-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: transparent;
  border-radius: 8px;
  transition: 0.3s ease;
}
.profile-sidebar__nav-item:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.05);
}
.profile-sidebar__nav-item:hover i {
  background: #F3F3F3;
  transition: 0.3s ease;
}
.profile-sidebar__nav-item.active {
  background: var(--white);
  color: var(--black);
}
.profile-sidebar__nav-item.active i {
  background: #F3F3F3;
  transition: 0.3s ease;
}

.profile-content {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 20px;
}
@media (max-width: 575px) {
  .profile-content {
    padding: 20px 16px;
  }
}

.profile-content__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
  position: relative;
}
@media (max-width: 575px) {
  .profile-content__header {
    flex-direction: column;
    text-align: center;
  }
}

.profile-content__avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.profile-content__title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  color: var(--black);
  margin: 0;
}

.about-section {
  padding: 50px 0 100px;
  background: var(--white);
}
@media (max-width: 575px) {
  .about-section {
    padding: 30px 0 50px;
  }
}
@media (max-width: 374px) {
  .about-section {
    padding: 24px 0 40px;
  }
}

.about-title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 100px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 71px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .about-title {
    font-size: 60px;
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  .about-title {
    font-size: 40px;
    margin-bottom: 30px;
    white-space: normal;
  }
}

.about-image {
  width: 100%;
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 424px;
  position: relative;
}
@media (max-width: 575px) {
  .about-image {
    margin-bottom: 40px;
    border-radius: 0;
  }
}
@media (max-width: 374px) {
  .about-image {
    margin-bottom: 30px;
    border-radius: 0;
    max-height: 424px;
    min-height: 424px;
    height: 100%;
  }
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 374px) {
  .about-image img {
    min-height: 424px;
    height: 100%;
  }
}

.about-subtitle {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 52px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 33px;
}
@media (max-width: 575px) {
  .about-subtitle {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
@media (max-width: 374px) {
  .about-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.about-description {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .about-description {
    margin-bottom: 40px;
  }
}
@media (max-width: 374px) {
  .about-description {
    margin-bottom: 30px;
  }
}

.about-description__text {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin: 0;
}
@media (max-width: 575px) {
  .about-description__text {
    font-size: 22px;
  }
}
@media (max-width: 374px) {
  .about-description__text {
    font-size: 18px;
  }
}

.notification-section {
  padding: 50px 0 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .notification-section {
    padding: 50px 0;
  }
}
@media (max-width: 374px) {
  .notification-section {
    padding: 30px 0;
  }
}

.notification-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}
@media (max-width: 575px) {
  .notification-content {
    padding: 0 20px;
    gap: 40px;
  }
}
@media (max-width: 374px) {
  .notification-content {
    gap: 30px;
  }
}

.notification-icon {
  max-width: 190px;
  max-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 374px) {
  .notification-icon {
    max-width: 150px;
    max-height: 138px;
  }
}
.notification-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.notification-icon.not-found {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.notification-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}
@media (max-width: 374px) {
  .notification-text {
    gap: 20px;
  }
}

.notification-title {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 52px;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  width: 100%;
}
@media (max-width: 575px) {
  .notification-title {
    font-size: 42px;
  }
}
@media (max-width: 374px) {
  .notification-title {
    font-size: 32px;
  }
}

.notification-message {
  font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  padding: 0 80px;
  color: #adb1b5;
  margin: 0;
  width: 100%;
}
@media (max-width: 575px) {
  .notification-message {
    padding: 0;
  }
}
@media (max-width: 374px) {
  .notification-message {
    font-size: 16px;
    padding: 0;
  }
}

.notification-button {
  width: 100%;
}
.notification-button .btn {
  height: 58px;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 374px) {
  .notification-button .btn {
    height: 50px;
    font-size: 14px;
  }
}
/*# sourceMappingURL=main.css.map */
