2022-10-10 14:52:42 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-10-10 17:23:47 +00:00
|
|
|
body{
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: #000;
|
|
|
|
}
|
2022-10-10 14:52:42 +00:00
|
|
|
.page-header{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 29px 0;
|
|
|
|
background-color: #000;
|
|
|
|
}
|
2022-10-10 17:23:47 +00:00
|
|
|
.header-logo{
|
|
|
|
width: 12vw;
|
|
|
|
}
|
2022-10-10 14:52:42 +00:00
|
|
|
.main-banner-desktop{
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.main-banner-mobile{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-10 17:23:47 +00:00
|
|
|
.top-infocard{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 73px 0;
|
|
|
|
}
|
|
|
|
.top-inforcard-subtitle{
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
.top-infocard-title{
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
padding: 0 0 28px;
|
|
|
|
}
|
|
|
|
.top-infocard-description{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.top-infocard-text{
|
|
|
|
max-width: 40%;
|
|
|
|
padding: 0 0 73px;
|
|
|
|
}
|
|
|
|
.top-infocard-image{
|
|
|
|
width: 16%;
|
|
|
|
}
|
|
|
|
|
2022-10-10 14:52:42 +00:00
|
|
|
@media screen and (min-width: 2500px) {
|
|
|
|
.page-header{
|
|
|
|
padding: 58px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
.main-banner-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.main-banner-mobile{
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|