@charset "utf-8";
/* CSS Document */

:root {
  --lightBlueHex: #85E1DE; /*blu chiaro*/
  --blueHex: #0D5CFF; /*blu*/
  --darkBlueHex: #031945; /*blu scuro*/
  --lightgrayHex: #f3f0f0; /*grigio chiaro*/
  --darkgrayHex: #31342B; /*grigio scuro*/
  --white: #fff;
  --red: #f00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1em;
  color: var(--darkBlueHex);
}

h1, h2, h3, h4, h5, h6, p {
	margin:0;
	padding:0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
}

ul {
  padding-left: 16px;
  margin-bottom:10px;
}

a, a:visited {
	color: var(--darkgreenHex);
	text-decoration: none;
}

a:hover, a:active {
	color: var(--darkgreenHex);
	text-decoration: underline;
}

button,
a.button, 
a.button:visited {
  cursor: pointer;
  text-decoration:none;
  padding:10px;
  background: transparent;
  color: var(--darkgreenHex);
  border:1px solid var(--darkgreenHex);
  transition: all .5s ease-out;
}

a.button.small, 
a.button.small:visited {
  top: 3px;
  padding: 2px 10px;
  position: relative;
}

button:hover,
a.button:hover, 
a.button:active {
  text-decoration:none;
  background: var(--darkgreenHex);
  color: var(--white);
  transition: all .5s ease-out;
}

button[disabled],
a.button.disabled {
  cursor: default;
  background: transparent;
  color: var(--lightgrayHex);
  border: 1px solid var(--lightgrayHex);
}

.ui-autocomplete {
  z-index: 9;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1em;
  background: #fff;
  max-width: max-content;
  border: 1px solid #333;
  list-style-type: none;
  padding: 0;
  border-top: 0;
  padding:5px;
}

a#toTop {
  display: none;
  position: fixed;
  right: 5px;
  bottom: 5px;
  width: 50px;
  height: 50px;
  z-index: 9;
  background: var(--lightgreenHex);
  color: var(--white);
  border-radius: 10px;
  border:0;
  padding:0;
  font-size:1.5em;
  transition:all .5s ease-out;
}

a#toTop:hover {
  background: var(--darkgreenHex);
}

a#toTop:after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  position: absolute;
  top: calc(50% - 13px);
  left: calc(50% - 13px);
  overflow: hidden;
  height: 26px;
  width: 26px;
}

section {
  position: relative;
  padding: 20px;
  min-height: 200px;
  z-index:1;
  background: var(--white);
}

section[data-content="Privacy"],
section[data-content="Cookie"],
section[data-content="Condizioni"] {
  margin-top:54px;
}

@media (min-width: 1024px) {
  section {
    padding: 100px 50px 50px 50px;
    min-height: 200px;
  }
  
  section::before {
    /*content: attr(data-content);
    position: absolute;
    top: -3px;
    left:65px;
    font: bold 17em Arial;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color:rgba(0,0,0,0.1);*/
  }
}

#hero {
  margin:0;
  height:250px;
  background-image: url(/css/assets/blobanimation-home.svg), url(/css/assets/bg-home.jpg);
  background-size: 70%, 100%;
  background-repeat: no-repeat, no-repeat;
  padding-top: 60px;
  background-position: center center, bottom center;
}

#hero.progetto {
  background-image: url(../uploads/header/bg/img/bg-hero-progetto.jpg);
}

#hero.video {
  background-image: url(../uploads/header/bg/img/bg-hero-video.jpg);
}

#hero.corsi {
  background-image: url(../uploads/header/bg/img/bg-hero-corsi.jpg);
}

#hero.contatti {
  background-image: url(../uploads/header/bg/img/bg-hero-contatti.jpg);
}

#hero.private,
#hero.cart {
  background-color: var(--lightgreenHex);
  background-image: none;
}

/*
#hero::after {
  content: "";
  position: absolute;
  top: -84px;
  left: 0;
  bottom: 0;
  right: 0;
  height: calc(100% + 84px);
  background: #2b823c;
  opacity: 0.2;
  z-index: -1;   
}
*/

