
.sekcja {
    position: relative;
    width: 100vw;
    height: calc(100vh - 75px);
    background-size: cover;
    background-position: center;
    
}

#r_menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 998;
    background-color: white;
    transition: all .3s linear;
    right: -100vw;
}

#r_menu ul {
    position: absolute;
    left: 3%;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    margin-top: 140px;
    list-style-type: none;
    padding-left: 0;
    counter-reset: nums;
}

#r_menu li {
    /* text-align: center; */
    display: flex;
    counter-increment: nums;
    padding: .75em;
}

#r_menu li::before {
    content: "0" counter(nums) ".";
    font-size: 1rem;
    font-weight: 500;
    margin-right: 2em;
    font-size: 1rem;
    color: var(--secondary);
}

#r_menu a {
    position: relative;
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    /* text-align: center; */
    color: black;
    transition: .5s;
}

#r_menu a::after {
    position: absolute;
    content: "";
    top: 40%;
    left: 100%;
    width: 30%;
    height: 3px;
    margin-left: 15px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

#r_menu a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 4rem;
    background-color: rgba(121, 121, 121, 0.2);
    z-index: -1;
    opacity: 0;
    transition: all .8s ease-in-out;
}

#r_menu a:hover {
    color: var(--primary);
}

#r_menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#r_menu a:hover::before {
    opacity: 1;
}

#r_menu img {
    position: absolute;
    top: 15%;
    right: 10%;
    height: 70vh;
    width: auto;
    opacity: .3;
}

header {
    width: 100vw;
    position: fixed;
    z-index: 999;
    height: 75px;
    transition: all .5s linear;
}

header a {
    color: black;
    font-weight: 700;
    margin-top: 30px;
    transition: all .4s ease-in-out;
}

header ul {
    color: black;
    margin-top: 30px;
    margin-right: 10px;
}

header ul li {
    margin-right: 10px;
}

header img {
    margin-top: 0px;
    margin-left: 20px;
    width: 240px;
    height: auto;
    transition: all .5s linear;
    padding-bottom: 10px;
}

.btn {
    width: 230px;
    padding: .5rem;
    transition: all .4s ease-in-out ;
    border-radius: 0;
    font-size: .875rem;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-white {
    border: 1px solid white;
    background-color: white;
    color: #151515;
}

.btn-white:hover {
    background-color: #151515;
    color: white;
    border-color: #151515;
}

.btn-black {
    border: 1px solid #151515;
    background-color: #151515;
    color: white;
}

.btn-black:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-white-otl {
    border: 1px solid white;
    background-color: transparent;
    color: white;
}

.btn-black-otl {
    border: 1px solid #13171D;
    color: #13171D;
    transition: all .4s ease-in-out ;
}

.btn-black-otl:hover {
    background-color: #13171D;
    color: white;
}

.btn-white-otl:hover {
    background-color: white;
    color: var(--primary);
}

/* home */

.col-xl-2,
.col-xl-4 {
    padding-left: 0;
    padding-right: 0;
}

#home {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#home .row1 {
    height: 55vh;
}

#home .row2 {
    height: 30vh;
}

.home__bg {
    position: absolute;
    right: 0;
    width: 45vw;
    height: auto;
    top: 5vh;
    z-index: -1;
}

.social-media {
    position: relative;
    top: 20vh;
}

.social-media a {
    margin-top: 40px;
    margin-left: 20px;
}

.social-media i {
    color: black;
    font-size: 1.75rem;
    transition: all .4s ease-in-out;
}


.social-media i:hover,
header a:hover {
    color: var(--primary);
}

#home h1 {
    margin-top: 15vh;
    font-size: 5.5rem;
    font-weight: 800;
}
/* mousey */

.mousey {
    position: absolute;
    bottom: 1vh;
    left: 30px;
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid black;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
    margin: 10px auto 0 auto;
    transform: scale(.7);
}

.scroller{
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: black;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}


@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes move-down{
    0% {
        margin-top: -310px;
    }

    100% {
        margin-top: 0px;
    }
}

.home__txt {
    padding-left: 30px;
}

.home__txt p {
    font-weight: 400;
    font-size: 14px;
}

/* .ikony {
    position: relative;
    top: 45px;
    left: 25px;

} */

