/* do testow kolorowanie */
/*.menu-div {background-color: cornsilk;}*/
/*article {background-color: azure}*/
/* END - do testow kolorowanie */

a, p, h1, h2, h3, h4 {
    color: #363545;
}
a, p, li {
    text-decoration: none;
    font-size: 17px;
    line-height: 1.6;

}
.knowledge-div p {
    /*text-align: justify;*/
}

h1{
    font-size: 40px;
}
h2{
    font-size: 35px;
    font-weight: normal;
}
h3{
    font-size: 23px;
}
h4{
    font-size: 19px;
}

h1,h2 ,h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

/*a:-webkit-any-link:hover {*/
/*    color: #ff061f;*/
/*    text-decoration: none;*/
/*}*/

.link-text{
    /*color: #003eff;*/
    border-bottom: solid 2px red;
}


.menu_link {
    position: relative;
    display: inline-block;
}
.menu_link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #363545 /*rgb(255, 6, 31);*/;
    border-radius: 3px;
    scale: 0 1;
    transform-origin: left;
    transition: scale 0.3s;
}
.menu_link:hover::before {
    scale: 1;
}



/* potrzebne zeby grid container wypelnil caly ekran bez scrooli */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font: 1em/1.3 "Source Sans Pro", Helvetica, sans-serif;
    color: #363545;
    /*width: 90%;*/
    /*max-width: 900px;*/
    /*height: 100vh;*/
    /*margin: 0px;*/
}

