
body {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    color: var(--white);
    background: url(../img/bg-x.svg) var(--black);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    padding: 0px;
    margin: 0px;
}

html {scroll-behavior: smooth;}

::-webkit-scrollbar {width: 10px;}
::-webkit-scrollbar-thumb {background: var(--yellow);-webkit-transition: .3s;transition: .3s;border-radius: 5px;}
::-webkit-scrollbar-track {border-radius: 0px;}
::-moz-selection {background: var(--black);color: #ffffff;}
::selection {background: var(--black);color: #ffffff;}

/*variable*/
:root{
    --yellow:#D2FF53;
    --white:#ffffff; 
    --black:#070707;  
}

.text-yellow{
	color:var(--yellow)!important;
}

.btn{	
	padding: 15px 35px;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: bold;
	border:none;
	color: var(--black);
	transition: .3s;
}

.btn.btn-primary,
.btn.btn-primary:focus,
.btn.btn-primary:active{
	background: var(--yellow);
	color: var(--black);
}

.btn.btn-primary:hover{
	filter: brightness(1.1);
}


.nav-item a.nav-link{
	font-weight: 600;
	transition: .3s;
}

.nav-item a.nav-link:hover{
color:var(--yellow)!important;
}

.info{
    padding: 10px 20px;
    display: table;
    width: auto;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
    margin: 0px auto 20px;
    font-size: .9rem;
}

nav{transition: .3s;}
nav.sticky{backdrop-filter: blur(5px); background: rgb(7 7 7 / 73%) !important;}

.navbar-toggler{background: var(--yellow)}

section{
	padding: 50px 0px;	
}


section.hero{
	padding-top: 160px;
}

h1,h2,h3{	
	font-family: "Syne", sans-serif;
	text-transform: uppercase;
}

h1{font-size: 1.6rem;}

h1 span{
	color:var(--yellow);
}

ul li{
	text-decoration: none;
	list-style: none;
}

p.numero{
	min-width: 40px;
	height: 40px;
	border:2px solid var(--yellow);
	align-items: center;
	display: flex;
	justify-content: center;
	border-radius: 100%;
	color:var(--yellow);
	position: relative;
	background: var(--black);
}

p.numero::after {
    content: '';
    width: 2px;
    height: 120px;
    background: var(--yellow);    
    margin: 0;
    position: absolute;    
    top: 0;
    z-index: -1;
}


li:nth-child(3) .numero::after {
    display: none;
}


h2{
	font-size: 1.4rem;
	display: flex;
	gap: 10px;
	align-items: center;
	text-align: center;
	justify-content: center;
}

h2::before{
	content: '';
	background-image: url(../img/x.svg);
	background-size: contain;
    height: 40px;
    background-position: center;
    width: 30px;
    background-repeat: no-repeat;
    display: inline-flex;
}

button.nav-link,button.nav-link:focus,button.nav-link:active{
	border-radius: 25px!important;
	color:var(--white);
	font-weight: 600;
}

button.nav-link:hover{
	color:var(--yellow);
}

button.nav-link {
    font-size: 1.15rem;
    border:1px solid #3b3b3b;
}

button.nav-link.active{
	background:var(--yellow)!important;
	color:var(--black)!important;
	border:1px solid var(--yellow);
}

.product-wrap{
	gap: 20px;
}

.product{
	border:1px dashed #3b3b3b;
	border-radius: 30px;
	padding: 20px;
	backdrop-filter: blur(20px);
	width: 100%;
	transition: .7s ease;
}


.product:hover img{
	transform: scale(1.1);
}

.product img{
	transition: .7s ease;
}


.product span{
	font-size: .8rem;
	color:#8BE282;
	margin-bottom: 5px;
	display: block;
	font-weight: bold;
}

.product .product-title,
.product .product-price{
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0px;
}

.product .product-price{
	font-size: 1.2rem;
	font-weight: 500;
	color:var(--yellow);
}

.product .product-price::before{
	font-size: .8rem;
	content: '$ ';
}

.product button.btn.btn-outline-primary{
	border-color: var(--yellow);
	border-radius: 100%;
	padding: 0px;
	width: 46px;
	height: 46px;
}

.product button.btn.btn-outline-primary:hover{
	background: var(--yellow);
}

.product button.btn.btn-outline-primary:hover > img{
	filter: brightness(0);
}

section.bg-yellow{
	background: var(--yellow);
	border-radius: 30px;

}

section.bg-yellow h2{
	color:var(--black);	
}

section.bg-yellow h2::before{
	filter: brightness(0);
}

section.bg-yellow .brands-wrap{
	display: flex;
	flex-flow: wrap;
	gap: 20px 40px;
	justify-content: center;
}

section.bg-yellow .brands-wrap img{
	width: 50px;
}

.aboutUs img{
	border-radius: 20px;
	filter: grayscale(100%);
}

.network{
	padding: 0px;
	display: flex;
	gap: 20px;

}

.network li a {
	width: 40px;
	height: 40px;
	background: var(--yellow);
	border-radius: 100%;
	text-align: center;
	display: block;
    align-content: center;
    transition: .3s;
}

.network li a:hover {
	filter: brightness(1.1);
}

.network li a img{
	width: 20px;
	height: 20px;
}



@media all and (min-width: 767px){

	body {
		background-size: cover;    
	    background-attachment: fixed;
	    background-position: center;	    
	}


	.container-fluid{
		width: calc(100% - 40px);
		margin: auto;
	}

	h1{
		font-size: ;
	}

	section{
		padding: 100px 0px;	
	}


	h2::before{		
	    height: 70px;	   
	    width: 52px;	    
	}

	.product{width: calc(50% - 20px);}


	.network li a {
		width: 60px;
		height: 60px;		
	}	

	.network li a img{
		width: 30px;
	}

	section.bg-yellow .brands-wrap{		
		gap: 50px;
	}

	section.bg-yellow .brands-wrap img{
		width: 50px;
	}
}


@media all and (min-width: 1024px){

	h1{
		font-size: 5.625rem;
		line-height: 5rem;
	}
	
	h2{
		font-size: 2.5rem;
	}

	section.bg-yellow .brands-wrap{		
		gap: 80px;
	}	

	section.bg-yellow .brands-wrap img{
		width: 80px;
	}
	
	
}



@media all and (min-width: 1280px){
	.product{width: calc(33.3% - 20px);}	
}

@media all and (min-width: 1440px){
	.product{width: calc(25% - 20px);}	
}