.paragraf {
    margin-left: -15vh;
    padding: 1vh 0;
    font-size: 1.5vh;
}

.home__img {
    position: relative;
    background-image: url('../img/Depositphotos_234471384_XL.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    transition: all .6s linear;
    cursor: pointer;
    height: 30vh;
    /* margin-top: 15vh; */
}

.home__img div {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0,.3);
    transition: all .6s linear;
}

.home__img a{
    padding: 18% 10%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    transition: all .6s linear;
    width: 100%;
}

.home__img a span {
    color: var(--secondary);
    font-size: 2rem;
}

.home__img div:hover {
    background-color: rgba(0, 0, 0, .5);
}

.img2 {
    padding-right: 0;
}

.rect {
    padding-left: 0;
    padding-right: 0;
}

.home__box {
    position: relative;
    width: 100%;
    /* height: 19vh; */
    height: 18vh;
    cursor: pointer;
    /* top: calc(100% - 19vh); */
    top: calc(100% - 3vh);
    transition: all .25s linear;
}

.box1 {
    background-color: var(--primary);
}

.box2 {
    background-color: var(--secondary);
}

.home_offer {
    position: relative;
    background-color: var(--primary);
    color: white;
    height: 12vh;
    /* top: calc(100% - 31vh); */
    top: calc(100% - 15vh);
}

.home_offer h3,
.home_offer i  {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 40px;
    font-size: 1.5rem;
}

.home_offer i {
    float: right;
    margin-right: 30px;
    font-size: 2rem;
}

#home .col-xl-5 .row {
    height: 45vh;
}

.home__box .img1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 7vh;
    width: auto;
    opacity: 1;
}

.home_links {
    height: 100%;
    opacity: 0;
}

.home_links a {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.home_links img,
.img2 img{
    width: 2.5vh;
    height: auto;
    margin: 1vh 0;
    opacity: .5;
}

.hb2 {
    top: calc(100% - 15vh);
}

.hb2 a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.hb2:hover .img1 {
    animation: opacityTo0 1s linear;
    opacity: 0;
}

.hb2:hover a {
    animation: opacityTo1 .7s linear;
    opacity: 1;
}

@keyframes opacityTo1 {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes opacityTo0 {
    from {opacity: 1;}
    to {opacity: 0;}
}

.paragraf {
    height: 15vh;
}

.ikony {
    margin-top: 15vh;
}

.ikony img {
    width: 15vh;
    height: 15vh;
    margin-left: 10px;
    opacity: 1;
    object-fit: cover;
    margin: 0;
    border: 1px solid white;
    /* margin-right: 3px; */
}

/* .ikony div {
    background-color: black;
} */

.fixed-menu {
    display: none;
}

/* O NAS */

#o-nas {
    height: calc(100vh - 75px);
}

#o-nas img {
    width: calc(100% - 30px);
    height: auto;
    margin-left: 30px;
    margin-top: 15vh;
}

#o-nas h2 {
    font-size: 3.5rem;
    font-weight: 600;
    padding-bottom: 5%;
}

.o-nas__content {
    margin-top: 20vh;
    padding: 0 17%;
}

.o-nas-opis {
    display: block;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0 60px;
}

.o-nas__content p {
    padding-bottom: 20%;
    line-height: 2rem;
    font-size: .9rem;
}

.o-nas-box {
    width: 140%;
    background-color: var(--primary);
    padding: 25%;
    margin-left: -20%;
    margin-top: -40%;
}

.o-nas-box h3 {
    font-size: 1.7rem;
    color: white;
    font-weight: 700;
}

/* MY */
#my {
    height: calc(100vh - 0px);
    background-image: url('../img/Depositphotos_328090560_XL.png');
}

#my h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-left: 10%;
    /* margin-top: 6%; */
    margin-top: 10%;
    margin-bottom: 10%;
}

#my .zalety {
    color: white;
}

.my-zmiana {
    padding-top: 10%;
}