/* gdy szerokos > niz... */
@media only screen and (min-width: 800px){
    .mobile-only{
        display: none;
    }
    .pc-only{
        display: block;
    }

    body {
        width: 100%;
        height: 100%;
        margin: 0px;
    }
    .mobile-top-nav{
        display: none !important;
    }
    #topBtn {
        bottom: 100px;
        right: 30px;
    }
    .container, .tiles-container{
        display: grid;
        grid-template-columns: 1fr 250px 700px 250px 1fr;
        grid-template-rows: 60px auto auto 40px;
        grid-gap: 20px;
        grid-template-areas:
                ". logo header header ."
                ". . center_text . ."
                ". aside main ext_description ext_description"
                "footer footer footer footer footer";
        justify-content: stretch;
        /*!*width: 100vw;*! bez tego gdy jest boczny pasek przewijania (gora dol) nie zmienia szerokosci realnej str*/
        height: 100vh;
    }
    .main_page_container{
        display: grid;
        grid-template-columns: 1fr 250px 700px 250px 1fr;
        grid-template-rows: 60px auto 40px;
        grid-gap: 20px;
        grid-template-areas:
                ". logo header header ."
                "main main main main main"
                "footer footer footer footer footer";
        justify-content: stretch;
        /*!*width: 100vw;*! bez tego gdy jest boczny pasek przewijania (gora dol) nie zmienia szerokosci realnej str*/
        height: 100vh;
    }
    .youtube-div {
        border: solid 1px rgba(238, 238, 238, 0.79);
        width: 560px;
        height: 315px;
    }
    .skp-logo-img{
        width: 300px;
        /*height: 109px;*/
    }
    .big-img{
        /*width: 537px;*/
        height: 420px;
    }
    .features-list-img{
        /*width: 537px;*/
        height: 100%;
    }
    #data-youtube-iframe{
        width: 100%;
        height: 100%;
        border: none;
    }

    /* footer */
    .footer-div{
        display: flex;
        justify-content: space-between;
    }
    .footer-left-div{
        width: 30%;
        display: flex;
        float: left;
        gap: 15px;
    }
    .footer-center-div{}
    .footer-right-div {
        width: 30%;
        display: flex;
        float: right;
    }
    .consent-inner {
        display: inline-flex;
        align-items: center;
    }
    .main-flex{
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .sketchup-logo-main {
        height: 50px;
    }
    .left-side{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .right-side{

    }
    .main-page-img{
        /*width: 400px;*/
        /*height: 500px;*/
        /*object-fit: cover;*/
        /*object-position: 50% 0%;*/
        width: 500px;
        height: 500px;
        object-fit: cover;
        object-position: 99% 0%;
        border-radius: 350px;
    }
    .main-logo-text-div {
        display: inline-flex;
        gap: 10px;
    }

} /* end duze ekrany */

/* MOBILE - male ekrany */
@media only screen and (max-width: 799px){
    .mobile-only{
     display: block;
    }
    .pc-only{
     display: none;
    }

    h1{
        font-size: 30px;
    }
    h2{
        font-size: 27px;
    }
    h3{
        font-size: 20px;
    }
    h4{
        font-size: 18px;
    }
        .side-menu-text{}
        .side-menu-link-text{
            color: #003eff;
        }
        body {
            width: 100%;
            height: 100%;
            margin: 0px;
        }
        .container{
            display: grid;
            grid-template-columns: 100%;
            grid-template-rows: 60px 10px 60px 1000px auto auto auto;
            grid-gap: 30px !important;
            grid-template-areas:
                "logo"
                "header"
                "center_text"
                "ext_description"
                "main"
                "aside"
                "footer";
            justify-content: stretch;
            /*width: 100vw;*/
            /*height: 100vh;*/
        }
        .tiles-container{
            display: grid;
            grid-template-columns: 100%;
            grid-template-rows: 60px 10px 60px auto auto auto auto;
            grid-gap: 30px !important;
            grid-template-areas:
                "logo"
                "header"
                "center_text"
                "ext_description"
                "main"
                "aside"
                "footer";
            justify-content: stretch;
        }

        .main_page_container{
            display: grid;
            grid-template-columns: 100%;
            grid-template-rows: 80px 0 0 1fr auto auto auto;
            /*grid-gap: 30px !important;*/
            grid-template-areas:
                "logo"
                "header"
                "center_text"
                "main"
                "ext_description"
                "aside"
                "footer";
            justify-content: stretch;
            /*width: 100vw;*/
            height: 100vh;
        }
        .youtube-div {
            border: solid 1px rgba(238, 238, 238, 0.79);
            width: 100vw;
            /*height: 56vw; bo CLS*/
            height: 220px;
        }
        #data-youtube-iframe{
            width: 100%;
            height: 100%;
            border: none;
        }
        .main-page-buttons-bar {
            margin-top: 20px;
            margin-bottom: 120px; /* wypozycjonwoanie - nieeleganckie*/
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            height: 50px;
            gap: 40px;
        }
        .extension-description-div {
            padding: 10px !important;
        }
        .ext-side-div {
            margin: 0px !important;
            width: 100% !important;
        }

        .side-menu-div{
            /*display: none !important;*/
            width: 100vw;
            padding: 5px !important;
        }
        .top-menu-div {
            display: none !important;
        }

        /* Mobile menu */
        .mobile-top-nav{
            overflow: hidden;
            background-color: #333;
            position: absolute;
            right: 0;
            top: 0;
        }
        #topBtn {
            top: 70px;
            right: 20px;
        }
        .skp-logo-img{
            width: 90%;
        }
        .big-img{
            width: 90%;
        }
        .features-list-img{
            width: 100%;
        }
        .products-category-div {
            gap: 50px !important;
            padding: 10px !important;
        }
        .products-category-flex-boxes{
            /*height: 140vh !important;*/
            width: 75% !important;
            display: grid !important;
            grid-template-columns: 1fr !important;
            grid-template-rows: auto !important;
            grid-gap: 90px !important;
        }
        .products-category-box.category-all{
            grid-column: 1 !important;
        }
        .home-page-dives {
          padding: 20px 10px 30px 10px !important
        }
        .main-div{
            margin-bottom: 0px !important;
            height: 100% !important;
            border-radius: 0 0 0 40vw !important;
        }
        .main-flex {
            width: 90%;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            flex-direction: column;
            margin-bottom: 50px;
        }
        .left-side {
            margin-top: 50px;
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            flex-wrap: nowrap;
        }
        .right-side{

        }

        .main-page-img {
            width: 100%;
            /*height: 400px;*/
            object-fit: cover;
            object-position: 50% 0%;
            margin-top: 55px;
            /*border-radius: 170px;*/
        }

        .sketchup-logo-main{
            height: 90px;
        }

        .services-flex-boxes {
                /* height: 140vh !important; */
            width: 75% !important;
            display: grid !important;
            grid-template-columns: 1fr !important;
            grid-template-rows: auto !important;
            grid-gap: 31px !important;
        }
        .service-text-div {
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
        .hook-flex-boxes {
            /* height: 140vh !important; */
            width: 75% !important;
            display: grid !important;
            grid-template-columns: 1fr !important;
            grid-template-rows: auto !important;
            grid-gap: 31px !important;
        }
        .numbers-box {
            flex-direction: column !important;
            gap: 40px !important;
        }
        .story-div {
            flex-direction: column !important;
        }

        .knowledge-flex-div {
            gap: 50px !important;
            padding: 10px !important;
        }
        .knowledge-flex-boxes{
            display: grid !important;
            grid-template-columns: 1fr !important;
            grid-template-rows: auto !important;
            grid-gap: 31px !important;
        }
        .knowledge-box-img {
            max-width: 100%;
            /*max-height: 55vw !important;*/
        }
        .suggested-articles-flex-boxes {
            flex-direction: column;
        }
        .special-deals-flex-boxes{
            /*height: 1000px !important;*/
            width: 95% !important;
            grid-template-columns: 1fr !important;
            grid-template-rows: 1fr 1fr 1fr !important;
            grid-gap: 30px !important;
            padding-top: 40px;
        }
        .special-deals-box{
            /*height: 500px !important;*/
            background-color: #efeeeea8;
            padding-top: 40px !important;
            padding-bottom: 40px !important;
        }
        .side_paddle_btn {
            align-self: center !important;
        }
        .trial-info-layer {
            position: absolute !important;;
            height: 200% !important;;
        }
        .trial-info-div {
            width: 90% !important;;
            /*height: 100% !important;;*/
            justify-content: flex-start !important;;
        }

        /* footer */
        .footer-div{
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            justify-content: space-between;
        }
        .footer-left-div{
            width: 100%;
            display: flex;
            justify-content: space-around;
            padding: 20px;
        }
        .footer-center-div{}
        .footer-right-div {
            width: 100%;
            display: flex;
            justify-content: space-around;
            padding: 20px;
        }

        /* obrazki knowledge */
        .img-div {
            width: 100%;
            text-align: center;
        }
        img.img {
            width: 100% !important;
        }

        /* nie nadpisac display! - bo cookies sie pojawia na Mobile */
        .consent-div{
          padding: 2px !important;
        }

        .consent-inner{
            display: inline-flex !important;
            flex-direction: column;
            padding: 10px !important;
        }

        .cookie-consent-button{
            padding: 10px !important;
        }
        .main-logo-text-div {
            display: inline-flex;
            gap: 30px;
            flex-direction: column;
        }
} /* end Male ekrany */


