:root {
    --accent: #EA9F11;
    --light: #EDEDED;
    --white: #ffffff;
    --dark: #262626;
    --grey: #515151;
    --black: #000000;
}

@font-face {
  font-family: 'myicons';
  src:  url('/fonts/myicons.eot?pqsu3f');
  src:  url('/fonts/myicons.eot?pqsu3f#iefix') format('embedded-opentype'),
    url('/fonts/myicons.ttf?pqsu3f') format('truetype'),
    url('/fonts/myicons.woff?pqsu3f') format('woff'),
    url('/fonts/myicons.svg?pqsu3f#myicons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ico-"], [class*=" ico-"] {
  font-family: 'myicons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-icon-download:before {
  content: "\e900";
  color: #ea9f11;
}
.ico-arrow-left:before {
  content: "\e901";
}
.ico-arrow-right:before {
  content: "\e902";
}
.ico-icon-plus:before {
  content: "\e903";
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--bright);
}

button {
outline: 0;
}

ol,ul {
list-style: none;
}

blockquote,q {
quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
content: '';
content: none;
}

q {
display: inline;
font-style: italic;
}

q:before {
content: '"';
font-style: normal;
}

q:after {
content: '"';
font-style: normal;
}

textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"] {
-webkit-appearance: none;
appearance: none;
border-radius: 0;
}

input[type="search"] {
-webkit-appearance: textfield;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

th,td {
padding: 2px;
}

big {
font-size: 120%;
}

small,sup,sub {
font-size: 80%;
}

sup {
vertical-align: super;
}

sub {
vertical-align: sub;
}

dd {
margin-left: 20px;
}

kbd,tt {
font-family: courier;
font-size: 12px;
}

ins {
text-decoration: underline;
}

del,strike,s {
text-decoration: line-through;
}

dt {
font-weight: bold;
}

address,cite,var {
font-style: italic;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
display: block;
}

* {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}

html {
    max-width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    font-family: "Host Grotesk", sans-serif;
    background: var(--light);
    font-size: 15px;
    color: var(--black);
}

p {
    font-family: "Host Grotesk", sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Host Grotesk", sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}

h2.large {
    font-size: 46px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 15px; 
}

.light h2, .light h3, .light h4, .light h5, .light h6, .light p {
    color: var(--white);
}

strong {
    font-weight: 700;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.center {
    text-align: center;
}

/*layout*/
section {
    width: 100%;
}

.row.in-grid {
    max-width: 1315px;
    padding-left: 30px;
    padding-right: 30px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.columns-wrapper {
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    float: none;
    width: 100%;
}

.columns-wrapper.middle {
    align-items: center;
}

.col-12 {
    flex: 0 0 100%;
    width: 100%;
}

.col-11 {
    flex: 0 0 91.66666667%;
    width: 91.66666667%;
}

.col-10 {
    flex: 0 0 83.33333333%;
    width: 83.33333333%;
}

.col-9 {
    flex: 0 0 75%;
    width: 75%;
}

.col-8 {
    flex: 0 0 66.66666667%;
    width: 66.66666667%;
}

.col-7 {
    flex: 0 0 58.33333333%;
    width: 58.33333333%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.col-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
}

.col-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
}

.col-4-5 {
    width: 80%;
}

.col-3-5 {
    width: 60%;
}

.col-2-5 {
    width: 40%;
}

.col-1-5 {
    width: 20%;
}

.col-3-0 {
    width: 30%;
}

.col-7-0 {
    width: 70%;
}

@media (max-width: 1000px) {
    .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .col-4-5, .col-3-5, .col-2-5, .col-1-5, .col-3-0, .col-7-0 {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding-left: 0%;
        padding-right: 0%;
    }
}

/*MENU*/
@media (min-width: 1000px) {
    button.drawer-toggle.drawer-hamburger {
        display: none;
    }
}

header {
    z-index: 3;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: space-between;
    max-width: 1315px;
    padding: 22px 30px;
    margin-left: auto;
    margin-right: auto;
}

#header.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0D0D0D; 
  box-shadow: 0 10px 40px rgba(0,0,0,.20);
  height: 91px;
  width: 100%;
}

.logo img {
    height: 47px;
    width: auto !important;
}

#header .logo a {
    display: flex;
}

ul.main-menu {
    display: flex;
}

ul.main-menu li {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 1px;
    position: relative;
}

ul.main-menu li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

ul.main-menu li:after{
    content: '';
    position: absolute;
    width: 0; 
    height: 4px;
    display: block;
    top: -36px;
    right: 0;
    background: var(--accent);
    transition: width .3s ease;
    -webkit-transition: width .3s ease;
}
 
ul.main-menu li:hover:after,
ul.main-menu li.menu-item.active:after {
  width: 100%;
  left: 0;
}

ul.main-menu li.menu-item.active a {
    font-weight: 600;
}

a.main-btn {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Host Grotesk';
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent);
    color: var(--black);
    transition: all 0.3s ease;
}

