<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: SuisseBold;
    src: url(./fonts/Suisse-Intl-Bold.ttf);
    font-display: swap;
  }

@font-face {
    font-family: SuisseReg;
    src: url(./fonts/SuisseIntl-Regular.ttf);
    font-display: swap;
  }
  
@font-face {
    font-family: SuisseThin;
    src: url(./fonts/SuisseIntl-Thin.otf);
    font-display: swap;
  }

@keyframes h-stretch {
	0% {
		-webkit-transform: skewY(-10deg);
		        transform: skewY(-10deg); 
	}
	
	
	100% { 
		-webkit-transform: skewY(10deg);
		        transform: skewY(10deg); 

	}
}

@keyframes y-stretch {
	0% {
		-webkit-transform: skewX(-10deg);
		        transform: skewX(-10deg); 
	}
	
	
	100% { 
		-webkit-transform: skewX(10deg);
		        transform: skewX(10deg); 

	}
}
  

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: SuisseReg, sans-serif;;
}

body{
    font-family: SuisseReg, sans-serif;
    overflow-x: hidden;
    background-color: #222228;
    
}
/* OLD BLACK COLOUR: #111111 */

main{
    width: 100%;

}

ul{
    list-style: none;
 }
 
 li{
 -webkit-user-select: none; /* Safari */        
 -moz-user-select: none; /* Firefox */
 -ms-user-select: none; /* IE10+/Edge */
 user-select: none; /* Standard */
 }


.nav-mobile{
    position: fixed;
    right: -500px;
    width: 250px;
    height: 400px;
    background-color: #000;
    transition: .5s;
    z-index: 999;
    font-weight: bold;
    letter-spacing: 6px;
    border-bottom-left-radius: 50px;
    opacity: 90%;
}

#removeBorder{
    border-bottom: none;
}

.nav-mobile ul li{
    color: #ffffff;
    text-align: left;
    text-transform: uppercase;
    list-style-type: none;
    font-size: 1.5em;
    padding: 50px 30px;
    border-bottom: 1pt solid #252525;
}


.hamburger, .bar{
    position: fixed;
}


.bar{
    top: 3px;
    background: white;
    width: 100%;
    height: 5px;
    transition: all .3s ease-in;
}

#bar2{
    top: 11px;
}

#bar3{
    top: 19px;
}

.nav-mobile.active{
    right: -1px;
}

.hamburger.open #bar1{
    background-color: #fff;
    transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.open #bar2{
    background-color: transparent;
}

.hamburger.open #bar3{
    background-color: #fff;
    transform: rotate(-45deg) translate(6px, -5px);
}







.navbar-container{
    width: 100%;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    margin-bottom: -70px;
    opacity: 100%;
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 999;
}

.navbar-logos-container{
    display: flex;
    gap: 30px;
    font-size: 30px;
    z-index: 999;
}

.navbar-left-container{
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

.navbar-icon{
    height: 40px;
    width: 35x;
    margin-top: 5px;
}

.navbar-name{
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 1px 2px 1px black;
}

.navbar-items-container{
    display: flex;
    list-style: none;
    gap: 50px;
    font-size: 20px;
    z-index: 999;
    letter-spacing: 3px;
    margin-left: -5px;
}

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

.navbar-item:hover{
    font-weight: bold;
    cursor: pointer;
}

#navbarThin{
    font-family: SuisseThin;
}


.imgbg{
    background-image: url(./images/scissorbgBLACK.png);
    position: absolute;
    width: 100%;
    height: 230%;
    opacity: 0.10;
}


@-webkit-keyframes animatedBackground {
    100% {
      -webkit-background-position: -16px 100%;
    }
  }

@keyframes animatedBackground {
    100% {
      background-position: -16px 100%;
    }
  }

