/* TODO: */
/* line-height: 1.34em; - sprawdź czy jest globalny */

/*Theme variables */
:root {
    --gold: #FFBD3E;
    --hovGold: #e4a737;
    --yellow: #FFD738;
    --hovYellow: #ccac2c;
    --purple: #7B53FF;
    --gray: #B8B8B8;
    --blue: #0173BC;
    --blueFb: #3e5891;
    --hovBlueFb: #304470;
    --grayBg: #F3F2F2;
    --red: #EE214F;
    --hovRed: #c51a3f;
    --black: #000;
    --white: #fff;
    --hovWhite: #cecece;
    --menuShadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
}

/* Forms */
/* .wpcf7-not-valid-tip, .wpcf7-response-output {
    display: none;
} */

:focus {
    outline: none;
}

/* HTML styles */
html {
    scroll-behavior: smooth;
}

/* Body styles */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    position: relative;
}

::-moz-selection {
    background-color: var(--yellow);
    color: var(--black);
}

::selection {
    background-color: var(--yellow);
    color: var(--black);
}

/* Global classes */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

h2,
h3 {
    font-size: 2.25em;
}

a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out;
}

a:hover {
    color: var(--yellow);
}

a.anchor {
    display: block;
    position: relative;
    /* top: -120px; */
    visibility: hidden;
}

input {
    font-family: 'Open Sans', sans-serif;
}

input:not([type="submit"]) {
    border: 1px solid var(--white);
    -webkit-transition: border .3s ease-out;
    -o-transition: border .3s ease-out;
    transition: border .3s ease-out;
}

input[type="submit"] {
    -webkit-transition: background-color .3s ease-out;
    -o-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
}

input[type="submit"]:hover {
    background-color: var(--hovYellow) !important;
}

button.closeNav {
    display: none;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.custom-btn:not(li),
.custom-btn a {
    background-color: var(--yellow);
    color: var(--black);
    -webkit-transition: background-color .3s ease-out;
    -o-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
    border-radius: 25px;
    font-weight: 600;
    text-shadow: none;
    padding: 7px 54px;
}

.custom-btn:not(li):hover,
.custom-btn a:hover {
    background-color: var(--hovYellow);
    color: var(--black);
}

/* header */
body.admin-bar header {
    margin-top: 32px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 10;
    -webkit-transition: background-color .3s ease-out;
    -o-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
    border-top: 5px solid var(--yellow);
}

header.compressed {
    background-color: rgba(0, 0, 0, 0.5);
}

header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .site-branding {
    max-width: 186px;
    -webkit-transition: max-width .3s ease-out;
    -o-transition: max-width .3s ease-out;
    transition: max-width .3s ease-out;
}

header.compressed .site-branding {
    max-width: 150px;
}

header .site-branding img {
    padding: 10px 0;
}

header nav.main-navigation {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

header .main-navigation li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header nav a {
    font-size: 1.1875em;
    color: var(--white);
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out;
    text-shadow: var(--menuShadow);
    padding: 0 25px;
    font-weight: 300;
}

header nav a:hover {
    color: var(--yellow);
}

header nav a:visited {
    color: var(--white);
}

header nav .custom-btn a {
    -webkit-box-shadow: 2px 2px 9px 0px rgb(0 0 0 / 70%);
    box-shadow: 2px 2px 9px 0px rgb(0 0 0 / 70%);
}

header nav .custom-btn a:visited {
    color: var(--black);
}

/* Hero banner */
.hero-banner {
    max-width: 100vw;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
}

.hero-banner .wrapper {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    overflow-y: hidden;
}

.hero-banner .wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-banner h1 {
    font-size: 3.75em;
    margin: 3.4em 0 20px 0;
}

.hero-banner h1 span {
    background-color: var(--yellow);
    color: var(--black);
}

.hero-banner p {
    margin: 0.9em 0;
    font-size: 1.375em;
    padding-right: 7vw;
    font-weight: 400;
}

.hero-banner p.last {
    padding-bottom: 3em;
}

.hero-banner .buttons-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.5em;
}

.hero-banner .buttons-wrapper a {
    padding: 0.45em 3.04em;
    border-radius: 50px;
    font-size: 1.375em;
    font-weight: 600;
}

.hero-banner .buttons-wrapper a:nth-child(2) {
    background-color: var(--white);
    font-weight: 400;
}

.hero-banner .buttons-wrapper a:nth-child(2):hover {
    background-color: var(--hovWhite);
}

/* Sekcja 1 */
.plusy {
    padding: 5em 0;
}

a.anchor#prowadzenie-fanpage {
    top: -120px;
}

.plusy h2,
.plusy p {
    text-align: center;
}

.plusy h2 {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 1.53em;
    line-height: 1.34;
}

