@charset "UTF-8";

:root {
  
    --barvaTextu: #000000;
    --barvaHlavni: #1B2F74;
    --barvaHlavnihover: #ffcc32;
    --barvaSekundarni: #ffffff;

   }

/* BASICS START */
*,::after,::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    line-height:1.15;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:transparent;
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

footer,header,nav,section{
    display:block;
}
body{
    margin:0;
    font-family: "Montserrat", sans-serif;
    line-height:1.5;
    background: var(--barvaSekundarni);
}
[tabindex="-1"]:focus:not(:focus-visible){
    outline:0!important
}

::-moz-selection{
    background: var(--barvaHlavni);
    color: var(--barvaSekundarni);
    text-shadow:none
}
::selection{
    background: var(--barvaHlavni);
    color: var(--barvaSekundarni);
    text-shadow:none
}

.bg-white{
    background-color: var(--barvaSekundarni);
}
.bg-blue{
    background-color: var(--barvaHlavni);
}
.bg-black{
    background-color: #1B2F74;
}
.color-white{
    color: var(--barvaSekundarni) !important;
}
.color-blue{
    color: var(--barvaHlavni) !important;
}
.color-black{
    color: #1B2F74 !important;
}

.row{
    display:flex;
    flex-wrap:wrap;
	margin: 0 auto;
}