a.main-btn:hover {
    background: #fff;
}

a.main-btn.outline {
    background: transparent;
    border: 1px solid #000;
}

a.main-btn.outline:hover {
    background: #000;
    color: var(--accent);
}

/*Content*/
main {
  margin-top: -91px;
}

/*UVOD*/
section.homeslider-wrapper, .homeslider {
    position: relative;
    height: 100vh;
    max-height: 780px;
}

.homeslider .slide.slick-slide {
  height: 100vh;
  max-height: 780px;
  position: relative;
  padding-bottom: 140px;
}

.slide-bgr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.slide-bgr-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide-bgr-overlay:after {
  content: '';
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.homeslider .content {
  width: 100%;
  max-width: 1315px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.homeslider .content p {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.4;
}

.homeslider-bottom {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid rgb(255 255 255 / 40%);
}

.progressBarContainer {
  display: flex;
  max-width: 1255px;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}

.progressBarContainer .item {
  flex: 0 0 140px;
  width: 140px;
  max-width: 140px;
  margin-right: 20px;
  cursor: pointer;
  height: 90px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.progressBarContainer .item img {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0.4;
}

.progressBarContainer .item.active img,
.progressBarContainer .item:hover img{
  opacity: 1;
}

.progressBarContainer div span.progressBar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
}

.progressBarContainer div span.progressBar .inProgress {
  background-color: var(--accent);
  width: 0%;
  height: 4px;
  top: -2px;
  position: absolute;
}

.homeslider-nav {
  display: flex;
  background: #fff;
}

.homeslider-nav button.slick-arrow {
  background: transparent;
  position: relative;
  width: 83px;
  height: 100%;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  padding: 0;
}

.homeslider-nav button.slick-arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 9px;
  height: 17px;
}

.homeslider-nav button.slick-arrow svg path {
  stroke: #262626;
  transition: all 0.3s ease;
  fill: none;
}

.homeslider-nav button.slick-arrow:hover {
  border: none;
  background: var(--accent);
}

.homeslider-nav button.slick-arrow:hover svg path {
  stroke: var(--black);
}

.homeslider-nav button.nav-prev.slick-arrow:after {
  content: '';
  width: 1px;
  height: 53px;
  background: rgb(38 38 38 / 30%);
  position:absolute;
  right: -0.5px;
  top: 50%;
  transform:translateY(-50%);
  z-index: 2;
}


/*O NAS*/
#o-nas {
    padding-top: 120px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgb(81 81 81 / 40%);
}