.plusy p {
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Open Sans', sans-serif;
    font-size: 2.1875em;
    letter-spacing: 0.1px;
    line-height: 1.34;
    margin-top: 3.43em;
    margin-bottom: 3.05em;
}

.plusy h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 45px;
    height: 5px;
    background-color: var(--yellow);
}

.plusy ul {
    max-width: 660px;
    margin: 0 auto;
    list-style-type: none;
    font-size: 1.4em;
    padding-left: 5em;
}

.plusy ul li {
    line-height: 1.33em;
    margin-bottom: 2em;
    position: relative;
}

.plusy ul li::before {
    content: '';
    position: absolute;
    left: -5em;
    top: -0.3em;
    width: 2.29em;
    height: 2.29em;
    background-image: url('/wp-content/themes/prowadz-fanpage/images/arrow.svg');
    background-size: cover;
}

.plusy ul li:last-child {
    margin-bottom: 0;
}

/* Sekcja 2 */
.zostaw-to-nam {
    background-color: var(--grayBg);
    text-align: center;
    padding: 8.125em 0;
    font-family: 'Playfair Display', serif;
}

.zostaw-to-nam .container {
    max-width: 950px;
}

.zostaw-to-nam h2 {
    font-size: 3.75em;
    font-weight: 400;
    color: var(--black);
    padding-bottom: 1.5em;
    position: relative;
    margin-bottom: 1.58em;
}

.zostaw-to-nam h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 45px;
    height: 5px;
    background-color: var(--yellow);
}

.zostaw-to-nam p {
    font-size: 2.25em;
    line-height: 1.28em;
    font-family: 'Open Sans', sans-serif;
}

.zostaw-to-nam p.p1 {
    margin-bottom: 3.33em;
}

.zostaw-to-nam p.p2 {
    margin-bottom: 2.78em;
    padding: 0 1.5em;
}

.zostaw-to-nam span {
    background-color: var(--yellow);
}

.zostaw-to-nam .span-padding span {
    padding: 0.16em 0.42em;
}

/* Sekcja 3 */
.infografiki {
    padding: 6.25em 0;
    text-align: center;
}

.infografiki .container {
    max-width: 875px;
}

.infografiki .container h3 {
    padding-bottom: 1.57em;
    margin-bottom: 2.63em;
    position: relative;
}

.infografiki h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 55px;
    height: 5px;
    background-color: var(--yellow);
}

.infografiki .wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-row-align: center;
    align-self: center;
}

.infografiki .blok {
    max-width: 190px;
    width: 100%;
    margin: 0 auto;
}

.infografiki .blok img {
    max-width: 132px;
}

.infografiki .blok p {
    font-size: 1.5em;
    font-weight: 300;
    margin: 0.7em 0 2.92em 0;
}

.infografiki .blok p b {
    font-weight: 600;
}

.infografiki a {
    font-size: 1.5em;
    font-weight: 600;
}

/* Sekcja 4 */
.image-section {
    position: relative;
    padding: 18.125em 0 20.625em 0;
    color: var(--white);
}

.image-section .wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -o-object-fit: contain;
    object-fit: contain;
    overflow-y: hidden;
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.image-section .wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.image-section .container {
    max-width: 1030px;
}

.image-section h2 {
    text-align: center;
    margin-bottom: 4.44em;
}

.image-section ul {
    font-size: 1.5em;
    font-weight: 300;
    list-style-type: none;
    padding-left: 2.5em;
    margin: 0;
}

.image-section ul li {
    margin-bottom: 1.625em;
    position: relative;
}

.image-section ul li::before {
    content: '';
    width: 1.33em;
    height: 1.33em;
    left: -2.5em;
    position: absolute;
    background-image: url('/wp-content/themes/prowadz-fanpage/images/arrow.svg');
    background-size: cover;
}

.image-section ul b {
    font-weight: 600;
}

/* Sekcja 5 */
.jak-dzialamy {
    text-align: center;
    padding: 16.875em 0 21.875em 0;
}

a.anchor#jak-dzialamy {
    top: -120px;
}

.jak-dzialamy h3 {
    padding-bottom: 1.51em;
    margin-bottom: 4.2em;
    position: relative;
}

.jak-dzialamy h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 55px;
    height: 5px;
    background-color: var(--yellow);
}

.jak-dzialamy .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 6.25em;
}

.jak-dzialamy .wrapper .blok {
    max-width: 250px;
    text-align: left;
    position: relative;
}

.jak-dzialamy .wrapper h4 {
    font-size: 1.875em;
    padding-bottom: 0.53em;
    margin-bottom: 1.1em;
    position: relative;
}

.jak-dzialamy .wrapper h4::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 2px;
    background-color: var(--grayBg);
    content: '';
}

