@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    --text-color: #1d2f57;
    --text-shadow-color: #1d2f5766;
    --text-color-blue: #3a5dab;
    --path-color: #2a4e9d4a;
    --path-hovered-color: #1a33696a;
    --nav-color: #1d2f579c;
    --button-trans-color: #1d2f574c;
    --button-main: #e7e9ed;
    --article-shadow-color: #1d2f5714;
    --cert-shadow-color: #1d2f5724;
    --dofi-step-color: #dbe3ff;
    --button-gradient: linear-gradient(180deg, #2e2a67 0%, #374872 0%, #1d2f57 100%);
    --button-gradient-old: linear-gradient(180deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
    --button-gradient-inversed: linear-gradient(0deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
    --button-gradient-dark: linear-gradient(180deg, #1d2f57, #1c3870, #1c3870);
    --button-gradient-horizontal: linear-gradient(270deg, #23378d, #7493d8);
    --button-gradient-horizonta-inversed: linear-gradient(90deg, #23378d, #7493d8);
    --form-gradient: linear-gradient(180deg, #1d2f57, #1c3870, #1c3870);
    --form-input-gradient: linear-gradient(180deg, #ffffffcc, #ffffff, #ffffff, #ffffff);
    --article-gradient: linear-gradient(135deg, #1c38703d, #73737300, #1c387036, #1c387000);
    --circle-gradient: radial-gradient(circle at top left, #23378d, #7493d89c);
    --people-name-gradient: radial-gradient(circle at center, #fff, #ffffffb5);
    --dofi-gradient: radial-gradient(circle at left center, #38528b, #7493d8cf);
}
*::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
}

*,
html {
    margin: 0px 0px;
    padding: 0px 0px;
}

body {
    font-family: Montserrat;
    width: auto;
    height: auto;
    box-sizing: border-box;
    margin: 0px 0px;
    color: var(--text-color);
}

p {
    white-space: pre-line;
}

.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image: var(--article-gradient);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.76);
    background-blend-mode: lighten;
    overflow: hidden;
    /* position: relative; */
}

.page.nobg {
    background-image: none;
    background-color: white;
}

.page .column {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 80em;
    /* height: 900px; */
    gap: 1em;
}

.page .header p {
    font-size: 51.3639px;
    color: var(--text-color);
    font-weight: var(--font-bold);
    text-align: center;
}

.page .header.margin {
    margin: 0.5em 8em;
}

.page .header.center {
    margin: .5em auto;
}


/* ========================================================== */


/* Navbar */

.navbar {
    position: fixed;
    overflow: hidden;
    height: 3vw;
    background-color: var(--nav-color);
    z-index: 99999;
    width: 100%;
    display: flex;
    direction: rtl;
    align-items: center;
}

.navbar a {
    color: white;
    padding: 100% 1.7vw;
    text-align: center;
    font-size: 1vw;
    font-weight: var(--font-regular);
    text-decoration: none;
    transition-duration: 0.2s;
}

.navbar a:hover {
    color: white;
    text-shadow: 0 0 7px #ffffff, 0 0 16px #ffffff;
}


/* ========================================================== */


/* Main image */

.nav-image-container {
    width: auto;
}

.nav-image-container #main-img {
    width: 100%;
    height: auto;
    z-index: 110;
}

.nav-image-container #logo {
    position: absolute;
    top: 7vw;
    left: 0vw;
    width: 26vw;
}

.nav-image-container #logo img {
    width: 100%;
    height: 100%;
}

.nav-image-container div {
    position: absolute;
    top: 10.2vw;
    left: 24vw;
    width: 2px;
    height: 12vw;
    background-color: white;
}

.nav-image-container h1 {
    position: absolute;
    top: 12vw;
    left: 28vw;
    width: 37vw;
    margin: 0 0;
    font-size: 4.25vw;
    font-weight: var(--font-bold);
    color: white;
    line-height: 3.7vw;
}

.nav-image-container h1::first-line {
    font-size: 2.8vw;
    font-weight: var(--font-regular);
    color: white;
}


/* watermark */

.watermark {
    opacity: 0.06;
    position: absolute;
    scale: 2;
    top: 50vw;
    left: 76vw;
    width: 40vw;
    transform: rotateZ(-30deg);
}


/* ========================================================== */


/* path */

.path {
    margin: 1em;
    margin-left: 8em;
    color: var(--path-color);
}

.path a {
    text-decoration: none;
    font-size: 1.5em;
    color: var(--path-color);
}

.path a:hover {
    color: var(--path-hovered-color);
}


/* ========================================================== */


/* Arcticle  */

.article {
    margin: 2em 8em;
    padding: 0;
    width: auto;
    display: flex;
    flex-flow: column nowrap;
}

.article-header {
    align-self: flex-start;
    display: block;
}

.article-header h1 {
    margin: 0;
    font-size: 3.85em;
    font-weight: var(--font-medium);
}

.article-header hr {
    width: 22em;
    border: 1px solid var(--text-color);
    opacity: 70%;
}

.article-links {
    margin-top: 2em;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
}

.article-links a {
    padding: 0.8em;
    font-size: 1.44em;
    font-weight: var(--font-medium);
    background-color: var(--button-main);
    color: var(--text-color);
    transition-duration: 0.1s;
    text-decoration: none;
    z-index: 1;
    position: relative;
}

.article-links a::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.2s linear;
    opacity: 0;
    background: var(--button-gradient);
}

.article-links a:hover {
    color: white;
}

.article-links a:hover::before {
    opacity: 1;
}

.article-container {
    margin: 2em 4em;
    margin-bottom: 10em;
    padding: 0;
    width: auto;
    display: flex;
    flex-flow: column nowrap;
    gap: 6em;
}

.article-item {
    width: 100%;
    height: 30em;
    background-color: white;
    border-radius: 80px;
    box-shadow: 20px 20px var(--article-shadow-color);
    display: grid;
    grid-template-columns: auto 2fr;
    grid-template-rows: 100%;
    justify-items: start;
    align-items: center;
}

.article-item img {
    grid-column: 1;
    margin: 6em;
    border-radius: 40px;
    width: 22em;
    height: 22em;
}

.article-item div {
    grid-column: 2;
    width: 90%;
    height: 70%;
    display: flex;
    flex-flow: column nowrap;
}

.article-item div h2 {
    font-size: 1.6em;
    font-weight: var(--font-medium);
}

.article-item div h1 {
    font-size: 1.8em;
    font-weight: var(--font-bold);
    margin-top: 1em;
    margin-bottom: 1em;
}

.article-item div p {
    font-size: 1.2em;
    height: 90%;
    font-weight: var(--font-regular);
    overflow-wrap: break-word;
}

.article-item div a {
    width: 6em;
    font-weight: var(--font-regular);
    align-self: flex-end;
    margin-top: auto;
    padding: 0.5em;
    padding-right: 2em;
    background: var(--button-gradient);
    font-size: 2em;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 10px;
    transition-duration: 0.2s;
    z-index: 1;
    position: relative;
}

.article-item div a::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.15s ease-in;
    opacity: 0;
    background: var(--button-gradient-inversed);
    border-radius: 10px;
}

.article-item div a:hover::before {
    opacity: 1;
}

.article-item div a span {
    position: absolute;
    display: block;
    margin: auto;
    width: 0.7em;
    height: 0.7em;
    border: solid white;
    border-width: 0 0.2em 0.2em 0;
    transform: translateX(5.3em) translateY(-1.1em) rotate(-45deg);
}


/* ========================================================== */


/* Footer */

.footer {
    margin-top: auto;
    padding: 2vw 3vw;
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-around;
    background-color: var(--text-color);
    color: white;
    white-space: nowrap;
    overflow: hidden;
    gap: 4vw;
}

.footer div p {
    font-size: 1.57vw;
    font-weight: var(--font-bold);
    margin-bottom: 10px;
}

.footer div a {
    font-size: 1vw;
    font-weight: var(--font-regular);
    transition-duration: 0.2s;
}

.footer div a:hover {
    text-shadow: 0 0 7px #ffffff, 0 0 16px #ffffff;
}

.footer-image {
    width: 12.5vw;
    height: 9vw;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.footer-image img {
    width: 100%;
    height: 100%;
}

.slides {
    overflow-x: scroll;
    scroll-behavior: smooth;
    overflow-y: hidden;
    user-select: none;
}

.slides::-webkit-scrollbar{
    height: 10px;
    opacity: 0;
    width: 0;
    display: block;
}
.slides::-webkit-scrollbar-thumb {
    opacity: 0;
    background-color: #888;
    border-radius: 5px;
}
.slides::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    opacity: 0;
} */

.slide-left,
.slide-right {
    left: 0;
    display: none;
    position: absolute;
    z-index: 1000;
    width: 6vw;
    height: 6vw;
    border-radius: 100%;
    border: 0;
    background-color: var(--button-trans-color);
    align-items: center;
}

.slide-right span {
    margin: auto;
    width: 30%;
    height: 30%;
    border: solid white;
    border-width: 0 0.6vw 0.6vw 0;
    transform: translateX(-0.4vw) rotate(-45deg);
    display: none;
}

.slide-left span {
    margin: auto;
    width: 30%;
    height: 30%;
    border: solid white;
    border-width: 0 0.6vw 0.6vw 0;
    transform: translateX(0.4vw) rotate(135deg);
}


/* deprecated below!!!! */

.zdj {
    position: absolute;
    top: 10%;
    left: 14%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.zdj2 {
    position: absolute;
    top: 60%;
    left: 14%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
}

.text-on-image {
    position: absolute;
    top: 20%;
    left: 22%;
    transform: translate(-50%, -50%);
    font-size: 41.0311px;
    font-weight: 400;
    color: white;
}

.text2 {
    position: absolute;
    top: 20%;
    left: 23%;
    transform: translate(-50%, 50%);
    font-size: 55.6974px;
    font-weight: 700;
    color: white;
}

.przycisk {
    position: absolute;
    top: 40%;
    left: 24%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(46, 42, 103, 1) 3%, rgba(66, 91, 148, 1) 4%, rgba(29, 47, 87, 1) 100%);
    border: 2px solid white;
    font-size: 17.2098px;
    text-align: center;
    color: white;
    padding: 14px 40px;
    width: 450px;
    height: 70px;
    cursor: pointer;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.przycisk:hover {
    background: linear-gradient(0deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
}


/* 
.onas {
    position: absolute;
    top: 80%;
    left: 25%;
    transform: translate(-50%, -50%);
} */

.b {
    font-size: 17.3333px;
    color: #1c2d51;
    text-align: left;
    padding-left: 60px;
}

.c {
    font-size: 29.3334px;
    color: #1c2d51;
    font-weight: 700;
}

.d {
    font-size: 17.3333px;
    color: #1c2d51;
}

.padd {
    padding-left: 85px;
}

.e {
    font-size: 51.3639px;
    color: #1c2d51;
    font-weight: 700;
    padding-left: 60px;
    text-align: center;
}

.button-group {
    display: grid;
    grid-auto-flow: column;
    gap: 5px;
}

.button-group button {
    background: #f0f0f0;
    font-size: 19.1669px;
    text-align: center;
    color: #1c2d51;
    padding: 14px 40px;
    width: auto;
    height: 50px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    display: inline-block;
}

.button-group button:hover {
    background: linear-gradient(0deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
    color: white;
}

.oferty-center {
    text-align: center;
    margin: 80px;
}

.mySlides {
    display: none
}

img {
    vertical-align: middle;
}

.slideshow-container {
    text-align: center;
    max-width: 1100px;
    position: relative;
    margin: auto;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    background-color: #717171CC;
    top: 56%;
    width: 20px;
    padding: 14px;
    margin-top: -22px;
    color: black;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
}

.next {
    right: 0%;
}

.prev {
    position: absolute;
    left: 0%;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.texte {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    margin-bottom: 200px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

.blok {
    background-color: white;
    border-radius: 40px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 300px;
    height: 400px;
    padding: 20px;
    flex: 0 0 auto;
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
}

.blok img {
    width: 90%;
    height: auto;
    max-height: 50%;
    object-fit: cover;
    border-radius: 20px;
}

.blok text .blok .text2 {
    padding: 10px;
    text-align: center;
    color: #1c2d51;
    text-decoration: none;
}

.blok .text {
    font-size: 18.6666px;
}

.blok .text3 {
    font-size: 30.5001px;
}

.z {
    font-size: 57.259px;
    font-weight: 700;
    color: white;
    margin-left: 250px;
}

.y {
    font-size: 20.9518px;
    margin-left: 150px;
    font-weight: 600;
    color: white;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 1100px;
    height: 450px;
    background-color: #1b2a55;
    /* Kolor tła formularza */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
}

.left-column {
    width: 30%;
    margin-left: 90px;
    margin-right: 90px;
}

.right-column {
    width: 65%;
    margin-left: 40px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

textarea {
    width: 400px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

textarea {
    height: 210px;
    resize: none;
}

.input-row {
    display: flex;
    gap: 62px
}

.input-row input {
    width: 100%;
}

.imie {
    width: 145px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.a-white {
    color: white;
    text-decoration: none;
}

.a-black {
    color: #1c2d51;
    text-decoration: none;
}

.a-grey {
    text-decoration: none;
    color: #717171;
    margin: 20px;
}

.a-grey:hover {
    text-decoration: underline;
    scale: 102%;
}

.d {
    font-size: 17.3333px;
    color: #1c2d51;
    text-decoration: none;
    margin-left: 150px
}

.d:hover {
    color: white;
    text-decoration: underline;
    scale: 102%;
}

header {
    background-color: #203155CC;
    padding: 5px;
    text-align: right;
}

.vertical-line {
    position: absolute;
    top: 27%;
    left: 25%;
    width: 2px;
    height: 250px;
    background-color: white;
}

.szkolenie-container {
    display: flex;
    align-items: center;
    width: 1450px;
    padding: 20px;
    height: 360px;
    margin: 20px auto;
    border-radius: 50px;
    margin-left: 250px;
    background-color: white;
    box-shadow: 11px 17px 30px 3px rgba(0, 0, 0, 0.62);
}

.szkolenie-photo {
    flex-shrink: 0;
}

.szkolenie-photo img {
    width: 350px;
    height: 350px;
    border-radius: 30px;
    object-fit: cover;
}

.szkolenie-content {
    flex: 1;
    margin-left: 20px;
}

.szkolenie-content h3 {
    margin-top: 0;
    font-size: 30px;
    color: #1c2d51;
    font-weight: 600;
}

.szkolenie-content p {
    font-size: 20px;
    color: #1c2d51;
    font-weight: 300;
    word-spacing: 10px;
}

.szkolenie-price {
    margin: 10px 0;
    font-size: 35px;
    color: #1c2d51;
    font-weight: 800;
}

.szkolenie-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    width: 140px;
    height: 60px;
    color: white;
    background-color: #1b2a55;
    font-size: 18px;
    text-align: center;
}

.szkolenie-button:hover {
    background: linear-gradient(0deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
}

.line {
    width: 300px;
    height: 3px;
    background-color: #203155CC;
    margin: -55px 0;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    padding-left: 55px;
    padding-right: 75px;
}

.column {
    position: relative;
    width: 35%;
    padding-bottom: 50px;
}

.tabela {
    position: relative;
    text-align: center;
}

.tabela img {
    transition: 0.3s ease;
}

.tabela img {
    position: relative;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 100px;
}

.tabela img:hover {
    transition: 0.3s;
}

.rectangle {
    position: absolute;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 43px;
    transition: 0.3s ease;
    width: 80%;
    display: inline-block;
    left: 15px;
}

.rectangle1 {
    position: absolute;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    transition: 0.3s ease;
    width: 45%;
    display: inline-block;
    left: 90px;
}

.rectangle p {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    color: #203155;
}

.rectangle y {
    margin-left: 80px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    /* Cień dla napisu */
}

.tabela:hover .rectangle {
    color: white;
    background-color: #203155;
}

.tabela:hover .rectangle1 {
    background-color: #203155;
    color: white;
}

.tabela:hover .rectangle p {
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.tabela:hover .rectangle y {
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.oo:hover {
    color: white;
}

.tabela p {
    margin-top: 28px;
    left: 16.5%;
    top: 10%;
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    text-shadow: 1px 1px 2px black;
    color: #203155CC;
}

.tabela y {
    color: #203155CC;
    right: 30%;
    top: 20%;
    font-size: 25px;
    position: absolute;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
}

.onas-container {
    width: 1920px;
    height: 620px;
    background-color: white;
    box-shadow: 0px 25px 27px -20px rgba(0, 0, 0, 0.67);
    margin-bottom: 200px;
}

.onas-container2 {
    width: 1920px;
    height: 620px;
    background-color: white;
    margin-bottom: 270px;
}

.onas-images {
    display: flex;
    float: left;
}

.onas-images2 {
    display: flex;
    float: right;
}

.onas-margin {
    margin-left: 130px;
}

.onas-margin2 {
    margin-right: 150px;
}

.onas-images img {
    margin-top: 0px;
    margin-right: 20px;
    margin-bottom: 150px;
    width: 130px;
    height: 420px;
}

.onas-images2 img {
    margin-right: 200px;
    width: 670px;
    height: 490px;
}

.onas-text,
.onas-text2 {
    margin-left: 170px;
    color: #1b2a55;
    word-spacing: 10px;
}

.onas-text {
    line-height: 1.6;
    margin-top: 190px;
    font-size: 52px;
}

.onas-text2 {
    font-size: 22px;
    line-height: 1.6;
    margin-left: 100px;
}

.onas-block-container {
    justify-content: center;
    display: flex;
    gap: 40px;
}

.onas-block {
    display: inline-block;
    text-align: center;
    background-color: #f0f0f0;
    color: #1b2a55;
    width: 250px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-height: 140px;
}

.onas-block .onas-block-content {
    padding: 10px;
    background-color: #f0f0f0;
    color: #1c2d51;
}

.onas-block:hover {
    max-height: 400px;
    background-color: #1c2d51;
    color: white;
}

.onas-block h3 {
    padding: 10px;
    cursor: pointer;
    margin: 30px;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
    position: absolute;
    z-index: 1;
}

.circle-img {
    position: absolute;
    z-index: 2;
}

.circle-img img {
    width: 180px;
    height: 300px;
}

.circle-img:hover {
    transform: scale(1.2);
    background: linear-gradient(0deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
}

.circle-bar {
    margin-top: 10px;
    color: black;
    font-size: 22px;
    text-align: center;
    width: 200px;
    height: 50px;
    background-color: rgb(255, 255, 255, 0.5);
    position: absolute;
    z-index: 3;
    border-radius: 15px;
}

.circle-bar:hover {
    background: linear-gradient(0deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
}

.przycisk-cer {
    position: absolute;
    top: 113%;
    left: 68%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
    border: 2px solid white;
    font-size: 17.2098px;
    text-align: center;
    color: white;
    padding: 14px 40px;
    width: 800px;
    height: 100px;
    cursor: pointer;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    font-size: 25px;
    word-spacing: 6px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s;
    z-index: 5;
}

.przycisk-cer:hover {
    background: linear-gradient(0deg, rgba(47, 69, 152, 1) 0%, rgba(76, 102, 179, 1) 50%, rgba(110, 140, 210, 1) 100%);
}

.trenerzy-text {
    font-size: 60px;
    color: #1b2a55;
    margin-left: 170px;
    margin-bottom: 70px;
    margin-top: 70px;
}

.trenerzy-text2 {
    font-size: 18px;
    color: #1b2a55;
    word-spacing: 1.3;
    margin-left: 175px;
    margin-bottom: 170px;
}

.trenerzy-img {
    position: absolute;
    z-index: 2;
}

.trenerzy-img img {
    width: 360px;
    height: 600px;
}

.line_link {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    width: 112%;
}

.line_link2 {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    width: 86%;
}

.line_link3 {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    width: 65%;
}

p {
    margin: 0%;
    font-size: 150%;
}


/* media quieries */

@media (min-width: 999px) and (max-width: 1300px) {
    .footer > div a{
        font-size: 1em;
    }
}

@media (max-width: 1000px) {
    .navbar {
        position: fixed;
        overflow: hidden;
        height: 6vw;
        background-color: var(--nav-color);
        z-index: 9999;
        width: 100%;
        display: flex;
        direction: rtl;
        align-items: center;
    }
    .navbar a {
        color: white;
        padding: 100% 1.7%;
        text-align: center;
        font-size: 2.5vw;
        font-weight: var(--font-regular);
        text-decoration: none;
    }
    .footer-image {
        display: none;
    }
    .footer {
        gap: 0;
        height: auto;
    }
    .footer > div a{
        font-size: 2vw;
    }
    .path {
        margin: 1em;
        margin-left: 0.5em;
        font-size: 0.5em;
    }
    .article {
        margin: 2em 0.5em;
        font-size: 0.5em;
    }
    .article-container {
        margin: 2em 0.5em;
        font-size: 0.4em;
    }
    .article-item {
        height: 30em;
        border-radius: 30px;
    }
    .article-item img {
        height: 10em;
        width: 10em;
        border-radius: 20px;
        margin-right: 2em;
    }
    .article-item div h1 {
        margin-top: 0.3em;
        margin-bottom: 0.3em;
    }
}