/*gdy nie spelnia warunku @media min-width*/
.container {

}


/* start - mobile menu  */
.mobile-top-nav #mobileMenuLinks {
    display: none;
    width: 50vw; /*szerokosc menu*/
}

.mobile-top-nav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.mobile-top-nav div.icon {
    background: #ff061f;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    font-size: 40px;
    position: relative;
    right: 0;
    top: 0;
}

.mobile-top-nav a:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}
.mobile-top-nav a i{

}



.active {
    background-color: #04AA6D;
    color: white;
}
/* end - mobile menu  */



footer {
    border-radius: 0px;
    padding: 5px;
    /*background-color: rgb(207,232,220);*/
}


/*              GRID Layout                  */
#logo-div {
    grid-area: logo;
    min-width: 150px;
    min-height: 60px;
    display: flex;
    gap: 6px;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 5px;
    padding-top: 5px;
}
#logo-div:hover {
    transform: scale(1.05);
    font-weight: bold;
}


header {
    grid-area: header;
    justify-self: end;
    align-self: end;
}
article {
    grid-area: main;
    height: fit-content;
    /*dla flex - nie dziala vh w div*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
}

.extension-description-div {
    grid-area: ext_description;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.center-text-div{
    grid-area: center_text;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}
.knowledge-text-div{
    text-align: justify;
    margin-left: 5px;
    margin-right: 5px;
}

aside {
    grid-area: aside;
    /*border-right: solid 1px rgba(238, 238, 238, 0.79);*/
}
footer {
    background-color: #363545;
    grid-area: footer;
    align-self: flex-end;
}

.footer-social-icons a {
    color: white;
    text-align: center;
    padding: 0px 8px;
}
.footer-social-icons a:hover, .dropdown:hover .dropbtn {
    color: black;
}



/*listy menu*/
.top-menu-div {
    display: flex;
    flex-direction: row;
    grid-column-gap: 20px;
    list-style-type:none;
}