.jak-dzialamy .wrapper .blok p {
    font-size: 1.25em;
    font-weight: 300;
}

.jak-dzialamy .wrapper .blok span {
    position: absolute;
    font-family: 'Playfair Display';
    font-size: 14.375em;
    color: var(--grayBg);
    z-index: -999;
    left: -0.37em;
    top: -0.29em;
}

/* Sekcja 6 */
.poradnik {
    position: relative;
    display: none;
}

a.anchor#poradnik {
    top: -240px;
}

.poradnik .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
    z-index: -99;
}

.poradnik .wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.poradnik .container {
    text-align: center;
    padding: 29em 0 15.375em 0;
    color: var(--white);
}

.poradnik .container h2 {
    font-size: 3.75em;
    font-weight: normal;
    margin-bottom: 0.87em;
}

.poradnik .container p {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 2.5em;
}

.data {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.poradnik .container form {
    max-width: 620px;
    margin: 0 auto;
}

.poradnik .container form p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
}

.poradnik .container input {
    max-width: 258px;
    width: 100%;
    font-size: 22px;
    padding: 0.65em 0;
    border-radius: 50px;
    border: none;
}

.poradnik .container input:not([type="submit"]) {
    text-indent: 1.19em;
    margin: 0 1rem;
}

.poradnik .container input[type="submit"] {
    background-color: var(--yellow);
    cursor: pointer;
    font-weight: 600;
}

.poradnik .container span.ajax-loader {
    display: none;
}

/* Sekcja 7 */
.pakiety {
    padding: 7.5em 0 5em 0;
    text-align: center;
    background-color: #e5e5e5;
}

.pakiety h2 {
    padding-bottom: 1.51em;
    /* margin-bottom: 4.28em; */
    /* TODO: Black Friday */
    margin-bottom: 78px;
    position: relative;
}

.pakiety h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 55px;
    height: 5px;
    background-color: var(--yellow);
}

