:root {
  --pageWidth: 1180px;
  --pageHSpace: 20px;
  --colorMain: #1A394E;
  --colorMain2: #31364B;
  --colorSecond: #1A394E;
  --fontMain: "Ubuntu", sans-serif;
  --fontSecond: "League Gothic", sans-serif;
  --borderRadius: 5px;
  --bageBg: #181818;
  --pageTextColor: #fff;
  --bageBg: #f6f6f6;
  --pageTextColor: #000;
  --titleSize: 40px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: var(--fontMain);
  height: 100%;
  min-width: 320px;
  font-size: 16px;
  line-height: 1.6;
}

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

body {
  padding: 0;
  margin: 0;
  background: var(--bageBg);
  color: var(--pageTextColor);
}

a {
  color: var(--colorMain);
  text-decoration: none;
}

:is(h1, h2, h3, h4, h5, h6, p, blockquote, ul, ol):first-child {
  margin-top: 0;
}

:is(h1, h2, h3, h4, h5, h6, p, blockquote, ul, ol):last-child {
  margin-bottom: 0;
}

strong {
  font-weight: bold;
}

a {
  transition: 0.2s color;
}

@media screen and (prefers-reduced-motion: reduce) {
  * {
    transition: 0s !important;
  }
}
.all {
  margin: 0 auto;
  overflow: hidden;
  min-height: 100vh;
}

.all-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.yt {
  aspect-ratio: 16/9;
  position: relative;
}
.yt iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hidden, [hidden] {
  display: none !important;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  font-family: var(--fontSecond);
  color: #fff;
  padding-block: 10px;
  transition: 0.2s background, 0.2s box-shadow;
}

.header.is-sticky {
  background: rgba(5, 31, 49, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.header-inside {
  max-width: var(--pageWidth);
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: center;
  padding-inline: var(--pageHSpace);
}

.header-logo {
  margin-right: 30px;
  max-width: 200px;
}

.header-logo img {
  display: block;
  aspect-ratio: 261/125;
}

.header-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-btn {
  background: var(--colorMain);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 5px 30px;
  border: 1px solid #fff;
  box-shadow: 3px 3px 0 0 #fff;
}

.header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.header-menu-link {
  color: inherit;
}
.header-menu-link:hover {
  opacity: 0.6;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  margin-left: auto;
}

.header-lang-el {
  color: inherit;
  font-weight: 300;
  opacity: 0.5;
}

.header-lang-el.is-active {
  font-weight: bold;
  opacity: 1;
}

.header-burger {
  display: flex;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  position: relative;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  display: none;
  color: inherit;
}
.header-burger strong {
  display: none;
}
.header-burger span {
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
}
.header-burger span:nth-of-type(2) {
  width: 20px;
}

@media (max-width: 980px) {
  .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    padding: 30px;
    background: #121B22;
    height: 100vh;
    translate: -110%;
    transition: 0.3s translate;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: flex-start;
    /* https://smoothshadows.com/#djEsMSw3LDAuMDgsMjQsNSwxNywjMDMwNzEyLCNmM2Y0ZjYsI2ZmZmZmZiwy */
    box-shadow: 0px 0px 0px rgba(3, 7, 18, 0.01), 1px 0px 2px rgba(3, 7, 18, 0.02), 3px 1px 4px rgba(3, 7, 18, 0.03), 6px 2px 8px rgba(3, 7, 18, 0.05), 9px 3px 12px rgba(3, 7, 18, 0.06), 12px 4px 18px rgba(3, 7, 18, 0.07), 17px 5px 24px rgba(3, 7, 18, 0.08);
  }
  .header-burger {
    display: flex;
  }
  .header-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
  }
  .header-lang {
    margin-top: auto;
    margin-left: 0;
  }
  body.is-menu-show .header-main {
    translate: 0;
  }
  body.is-menu-show .header-burger {
    width: 40px;
  }
  body.is-menu-show .header-burger span {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    rotate: 45deg;
  }
  body.is-menu-show .header-burger span:nth-of-type(2) {
    display: none;
  }
  body.is-menu-show .header-burger span:nth-of-type(3) {
    rotate: -45deg;
  }
}
.footer {
  padding: 10px 0 30px;
  font-family: var(--fontSecond);
  position: relative;
  margin-top: 30px;
  width: 100%;
}

