/*!
Theme Name: meestergroup
Author: Meester Group
Author URI: https://meestergroup.com
Description: Meester Group theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: meestergroup
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

meestergroup is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Header
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Abstracts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

@media (max-width: 992px) {
  .site-navigation__menu {
    background-image: url("/wp-content/uploads/2026/02/menu_mobile_tlo.png");
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    padding: 40px 30px 30px 25px;
    z-index: 100;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
  }
  .site-navigation__menu-close {
    margin-bottom: 24px;
    margin-left: auto;
  }
  #site-navigation.toggled .site-navigation__menu {
    right: 0;
  }
  .site-navigation__menu ul a:not(.button-primary) {
    color: #eceef5;
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    padding-top: 12px;
    padding-bottom: 8px;
  }
  .site-navigation__menu ul .button-primary {
    margin-top: 16px;
  }
  .site-navigation__menu ul .sub-menu a {
    font-size: 1.4rem;
    color: #bfbfbf;
  }
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

.menu-toggle {
  padding: 10px;
  padding-right: 0;
  border: none;
  background: none;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .main-navigation ul.sub-menu {
    display: none;
  }
  .main-navigation ul li:last-child a {
    position: relative;
    padding: 8px 48px;
    border-radius: 46px;
    background-color: #0866ff;
    overflow: hidden;
  }
  .main-navigation ul li:last-child a::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%) scale(0);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 1;
  }
  .main-navigation ul li:last-child a span {
    position: relative;
    z-index: 2;
  }
  .main-navigation ul li:last-child a:hover {
    color: #05080c;
  }
  .main-navigation ul li:last-child a:hover::before {
    transform: translateX(-50%) scale(10);
  }
  .main-navigation ul li a {
    color: #eceef5;
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-padding-top: 60px;
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

a {
  display: inline-block;
  text-decoration: none;
}

.container {
  max-width: 1520px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .container {
    padding: 0 40px;
  }
}

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

video {
  width: 100%;
}

.button {
  position: relative;
  max-width: max-content;
  padding: 8px 48px;
  border-radius: 46px;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.button span {
  position: relative;
  z-index: 2;
}
.button:hover {
  color: #05080c;
}
.button:hover::before {
  transform: translateX(-50%) scale(10);
}

.button::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%) scale(0);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 1;
}

.button-primary {
  background-color: #0866ff;
  color: #eceef5;
}

.button-secondary {
  border: 1px solid #eceef5;
  color: #eceef5;
}

.button-tertiary {
  background-color: #05080c;
  color: #eceef5;
}

.desktop-img {
  display: none;
}

@media (min-width: 992px) {
  .desktop-img {
    display: block;
  }
  .mobile-img {
    display: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #05080c;
}
.site-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media (min-width: 992px) {
  .site-header__content {
    height: 80px;
  }
}
.site-header__content img {
  max-width: 75px;
}
@media (min-width: 992px) {
  .site-header__content img {
    max-width: 100px;
  }
}

.mg-hero {
  color: #999b9e;
  background-color: #05080c;
  overflow: hidden;
}
@media (min-width: 992px) {
  .mg-hero {
    flex-direction: row-reverse;
  }
}
.mg-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-bottom: 64px;
  max-width: 1920px;
}
@media (min-width: 992px) {
  .mg-hero__content {
    flex-direction: row-reverse;
    padding-bottom: 0;
  }
}
.mg-hero__text-content {
  width: 100%;
  z-index: 2;
}
.mg-hero__text {
  max-width: 525px;
  margin-left: 0;
}
@media (min-width: 992px) {
  .mg-hero__text {
    padding-top: 96px;
    padding-bottom: 160px;
  }
}
.mg-hero__video {
  position: relative;
}
@media (max-width: 992px) {
  .mg-hero__video {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .mg-hero__video {
    position: absolute;
  }
}
.mg-hero__video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, #05080c 0px, #05080c 20px, rgba(5, 8, 12, 0.4) 30px, rgba(5, 8, 12, 0) 40px);
  z-index: 1;
}
@media (min-width: 992px) {
  .mg-hero__video-overlay {
    bottom: 50%;
    transform: translateY(50%);
    left: -5px;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, #05080c 0px, #05080c 30%, rgba(5, 8, 12, 0.6) 45%, rgba(5, 8, 12, 0) 100%);
    background: linear-gradient(to right, #05080c 0%, #05080c 20%, rgba(5, 8, 12, 0.95) 35%, rgba(5, 8, 12, 0.75) 50%, rgba(5, 8, 12, 0.45) 65%, rgba(5, 8, 12, 0.2) 80%, rgba(5, 8, 12, 0) 100%);
  }
}
.mg-hero__video-mobile {
  display: block;
}
@media (min-width: 992px) {
  .mg-hero__video-mobile {
    display: none;
  }
}
.mg-hero__video-desktop {
  display: none;
}
@media (min-width: 992px) {
  .mg-hero__video-desktop {
    display: block;
  }
}
.mg-hero video {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 992px) {
  .mg-hero video {
    max-height: unset;
    width: 900px;
    object-position: bottom;
  }
}
.mg-hero h1 {
  margin: 16px 0;
  font-size: 2.4rem;
  color: #eceef5;
}
@media (min-width: 992px) {
  .mg-hero h1 {
    font-size: 4rem;
  }
}
.mg-hero h1 span {
  color: #0866ff;
}
.mg-hero__badge {
  display: flex;
  max-width: max-content;
  border-radius: 5px;
  background-color: #121f30;
  border: 1px solid #202c3c;
}
.mg-hero__badge p {
  padding: 4px 12px;
}
.mg-hero__badge span {
  color: #eceef5;
}
.mg-hero__badge-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #202c3c;
}
.mg-hero__badge img {
  width: 23px;
  height: 23px;
}
.mg-hero__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .mg-hero__links {
    flex-direction: row;
    gap: 24px;
  }
}
.mg-hero__list {
  margin: 18.4px 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 12px;
}
@media (min-width: 992px) {
  .mg-hero__list {
    flex-direction: row;
  }
}
.mg-hero__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mg-hero__list-item span {
  color: #eceef5;
  font-size: 2.4rem;
}

.mg-footer {
  padding: 32px 0;
  color: #999b9e;
  background-color: #f4f7f9;
}
@media (min-width: 992px) {
  .mg-footer {
    padding-bottom: 80px;
  }
}
.mg-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .mg-footer__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.mg-footer__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .mg-footer__text {
    text-align: start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 30%;
    margin-right: 100px;
    order: -1;
  }
}
.mg-footer__text p {
  margin-top: 8px;
  margin-bottom: 24px;
}
.mg-footer__logo {
  max-width: 140px;
}
@media (min-width: 992px) {
  .mg-footer__logo {
    max-width: 160px;
  }
}
.mg-footer__menu-item {
  text-align: center;
}
@media (min-width: 992px) {
  .mg-footer__menu-item {
    text-align: start;
    width: 30%;
  }
  .mg-footer__menu-item:nth-child(3) {
    order: -1;
  }
}
.mg-footer__menu-item h4 {
  font-size: 1.6rem;
  margin-top: 24px;
  margin-bottom: 16px;
  color: #0e0e0e;
  font-weight: normal;
}
.mg-footer__menu-item ul {
  list-style: none;
}
.mg-footer__menu-item ul a {
  color: #999b9e;
}
.mg-footer .menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mg-footer__social-media {
  width: 100%;
  margin-top: 32px;
}
@media (min-width: 992px) {
  .mg-footer__social-media {
    margin-top: 96px;
  }
}
.mg-footer__social-media .menu {
  flex-direction: row;
  gap: 16px;
}
.mg-footer__social-media ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 992px) {
  .mg-footer__social-media ul {
    justify-content: flex-start;
  }
}
.mg-footer__social-media ul a {
  color: #0e0e0e;
}

.mg-our-brands {
  padding-top: 24px;
  padding-bottom: 56px;
  background-color: #05080c;
  color: #eceef5;
}
@media (min-width: 992px) {
  .mg-our-brands {
    padding-top: 80px;
  }
}
.mg-our-brands__text {
  padding-bottom: 24px;
}
@media (min-width: 992px) {
  .mg-our-brands__text {
    padding-bottom: 0;
  }
}
.mg-our-brands__text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .mg-our-brands__text-content {
    margin: 12px 0 32px 0;
    flex-direction: row;
    align-items: center;
  }
}
.mg-our-brands__text a {
  color: #eceef5;
  text-decoration: underline;
}
.mg-our-brands h2 {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-our-brands h2 {
    font-size: 4rem;
  }
}
.mg-our-brands__brands {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mg-our-brands__brands__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .mg-our-brands__brands__row {
    display: grid;
    grid-template-columns: 7fr 5fr;
  }
  .mg-our-brands__brands__row:last-child {
    grid-template-columns: 1fr 1fr;
  }
}
.mg-our-brands__brand {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .mg-our-brands__brand {
    height: 450px;
  }
}
.mg-our-brands__brand-description {
  margin: 8px 0 24px 0;
  color: #999b9e;
  margin-bottom: auto;
}
@media (min-width: 992px) {
  .mg-our-brands__brand-description {
    margin: 0;
    margin-bottom: auto;
  }
}
.mg-our-brands__brand video,
.mg-our-brands__brand .mg-our-brands__brand-img {
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.mg-our-brands__brand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  border-radius: 26px;
  transition: backdrop-filter 0.3s, background-color 0.3s;
}
@media (min-width: 992px) {
  .mg-our-brands__brand-overlay {
    padding: 24px 40px 24px 0;
  }
}
.mg-our-brands__brand-overlay img {
  margin-left: 20px;
  max-width: 100px;
}
@media (min-width: 992px) {
  .mg-our-brands__brand-overlay img {
    max-width: 150px;
    margin-left: 40px;
  }
}
.mg-our-brands__brand-overlay a {
  text-align: center;
  align-self: center;
  transition: transform 0.3s;
  transition-delay: 0.3s;
}
@media (min-width: 992px) {
  .mg-our-brands__brand-overlay a {
    transform: translateY(100px);
    margin-left: 40px;
    align-self: flex-start;
  }
}
.mg-our-brands__brand-overlay p {
  display: none;
  max-width: 400px;
  margin: 16px 0px auto 20px;
  color: #eceef5;
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0.1s;
  transition: transform 0.3s;
}
@media (min-width: 992px) {
  .mg-our-brands__brand-overlay p {
    display: block;
    margin: 16px 0px auto 40px;
  }
}
@media (min-width: 992px) {
  .mg-our-brands__brand-overlay:hover {
    backdrop-filter: blur(10px);
    background-color: rgba(89, 85, 121, 0.59);
  }
  .mg-our-brands__brand-overlay:hover p {
    opacity: 1;
    transform: translateY(0);
  }
  .mg-our-brands__brand-overlay:hover a {
    transform: translateY(0);
  }
}

.mg-partnership-steps {
  padding-block: 48px;
  color: #373737;
}
@media (min-width: 992px) {
  .mg-partnership-steps {
    padding-top: 88px;
    display: flex;
    flex-direction: row-reverse;
    gap: 64px;
  }
}
@media (min-width: 992px) {
  .mg-partnership-steps a.button {
    display: none;
  }
}
.mg-partnership-steps__text {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .mg-partnership-steps__text {
    width: 50%;
  }
}
.mg-partnership-steps__text h2 {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-partnership-steps__text h2 {
    font-size: 4rem;
  }
}
.mg-partnership-steps__text p {
  margin: 16px 0 24px 0;
  color: #8d8d8d;
}
.mg-partnership-steps__text .mg-partnership-steps__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mg-partnership-steps__text .mg-partnership-steps__numbers span {
  font-size: 2.4rem;
  font-weight: 500;
}
.mg-partnership-steps__text .mg-partnership-steps__numbers p {
  margin: 0;
  margin-top: 4px;
}
.mg-partnership-steps__text a.button {
  display: none;
}
@media (min-width: 992px) {
  .mg-partnership-steps__text a.button {
    margin-top: 24px;
    display: inline-block;
  }
}
.mg-partnership-steps__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 992px) {
  .mg-partnership-steps__steps {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}
.mg-partnership-steps__step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 24px 14.4px;
  background-color: #f4f7f9;
}
.mg-partnership-steps__step-icon {
  position: absolute;
  top: 14px;
  right: 14.4px;
  width: 60px;
  height: 60px;
  padding: 12px;
  background-color: #e8eaf5;
  border-radius: 7px;
}
.mg-partnership-steps__step img {
  width: 100%;
  height: 100%;
}
.mg-partnership-steps__step a {
  color: #000000;
  text-decoration: underline;
}
.mg-partnership-steps__button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .mg-partnership-steps__button {
    display: none;
  }
}

@media (min-width: 1200px) {
  .mg-brands-features {
    display: flex;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 28px;
  }
}
.mg-brands-features-heading {
  margin-top: 32px;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 1200px) {
  .mg-brands-features-heading {
    margin-top: 64px;
  }
}
.mg-brands-features-heading h2 {
  font-size: 2.4rem;
}
@media (min-width: 1200px) {
  .mg-brands-features-heading h2 {
    font-size: 4rem;
  }
}
.mg-brands-features-heading p {
  max-width: 650px;
  margin-top: 8px;
  margin-bottom: 24px;
  margin-inline: auto;
  color: #999b9e;
}
.mg-brands-features-heading__items {
  display: flex;
  gap: 22.4px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.mg-brands-features-heading__item {
  display: flex;
  gap: 8px;
}
.mg-brands-features-heading__item p {
  margin: 0;
  font-size: 1.4rem;
  color: #999b9e;
}
.mg-brands-features__item {
  position: relative;
  margin-top: 24px;
}
@media (min-width: 1200px) {
  .mg-brands-features__item {
    flex: 1;
    height: 450px;
    transition: flex 0.3s ease 0.1s, background-color 0.3s ease;
    border-radius: 11px;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .mg-brands-features__item:nth-child(1) {
    order: 3;
  }
  .mg-brands-features__item:nth-child(2) {
    order: 2;
  }
  .mg-brands-features__item:nth-child(3) {
    order: 4;
  }
  .mg-brands-features__item:nth-child(4) {
    order: 1;
  }
  .mg-brands-features__item:nth-child(5) {
    order: 5;
  }
}
@media (min-width: 1200px) {
  .mg-brands-features__item:hover {
    flex: 3;
    background-color: #eff0f1;
  }
  .mg-brands-features__item:hover .mg-brands-features__item-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.4s;
  }
  .mg-brands-features__item:hover .mg-brands-features__item-content a.button {
    bottom: 24px;
    opacity: 1;
  }
  .mg-brands-features__item:hover .mg-brands-features__item-content .mg-brands-features__item-content--description {
    opacity: 1;
    transform: translateY(0);
  }
  .mg-brands-features__item:hover .mg-brands-features__item-content .mg-brands-features__item-content--numbers {
    opacity: 1;
    margin-top: 0;
  }
  .mg-brands-features__item:hover .mg-brands-features__item-img {
    opacity: 0;
  }
  .mg-brands-features__item:hover .mg-brands-features__item-logo-white {
    opacity: 0;
  }
  .mg-brands-features__item:hover .mg-brands-features__item-content--img {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.mg-brands-features__item-img {
  position: relative;
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
}
@media (min-width: 1200px) {
  .mg-brands-features__item-img {
    aspect-ratio: unset;
    transition: opacity 0.3s ease;
  }
  .mg-brands-features__item-img .mg-brands-features__item-logo-white {
    max-width: 120px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .mg-brands-features__item-img img {
    height: 450px;
    object-fit: cover;
    border-radius: 11px;
  }
}
.mg-brands-features__item-logo-white {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100px;
  object-fit: cover;
}
.mg-brands-features__item-logo-black {
  max-width: 130px;
}
.mg-brands-features__item-content {
  margin-top: 0;
  padding: 0 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
}
.accordion-item--open .mg-brands-features__item-content {
  margin-top: 32px;
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  .mg-brands-features__item-content {
    padding: 24px;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .accordion-item--open .mg-brands-features__item-content {
    margin-top: 0;
    max-height: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
.mg-brands-features__item-content[hidden] {
  display: none;
}
.mg-brands-features__item-content--img {
  text-align: center;
}
.mg-brands-features__item-content--img img {
  max-width: 200px;
}
@media (min-width: 1200px) {
  .mg-brands-features__item-content--img {
    position: absolute;
    right: 0;
    max-width: 50%;
    top: 50%;
    transform: translateY(-40%);
    opacity: 0;
    transition: transform 0.3s ease 0.4s, opacity 0.3s ease 0.4s;
  }
  .mg-brands-features__item-content--img img {
    max-width: 100%;
  }
}
.mg-brands-features__item-content a.button {
  margin-top: 25.6px;
  margin-bottom: 48px;
  align-self: center;
}
@media (min-width: 1200px) {
  .mg-brands-features__item-content a.button {
    position: absolute;
    left: 32px;
    bottom: 48px;
    transition: bottom 0.3s ease 0.4s, opacity 0.3s ease 0.4s;
    margin: 0;
    opacity: 0;
  }
}
.mg-brands-features__item-content--numbers {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .mg-brands-features__item-content--numbers {
    opacity: 0;
    margin-top: 32px;
    transition: opacity 0.3s ease 0.4s, margin-top 0.3s ease 0.3s;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .mg-brands-features__item-content--description {
    max-width: 50%;
    opacity: 0;
    transform: translateY(10%);
    transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s;
  }
}
.mg-brands-features__item-description {
  margin-top: 8px;
  margin-bottom: 16px;
}
.mg-brands-features__item-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
  row-gap: 20px;
  font-size: 13px;
}
@media (min-width: 1400px) {
  .mg-brands-features__item-numbers {
    font-size: 1.4rem;
  }
}
.mg-brands-features__item-numbers span {
  font-weight: 700;
}
.mg-brands-features__item-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: rgba(5, 8, 12, 0.5019607843);
  color: #eceef5;
  border: none;
  padding: 7.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
}
.mg-brands-features__item-button svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.accordion-item--open .mg-brands-features__item-button svg {
  opacity: 1;
}
@media (min-width: 1200px) {
  .mg-brands-features__item-button {
    display: none;
  }
}
.mg-brands-features__item-button-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.accordion-item--open .mg-brands-features__item-button .mg-brands-features__item-button-text {
  opacity: 0;
}

.mg-brands-features__item.accordion-item--open .mg-brands-features__item-img .mg-brands-features__item-button {
  display: none;
}

.mg-distinctions {
  position: relative;
  padding-block: 48px;
}
.mg-distinctions.container {
  padding: 0;
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .mg-distinctions.container {
    max-width: 1300px;
    padding: 0 40px;
    margin-block: 160px;
    margin-top: 112px;
  }
}
.mg-distinctions__heading {
  padding-inline: 20px;
  padding-block: 24px;
}
@media (min-width: 992px) {
  .mg-distinctions__heading {
    display: none;
  }
}
.mg-distinctions__heading--desktop {
  display: none;
  width: 35%;
  margin-left: auto;
  padding: 0;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mg-distinctions__heading--desktop {
    display: block;
  }
}
.mg-distinctions__heading h3 {
  margin-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .mg-distinctions__heading h3 {
    font-size: 4rem;
  }
}
.mg-distinctions__heading p {
  color: #8d8d8d;
}
@media (min-width: 992px) {
  .mg-distinctions {
    padding-block: 64px;
  }
}
.mg-distinctions__item {
  border-bottom: 1px solid #f4f7f9;
  padding-inline: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 992px) {
  .mg-distinctions__item {
    width: 35%;
    margin-left: auto;
  }
}
.mg-distinctions__item.accordion-item--open {
  background-color: #05080c;
  color: #ffffff;
}
.mg-distinctions__item.accordion-item--open svg {
  transform: rotate(180deg);
}
.mg-distinctions__item.accordion-item--open svg path {
  fill: #ffffff;
}
.mg-distinctions__item:first-child {
  border-top: 1px solid #f4f7f9;
}
.mg-distinctions__item-header {
  width: 100%;
  padding: 24px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: opacity 0.2s ease;
}
.mg-distinctions__item-header:hover {
  opacity: 0.8;
}
.mg-distinctions__item-header h5 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .mg-distinctions__item-header h5 {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .mg-distinctions__item-header span {
    display: none;
  }
}
.mg-distinctions__item-header span svg,
.mg-distinctions__item-header span path {
  transition: transform 0.3s ease, fill 0.3s ease;
}
.mg-distinctions__item-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 992px) {
  .mg-distinctions__item-content {
    position: absolute;
    left: 40px;
    width: 50%;
    height: 100%;
    top: 0;
  }
}
.accordion-item--open .mg-distinctions__item-content {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}
.mg-distinctions__item-content[hidden] {
  display: none;
}
.mg-distinctions__item-content--description {
  padding-bottom: 32px;
}
.mg-distinctions__item-content--description-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 992px) {
  .mg-distinctions__item-content--description-heading {
    flex-direction: row;
    text-align: start;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.mg-distinctions__item-content--description-heading h6 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #eceef5;
}
@media (min-width: 992px) {
  .mg-distinctions__item-content--description-heading h6 {
    color: #05080c;
  }
}
.mg-distinctions__item-content--description-heading img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.mg-distinctions__item-content--description p {
  margin: 0;
  color: #999b9e;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .mg-distinctions__item-content--description p {
    font-size: 1.6rem;
  }
}

.mg-video-text {
  padding: 0;
}
.mg-video-text.container {
  padding: 0;
}
@media (min-width: 992px) {
  .mg-video-text.container {
    padding: 0 40px;
  }
}
.mg-video-text__container {
  position: relative;
  padding: 32px 20px 56px;
}
.mg-video-text__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  backface-visibility: hidden;
}
@media (min-width: 992px) {
  .mg-video-text__video video {
    border-radius: 26px;
  }
}
.mg-video-text__text {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .mg-video-text__text {
    padding-left: 80px;
    padding-block: 64px;
    max-width: 480px;
  }
}
.mg-video-text__text h2 {
  margin-bottom: 21.6px;
  color: #eceef5;
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-video-text__text h2 {
    font-size: 4rem;
  }
}
.mg-video-text__text p {
  margin-bottom: 21.6px;
  color: #eff0f1;
}
.mg-video-text .button {
  margin-top: 32px;
}

.mg-cms-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 400px;
  padding: 40px 20px 48px;
  background-color: #05080c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #eceef5;
  text-align: center;
  background-image: url("/wp-content/uploads/2026/03/mobile.png");
}
@media (min-width: 992px) {
  .mg-cms-banner {
    background-image: url("/wp-content/uploads/2026/03/kariera.png");
    padding: 80px 0 112px;
    height: 400px;
  }
}
.mg-cms-banner .career-offer__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-bottom: none;
  padding-bottom: 0;
}
.mg-cms-banner .career-offer__tag {
  margin: 0;
  border: 1px solid #ffffff;
}
.mg-cms-banner h1 {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-cms-banner h1 {
    font-size: 4rem;
  }
}
.mg-cms-banner h1 span {
  color: #0866ff;
}
.mg-cms-banner p {
  margin: 8px 0 24px;
  max-width: 600px;
  color: #eff0f1;
}
.mg-cms-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .mg-cms-banner__buttons {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .page-id-53 .mg-cms-banner {
    background-image: url("/wp-content/uploads/2026/03/b2b.png");
  }
  .page-id-48 .mg-cms-banner {
    background-image: url("/wp-content/uploads/2026/03/our_brands.png");
  }
  .page-template-page-career-offer .mg-cms-banner {
    background-image: url("/wp-content/uploads/2026/03/oferta_o_prace.png");
  }
  .page-id-12 .mg-cms-banner {
    background-image: url("/wp-content/uploads/2026/03/about_us.png");
  }
}
.mg-why-us {
  background-color: #05080c;
  color: #eceef5;
}
.mg-why-us__content {
  padding: 24px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .mg-why-us__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 40px 48px;
    gap: 24px;
  }
}
.mg-why-us__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 24px 14.4px;
  background-color: transparent;
  border: 1px solid #0866ff;
  border-radius: 14px;
}
.mg-why-us__item-icon {
  position: absolute;
  top: 14px;
  right: 14.4px;
  width: 60px;
  height: 60px;
  padding: 12px;
  background-color: #0866ff;
  border-radius: 7px;
}
.mg-why-us__item img {
  width: 100%;
  height: 100%;
}
.mg-why-us__button {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .mg-why-us__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    border-radius: 125px;
    font-size: 4rem;
  }
}
.mg-why-us__button a:hover {
  color: #05080c;
}
.mg-why-us__button a:hover::before {
  transform: translateX(-50%) scale(30);
}

.mg-career-offer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 0 40px;
}
@media (min-width: 992px) {
  .mg-career-offer__content {
    padding: 56px 0 64px;
  }
}
.mg-career-offer__content h2 {
  margin-bottom: 18.4px;
}
.mg-career-offer__content ul {
  color: #999b9e;
  list-style: none;
}
.mg-career-offer__content ul li {
  margin: 4px;
  position: relative;
  padding-left: 16px;
}
.mg-career-offer__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #999b9e;
  border-radius: 50%;
}

.career-offer {
  margin: 24px 0 48px;
}
@media (min-width: 992px) {
  .career-offer {
    margin: 56px 0 96px;
  }
}
.career-offer__heading {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #c8c8c8;
}
.career-offer__heading h3 {
  font-size: 2.4rem;
}
.career-offer__heading .button {
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: 50%;
}
.career-offer__heading .button:hover::before {
  display: none;
}
.career-offer__tags {
  padding-bottom: 24px;
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #c8c8c8;
}
.career-offer__description {
  color: #999b9e;
}
.career-offer__tag {
  display: flex;
  align-items: center;
  gap: 6.4px;
  border: 1px solid #000000;
  border-radius: 46px;
  padding: 6.4px 17.6px;
  font-size: 1.4rem;
  font-weight: 500;
}
.career-offer__tag span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-offer__tag span img {
  width: 17px;
  height: 17px;
}
.career-offer__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .career-offer__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.mg-brands-item {
  display: flex;
  flex-direction: column;
  padding: 40px 20px 32px;
}
@media (min-width: 992px) {
  .mg-brands-item {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 40px 40px 32px;
  }
}
@media (min-width: 992px) {
  .mg-brands-item-content {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .mg-brands-item-image {
    width: 100%;
  }
}
.mg-brands-item h2 {
  font-size: 2.4rem;
}
.mg-brands-item-description {
  margin: 8px 0 16px;
  color: #999b9e;
}
@media (min-width: 992px) {
  .mg-brands-item-description {
    margin: 16px 0 24px;
  }
}
.mg-brands-item-desktop-images {
  display: none;
}
@media (min-width: 992px) {
  .mg-brands-item-desktop-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}
.mg-brands-item-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .mg-brands-item-features {
    display: none;
  }
}
.mg-brands-item-features--desktop {
  display: none;
}
@media (min-width: 992px) {
  .mg-brands-item-features--desktop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.mg-brands-item-features p {
  display: flex;
  flex-direction: column;
  color: #999b9e;
}
.mg-brands-item-features p span {
  color: #000000;
  font-weight: 600;
}
.mg-brands-item-full-width {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .mg-brands-item-full-width {
    flex-direction: row;
  }
}
.mg-brands-item-full-width-image {
  width: 100%;
}
.mg-brands-item-full-width-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mg-brands-item-full-width-content {
  width: 100%;
  padding: 32px 20px;
}
@media (min-width: 992px) {
  .mg-brands-item-full-width-content {
    padding: 96px 40px;
    padding-left: 64px;
  }
}
.mg-brands-item-full-width-content-inner {
  max-width: 720px;
}
.mg-brands-item-full-width-content ul {
  list-style: none;
}
.mg-brands-item-full-width-content ul li {
  padding-left: 16px;
  position: relative;
}
.mg-brands-item-full-width-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background-color: #eceef5;
  border-radius: 50%;
}
.mg-brands-item-full-width-content h3 {
  margin: 24px 0 24px;
  font-size: 2.4rem;
}
.mg-brands-item-full-width--huzaro {
  background-color: #05080c;
  color: #eceef5;
}
.mg-brands-item-full-width--huzaro strong,
.mg-brands-item-full-width--huzaro h3 {
  color: #ffffff;
}
.mg-brands-item-full-width--markadler {
  background-color: #3f3422;
  color: #eceef5;
}
.mg-brands-item-full-width--markadler strong,
.mg-brands-item-full-width--markadler h3 {
  color: #ffffff;
}
.mg-brands-item-full-width--tulano {
  background-color: #f6eee5;
}
.mg-brands-item-full-width--tulano ul li::before {
  background-color: #000000;
}
.mg-brands-item-full-width--athler {
  background-color: #262626;
  color: #eceef5;
}
.mg-brands-item-full-width--athler strong,
.mg-brands-item-full-width--athler h3 {
  color: #ffffff;
}
.mg-brands-item-full-width--gregman {
  background-color: #238046;
  color: #eceef5;
}
.mg-brands-item-full-width--gregman strong,
.mg-brands-item-full-width--gregman h3 {
  color: #ffffff;
}

.mg-form {
  background-image: url("/wp-content/uploads/2026/03/menu_mobile_2_swiatla-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 48px 0 72px;
}
@media (min-width: 992px) {
  .mg-form {
    padding: 112px 0;
    background-image: url("/wp-content/uploads/2026/02/formularz_desktop_tlo.png");
  }
}
.mg-form__text {
  color: #bfbfbf;
}
.mg-form__content {
  color: #eceef5;
}
@media (min-width: 992px) {
  .mg-form__content {
    display: flex;
    flex-direction: row-reverse;
    gap: 100px;
  }
}
@media (min-width: 992px) {
  .mg-form__content-inner {
    width: 40%;
  }
}
.mg-form__content h4 {
  margin-bottom: 16px;
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-form__content h4 {
    margin-bottom: 24px;
    font-size: 4.8rem;
  }
}
.mg-form__contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .mg-form__contact-links {
    margin-bottom: 24px;
  }
}
.mg-form__contact-links a {
  color: #eceef5;
  text-decoration: underline;
}
.mg-form__button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .mg-form__button-container {
    justify-content: flex-start;
  }
}
.mg-form #contact-form {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .mg-form #contact-form {
    margin-top: 0;
    padding: 40px 56px 8px;
    border-radius: 26px;
    border: 1px solid #eceef5;
    width: 60%;
  }
}
.mg-form #contact-form button[type=submit] {
  min-width: 150px;
  max-width: 150px;
  margin-top: 24px;
  margin-bottom: 16px;
  padding-inline: 24px;
  padding-block: 12px;
  border: none;
  font-size: 1.5rem;
}
.mg-form input:not([type=checkbox]),
.mg-form textarea,
.mg-form select {
  margin-bottom: 32px;
  padding-block: 12px;
  padding-inline: 8px;
  width: 100%;
  color: #eceef5;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999b9e;
}
.mg-form__select-wrapper {
  position: relative;
  margin-bottom: 32px;
}
.mg-form__select-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-inline: 8px;
  padding-bottom: 12px;
  color: #757575;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999b9e;
  text-align: left;
  font: inherit;
  cursor: pointer;
  appearance: none;
}
.mg-form__select-wrapper:has(#contact-topic:valid) .mg-form__select-trigger {
  color: #eceef5;
}
.mg-form__select-trigger-arrow {
  display: none;
}
@media (min-width: 992px) {
  .mg-form__select-trigger-arrow {
    display: block;
    margin-left: auto;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
  }
}
@media (min-width: 992px) {
  .mg-form__select-wrapper:has(.mg-form__select-popup.is-open) .mg-form__select-trigger-arrow {
    transform: rotate(180deg);
  }
}
.mg-form #contact-topic {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  pointer-events: none;
}
.mg-form__select-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 101;
}
@media (min-width: 992px) {
  .mg-form__select-popup-overlay {
    display: none !important;
  }
}
.mg-form__select-popup-overlay.is-open {
  display: block;
}
.mg-form__select-popup {
  position: fixed;
  left: 0;
  bottom: -120%;
  width: 100%;
  max-height: 90vh;
  background: #ffffff;
  z-index: 102;
  overflow: hidden;
  transition: bottom 0.3s ease-in-out;
  padding-bottom: 56px;
}
@media (min-width: 992px) {
  .mg-form__select-popup {
    position: absolute;
    display: none;
    bottom: 0;
    top: 100%;
    left: 0;
    width: 100%;
    height: max-content;
    padding-bottom: 0;
    z-index: 99;
  }
}
.mg-form__select-popup.is-open {
  display: block;
  bottom: 0;
}
.mg-form__select-popup-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}
@media (min-width: 992px) {
  .mg-form__select-popup-header {
    display: none;
  }
}
.mg-form__select-popup-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.mg-form__select-popup-contact a {
  color: #eceef5;
  text-decoration: underline;
}
.mg-form__select-popup-close {
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.mg-form__select-popup-close line {
  stroke: #999b9e;
}
.mg-form__select-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 992px) {
  .mg-form__select-popup-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mg-form__select-popup-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 95px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e5e6ed;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media (min-width: 992px) {
  .mg-form__select-popup-option {
    min-height: 100px;
  }
}
.mg-form__select-popup-option:hover, .mg-form__select-popup-option.is-selected {
  background-color: #e8eaf5;
}
.mg-form__select-popup-num {
  font-size: 0.9rem;
  color: #999b9e;
  margin-bottom: 4px;
}
.mg-form textarea {
  margin-bottom: 20px;
  min-height: 80px;
  height: 80px;
  resize: vertical;
  max-height: 150px;
  font-family: sans-serif;
}
.mg-form__consent-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: #bfbfbf;
}
.mg-form__consent-label span {
  cursor: pointer;
}
.mg-form .form-message {
  height: 30px;
}

.btn-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: form-spinner 0.6s linear infinite;
}

.btn-spinner.is-loading {
  display: inline-block;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}
.page-id-12 .mg-form {
  background-image: url("/wp-content/uploads/2026/03/menu_mobile_1_swiatlo-1.png");
}
@media (min-width: 992px) {
  .page-id-12 .mg-form {
    background-image: url("/wp-content/uploads/2026/03/kontakt_tlo_desktop.png");
  }
}

.mg-partners {
  width: 100%;
  overflow: hidden;
  padding: 32px 24px;
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px solid #63666c;
  border-bottom: 1px solid #63666c;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.mg-partners__wrapper {
  padding-top: 24px;
  padding-bottom: 48px;
  background-color: #05080c;
}
.mg-partners__item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: start;
}
.mg-partners__item img {
  height: 30px;
  width: auto;
}
@media (min-width: 992px) {
  .mg-partners__item img {
    height: 35px;
  }
}
.mg-partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 20s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  margin: 0 auto;
  gap: 30px;
}
@media (min-width: 992px) {
  .mg-partners__track {
    gap: 60px;
  }
}

@keyframes scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.mg-our-mission {
  padding-top: 32px;
  padding-bottom: 64px;
  background-color: #05080c;
  color: #ffffff;
}
@media (min-width: 992px) {
  .mg-our-mission {
    padding-top: 56px;
  }
}
.mg-our-mission__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .mg-our-mission__container {
    flex-direction: row;
    gap: 80px;
  }
}
.mg-our-mission__image {
  width: 100%;
}
.mg-our-mission__image img {
  border-radius: 26px;
}
.mg-our-mission__content {
  width: 100%;
}
.mg-our-mission__content h2 {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-our-mission__content h2 {
    font-size: 4rem;
  }
}
.mg-our-mission__content p {
  margin: 8px 0 16px;
  color: #bfbfbf;
}
.mg-our-mission__content-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .mg-our-mission__content-icon {
    justify-content: flex-start;
  }
}
.mg-our-mission__content img {
  max-width: 140px;
}

.mg-our-journey {
  padding-top: 48px;
  background-color: #0866ff;
  color: #ffffff;
  overflow: hidden;
}
@media (min-width: 992px) {
  .mg-our-journey .container {
    overflow: hidden;
  }
}
.mg-our-journey__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mg-our-journey__heading {
    margin-left: 100px;
    margin-bottom: 112px;
    gap: 200px;
  }
}
.mg-our-journey__heading h2 {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-our-journey__heading h2 {
    font-size: 4rem;
    max-width: 164px;
  }
}
.mg-our-journey__description--desktop {
  display: none;
}
@media (min-width: 992px) {
  .mg-our-journey__description--desktop {
    display: block;
    position: relative;
    flex: 1;
    min-height: 60px;
  }
  .mg-our-journey__description--desktop .mg-our-journey__item p {
    display: block;
  }
}
.mg-our-journey__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mg-our-journey__buttons--desktop {
  display: none;
}
@media (min-width: 992px) {
  .mg-our-journey__buttons {
    display: none;
  }
  .mg-our-journey__buttons--desktop {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    z-index: 5;
  }
}
.mg-our-journey__buttons button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}
.mg-our-journey__buttons button svg {
  transform: rotate(45deg);
}
.mg-our-journey__buttons button path {
  fill: #0866ff;
}
.mg-our-journey__buttons button:disabled {
  background-color: transparent;
  cursor: default;
}
.mg-our-journey__buttons button:disabled path {
  fill: #ffffff;
}
.mg-our-journey__buttons .mg-our-journey__button--prev {
  transform: rotate(-180deg);
}
.mg-our-journey__content {
  margin-top: 84px;
  position: relative;
  height: 500px;
}
@media (min-width: 992px) {
  .mg-our-journey__content {
    margin-top: 128px;
    height: 470px;
  }
}
.mg-our-journey__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}
.mg-our-journey__item--active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mg-our-journey__item--leaving {
  animation: journeyFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.mg-our-journey__item p {
  display: block;
}
@media (min-width: 992px) {
  .mg-our-journey__item p {
    display: none;
  }
}
.mg-our-journey__item-images {
  display: flex;
  gap: 24px;
}
@media (min-width: 992px) {
  .mg-our-journey__item-images {
    max-width: 80%;
  }
}
.mg-our-journey__item-image {
  margin-bottom: 16px;
  width: 100%;
  height: 300px;
  background-color: #d9d9d9;
  border-radius: 26px;
}
.mg-our-journey__item-image:nth-child(2) {
  display: none;
}
@media (min-width: 992px) {
  .mg-our-journey__item-image {
    max-width: 430px;
    height: 370px;
  }
  .mg-our-journey__item-image:nth-child(2) {
    display: block;
  }
}
.mg-our-journey__item-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.mg-our-journey--ready .mg-our-journey__item--active {
  animation: journeyFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.mg-our-journey__years-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mg-our-journey__years-slider::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -50px;
  width: calc(100% + 40px);
  height: 1px;
  background-color: #5d9bff;
}
@media (min-width: 992px) {
  .mg-our-journey__years-slider::after {
    width: 100%;
    left: 0;
  }
}
.mg-our-journey__years-slider::before {
  content: "";
  position: absolute;
  bottom: -60px;
  height: 20px;
  width: 20px;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: #0866ff;
  z-index: 1;
}
@media (min-width: 992px) {
  .mg-our-journey__years-slider::before {
    left: 100px;
  }
}
.mg-our-journey__year {
  position: absolute;
  left: 0;
  top: 0;
  color: #5d9bff;
  font-size: 1.4rem;
  line-height: 30px;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .mg-our-journey__year {
    left: 100px;
    font-size: 1.6rem;
  }
}
.mg-our-journey__year:nth-child(1) {
  left: 0px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(1) {
    left: 100px;
  }
}
.mg-our-journey__year:nth-child(2) {
  left: 90px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(2) {
    left: 300px;
  }
}
.mg-our-journey__year:nth-child(3) {
  left: 180px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(3) {
    left: 500px;
  }
}
.mg-our-journey__year:nth-child(4) {
  left: 270px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(4) {
    left: 700px;
  }
}
.mg-our-journey__year:nth-child(5) {
  left: 360px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(5) {
    left: 900px;
  }
}
.mg-our-journey__year:nth-child(6) {
  left: 450px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(6) {
    left: 1100px;
  }
}
.mg-our-journey__year:nth-child(7) {
  left: 540px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(7) {
    left: 1300px;
  }
}
.mg-our-journey__year:nth-child(8) {
  left: 630px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(8) {
    left: 1500px;
  }
}
.mg-our-journey__year:nth-child(9) {
  left: 720px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(9) {
    left: 1700px;
  }
}
.mg-our-journey__year:nth-child(10) {
  left: 810px;
}
@media (min-width: 992px) {
  .mg-our-journey__year:nth-child(10) {
    left: 1900px;
  }
}
.mg-our-journey__year::after {
  content: "";
  position: absolute;
  bottom: -25px;
  width: 10px;
  height: 10px;
  background-color: #5d9bff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.mg-our-journey__year--active {
  color: #e8eaf5;
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-our-journey__year--active {
    font-size: 4rem;
  }
}
.mg-our-journey__year--active::after {
  left: 10px;
  background-color: #ffffff;
}

@keyframes journeyFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes journeyFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(40px);
  }
}
.mg-our-growth {
  background-color: #05080c;
}
@media (min-width: 992px) {
  .mg-our-growth {
    height: 900px;
    overflow: hidden;
  }
}
.mg-our-growth__container {
  position: relative;
  height: 100%;
}
@media (min-width: 992px) {
  .mg-our-growth__container {
    display: flex;
    height: 900px;
    align-items: center;
  }
}
.mg-our-growth__image__wrapper {
  margin-inline: -20px;
}
@media (min-width: 992px) {
  .mg-our-growth__image__wrapper {
    margin-inline: 0;
  }
}
@media (min-width: 992px) {
  .mg-our-growth__image {
    position: absolute;
    top: 0;
    right: -480px;
    height: auto;
    max-width: 1100px;
  }
}
@media (min-width: 1400px) {
  .mg-our-growth__image {
    right: -100px;
  }
}
.mg-our-growth__content {
  padding-top: 32px;
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .mg-our-growth__content {
    max-width: 450px;
  }
}
.mg-our-growth__content h3 {
  margin-bottom: 16px;
  color: #e8eaf5;
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .mg-our-growth__content h3 {
    font-size: 4rem;
  }
}
.mg-our-growth__content p {
  margin-bottom: 16px;
  color: #bfbfbf;
}
.mg-our-growth__content a {
  margin-top: 8px;
  width: 100%;
  max-width: 100%;
  text-align: center;
  z-index: 1;
}
@media (min-width: 992px) {
  .mg-our-growth__content a {
    max-width: max-content;
    margin-top: 32px;
  }
}
.mg-our-growth__content a:hover::before {
  z-index: -1;
}

/*# sourceMappingURL=style.css.map */