#hero video {
  display:none;
  z-index: -2;
}

#hero h1,
#hero h2,
#hero button {
  text-shadow: 1px 1px var(--darkBlueHex);
}

#hero button {
	display:none;
  margin-top:20px;
	width:50px;
	height:50px;
	border-radius:50%;
	border:2px solid rgba(255,255,255,0.5);
  box-shadow: 1px 1px var(--darkBlueHex);
}
#hero button:hover {
	/*border: 1px solid var(--darkgreenHex);*/
	border:2px solid rgba(255,255,255,1);
	background: transparent;
}
#hero button::before {
	font-family: "Font Awesome 5 Free";
	font-size: 2em;
	font-weight: bold;
	content: "\f078";
	color:rgba(255,255,255,0.5);
	transition: all .5s ease-out;
}
#hero button:hover::before {
	color:rgba(255,255,255,1);
	transition: all .5s ease-out;
}
@media (min-width: 1024px) {
  #hero button {
    display:block;
  }
}

#hero.private, #hero.cart {
  height:125px;
  min-height: 125px;
}

@media (min-width: 1024px) {
  #hero {
    padding-top: 0;
    height: 450px;
    padding-bottom: 100px;
    color: #fff;
  }
  
  #hero:not(.progetto, .video, .corsi, .contatti) {
    overflow:hidden;
    /*background-image: none;*/
		display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    height: 500px;
    padding-bottom: 125px;
  }
  
  #hero video {
    display:block;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
		margin-top: -150px;    
    /*filter: grayscale(100%) sepia(100%) hue-rotate(90deg);*/
  }
  
  #hero.private,
  #hero.cart {
    height: 350px;
  }
  
  #hero.private::before,
  #hero.cart::before {
    font: bold 12.5em Arial;
    top: 60px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  }
  
  #hero.private::after,
  #hero.cart::after {
    background: none;
  }
  
  #hero.private h3,
  #hero.cart h3 {
    height: 350px;
    color: var(--darkgreenHex);
    height: auto;
  }
  
  #hero.private h2,
  #hero.cart h2 {
    color: var(--white);
  }
  
}

section .row,
footer .row {
  display: flex;
  flex-direction: column;
  min-height: inherit;
  width: 100%;
  position: relative;
}

#hero .row {
  display:block;
}

footer .row {
  padding:20px 0;
  justify-content: center;
  border-top:1px solid var(--darkgrayHex);
}

section .row.reverse {
  flex-direction: column-reverse;
}

@media screen and (min-width: 1024px) {
  section .row,
  footer .row {
    flex-direction: row;
  }
  
  section .row.reverse {
    flex-direction: row;
  }
}

section .row .column.all-width {
  width:100%;
}

section .row .column.one-half,
.one-third,
.two-third, 
.three-forth,
.one-forth {
  width:100%;
}

@media (min-width: 768px) {
  section .row .column.one-half {
    width:50%;
  }
  section .row .column.one-third {
    width:33.33%;
  }
  section .row .column.two-third {
    width:66.66%;
  }
  section .row .column.three-forth {
    width:75%;
  }
  section .row .column.one-forth {
    width:25%;
  }
}

section h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  section h2 {
    font-size: 4em;
    margin-bottom: 0px;
  }
}

section h3 {
  color: var(--lightgreenHex);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size:1em;
}

@media (min-width: 1024px) {
  section h3 {
    font-size:1.2em;
    margin-top: 35px;
    margin-bottom: 20px;
  }
}

section h4 {
  font-weight: 300;
  font-size: 1.5em;
  margin-bottom: 10px;
}

section h5 {
  font-weight: 300;
  font-size: 1.2em;
  margin-bottom: 10px;
}

section p {
  margin-bottom: 10px;
}

section p span.evidence {
	background: var(--lightgreenHex);
	font-size:0.9em;
	font-style: italic;
}

section input.quantity {
  width: 40px;
  text-align: center;
  padding: 6px;
  border: 1px solid var(--darkgreenHex);
}