.footer-inside {
  max-width: var(--pageWidth);
  padding-inline: var(--pageHSpace);
  margin-inline: auto;
  width: 100%;
  display: flex;
  gap: 40px;
  color: inherit;
  align-items: center;
}

.footer-content {
  flex: 1;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  font-size: 19px;
  text-transform: uppercase;
}

.footer-menu-list-link {
  text-decoration: none;
  color: inherit;
}
.footer-menu-list-link:hover {
  color: var(--colorMain);
}

.footer-copyright {
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .footer-inside {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-copyright {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .footer-inside {
    align-items: center;
  }
  .footer-menu-list {
    flex-direction: column;
    gap: 10px;
  }
  .footer-copyright {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.m-section {
  margin-block: 50px;
}

.m-title {
  text-transform: uppercase;
  font-size: var(--titleSize);
  text-align: center;
  color: inherit;
  font-family: var(--fontSecond);
  margin: 0 0 10px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.m-text {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.8;
}

.focus {
  background: url("/futureminingexpo.pl/images/2026//focus.jpg");
  background-size: cover;
  font-family: var(--fontSecond);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
  background-color: #333;
  max-height: 710px;
  min-height: 610px;
}

.focus-content {
  max-width: var(--pageWidth);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--pageHSpace);
}

.focus-title {
  font-size: clamp(90px, 14vw, 114px);
  text-transform: uppercase;
  color: #fff;
  max-width: -moz-min-content;
  max-width: min-content;
  line-height: 1;
  margin: 20px 0;
}

.focus-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  text-transform: uppercase;
}
.focus-text span {
  background: #fff;
  color: var(--colorMain);
  font-size: clamp(20px, 5vw, 32px);
  line-height: 1.2;
  font-weight: bold;
  padding: 0 10px;
}

.m-under-focus {
  max-width: var(--pageWidth);
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-block: 20px;
  padding-inline: var(--pageHSpace);
}

.m-under-focus-box {
  position: relative;
  display: grid;
  grid: auto/auto;
  overflow: hidden;
  border-radius: var(--borderRadius);
  font-size: 15px;
  font-weight: 300;
}

.m-under-focus-box a {
  color: inherit;
}

.m-under-focus-box img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-under-focus-box-main {
  grid-column: 1/-1;
  grid-row: 1/-1;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.m-under-focus-box-main :is(h2, h3) {
  font-family: var(--fontSecond);
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1.2;
  margin: 0;
}

.m-under-focus-box-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}
.m-under-focus-box-link::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='white' d='M16.15 13H5q-.425 0-.712-.288T4 12t.288-.712T5 11h11.15L13.3 8.15q-.3-.3-.288-.7t.288-.7q.3-.3.713-.312t.712.287L19.3 11.3q.15.15.213.325t.062.375t-.062.375t-.213.325l-4.575 4.575q-.3.3-.712.288t-.713-.313q-.275-.3-.288-.7t.288-.7z'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  transition: 0.2s translate;
}
.m-under-focus-box-link:hover::after {
  translate: 3px;
}

@media (max-width: 960px) {
  .m-under-focus {
    display: flex;
    flex-direction: column;
  }
}
.m-coop-main {
  max-width: var(--pageWidth);
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-block: 20px;
  padding-inline: var(--pageHSpace);
}

.m-coop-box {
  background: var(--colorMain);
  display: flex;
  gap: 20px;
  padding: 30px 30px 0;
  color: #fff;
  font-family: var(--fontSecond);
  border-radius: var(--borderRadius);
  background: linear-gradient(120deg, var(--colorMain), var(--colorMain2));
}

.m-coop-box a {
  color: inherit;
  text-decoration: none;
}

.m-coop-box img {
  width: 35%;
  align-self: flex-end;
}

.m-coop-box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  font-family: var(--fontMain);
  font-weight: 300;
}

.m-coop-box-content h2 {
  line-height: 1;
  margin-bottom: auto;
  text-transform: uppercase;
  font-family: var(--fontSecond);
  font-size: 30px;
}

.m-coop-box-name {
  text-transform: uppercase;
  font-size: 23px;
  font-family: var(--fontSecond);
}

.m-coop-box-position {
  font-size: 15px;
  margin-bottom: 20px;
}

.m-coop-box-a {
  text-align: right;
}

.m-coop-box-a .m-coop-box-content {
  align-items: flex-end;
}

.m-coop-box-b {
  flex-direction: row-reverse;
}

.m-coop-box-phone {
  position: relative;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.m-coop-box-phone::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='white' d='M19.95 21q-3.125 0-6.175-1.362t-5.55-3.863t-3.862-5.55T3 4.05q0-.45.3-.75t.75-.3H8.1q.35 0 .625.238t.325.562l.65 3.5q.05.4-.025.675T9.4 8.45L6.975 10.9q.5.925 1.187 1.787t1.513 1.663q.775.775 1.625 1.438T13.1 17l2.35-2.35q.225-.225.588-.337t.712-.063l3.45.7q.35.1.575.363T21 15.9v4.05q0 .45-.3.75t-.75.3'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.m-coop-box-mail {
  position: relative;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.m-coop-box-mail::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='white' d='M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .825-.587 1.413T20 20zm8-7.175q.125 0 .263-.038t.262-.112L19.6 8.25q.2-.125.3-.312t.1-.413q0-.5-.425-.75T18.7 6.8L12 11L5.3 6.8q-.45-.275-.875-.012T4 7.525q0 .25.1.438t.3.287l7.075 4.425q.125.075.263.113t.262.037'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 960px) {
  .m-coop {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  .m-coop-box-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .m-coop-box-name {
    font-size: 20px;
  }
}
.m-prev {
  padding-inline: 30px;
  max-width: var(--pageWidth);
  margin-inline: auto;
  margin-block: 20px;
  width: 100%;
  overflow: hidden;
}

.m-prev-gallery-cnt {
  position: relative;
  margin-inline: auto;
  padding: 0;
}

.m-prev-prev,
.m-prev-next {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--colorMain);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
  box-shadow: 0 0 0 5px var(--bageBg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M16.175 13H5q-.425 0-.712-.288T4 12t.288-.712T5 11h11.175l-4.9-4.9q-.3-.3-.288-.7t.313-.7q.3-.275.7-.288t.7.288l6.6 6.6q.15.15.213.325t.062.375t-.062.375t-.213.325l-6.6 6.6q-.275.275-.687.275T11.3 19.3q-.3-.3-.3-.712t.3-.713z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
}
@media (max-width: 640px) {
  .m-prev-prev,
  .m-prev-next {
    width: 30px;
    height: 30px;
    background-size: 50%;
  }
}

.m-prev-prev {
  left: 0;
  translate: -50% -50%;
  scale: -1 1;
}

.m-prev-next {
  right: 0;
  translate: 50% -50%;
}

.m-prev-gallery .m-prev-gallery-el {
  position: relative;
  height: auto;
}

.m-prev-gallery-el img {
  position: absolute;
  border-radius: var(--borderRadius);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-prev-gallery-el:first-child {
  aspect-ratio: 1;
}

.subpage {
  max-width: var(--pageWidth);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--pageHSpace);
  margin-top: 120px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.all-container:has(.subpage)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("/futureminingexpo.pl/images/2026//focus.jpg") center/cover;
  background-repeat: no-repeat;
  z-index: -1;
  height: 100vh;
  max-height: 710px;
  min-height: 610px;
}

.subpage-header {
  padding: 30px;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-weight: bold;
  border-radius: var(--borderRadius) var(--borderRadius) 0 0;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.subpage-title {
  text-transform: uppercase;
  margin: 0;
  font-size: 55px;
  line-height: 1.2;
  font-family: var(--fontSecond);
  max-width: 900px;
  margin-inline: auto;
}

.subpage-subtitle {
  font-weight: 300;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.subpage-content-cnt {
  flex: 1;
  display: flex;
}

.subpage-content {
  padding: 50px;
  font-size: 20px;
  border-top: 0;
  border-radius: var(--borderRadius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: #fff;
  flex: 1;
  width: 100%;
  color: #000;
  min-height: 450px;
}

.subpage-content :is(h2, h3, h4, h5, h6) {
  font-family: var(--fontSecond);
  text-transform: uppercase;
  font-size: 40px;
  margin-block: 20px;
  color: var(--colorMain);
}

@media (max-width: 640px) {
  .subpage {
    padding-inline: 10px;
  }
  .subpage-content {
    padding: 30px;
  }
}
@media (max-width: 500px) {
  .subpage {
    padding-inline: 5px;
  }
  .subpage-header {
    min-height: 150px;
  }
  .subpage-content {
    padding: 15px;
  }
  .subpage-title {
    font-size: 30px;
  }
}
/*# sourceMappingURL=style.2026.css.map */
