:root {
    --header-border-color: hsl(0, 0%, 50%);
    --main-bg: hsl(0, 0%, 97%);
    --tile-colour: hsl(0, 0%, 97%);
    --yellow: #ecaf36;
    --color-star: orange;
    --red: #EB6666;
    --green: #6FB18A;
    --header-col: transparent;
    --ofertamenu-col: hsl(0, 0%, 97%);
    --footer-bg: hsl(0, 0%, 10%);
    --staple-corner-color: orange;
    --pp-th: hsl(0, 0%, 90%);
    --pp-td: white;
}

a {
    color: hsl(0, 0%, 10%);
    transition: color 200ms ease-in;
}

a:hover {
    color: orange;
    transition: color 200ms ease-out;
}

.hidden {
    opacity: 0.1;
    filter: blur(5px);
    transition: all 200ms ease-out;
}

.show {
    opacity: 1;
    filter: blur(0);
    transition: all 500ms ease-in;
}



body {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.6rem;
    overflow-x: hidden;
    background-color: var(--main-bg);
    background-image: url(bg/bg1.png);
    background-size: auto 50px;
}


body::before,
body::after {
    filter: url(#noiseFilter);
    background: #000000;
    opacity: .15;
    position: fixed;
    content: '';
    top: 0;
    left: 0;
    width: 100svw;
    height: 120svh;
    z-index: 9999;
    pointer-events: none;
}

/* FONTS */

.main-font {
    font-family: "Alice", serif;
  font-weight: 600;
  font-style: normal;
}

.secondary-font {
    font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* AWESOME DEBUGGER
* {
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
  }
*/

.flag-svg {
    width: 2rem;
    height: 1.2rem;
}

.language-choice {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    height: 2.2rem;
    contain: paint;
    position: absolute;
    right: 8rem;
    top: .8rem;
    align-items: start;
    border: 1px solid transparent;
    background-color: var(--main-bg);
    transition: all 200ms ease-in-out;
    box-sizing: border-box;
    padding: .2rem;
}

.language-choice a {
    text-decoration: none;
    height: 2rem;
    padding: .1rem;
    border: none;
    background-color: transparent;
    display: flex;
    gap: .2rem;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.language-choice a>p {
    margin: 0;
    margin-top: .2rem;
    padding: 0;
}
.language-choice a>svg {
    margin-top: .5rem;
}

.language-choice:hover {
    height: 4.8rem;
    border: 1px solid black;
}


.main-page-content-container {
    width: 100svw;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-bottom: 4rem;
}

.site-title-header {
    width: 100svw;
    height: 4rem;
    background-color: transparent;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    box-sizing: border-box;
    border: none;
    pointer-events: all;
    z-index: 9000;;
}

.header-inner-wrapper {
    max-width: 1600px;
    background-color: var(--ofertamenu-col);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    margin: 0;
    border-bottom: 1px solid var(--header-border-color);
    position: relative;
}

.header-logo {
    height: 3.6rem;
    width: 5.2rem;
    transition: none !important;
}

.site-title-header h1 {
    font-size: 3rem;
    padding: 0;
    margin: 0;
}

.title-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0;
    padding-top: 8rem;
    padding-bottom: 2rem;
    max-width: 100%;
    width: 100%;
    position: relative;
    height: fit-content;
}

.title-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    margin: 0;
    width: 100%;
}

.title-card h2 {
    font-size: 3rem;
    margin: 0;
    line-height: 1;
}

.title-card ul {
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
}

.title-card li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.title-card-img {
    max-width: 80%;
    height: auto;
}

.title-card-visual {
    max-width: 100%;
    height: auto;
    border-radius: .5rem;
    margin-right: 2rem;
    box-sizing: border-box;
}

.title-card-visual video {
    max-width: 100%;
    height: auto;
    border-radius: .5rem;
    margin-right: 2rem;
}

.title-card-content {
    box-sizing: border-box;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-page-wrapper {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.contact-main-page-wrapper {
    max-width: 1600px;
    width: 100%;
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: 1fr 1fr;
}

.header-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    font-size: 1.3rem;
}

.header-list li {
    height: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-link {
    margin: 0;
    padding: 0;
    color: black;
    text-decoration: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 200ms ease-in;
}

.header-link:hover {
    color: orange;
    transition: color 200ms ease-out;
}


.header-contact {
    position: absolute;
    right: 1rem;
}

.oferta-button {
    z-index: 1000;
}


.oferta-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    top: 4rem;
    padding: .5rem;
    left: 8.4rem;
    opacity: 0;
    z-index: 100;
    background-color: var(--ofertamenu-col);
    backdrop-filter: blur(10px);
    list-style: none;
    border: 1px solid black;
    width: 12rem;
    height: 16rem;
    box-sizing: border-box;
    transition: all 100ms ease-in;
    pointer-events: none;
}

.oferta-menu li {
    height: fit-content;
    max-width: 100%;
    border: 1px solid;
    border-color: transparent;
    background-color: transparent;
    transition: all 150ms ease-in-out;
}

.oferta-menu li:hover {
    border-color: black;
    transition: all 150ms ease-in-out;
}

.oferta-menu a {
    color: #000000;
    width: 10rem;
    text-decoration: none;
    padding: .5rem;
    line-height: 1;
    margin: 0;
    transition: color 200ms ease-in;
}

.oferta-menu a:hover {
    color: orange;
    transition: color 200ms ease-out;
}

.oferta-button:hover .oferta-menu {
    opacity: 1;
    transition: all 400ms ease-out;
    pointer-events: all;
}

.oferta-anchor {
    display: flex;
    align-items: center;
    gap: .2rem;
}



.down-arrow-svg {
    width: .5rem;
    height: 1rem;
    position: relative;
    margin-top: .3rem;
}

.down-arrow {
    width: 1rem;
    height: 1rem;
    fill: black;
    z-index: 19999;
}

footer {
    display: flex;
    justify-content: center;
    border: none;
    margin-top: 2rem;
    background-color: var(--footer-bg);
}

.footer-wrapper {
    max-width: 1600px;
    width: 100%;
    border-top: 1px solid var(--header-border-color);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: start;
    position: relative;
    padding: .5rem;
    padding-top: 1rem;
    gap: 2rem;
    color: white;
}

.footernav {
    padding: .5rem;
}

footer a {
    color: hsl(0, 0%, 90%);
    transition: color 200ms ease-in;
    width: fit-content;
    border: none;
    text-decoration: none;
}

footer a:hover {
    color: orange;
    transition: color 200ms ease-out;
} 

.footernav ul {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.footersocial {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5rem;
}

.footersocial ul {
    display: flex;
    flex-direction: row;
    gap: 5%;
    padding: 0;
    margin: 0;
    align-items: center;
}

.footersocial>ul>li>a {
    width: fit-content;
}


.footerlogos {
    padding: .5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.footlogo img {
    max-width: 8rem;
    height: auto;
}

.footersocial svg {
    max-width: 4rem;
    height: auto;
    fill: hsl(0, 0%, 90%);
    transition: fill 200ms ease-in;
}

.footersocial svg:hover {
    fill: orange;
    transition: fill 200ms ease-out;
}



.footercert {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5rem;
}

.staple-corner1 {
    position: absolute;
    top: 6rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-top: 2px solid var(--staple-corner-color);
    border-left: 2px solid var(--staple-corner-color);
}

.staple-corner2 {
    position: absolute;
    top: 6rem;
    right: 0;
    width: 1rem;
    height: 1rem;
    border-top: 2px solid var(--staple-corner-color);
    border-right: 2px solid var(--staple-corner-color);
}

.staple-corner3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-bottom: 2px solid var(--staple-corner-color);
    border-left: 2px solid var(--staple-corner-color);
}

.staple-corner4 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1rem;
    height: 1rem;
    border-bottom: 2px solid var(--staple-corner-color);
    border-right: 2px solid var(--staple-corner-color);
}

.main-page-additional-content {
    min-height: 30rem;
    width: 100%;
    box-sizing: border-box;
    padding-top: 5rem;
    position: relative;
    margin: 5rem 0;
    color: hsl(0, 0%, 90%);
}

.main-page-additional-content h2 {
    font-size: 2rem;
}

.mpa-bg-wrapper {
    width: 150svw;
    height: 100%;
    position: absolute;
    top: 0;
    left: -50svw;
    background-color: black;
}

.r-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    gap: 3rem;
    margin-bottom: 6rem;
}

.r-card {
    border-bottom: 1px solid var(--header-border-color);
    box-sizing: border-box;
    margin: 0;
    padding: 1rem;
    position: relative;
}

.r-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.r-card-img {
    max-width: 20%;
    height: auto;
}

.main-page-recommendations {
    box-sizing: border-box;
    width: 100%;
}

.main-page-recommendations h2 {
    font-size: 2rem;
}

.recommendation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    margin-bottom: 5rem;
}