section input.qtyminus,
section input.qtyplus {
  outline:0;
  background: transparent;
  color: var(--darkgreenHex);
  border: 1px solid var(--darkgreenHex);
  transition: all .5s ease-out;
  padding: 6px;
  width: 30px;
}

section input.qtyminus:hover,
section input.qtyplus:hover {
  background: var(--darkgreenHex);
  color: var(--white);
  transition: all .5s ease-out;
}

section p.but-line {
  line-height: 2.3em;
}

section .row ul.grid {
  list-style-type: none;
  display: grid;
  grid-gap: 20px;
  padding-left:0;
}

section .row ul.grid.pillole,
section .row ul.grid.corsi {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  section .row ul.grid {
    list-style-type: none;
    display: grid;
    grid-gap: 50px;
    grid-row-gap: 0px;
  }
  
  section .row ul.grid.pillole,
  section .row ul.grid.corsi {
    margin-bottom: 40px;
		grid-row-gap: 50px;
  }
}

section .row ul.grid.grid-2,
section .row ul.grid.grid-13,
section .row ul.grid.grid-23 {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  section .row ul.grid.grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  
  section .row ul.grid.grid-13 {
    grid-template-columns: 1fr 2fr;
  }
  
  section .row ul.grid.grid-23 {
    grid-template-columns: 2fr 1fr;
  }
  
}

section .row ul.grid.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  section .row ul.grid.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

section .row ul.grid.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  section .row ul.grid.grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

section .row ul.grid.grid-3 li,
section .row ul.grid.grid-4 li {
  position: relative;
	/*
	background-color: var(--darkgreenHex);
	transition: all .5s ease-out;
	*/
}

section .row ul.grid.grid-3 li:hover,
section .row ul.grid.grid-4 li:hover {
  /*
	background-color: var(--white);
  transition: all .5s ease-out;
	*/
}

section .row ul.grid.grid-3 li img.cover,
section .row ul.grid.grid-4 li img.cover {
  width:100%;
	filter:none;
	opacity:1;
  transition: all .5s ease-in;
}

section .row ul.grid.grid-3 li:hover img.cover,
section .row ul.grid.grid-4 li:hover img.cover {
  width:100%;
	filter: grayscale(100%) sepia(100%) hue-rotate(90deg);
  opacity:1;
  transition: all .5s ease-in;
}

section .row ul.grid.corsi li {
  border-top:1px solid var(--darkgreenHex);
}

@media (min-width: 1024px) {
  section .row ul.grid.corsi li {
    border-top:0;
		padding-bottom:60px;
  }
}

section .row ul.grid.pillole li::after,
section .row ul.grid.corsi li::after {

}

