.contact_welcome {
  width: 100%;
  position: relative;
  z-index: 3;
  padding-top: 8rem;
}
.contact_welcome .container {
  max-width: 1200px;
  padding: 1rem;
  margin: auto;
}
.contact_welcome_breadcrumbs {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.contact_welcome_breadcrumbs li {
  list-style-type: none;
  color: var(--text-color-50);
}
.contact_welcome_breadcrumbs li a {
  color: var(--text-color);
  text-decoration: none;
}
.contact_welcome_breadcrumbs li a:hover {
  text-decoration: underline;
}
.contact_welcome_breadcrumbs li > svg {
  color: var(--text-color);
}
.contact_welcome_title {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 3rem;
  color: var(--red-color);
}
.contact_welcome_title h1 span {
  font-size: 2.3rem;
  font-weight: normal;
}
.contact_welcome_title h1 b {
  font-size: 4.5rem;
  line-height: 4rem;
  font-weight: 800;
  display: block;
}
.contact_welcome_menu {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: -1.35rem;
}
.contact_welcome_menu li {
  list-style-type: none;
}
.contact_welcome_menu li a {
  text-decoration: none;
  padding: 0.35rem 1rem;
  border-radius: 4rem;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}
.contact_top {
  max-width: 1200px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: auto;
}
.contact_top_column {
  display: grid;
  margin-bottom: 2rem;
  grid-template-columns: 1fr 1fr;
}
.contact_top_column .item_grid {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
}
.contact_top_column .item_grid span {
  opacity: 0.7;
}
.contact_top_column .item_grid p {
  font-weight: 600;
  margin: 0;
}
.contact_top_column .item_grid.no_icon {
  padding-left: 79px;
}
.contact_seo {
  border-top: 1px dashed var(--border-color);
  padding: 3rem 0;
  padding-bottom: 0;
  margin-top: 3rem;
  display: block;
}
.contact_seo .container {
  max-width: 1200px;
  padding: 1rem;
  margin: auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}
.contact_seo_name {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact_seo_name b {
  font-size: 1.6rem;
  color: var(--red-color);
  display: block;
}
.contact_seo_name span {
  font-size: 1.2rem;
}
.contact_seo_info {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-size: 1.2rem;
}
.contact_seo_info b {
  display: block;
}
.contact_section {
  border-top: 1px dashed var(--border-color);
  padding: 3rem 0;
  margin-top: 3rem;
  display: block;
}
.contact_section_title span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--red-color);
  opacity: 0.5;
}
.contact_section_title h2 {
  color: var(--red-color);
  margin: 0;
  font-size: 2rem;
}
.contact_section_grid {
  display: flex;
  align-items: flex-start;
  margin-top: 2rem;
  gap: 3rem;
  font-size: 1.2rem;
}
.contact_section_grid div b {
  display: block;
}
.contact_section_grid div span {
  opacity: 0.8;
}
.contact_team {
  border-top: 1px dashed var(--border-color);
  padding: 3rem 0;
  padding-bottom: 0;
  margin-top: 3rem;
  display: block;
}
.contact_team .container {
  max-width: 1200px;
  padding: 1rem;
  margin: auto;
}
.contact_team h2 {
  font-size: 3rem;
  color: var(--red-color);
}
.contact_team_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
}
.contact_team_item {
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.contact_team_item_header {
  display: block;
  border-left: 5px solid var(--red-color);
  padding: 0 1.5rem;
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact_team_item_content {
  padding: 1.5rem;
  padding-top: 0;
}
.contact_team_item_content div {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color-50);
}
.contact_team_item_content div a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
}
.contact_story {
  border-top: 1px dashed var(--border-color);
  padding: 3rem 0;
  padding-bottom: 0;
  margin-top: 3rem;
  display: block;
}
.contact_story .container {
  max-width: 1200px;
  padding: 1rem;
  margin: auto;
}
.contact_story h2 {
  font-size: 3rem;
  color: var(--red-color);
}
.contact_story_text {
  max-width: 640px;
}
@media screen and (max-width: 1024px) {
  .contact_top {
    grid-template-columns: 1fr;
  }
  .contact_team_grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .contact_team_grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 640px) {
  .contact_seo .container {
    display: grid;
    gap: 2rem;
  }
  .contact_top_column {
    display: grid;
    margin-bottom: 2rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 425px) {
  .contact_team_grid {
    grid-template-columns: 1fr;
  }
}

.predajne {
  display: grid;
  grid-template-columns: 1fr;
}
.predajne_list {
  margin-bottom: 3rem;
}
.predajne_list_item {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.predajne_list_item:nth-last-of-type(2n) {
  background-color: var(--section-color);
}
.predajne_list_item_content {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 4rem 1rem;
  border-bottom: 1px dashed var(--border-color);
  max-width: 1200px;
  margin: auto;
  flex: 1;
}
.predajne_list_item_text {
  flex: 1;
}
.predajne_list_item_text h2 {
  color: var(--red-color);
  font-size: 2rem;
  margin: 0;
  margin-bottom: 2rem;
}
.predajne_list_item_text_grid {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.predajne_list_item_text_grid div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.predajne_list_item_text_grid div small {
  opacity: 0.5;
  font-size: 1rem;
}
.predajne_list_item_text_grid div p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}
.predajne_list_item_text_grid div a {
  border-radius: 100px;
  padding: 0.25rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-top: 0.5rem;
}
.predajne_list_item_image img {
  width: 100%;
  max-width: 320px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
  .predajne_list_item {
    gap: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .predajne_list_item_text_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .predajne_list_item_text_grid {
    display: flex;
  }
  .predajne_list_item_content {
    display: grid;
  }
}
@media screen and (max-width: 640px) {
  .predajne_list_item_text_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