.rec-card {
    border-bottom: 1px solid var(--header-border-color);
    box-sizing: border-box;
    padding: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all 200ms ease-in;
}

.rec-card:hover {
    background-color: hsl(0, 0%, 95%);
    transition: all 200ms ease-out;
}

.rec-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

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

.rec-card a {
    text-decoration: none;
    color: black;
}

.card-br-addon {
    position: absolute;
    bottom: 0;
    right: 0;
    border-right: 1px solid var(--header-border-color);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 1px;
    height: .5rem;
}

.card-bl-addon {
    position: absolute;
    bottom: 0;
    left: 0;
    border-left: 1px solid var(--header-border-color);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 1px;
    height: .5rem;
}

.top-card-border-toanimate1 {
    width: 0;
    height: 1px;
    transition: width 200ms ease-in, transform 200ms ease-in-out;
    background-color: var(--header-border-color);
    position: absolute;
    top: 0;
    right: 50%;
    justify-self: center;
}

.top-card-border-toanimate2 {
    width: 0;
    height: 1px;
    transition: width 200ms ease-in, transform 200ms ease-in-out;
    background-color: var(--header-border-color);
    position: absolute;
    top: 0;
    left: 50%;
    justify-self: center;
}

.rec-card:hover .top-card-border-toanimate1 {
    width: 50%;

    transition: width 200ms ease-out;
}

.rec-card:hover .top-card-border-toanimate2 {
    width: 50%;
    transition: width 200ms ease-out;
}

