2022-10-11 18:53:59 +00:00
|
|
|
* {
|
|
|
|
margin: 0%;
|
|
|
|
padding: 0%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-12 02:23:36 +00:00
|
|
|
body {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color:#000000;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-10-11 18:53:59 +00:00
|
|
|
.page-header {
|
|
|
|
display: flex;
|
|
|
|
padding: 28px 0;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
background: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo {
|
2022-10-12 02:23:36 +00:00
|
|
|
width: 100%;
|
2022-10-11 18:53:59 +00:00
|
|
|
display: block;
|
2022-10-11 19:20:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-12 02:23:36 +00:00
|
|
|
.top-infocard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
height: 58px;
|
|
|
|
font-family: 'Inter';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
max-width: 766px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-10-11 19:20:51 +00:00
|
|
|
@media and (max-width: 414px) {
|
|
|
|
.main-banner-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 415px) {
|
|
|
|
.main-banner-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-11 18:53:59 +00:00
|
|
|
}
|