2022-10-11 11:36:28 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-11 14:31:33 +00:00
|
|
|
body {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Header*/
|
2022-10-11 11:36:28 +00:00
|
|
|
.header-page {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-page-logo {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
padding: 30px 0;
|
2022-10-11 11:54:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Main Banner*/
|
|
|
|
.main-banner {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner-desktop {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-11 14:31:33 +00:00
|
|
|
/* Top Infocard */
|
|
|
|
.top-infocard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
padding: 74px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-content {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle,
|
|
|
|
.top-infocard-title {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
|
|
|
|
padding-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
padding-bottom: 73px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image-container {
|
|
|
|
width: 16%;
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*mobile*/
|
2022-10-11 11:54:30 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
2022-10-11 14:31:33 +00:00
|
|
|
|
2022-10-11 11:54:30 +00:00
|
|
|
/*Banner*/
|
|
|
|
.main-banner-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner-mobile {
|
|
|
|
display: block;
|
|
|
|
max-height: 598px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
2022-10-11 14:31:33 +00:00
|
|
|
|
|
|
|
/*Top infocard*/
|
|
|
|
.top-infocard {
|
|
|
|
padding: 74px 30px 90px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-content {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image-container {
|
|
|
|
width: 58%;
|
|
|
|
min-width: initial;
|
|
|
|
max-width: 239px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*4K*/
|
|
|
|
|
|
|
|
@media screen and (min-width: 2500px) {
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-size: 40px;
|
|
|
|
line-height: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
font-size: 75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 3000px) {
|
|
|
|
|
|
|
|
/*Top InfoCard*/
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-size: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
font-size: 100px;
|
|
|
|
line-height: 125px;
|
|
|
|
}
|
|
|
|
|
2022-10-11 11:36:28 +00:00
|
|
|
}
|