.my-zmiana div {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.my-zmiana h3 {
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.my-zmiana button {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    width: 200px;
    padding: 6px;
    font-size: .9rem;
}

.my-zmiana button.active {
    background-color: white;
    color: #151515;
    font-weight: 600;
}

.zalety h4 {
    font-size: 5rem;
    font-weight: 800;
    margin-left: 10%;
}

.zalety .one{
    margin-left: 12%;
}

.zalety p {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
    color: white;
    font-size: 1.15rem;
    padding-left: 7%;
    padding-right: 10%;
}

.zalety .d-flex {
    padding: 2% 0%;
}

#my .btns {
    position: absolute;
    bottom: 10%;
    right: 10%;
}

#my .btns a {
    width: 210px;
    margin-right: 50px;
}

#my_dystrybutor {
    display: none;
}

/* OFERTA */

#oferta .col-md {
    padding-left: 0;
    padding-right: 0;
}

#oferta h3 {
    font-weight: 300;
    font-size: 1.35rem;
    letter-spacing: 2px;
    width: 90%;
    margin-bottom: 15px;
    vertical-align: bottom;
    margin-left: 10px;
}

.oferta__link {
    position: relative;
    width: 12.75vw;
    height: 12.75vw;

}

.oferta__header {
    padding-left: 5%;
}

.oferta__header p {
    width: 70%;
    font-weight: 300;
}

.oferta__header a p {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
}

.oferta__header a p:hover {
    color: var(--primary);
}

#oferta i {
    color: red;
    font-size: 2rem;
    margin-bottom: -5px;
    margin-right: 10px;
    margin-left: 5px;
}

.oferta1.oferta__link,
.oferta3.oferta__link,
.oferta5.oferta__link {
    background-color: var(--primary);
}

.oferta2.oferta__link,
.oferta4.oferta__link {
    background-color: var(--secondary);
}

.oferta__link {
    position: relative;
}

.oferta__link .oferta_ikona {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin: auto;
    height: 6vw;
    width: auto;
    opacity: 1;
    transition: all .5s linear;
}

.oferta__link .div_ikony {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.75rem;
    opacity: 0;
    transition: all .5s linear;
}

.oferta_ikony {
    margin-top: 2vh;
}

.oferta_ikony img {
    width: 2vw;
    height: 2vw;
    opacity: .7;
    transition: all .5s linear;
}

.oferta__link:hover .div_ikony {
    opacity: 1;
}

.oferta__link:hover .oferta_ikona {
    opacity: 0;
}

#oferta h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

#oferta h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 40px;
}

.catalog {
    position: absolute;
    bottom: 7%;
    right: 3%;
    color: black;
    transition: all .3s linear;
    font-weight: 600;
}

.catalog:hover {
    color: var(--primary);
}

.catalog img {
    height: 1.5rem;
    width: auto;
}

#oferta .btn {
    position: absolute;
    bottom: 7%;
    left: 5%;
}

.yt {
    margin-top: 2em;
}

/* NEWS */

#news {
    height: 100vh;
}

#news h2
{
    margin-top: 1em;
    font-size: 3rem;
    margin-bottom: .5em;
    color: black;
    font-weight: 900;    
}

#news > * > .row
{
    height: 1000px;
    overflow: hidden;
}

#news .wszystkie_news
{
    width: 100%;
    height: 700px;
    overflow-x: scroll;
    overflow-y: hidden;
}

#news .btns {
    text-align: left;
}

#news .btns a{
    width: 210px;
    margin-bottom: 1.5em;
}

#to_media { margin-left: 0;}

/* scroll bar */

    /* Works on Firefox */
    .wszystkie_news {
      scrollbar-width: thin;
      scrollbar-color: #EC7304 #f0f0f0;
      cursor: pointer;
    }

    /* Works on Chrome, Edge, and Safari */
    .wszystkie_news::-webkit-scrollbar {
      width: 8px;
      height: 8px;
      border-radius: 0;
    }

    .wszystkie_news::-webkit-scrollbar-track {
      background: #f0f0f0;
      margin-left: 500px;
      height: 8px;
    }

    .wszystkie_news::-webkit-scrollbar-thumb {
        background-color: #EC7304;
        border-radius: 0px;
        width: 8px;
        /* border: 3px solid #f0f0f0; */
    }

#news .wszystkie_news .scroll_aktulanosci
{

    width: 1800px;
    height: 750px;
    overflow-x: hidden;
    overflow-y: hidden;

}