.col-6.images {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.about-img-1 {
    width: 67%;
    padding-bottom: 80%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important; 
    flex: 0 0 67%;
}

.about-img-2 {
    width: calc(33% - 20px);
    padding-bottom: 40%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important; 
    flex: 0 0 calc(33% - 20px);
}

.col-6.about-text {
    padding-left: 12%;
}

.col-6.about-text p {
    max-width: 430px;
    margin-top: 11%;
    margin-bottom: 20px;
}

.col-6.about-text h1 {
    margin-left: -50%;
}

/*WEBY*/
.col-12.weby-title {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.col-12.weby-title p {
    max-width: 470px;
    margin-left: 70px;
}

.weby-nav {
    margin-left: auto;
    margin-right: 0;
}

.outline-nav {
    display: flex;
}

.outline-nav button.slick-arrow {
    cursor: pointer;
    border: 1px solid var(--dark);
    color: var(--dark);
    width: 63px;
    height: 68px;
    text-align: center;
    line-height: 68px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.outline-nav button.nav-prev.slick-arrow {
    margin-right: -1px;
}

.outline-nav button.slick-arrow:hover {
    color: var(--black);
    background: var(--accent);
}

.col-12.weby-slider-wrapper {
    padding-bottom: 60px;
}

.weby-slider .slick-track {
    display: flex !important;
    gap: 12px;
} 

.weby-slide-item {
    height: auto;
    position: relative;
}

.weby-slide-bgr {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
}

.weby-slide-bgr:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.3;
}
    
.weby-slide-front {
    height: 100%;
    background: #fff;
    position: relative;
    transition: all 0.8s ease;
}

.weby-logo {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(81 81 81 / 40%);
}

.weby-logo img {
    width: auto;
    transition: all 0.35s ease;
}

.weby-bottom {
    padding: 0px 29% 0px 7%;
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

p.web-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    transition: all 0.35s ease;
}

p.web-description {
    font-size: clamp(12px, 0.95vw, 15px);
    color: #949494;
    transition: all 0.35s ease;
}

.icon-wrapper {
    position: absolute;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    right: 0;
    top: 0;
    transition: all 0.35s ease;
}

.icon-wrapper i {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.weby-slide-item a:hover .weby-slide-front {
    background: transparent;
}

.weby-slide-item a:hover .icon-wrapper {
    background: var(--accent);
    color: #fff;
}

.weby-slide-item a:hover p {
    color: #fff;
}

.weby-slide-item a:hover .weby-logo img {
    opacity: 0;
}


/*DODAVATELIA*/
.col-12.loga-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#dodavatelia {
    padding-bottom: 26px;
    border-bottom: 1px solid rgb(81 81 81 / 40%);
}

.loga-slider .slick-track {
    display: flex !important;
    overflow: visible;
}

/*
.loga-slider .slick-list {
    overflow: visible;
}
*/

.slide-logo-item a {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 3 / 2.7;
    position: relative;
    transition: all 0.65s ease;
}

.slide-logo-item img {
    width: auto;
}

.slide-logo-item p {
    margin-top: 15px;
    margin-bottom: -15px;
    transition: all 0.35s ease;
    transform: translateY(10px);
    opacity: 0;
}

.slide-logo-item a:hover {
    background: rgb(81 81 81 / 6%);
}

.slide-logo-item a:after {
    position: absolute;
    width: 0%;
    height: 4px;
    background: var(--accent);
    top: -1px;
    left: 0;
    content: '';
    transition: all 0.35s ease-in-out;
}

.slide-logo-item a:hover:after {
    width: 100%;
}

.slide-logo-item a:hover p {
    margin-top: 15px;
    margin-bottom: -15px;
    transition: all 0.35s ease;
    transform: translateY(0px);
    opacity: 1;
}  


/*REFERENCIE*/
#referencie {
    background: var(--grey);
    padding-top: 40px;
}

#referencie h2 {
    font-size: 120px;
    line-height: 1.1;
}

#referencie .col-8 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#referencie .slick-dots {
    position: relative;
    bottom: 0px;
    display: flex !important;
    width: auto;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 10px;
}

.slick-dots li {
    margin: 0 !important;
}

.slick-dots li button {
    width: 20px;
    height: 20px;
}

.slick-dots li button:before {
    font-size: 0px !important;
    line-height: 0px !important;
    top: 50% !important;
    left: 50% !important;
    width: 6px !important;
    height: 6px !important;
    content: '' !important;
    opacity: .4;
    background: #fff !important;
    transform: translate(-50%,-50%);
}