.left-card-border-toanimate {
    width: 1px;
    height: 0;
    transition: height 200ms ease-in;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--header-border-color);
}

.right-card-border-toanimate {
    width: 1px;
    height: 0;
    transition: height 200ms ease-in;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--header-border-color);
}

.rec-card:hover .left-card-border-toanimate {
    height: 100%;
    transition: height 200ms ease-out;
}

.rec-card:hover .right-card-border-toanimate {
    height: 100%;
    transition: height 200ms ease-out;
}

.title-card-link {
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    width: fit-content;
    border-bottom: 1px solid var(--header-border-color);
    padding: 1rem;
    display: block;
}

.title-card-link {
    font-size: 2rem;
}

.title-card-list {
    box-sizing: border-box;
}

.title-card-list li {
    width: fit-content;
}

.title-link-bl-addon {
    width: 1px;
    height: .5rem;
    background-color: var(--header-border-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.title-link-br-addon {
    width: 1px;
    height: .5rem;
    background-color: var(--header-border-color);
    position: absolute;
    bottom: 0;
    right: 0;
}

.navlink {
    text-decoration: none;
    color: black;
}

.contact-content {
    margin-top: 6rem;
    box-sizing: border-box;
    padding: 0;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: start;
    justify-content: left;


}

.contact-content h1 {
    width: fit-content;
    font-size: 2.5rem;
}

.contact-content h2 {
    font-size: 2rem;
}

.phone-icon-svg {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-info {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    align-items: center;
    height: 1.6rem;
}

.contact-info p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1.4rem;
    padding-left: .2rem;
}

.phone-info {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    padding-bottom: 1rem;
}

.phone-info h2 {
    margin: 1rem 0;
}

.contact-title h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 2rem;
}


.mail-info {
    padding: 0;
    margin: 0;
    font-size: 1.4rem;
    box-sizing: border-box;
    padding-bottom: 1rem;
}

.mail-info h2 {
    margin: 1rem 0;
}

.mail-info a {
    margin-left: 1rem;
}

.pl1r {
    padding-left: 1rem;
}

.whereabouts {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.whereabouts h2 {
    margin: 1rem 0;
}

.whereabouts ul,
li {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    width: fit-content;
    text-decoration: none;
    font-size: 1.4rem;
}

.contact-info-wrapper {
    padding-bottom: 2rem;
}

#the-map {
    height: 80%;
    width: 100%;
    border-radius: .4rem;
}

.contact-map {
    margin-top: 8rem;
    width: 100%;
    height: 100%;
    border-radius: .4rem;
    box-sizing: border-box;
    position: relative;
}

.map-nav-div {
    position: absolute;
    top: .5rem;
    left: .5rem;
    width: 10rem;
    height: 4rem;
    background-color: var(--main-bg);
    z-index: 50;
    border: 1px solid black;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-nav-div a {
    width: fit-content;
    height: fit-content;
}

.mobile-nav-toggle {
    display: none;
}

.odp-title-sequence {
    padding-top: 4rem;
    width: 100%;
    font-size: 2rem;
}

.odpowiedniki-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    overflow: hidden;
}

.odpowiedniki-table-main {
    border-collapse: collapse;
    background-color: white;
    width: 100%;
}

.invalid-feedback,
.empty-feedback {
    display: none;
}

.was-validated :placeholder-shown:invalid~.empty-feedback {
    display: block;
}

.was-validated :not(:placeholder-shown):invalid~.invalid-feedback {
    display: block;
}

.is-invalid,
.was-validated :invalid {
    border-color: #dc3545;
}


.odpowiedniki-table-main th {
    max-width: 8rem;
    background-color: hsl(34, 86%, 88%);
}

.odpowiedniki-table-main tr:nth-of-type(2n) {
    background-color: hsl(0, 0%, 92%);
}

.odpowiedniki-table-main td,
th {
    border: 1px solid black;
    padding: .5rem .2rem;
    text-align: center;
    line-height: 1rem;
}

.odpowiedniki-table-main td {
    font-size: 1.2rem;
}

.odpowiedniki-table-main th {
    font-size: 1.2rem;
}

.table-side-header {
    width: 3rem !important;
}

.odpowiedniki-table-main tr>th:nth-of-type(1){
    width: fit-content;
}

.matop-footer {
    margin-top: auto;
}

.maxsvh {
    min-height: calc(100svh - 27rem);
    padding: 0;
}

.o-nas-title {
    padding-top: 4rem;
    width: 100%;
    font-size: 2rem;
}

.o-nas-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.on-desc-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 0;
}

.o-nas-desc h2 {
    font-weight: 500;
}

.on-img {
    max-width: 100%;
    height: auto;
    border-radius: .4rem;
    padding-top: 2rem;
}

.on-nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding-left: 0;
    max-width: 100%;
}

.on-nav a {
    margin: 0;
    padding: .2rem .5rem;
    font-size: 1rem;
    transition: color 200ms ease-out;
    text-decoration: none;
}

.order1 {
    order: 1;
}

.przedstawiciele-title {
    padding-top: 1rem;
    max-width: 96svw;
    width: 100%;
    font-size: 2rem;
    margin: 0;
    padding-bottom: 1rem;
    grid-column: 1/3;
}