.side-menu-div{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}
.side-menu-category-div{
    display: flex;
    flex-direction: column;
    gap: 7px;
    /*border: solid 1px lightgray;*/
}
.side-menu-link-text {
    width: fit-content;
}
.menu-category{
    text-align: center;
    font-weight: bold;
}


/* skp logo */
.sketchup{
    /*text-align: center;*/
    padding-top: 50px;
}
.skp-logo-img{

}

/* Main page buttons bar */
.main-page-buttons-bar{
    /*width: 50%;*/
    margin-top: 60px;
    margin-bottom: 140px; /* wypozycjonwoanie - nieeleganckie*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    gap: 10px;
}


.main-page-button {

}
.main-page-button a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border: 1px solid #ff061f;
    background-color: #ff061f;
}
.main-page-button a:hover, .dropdown:hover .dropbtn {
    color: black;
    background-color: white;
    border: 1px solid #ff061f;
}



/*icons styling*/
/* button */
a i.btn-icon{
    font-size: 17px; color: white;
}
a:hover i.btn-icon{
    font-size: 17px; color: black;
}
.btn-icon{padding-right: 5px;}

/* top menu icon */
a i.top-menu-icon{
    font-size: 17px;
    padding-right: 7px;
}
a:hover i.top-menu-icon{
    font-size: 20px;
}


/* link */
a i.link-icon{
    font-size: 20px; color: #ff061f;
}
a:hover i.link-icon{
    font-size: 20px; color: black;
}
.link-icon{padding-right: 7px;}



i.services-icon{
    height: 45px;
    font-size: 40px;
    color: #ff061f;
}

i.extensions-category-icon{
    height: 45px;
    font-size: 40px;
    color: #ff061f;
}

i.download-icon{
    width: 100%;
    text-align: center;
    height: 75px;
    font-size: 75px;
    color: #ff061f;
}



.home-page-dives{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px;
    gap: 30px;
}

.main-div{
    padding: 0px !important;
    gap: 0px !important;
    height: fit-content;
    min-height: 75vh;
    background-color: #d3d3d387;
    border-radius: 0 0 0 15vw;
}


.hook-div{
    /*background: #363545;*/
    /*display: inline-flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
}
.hook-line {
    font-size: 35px;
}

.scope-div{
    background: #d3d3d387;
    border-radius: 15vw 0 0 0;
}

.service-div{
    background: #d3d3d387;
    border-radius: 0 0 50vw 50vw;
}

.gray-div{
    background: #d3d3d387;
}

.service-text-div{
    padding-left: 20%;
    padding-right: 20%;
    text-align: justify;
}
.contact-div{
    /*background: #d3d3d387;*/
    /*border-radius: 50vw 0px 0px 50vw;*/
}

.numbers-div{
    background: #363545;
}
.numbers-div *{
   color:#f3f2f2;
}


.purchase-page-div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}


.extension-div{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-bottom: 30px
}


.extension-img{
    width: 75%;
    border: solid 1px #EDEDED;
}

/* opis extensions */
i.ext-side-icons{
    width: 30px; /* realizuje odsuniecie rowno tekstu od icon*/
    height: 25px;
    font-size: 20px;
    color: #ff061f;
}

i.info-black-icons {
    width: 25px; /* realizuje odsuniecie rowno tekstu od icon*/
    height: 25px;
    font-size: 20px;
    color: #363545;
}

i.info-black-icons:hover {
    color: #ff061f;
}

.services-div{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 5px;
}
.about-div{
    /*height: 100%;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: justify;
    padding-left: 15vw;
    padding-right: 15vw;
}
.story-div{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: justify;
    gap: 100px;
}
.story-text-div{
    text-align: justify;
}

.services-div {
    gap: 70px  !important;
}
.services-flex-boxes{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px;
    grid-gap: 20px;
}
.hook-flex-boxes{
    /*width: min-content;*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 70px;
    grid-gap: 20px;
}

.service-box{
    height: 200px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 10px;
    border: 1px solid #ededed;
    border-radius: 20px;
    cursor: default;
}
.service-box:hover {
    border-radius: 20px;
    background-color: #f3f3f3;
    box-shadow: 0px 0px 5px 3px #5c5b5b4a;
}

.service-box .services-hovered{display: none;}
.service-box:hover .services-hovered{display: block;}
/*.service-box:hover .services-icon{display: none;}*/

.service-box .services-copy-btn{display: none;}
.service-box:hover .services-copy-btn{display: block; font-weight: bold}

.testimonial-box{
    h3{
        margin: 0 0 0 0;
    }
    p{
        margin-top: 0;
    }
}

.testimonial-div{
    /*width: 300px;*/
}


.hook-box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    padding: 10px;
    text-align: left;
}
.hook-box-title{
    width: 250px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    text-align: left;
}
.numbers-box{
    display: flex;
    /*flex-direction: row;*/
    justify-content: center;
    gap: 15vw;
    padding: 10px;
    text-align: left;
}