#referencie .col-4 {
    padding-top: 30px;
}

#referencie .col-4 p {
    max-width: 350px;
}

.referencie-title-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: 350px;
}

.outline-nav.light button.slick-arrow {
    border: 1px solid var(--white);
    color: var(--white);
}

.outline-nav.light button.slick-arrow:hover {
    background: var(--accent);
}

a.cta {
    text-decoration: underline;
}

.light a.cta {
    color :#fff;
}

a.cta:hover {
    color: var(--accent);
} 

section.referencie-slider-wrapper.section.light {
    background: var(--grey);
    border-top: 1px solid rgb(255 255 255 / 40%);
}

.referencie-slider.slick-slider.slick-dotted {
    margin-bottom: 0;
}

.referencie-slider .slick-track {
    display: flex !important;
}

.referencia-slide-item {
    height: auto !important;
}

.referencia-slide-item.small a {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 5vw 5vw 0 5vw;
}

.referencia-slide-item.small .referencia-img {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.referencia-slide-item.small .referencia-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.referencia-content {
    margin-bottom: 0;
    padding: 28px 30px 30px 0px;
    position: relative;
}

.referencia-content i.ico-icon-plus {
    position: absolute;
    bottom: 30px;
    right: 0;
    color: #fff;
}

.referencia-content p {
    font-weight: 400;
    margin-top: 15px;
}

.referencia-slide-item.large a {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.referencia-slide-item.large .referencia-img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.referencia-slide-item.large .referencia-img:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.65) 100%);
}

.referencia-slide-item.large .referencia-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.referencia-slide-item.large .referencia-content {
    padding: 28px 30px 30px 30px;
}

.referencia-content i.ico-icon-plus {
    bottom: 30px;
    right: 30px;
}

/*TEAM*/
#tim {
    background: var(--dark);
    padding-top: 70px;
    padding-bottom: 30px;
}

#tim h2 {
    padding-bottom: 30px;
}

.columns-wrapper.team-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.columns-wrapper.team-wrapper .col-1-5 {
    width: 100%;
}

.team-item {
    height: 100%;
    border: 1px solid rgb(255 255 255 / 20%);
}

.team-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 30px 5px 20px 15px;
}

.team-content h4 {
    font-weight: 600;
    margin-bottom: 32px;
}

.team-content a {
    color: #fff;
    font-weight: 300;
}

.team-content a.accent {
    color: var(--accent);
}

.team-content a:hover {
    text-decoration: underline;
}

.columns-wrapper.team-title {
    margin-bottom: 20px;
}

.columns-wrapper.team-wrapper {
    margin-bottom: 45px;
}

/*NA STIAHNUTIE*/

#na-stiahnutie {
    border-top: 1px solid rgb(255 255 255 / 20%);
    background: var(--dark);
    padding-top: 65px;
    padding-bottom: 80px;
}

ul.download-items-wrapper {
    margin-top: 30px;
    column-count: 2;
    column-gap: 20px;
}

li.download-item {
    display: flex;
    width: 100%;
    align-items: center;
    border: 1px solid #545454;
    margin-bottom: 8px;
    padding-left: 20px;
}

li.download-item p {
    font-weight: 400;
    margin-left: 0;
    margin-right: auto;
}

a.download-btn {
    color: #fff;
    padding: 10px 46px 10px 25px;
    position: relative;
    margin-left: 0;
    margin-right: -1px;
    border: 1px solid #545454;
    font-weight: 400;
    margin-top: -1px;
    margin-bottom: -1px;
    transition: all 0.3s ease;
}

a.download-btn:after {
    content: "\e900";
    color: #ea9f11;
    font-family: 'myicons' !important;
    font-size: 18px;
    position: absolute;
    right: 18px;
}

a.download-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

li.download-item span.size {
    color: rgb(255 255 255 / 30%);
    margin-left: auto;
    margin-right: 50px;
} 