@media (min-width: 1024px) {
  section .row ul.grid.pillole li::after,
  section .row ul.grid.corsi li::after {
    content:'';
    position: absolute;
    bottom:0;
    right: 0;
    display:block;
    background-image: url(assets/paolo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    filter: grayscale(100%) sepia(100%) hue-rotate(90deg);
    transition: all .5s ease-in;
  }
}

section .row ul.grid.pillole li::after {
  height:200px;
  width:50%;
  background-image: url(assets/paolo.png);
}

section .row ul.grid.corsi li::after {
  height:180px;
  width:35%;
  background-image: url(assets/teacher.png);
}

section .row ul.grid.pillole li:hover::after {
  height: 260px;
  width: 60%;
  right: -15px;
  transition: all .5s ease-in;
}

section .row ul.grid.corsi li:hover::after {
  height: 230px;
  width: 40%;
  right: -10px;
  transition: all .5s ease-in;
}

section .row ul.grid.pillole li h4 {
  position: absolute;
  padding: 10px;
  color: var(--white);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  margin-bottom:0;
	opacity: 1;
	transition: all .5s ease-out;
}

section .row ul.grid.pillole li p,
section .row ul.grid.corsi li p {
  margin-bottom:0;
}

section .row ul.grid.pillole li .box-stats {
  visibility: visible;
  opacity: 1;
  display: inline-block;
  position:absolute;
  bottom:0;
  left:0;
  padding:10px;
  color: var(--white);
  transition: all .5s ease-in;
}

section .row ul.grid.pillole li:hover .box-stats {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-out;
}

section .row ul.grid.pillole li .box-stats p {
  position: relative;
  padding-left:20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

section .row ul.grid.pillole li .box-stats p:before {
  position: absolute;
  top: 5px;
  left: 0;
  font-family: "Font Awesome 6 Brands";
  font-size: 15px;
  font-weight: 100;
  line-height: 1;
  color: var(--white);
}

section .row ul.grid.pillole li .box-stats p.views:before {
  font-family: "Font Awesome 6 Free";
  content: "\f06e";
}

section .row ul.grid.pillole li .box-stats p.whatsapp:before {
  content: "\f232";
}

section .row ul.grid.pillole li .box-stats p.facebook:before {
  content: "\f39e";
}

section .row ul.grid.pillole li .box-stats p.instagram:before {
  content: "\f16d";
}

section .row ul.grid.pillole li .box-stats p.twitter:before {
  content: "\f099";
}

section .row ul.grid.pillole li .box-stats p.tiktok:before {
  content: "\e07b";
}

section .row ul.grid.pillole li .box-view {
  visibility: hidden;
  opacity: 0;
  position:absolute;
  bottom:10px;
  left:0;
  color: var(--white);
  transition: all .5s ease-in;
}

section .row ul.grid.pillole li:hover .box-view {
  visibility: visible;
  opacity: 1;
  display: inline-block;
  transition: all .5s ease-in;
}

section .row ul.grid.corsi li h4 {
	font-size: 1em;
  padding: 10px 0;
  color: var(--darkgrayHex);
  margin-bottom:0;
}

@media (min-width: 1024px) {
  section .row ul.grid.corsi li h4 {
    /*position: absolute;*/
    padding: 10px;
    color: var(--darkgrayHex);
		width:70%;
    /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);*/
  }
}

/*
section .row ul.grid.corsi li:hover h4 span {
  background: rgba(43, 130, 60, 0.7)
}
*/

section .row ul.grid.corsi li .box-price {
  display:inline-block;
	padding: 10px;
	border: 1px solid var(--darkgrayHex);
}

@media (min-width: 1024px) {
  section .row ul.grid.corsi li .box-price {
    position: absolute;
    bottom: 10px;
    left:10px;
    padding: 10px;
    border: 1px solid var(--darkgrayHex);
  }
}

section .row ul.grid.corsi li:hover .box-price {
  display:none;
  /*transition: all .5s ease-in;*/
}

section .row ul.grid.corsi li .box-buy {
  display:none;
}

@media (min-width: 1024px) {
  section .row ul.grid.corsi li .box-buy {
    display:none;
    position: absolute;
    bottom:10px;
    left:10px;
  }
}

section .row ul.grid.corsi li:hover .box-buy {
  display:inline-block;
}

section .row ul.grid.pillole li a.button,
section .row ul.grid.pillole li a.button:visited,
section .row ul.grid.corsi li a.button,
section .row ul.grid.corsi li a.button:visited {
  position: relative;
	display:block;
  z-index: 9;
  border-color: var(--darkgreenHex);
  color: var(--darkgreenHex);
  /*margin-left: 10px;*/
}

section .row ul.grid.pillole li a.button:hover,
section .row ul.grid.pillole li a.button:active,
section .row ul.grid.corsi li a.button:hover,
section .row ul.grid.corsi li a.button:active {
  color: var(--white);
  background: var(--darkgreenHex);
}

section .row .tabs {
  display: flex;
  flex-wrap: wrap;
}

section .row .tabs .input {
  position: absolute;
  opacity: 0;
}

section .row .tabs .label {
  display:block;
  width: 100%;
  font-size: 1.5em;
  margin-top:20px;
  cursor: pointer;
  text-decoration:none;
  padding:10px;
  background: transparent;
  color: var(--darkgreenHex);
  border:1px solid var(--darkgreenHex);
  transition: all .5s ease-out;
}

@media (min-width: 768px) {
  section .row .tabs .label {
    display: inline-block !important;
    margin-right:5px !important;
    margin: 0 !important;
  }
}

section .row .tabs .label:hover {
  background: var(--darkgreenHex) !important;
  color:white !important;
}

section .row .tabs .label:active {
  background: var(--darkgreenHex);
  color:white;
}

section .row .tabs .input:focus + .label {
  z-index: 1 !important;
}

section .row .tabs .input:checked + .label {
  background: var(--darkgreenHex);
  color:white;
}

section .row .tabs .input:checked + .label {
  background: white;
  color: var(--darkgreenHex);
}

@media (min-width: 768px) {
  section .row .tabs .label {
    width: auto !important;
    margin-right:20px !important;
  }
  section .row .tabs .label:last-of-type {
    margin-right:0px !important;
  }
  section .row .tabs .input:checked + .label {
    background: var(--darkgreenHex) !important;
    color:white !important;
  }

}

section .row .tabs .panel {
  margin-top:20px;
  display: none;
  width: 100%;
}

section .row .tabs .panel {
  display: block;
  margin-top:0px;
  background: white;
  padding:20px;
}

@media (min-width: 768px) {
  section .row .tabs .panel {
    background: transparent !important;
    padding:0 !important;
    order: 99 !important;
    margin-top:20px !important;
    display: none !important;
    width: 100% !important;
  }
}

section .row .tabs .input:checked + .label + .panel {
  display: block;
}

@media (min-width: 768px) {
  section .row .tabs .input:checked + .label + .panel {
    display: block !important;
  }
}

section form {
  margin-top: 20px;
}

section form input[type='text'],
section form input[type='password'],
section form select,
section form textarea {
  outline:0;
  border:0;
  border-bottom: 1px solid var(--darkgrayHex);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1em;
  color: var(--darkgrayHex);
  width: 100%;
}

section form input.password {
  width:calc(100% - 30px);
}

section form textarea {
  height: 7.2em;
}

section form input[type='checkbox'] {
  outline:0;
  border:0;
}

section form span.details,
section form span.default {
  font-size:0.85em;
  font-style: italic;
}

section form span.default {
  display:none;
}

section .responseForm span {
	display: inline-block;
}

section .responseForm span.error {
	background: var(--red);
}

section .responseForm span.ok {
	background: var(--lightgreenHex);
}

/*ASIDE*/
section .aside,
section .aside2 {
  background: #eee;
  margin-top: 20px;
  padding: 20px;
}

@media (min-width: 1024px) {
  section .aside,
  section .aside2 {
    margin-top: 80px;
    padding: 20px;
    margin-left: 40px;
  }

  section .aside2 {
    margin-top: 0px;
  }
}


section .aside input[type='text'],
section .aside form select {
  outline:0;
  border:0;
  border-bottom: 1px solid var(--darkgrayHex);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1em;
  color: var(--darkgrayHex);
  width: 100%;
	background: transparent;
}

section .aside span.details {
  font-size:0.85em;
  font-style: italic;
}

/*CARRELLO*/
table#tb_carrello_list {
  width:100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
table#tb_carrello_list p {
  margin-bottom: 0px;
}
table#tb_carrello_list tbody tr {
  border-bottom: 1px solid var(--darkgrayHex);
}
table#tb_carrello_list tfoot tr {
  border-top:1px solid var(--hexColor6);
}
table#tb_carrello_list td {
  padding:6px;
}
table#tb_carrello_list th.prod {
  width:0;
}
table#tb_carrello_list th.rem {
  width:45px;
  text-align: center;
}
table#tb_carrello_list th.total {
  width:120px;
}
table#tb_carrello_list td.prod img {
  width:100%;
}
@media (min-width: 1024px) {
  table#tb_carrello_list th.prod {
    width:225px;
  }
}
table#tb_carrello_list td.rem span.remove {
  cursor: pointer;
  font-size:0.75em;
  display: inline-block;
  background: #fff;
  outline: 0;
  border: 1px solid var(--darkgrayHex);
  border-radius: 3px;
  text-align: center;
  line-height: 25px;
  padding:3px;
}
table#tb_carrello_list td.total {
  text-align: center;
}
table#tb_carrello_list td.totalLine {
  text-align:right;
}
table#tb_carrello_list td.totalOrder {
  text-align:center;
}