.pakiety .wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pakiety .karta {
    /* max-width: 380px; */
    width: 100%;
    background-color: var(--white);
    position: relative;
    border-radius: 69px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    /* padding: 0 1.625em 1.75em 1.625em; */
    padding: 0 0 50px 0;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.pakiety .karta.yellow {
    background-color: #f1f1f1;
}

.pakiety .karta:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.pakiety .karta img {
    position: absolute;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pakiety .karta h2 {
    font-family: 'Playfair Display';
    font-size: 24px;
    line-height: 32px;
    padding-top: 54px;
    padding-bottom: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

.pakiety .karta h2::after {
    height: 2px;
    background: #DBDBDB;
    max-width: 36px;
    width: 100%;
}

.pakiety .karta h3 {
    font-size: 2.875em;
    margin: 0 .66em 0;
}

.pakiety .karta h4 {
    /* color: var(--blue); */
    font-size: 18px;
    line-height: 25px;
    padding-top: 5px;
    padding-bottom: 1.42em;
    margin: 0 0 1.42em 0;
    position: relative;
    font-weight: 500;
    font-family: 'Open Sans';
}

.pakiety .karta.blue h4 {
    color: var(--blue);
}

.pakiety .karta.red h4 {
    color: var(--red);
}

.pakiety .karta.yellow h4 {
    color: var(--gold);
}

.pakiety .karta h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 165px;
    height: 2px;
    background-color: #DBDBDB;
}

.pakiety .opis-wrapper {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.1px;
    color: #5B5B5B;
    max-width: 283px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.pakiety .karta.blue .opis-wrapper,
.pakiety .karta.red .opis-wrapper {
    margin-bottom: 85px;
}

.pakiety .opis-wrapper p {
    margin: 0;
    margin-bottom: 5px;
}

.pakiety .opis-wrapper p strong {
    color: #000;
    max-width: 185px;
    margin: 0 auto;
    display: block;
}

.pakiety .karta .podpunkt-wrapper {
    border-top: 2px solid #DBDBDB;
}

.pakiety .karta .podpunkt-wrapper.last {
    border-bottom: 2px solid #DBDBDB;
    margin-bottom: 55px;
}

.pakiety .karta .podpunkt-wrapper.first {
    margin-top: 40px;
    min-height: 345px;
}

.pakiety .karta .podpunkt-wrapper.second {
    min-height: 185px;
}

.pakiety .karta:not(.blue) .podpunkt-wrapper.third {
    min-height: 200px;
}

.pakiety .karta:not(.yellow) .podpunkt-wrapper.fourth {
    min-height: 230px;
}

.pakiety .karta .podpunkt-wrapper ul {
    padding: 20px 20px 0 60px;
}

.pakiety .karta ul {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 1.3em 0;
    text-align: left;
    padding-left: 2.65em;
    padding-top: 34px;
}

.pakiety .karta li {
    margin-bottom: 13px;
    position: relative;
    line-height: 1.35em;
}

.pakiety .karta li::before {
    content: '';
    width: 19px;
    height: 19px;
    position: absolute;
    top: 3px;
    left: -30px;
    background-size: cover;
}

.pakiety .karta.blue li::before {
    background-image: url('/wp-content/themes/prowadz-fanpage/images/bluearrow.svg');
}

.pakiety .karta.yellow li::before {
    background-image: url('/wp-content/themes/prowadz-fanpage/images/arrow.svg');
}

.pakiety .karta.red li::before {
    background-image: url('/wp-content/themes/prowadz-fanpage/images/redarrow.svg');
}

.pakiety .karta span {
    font-weight: 700;
}

.pakiety .karta.blue span {
    color: var(--blueFb);
}

.pakiety .karta.yellow span {
    color: var(--gold);
}

.pakiety .karta.red span {
    color: var(--red);
}

.pakiety .karta .custom-btn {
    color: #fff;
    font-weight: 600;
    font-size: 1.1875em;
}

.pakiety .karta.blue .custom-btn {
    background-color: var(--blueFb);
}

.pakiety .karta.blue .custom-btn:hover {
    background-color: var(--hovBlueFb);
}

.pakiety .karta.yellow .custom-btn {
    background-color: var(--gold);
}

.pakiety .karta.yellow .custom-btn:hover {
    background-color: var(--hovGold);
}

.pakiety .karta.red .custom-btn {
    background-color: var(--red);
}

.pakiety .karta.red .custom-btn:hover {
    background-color: var(--hovRed);
}


/* Black Friday */
.pakiety .black-friday {
    margin-bottom: 110px;
    text-align: center;
}

.pakiety .black-friday h3 {
    font-size: 35px;
    line-height: 54px;
    font-weight: 400;
    margin-bottom: 35px;
}

.pakiety .black-friday h3 span {
    position: relative;
    font-weight: 700;
    font-style: italic;
    z-index: 10;
    padding: 0 25px 0 10px;
}

.pakiety .black-friday h3 span::before {
    content: url(/wp-content/themes/prowadz-fanpage/vec.svg);
    position: absolute;
    width: 103px;
    height: 103px;
    z-index: -1;
    right: 50%;
    bottom: 50%;
    transform: translate(49%, 54%);
}

.pakiety .black-friday p {
    font-weight: 300;
    font-size: 24px;
    line-height: 33px;
    margin: 0;
}

.pakiety .black-friday p strong {
    font-weight: 600;
}

.pakiety .black-friday p.s-line {
    margin-top: 15px;
}

.pakiety .black-friday p.s-line span {
    color: #FF7A00;
    font-size: 36px;
    /* line-height: 49px; */
    font-weight: 600;
}

.pakiety .black-friday p.s-line sup {
    position: relative;
    color: #888;
    top: -1.1em;
    font-size: 0.8em;
}

.pakiety .black-friday p.s-line sup:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    height: 2px;
    width: 30px;
    background: #FF7A00;
}

.pakiety .black-friday .timer-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 695px;
    margin: 0 auto;
    margin-top: 45px;
}

.pakiety .black-friday .time-block {
    background: #FF7A00;
    border-radius: 20px;
    width: 146px;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 11px;
}

.pakiety .black-friday .single-countdown span {
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
}

.pakiety .karta span.cross {
    color: #DBDBDB !important;
    position: relative;
    font-size: 36px;
}

.pakiety .karta span.cross::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 2px;
    background: #EE214F;
    left: -10%;
    bottom: 33%;
    transform: rotate(-15.64deg);
}

/* Sekcja 9 */
.uslugi {
    padding: 100px 0 200px 0;
}

.uslugi h2 {
    text-align: center;
    margin: 0 auto;
    position: relative;
    padding-bottom: 1.53em;
    line-height: 1.34;
    margin-bottom: 160px;
}

.uslugi h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 45px;
    height: 5px;
    background-color: var(--yellow);
}

.uslugi .uslugi-container {
    background: #f1f1f1;
    border-radius: 50px;
    font-size: 1.125em;
    padding: 20px 63px;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    margin-bottom: 110px;
}

.uslugi .uslugi-container:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.uslugi .uslugi-container .row {
    padding: 22px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.uslugi .uslugi-container .row:not(:last-child) {
    border-bottom: 2px solid #DBDBDB;
}

.uslugi .uslugi-container .row .col.second {
    font-family: 'Playfair Display';
    font-size: 1.11em;
    letter-spacing: 0.1px;
    font-weight: 500;
    white-space: nowrap;
    padding-left: 15px;
}

.uslugi a.custom-btn {
    font-size: 1.5em;
    font-weight: 600;
    min-width: 258px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
}

/* Sekcja 8 */
.kontakt {
    position: relative;
    text-align: center;
    color: var(--white);
}

a.anchor#kontakt {
    top: -140px;
}