.download-div {
    display: flex;
    justify-content: center;
}
.download-flex-boxes{
    display: grid;
    grid-template-columns: 1fr;
    /*grid-template-rows: 1fr 1fr 1fr;*/
    gap: 50px;
    grid-gap: 30px;
    width: fit-content;
}
.download-box{
    border: 1px solid #ededed;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    /*padding: 20px;*/
}
.download-box:hover {
    border-radius: 20px;
    background-color: #f3f3f3;
    transform: scale(1.1);
}
.download-box a {
    padding: 20px;
    text-align: center;
}

.products-category-div{
    /*height: 900px;*/
    /*width: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    gap: 30px;
    /*padding-bottom: 100px;*/
}
.products-category-title-div{
    display: inline-flex;
    gap: 20px;
    margin-top: 90px;
    margin-bottom: 90px;
}

.products-category-flex-boxes{
    /*height: 400px;*/
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 90px;
}
.products-category-box{
    border: 1px solid #ededed;
    border-radius: 5px;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 25px;
    padding: 20px 20px 10px 20px;
    /*transition: all .4s ease;*/
    /*-webkit-transition: all .4s ease;*/
}
.products-category-box a {

}
.products-category-box.category-all{
    grid-column: 1/3;
}
.products-category-box:hover{
    box-shadow: 0px 0px 5px 3px #5c5b5b4a;
}

.extension-name{

}
.extension-description{

}



.products-category-box span{display: block;}
.products-category-box:hover span{display: none;}

.products-category-box .extensions-cat-hovered{display: block;}
.products-category-box:hover .extensions-cat-hovered{display: none;}

.products-category-box .extensions-category-icon{display: block;}
.products-category-box:hover .extensions-category-icon{display: none;}

.products-category-box .extensions-cat-ext-list-hovered{display: none;}
.products-category-box:hover .extensions-cat-ext-list-hovered{display: block;}

.products-category-box .extension-metrics-div{display: inline-flex; justify-content: space-between; color: #808080; font-size: medium;}
.products-category-box:hover .extension-metrics-div{display: none;}


    /*color: #363545ad;*/

.special-deals-flex-boxes{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 50px;
}
.black-friday-deals-flex-boxes {
    width: 55%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 50px;
}
.special-deals-box{
    border: 1px solid #ededed;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    padding: 25px;
}
.black-friday-deals-box {
    border: 1px solid #ededed;
    background: #a6c5a652;
    box-shadow: 0px 0px 3px 3px #a6c5a652;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.special-deals-box a {

}
.special-deals-box img{
    width: 100%;
    align-self: center;
}

.special-deals-box ul{
    list-style-position: inside;
    padding-left: 10px;
    text-align-last: left;
}
.black-friday-deals-box ul{
    list-style-position: inside;
    padding-left: 10px;
    text-align-last: left;
}

.special-deals-box:hover{
    background-color: #ededed3d;
    box-shadow: 0px 0px 5px 3px #5c5b5b4a;
}
.black-friday-deals-box:hover{
    background-color: rgb(166 197 166 / 23%);
    box-shadow: 0px 0px 10px 10px rgba(166, 197, 166, 0.73);
}




/*clients*/
.clients .flex-boxes{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

.clients .box{
    display: inline-block;
    padding: 20px;
}

.client-img{
    height: 40px;
}

.clients-text{

}


.contact-flex-boxes{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px;
    grid-gap: 20px;
}


#data-description-div{
    /*protect CLS*/
    /*min-height: 960px;*/
}

#extension-features{
    /*protect CLS*/
    min-height: 340px;
}