.przedstawiciele-title h1 {
    font-size: 3rem;
    font-weight: 600;
}

.przedstawiciele-content {
    max-width: 96svw;
    width: 100%;
}

.przedstawiciele-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
    width: fit-content;
}

.przedstawiciele-item a {
    width: fit-content;
    font-size: 1.3rem;
}

.przedstawiciele-item h2,
h3 {
    margin: 0;
}

.przedstawiciele-item h2 {
    font-size: 1.8rem;
}

.przedstawiciele-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.product-wrapper {
    padding: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: 1px solid var(--header-border-color);
    padding: 0 1rem;
    margin: 0;
}

.product-card:hover {
    backdrop-filter: blur(10px);
    background-color: hsl(0, 0%, 90%);
}

.product-card a {
    color: hsl(0, 0%, 10%);
    transition: color 200ms ease-in;
}

.product-card:hover a {
    color: orange;
    transition: color 200ms ease-out;
}

.rec-card p {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    line-height: 1;
}

.rec-card a {
    color: hsl(0, 0%, 10%);
    transition: color 200ms ease-in;
}

.rec-card:hover p {
    color: orange;
    transition: color 200ms ease-out;
}

.rec-card:hover h3 {
    color: black;
    transition: none;
}


.product-card:hover .left-card-border-toanimate {
    height: 30%;
    transition: height 200ms ease-out;
}

.product-card:hover .right-card-border-toanimate {
    height: 30%;
    transition: height 200ms ease-out;
}

.mpwoferta {
    margin-top: 2rem;
    padding-top: 3rem;
}

.visclass[visible="true"] {
    display: flex;
}

.visclass[visible="false"] {
    display: none;
}

.prod-active {
    background-color: #0085b6;
    color: white !important;
}

.container__title {
    max-width: 1600px;
    width: 100%;
    padding-left: 1rem;

}

#posts-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.post {
    position: relative;
    width: 100%;
    border-radius: .4rem;
    margin-top: 2rem;
}

.post-title {
    font: 700 18px/1.4em system-ui, Roboto, Arial, sans-serif;
    color: #4a4a4a;
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    padding-bottom: 1rem;
    width: fit-content;
}

.post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 16px;
}

.post-preview {
    overflow: hidden;
    width: 100%;
    height: auto;
    text-align: center;
    display: block;
    border-bottom: 1px solid #b4b4b4;
    line-height: 0;
}

.post-preview img {
    width: 100%;
    height: auto;
}

.post-tag {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: .5rem;
    padding: 0 .3rem;
    color: #717171;
    border: 1px solid #9b9b9b;
    white-space: nowrap;
    font-size: .9rem;
}

.post-footer {
    text-align: right;
    margin-top: auto;
}

.container__title {
    margin-left: 1rem;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .6rem;
    padding: 1rem;
    width: 100%;
    height: 2rem;
    max-width: 1600px;
    margin-bottom: 16px;
    z-index: 100;
    background-color: transparent;
    box-sizing: border-box;
}

.filter-button {
    transition: background-color 200ms, color 200ms;
    background-color: transparent;
    font: inherit;
    cursor: pointer;
    display: inline-block;
    padding: 0 8px;
    color: #636363;
    border: 1px solid black;
    font-size: 14px;
    white-space: nowrap;
}

.filter-button:hover {
    background-color: #f3f3f3;
    color: #3a3a3a;
}

.filter-button.is-active {
    background-color: #0085b6;
    border-color: #0085b6;
    color: #fff;
}

.oferta-secondary-categories {
    max-width: 1600px;
    width: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-items: start;
    gap: .5rem;
    padding-bottom: .6rem;
    margin-bottom: .4rem;
    margin-left: 1rem;
    height: 2rem;
    align-self: flex-start;
    width: fit-content;
    align-items:start;
}

.oferta-secondary-categories a {
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 200ms ease-in-out;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.oferta-secondary-categories a:hover {
    background-color: #f3f3f3;
    transition: background-color 200ms ease-in-out;
}

.oferta-secondary-categories img {
    max-width: 100%;
    height: auto;
}

.oferta-secondary-categories h3 {
    text-decoration: none;
    color: #000000;
    border: none;
    padding: .3rem;
    font-size: 1rem;
    margin: 0;
}

.mpwoferta h2 {
    width: fit-content;
    margin: 0;
    padding: 0;
    margin-right: auto;
    padding-left: .5rem;
    padding-bottom: .5rem;
}

.product-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1600px;
    width: 100%;
    padding-top: 6rem;
    gap: 4rem;
}


.photo-wrapper {
    width: 100%;
}
.content-wrapper {
    width: 100%;
}

