2022-10-09 02:20:47 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-10 01:31:36 +00:00
|
|
|
body {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
}
|
|
|
|
|
2022-10-09 02:20:47 +00:00
|
|
|
header {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 28px 0;
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-header {
|
|
|
|
display: block;
|
2022-10-09 02:54:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.banner-principal {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-09 03:31:58 +00:00
|
|
|
.container-infocard {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-10-10 01:31:36 +00:00
|
|
|
padding: 80px 0 96px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text {
|
|
|
|
width: 47.875rem;
|
|
|
|
margin-right: 7.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text h1 {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 3rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text h2 {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 2em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text p {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 1.5rem;
|
2022-10-09 03:31:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.banner-infocard {
|
|
|
|
width: 315px;
|
|
|
|
height: 315px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-10-10 01:31:36 +00:00
|
|
|
|
|
|
|
@media screen and (min-width:280px) and (max-width: 768px) {
|
2022-10-09 02:54:42 +00:00
|
|
|
.banner-principal-desktop {
|
|
|
|
display: none;
|
2022-10-10 01:31:36 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.container-infocard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 357px;
|
|
|
|
margin: 1.875rem;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text h1 {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 14.6875rem;
|
|
|
|
font-size: 1.75rem;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text h2 {
|
|
|
|
max-width: 14.6875rem;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-text p {
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-infocard {
|
|
|
|
height: 15rem;
|
|
|
|
width: 15rem;
|
|
|
|
margin: 68px 88px 157px;
|
2022-10-09 02:54:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width:415px) {
|
|
|
|
.banner-principal-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-10 01:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width:2500px) {
|
|
|
|
body {
|
|
|
|
background: red;
|
|
|
|
}
|
2022-10-09 02:20:47 +00:00
|
|
|
}
|