/*MENU*/
header {
  position: fixed;
  top:0;
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition:all .6s ease-out;
  z-index: 9;
}
header.fixed,
header.page {
  background: var(--white);
}
/* Logo */
header .logo {
  display: inline-block;
  background-image: url(../uploads/logo/logo-w.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: calc(100% - 10px);
  background-position: 10px 10px;
  height:50px;
  min-width:240px;
  transition:all .6s ease-out;
}
header.fixed .logo,
header.page .logo {
  height: 50px;
  background-image: url(../uploads/logo/logo.png);
  background-size: calc(100% - 10px);
  transition:all .6s ease-in;
}
header .logo img {
  height:100%;
}
/* Nav menu */
header .nav {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
}
header .nav .menu {
  list-style-type: none;
  padding:0;
  border-top: 1px solid var(--lightgreenHex);
}
header .nav .menu a {
  display: block;
  font-size:1em;
  padding: 10px;
  color: var(--darkBlueHex);
  background: var(--white);
  border: 2px solid transparent;
  border-radius:10px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .5s ease-in;
}
header .nav .menu a:hover {
  transition: all .5s ease-out;
  border: 2px solid var(--darkBlueHex);
}
header .nav .menu li.area a {
  background: var(--blueHex);
  color: var(--white);
  border-color: var(--blueHex);
}
header .nav .menu li.area a:hover {
  background: var(--lightBlueHex);
  color: var(--white);
  border-color: var(--lightBlueHex);
}
header .nav {
  max-height: 0;
  transition: max-height .5s ease-out;
}
/* Menu Icon */
.hamb {
  cursor: pointer;
  float: right;
  padding: 25px 10px;
}

.hamb-line {
  background: var(--lightgreenHex);
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
header.fixed .hamb-line {
  background: var(--lightgreenHex);
}
.hamb-line::before,
.hamb-line::after {
    background: var(--lightgreenHex);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
header.fixed .hamb-line::before,
header.fixed .hamb-line::after {
  background: var(--lightgreenHex);
}
.hamb-line::before{
    top: 7px;
}
.hamb-line::after{
    top: -7px;
}

.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
/* Responsiveness */
@media (min-width: 1024px) {
  header .logo {
    height: 70px;
    min-width: 400px;
  }
  
  header .nav {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: fit-content;
    background-color: transparent;
  }
  header .nav .menu {
    border-top: 0;
  }
  header .nav .menu li {
    float: left;
    margin:0 5px;
  }
  header .nav .menu a {
    color: var(--darkBlueHex);
    background-color: transparent;
  }
  header.fixed .nav .menu a,
  header.page .nav .menu a {
    color: var(--darkBlueHex);
  }
  header .nav .menu a:hover,
  header .nav .menu a.active,
  header.fixed .nav .menu a:hover,
  header.fixed .nav .menu a.active,
  header.page .nav .menu a:hover,
  header.page .nav .menu a.active {
    color: var(--blueHex);
    border-color: var(--blueHex);
  }
  
  header .nav .menu a.active,
  header .nav .menu a.active:hover,
  header.fixed .nav .menu a.active,
  header.fixed .nav .menu a.active:hover {
    border-color: transparent;
  }
  
  header .nav .menu a.active,
  header.fixed .nav .menu a.active,
  header.page .nav .menu a.active {
    font-weight:500;
  }

  .hamb{
      display: none;
  }
}

nav span.quantity {
	background: var(--darkgreenHex);
	color: var(--white);
	padding: 2.5px;
	aspect-ratio: 1/1;
	display: inline-block;
	font-size: 0.5em;
	position: absolute;
	top: 15px;
  margin-left: 10px;
	border-radius: 100%;
	width: 20px;
	text-align: center;
}

@media (min-width: 1024px) {
  nav span.quantity {
    top: 0;
    margin-left:0;
  }
}

/*FOOTER*/
footer {
  position: relative;
  padding: 0 50px;
  background: var(--white);
  text-align: center;
  z-index: 1;
}

/*MESSAGE BOX*/
#message {
  display:none;
}