.main-product-img-wrapper {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.product-img {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.prodvis {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.image-switch {
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.image-slider {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: calc(1rem - 2px);
    padding: .5rem;
    padding-left: calc(.5rem + 1px);

}

.slider-img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 1px solid;
    border-color: transparent;
    opacity: 0.5;
    transition: border-color 100ms ease-in, opacity 100ms ease-in;
}

.slider-img:hover {
    border-color: hsl(0, 0%, 40%);
    transition: border-color 100ms ease-out, opacity 100ms ease-out;
}

.active-slider {
    opacity: 1;
    transition: border-color 100ms ease-out, opacity 100ms ease-out;
}



.title-wrapper {
    width: fit-content;
    margin-bottom: 2rem;
}

.title-wrapper h1 {
    font-size: 3rem;
}

.similar-title {
    max-width: 1600px;
    width: 100%;
    text-align: left;
    margin-top: 4rem;
}

.similar-title h2 {
    font-size: 3rem;
}

.sim-prod-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1600px;
    width: 100%;
    gap: 4rem;
}

.desc-wrapper h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.desc-table {
    border-collapse: collapse;
}

.desc-table td,
th {
    border: 1px solid black;
    padding: .5rem;
    padding-bottom: .1rem;
}

.desc-table tr {
    background-color: hsl(0, 0%, 100%);
}

.prd-cont-info {
    margin-top: 1rem;
}

.prd-cont-info h3 {
    font-size: 1.8rem;
}

.prd-cont-info a {
    font-size: 1.4rem;
}

.mobnav {
    display: none !important;
}

.mobnav a {
    text-decoration: none;
    color: black;
}

.form-wrapper {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    gap: 1rem;
    grid-area: 2/1/2/3;
    padding: 0;
    margin: 0;
    width: 100%;
}

.form-item {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.form-item input {
    min-height: 2rem;
    font-size: 1.2rem;
}

.form-button {
    display: flex;
    position: relative;
    align-items: center;
    contain: paint;
    color: white;
    background-color: hsl(0, 0%, 10%);
    width: 6rem;
    height: 2rem;
    border: 1px solid black;
    cursor: pointer;
}

.tdiv {
    width: 70%;
    background-color: hsl(0, 0%, 10%);
    z-index: 90;
}

.form-button p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    transition: color 200ms ease-out;
}

.send-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    gap: 1rem;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    z-index: 80;
}

.send-arrows svg {
    width: .5rem;
    height: .5rem;
    fill: white;
}

.send-arrows svg:nth-of-type(1) {
    opacity: 100%;
}

.send-arrows svg:nth-of-type(2) {
    opacity: 50%;
}

.send-arrows {
    transition: transform 100ms ease-in;
    transform: translateX(0);
}

.form-button:hover .send-arrows {
    transition: transform 100ms ease-out;
    transform: translateX(42%);
}

.form-button:hover p{
    color: orange;
    transition: color 200ms ease-out;
}

.form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-title {
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.contact-form-paragraph {
    font-size: 1.4rem;
    margin: 0;
    line-height: 2rem;
    padding-bottom: 1rem;
}

/* Blobs */

.blob-cont {
    top: 50%;
    left: 20%;
    translate: -50% -50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -2;
    height: 90%;
    max-width: 500px;
    width: 90%;
    position: absolute;
    right: 5em;
}


.blob {
    border-radius: 100px;
    filter: blur(80px);
    opacity: 0.6;
}

.yellow {
    background-color: var(--yellow);
    position: absolute;
    top: 200px;
    left: 100px;
    height: 200px;
    width: 200px;

    animation: yellow 12s infinite ease;
}

.green {
    background-color: var(--green);
    position: absolute;
    top: 80px;
    right: -20px;
    height: 200px;
    width: 250px;

    animation: green 12s infinite ease;
}

.red {
    background-color: var(--red);
    position: absolute;
    right: 0;
    top: 300px;
    height: 250px;
    width: 200px;

    animation: red 12s infinite linear;
}

.r-card svg {
    fill: hsl(0, 0%, 90%);
}



.r-card svg>g>path {
    fill: hsl(0, 0%, 90%);
}

.r-card .ani1 {
    transition: all 200ms ease-in;
    d: path("M549.96,507.62V694l-25-18.75V507.34c-8.33-0.06-16.67-0.09-25-0.09V656.5l-100-75l-100,75V511.9  c-8.33,0.21-16.67,0.4-25,0.56v162.79l-25,18.75V512.83c-8.33,0.09-16.67,0.13-25,0.13V694c0,9.47,5.35,18.12,13.81,22.36   c3.54,1.77,7.36,2.64,11.16,2.64c5.33,0,10.6-1.7,15.03-5l135-101.25l135,101.25c4.42,3.31,9.69,5,15,5 c3.81,0,7.64-0.86,11.19-2.64c8.46-4.24,13.81-12.89,13.81-22.36V508.08C566.62,507.89,558.29,507.74,549.96,507.62z");
}   

.r-card:hover .ani1 {
    transition: all 200ms ease-out;
    d: path("M549.96,576.62V763l-25-18.75V576.34c-8.33-0.06-16.67-0.09-25-0.09V725.5l-100-75l-100,75V580.9  c-8.33,0.21-16.67,0.4-25,0.56v162.79l-25,18.75V581.83c-8.33,0.09-16.67,0.13-25,0.13V763c0,9.47,5.35,18.12,13.81,22.36   c3.54,1.77,7.36,2.64,11.16,2.64c5.33,0,10.6-1.7,15.03-5l135-101.25l135,101.25c4.42,3.31,9.69,5,15,5 c3.81,0,7.64-0.86,11.19-2.64c8.46-4.24,13.81-12.89,13.81-22.36V577.08C566.62,576.89,558.29,576.74,549.96,576.62z");
}

.r-card .svg-star {
    fill: hsl(39, 82%, 76%);
    transition: all 200ms ease-in;
}

.r-card:hover .svg-star {
    fill: var(--color-star);
    transition: all 200ms ease-out;
}

/* SERWIS PAGE */

.serwis-main-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1600px;
    width: 100%;
    padding-top: 6rem;
    gap: 4rem;
    box-sizing: border-box;
}

.serwis-form-item {
    width: 80%;
}

.serwis-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
    width: 100%;
}

