.header {
  position: relative;
  width: 100%;
  height: 71px;
  background-color: white;
}
.header-content {
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .header-content {
    padding: 0 15px;
  }
}

.logo {
  width: 145px;
  height: 157px;
  background-color: #14983D;
  position: relative;
  padding: 0 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .logo {
    width: 120px;
    height: 130px;
    padding: 0 12px;
    z-index: 1100;
  }
}
.logo-icon {
  width: 110px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .logo-icon {
    width: 90px;
  }
}
.logo-icon img {
  height: 16px;
  bottom: 30px;
  left: 6px;
  z-index: 1001;
  position: absolute;
}
@media (max-width: 768px) {
  .logo-icon img {
    height: 14px;
    bottom: 25px;
    left: 5px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  background: none;
  border: none;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #14983D;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

nav {
  display: flex;
}
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav.nav-open {
    transform: translateX(0);
  }
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 80px 0;
  }
}
.nav-menu li {
  position: relative;
}
@media (max-width: 768px) {
  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  .nav-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .nav-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
}
.nav-menu a {
  color: #14983D;
  text-decoration: none;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .nav-menu a {
    font-size: 24px;
    padding: 15px 30px;
    display: block;
    border: 2px solid transparent;
    border-radius: 8px;
  }
}
.nav-menu a:hover {
  background-color: rgba(20, 152, 61, 0.1);
  color: #4CAF50;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .nav-menu a:hover {
    background-color: #14983D;
    color: white;
    transform: scale(1.05);
    border-color: #14983D;
  }
}
.nav-menu a:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .nav-menu a:active {
    transform: scale(0.98);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-overlay {
  display: none;
}
@media (max-width: 768px) {
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}

@media (max-width: 768px) {
  .body-no-scroll {
    overflow: hidden;
    height: 100vh;
  }
}

#footer {
  text-align: center;
  margin: 50px 0 20px 0;
}

.background {
  justify-content: center;
  width: 100%;
  height: 95vh;
  background-image: url("../images/background-eskot.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1370px) {
  .background {
    height: 90vh;
  }
}
@media (max-height: 820px) {
  .background {
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .background {
    height: 70vh;
    background-size: cover;
    background-position: center top;
  }
}

.search-container {
  max-width: 622px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  justify-content: center;
}
.search-container #autoComplete {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 1.2rem 4rem 1.2rem 2rem;
  font-size: 1rem;
  outline: none;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.search-container #autoComplete:focus {
  transition: all 0.5s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #14983D;
}
.search-container #search-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #555;
  background-color: transparent;
}
@media (max-width: 768px) {
  .search-container #search-button {
    right: 35px;
    font-size: 1.3rem;
  }
}
@media (max-width: 500px) {
  .search-container #search-button {
    right: 25px;
    font-size: 1.2rem;
  }
}
@media (max-width: 386px) {
  .search-container #search-button {
    right: 20px;
    font-size: 1.1rem;
  }
}

