73 lines
1020 B
CSS
73 lines
1020 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
color: #000000;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
padding: 29px 0;
|
|
background: #000000;
|
|
justify-content: center;
|
|
}
|
|
|
|
.header-logo {
|
|
display: block;
|
|
}
|
|
|
|
.main-banner {
|
|
display: block;
|
|
}
|
|
|
|
.top-infocard {
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.top-inforcard-subtitle {
|
|
font-size: 32px;
|
|
font-weight: 400;
|
|
line-height: 39px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.top-infocard-title {
|
|
font-size: 48px;
|
|
font-weight: 500;
|
|
line-height: 58px;
|
|
margin-bottom: 28px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.top-infocard-text {
|
|
padding: 73px 0;
|
|
max-width: 766px;
|
|
text-align: center;
|
|
}
|
|
|
|
.top-infocard-description {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
text-align: justify;
|
|
}
|
|
|
|
@media screen and (max-width: 414px) {
|
|
|
|
.main-banner-desktop {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 415px) {
|
|
|
|
.main-banner-mobile {
|
|
display: none;
|
|
}
|
|
} |