74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: #f4f4f9;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
margin: 0;
|
|
flex-direction: column;
|
|
gap: 50px;
|
|
}
|
|
.partner-slider {
|
|
width: 50%;
|
|
max-width: 1200px;
|
|
overflow: hidden;
|
|
background-color: #862b2b;
|
|
border-radius: 20px;
|
|
box-shadow: 0 3px 10px 10px rgba(15, 12, 20, 0.1);
|
|
}
|
|
|
|
.swiper-slide img {
|
|
width: 10px;
|
|
height: auto;
|
|
border-radius: 15px;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.swiper-slide:hover img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 40px;
|
|
}
|
|
|
|
.slider-container {
|
|
width: 28%;
|
|
height: 35vh;
|
|
max-width: 1200px;
|
|
background-color: #fff;
|
|
border-radius: 20px;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.swiper-slide img {
|
|
width: 220px;
|
|
height: 300px;
|
|
margin-top: 15px;
|
|
margin-left: 30%;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.service-description {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.service-description h2 {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 40px;
|
|
} |