.col, .col-8, .col-9 .col-10, .col-12, .col-16, .col-20,.col-25,.col-30,.col-33,.col-40,.col-45,.col-50,.col-55,.col-60,.col-66,.col-70,.col-75,.col-80,.col-90,.col-100{
    position: relative;
    width: 100%;
    padding-right:.75rem;
    padding-left:.75rem
}
.padding-left-zero{
    padding-left: 0;
}
.padding-right-zero{
    padding-right: 0;
}
.col-8{
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}
.col-9{
    -ms-flex: 0 0 9.090909%;
    flex: 0 0 9.090909%;
    max-width: 9.090909%;
}
.col-10{
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
}
.col-12{
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}
.col-16{
    -ms-flex: 0 0 16.666666667%;
    flex: 0 0 16.666666667%;
    max-width: 16.666666667%;
}
.col-20{
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.col-25{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-30{
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}
.col-33{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-40{
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}
.col-45{
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
}
.col-50{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-55{
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
}
.col-60{
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}
.col-66{
    -ms-flex: 0 0 66.6666666%;
    flex: 0 0 66.6666666%;
    max-width: 66.6666666%;
}
.col-70{
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}
.col-75{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-80{
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
}
.col-90{
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
}
.col-100{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.fixed-top{
    position:fixed;
    top:0;
    right:0;
    left:0;
    z-index:1030
}
.fixed-bottom{
    position:fixed;
    right:0;
    bottom:0;
    left:0;
    z-index:1030
}
.center-align{
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}
.right-align{
    text-align: right !important;
}
.left-align{
    text-align: left !important;
}
.left-and-right-align{
    justify-content: space-between !important;
}

.lower-case{
    text-transform: lowercase;
}
.capital-case{
    text-transform: capitalize;
}
.upper-case{
    text-transform: uppercase;
}

h1,h2,h3,h4,h5,h6{
    font-weight:700;
    line-height:1.2;
}
h1{
    font-size: 1.95rem;
}
h2{
    font-size: 1.70rem;
}
h3{
    font-size: 1.45rem;
}
h4{
    font-size: 1.25rem;
}
h5{
    font-size: 1rem;
}
h6{
    font-size: 0.75rem;
}
a{
    color: var(--barvaSekundarni);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}


button.disabled {
    pointer-events: none;
}
a.disabled {
    pointer-events: none;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.btn {
    display: inline-block;
    color: black;
    text-align: center;
    border: 1px solid black;
    background-color: transparent;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
	font-weight: bold;
}
.btn-large-xxl {
    padding: 0.5rem 1.4rem;
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    border: 3px solid white;
}
.btn14{
    margin-top: 12px;
}
.btn14 span {
    display: inline-block;
    position: relative;
    transition: 0.5s;
    color: white;
}
.btn14 span:after {
    content: '\00bb';
    position: absolute;
    font-size: 2rem;
    top: -9px;
    right: -12px;
    opacity: 0;
    transition: 0.5s;
}
.btn14:hover span {
    padding-right: 18px;
    color: var(--barvaSekundarni);
}
.btn14:hover span:after {
    opacity: 1;
    color: var(--barvaSekundarni);
}
.btn14:hover {
    background-color: var(--barvaHlavni);
}
section.page-section{
    padding-top: 64px;
    padding-bottom: 64px;
}
.mainMenuButt{
    padding: 0.35rem 1.15rem;
    font-size: 1.15rem;
    text-transform: uppercase;
    border: 2px solid white;
	color: white;
	font-weight: bold;
}
.mainMenuButt:hover{
    color: white;
    background-color: transparent;
	font-weight: bold;
	
	
}
/* BASICS END */

/* CONTAINER START */
.container-name{
    width:100%;
    margin-right:auto;
    margin-left:auto;
}
@media (min-width:576px){
    .container-name{
        max-width:540px;
    }
}
@media (min-width:768px){
    .container-name{
        max-width:720px;
    }
}
@media (min-width:992px){
    .container-name{
        max-width:960px;
    }
}
@media (min-width:1200px){
    .container-name{
        max-width:1140px;
    }
}
@media (min-width:1400px){
    .container-name{
        max-width:1280px;
    }
}
/* CONTAINER END */

.row-vertical{
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
}
.col-vertical{
    width: 100%;
    min-height: 100px;
}
.col-vertical{
    display: flex;
    justify-content: flex-start;
}

.col-50{
    position: relative;
    width: 100%;
    padding-right:.75rem;
    padding-left:.75rem;
}
.col-50{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

/* NAVBAR + header S;TART */
.portfolio{
    min-height: 15vh;
}
/* NAVBAR + header S;TART */
header{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    /* background-attachment:scroll;  */
    background-attachment: fixed;
    background-size: cover;
    background-image: url(https://spartan-svitavy.tode.cz/img/foto.jpg);
}

header .container{
    z-index: 2;
}

header .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(27, 47, 116,0.65) 50%, rgba(27, 47, 116,0.85));
    background-color: rgba(27, 47, 116,0.5);
}
.header-title{
    font-size:5.75rem;
    font-weight:700;
    margin-bottom:0rem;
    color: var(--barvaHlavnihover);
    text-transform: uppercase;
}
.header-subTitle{
    font-size:4.4rem;
    margin-bottom: 0;
    color: #ffffff;
}

.page-section h2.section-heading{
    color: var(--barvaHlavni);
    font-size: 2.5rem;
    margin-bottom: 0.75em;
	font-weight: bold;
	text-align: center;
}
.page-section h3.section-subheading{
    color: var(--barvaHlavni);
    font-size: 1.15rem;
    font-weight: 100;
    margin-bottom: 28px;
}


@media (max-width:991.9px){
    .services .col-33{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 48px;
    }
    .services .row .col-33 img{
        object-position: top;
		width: 333px;
		height: 33	
    }
    .header-title{
        font-size:4.25rem;
    }
	.portfolio{
    min-height: 15vh;
	}
}
@media (max-width:767.9px){
    .page-section h2.section-heading {
        font-size: 2rem;
    }
    .col-33{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 48px;
        text-align: center !important;
    }
    footer .col-33{
        margin-bottom: 8px;
    }
    .header-title{
        font-size: 3.25rem;
        text-transform: uppercase;
    }
	.portfolio{
    min-height: 10vh;
	}	
}
@media (max-width:575.9px){
    section.page-section{
        padding-bottom: 36px;
        padding-top: 36px;
    }
    .page-section h2.section-heading {
        font-size: 1.75rem;
    }
    .header-subTitle {
        font-size: 3rem;
    }
    .col-vertical{
        flex: 1 0 100%;
        flex-wrap: wrap;
    }
    .col-vertical *{
        text-align: center;
    }
	.portfolio{
    min-height: 10vh;
	}
}


.nav-default-top{
    display: relative;
    position: fixed; 
    z-index: 101;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.25em 0;
    /*background-color: var(--barvaHlavni);*/
    transition: padding 0.75s ease-in-out, margin 0.75s ease-in-out;
    -moz-transition: padding 0.75s ease-in-out, margin 0.75s ease-in-out;
    -ms-transition: padding 0.75s ease-in-out, margin 0.75s ease-in-out;
    -o-transition: padding 0.75s ease-in-out, margin 0.75s ease-in-out;
    -webkit-transition: padding 0.75s ease-in-out, margin 0.75s ease-in-out;
}
#mainNav .container{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}
#mainMenu{
    display:flex;
    list-style:none;
}
#mainMenu li{
    display: flex;
    align-items: center;
    margin-right: 1rem;
}
#mainMenu li:last-child{
    margin-right:0;
}
#mainMenu li a{
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.03rem;
    text-transform: uppercase;
	font-weight: bold;
    transition: .75s;
}
#mainMenu li a.active {
    color: white;
	text-decoration: none;
    transition: .75s;
}
#mainMenu li a.active :hover{
    color: white;
	text-decoration: none;
    transition: .75s;
	
}
#mainMenu li a:hover, #mainNav #mainMenu li{
    color: var(--barvaHlavnihover);
	text-decoration: none;
    transition: .75s;
}
.navShrink{
    position: fixed;
    padding: 0.25rem 0;
    background-color: transparent;
	background-image: linear-gradient(to top, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.25));
    height: auto;
	backdrop-filter: blur(10px);
}
.navShrink .menuLogo{
    max-width: 155px;
    align-items: center;
    margin-top: 4px;
	text-decoration: none;
}

