.products{
	display: flex;
	flex-wrap: wrap;
	margin-top: 3.5vw;
	margin-bottom: 6.3vw;
}
.product{
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3.5vw;
	background: #FFFFFF;
}
.product:nth-child(3n){
	margin-right: 0;
}
.product:last-child{
	margin-bottom: 0;
}
.product .img{
	width: 100%;
	display: block;
}
.product .info{
	border: 1px solid #BABABA;
	border-top: unset;
	margin: 0;
	padding: 1.4vw 1vw 1.9vw 1vw;
}
.product .info p{
	margin: 0;
	text-align: center;
	font-family: "montserrat-medium"; 
}
.product .info .notification{
	color: #222222;
	font-size: 1vw;
	height: 2.9vw;
	margin-top: .5vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "montserrat-light"; 
}
.product .info .price{
	margin-top: 1vw;
}
.product .info .btns{
	display: flex;
	justify-content: space-between;
	margin-top: 1.4vw;
}
.product .info .btns .main-btn{
	width: 48%;
	padding: .8vw 0;
	display: flex;
	align-content: center;
	justify-content: center;
	font-family: "montserrat-medium"; 
}
.product .info .btns .main-btn.big-btn{
	width: 100%;
}
.product .info .btns .more{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .8vw 0;
	border: 1px solid var(--main-color);
	text-decoration: none;
	color: var(--main-color);
	width: 48%;
	position: relative;
	transition: .4s;
	font-size: 1.3vw;
}
.product .info .btns .more:before{
	width: 0;
	right: 0;
	left: unset;
	height: 100%;
	position: absolute;
	z-index: 2;
	background: var(--main-color);
	top: 0;
	transition: .4s;
	content: '';
}
.product .info .btns .more:hover:before{
	width: 100%;
	left: 0;
}
.product .info .btns .more span{
	z-index: 3;
	position: relative;
}
.product .info .btns .more:hover{
	color: #fff;
}
.adventures{
	display: flex;
	align-items: center;
	margin-top: 3.5vw;
}
.adventures.revers{
	flex-direction: row-reverse;
}
.adventures .img{
	min-width: 39vw;
	width: 39vw;
}
.adventures .info{
	padding-left: 3vw;
}
.adventures.revers .info{
	padding-right: 3vw;
	padding-left: 0;
}
.adventures .info-item{
	display: flex;
	align-items: flex-start;
	margin-bottom: 2vw;
}
.adventures .info-item p{
	margin-top: 0;
}
.adventures .info-item img{
	width: 2vw;
	margin-right: 1.4vw;
}
.my-team{
	padding: 7.3vw 10vw 6.3vw 10vw;
	margin-top: 6.3vw;
	background: #FAFAFA;
}
.my-team-title{
	font-size: 2.8vw;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1.3;
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.team-members{
	display: flex;
	justify-content: space-between;
	margin-top: 2.1vw;
}
.team-member{
	width: 30%;
	display: flex;
	align-items: flex-start;
}
.team-member .img{
	width: 11.1vw;
}
.team-member .info{
	width: 11.1vw;
	margin-left: 2.7vw;
}
.team-member .info h3{
	font-size: 1.4vw;
	margin: 0;
}
@media (max-width: 500px) {
	.products{
		flex-direction: column;
		margin-top: 11vw;
	}
	.product{
		width: 100%;
		margin: 0;
		margin-bottom: 15.6vw;
	}
	.product .info{
		padding: 6vw 5vw;
	}
	.product .info .price{
		margin-top: 3.2vw;
	}
	.product .info .btns{
		margin-top: 6vw;
	}
	.product .info .btns .main-btn{
		padding: 3vw 0;
		margin: 0;
	}
	.product .info .btns .more{
		padding: 3vw 0;
		font-size: 5vw;
	}
	.adventures,
	.adventures.revers{
		flex-direction: column-reverse;
	}
	.adventures .img{
		width: 100%;
		margin-top: 4vw;
	}
	.adventures .info{
		padding: 0;
		margin-top: 10vw;
	}
	.adventures .info-item{
		margin-bottom: 6.3vw;
	}
	.adventures .info-item img{
		width: 6.3vw;
		margin-right: 3.2vw;
		margin-top: 1vw;
	}
	.my-team{
		margin-top: 14vw;
		padding: 14vw 4vw;
	}
	.team-members{
		flex-direction: column;
	}
	.my-team-title{
		width: 100%;
		font-size: 6.3vw;
	}
	.team-member{
		width: 100%;
		margin-top: 11vw;
		justify-content: space-between;
	}
	.team-member .img{
		width: 42vw;
	}
	.team-member .info{
		width: 42vw;
		margin: 0;
	}
	.team-member .info h3{
		font-size: 5.6vw;
	}
	.product .info .notification{
		font-size: 4vw;
		height: unset;
		margin-top: 3vw;
	}
}