/*FOOTER*/
#footer {
    background: #0D0D0D;
}

.section.footer-top-1 {
    padding-top: 47px;
    padding-bottom: 37px;
    border-bottom: 1px solid rgb(255 255 255 / 40%);
}

.footer-top-1 .col-12 {
    display: flex;
    align-items: center;
}

img.footer-logo {
    flex: 0 0 58px;
    max-width: 58px;
    height: auto;
}

.footer-weby {
    display: flex;
    margin-right: 0;
    margin-left: auto;
    align-items: center;
    gap: clamp(15px, 3.5vw, 55px);
}

.footer-top-2 {
    padding-top: 60px;
    padding-bottom: 70px;
}

.footer-top-2 h2 {
    max-width: 500px;
}

.footer-top-2 a.main-btn {
    margin-top: 15px;
}

.footer-bottom .columns-wrapper.light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.footer-bottom .col-3 {
    background: rgb(38 38 38 / 80%);
    padding: 22px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-bottom .col-3 h5 {
    margin-top: 0;
    margin-bottom: auto;
}

ul.footer-menu {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

ul.footer-menu a {
    color: #fff;
    font-weight: 300;
}

.col-3.contacts p {
    font-weight: 700;
}

.contacts a.accent {
    color: var(--accent);
    margin-bottom: 3px;
    display: inline-block;
}

ul.footer-menu a:hover,
.social a:hover {
    color: var(--accent);
}

.footer-copyright {
    padding-top: 24px;
    padding-bottom: 24px;
}

.footer-copyright .col-12 {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 30px);
}

.footer-copyright .col-12 p,
.footer-copyright .col-12 a {
    font-size: 12px;
}

.footer-copyright .col-12 a {
    color: #fff;
}

p.recaptcha {
    color: rgb(255 255 255 / 55%);
    max-width: 345px;
}

p.copy {
    color: rgb(255 255 255 / 55%);
    margin-left: auto;
    margin-right: 0;
}


/************* RESPONSIVE **********/

@media (max-width: 1000px) {

.main-menu.desktop {
    display: none;
}

.header-inner {
    padding: 12px 15px;
}

.drawer-hamburger, .drawer-hamburger:hover {
    position: absolute;
    margin-top: 10px;
    margin-right: 15px;
    padding: 13px 9px 25px;
}

.drawer-hamburger {
    width: 38px;
}

.drawer-hamburger-icon, 
.drawer-hamburger-icon:after, 
.drawer-hamburger-icon:before {
    background-color: var(--white);
    height: 2px;
}

.drawer-hamburger-icon:before {
    top: -7px;
}

.drawer-hamburger-icon:after {
    top: 7px;
    right: 0;
    left: auto;
} 

.drawer-open .drawer-hamburger:before {
    opacity: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
    right: 0px;
    position:fixed;
}

.drawer-open .drawer-hamburger-icon:after, .drawer-open .drawer-hamburger-icon:before {
    width: 38px;
}

.drawer--right.drawer-open .drawer-nav {
    position: absolute !important;
    height: 100vh;
    background: #0D0D0D;
    max-height: none;
    margin-top: 0px;
    width: 100%;
    left: 0px;
    padding: 50px 20px 50px 20px;
    overflow: auto;
}

.drawer-overlay {
    background: rgb(0 0 0 / 80%);
    z-index: 2;
}

#header .drawer-nav ul#mainMenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    align-items: center;
    text-align: center;
    gap: 35px;
    justify-content: center;
    height: 100%;
}

ul.main-menu li {
    padding-left: 10px;
    padding-right: 10px;
}

#header .drawer-nav ul#mainMenu a {
    font-size: 25px;
}

ul.main-menu li:after{
    top: -10px;
}

ul.main-menu li:hover a,
ul.main-menu li.menu-item.active a {
    color: var(--accent);
}

#header.is-fixed {
    height: 71px;
}

main {
  margin-top: -71px;
}

/*content*/

h1 {
    font-size: 32px;
}