#news .aktualnosc
{
    float: left;
    color: black;
    height: 750px;
    width: 400px;
    margin-right: 50px;
}

.arrow {
    display: none;
}

#news .dane
{

    background-color: #FAFBFC;
    border: 1px solid #f0f0f0;
    height: 325px;
}

.news__header p {
    padding-right: 4em;
    font-weight: 300;
}

#news .aktualnosc a
{
    width: 140px;
    font-size: 0.8rem;
    float: right;
    margin-top: 3em;
    margin-right: 2%;
}

#news .aktualnosc h1
{
    color: #f0f0f0;
    text-decoration: none;
    font-size: 5vw;
    width: 150px;
    border-width: 0 0 3px 0;
    border-style: solid;
    border-color: rgba(240, 240, 240, 0);
    font-weight: bold;
    margin: 0 0 50px 0;
}

#news .aktualnosc .teksty
{
    padding: 8%;
    height: 220px;
}

#news .aktualnosc .data
{
    font-weight: normal;
    font-size: 10pt;
    color: #272D34AD;
}

#news .aktualnosc .opis
{
    line-height: 100%;
    font-size: 10pt;
    font-weight: 400;
}

#news .aktualnosc img
{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#news .opisy
{
    padding-left: 5%
}

#news .naglowek {
    font-size: 1.25rem;
}

#news .d-flex {
    margin-bottom: 2%;
}

#news .btns {
    margin-top: 80%;
}

.btns-mobile {
    display: none;
}

/* 1 potomek */

#news .aktualnosc:nth-child(1) h1
{
    color: black;
    border-color: black;
}

#news .aktualnosc:nth-child(1) .dane
{
    background-color: #EAECEF;
}


/* CERTYFIKATY */

#certyfikaty {
    position: relative;
    background-image: url('../img/certyfikat.png');
    height: 100vh;
}

#certyfikaty .btns {
    float: right;

}

.certyfikaty__left {
    color: white;
    height: calc(80vh - 75px);
    padding-left: 5%;
    margin-top: 15vh;
}

.certyfikaty__left h3 {
    font-weight: 800;
    font-size: 6rem;
}

.certyfikaty__left h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.certyfikaty__left p {
    font-weight: 400;
    padding-right: 20%;
}

.certyfikaty__left h3 .value {
    margin-left: 30px;
}

.certyfikaty__right {
    position: absolute;
    bottom: 5%;
    right: 5%;
}

.certyfikaty__right h2 {
    text-align: right;
    color: white;
    font-weight: 800;
    font-size: 4rem;
    padding-bottom: 1em;
}

.certyfikaty__right .btns a{
    margin-left: 40px;
}


/* KLUB */
#klub {
    background-color: #E9E9E9;
    height: calc(100vh - 0px);
}

#klub .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}

.klub__bg {
    background-image: url('../img/klub.png');
    height: 100vh;
    background-repeat: no-repeat;
}

.klub__header {
    position: absolute;
    bottom: 10vh;
    background-color: #ec7404db;
}

.klub__header h2 {
    position: relative;
    top: -2rem;
    color: white;
    font-weight: 800;
    font-size: 5rem;
    padding-left: 1em;
    padding-right: 4em;
    line-height: 5rem;
}

#klub h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-left: -3vw;
    margin-bottom: 5vh;
    margin-top: 15%;
}

#klub p {
    font-weight: 500;
    padding-left: 3%;
    padding-right: 20%;
}

#klub img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.lista {
    margin: 5vh 0;
    padding-left: 7vw;
}

#klub .btns {
    position: absolute;
    bottom: 10vh;
    right: 10%;
}

#klub .btns a {
    margin-left: 50px;
}

/* wsparcie */

#wsparcie {
    background-image: url('../img/Depositphotos_328090046_XL.jpg');
    height: 100vh;
}

#wsparcie h2 {
    font-size: 5rem;
    font-weight: 800;
    color: white;
}

#wsparcie p {
    color: white;
    font-weight: 400;
    letter-spacing: 0.09em;
    font-size: 1.25rem;
}

.wsparcie__content {
    width: 54vw;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 3em 1em;
    background: #EC7304F2;
}

