@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
	padding: 0;
	margin: 0;
	font-family: 'Josefin Sans', sans-serif;
	box-sizing: border-box;
}
.equipement .main-title{
    background-image:linear-gradient(5deg, rgb(242, 232, 231)0%,rgba(242, 233, 236, 0.7)5%), url(../image/bg3.jpg);
    padding: 65px;
}
.main-title h1{    
    color: #101010;
    font-weight: 500;
    font-size: 60px;

}
.up {
    position: fixed;
    bottom: 10px;
    right: -30px;
    background-color: #d25048;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 5px;
    border-radius: 4px;
    font-family: Arial, Tahoma;
    cursor: pointer;
    transition: 0.2s;
  }
  .up.show {
    right: 10px;
  }
.dropdown-item{
	text-decoration: none;
	color: rgb(27, 27, 27);
}
.nav-item a{
	
	color: #d25048;
}

.img {
    width: 100%;
    display: block;
}
.main-wrapper{
    background-color: #fff;
    min-height: 100vh;
    overflow-x: 0;
}
.container .equipement{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.main-title{
    text-align: center;
}


.main-title h1{
    padding: 16px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.display-style-btns{
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #fff;
    padding: 16px 0;
    border-radius: 5px;
}
.display-style-btns button{
    border: none;
    font-size: 22px;
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.display-style-btns button:hover{
    color: #f79410;
}
.active-btn{
    color: #f79410;
}
.item-list{
    margin: 36px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
}
.item{
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 4px 0 rgba(15, 4, 4, 0.05);
    transition: all 0.2s ease-out;
}
.item:hover{
    box-shadow: 0 0 10px 1px rgba(0, 4, 4, 0.15);
}
.item-img{
    position: relative;
    overflow: hidden;
}
.item-img img{
    width: 70%;
    margin: 16px auto;
}
.item-img:hover .icon-list{
    bottom: 26px;
}
.item-detail{
    padding: 16px;
    color: #202020;
    text-align: center;
}
.item-detail a{
    text-decoration: none;
}
.item-detail h3:hover{
    color: rgb(255, 123, 0);
}
.item-name{
    font-weight: 500;
    font-size: 18px;
    color: #202020;
    display: block;
}
.item-detail p{
    font-weight: 300;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.7;
    display: none;
}


/* stylings for details active */
.details-active.item-list{
    grid-template-columns: 100%;
}
.details-active .item{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.details-active .item-detail{
    text-align: left;
}
.details-active .item-detail p{
    display: block;
}
.details-active .item-detail .add-btn{
    display: block;
}


.social-menu ul{
	
	top: 50%;
	left: 50%;
	padding: 0;
	margin: 0;
	transform:translate(-50%,-50%);
	display: flex;

}
.social-menu ul li{
	list-style:none;
	margin: 0 10px;

}
.social-menu ul li .bi{
	font-size:30px;
	line-height:60px;
	transition: .6s;
	color: #000;
}
.social-menu ul li .bi:hover{
	color:#fff ;
}
.social-menu ul li a {
	
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50px;
	background-color:#fff ;
	text-align: center;
	transition: .6s;
	box-shadow: 0 5px 4px rgba(0, 0, 0, 5);

}
.social-menu ul li a:hover{
	transform: translate(0,-10px);
}
.social-menu ul li:nth-child(1) a:hover{
	background-color: #d25048;	
}
.social-menu ul li:nth-child(2) a:hover{
	background-color: #d25048;	
}
.social-menu ul li:nth-child(3) a:hover{
	background-color: #d25048;	
}
.social-menu ul li:nth-child(4) a:hover{
	background-color: #d25048;	
}


footer{
    background-color: #101010;
}

@media screen and (min-width: 678px){
    .item-list{
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media screen and (min-width: 768px){
    .item-list{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 576px){
    .details-active .item{
        grid-template-columns: 100%;
    }
}