h2.large {
  font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 17px;
}

.row.in-grid {
    padding-left: 15px;
    padding-right: 15px;
}

section.homeslider-wrapper, .homeslider {
    max-height: 680px;
}

.homeslider .slide.slick-slide {
  max-height: 680px;
  padding-bottom: 120px;
}

.homeslider .content {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}

.progressBarContainer {
  max-width: 100%;
  width: 100%;
  left: 0;
  transform: translateX(0);
}

.progressBarContainer .item {
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
  margin-right: 0px;
  cursor: pointer;
  height: 70px;
}

.progressBarContainer .item img {
  max-width: 80%;
}

.homeslider-nav {
  display: none;
}

#o-nas {
    padding-top: 40px;
    padding-bottom: 40px;
}

.col-6.about-text h1 {
    margin-left: 0;
}

.col-6.about-text {
    padding-left: 0;
    padding-top: 40px;
}

.col-12.weby-title {
    padding-top: 40px;
    flex-wrap: wrap;
}

#nase-weby h2 {
   flex: 0 0 100%;
}

.col-12.weby-title p {
    margin-left: 0px;
    padding-top: 15px;
    flex: 0 0 calc(100% - 130px);
}

.outline-nav button.slick-arrow {
    width: 55px;
    height: 58px;
    line-height: 58px;
}

.weby-bottom {
    padding: 0px 60px 0px 15px;
    min-height: 60px;
}

p.web-name {
    font-size: 17px;
}

.slide-logo-item a {
    aspect-ratio: 4 / 5;
}

.slide-logo-item a img {
    width: auto;
    max-width: 80%;
    padding: 15px 0;
}
    
.slide-logo-item a p,
.slide-logo-item a:hover p {
    margin-top: 5px;
    margin-bottom: 10px;
    transform: none;
    opacity: 1;
    font-size: 14px;
    max-width: 100px;
}

#referencie h2 {
    font-size: 55px;
    line-height: 1.1;
}

#referencie .col-4 {
    padding-top: 10px;
}

.ref-dots-nav {
    position: absolute;
    bottom: 0px;
}

#referencie {
    position: relative;
}

.referencie-title-bottom {
    justify-content: flex-end;
    max-width: 100%;
}

.referencia-slide-item.large .referencia-content {
    padding: 15px;
}

.referencia-content {
    padding: 15px 15px 15px 0px;
}

.referencia-content p {
    font-size: 13px;
    margin-top: 10px;
}

.columns-wrapper.team-wrapper {
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.team-content {
    padding: 25px 5px 20px 15px;
}

.team-content h4 {
    margin-bottom: 20px;
}

#tim {
    padding-bottom: 10px;
}

#na-stiahnutie {
    padding-top: 35px;
    padding-bottom: 40px;
}

ul.download-items-wrapper {
    column-count: 1;
    column-gap: 0px;
}

li.download-item {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 0px;
    flex-wrap: wrap;
    padding-top: 10px;
}

li.download-item span.size {
    margin-left: auto;
    margin-right: 10px;
    flex: 0 0 120px;
    text-align: right;
}

li.download-item p {
    flex: 0 0 calc(100% - 130px);
    padding-left: 10px;
}

a.download-btn {
    margin-left: -1px;
    margin-right: -1px;
    margin-top: 12px;
    width: calc(100% + 2px);
}

.section.footer-top-1 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-top-1 .col-12 {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

.footer-weby {
    display: flex;
    margin-right: 0;
    margin-left: 0;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-weby p {
    flex: 0 0 100%;
}

.footer-top-2 {
    padding-top: 30px;
    padding-bottom: 40px;
}

.section.footer-top-2 p {
    margin-top: 15px;
}

.footer-bottom .columns-wrapper.light {
    grid-template-columns: repeat(1, 1fr);
}

.footer-bottom .col-3 {
    min-height: 150px;
}

.footer-copyright .col-12 {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

p.copy {
    margin-left: 0;
    margin-right: 0;
}
}