.serwis-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.serwis-content p {
    font-size: 1.4rem;
    line-height: 2rem;
}

.serwis-content ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

.serwis-content li {
    width: 50%;
    font-size: 1.2rem;
    padding: 0;
    padding-bottom: .5rem;
    border-bottom: 1px solid gray;
}

.serwis-reqs {
    color: hsl(0, 0%, 25%);
    font-size: 1rem !important;
}

.serwis-form-wrapper {
    margin-top: 6rem;
}

.serwis-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Product lang toggle */

.lang-toggle {
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    right: 8rem;
}


/* PP page */
.pp-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 80svh;
    margin-top: 4rem;
    padding-left: 1rem;
}

.pp-title h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}


.pp-desc {
    display: flex;
    flex-direction: column;
    gap: rem;
    width: 60%;
}

.pp-desc p{
    font-size: 1.2rem;
}

.pp-desc h2 {
    font-size: 1.6rem;
}

.pp-table {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    border-collapse: collapse;
}

.pp-table tbody {
    width: 100%;
}

.pp-table tr {
    width: 100%;
}

.pp-table th,td {
    width: 30%;
}

.pp-table th:nth-of-type(3),td:nth-of-type(3){
    width: 40%;
}

.pp-table th,td {
    padding: 1rem .5rem;
    margin: 0;
    text-align: start;
    font-size: 1.2rem;
    border: 1px solid black;
}

.pp-table li {
    font-size: 1.2rem;
}

.pp-table ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 1rem;
    padding: 0;
}

.pp-table th {
    background-color: var(--pp-th);
}

.pp-table td {
    background-color: var(--pp-td);
}



