misbar-website/src/Styles/Pages/Service.scss
2024-09-10 21:30:22 +03:00

78 lines
1.8 KiB
SCSS

.Service{
width: 100%;
display: flex;justify-content: center;align-items: center; flex-direction: column;
position: relative;
min-height: 40vh;
.service_image{
width: 100%;
height: 100%;
position: absolute;
left: 0;
opacity: .2;
top: 0;
}
.Title_link_container{
width: 90%;
display: flex;justify-content: start;align-items: start;
}
.service_top_container{
padding-top: 20px;
width: 90%;
display: flex;justify-content: center;align-items: center; flex-direction: column;
z-index: 99 !important;
line-height: 30px;
.title_container{
display: flex;align-items: center;
h1{
margin: 0;
padding: 0;
padding-left: 13px;
}
}
> p{
color: var(--DarkGray);
font-size: 14px;
}
}
.service_bottom_container{
width: 84%;
display: flex;
justify-content: center;
margin-inline: auto;
padding-block: 50px;
flex-wrap: wrap;
}
}
@media screen and (max-width:800px) {
.Service{
.service_image{
opacity: .3;
}
.service_top_container{
.title_container{
img{
width: 110px;
}
h1{
padding-left: 5px;
font-size: 20px;
}
}
> p{
font-size: 12px;
}
}
.service_bottom_container{
width: 90%;
padding-block: 20px;
flex-direction: column;
.Single_Service{
width: 100%;
padding-bottom: 15px;
}
}
}
}