challenge-landing-page-savi.../assets/css/style.css

176 lines
2.8 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
color: #000000;
}
.page-header {
display: flex;
padding: 28px 0;
justify-content: center;
background-color: #000000;
}
.header-logo {
display: block;
}
.main-banner {
width: 100%;
display: block;
}
.top-infocard {
display: flex;
flex-direction: column;
align-items: center;
padding: 74px 0 180px;
}
.top-inforcard-text {
max-width: 40%;
}
.top-infocard-subtitle {
font-style: normal;
font-weight: 400;
font-size: 32px;
line-height: 39px;
text-align: center;
text-transform: uppercase;
}
.top-infocard-title {
font-style: normal;
font-weight: 500;
font-size: 48px;
line-height: 58px;
text-align: center;
text-transform: uppercase;
margin-bottom: 28px;
}
.top-infocard-description {
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 150%;
margin-bottom: 74px;
text-align: center;
}
.top-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin: 0 auto 80px;
width: 57%;
}
.top-card {
display: flex;
flex-direction: column;
align-items: center;
background: #ffffff;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
}
.top-card-image {
display: block;
margin-top: 35px;
}
.top-card-description {
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
margin: 26px;
text-align: center;
}
.middle-banners {
display: flex;
justify-content: center;
background: #e0e0e0;
width: 100%;
margin-bottom: 192px;
}
.image-01 {
grid-area: image01;
}
.image-02 {
grid-area: image02;
}
.image-03 {
grid-area: image03;
}
.middle-banners-wrapper {
display: grid;
grid-template-areas: "image01 image02 image03";
width: 88%;
gap: 40px;
position: relative;
bottom: -62px;
}
.mb-imagens {
width: 100%;
}
@media screen and (max-width: 1023px) {
.main-banner-desktop {
display: none;
}
.top-infocard {
padding: 73px 0 90px;
margin: 0 auto 0;
}
.top-inforcard-text {
margin-bottom: 65px;
max-width: 100%;
}
.top-infocard-subtitle {
font-size: 20px;
line-height: 24px;
}
.top-infocard-title {
font-size: 28px;
line-height: 34px;
margin-bottom: 14px;
}
.top-infocard-description {
line-height: 24px;
margin-bottom: 66px;
}
.top-cards {
display: flex;
flex-direction: column;
justify-content: center;
gap: 24px;
margin: 0 auto 80px;
width: 84%;
}
.middle-banners {
margin-bottom: 112px;
}
.middle-banners-wrapper {
grid-template-areas: "image02 image01 " "image03 image03";
bottom: -32px;
row-gap: 24px;
column-gap: 14px;
margin: 0 24px 0;
}
}
@media screen and (min-width: 1024px) {
.main-banner-mobile {
display: none;
}
}