/* Page Transition Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.193);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }
  
  .page-transition.fade-in {
    opacity: 1;
  }
  
  .page-transition.fade-out {
    opacity: 0;
  }
  
  .page-content {
    opacity: 0;
    transition: opacity 300ms ease;
  }
  
  .page-content.loaded {
    opacity: 1;
  }

@keyframes spin {
to {
    transform: rotate(360deg);
}
}

@keyframes yellow {
    0% {
        top: 200px;
        left: 100px;
        transform: scale(1);
    }

    30% {
        top: 300px;
        left: 150px;
        transform: scale(1.2);
    }

    60% {
        top: 100px;
        left: 200px;
        transform: scale(1.3);
    }

    100% {
        top: 200px;
        left: 100px;
        transform: scale(1);
    }
}

@keyframes green {
    0% {
        top: 80px;
        right: -20px;
        transform: scale(1.2);
    }

    30% {
        top: 300px;
        right: -20px;
        transform: scale(1);
    }

    60% {
        top: 200px;
        right: 100px;
        transform: scale(1);
    }

    100% {
        top: 80px;
        right: -20px;
        transform: scale(1.2);
    }
}

@keyframes red {
    0% {
        top: 250px;
        right: 0px;
        transform: scale(1);
    }

    30% {
        top: 150px;
        right: 150px;
        transform: scale(1.4);
    }

    60% {
        top: 250px;
        right: 100px;
        transform: scale(1);
    }

    100% {
        top: 250px;
        right: 0px;
        transform: scale(1);
    }
}


@media (max-width: 48rem) {

    .oferta-button {
        display: none !important;
        visibility: hidden !important;
    }

    .oferta-anchor {
        display: none !important;
    }

    .mobnav {
        display: block !important;
    }

    .mobile-nav-toggle {
        line-height: 1;
        display: flex;
        position: fixed;
        height: 2rem;
        z-index: 9999;
        aspect-ratio: 1;
        top: .8rem;
        right: .6rem;
        cursor: pointer;
        border: none;
        background-color: transparent;
        border-radius: 0.3em;
        fill: black;
    }

    .mobile-nav-toggle .line {
        transition: y 100ms ease-in 100ms, rotate 100ms ease-in, opacity 0ms 100ms;
        transform-origin: center;
        fill: black;
    }

    .mobile-nav-toggle[aria-expanded="true"] .line {
        transition: y 100ms ease-in, rotate 100ms ease-in 100ms, opacity 0ms 100ms;
        transform-origin: center;
        fill: black;
    }


    .mobile-nav-toggle[aria-expanded="true"] :is(.top, .bot) {
        y: 45%;
    }

    .mobile-nav-toggle[aria-expanded="true"] .top {
        rotate: 45deg;
    }

    .mobile-nav-toggle[aria-expanded="true"] .bot {
        rotate: -45deg;
    }

    .mobile-nav-toggle[aria-expanded="true"] .mid {
        opacity: 0;
    }

    .hamburger {
        width: 2rem;
    }

    .header-list {
        position: absolute;
        height: 28rem;
        width: 80svw;
        transform-origin: top;
        transform: translateY(-20rem);
        transition: transform 200ms;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0;
        align-items: start;
        background-color: var(--tile-colour);
        padding: 1rem 0;
        padding-top: 1.5rem;
        box-sizing: border-box;
        z-index: 4;
        border: 1px solid var(--header-border-color);
    }

    .header-list li {
        padding-left: 1rem;
    }

    .header-list[data-visible="true"] {
        transform: translateY(16rem);
    }

    .header-list a {
        font-size: 1.2rem;
    }

    .header-contact {
        position: initial;
    }

    .site-title-header h1 {
        padding: 0;
        padding-left: .4rem;
        font-size: 2.2rem;
    }

    .site-title-header {
        padding: .3rem;
        padding-top: 0;
    }

    .header-inner-wrapper {
        padding: 0;
    }

    .oferta-menu {
        display: none;
    }

    .title-card {
        max-width: 96svw;
    }

    .title-card-wrapper {
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        justify-items: center;
        gap: 1rem;
    }

    .title-card-content {
        padding: .5rem;
    }

    .title-card-list {
        padding: 3rem 0;
    }

    .title-card-list a {
        padding: .5rem;
    }

    .title-card-content h2 {
        line-height: 2.6rem;
    }

    .title-card-visual {
        margin: 0;
        max-width: 80%;
    }

    .title-card {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .main-page-additional-content {
        padding: 1rem;
    }

    .main-page-recommendations {
        padding: 1rem;
    }

    .r-wrapper {
        grid-template-columns: 1fr;
    }

    .recommendation-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        padding: 0 1rem;
        padding-top: 1rem;
        grid-template-columns: 1fr;
    }

    .footerlogos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .footersocial {
        align-items: start;
    }

    .contact-main-page-wrapper {
        grid-template-columns: 1fr;
        min-height: 140svh;
        gap: 1rem;
    }

    .contact-content {
        width: 100%;
    }

    .przedstawiciele-title h1 {
        grid-column: 1;
        font-size: 2.5rem;
        padding: 0;
        line-height: .5;
        margin-top: 0;
    }

    .przedstawiciele-content {
        max-width: 90svw;
        padding: 1svw;
    }

    .przedstawiciele-item a {
        font-size: 1rem;
    }

    .contact-map {
        min-height: 60svh;
        margin: 0;
        box-sizing: border-box;
        padding: 0 1rem;
        grid-column: 1;
        padding-bottom: 1rem;
    }

    .map-nav-div {
        left: 1.5rem;
    }

    .przedstawiciele-item {
        padding-bottom: 1rem;
        gap: .5rem;
    }

    .contact-info-wrapper {
        padding-bottom: 0;
    }

    .contact-title h1 {
        margin-left: 1svw;
        margin-top: 1rem;
        font-size: 2.5rem;
    }

    .mail-info {
        padding-bottom: .5rem;
    }

    .phone-info {
        padding-bottom: .5rem;
    }

    #the-map {
        height: 100%;
        margin: 0;
    }

    .odpowiedniki-table-wrapper {
        max-width: 100svw;
    }

    .odpowiedniki-table-main {
        max-width: 96svw;
        font-size: .6rem;
    }

    .odpowiedniki-table-main th {
        padding: .1rem;
        font-size: .6rem;
    }

    .odpowiedniki-table-main td {
        padding: .1rem;
        font-size: .6rem;
    }

    .odp-title-sequence {
        line-height: 2.5rem;
    }

    .odp-title-sequence h1 {
        font-size: 2.2rem;
        padding-left: .5rem;
    }

    .przedstawiciele-title {
        font-size: 1.8rem;
    }

    .przedstawiciele-content {
        padding-left: 1rem;
    }

    .o-nas-desc {
        grid-template-columns: 1fr;
        padding: .5rem;
    }

    .o-nas-title {
        padding-left: 1rem;
    }

    .on-desc-content {
        padding: 0;
        gap: 0;
    }

    .on-desc-content p {
        font-size: 1rem;
    }

    .on-vis-content {
        max-width: 96svw;
    }

    .order1 {
        order: -1;
    }

    #posts-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 90svw;
    }

    .filter-container {
        max-width: 96svw;
        height: fit-content;
        padding-left: .5rem;
    }

    .container__title {
        max-width: 90svw;
        padding: 0;
    }

    .oferta-secondary-categories {
        display: flex;
        flex-wrap: wrap;
        height: fit-content;
    }

    .oferta-secondary-categories a {
        width: auto;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .product-page-wrapper {
        max-width: 96svw;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .main-product-img-wrapper {
        max-width: 96svw;
    }

    .image-slider {
        max-width: 100%;
    }

    .image-slider img {
        max-width: 15svw;
    }

    .sim-prod-wrapper {
        grid-template-columns: 1fr;
        max-width: 96svw;
        margin-bottom: 2rem;
    }

    .similar-title {
        line-height: 2.5rem;
        margin-top: 0;
    }

    .title-wrapper h1 {
        line-height: 2.5rem;
        font-size: 2rem;
        margin-top: 0;
    }

    .form-wrapper {
        padding-left: 1rem;
        grid-area: auto;
    }

    .form-item {
        width: 90%;
    }

    .pp-wrapper {
        width: calc(100% - 1rem);
    }

    .pp-desc {
        width: 90svw;
    }

    .pp-title {
        width: 90svw;
    }

    .pp-table {
        width: 90svw;
    }

    .pp-table td {
        font-size: .8rem;
        padding: .2rem;
    }

    .pp-table th {
        font-size: .8rem;
        padding: .2rem;
    }


    .pp-table li {
        font-size: .8rem;
    }

    /* Serwis mobile */
    .serwis-form-wrapper {
        margin-top: 2rem;
    }

    /* Blobs mobile */
    .blob-cont {
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: -2;
        height: 90%;
        max-width: 500px;
        width: 90%;
        position: absolute;
        right: 5em;
    }


    .blob {
        border-radius: 100px;
        filter: blur(40px);
        opacity: 0.7;
    }

    .yellow {
        background-color: var(--yellow);
        position: absolute;
        top: 100px;
        left: 50px;
        height: 100px;
        width: 100px;

        animation: yellow 12s infinite ease;
    }

    .green {
        background-color: var(--green);
        position: absolute;
        top: 40px;
        right: -10px;
        height: 100px;
        width: 125px;

        animation: green 12s infinite ease;
    }

    .red {
        background-color: var(--red);
        position: absolute;
        right: 0;
        top: 150px;
        height: 125px;
        width: 100px;

        animation: red 12s infinite linear;
    }

    @keyframes yellow {
        0% {
            top: 200px;
            left: 50px;
            transform: scale(1);
        }

        30% {
            top: 300px;
            left: 75px;
            transform: scale(1.2);
        }

        60% {
            top: 100px;
            left: 100px;
            transform: scale(1.3);
        }

        100% {
            top: 200px;
            left: 50px;
            transform: scale(1);
        }
    }

    @keyframes green {
        0% {
            top: 80px;
            right: -10px;
            transform: scale(1.2);
        }

        30% {
            top: 300px;
            right: -10px;
            transform: scale(1);
        }

        60% {
            top: 200px;
            right: 50px;
            transform: scale(1);
        }

        100% {
            top: 80px;
            right: -10px;
            transform: scale(1.2);
        }
    }

    @keyframes red {
        0% {
            top: 250px;
            right: 0px;
            transform: scale(1);
        }

        30% {
            top: 150px;
            right: 75px;
            transform: scale(1.4);
        }

        60% {
            top: 250px;
            right: 50px;
            transform: scale(1);
        }

        100% {
            top: 250px;
            right: 0px;
            transform: scale(1);
        }
    }
}

