2022-10-13 01:17:42 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2022-10-13 01:26:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* HEADER */
|
|
|
|
|
|
|
|
.header-container {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
background: #000000;
|
|
|
|
padding: 29px 0;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-link {
|
|
|
|
width: 12%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
width: 98%;
|
|
|
|
}
|
|
|
|
|
2022-10-13 01:33:18 +00:00
|
|
|
/* MAIN BANNER */
|
|
|
|
|
|
|
|
.main-banner {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-13 01:39:19 +00:00
|
|
|
/* MAIN TOP INFOCARD */
|
|
|
|
|
|
|
|
.top-infocard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-text {
|
|
|
|
max-width: 40%;
|
|
|
|
text-align: center;
|
|
|
|
padding: 73px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
padding-top: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image {
|
|
|
|
width: 17%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-top-infocard {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-13 01:59:58 +00:00
|
|
|
/* MAIN TOP CARDS */
|
|
|
|
|
|
|
|
.top-cards {
|
|
|
|
display: flex;
|
|
|
|
max-width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 21px;
|
|
|
|
padding: 178px 0 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
width: 18%;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-image {
|
|
|
|
display: block;
|
|
|
|
width: 29%;
|
|
|
|
padding: 35px 0 27px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-description {
|
|
|
|
max-width: 80%;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
padding-bottom: 27px;
|
|
|
|
}
|
|
|
|
|
2022-10-13 01:26:11 +00:00
|
|
|
/* MOBILE */
|
|
|
|
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.logo-link {
|
|
|
|
width: 55%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
width: 99%;
|
2022-10-13 01:33:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner-mobile {
|
|
|
|
display: block;
|
|
|
|
}
|
2022-10-13 01:48:01 +00:00
|
|
|
|
|
|
|
.top-infocard-text {
|
|
|
|
max-width: 86%;
|
|
|
|
padding: 73px 0 65px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
padding-top: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image {
|
|
|
|
width: 58%;
|
|
|
|
}
|
2022-10-13 01:50:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TELAS GRANDES */
|
|
|
|
|
|
|
|
@media (min-width: 2500px) {
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-size: 64px;
|
|
|
|
line-height: 76px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
font-size: 96px;
|
|
|
|
line-height: 116px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
2022-10-13 01:33:18 +00:00
|
|
|
}
|