.menuLogo{
    max-width: 155px;
    max-height: 50px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
@media (min-width:992px){
    .mainMenuButt{
        visibility: hidden;
        display: none;
    }
    #mainMenu{
        display: relative;
    }
	
}
@media (max-width:991.9px){
    .mainMenuButt{
        visibility: visible;
        display: block;
    }
    #mainMenu{
        display: block;
    }
    #hideMenuDiv{
        width: 100%;
        text-align: center;
    }
    #mainMenu li{
        margin-right:0;
        justify-content: center;
    }
	#mainMenu li a{
        display: flex;
        align-items: center;
        color: white;
        font-size: 1.03rem;
        text-transform: uppercase;
	font-weight: bold;
        transition: .75s;
	}
	#mainMenu li a.active {
        color: white;

	text-decoration: none;
        transition: .75s;
	}
	#mainMenu li a.active :hover{
        color: white;
	text-decoration: none;
        transition: .75s;
	
	}
	#mainMenu li a:hover, #mainNav #mainMenu li{
        color: white;
	text-decoration: none;
        transition: .75s;
	}
    .nav-default-top{
        background-color: transparent;
		backdrop-filter: blur(10px);
    }

}
/* NAVBAR END */


.col-vertical{
    width: 100%;
    min-height: 100px;
}
.col-vertical{
    display: flex;
    justify-content: flex-start;
}

.col-50{
    position: relative;
    width: 100%;
    padding-right:.75rem;
    padding-left:.75rem
}
.col-50{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}


/*footer start */
footer{
    color: var(--barvaSekundarni);
    background-color: var(--barvaHlavni);
    padding: 1.5em;
	text-align: center;
	font-size: 10px;
}
footer .credits{
    color: var(--barvaSekundarni);
	text-decoration: none;
	font-size: 16px;
}
footer .credits:hover{
    color: var(--barvaHlavnihover);
	text-decoration: none;
}
@media (max-width:349.33px){  
	footer{
		align-content: center;
		align-items: center;
		align-self: center;
		text-align: center;
	}
}

textarea {
    resize: vertical;
    overflow: hidden;
}
.mandatory-star{
    color: #ff0000;
}

p{
    color: white;
}

.d-none{
    visibility: hidden;
}
.d-block{
    visibility: visible;
}
/*
#1B2F74
#D34144
*/
/* footer end */

::-webkit-scrollbar{
		width: 0px;
     }


@media (max-width:1199.98px) and (min-width:992px){

}
@media (max-width:991.98px) and (min-width:768px){

}

@media (max-width:767.98px) and (min-width:576px){

}

