@font-face {
    font-family: "Roboto";
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root{
    --primary-color: #705CF2;
    --secondary-color: #99A6BF;
    --primary-bright: #F2F2F2;
    --secondary-bright: #E8E8E8;
    --darkbright: #D6D6D6;
    --primary-dark: #0D0D0D;
    --secondary-dark: #474747;
    --contrast: #8C7D61;
    --primary-bright-transparent: #f2f2f2d8;
    --primary-bright-transparentVery: #f2f2f231;
}
html, body, div, span,
h1, h2, h3, h4, h5, h6, p,
a, center, ol, ul, li, footer, header,
menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
    border-spacing: 0;
    box-sizing: border-box;
    overflow: hidden;
}
ol, ul {
	list-style: none;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: "Roboto", system-ui, sans-serif;
    overflow: hidden;
    overflow-y: scroll;
}
a, p{
    text-decoration: none;
}
a:hover{
    color: var(--primary-color);
}
header{
    position: fixed;
    width: 100%;
    z-index: 99;
}
.logo{
    background-image: url(./images/logo.png);
    width: 200px;
    height: 59px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

nav{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 100%;
    /* height: 0.1rem;     */
    background-color: var(--primary-bright);
    z-index: 999;
}
nav ul{
    display: flex;
    justify-content: space-evenly;
    width: 35%;
    font-weight: 500;
}

nav ul li span {
    background-color: var(--primary-color);
    padding: 7px 10px 7px 10px;
    border-radius: 10px;
    color: whitesmoke;
}
nav ul li span:hover{
    color: var(--primary-dark);
}

main{
    padding-top: 3.7rem;
}







.homepage-container{
    height: 93.8vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;


    background-image: url(./images/heroBG.jpg);
    background-color: rgba(0, 0, 0, 0.555);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.homepage-top{
    display: flex;

    color: var(--primary-bright);

    

    width: 80%;
    height: 90%;
}

.homepage-top-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;



    width: 100%;
}

.homepage-top h1{
    font-size: 5.5rem;
    text-align: start;
}
.homepage-top p{
    width: 50%;
    text-align: start;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.homepage-top a{
    background-color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 0.3rem;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--secondary-bright);
}
.homepage-top a:hover{
    color: var(--primary-dark);
}

.homepage-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30%;
    /* background-color: red; */
    
}
.homepage-bottom-left{
    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 70%;
}
.homepage-cards-container{
    /* background-color: var(--primary-bright-transparentVery); */

    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;

    width: 100%;
    height: 100%;
}
.homepage-cards-text{
    display: flex;
    align-items: center;
    justify-content: start;


    width: 100%;
    height: 20%;
    font-size: 2rem;
    color: var(--primary-bright);
}
.homepage-cards-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 80%;

    background-color: var(--secondary-bright);

}


.homepage-card{    
    background-color: var(--primary-bright);
    /* border: 1px var(--primary-color) solid; */
    width: 33.4%;
    height: 100%;
    /* border-radius: 2rem; */
    /* padding: 10px; */

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    transition: transform 0.2s;
}
.homepage-card:nth-of-type(1){
    background-image: url(./images/Insert-logo.jpg.png);
    background-size: cover;
}
.homepage-card:nth-of-type(2){
    background-image: url(./images/Comarch_logo.svg.png);
}
.homepage-card:nth-of-type(3){
    background-image: url(./images/ESET_logo.svg.png);
}
.homepage-card:nth-of-type(4){
    background-image: url(./images/posnet-logo.jpg);
}
.homepage-card:hover{
    transform: scale(0.98);
    background-color: var(--secondary-bright);
}

.homepage-bottom-right{
    /* display: flex;
    align-items: end;
    justify-content: flex-end;
    flex-direction: column;
    height: 100%;
    width: 30%; */
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100%;
    width: 30%;
}
.homepage-bottom-right-text{
    display: flex;
    align-items: center;
    justify-content: start;


    width: 100%;
    height: 20%;
    font-size: 2rem;
    color: var(--secondary-bright);
}
.homepage-bottom-right-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 80%;
    width: 100%;
    background-color: var(--secondary-bright);
    /* padding-left: 20%; */
    text-align: center;
}
.homepage-bottom-right-wrapper a{
    font-size: 2rem;
    width: 100%;
    background-color: var(--primary-bright);
    width: 70%;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: transform 0.2s;
}
.homepage-bottom-right-wrapper a:hover{
    transform: scale(0.98);
    /* background-color: var(--secondary-bright); */
}
.homepage-bottom-right-wrapper a img{
    width: 24%;
    margin-left: 20px;
    /* vertical-align: middle; */
}