.ext-side-div{
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 20px;
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    /*border-top: solid 1px rgba(238, 238, 238, 0.79);*/
}
.ext-side-titles{
    font-weight: bold;
    text-align: center;
}
/* prevent Cumulative Layout Shift (CLS) */
.paddle-button-p{
    height: 60px;
}


.paddle_button{
    font-family: 'Source Sans Pro', Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif !important;
    font-size: 22px !important;
    text-shadow: none !important;
    width: 135px !important;
    height: 50px !important;
    border: none !important;
    border-radius: 30px !important;
    text-align-last: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: #409701 !important;
    color: #FFFFFF!important;
}
.paddle_button:hover {
    transform: scale(1.1);
    font-weight: bold;
}

.deals_paddle_button{
    font-family: 'Source Sans Pro', Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif !important;
    font-size: 22px !important;
    text-shadow: none !important;
    width: 70% !important;
    height: 50px !important;
    border: none !important;
    border-radius: 30px !important;
    text-align-last: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: #409701 !important;
    color: #FFFFFF!important;

    align-self: center;
}
.deals_paddle_button:hover {
    transform: scale(1.1);
    font-weight: bold;
}


.side_paddle_btn{
    height: 20px !important;
    width: 90% !important;
}

/*scroll TOP floating button*/
#topBtn {
    display: none;
    position: fixed;
    /*bottom: 110px;*/
    /*left: 30px;*/
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}
#topBtn:hover {
    background-color: white;
    color: red;
}

/*  knowledge */

.knowledge-div {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.knowledge-flex-div{
    /*height: 900px;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-bottom: 20px;
}

.knowledge-flex-boxes{
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 31px !important;
}
.knowledge-box{
    border: 1px solid #ededed;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    gap: 25px;
}
.knowledge-box:hover {
    /*background-color: #f3f3f3;*/
    /*transform: scale(1.1);*/
    background-color: #ededed3d;
    box-shadow: 0px 0px 5px 3px #5c5b5b4a;
}
.knowledge-box-img-div{
    align-self: center;
}
.knowledge-box-img{
    /*max-width: 200px;*/
    max-height: 350px;
}
.knowledge-box-text-div{
    padding: 0 10px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.knowledge-box-text-div h2{
    font-size: 25px;
}

.suggested-articles{
    text-align: center;
    border-radius: 5px;
}
.suggested-articles-flex-boxes{
    margin: 10px;
    display: flex;
    gap: 30px;
    justify-content: center;
}
.suggested-articles-box{
    border: 1px solid #ededed;
    border-radius: 5px;
}
.suggested-articles-box:hover{
    background-color: #ededed3d;
    box-shadow: 0px 0px 5px 3px #5c5b5b4a;
}
.suggested-articles-img-div{
    width: 100%;
    /*height: 100%;*/
}
.suggested-articles-img{
    max-width: 100%;
 /* max-height: 350px; */
}



.suggested-extensions{
    text-align: center;
    border-radius: 5px;
    padding-top: 50px;
    padding-bottom: 50px
}
.suggested-extensions-flex-boxes{
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}
.suggested-extensions-box{
    border: 1px solid #ededed;
    border-radius: 5px;
    width: 230px;
    padding: 5px;
}
.suggested-extensions-box:hover{
    background-color: #ededed3d;
    box-shadow: 0px 0px 5px 3px #5c5b5b4a;
}
.suggested-extensions-img-div{
    width: 100%;
}
.suggested-extensions-img{
    max-width: 100%;
}


/* obrazki wewnatrz knowledge */
.img-div {
    width: 100%;
    text-align: center;
}

.knowledge-list{
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.knowledge-list ul{
    list-style-type: disc;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.numeric-list{
    list-style-type: decimal;
}
.disc-list{
    list-style-type: disc;
}
.decimal-list{
    list-style-type: decimal;
    gap: 45px;
    line-height: 26px;
}

.consent-div{
    display: block;
    position: fixed;
    padding: 28px;
    bottom: 0px;
    background-color: #363545;
    color: #FFF;
    text-align: center;
    width: 100%;
    z-index: 99999;
}
.cookie-consent-button{font-size: 20px; color: white; font-weight: bold; background-color: red; padding: 20px; margin: 20px;border: 1px solid red;}
.cookie-consent-button:hover{color: black !important; background-color: white; border: 1px solid red}

.stars-div{
    display: inline-flex;
}

.checked{
    color: orange;
}
.unchecked{
    color: lightgray;
}