.kontakt .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
    z-index: -99;
}

.kontakt .wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.kontakt .container {
    padding: 21.875em 0 12.9375em 0;
}

.kontakt h2 {
    font-size: 3.75em;
    font-weight: 500;
    margin-bottom: 1.37em;
}

.kontakt form {
    max-width: 510px;
    width: 100%;
    margin: 0 auto;
}

.kontakt form p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Sekcja 10 */

.social-section {
    /* background-color: var(--grayBg); */
    text-align: center;
    padding: 8.125em 0;
    font-family: 'Playfair Display', serif;
}

.social-section .container {
    max-width: 950px;
}

.social-section h2 {
    font-size: 2.75em;
    font-weight: 400;
    color: var(--black);
    padding-bottom: 1.5em;
    position: relative;
    margin-bottom: 1.58em;
}

.social-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 45px;
    height: 5px;
    background-color: var(--yellow);
}

.social-section p {
    font-size: 2em;
    line-height: 1.28em;
    font-family: 'Open Sans', sans-serif;
}

.social-section p.p1 {
    margin-bottom: 3.33em;
}

.social-section p.p2 {
    margin-bottom: 2.78em;
    padding: 0 1.5em;
}

.social-section span {
    background-color: var(--yellow);
}

.social-section .span-padding span {
    padding: 0.16em 0.42em;
}

/* .kontakt form span {
    width: 100%;
} */

/* .kontakt form p br, .kontakt form p .ajax-loader {
    display: none;
} */

.kontakt form input {
    font-size: 1.375em;
    color: var(--black);
    width: 100%;
    border: none;
    font-weight: 300;
    margin-top: 15px;
    padding: .6em 0;
    border-radius: 50px;
}

.kontakt form input:not([type="submit"]) {
    text-indent: 2em;
}

.kontakt form input[type="submit"] {
    background-color: var(--yellow);
    max-width: 258px;
    font-weight: 600;
    margin-top: 35px;
    cursor: pointer;
}

.kontakt form input::-webkit-input-placeholder {
    color: var(--black);
    font-weight: 300;
}

.kontakt form input::-moz-placeholder {
    color: var(--black);
    font-weight: 300;
}

.kontakt form input:-ms-input-placeholder {
    color: var(--black);
    font-weight: 300;
}

.kontakt form input::-ms-input-placeholder {
    color: var(--black);
    font-weight: 300;
}

.kontakt form input::placeholder {
    color: var(--black);
    font-weight: 300;
}

/* Strona kontaktu */
.page-id-111 header .menu-toggle,
.page-id-111 #site-navigation {
    display: none;
}

.page-id-111 section {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    position: relative;
}

.page-id-111 .wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
    z-index: -999;
}

.page-id-111 .wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-id-111 section .container {
    padding-top: 300px;
    padding-bottom: 100px;
    text-align: center;
    color: var(--white);
}

.page-id-111 section .container h1 {
    z-index: 99;
    font-size: 3.75em;
    margin-bottom: 40px;
}

.page-id-111 section .container form {
    max-width: 258px;
    width: 100%;
    margin: 0 auto;
}

.page-id-111 section .container input {
    max-width: 258px;
    width: 100%;
    border: none;
    font-size: 1.375em;
    border-radius: 50px;
}

.page-id-111 section .container input#pakiet {
    visibility: hidden;
    position: absolute;
}

.page-id-111 section .container input:not([type="submit"]) {
    margin-bottom: 15px;
    text-indent: 20px;
    color: var(--black);
    padding: 8px 0;
}

.page-id-111 section .container input:not([type="submit"])::-webkit-input-placeholder {
    color: var(--black);
}

.page-id-111 section .container input:not([type="submit"])::-moz-placeholder {
    color: var(--black);
}

.page-id-111 section .container input:not([type="submit"]):-ms-input-placeholder {
    color: var(--black);
}

.page-id-111 section .container input:not([type="submit"])::-ms-input-placeholder {
    color: var(--black);
}

.page-id-111 section .container input:not([type="submit"])::placeholder {
    color: var(--black);
}

.page-id-111 .wpcf7 form.sent .wpcf7-response-output {
    margin-bottom: 0;
}

.page-id-111 section .container input[type="submit"] {
    background-color: var(--yellow);
    font-weight: 600;
    padding: 12px 0;
    cursor: pointer;
}

/* Footer */
footer.site-footer {
    position: relative;
}

footer.site-footer .wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

footer.site-footer .wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

footer.site-footer .container {
    padding-top: 50px;
}

footer.site-footer .row.first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 44px;
    border-bottom: 1px solid #A2A2A2;
}