.wsparcie__content img {
    position: relative;
    top: 10%;
    display: block;
    margin: auto;
}

.wsparcie__content .btn {
    width: 210px;
    margin-right: 5%;
}

/* zami */

#zami {
    height: 90vh;
}

#zami .col-md-5,
#zami .col-md-7 {
    padding-left: 0;
    padding-right: 0;
}

#zami .col-md-5 {
    background-color: var(--primary);
}

#zami .center_y_50 {
    padding-left: 10%;
}

#zami h2 {
    font-size: 4.5rem;
    font-weight: 800;
    padding-right: 25%;
}

#zami p {
    padding: 2em 0;
}

#zami .btn-white {
    width: 210px;
    margin-top: -15%;
    margin-left: 7%;
}

/* loga */

#loga {
    padding: 2em 0;
}

#loga img {
    display: block;
    margin: auto;
    height: 130px;
    width: auto;
}

/* FORMULARZ */

#formularz .formularz
{
    background-color: #13171D;
    padding: 6em;
}

#formularz .col-xl-7 {
    padding-left: 0;
    padding-right: 0;
}

#formularz input[type="text"],
#formularz input[type="email"],
#formularz input[type="tel"],
#formularz textarea
{
    width: 100%;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: white;
    color: white;
    background-color: #13171D;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 1rem;
    font-family: 'Poppins', Fallback, sans-serif;
    padding-bottom: 5px;
}

#formularz textarea
{
    height: 150px;
}

#formularz .col-6 input
{
    margin: 0 !important;
    width: 80%;
}

#formularz input[type="checkbox"]
{
    margin: 10px;
}

#formularz h3
{
    color: white;
    text-align: left;
    font-weight: 600;
    font-size: 2.25rem;

}

#formularz .tekst
{
    margin-left: auto;
    margin-right: auto;
}

#formularz label
{
    width: 100%;
    color: white;
    margin: 0;
    margin-top: 0;
    padding: 0;
    font-weight: 400;
    font-size: 1rem;
}

#formularz .wpcf7-list-item {
    margin-left: 0;
    margin-right: 2em;
}

#formularz input[type="submit"] {
    width: 170px;
    margin-top: 1em;
    padding: .3em 3em;
    background-color: white;
    border: 1px solid white;
    border-radius: 0;
    color: #3A4D64;
    font-weight: 600;
    font-size: .8rem;
    transition: all .4s ease-in-out;
}

#formularz input[type="submit"]:hover {
    background-color: transparent;
    color: white;
}

#formularz input::placeholder,
#formularz textarea::placeholder {
    color: #ececec;
}

#formularz iframe
{
    border:0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

/* STOPKA */

footer
{
    padding-top: 8em;
    background-color: #13171D;
    color: white;
}

footer img
{
    margin-left: 20%;
    width: 30%;
    height: auto;
}

footer p {
    margin-bottom: 0rem;
    font-weight: 300;
}

footer .copyright
{
    padding-top: 14em;
    padding-bottom: 10px;
    text-align: center !important;
    font-size: 9pt !important;
}

footer a
{
    color: white;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

footer a:hover {
    color: var(--primary);
}


.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

.wpcf7 form .wpcf7-response-output {
    color: #00a0d2;
}


.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output  {
    color: #ffb900;
}

@media only screen and (max-width: 1600px) {

    .home_links a,
    .hb2 a {
        font-size: 1.1rem;
    }

    .o-nas-box h3 {
        font-size: 1.5rem;
    }

    .o-nas__content p {
        padding-bottom: 5%;
    }

    .my-zmiana {
        width: 100%;
    }

    .my-zmiana h3 {
        margin-right: 40%;
    }

    #my h2 {
        margin-bottom: 5%;
    }

    #oferta h3 {
        font-size: 1.25rem;
    }

    .klub__header h2 {
        font-size: 4.5rem;
        padding-right: 1em;
    }

    #wsparcie h2 {
        font-size: 4.5rem;
    }

    #zami {
        height: 100vh;
    }

    #loga img {
        height: 110px;
    }

    #formularz .formularz {
        padding: 4em;
    }
}