@media (max-width: 64rem) {
    .serwis-main-page-wrapper {
        grid-template-columns: 1fr;
        padding: 1rem;
        max-width: 96svw;
        padding-top: 6rem;
    }

    .serwis-content li{
        width: 100%;
    }
}


@media (min-width: 44rem) {
    .main-page-wrapper {
        max-width: 44rem;
    }

    .similar-title {
        max-width: 44rem;
    }

    .sim-prod-wrapper{
        max-width: 44rem;
    }

    .contact-main-page-wrapper {
        max-width: 44rem;
    }

    .footer-wrapper {
        max-width: 44rem;
        grid-template-columns: 1fr 1fr;
    }

    .footerlogos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .footersocial {
        align-items: start;
    }

    .footercert {
        align-items: start;
    }

    .product-page-wrapper {
        max-width: 44rem;
    }

    .serwis-main-page-wrapper {
        max-width: 44rem;
    }
}

@media (min-width: 64rem) {
    .main-page-wrapper {
        max-width: 60rem;
    }

    .contact-main-page-wrapper {
        max-width: 60rem;
    }


    .footer-wrapper {
        max-width: 60rem;
        grid-template-columns: 1fr 1fr;
    }

    .product-page-wrapper {
        max-width: 60rem;
    }

    .similar-title {
        max-width: 60rem;
    }

    .sim-prod-wrapper{
        max-width: 60rem;
    }

    .serwis-main-page-wrapper {
        max-width: 60rem;
    }
}

@media (min-width: 84rem) {
    .main-page-wrapper {
        max-width: 80rem;
    }

    .contact-main-page-wrapper {
        max-width: 80rem;
    }

    .footer-wrapper {
        max-width: 80rem;
    }

    .footerlogos {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .product-page-wrapper {
        max-width: 80rem;
    }

    .similar-title {
        max-width: 80rem;
    }

    .sim-prod-wrapper{
        max-width: 80rem;
    }

    .serwis-main-page-wrapper {
        max-width: 80rem;
    }
}

@media (min-width: 100rem) {
    .main-page-wrapper {
        max-width: 96rem;
    }

    .contact-main-page-wrapper {
        max-width: 96rem;
    }

    .footer-wrapper {
        max-width: 96rem;
    }

    .product-page-wrapper {
        max-width: 96rem;
    }
    .similar-title {
        max-width: 96rem;
    }

    .sim-prod-wrapper{
        max-width: 96rem;
    }

    .serwis-main-page-wrapper {
        max-width: 96rem;
    }
}