footer.site-footer .footer-paragraf-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 56px;
    margin-bottom: 56px;
}

footer.site-footer .footer-paragraf-wrap .col.left {
    width: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

footer.site-footer .footer-paragraf-wrap .col.right p {
    margin: 0;
    color: #fff;
    font-size: 1.25em;
    line-height: 1.35em;
    font-weight: 400;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out;
}

footer.site-footer .footer-paragraf-wrap .col.right a:hover p {
    color: #FFBD3E;
}

footer.site-footer .row.first img {
    max-width: 253px;
    margin-bottom: 128px;
}

footer.site-footer .row.first h2 {
    padding-top: 240px;
    color: #fff;
    font-size: 16px;
    font-size: 3em;
    margin-bottom: 60px;
}

footer.site-footer .row.first .social-media-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

footer.site-footer .row.second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 46px;
    padding-bottom: 100px;
}

footer.site-footer .row.second .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer.site-footer .row.second p {
    margin: 0;
    color: rgba(162, 162, 162, 1);
    font-size: 1.25em;
    line-height: 1.35em;
}

footer.site-footer .row.second p a {
    color: #FFBD3E;
}

footer.site-footer .row.second p.p1 a:first-child {
    color: rgba(162, 162, 162, 1);
    font-weight: 400;
}