.hero-container{
    width: 100%;
    height: 95vh;
    margin-bottom: -100px;
    background-image: linear-gradient(180deg,#222228 0,rgba(34, 34, 40, 0.5) 100%), url(https://www.senoweb.cz/assets/svgs/hero/waves-pattern.svg);
    background-size: cover; 
    position: relative;
    left: 0px;
    bottom: 0px;
    z-index: 1;
    background-position: 0px 0px;
    background-repeat: repeat-y;
    -webkit-animation: animatedBackground 25s linear infinite;
    -webkit-animation-fill-mode: forwards;
    animation: animatedBackground 25s linear infinite;
    animation-fill-mode: forwards;
}

.hero-top-container{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
}

.hero-top-container-inner-1{
    padding: 5px 5px 5px 5px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    opacity: 100%;
}

.hero-top-container-inner-2{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-button{
    padding: 10px 60px 10px 60px;
    border-radius: 25px;
    border: 2px white solid;
    font-size: 20px;
    transition: 0.4s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-top-header-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -10px;
    margin-top: 50px;
}

.hero-icon{
    height: 90px;
    width: 80px;
    margin-top: 15px;

}

.hero-name-top,.hero-name-bottom{
    font-size: 75px;
    color:white;
    padding: 10px;
}


.hero-name-top{
    font-family: SuisseThin;
    margin-bottom: -30px;
    margin-left: 10px;
    font-size: 50px;
    letter-spacing: 4px;
}

.hero-text{
    font-size: 27px;
    text-align: center;
    width: 40vw;
    font-family: SuisseThin;
    font-weight: bold;
    letter-spacing: 1.4px;
    text-shadow: 1px 1px 10px black;
    margin-bottom: 20px;
    z-index: 2;
}

.hero-button{
    position: relative;
    font-family: SuisseThin;
    text-shadow: 1px 1px 2px black;
    font-weight: bold;
    z-index: 2;
}

.hero-button:after {
  content: '»';
  font-size: 40px;
  position: absolute;
  opacity: 0;  
  top: -4px;
  right: -5px;
  transition: 0.5s;
}

.hero-button:hover{
  padding-right: 65px;
  padding-left:65px;
  background-color: white;
  color: black;
  text-shadow: 0px 0px 0px black;
}

.hero-button:hover:after {
  opacity: 1;
  right: 35px;
}

.hero-button:hover{
    cursor: pointer;
}

.hero-fade{
    position:absolute;
    left: 0;
    bottom: -1px;
    width:100%;
    height: 200px;
    background: linear-gradient(to top, #222228, transparent); 
    z-index: 1;  
}

.about-container{
    width: 100%;
    height: 800px;
    display: flex;
    margin-top: 175px;
    flex-wrap: wrap;
}

.about-container-left{
    position: relative;
    bottom: 0px;
    left: 0px;
    background-color: white;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 100px;
    flex: 1;

}

.about-title{
    text-align: center;
    font-family: SuisseReg;
    font-size: 40px;
    margin-top: -55px;
}

.about-text{
    text-align: center;
    font-size: 22px;
    font-family: Suissethin;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: -30px;
}

.about-top{
    margin-top: 20px;
}

.about-button-container{
    display: flex;
    gap: 50px;
}

.pagescore-container{
    display: flex;
    width: 100%;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pagescore-card{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

.pagescore-icon{
    width: 100px;
    height: 100px;
    background-color: #e5faef;
    border-radius: 50%;
    border: 4px solid #00cc66;
    color: #00cc66;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.pagescore-orange{
    border: 4px solid #ffaa33;
    color: #ffaa33;
}

.pagescore-red{
    border: 4px solid #d92e2e;
    color: #d92e2e;
}

.about-button{
    position: relative;
    font-family: SuisseThin;
    font-weight: bold;
    padding: 10px 60px 10px 60px;
    border-radius: 25px;
    border: 2px black solid;
    font-size: 20px;
    transition: 0.4s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.about-button:after {
  content: '»';
  font-size: 40px;
  position: absolute;
  opacity: 0;  
  top: -5px;
  right: -5px;
  transition: 0.5s;
}

.about-button:hover{
  padding-right: 65px;
  padding-left:65px;
  background-color: black;
  color: white;
}

.about-button:hover:after {
  opacity: 1;
  right: 30px;
}

.about-button:hover{
    cursor: pointer;
}

.tri-group-1{
    position: absolute;
    z-index: 5;
    top: 761.9px;
    margin-top: -1px;
    animation: y-stretch 7s ease-in-out infinite alternate-reverse;
}

.tri-group-2{
    position: absolute;
    left: 50%;
    margin-left: -51px;
    top: 120%;
    animation: h-stretch 5s ease-in-out infinite alternate;
}

.tri-group-1,.tri-group-2{
    z-index: 2;
}

.about-container-right{
    display:flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg,#222228 0,rgba(34,34,40,.8) 100%), url(./images/about.webp);
    background-position: left;
    background-size: cover;
    width: 50%;
    margin-top: 140px;
    z-index: 1;
}

.promo-image{
    height: 70%;
    width: 50%;
}

.promo-text{
    color: white;
    font-family: SuisseReg;
    font-weight: 100;
    text-align: center;
    font-size: 16px;
    opacity: 60%;
    display: flex;
}

.promo-logo{
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

.process-container{
    width: 100%;
    height: 1000px;
    color: white;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 150px 20px 20px 20px;
    gap: 100px;
}

.process-title{
    margin-top: 100px;
    font-size: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.process-inner-container{
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.process-card{
    width: 500px;
    background-color:white;
    color: black;
    font-size: 30px;
    padding: 30px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;


}

.process-card-top{
    display: flex;
    justify-content: space-between;
}

.process-card-icon{
    width: 50px;
    height: 50px;
    position: relative;
    opacity: 80%;
}

#card-icon-1{
    top: -10px;
    opacity: 70%;
}

#card-icon-2{
    top: -25px;
    height: 60px;
    width: 60px;
    opacity: 70%;
}

#card-icon-3{
    top: -10px;
}

#card-icon-4{
    top: -5px;
}

.process-card-title{
    margin-bottom: 20px;
}

.process-card-text{
    font-size: 22px;
}

#card1{
    margin-top: -100px;
}

#card3{
    margin-top: -100px;
}

.spantest{
    margin-left: 10px;
    margin-right: 5px;
    display: flex;
}

.services-container{
    width: 100%;
    height: 1000px;
    background: url(https://www.senoweb.cz/assets/svgs/hero/waves-pattern.svg) center bottom no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    margin-top:50px;
}

.services-container::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,#222228 0,rgba(34,34,40,0) 100%);
    margin-top: -3px;
}

.services-inner-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 200px;
    gap: 100px;
    width: 100%;
    z-index: 5;
}

.services-title{
    font-size: 50px;
    color: white;
    letter-spacing: 3px;
    text-align: center;
    z-index: 1;
    margin-top: -10px;
}


.services-tiles-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    gap: 30px;
    padding: 20px;
}

.service-tile{
    width: 400px;
    background: rgba(255,255,255,.05) 0 0 no-repeat padding-box;
    box-shadow: 0 3px 5px #0000001a;
    border-radius: 10px;
    padding: 20px 20px 30px 20px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    gap: 20px;
    background-color: white;
}

.service-tile-image{
    filter: brightness(0) invert(1);
    height: 40px;
}

.service-tile-title{
    font-family: SuisseReg;
    font-size: 35px;
    margin-bottom: 15px;
    text-align: center;
}

.service-tile-subtitle{
    font-size: 20px;
    margin-top: -25px;
    margin-bottom: 10px;
}

.service-tile-text-container{
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-checkmark{
    height: 25px;
    width: 25px;
    margin-top: -10px;
}

.service-tile-text{
    margin-top: -10px;
    font-size: 22px;
    font-family: SuisseReg;
}

.service-doesthiswork{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.service-tile-price{
    font-size: 70px;
    background: -webkit-linear-gradient(#cb0999, #3622a4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 30px;
}

.service-tile-price-subtitle{
    margin-top: -50px;
    margin-bottom: 20px;
}

.service-button{
    position: relative;
    font-family: SuisseThin;
    font-weight: bold;
    padding: 10px 60px 10px 60px;
    border-radius: 25px;
    border: 2px black solid;
    font-size: 25px;
    transition: 0.4s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.service-button:after {
  content: '»';
  font-size: 50px;
  position: absolute;
  opacity: 0;  
  top: -8px;
  right: -10px;
  transition: 0.5s;
}

.service-button:hover{
  padding-right: 60px;
  padding-left:60px;
  background-color: black;
  color: white;
  cursor: pointer;
}

.service-button:hover:after {
  opacity: 1;
  right: 30px;
}

#sb-2{
    margin-top: 69px;
}

.service-button:hover{
    cursor: pointer;
}

.review-container{
    width: 100%;
    height: 850px;
    color: white;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 200px 20px 20px 20px;
    margin-bottom: 500px;
    gap: 100px;
}

.reviewTitle{
    margin-top: -100px;
    font-size: 50px;
    padding-bottom: 50px;
}

.screenshotContainer{
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes animatedBackground {
    0%{ background-position: 0 0;

    }
    100% {
        background-position: 0 100%;
    }
  }

.screenshotCard{
    width: 500px;
    height: 350px;
    background-image: url(./images/longimage3.png);
    background-position: 0px 0px;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    transition: background-position 8.5s ease-in-out;
    margin-bottom: 100px;
}

#screenshotCard2{
    background-image: url(./images/longimage4.png);
    transition: background-position 8.5s ease-in-out;
}

#screenshotCard2:hover{
    transition: background-position 5s ease-in-out;
}

.screenshotCard:hover{
    background-position: 0 100%;
    transition: background-position 8.5s ease-in-out;
}

.screenshotTitle{
    font-size: 16px;
    background-color: white;
    color: black;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    height: 40px;
    width: 100%;
    margin-top: -40px;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
}

.screenshotFooter{
    background-color: white;
    width: 100%;
    height: 65px;
    position: relative;
    top: 65px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshotCardButton{
    position: relative;
    font-family: SuisseThin;
    font-weight: bold;
    padding: 10px 30px 10px 30px;
    border-radius: 25px;
    width: 200px;
    font-size: 20px;
    transition: 0.4s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.screenshotCardButton:after {
  content: '»';
  font-size: 35px;
  position: absolute;
  opacity: 0;  
  top: -1px;
  right: -5px;
  transition: 0.5s;
}

.screenshotCardButton:hover{
  padding-right: 35px;
  padding-left:35px;
  background-color: black;
  color: white;
  cursor: pointer;

}

.screenshotCardButton:hover:after {
  opacity: 1;
  right: 30px;
}

.review-container-top{
    display:flex;
    text-align: center;
    width: 50%;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    height: 200px;
    margin-top: 50px;
    padding-top: 200px;
    padding-bottom: 50px;
}

.review-text{
    letter-spacing: 3px;
    margin-top: -150px;
}

.review-author{
    font-family: SuisseThin;
    font-size: 20px;
    opacity: 90%;
    margin-bottom: -10px;
    margin-top: 30px;
}


.review-role{
    font-family: SuisseThin;
    font-size: 18px;
    opacity: 50%;
}

.review-buttons-container{
    display: flex;
    gap: 50px;
    align-items: center;
}

.reviewbutton{
    font-family: SuisseThin;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 20px;
    opacity: 90%;
    background-color: transparent;
    border: 2px solid white;
}

.rbleft.active, .rbright{
    opacity: 100%;
    cursor: pointer;
}

.rbleft, .rbright.active{
    opacity: 30%;
    cursor: default;
}


.review-dots-container{
    display: flex;
    font-size: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -20px;
    gap: 20px;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.rd2,.rd3,.rd4,.rd1.active{
    opacity: 10%;
}

.rd1,.rd2.active,.rd3.active,.rd4.active{
    opacity: 100%;
}

.review-buttons-container{
    padding-bottom: 100px;
}


@media only screen and (max-width: 1300px) {

    .hamburger{
        display: block;
        top: 49px;
        left: 92vw;
        width: 30px;
        height: 30px;
        transform: translateY(-50%);
        border: 0;
        background: 0 0;
    }

    .navbar-container{
        display: none;
    }

    .bar{
        right: 20px;
    }

    .hero-container{
        margin-bottom: -30px;
    }

    .hero-name{
        font-size: 60px;
        margin-bottom: 20px;
    }

    .hero-text{
        width: 90vw;
    }

    .hero-button{
        padding: 10px 10px 10px 10px;
        width: 200px;
    }

    .about-container{
        margin-bottom: 750px;
    }

    .tri-group-1,.tri-group-2{
        display: none;
    }

    .about-container-right{
        width: 100%;
        margin-top: 0px;
        height: 750px;
    }

    .about-container-left{
        width: 100%;
    }

    .services-container{
        height: 950px;
    }

    .services-inner-container{
        padding-top: 125px;
    }
}

@media only screen and (max-width: 1100px) {
    .process-container{
        height: 1600px;
    }

    .hero-button{
        width: 250px;
    }

    .process-inner-container{
        height: 1000px;
    }

    #card1,#card3{
        margin-top: 0px;
    }
}





@media only screen and (max-width: 700px) {
    .services-container{
        height: 1450px;
    }

    .about-title{
        font-size: 25px;
    }

    .about-container-left{
        flex-shrink: 0;
        gap: 60px;
        height: 102%;
    }

    .about-text{
        font-size: 20px;
        width: 400px;
    }

    .about-button{
        padding: 5px 30px 5px 30px;
        text-align: center;
    }

    .review-text{
        margin-top: 0px;
        font-size: 30px;
    }
}

@media only screen and (max-width: 550px) {

        /*
        ------------------
        ABOUT SECTION
        ------------------
        */
    .about-title{
        font-size: 30px;
    }

    .about-container{ 
        margin-bottom: 0px;
        margin-top: 75px;
        height: 900px;
    }
    
    .about-container-right{
        display: none;
    }

    .about-text{
        font-size: 20px;
        width: 300px;
    }

    .about-button-container{
        flex-direction: column;
        gap: 15px;
    }

    .about-button{
        padding: 15px 25px 15px 25px;
        font-size: 20px;
        max-height: 60px;
        width: 250px;
    }

    .pagescore-container{
        gap: 3  0px;
    }

    .pagescore-card{
        font-size: 16px;
        align-items: center;
    }

    .pagescore-icon{
        width: 75px;
        height: 75px;
        font-size: 25px;
    }
            /*
        ------------------
        PROCESS SECTION
        ------------------
        */

    .process-container{
        height: 1550px;
        gap: 50px;
        padding: 0px 20px 20px 20px;
    }

    .process-card{
        width: 400px;
    }

    .process-card-title{
        font-size: 25px;
    }

    .process-card-icon{
        display: none;
    }

    #card1,#t3{
        margin-top: 0px;
    }

    #card1, #card3{
        border-top-right-radius: 20px;
    }

    #card2,#card4{
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .services-container{
        height: 900px;
    }

    .services-title{
        font-size: 40px;
    }


        /*
        ------------------
        REVIEW  SECTION
        ------------------
        */

    .review-container{
        margin-bottom: 100px;
    }

    .review-container-top{
        width: 100%;
        margin: 0px;
    }

    .review-text{
        font-size: 20px;
    }

    .screenshotCard{
        width: 350px;
    }
}


@media only screen and (max-width: 400px) {
    .about-container{
        height: 1100px;
    }
}</pre></body></html>