.aboutpage-imagedisplay{
    background-image: url(./images/test.jpg);
    background-position: center;
    background-size: cover;

    box-shadow: 0px 0px 50px 0px var(--primary-dark) inset;
}

.aboutpage-container{
    /* padding: 30px; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: start;
    height: 40vh;
    background-color: var(--secondary-bright);
    overflow: hidden;
    position: relative;
}
.aboutpage-text-wrapper p{
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: 1px;
}
.about-scroll{
    position: relative;
    top: -30vh;
}
.serwis-scroll{
    position: relative;
    /* top: -3vh; */
}
.aboutpage-text-wrapper{
    width: 55%;
    margin-left: 50px;
}
.aboutpage-text-toptext{
    padding-bottom: 20px;
}
.aboutpage-imagedisplay{
    position: relative;
    height: 100%;
    width: 45%;
    display: flex;
    flex-direction: row;
    align-items: center;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10% 100%
    );
}

.aboutpage-imagedisplay .box{
    content: '';
    width: 50px;
    height: 100%;
    background-size: contain;
    background-position: center;
    height: 100%;
    width: 33%;
}
.box:nth-of-type(1){
    background-image: url(./images/Insert-logo.jpg.png);
}
.box:nth-of-type(2){
    background-image: url(./images/Comarch_logo.svg.png);
}
.box:nth-of-type(3){
    background-image: url(./images/assecoWaproLogo.png);
}

.serwispage-container{
    background-color: var(--primary-bright);
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.serwispage-cards-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;


    width: 100%;
    height: 60%;
    

    padding-top: 50px;
    padding-bottom: 50px;
}

.serwispage-card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 25%;
    height: 100%;
    color: var(--primary-dark);
    
    background-color: var(--primary-bright-transparent);

    padding: 25px;

    border-top: 2px var(--secondary-dark) solid;
    border-bottom: 2px var(--secondary-dark) solid;
    /* border-radius: 2rem; */


}

