* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
    box-sizing: border-box;
    --card-clr: #2c3141;
	--body-clr: #131418;
	--primary-clr: #f0bf6a;
	--heading-clr: #dadada;
	--text-clr: #767a86;
  }
  body {
    overflow-x: hidden;
  }
  
  nav {
    height: 6rem;
    width: 100vw;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    position: fixed;
    z-index: 10;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #131418;
}

  .logo {
    padding: 1vh 1vw;
    text-align: center;
  }
  .logo img {
    height: 5rem;
    width: 7rem;
  }
  /* Додайте стилі для стрілки назад */
.back-arrow {
    display: none;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    cursor: pointer;
    z-index: 2;
  }
  
  .back-arrow img {
    width: 30px; /* Задайте ширину зображення відповідно до вашого дизайну */
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
  }
  .nav-links li a {
    color: #f2f5f7;
    text-decoration: none;
    margin: 0 0.7vw;
  }
  .nav-links li a:hover {
    color: #61dafb;
  }
  .nav-links li {
    position: relative;
  }
  .nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #61dafb;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
  }
  .nav-links li a:hover::before {
    width: 80%;
  }
  
  .hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
  }
  .hamburger {
    display: none;
  }
  
  @media screen and (max-width: 800px) {
    nav {
      position: fixed;
      z-index: 3;
    }
    .hamburger {
      display: block;
      position: absolute;
      cursor: pointer;
      right: 5%;
      top: 50%;
      transform: translate(-5%, -50%);
      z-index: 2;
      transition: all 0.7s ease;
    }
    .nav-links {
      position: fixed;
      background: #131418;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      clip-path: circle(50px at 90% -20%);
      -webkit-clip-path: circle(50px at 90% -10%);
      transition: all 1s ease-out;
      pointer-events: none;
    }
    .nav-links.open {
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
    }
    .nav-links li {
      opacity: 0;
    }
    .nav-links li:nth-child(1) {
      transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2) {
      transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3) {
      transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4) {
      transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5) {
      transition: all 0.5s ease 0.8s;
    }
    li.fade {
      opacity: 1;
    }
  }
  .wrapper {
    padding-top: 100px;
    width: 90%;
    margin: 0 auto;
    
  }
  .wrapper h1{
    padding-top: 10px;
    font-size: 20px;
  }
  .wrapper h2{
    padding-top: 10px;
    color: #ff0000;
    font-size: 17px;
  }
  .wrapper #search-container {
    display: flex;
  justify-content: center;
  align-items: center;
    margin: 1em 0;
  }
  .wrapper #search-container input {
    width: 40%;
    border-bottom: 2px solid #110f29;
    padding: 1em 0.3em;
  }
  .wrapper #search-container input:focus {
    border-bottom-color: #1f1f1f;
  }
  .wrapper #search-container button {
    padding: 1em 2em;
    margin-left: 1em;
    background-color: #1f1f1f;
    color: #ffffff;
    border-radius: 5px;
  }
  .wrapper #search-container button:hover {
    background-color: #3f3e3e;
    cursor: pointer;
  }

  .wrapper .button-value {
    border: 2px solid #1f1f1f;
    padding: 1em 2.2em;
    border-radius: 3em;
    background-color: transparent;
    color: #1f1f1f;
    cursor: pointer;
  }
  .wrapper .active {
    background-color: #1f1f1f;
    color: #ffffff;
  }  
  .button-value button:hover {
    background-color: #8a8787;
  }
  .wrapper #products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1.5em;
    padding: 2em 0;
  }
  .wrapper .card {
    background-color: #ffffff;
    max-width: 18em;
    margin-top: 1em;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 1em 2em 2.5em rgba(1, 2, 68, 0.08);
  }
  .wrapper .image-container {
    text-align: center;
  }
  .wrapper img {
    max-width: 100%;
    object-fit: contain;
    height: 15em;
  }
  .wrapper .container {
    padding-top: 1em;
    color: #110f29;
  }
  .wrapper .container h5 {
    font-weight: 500;
  }
  .wrapper .hide {
    display: none;
  }
  @media screen and (max-width: 720px) {
    .wrapper img {
      max-width: 100%;
      object-fit: contain;
      height: 10em;
    }
    .wrapper .card {
      max-width: 10em;
      margin-top: 1em;
    }
    .wrapper #products {
      grid-template-columns: auto auto;
      grid-column-gap: 1em;
    }
  }
  .buy-button {
    margin-top: 10px;
    background-color: #4CAF50; /* Зелений колір */
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
  }
  
  .buy-button:hover {
    background-color: #45a049; /* Темнозелений колір при наведенні */
  }
  @media screen and (max-width: 720px) {
    .wrapper #search-container input {
      width: 90%;
    }
  
    .wrapper #search-container button #search{
      margin-left: 0;
      width: 10%;
    }
  
    .wrapper .button-value {
      width: 100%;
      margin-bottom: 1em;
    }
  
    .wrapper #products {
      grid-template-columns: auto;
      grid-column-gap: 0;
    }
  
    .wrapper .card {
      max-width: 100%;
      margin-top: 1em;
    }
  }
  /*
Responsive Footer - Contact bar with animated icons
Code: Marco Natolli
Hire me: marconatolli@gmail.com
Note: remove .centroassoluto before adding to your page
*/

