Scss
#about-section {
padding: 126px 0 81px;
}
.about-wrap {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
.about-img {
width: 50%;
}
.about {
max-width: 570px;
}
.about-text {
font-family: Poppins, Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 24px;
margin-bottom: 35px;
margin-top: 6px;
}
// SHOP
#shop-section {
padding-bottom: 120px;
text-align: center;
}
.shop-subtitle {
margin: 2px 0 44px;
}
.shop-wrap {
display: flex;
justify-content: space-between;
gap: 24px;
}
.shop-img {
width: 270px;
height: 304px;
}
.shop-name {
display: block;
margin: 20px 0 10px;
font-size: 20px;
}
.shop-price {
display: block;
margin-bottom: 25px;
font-size: 20px;
}
.shop-btn {
margin: 25px auto 0;
color: #3D3017;
padding: 15px 25px;
border: 1px solid rgb(61, 48, 23);
text-transform: capitalize;
transition: .4s;
}
.shop-btn:hover {
color: #fff;
background-color: #3D3017;
}
// FEEDBACK
#feedback-section {
padding: 100px 0 100px;
background-color: #EEE4DC;
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
left: -136px;
bottom: 37px;
width: 422px;
height: 426px;
background: url(/images-lava/img.svg) 0% 100%/contain no-repeat;
}
}
.feedback {
position: relative;
padding: 0 85px;
display: flex;
align-items: center;
gap: 50px;
}
.feedback-img {
width: 408px;
height: 430px;
}
.feedback-info {
position: relative;
text-align: center;
max-width: 607px;
padding-top: 83px;
&::before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 58px;
height: 43px;
transform: translateX(-50%);
background: url(/images-lava/Group.svg) 50%/100% no-repeat;
}
&::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 154px;
height: 124px;
transform: translate(-50%, -40%);
background: url(/images-lava/Frame.png) 50%/100% no-repeat;
}
}
.feedback-text {
font-size: 20px;
line-height: 38px;
margin-bottom: 17px;
}
.feedback-name {
font-size: 22px;
margin-bottom: 10px;
}
.feedback-position {
display: block;
font-size: 20px;
}
.feedback-btn-back {
position: absolute;
top: 50%;
left: 2px;
width: 20px;
height: 38px;
background: url(/images-lava/back.svg) 50%/100% no-repeat;
transform: translateY(-50%);
}
.feedback-btn-fwd {
position: absolute;
top: 50%;
right: 2px;
width: 20px;
height: 38px;
background: url(/images-lava/fwd.svg) 50%/100% no-repeat;
transform: translateY(-50%);
}