.serwispage-card:nth-of-type(even){
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
.serwispage-card:nth-of-type(odd){
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);

}
.serwispage-bg{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

    background-image: url(./images/image2.jpg);
    background-position: center;
    background-size: cover;

    width: 100%;
    height: 100%;
}
.serwispage-title{



    color: var(--primary-dark);
    font-size: 3.5rem;
    font-weight: 450;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.serwispage-title h1{
    background-color: var(--primary-bright-transparent);
    padding: 20px;
    border-radius: 10px;
    border-top: 2px var(--secondary-dark) solid;
    border-bottom: 2px var(--secondary-dark) solid;
}
.serwispage-card ul{
    list-style-type: disc;
}
.serwispage-card ul li p{
    color: var(--primary-dark);
}
.serwispage-card h1{
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
}
.serwispage-card-title{
    display: flex;
    align-items: center;
    justify-content: center;



    height: 20%;
    width: 100%;
}
.serwispage-card-text{
    display: flex;
    align-items: center;
    justify-content: center;

    height: 90%;
    width: 80%;

    text-shadow: 0px 0px 0px white;

    font-weight: bold;

    font-size: 1rem;
}
.serwispage-card-text ul li{
    line-height: 1.6;
    font-size: 1.1rem;

}

.serwispage-download{

    width: 90%;
    height: 30%;

    color: var(--primary-dark);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* padding: 20px; */

}
.serwispage-download-title{
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.serwispage-download-cardwrapper{

    display: flex;
    align-items: start;
    justify-content: center;

    width: 100%;
    height: 100%;



}

.serwispage-download-card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 80%;
    width: 50%;
}
.serwispage-download-card h1{
    font-size: 1.2rem;
    height: 20%;
}
.serwispage-download-card h1 span{
    color: red;
}
.serwispage-download-cardimage{
    content: '';
    width: 60%;
    height: 65%;
    background-image: url(./images/TeamViewerLogo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: var(--secondary-bright);
    background-blend-mode: multiply;
    
    border-left: 2px var(--secondary-dark) solid;
    border-right: 2px var(--secondary-dark) solid;
    
}




.serwispage-infotext p{
    color: var(--primary-dark);
    width: 100%;
    height: 20%;
}
.serwispage-infotext{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-bright);
    padding: 10px;
}
.serwispage-infotext-wrapper{
    width: 80%;
    text-align: center;
    font-size: 1rem;
}

.contactpage-container{
    background-color: var(--secondary-bright);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 100vh;
}
.contactpage-contactinfo{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    font-size: 1.5rem;
}
.contactpage-text-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contactpage-contactinfo-text{
    width: 70%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    letter-spacing: 0.7px;
    line-height: 1.2;
    font-size: 1.2rem;
}
.contactpage-contactinfo-text h1{
    font-weight: bold;
    font-size: 2rem;
}

@media only screen and (max-width: 1024px){
    .serwispage-title{
        font-size: 1.5rem;
    }
    .serwispage-card-title h1{
        font-size: 1.4rem;
    }
    .serwispage-card-text ul li{
        font-size: 0.8rem;
    }
    .homepage-top h1{
        font-size: 3rem;
    }
    .homepage-card:nth-of-type(1){
        background-size: contain;
    }
    .homepage-card{
        background-size: contain;
    }
}
@media only screen and (max-width: 768px){
    .homepage-top h1{
        font-size: 2.5rem;
    }
    .homepage-top p{
        width: 70%;
    }
    .homepage-bottom{
        flex-direction: column;
        height: 50%;
    }
    .homepage-bottom-left{
        width: 100%;
    }
    .homepage-bottom-right{
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .homepage-bottom-right-wrapper{
        padding: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .homepage-bottom-right-wrapper a{
        text-align: center;
    }

    .aboutpage-imagedisplay{
        display: none;
    }
    .aboutpage-text-wrapper{
        width: 100%;
                padding: 0;
        margin: 0;
        text-align: center;
    }

    .serwispage-title{
        font-size: 1.8rem;
    }
    .serwispage-card-text ul li{
        font-size: 0.7rem;
    }
    .serwispage-download-card h1{
        font-size: 0.9rem;
    }
    .contactpage-googlemaps{
        display: none;
    }
    .contactpage-container{
        height: auto;
    }
    .contactpage-contactinfo{
        flex-direction: column;
    }

}
@media only screen and (max-width: 425px){ 

    .homepage-top h1{
        text-align: center;
    }
    .aboutpage-text-wrapper{
        font-size: 0.8rem;
    }
    .serwispage-container{
        height: auto;
        overflow: hidden;
    }
    .serwispage-card{
        clip-path:none;
        padding: 70px;
        width: 90%;
    }
    .serwispage-title{
        text-align: center;
    }
    .serwispage-cards-wrapper{
        flex-direction: column;

    }
    .serwispage-download-cardwrapper{
        flex-direction: column;
    }
    .serwispage-download-card{
        flex-direction: column;
    }
    .serwispage-download-cardimage{
        height: 100px;
        width: 200px;
    }
}
@media only screen and (max-width: 425px){
    .aboutpage-text-wrapper{
        font-size: 0.7rem;
    }
    .homepage-cards-wrapper{
        flex-direction: column;
    }
    .homepage-card{
        width: 70%;
        height: 100%;
    }
    .homepage-card:nth-of-type(1){
        background-size: contain;
    }
    .homepage-cards-text h1{
        font-size: 1.3rem;
    }
    .homepage-bottom-right-wrapper a{
        font-size: 1.5rem;
    }
    nav{
        display: none;
    }
    main{
        padding-top: 0;
    }
}
@media only screen and (max-width: 1440px){
    header{
        width: 100vw;
    }
    nav{
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
    }
    nav ul{
        width: 100%;
    }
    .serwispage-card-title h1{
        /* font-size: 1.4rem; */
    }
    .serwispage-card-text ul li{
        font-size: 0.8rem;
    }
    .serwispage-title{
        font-size: 2.6rem;
        font-weight: bold;
    }
}