
:root {
	--main-color: #0079D5;
	--weak-color: #0067B8;
	--back-color: #FFFFFF;
	font-size: 62.5%;
}

body {
	max-width: 100%;
	justify-content: center;
    margin: auto;	
	font-size: 1.6rem;
}

* {
  font-family: Helvetica Neue;
  box-sizing: border-box;
}

header{
	position: sticky;
	top: 0;
}

a{
  text-decoration: none;
}

a:hover, a:visited, a:active {
  text-decoration: none;
}

button{
  display: block;
  width: 30rem;
  border: none;
  background-color: var(--main-color);
  color: white;
  padding: 1rem 0em 1rem 0;
  font-size: 2.4rem;
  cursor: pointer;
  text-align: center;
  border-radius: 2rem;
  margin: 1rem 0em 3rem 0em;
  font-weight: bold;
  
  
}

.main{
	width: 100%;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	justify-cont: space-between;
	align-items: center;
	}
	
.header-container{
	width: 100%;
	background-color: var(--main-color);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	}

.declaration-container{
	position: relative;
	width: 100%;
	height: 50rem;
	display: flex;
	align-items: center;
	vertical-align: center;
	pointer-events: none;
}

.declaration-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/header.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	filter: brightness(0.4);
	z-index: -1;
}

.declaration {
	font-size: xxx-large; 
	color: white;
	margin: auto;
	text-align: center;
	background-color: transparent;
	position: relative;
	z-index: -1;
}

.phones{
	padding: 0em 0rem 0em 0rem;
	float: left;
	margin: auto;
	}

.phone{
	float: left;
	width: 24rem;
	padding: 0.5rem 0.5rem 0.5rem 0.5rem;
	white-space: nowrap;
	}

.logo-mobile {
	width: 1em;
	margin: 0 0.4rem 0 0;
}

.phone-pic {
	width: 1em;
	margin: 0 0 0 0.8rem;
}

.phone-link{
	display: flex;
	justify-content: space-between;
	float: left;
	text-decoration: none;
	font-size: 1.8rem;
	align-items: center;
	color: white;
	}

.navigation-bar {
    background-color: var(--main-color);
	max-width: 1280px;
	width: 100%;
	margin: auto;
}

.menu {
	display: flex;	
    flex-direction: row;
    list-style-type: none;
	margin: 0;
    padding: 0;
	width: 100%;
	justify-content: space-between;
}

.menu li {
  float: left;
  width: 25%;
  overflow: hidden;
}

.navigation-bar a {
	float: left;
	width: 100%;
	background: var(--main-color);
	padding: 1.6rem 0px 1.6rem 0px; 
	color: white;
	font-weight: bolder;
	text-align: center;
}

.navigation-bar a:hover {
	background: var(--weak-color);
}

.navigation-bar .active-page {
	background: var(--weak-color);
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.items{
	width: 100%;
	max-width: 1280px;
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(36rem, auto));
	background-color: transparent;
	align-items: center;
	justify-items: center;
	margin: auto;
	margin-top: 4rem;
}
	
.item-1,
.item-2,
.item-3,
.item-4,
.item-5,
.item-6 {
	width: 34rem;
	height: 34rem;
	background-color: transparent;
	font-size: 2.8rem;
	margin-bottom: 3.2rem;
	}

.item-1:hover,
.item-2:hover,
.item-3:hover,
.item-4:hover,
.item-5:hover,
.item-6:hover {
	transition: .2s;
	width: 35rem;
	height: 35rem;
	font-size: 2.9rem;
	}


.item-image-container{
	background-color: transparent;
}

.item-image-container img{
	width: 50%;
	height: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.item-description p{
	width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
	color: black;
	font-weight: bold;
	text-align: center;
}
	
.menu-container {
  display: none;
}

#menu-toggle {
  display: none;
}

#menu-label {
	display: none;
}

footer {
	display: flex;	
	width: 100%;
	background: var(--main-color);	
    flex-direction: column;
	justify-content: center;
	align-items: center;
}

.no-oferta {
	font-size: small;
	text-align: center;
}

.copiright {
	font-weight: bold;
	color: white;
	text-align: center;
}

.counters {
	display: flex;	
    flex-direction: row;
	margin: 0;
    padding: 0;
	width: 100%;
	justify-content: center;
}

caption {
	font-weight: bold;
	font-size: x-large;
	margin: 1em 0em 1em 2em;
	text-align: center;
	
}
.price-table {
	font-size: 2rem;
	table-layout: fixed;
	width: calc(100% - 2rem);
	border-collapse: collapse;
	border: 1px solid black;
	margin: 1rem 1rem 1rem 1rem;
}

.th-price {
	width: 14rem;
}

td + td {
	text-align: center;
}

.price-table-section {
	text-align: center;
	font-weight: bold;
	padding: 0em 0rem 0em 0em;
}

.price-table th, td {
	border: 1px solid black;
}

.working-hours {
		margin: 2em 0em 0em 0em;
}

.main .phone-link{
	color: black;
}


@media only screen and (max-width: 41rem) {
	
.header-container{
	flex-direction: row;
	align-items: end;
	justify-content: space-between;
	}
	
.navigation-bar {
 	border: solid;
	border-color: white;
	height: 4rem;
	margin: 0.8rem;
	padding-right: 0.5rem;
	width: auto;
	float: right;
 }
	
  
  .menu {
    position: absolute;
	right: -5rem;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: right;
	margin: 0px;  	
	transform: translateY(4rem);
  }

.menu-container {
  display: flex;
  height: 100%;
  width: auto;
  float: right;
  cursor: pointer;
  }

#menu-label {
	display: block;
	float: left;
	color: white;
	font-weight: bolder;
	margin: 0.9rem 0.4rem 0.7rem 0.4rem;
}

.menu-button-container {
	display: block;
    float: right;
	width: 3.2rem;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  float: right;
  background-color: white;
  height: 0.4rem;
  width: 3rem;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0.2rem;
}

.menu-button {
  content: '';
  margin-top: 1.6rem;
}

.menu-button::before {
  content: '';
  margin-top: -0.8rem;
}

.menu-button::after {
  content: '';
  margin-top: 0.8rem;
}

#menu-toggle:checked ~ .menu-container .menu-button-container .menu-button::before {
  margin-top: -0.4rem;
  transform: rotate(405deg);
}

#menu-toggle:checked ~ .menu-container .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked ~ .menu-container 	.menu-button-container .menu-button::after {
  margin-top: -0.4rem;
  transform: rotate(-405deg);
}

#menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  
#menu-toggle:checked ~ .menu li {
  height: 3.5em;
  position: relative;
  right: 5rem;
  z-index: 1;
  }

#menu-toggle:checked ~ .menu a {  
	float: left;
	width: 100%;
	height: 6rem;
	background: var(--main-color);
	padding: 1.6em 0px 1.6em 0px;
	font-size: large;
	text-decoration: none;
  }
  
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 2em 0;
    width: 100%;
    color: white;
    background-color: #222;
	z-index: 1;
  }
	
  .phones{
    width: 18rem;
	margin: 0;
  }
	
  .declaration-container{
		height: 25rem;
  }
	
  .declaration-container::before {
	  filter: brightness(0.6);
  }
	
	.declaration {
	font-size: 2.8rem; 
	}
	
}