@media (max-width:575.8px){  

}
@media only screen and (max-device-width: 575.8px) and (orientation: landscape) {

}
/* Create four equal columns that floats next to each other */
.column-4 {
  float: left;
  width: 25%;
  padding: 10px;
}
.column-2 {
  float: left;
  width: 50%;
  padding: 10px;
}
.column-3 {
  float: left;
  width: 33%;
  padding: 10px;
  align-content: center;
}
/* Clear floats after the columns */
.row-1:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .column-4, .column-3, .column-2 {
    width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column-4, .column-3, .column-2  {
    width: 100%;
  }
}
.img{
	border-radius: 30px;
	width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.text{
	margin-top: auto;
	text-align: left; 
}
.kontakt{
	list-style: none;
	text-align: justify;
}
.kontakt li a{
	color: white;
	transition: .75s;
}
.kontakt li a:hover{
	color: var(--barvaHlavnihover);
	transition: .75s;
}
.kontakt li b{
	color: var(--barvaSekundarni);
}
.social a{
	padding-left: 20px;
	padding-right: 0px;
	font-size: 25px;
	color: white;
}
.social i{
	transition: 0.75s;
	transform: 0.75s ease-in-out;
}
.social i:hover{
	color: var(--barvaHlavnihover);
	transform: translateY(-3px);
	transition: 0.75s;
}
.button {
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: var(--barvaSekundarni);
  background-color: var(--barvaHlavni);
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 20px;
  transition: .75s;
}
.button:hover {
	background-color: var(--barvaHlavni);
    box-shadow: 0 5px #666;
	transform: translateY(4px);
	transition: .75s;
	border: none;
}

.button:active {
  background-color: var(--barvaHlavni);
  box-shadow: 0 5px #666;
  transform: translateY(4px);
  transition: .75s;
  border: none;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 25%;
  padding: 20px;
}
.column-sluzby {
  float: left;
  width: 33%;
  padding: 20px;
}

/* Remove extra left and right margins, due to padding */
.row-2 {margin-left: auto;
      margin-right: auto;
	  width:90%;}

/* Clear floats after the columns */
.row-2:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .column, .column-sluzby {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  .img {
    width: 300px;
  }
  .row-2 {

    width:95%;
  
}
}
/* Style the counter cards */
.column-sluzby .card {
  align-items: center;
  height: 400px;
  background-color: transparent;
  border-radius: 15px;
  vertical-align: middle;
  border: 1px solid #fff;
  }

.card {
  padding: 16px;
  align-items: center;
  height: 300px;
  background-color: transparent;
  border-radius: 15px;
  color: var(--barvaHlavnihover);
  border: 1px solid transparent;
}


#reference .card {
  transition: 0.75s;
}

#reference a .card p{
  transition: 0.75s; /* Plynulý přechod pro změnu barvy textu */
  text-decoration: none;
  color: black; /* Zachování barvy textu */
}

#reference a b{
  transition: 0.75s; /* Plynulý přechod pro změnu barvy textu */
  text-decoration: none;
  color: black; /* Zachování barvy textu */
}

#reference .card:hover {
	background-color: var(--barvaHlavni);
}

#reference a .card:hover p{
  text-decoration: none;
  transition: 0.75s;
  color: white; /* Změna barvy odkazu při hoveru */
}

#reference a .card:hover b{
  text-decoration: none;
  transition: 0.75s;
  color: white; /* Změna barvy odkazu při hoveru */
}

.card img {
  width: 200px;
  padding-top: 5px;
}
.card p, b, a {
  color: black;
  text-align: justify-all;
  font-size: 17px;
  text-decoration: none;
}
.card h3 {
  color: var(--barvaHlavnihover);
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  font-size: 25px;
  font-weight: bold;
}

.image-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.image-card {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: 0.75s;
}
.image-card:hover {
  background-color: var(--barvaHlavnihover);
  transition: 0.75s;
}

.image-card img {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: white;
}

.overlay .text h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.overlay .text p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #fff;
}

.overlay .text span {
  color: #888;
}
.arrow-button {
  position: absolute;
  bottom: 1rem white;
  right: 1rem;
  background-color: transparent;
  color: white;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.arrow-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.client-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

.client-item {
  margin: 10px;
  flex: 0 0 15%;
  text-align: center;
}

.client-item img {
  max-width: 75%;
  height: auto;
  transition: .75s;
  filter: grayscale(100%);
}
.client-item img:hover {
  filter: none;
  transition: .75s;
}

.client-item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .client-item {
    flex: 0 0 20%;
  }
  .btn-service{
    margin:0 10%;
  }
}

@media screen and (max-width: 768px) {
  .client-item {
    flex: 0 0 40%;
  }
  .btn-service{
    margin:0 15%;
  }
}

@media screen and (max-width: 480px) {
  .client-item {
    flex: 0 0 40%;
  }
  .btn-service{
    margin:0 10%;
  }
}
.btn-service {
	background: var(--barvaSekundarni);
	border: 1px solid var(--barvaHlavni);
	padding: 15px 5px;
	border-radius: 5px;
	cursor: pointer;
	transition: .75s;
	margin: 0 15%;
	color: var(--barvaTextu);
	width: 75%;
	text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-service:hover{
	background: var(--barvaHlavni);
	color: var(--barvaSekundarni);
	transition: .75s;
}
.btn-service hr{
	border: 1px solid; 
	margin: 10px 30%;
	width: 40%;
}
.grouped_elements {
  cursor: cell;
}
.card-portfolio-info h2 {
  font-weight: bold;
  text-align: left;
}
.card-portfolio-info {
  color: var(--barvaTextu);
  margin-left: 60px;
  list-style: none;
}