@media only screen and (max-width: 1536px) {

    .o-nas__content p {
        line-height: 1.5rem;
    }

    #my h2,
    #oferta h2,
    .certyfikaty__right h2,
    .klub__header h2,
    #wsparcie h2,
    #zami h2 {
        font-size: 3.5rem;
    }
    
    .zalety p {
        font-size: 1.1rem;
    }

    #oferta h3 {
        font-size: 1.15rem;
    }

    .certyfikaty__left h3 {
        font-size: 5rem;
    }

    #zami img {
        width: 100%;
        height: auto;
    }

    #formularz h3 {
        font-size: 2rem;
    }

}


@media only screen and (max-width: 1440px) {

    * {
        font-size: 14px;
    }

    .paragraf {
        padding: 0;
    }

    .certyfikaty__left h3 .value {
        font-size: 5rem;
    }


    #zami {
        height: 80vh;
    }

    .home_links img, .img2 img {
        width: 2vh;
    }

}


@media only screen and (max-width: 1366px) {

    * {
        font-size: 14px;
    }

    .paragraf p {
        position: relative;
        font-size: 12px;
        bottom: 6vh;
    }
    
    .home__txt p {
        font-size: 12px;
    }

    #r_menu a {
        font-size: 1rem;
    }

    #my h2, #oferta h2, .certyfikaty__right h2, .klub__header h2, #wsparcie h2, #zami h2 {
        font-size: 3rem;
    }

    #home h1 {
        font-size: 5rem;
    }

    .home__img a,
    .home__img a span {
        padding: 10%;
        font-size: 1.5rem;
    }

    .home_links a {
        font-size: 1rem;
    }

    .hb2 a {
        font-size: 1rem;
    }

    .oferta__header p {
        width: 60%;
    }

    #zami img {
        width: 85%;
    }
}

@media only screen and (max-width: 1280px) {
    #home h1 {
        font-size: 4rem;
    }

    .o-nas-box h3 {
        font-size: 1.3rem;
    }

    .o-nas__content p {
        padding-bottom: 15%;
    }

    #oferta h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    #news h2 {
        font-size: 2.5rem;
    }

    .lista {
        margin: 3vh 0;
    }

    #klub h4 {
        margin-top: 10%;
    }

    #klub p {
        padding-left: 7%;
    }
    
    #loga img {
        padding: 1em 0;
    }

    .div_ikony h5 {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 1280px) {
    /*effect-underline*/
    /* .home_links a:after {
        content: '';
        position: absolute;
        left: 0;
        display: inline-block;
        height: 1em;
        width: 80%;
        margin-left: 10%;
        border-bottom: 1px solid;
        margin-top: 10px;
        opacity: 0;
            -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
            transition: opacity 0.5s, transform 0.5s;
            -webkit-transform: scale(0,1);
            transform: scale(0,1);
    }

    .home_links a:hover:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    } */

    /* .home_links a:hover {
        color: black;
    } */

    /* .box-hover:hover {
        height: 100%;
        top: 0;
    } */

    .box-hover:hover .home_links {
        animation: opacityTo1 .7s linear;
        opacity: 1;
    }

    .box-hover:hover .img1{
        opacity: 0;
        display: none;
    }
}

@media (-webkit-min-device-pixel-ratio: 1.25) {

    * {
        font-size: 13px;
    }

    .paragraf p {
        font-size: 12px;
        margin-top: -3vh;
    }

    .home__img a,
    .home__img a span {
        font-size: 2.5rem;
    }

    .certyfikaty__left h3 span {
        font-size: 6rem;
    }

    #news .dane {
        height: 250px;
    }

    #news .wszystkie_news {
        height: 600px;
    }

    #news {
        height: 100vh;
    }

    .wszystkie_news.center_y_50 {
        top: 40%;
    }
}


@media (-webkit-min-device-pixel-ratio: 1.5) {
    * {
        font-size: 11px;
    }

    .paragraf p {
        font-size: 10px;
        margin-top: -3vh;
    }

    #news .aktualnosc img {
        height: 200px;
    }

    #news .dane {
        height: 250px;
    }

    #news .wszystkie_news {
        height: 550px;
    }

    .wszystkie_news.center_y_50 {
        top: 30%;
    }

    .klub__header h2 {
        top: -2.5rem;
    }

    #zami {
        height: 100vh;
    }
}