@media screen and (max-width: 1290px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-banner h1 {
        font-size: 3.35em;
    }

    .hero-banner p {
        margin: 0.8em 0;
        font-size: 1.335em;
    }

    .hero-banner p.last {
        padding-bottom: 1.8em;
    }

    .hero-banner .buttons-wrapper a {
        font-size: 1.275em;
    }

    .plusy h2 {
        padding-bottom: 1.2em;
    }

    .plusy p {
        margin-top: 2.5em;
        font-size: 2em;
    }

    .jak-dzialamy .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    footer.site-footer .container {
        padding-top: 100px;
    }

    footer.site-footer .row.first img {
        margin-bottom: 85px;
    }

    footer.site-footer .row.second {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    footer.site-footer .row.first h2 {
        font-size: 2.4em;
        margin-bottom: 45px;
        padding-top: 10px;
    }

    footer.site-footer .row.first {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 1180px) {
    .pakiety .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 110px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .pakiety .karta {
        max-width: 360px;
    }

    .pakiety .karta .podpunkt-wrapper.first,
    .pakiety .karta .podpunkt-wrapper.second,
    .pakiety .karta:not(.blue) .podpunkt-wrapper.third {
        min-height: unset;
    }
}

@media screen and (max-width: 1080px) {
    header nav a {
        padding: 0 16px;
    }
}

/* Hamburger menu */
@media screen and (max-width: 980px) {

    /* .menu-toggle,
    .main-navigation.toggled ul {
        display: block;
    }

    nav#site-navigation {
        max-width: 250px;
        width: 100%;
        height: 100vh;
        position: absolute;
        right: -250px;
        top: 0;
        background-color: var(--hovYellow);
        -webkit-transition: right .3s ease-out;
        -o-transition: right .3s ease-out;
        transition: right .3s ease-out;
        z-index: 99999;
    }

    nav#site-navigation.expanded {
        right: 0;
    }

    header .menu-toggle {
        background-color: transparent;
        border: none;
        font-size: 2.5em;
        color: var(--white);
    }

    .nav-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        padding-top: 80px;
        color: var(--white);
    }

    .nav-wrapper button {
        position: absolute;
        right: 15px;
        font-size: 2em;
        top: 15px;
        border: none;
        background: transparent;
        color: var(--white);
    }

    .main-navigation ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
        padding-left: 10px;
        font-size: 16px;
    }

    button.closeNav {
        display: block;
    } */

    a.custom-btn {
        margin-left: 15px;
    }

    .page-id-111 section .container {
        padding-top: 150px;
    }

    .page-id-111 section .container h1 {
        font-size: 2.5em;
        margin-bottom: 50px;
    }

    .page-id-111 section .container input {
        font-size: 1.175em;
    }

    .page-id-111 section .container input:not([type="submit"]) {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 950px) {
    .poradnik .container {
        padding: 3em 20px 2.975em 20px;
    }

    .poradnik .container h2 {
        font-size: 2.5em;
    }

    .poradnik .container p {
        font-size: 1.2em;
    }

    .poradnik .container input {
        max-width: 210px;
        font-size: 16px;
    }

    .poradnik .container form {
        max-width: 450px;
    }

    footer.site-footer {
        font-size: 16px;
    }

    footer.site-footer .row.second p {
        font-size: 1em;
    }

    footer.site-footer .footer-paragraf-wrap .col.right p {
        font-size: 1em;
    }

    /* footer.site-footer .footer-paragraf-wrap .col.right {
        padding-top: 5px;
    } */

    footer.site-footer .footer-paragraf-wrap .col.left {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    footer.site-footer .footer-paragraf-wrap .col.left svg {
        width: 35px;
        height: 40px;
    }

    footer.site-footer .row.first img {
        max-width: 210px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }

    footer.site-footer .row.first h2 {
        font-size: 2em;
    }

    footer.site-footer .row.first .social-media-wrapper svg {
        width: 40px;
    }

    footer.site-footer .footer-paragraf-wrap {
        gap: 15px;
    }
}

@media screen and (max-width: 920px) {
    .infografiki .wrapper {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .plusy h2 {
        font-size: 1.8em;
    }

    .plusy p {
        margin-top: 2.2em;
        font-size: 1.6em;
    }

    .plusy ul {
        padding-left: 3.5em;
    }

    .plusy ul li {
        font-size: .85em;
    }

    .plusy ul li::before {
        top: 0;
        left: -3.5em;
    }

    .zostaw-to-nam h2 {
        font-size: 2.2em;
        padding-bottom: 1em;
        margin-bottom: 1.28em;
    }

    .zostaw-to-nam {
        padding: 4.125em 0 2.125em;
    }

    .zostaw-to-nam p.p1 {
        font-size: 1.8em;
        margin-bottom: 2.7em;
    }

    .zostaw-to-nam p.p2 {
        font-size: 1.8em;
        margin-bottom: 2.18em;
    }

    .zostaw-to-nam .span-padding span {
        font-size: .8em;
        padding: 0.12em 0.22em;
    }

    .social-section h2 {
        font-size: 2.2em;
        padding-bottom: 1em;
        margin-bottom: 1.28em;
    }

    .social-section {
        padding: 4.125em 0 2.125em;
    }

    .social-section p {
        font-size: 1.8em;
        margin-bottom: 2.7em;
    }

    .social-section p {
        font-size: 1.8em;
        margin-bottom: 2.18em;
    }

    .social-section .span-padding span {
        font-size: .8em;
        padding: 0.12em 0.22em;
    }

    .kontakt .container {
        padding: 5.875em 0 5.9375em 0;
    }

    .kontakt h2 {
        font-size: 2.4em;
    }

    .kontakt form {
        max-width: 350px;
        margin-bottom: 25px;
    }

    .kontakt form input {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .kontakt form input[type="submit"] {
        max-width: 200px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 850px) {
    .uslugi {
        padding: 70px 0 135px 0;
    }

    .uslugi h2 {
        margin-bottom: 90px;
    }
}

@media screen and (max-width: 680px) {
    footer.site-footer .row.second {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    footer.site-footer .row.second .col {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .hero-banner .buttons-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1em;
        margin: 0 auto;
    }

    .hero-banner .buttons-wrapper a {
        font-size: 1.375em;
    }

    .poradnik .container h2 {
        font-size: 2em;
    }

    .poradnik .container p {
        font-size: 1em;
    }

    .poradnik .container input {
        max-width: 270px;
        font-size: 17px;
    }

    .poradnik .container form {
        max-width: 370px;
    }

    .pakiety .black-friday .timer-wrapper {
        flex-wrap: nowrap !important;
    }

    .pakiety .black-friday .time-block {
        width: 69px;
        height: 69px;
        font-size: 40px;
    }
}

@media screen and (max-width: 615px) {
    body {
        font-size: 15px;
    }

    .hero-banner h1 {
        font-size: 2.8em;
        margin: 2.6em 0 20px 0;
    }

    .kontakt form input {
        margin-top: 0px;
    }

    .hero-banner p {
        font-size: 1.2em;
    }

    .hero-banner p.last {
        padding-bottom: 1.3em;
    }

    .zostaw-to-nam .span-padding span {
        line-height: 1em;
        padding: 0.14em 0.22em;
    }

    .infografiki {
        padding: 2.125em 0 4.125em;
    }

    .infografiki .blok p {
        font-size: 1.3em;
    }

    .infografiki a {
        font-size: 1.3em;
    }

    .jak-dzialamy {
        padding: 2em 0 3em 0;
    }

    .jak-dzialamy .wrapper {
        gap: 0.55em;
        padding-left: 1em;
    }

    .jak-dzialamy h3 {
        padding-bottom: 1em;
        margin-bottom: 1.2em;
    }

    .pakiety {
        padding: 2.5em 0 3em 0;
    }

    .pakiety h2 {
        padding-bottom: 1em;
        margin-bottom: 2.18em;
    }

    .image-section {
        padding: 3.125em 0 3.725em 0;
    }

    .image-section h2 {
        margin-bottom: 1.64em;
    }

    .image-section ul li {
        margin-bottom: 1.225em;
        font-size: .8em;
    }

    .data {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 550px) {
    .hero-banner h1 {
        font-size: 2.7em;
        margin: 2.8em 0 20px 0;
    }

    .hero-banner p {
        font-size: 1.1em;
    }

    .hero-banner p.last {
        padding-bottom: 1em;
    }

    .infografiki .wrapper {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    .uslugi {
        padding: 70px 0 67px 0;
    }

    .uslugi h2 {
        padding-bottom: 1.03em;
        margin-bottom: 70px;
    }

    .uslugi .uslugi-container {
        margin-bottom: 55px;
        padding: 20px 33px;
    }
}

@media screen and (max-width: 480px) {
    footer.site-footer .row.first h2 {
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    .hero-banner h1 {
        font-size: 2.2em;
    }


    .kontakt .container {
        padding: 1.975em 0 4.9375em 0;
    }

    .kontakt h2 {
        font-size: 2em;
    }

    .kontakt form {
        max-width: 280px;
        margin-bottom: 20px;
    }

    .kontakt form input[type="submit"] {
        max-width: 160px;
    }

    .poradnik .container form p {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .pakiety .black-friday .timer-wrapper {
        flex-wrap: nowrap !important;
        justify-content: center;
    }

    .pakiety .black-friday .time-block {
        width: 55px;
        height: 55px;
        font-size: 34px;
        margin-bottom: 4px;
    }

    .pakiety .black-friday .single-countdown span {
        font-size: 13px;
    }
}

/* ERROR 404 */
body.error404 main {
    /* padding-top: 120px; */
    text-align: center;
}

body.error404 header {
    background-color: rgba(0, 0, 0, 0.5);
}

body.error404 main .container {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

body.error404 main .container h1,
body.error404 main .container h2 {
    font-family: 'Open Sans', sans-serif;
}

body.error404 main .container h1 {
    color: var(--yellow);
    font-weight: 700;
    font-size: 250px;
    letter-spacing: 5px;
    text-shadow: 0px 1px 10px #00000070;
    margin: 0;
}

body.error404 main .container h1 span {
    color: #e6c313;
}

body.error404 main .container h2 {
    font-size: 2.8em;
    color: #505050;
    margin: 0;
}

@media screen and (max-width: 980px) {
    body.error404 main .container h1 {
        font-size: 180px;
    }

    body.error404 main .container h2 {
        font-size: 2em;
    }
}

@media screen and (max-width: 550px) {
    body.error404 main .container h1 {
        font-size: 120px;
    }

    body.error404 main .container h2 {
        font-size: 1.6em;
    }
}

/* Black Friday RWD */
@media screen and (max-width: 800px) {
    .pakiety .black-friday .timer-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        max-width: 335px;
    }

    /* .pakiety .black-friday .single-countdown:nth-child(2) {
        flex-break: after;
    } */
}

@media screen and (max-width: 360px) {
    .hero-banner .buttons-wrapper a {
        padding: 0.45em 2.04em;
    }
}

.infografiki,
.image-section,
.jak-dzialamy,
.pakiety,
.uslugi {
    display: none;
}

footer.site-footer .row.first .social-media-wrapper {
    justify-content: center;
}

.social-media-wrapper svg {
    height: 25px;
}

footer.site-footer .footer-paragraf-wrap .col.right p {
    font-size: 1em;
}

footer.site-footer .row.first h2 {
    font-size: 2em;
}

footer.site-footer .row.second p {
    font-size: 0.8em;
}

footer.site-footer .wrapper img {
    width: 100%;
}

footer.site-footer .container {
    padding-top: 50px;
}

footer.site-footer .row.second {
    padding-bottom: 50px;
}

footer.site-footer .footer-paragraf-wrap {
    gap: 54px;
    margin-bottom: 24px;
}

footer.site-footer .footer-paragraf-wrap:last-of-type {
    margin-bottom: 0px;
}

footer.site-footer .row.first img {
    margin-bottom: 54px
}

footer.site-footer .row.first h2 {
    padding-top: 0px;
    margin-bottom: 24px;
}

footer.site-footer .row.first {
    align-items: flex-end;
}

@media screen and (max-width: 1290px) {
    footer.site-footer .row.first {
        align-items: center;
    }
}

.menu-toggle {
    display: none;
}

.main-navigation ul {
    display: flex;
}

@media screen and (max-width: 37.5em) {
    #primary-menu {
        flex-direction: column;
    }

    #primary-menu li:first-of-type {
        display: none;
    }
}

.privacy *,
.privacy p,
.privacy li::marker {
    font-size: 16px !important;
    text-align: left;
    font-family: 'Open Sans', sans-serif !important;
}

.privacy ol,
.privacy ul {
    margin-left: 0px;
}