@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
  	font-family: 'Poppins', sans-serif;
}
body
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	flex-direction: column;
	background: #e7e7e7;
}
/* HLAVIČKA + BANNER */
header
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
header.sticky
{
  background: #fff;
  padding: 10px 100px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  z-index: 100;
}
header .logo
{
  color: #fff;
  font-weight: 200;
  font-size: 2em;
  text-decoration: none;
}
header.sticky .logo
{
  color: #111;
}
header .logo span
{
  color: #4b76d3;
}
header .navigation
{
  position: relative;
  display: flex;
  list-style: none;
  left: -30px;
}
header .navigation li
{
  list-style: none;
  margin-left: 30px;
}
header .navigation .navigation-last
{
	margin-right: 30px;
}
header .navigation li a
{
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}
header.sticky .navigation li a
{
  color: #111;
}
header .navigation li a:hover
{
  color: #4b76d3;
}
.banner
{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  background: url(bg-steel.jpg);
  background-size: cover;
}
.banner .content
{
  max-width: 900px; 
  text-align: center;
}
.banner .content h2
{
	font-size: 5em;
	font-weight: 500;
	color: #fff;
  	font-family: bc-alphapipe, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.banner .content h2 span{
	color:#4b76d3;
	font-family: bc-alphapipe, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.banner .content p
{
  font-size: 1em;
  font-weight: 200;
  color: #fff;
}
a.btn
{
  font-size: 1em;
  color: #fff;
  background: #4b76d3;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 20px;
  text-transform: uppercase;
  text-decoration: none; 
  border-radius: 20px;
  letter-spacing: 2px;
  transition: 0.5s;
}
a.btn:hover
{
  letter-spacing: 6px;
}
.scimenu
{
	display: flex;
}
.scimenu li
{
	list-style: none;
}
.scimenu li a
{
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #4b76d3;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	text-decoration: none;
	border-radius: 18px;
}
.scimenu li a:hover
{
	background: #3c3c3c;
}
.scimenu li a .fa
{
	color: #fff;
	font-size: 20px;
}
/* VYPÍS PRODUKTŮ - HP */
.container
{
	position: relative;
	display: flex;
	max-width: 1600px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px 20px 10px;
}
.title
{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}
.titleText
{
  color:#4b76d3;
  font-size: 3em;
  font-weight: 100;
}
.titleText span
{
  color: #ff0157;
  font-weight: 700;
  font-size: 1.5em;
}
.container .card
{
	max-width: 300px;
	height: 460px;
	background: #fff;
	margin: 40px 10px;
	padding: 20px 0px;
	display: flex;
	border-radius: 20px;
	flex-direction: column;
	box-shadow: 0 5px 20px rgba(0,0,0,0.5);
	transition: 0.3s ease-in-out;
}
.container .cardeshop{
	background:#4b76d3;
}
.container .card:hover
{
	background:#263c85;
}
.container .card .imgBx
{
	position: relative;
	background: #fff;
	top: -60px;
	left: 20px;
    min-width: initial;
    width: 260px;
    height: 260px;
	border-radius: 10px;
	z-index: 1;
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.container .card .imgBx img
{
	max-width: 100%;
	border-radius: 10px;
}
.container .card .content
{
	position: relative;
	margin-top: -40px;
	padding: 10px 15px;
	text-align: center;
	color: #122154;
	display: flex;
	flex-direction: column;
	height: 100%;
	/*
	visibility: hidden;
	opacity: 0;
	transition: 0.3s ease-in-out;
	transition-delay: 0s;
	*/
}
.container .card .contenteshop
{
	margin-top: 10px;
	color: #fff;
}
.container .card .contenteshop img
{
	margin-bottom: 10px;
}

.container .card:hover .imgBx{
	width: 280px;
	height: 280px;
	left: 10px;
	top: -80px;
	transition: 0.3s ease-in-out;
	transition-delay: 0s;
}

.container .card:hover .content
{
	color: #fff;
	margin-top: -60px;
}
.container .card:hover .contenteshop
{
	margin-top: 10px;
}
.container .card .content p{
	font-size: 0.8em;
	height: 100%;
}
.container .card .content a{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	text-decoration: none;
	margin-top: 5px;
	font-weight: 500;
	color:#fff;
}

.container .card .content a:hover{
	color:#263c85;
}

.container .card .contenteshop a{
	color:#4b76d3;
	margin-top: 10px;
	justify-content: center;
	width: 50%;
	background:#fff;
	border-radius: 10px;
	margin: 20px auto;
}

.container .card:hover .contenteshop a:hover{
	color:#3c3c3c;
}
/* PATIČKA */
footer
{
	position: relative;
	width: 100%;
	height: auto;
	padding: 50px 100px;
	background: #fff;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .container-paticka
{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec
{
	margin-right: 30px;
}
.sec.aboutus
{
	width: 40%;
}
.sec h2
{
	position: relative;
	color: #3c3c3c;
	font-weight: 500;
	margin-bottom: 15px;
}
.sec h2:before
{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #4b76d3;
}
.sec p
{
	color: #3c3c3c;
}
.sci
{
	margin-top: 20px;
	display: flex;
}
.sci li
{
	list-style: none;
}
.sci li a
{
	display: inline-block;
	width: 48px;
	height: 48px;
	background: #4b76d3;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	text-decoration: none;
	border-radius: 24px;
}
.sci li a:hover
{
	background: #3c3c3c;
}
.sci li a .fa
{
	color: #fff;
	font-size: 20px;
}
.sec.quicklinks
{
	position: relative;
	width: 25%;
}
.sec.quicklinks ul li
{
	list-style: none;
}
.sec.quicklinks ul li a
{
	color: #3c3c3c;
	text-decoration: none;
	margin-bottom: 10px;
	display: inline-block;
}
.sec.quicklinks ul li a:hover
{
	color: #4b76d3;
}
.sec.contact
{
	width: calc(35% - 60px);
	margin-right: 0;
}
.sec.contact .info
{
	position: relative;
}
.sec.contact .info li
{
	display: flex;
	margin-bottom: 16px;
}
.sec.contact .info li span:nth-child(1)
{
    color: #4b76d3;

	font-size: 20px;
	margin-right: 10px;
}
.sec.contact .info li a
{
	color: #3c3c3c;
	text-decoration: none;
}
.sec.contact .info li a:hover
{
	color: #4b76d3;
}

.footerFriends{
	position: relative;
	width: 100%;
	height: 120px;
	padding: 20px 20px;
	border-top: 1px solid #4b76d3;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background:#fff;	
}
.copyrightText
{
	width: 100%;
	background: #1e2b58;
	padding: 8px 100px;
	text-align: center;
	color: #fff;
}
.catalogue-button{
background-color: #122154;
border-radius: 25px;
padding: 10px 20px;
width: 220px;
margin: 0 auto;
}
.catalogue-button:hover {
  background-color: white;
}

@media (max-width: 991px)
{
	header
	{
	  padding: 10px 20px;
	}
	header.sticky
	{
	  padding: 10px 20px;
	}
	header .navigation
	{
	  display: none;
	}
	header .navigation.active
	{
	  width: 100%;
	  height: calc(100% - 68px);
	  position: fixed;
	  top: 68px;
	  left: 0;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-direction: column;
	  background: #fff;
	}
	header .navigation li
	{
	  margin-left: 0;
	}
	header .navigation li a,
	header .navigation.active li a
	{
	  color: #111;
	  font-size: 1.6em;
	}
	header .navigation li a:hover
	{
	  color: #ff0157;
	}
	header .menuToggle
	{
	  position: relative;
	  width: 40px;
	  height: 40px;
	  background: url(menu.png);
	  background-size: 30px;
	  background-repeat: no-repeat;
	  background-position: center;
	  cursor: pointer;
	}
	header .menuToggle.active
	{
	  background: url(close.png);
	  background-size: 25px;
	  background-repeat: no-repeat;
	  background-position: center;
	}
	header.sticky .menuToggle
	{
	  filter: invert(1);
	}
	section
	{
	  padding: 20px;
	}
	.banner .content h2
	{
	  font-size: 3em;
	  color: #fff;
	}
	.sec.aboutus,
	.sec.quicklinks,
	.sec.contact
	{
		width: 100%;
		margin-bottom: 40px;
	}
	.sec.contact
	{
		margin-bottom: 0px;
	}
	footer
	{
		padding: 40px;
	}
	.copyrightText
	{
		padding: 5px 40px;
	}
}
@media (max-width: 480px)
{
  .banner .content h2
  {
    font-size: 2.2em;
  }