58 lines
991 B
CSS
58 lines
991 B
CSS
|
|
.home_services {
|
||
|
|
height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home_services_wrapper {
|
||
|
|
height: 100vh;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home_service_item {
|
||
|
|
height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding: 2rem;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home_service_content {
|
||
|
|
max-width: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home_service_image img {
|
||
|
|
max-width: 400px;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.home_service_labels span {
|
||
|
|
background: #002852;
|
||
|
|
color: #fff;
|
||
|
|
padding: 0.2rem 0.5rem;
|
||
|
|
border-radius: 3px;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-primary {
|
||
|
|
background: #B18C4A;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 768px) {
|
||
|
|
.home_service_item {
|
||
|
|
flex-direction: column;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.home_service_content {
|
||
|
|
max-width: 100%;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
.home_service_image img {
|
||
|
|
max-width: 250px;
|
||
|
|
}
|
||
|
|
}
|