.autoComplete_wrapper {
  position: relative;
  width: 100%;
}
.autoComplete_wrapper ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  padding: 10px;
  overflow: hidden;
  list-style: none;
}
@media (max-width: 500px) {
  .autoComplete_wrapper ul {
    border-radius: 15px;
    padding: 8px;
    margin-top: 8px;
  }
}
.autoComplete_wrapper ul li {
  padding: 10px 15px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 768px) {
  .autoComplete_wrapper ul li {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
}
@media (max-width: 500px) {
  .autoComplete_wrapper ul li {
    padding: 7px 10px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
}
.autoComplete_wrapper ul li:not(:last-of-type) {
  margin-bottom: 5px;
}
@media (max-width: 500px) {
  .autoComplete_wrapper ul li:not(:last-of-type) {
    margin-bottom: 3px;
  }
}
.autoComplete_wrapper ul li.autoComplete_selected, .autoComplete_wrapper ul li:hover {
  background-color: #f0f0f0;
}
.autoComplete_wrapper ul li mark {
  background: none;
  color: #3877E4;
  font-weight: bold;
}
.autoComplete_wrapper .no_result,
.autoComplete_wrapper .logoHolder {
  padding: 10px 15px;
  font-size: 0.9rem;
  color: black;
}
@media (max-width: 500px) {
  .autoComplete_wrapper .no_result,
  .autoComplete_wrapper .logoHolder {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
.autoComplete_wrapper .logoHolder {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid #eee;
}
@media (max-width: 500px) {
  .autoComplete_wrapper .logoHolder {
    font-size: 0.75rem;
    gap: 3px;
  }
}

.home-title {
  text-align: center;
  color: white;
  margin-bottom: 50px;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .home-title {
    margin-bottom: 40px;
  }
}
.home-title h1 {
  font-size: 45px;
  margin-bottom: 10px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .home-title h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
@media (max-width: 500px) {
  .home-title h1 {
    font-size: 25px;
  }
}
.home-title p {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 1370px) {
  .home-title p {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .home-title p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .home-title p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 25px;
  }
}
@media (max-width: 386px) {
  .home-title p {
    font-size: 14px;
  }
}
@media (max-width: 345px) {
  .home-title p {
    font-size: 13px;
  }
}

#status-message {
  text-align: center;
  margin-top: 10px;
  color: black;
  font-size: 0.9rem;
}
@media (max-width: 500px) {
  #status-message {
    font-size: 0.85rem;
    margin-top: 8px;
    padding: 0 15px;
  }
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: -15%;
}
@media (max-width: 1370px) {
  .cards-container {
    grid-template-columns: repeat(2, minmax(350px, 1fr));
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
}
@media (max-width: 500px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
}
@media (max-width: 386px) {
  .cards-container {
    gap: 15px;
    padding: 0 10px;
  }
}

.card {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 365px;
  height: 387px;
  padding: 15px;
  animation: cardFadeIn 0.6s ease-out;
}
@media (max-width: 1370px) {
  .card {
    max-width: 100%;
    height: 360px;
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .card {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    min-height: 350px;
    padding: 15px;
  }
  .card:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 500px) {
  .card {
    max-height: 250px;
  }
}
.card:hover {
  transform: translateY(-20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.card .card-header {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1370px) {
  .card .card-header {
    height: 240px;
    padding: 18px;
  }
}
.card .card-header .card-icon:first-child {
  width: 219px;
  height: 219px;
  position: absolute;
  z-index: 1;
}
@media (max-width: 500px) {
  .card .card-header .card-icon:first-child {
    width: 180px;
    height: 170px;
  }
}
.card .card-header .card-icon:last-child {
  width: 151px;
  height: 151px;
  position: absolute;
  right: 5%;
  bottom: 20px;
  z-index: 2;
}
@media (max-width: 1370px) {
  .card .card-header .card-icon:last-child {
    width: 135px;
    height: 135px;
    right: 15%;
    bottom: 18px;
  }
}
@media (max-width: 386px) {
  .card .card-header .card-icon:last-child {
    width: 100px;
    height: 100px;
    bottom: 18px;
  }
}
.card .card-header-special {
  padding: 20px;
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  background-color: #14983D;
}
@media (max-width: 1370px) {
  .card .card-header-special {
    height: 240px;
    padding: 18px;
  }
}
.card .card-header-special .card-icon-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .card .card-header-special .card-icon-wrapper {
    gap: 8px;
    margin-bottom: 15px;
  }
}
@media (max-width: 386px) {
  .card .card-header-special .card-icon-wrapper {
    gap: 6px;
    margin-bottom: 10px;
  }
}
.card .card-icon {
  width: 80px;
  height: 80px;
}
@media (max-width: 386px) {
  .card .card-icon {
    width: 70px;
    height: 70px;
  }
}
.card .card-day {
  color: white;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .card .card-day {
    font-size: 18px;
  }
}
@media (max-width: 386px) {
  .card .card-day {
    font-size: 15px;
  }
}
.card .card-image {
  width: 289px;
  height: 106px;
  -o-object-fit: contain;
     object-fit: contain;
  align-self: center;
  margin-top: auto;
}
@media (max-width: 768px) {
  .card .card-image {
    width: 250px;
    height: 90px;
  }
}
@media (max-width: 386px) {
  .card .card-image {
    width: 180px;
    height: 65px;
  }
}
.card .card-body {
  padding: 20px;
  color: black;
  height: 127px;
  text-align: center;
}
@media (max-width: 1370px) {
  .card .card-body {
    padding: 18px;
    height: 120px;
  }
}
@media (max-width: 1000px) {
  .card .card-body {
    padding: 15px;
    height: 110px;
  }
}
@media (max-width: 768px) {
  .card .card-body {
    padding: 15px;
    height: auto;
    min-height: 100px;
  }
}
.card .card-body .card-title {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .card .card-body .card-title {
    font-size: 22px;
  }
}
.card .card-body .card-description {
  font-size: 20px;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .card .card-body .card-description {
    font-size: 16px;
  }
}
.card.card-bin .card-header {
  background-color: #FFD34F;
}
.card.card-pizza .card-header {
  background-color: #FF8789;
}
.card.card-pizza .card-header .card-icon:first-child {
  width: 408px;
  height: 272px;
}
@media (max-width: 1370px) {
  .card.card-pizza .card-header .card-icon:first-child {
    width: 560px;
    height: 300px;
  }
}
@media (max-width: 500px) {
  .card.card-pizza .card-header .card-icon:first-child {
    width: 500px;
    height: 300px;
  }
}
.card.card-pizza .card-header .card-icon:last-child {
  width: 95px;
  height: 95px;
  left: 20%;
  top: 25%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .card.card-pizza .card-header .card-icon:last-child {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .card.card-pizza .card-header .card-icon:last-child {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 386px) {
  .card.card-pizza .card-header .card-icon:last-child {
    width: 60px;
    height: 60px;
  }
}
.card.card-recycling .card-header {
  background-color: #3877E4;
}
.card.card-recycling .card-header .card-icon:first-child {
  right: 3%;
}
.card.card-recycling .card-header .card-icon:last-child {
  width: 95px;
  height: 95px;
  left: 20%;
  top: 25%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .card.card-recycling .card-header .card-icon:last-child {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .card.card-recycling .card-header .card-icon:last-child {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 386px) {
  .card.card-recycling .card-header .card-icon:last-child {
    width: 60px;
    height: 60px;
  }
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-locate-container {
  margin: 40px 0 15px 0;
}
.header-locate-container .row {
  display: flex;
  justify-content: center;
}
.header-locate-container .row > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.header-locate-container #your-street {
  color: #14983D;
  font-weight: 400;
  font-size: 25px;
  text-align: center;
  margin-bottom: 5px;
  font-family: sans-serif;
}
@media (max-width: 768px) {
  .header-locate-container #your-street {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .header-locate-container #your-street {
    font-size: 18px;
  }
}
.header-locate-container #status-message {
  color: black;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}
.header-locate-container #status-message span {
  font-size: 19px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .header-locate-container #status-message {
    font-size: 16px;
  }
  .header-locate-container #status-message span {
    font-size: 17px;
  }
}
.header-locate-container .buttons_container .innerkarty {
  display: flex;
  width: 267px;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  padding: 8px 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-height: 47px;
  cursor: pointer;
}
.header-locate-container .buttons_container .innerkarty:nth-child(1) {
  background-color: #693838;
  color: white;
}
.header-locate-container .buttons_container .innerkarty:nth-child(2) {
  background-color: #FFBF00;
  color: black;
}
.header-locate-container .buttons_container .innerkarty:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.header-locate-container .buttons_container .innerkarty .text_karty {
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
  margin-right: 15px;
}
.header-locate-container .buttons_container .innerkarty .image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.header-locate-container .buttons_container .innerkarty .image-card img {
  width: 26px;
  height: 26px;
}
@media (max-width: 500px) {
  .header-locate-container .buttons_container {
    flex-direction: column;
    align-items: center;
  }
}

#map {
  width: 100%;
  height: 664px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 100;
}
@media (max-width: 768px) {
  #map {
    height: 500px;
  }
}
@media (max-width: 500px) {
  #map {
    height: 400px;
  }
}

#info-panel {
  position: relative;
  max-width: 1250px;
  max-height: 450px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  overflow: hidden;
  top: -60px;
  z-index: 1000;
}
@media (max-width: 768px) {
  #info-panel {
    max-height: 100%;
  }
}
#info-panel .title-info-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 24px 5px 24px;
}
#info-panel .title-info-panel p {
  color: black;
  font-size: 18px;
  font-weight: 400;
  margin-right: 15px;
}
#info-panel .title-info-panel h3 {
  font-size: 25px;
  font-weight: 600;
  color: black;
}
@media (max-width: 768px) {
  #info-panel .title-info-panel h3 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  #info-panel .title-info-panel h3 {
    font-size: 18px;
  }
}
#info-panel .content-info-panel {
  padding: 0 24px 24px 24px;
}
#info-panel .content-info-panel .info-sections {
  display: flex;
  gap: 40px;
  padding-top: 16px;
}
@media (max-width: 768px) {
  #info-panel .content-info-panel .info-sections {
    flex-direction: column;
    gap: 20px;
  }
}
#info-panel .content-info-panel .info-sections .explanations-info-panel {
  flex: 1;
  padding-right: 24px;
}
#info-panel .content-info-panel .info-sections .explanations-info-panel h4 {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}
#info-panel .content-info-panel .info-sections .explanations-info-panel .explanations-content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 4px 0;
}
#info-panel .content-info-panel .info-sections .explanations-info-panel .explanations-content img {
  width: 46px;
  height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
}
#info-panel .content-info-panel .info-sections .explanations-info-panel .explanations-content p {
  font-size: 18px;
  color: black;
}
@media (max-width: 500px) {
  #info-panel .content-info-panel .info-sections .explanations-info-panel .explanations-content img {
    width: 36px;
    height: 36px;
  }
  #info-panel .content-info-panel .info-sections .explanations-info-panel .explanations-content p {
    font-size: 16px;
  }
}
#info-panel .content-info-panel .info-sections #container-types {
  flex: 2;
  padding-left: 24px;
}
@media (max-width: 768px) {
  #info-panel .content-info-panel .info-sections #container-types {
    padding-left: 0;
  }
}
#info-panel .content-info-panel .info-sections #container-types h4 {
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}
#info-panel .content-info-panel .info-sections #container-types .container-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  #info-panel .content-info-panel .info-sections #container-types .container-types-grid {
    grid-template-columns: 1fr;
  }
}
#info-panel .content-info-panel .info-sections #container-types .container-types-grid .container-type-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
#info-panel .content-info-panel .info-sections #container-types .container-types-grid .container-type-item .status-indicator {
  font-size: 16px;
  width: 20px;
  display: flex;
  justify-content: center;
  padding-right: 10px;
}
#info-panel .content-info-panel .info-sections #container-types .container-types-grid .container-type-item img {
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
}
#info-panel .content-info-panel .info-sections #container-types .container-types-grid .container-type-item .container-info {
  flex: 1;
}
#info-panel .content-info-panel .info-sections #container-types .container-types-grid .container-type-item .container-info .container-name {
  font-size: 18px;
  color: black;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 500px) {
  #info-panel .content-info-panel .info-sections #container-types .container-types-grid .container-type-item .container-info .container-name {
    font-size: 16px;
  }
}
#info-panel .content-info-panel .info-sections #container-types .container-types-grid .container-type-item .container-info .container-date {
  display: none;
  font-size: 16px;
  color: black;
  margin-top: 2px;
}
#info-panel .row {
  display: flex;
  justify-content: flex-start;
  padding: 0 15px 25px 15px;
}
@media (max-width: 500px) {
  #info-panel .row {
    justify-content: center;
  }
}
#info-panel .row > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 500px) {
  #info-panel .row > div {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
#info-panel .buttons_container .innerkarty {
  display: flex;
  width: 267px;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  padding: 8px 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-height: 47px;
  cursor: pointer;
}
#info-panel .buttons_container .innerkarty:nth-child(1) {
  background-color: black;
  color: white;
}
#info-panel .buttons_container .innerkarty:nth-child(2) {
  background-color: #FF8789;
  color: white;
}
#info-panel .buttons_container .innerkarty:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
#info-panel .buttons_container .innerkarty .text_karty {
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
  margin-right: 15px;
}
#info-panel .buttons_container .innerkarty .image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
#info-panel .buttons_container .innerkarty .image-card img {
  width: 26px;
  height: 26px;
}
@media (max-width: 500px) {
  #info-panel .buttons_container {
    flex-direction: column;
    align-items: center;
  }
}

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

.content-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 15px;
}

#nameSection {
  width: 100%;
  height: 126px;
  background-image: url("../images/background-eskot.png");
  display: flex;
  align-items: center;
  justify-content: center;
}
#nameSection h1 {
  color: white;
}/*# sourceMappingURL=style.css.map */