.centroassoluto {
    width: 100%;
    text-align: center;  
  }

p {font-family: 'Montserrat', sans-serif;
  font-size: 12px; }
  

@media only screen and (min-width: 768px) {
	.ftC {
		float: left;
		display: flex;
		flex-direction: COLUMN;
		justify-content: space-around;
		margin: 0; 
		text-align: center;
		vertical-align: middle;
		width: 100%;
		height: calc(50vh);
		min-height: calc(50vh);
		background-color: #f3f3f3;
		}
}

@media only screen and (max-width: 768px) {
	.ftC {
			display: flex;
		flex-direction: COLUMN;
		justify-content: space-around;
		margin: 0; 
		text-align: center;
		width: 100%;
		height: 60vh;
		min-height: 60vh;
    background-color: #f3f3f3;
		}
}

  .ftC a {color: #808080; text-decoration: none; font-weight:bold;}

@media only screen and (min-width: 768px) { .sparisci {display: block;} }
@media only screen and (max-width: 768px) { .sparisci {display: none;} }
@media only screen and (min-width: 768px) { .sparisci2 {display: none;} }
@media only screen and (max-width: 768px) { .sparisci2 {display: block;} }
  
  
  

.ftC p {margin: 0px; color: #808080;}

.ftcontatti {display:flex; justify-content: center;}

@media only screen and (max-width: 768px) {
	.colonnacontatti { width: 100%; padding-left: 10px;
                                   padding-right: 10px;
                                     padding-top: 10px;
                                   padding-bottom: 10px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  }
 @media only screen and (min-width: 768px) {
	.colonnacontatti { width: 30%;
                                   padding-left: 10px;
                                   padding-right: 10px;
                                       padding-top: 0px;
                                   padding-bottom: 0px;                               
   }
  }
   
@media only screen and (max-width: 768px) {
	.orizcontatti {
  display: flex;
   flex-direction:column;
justify-content: center;
  }}
  
@media only screen and (min-width: 768px) {
	.orizcontatti {
  display: flex;

  justify-content: space-around;
  
}}


.stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 2px;
  transition: stroke-dashoffset 0.8s ease,  opacity 0.5s ease;
}

.stroke-under {
  stroke-dashoffset: 00;
  stroke-dashArray: 300;
  stroke-width: 1px;
}

.st0 {  fill: #808080;
   display:inline-block;
    border:0;
    position: absolute;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
	transform-origin: 50% 50%;
    transform: scale(1);   
}


#play:hover .stroke-solid {
  opacity: 1;
  stroke-dashoffset: -300;
}

#play:hover .st0 {
fill: #202020;
    -webkit-transition: all 100ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 100ms ease-in;
    -ms-transform: scale(1.05);   
    -moz-transition: all 100ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 100ms ease-in;
   transform-origin: 50% 50%;
    transform: scale(1.05);
}

#play {
  cursor: pointer;
}





.orizcont {
margin-top: 102px;
  display: flex;
  justify-content: space-around;
  
}


.vl {
    border-left: 1px solid #dadada;
}
.ol {
    border-top: 1px solid #dadada;
    width: 100%;
}

.fill-height-or-more {
  min-height: 100%;
  display: flex;
  flex-direction: column-reverse;
}
.fill-height-or-more > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
	.ol {display: none;}
}
	
@media only screen and (max-width: 768px) {
	.vl {display: none;}
	.orizcont { 
			display: flex;
			flex-direction: column;
			justify-content: space-around;
			}
		
.fill-height-or-more > div {
display: flex;
			flex-direction: column;
			justify-content: space-around;
}
.fill-height-or-more {
display: flex; padding: 20px;
			flex-direction: column;
			justify-content: space-around;
}

}
.some-area {  padding-left: 10px;
    padding-right: 10px;}
