2022-10-10 22:55:13 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-10-10 23:14:56 +00:00
|
|
|
|
2022-10-10 22:55:13 +00:00
|
|
|
header {
|
|
|
|
align-items: center;
|
|
|
|
height: 101px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
background: black;
|
|
|
|
width: 100%;
|
2022-10-10 23:14:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.banner-1-desktop {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-1-mobile {
|
|
|
|
width: 100%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-11 01:46:28 +00:00
|
|
|
.first-section h2 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.first-section h1 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.first-section p {
|
|
|
|
margin-top: 28px;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-1 {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.first-section {
|
2022-10-11 02:34:44 +00:00
|
|
|
margin-top: 74px;
|
2022-10-11 01:46:28 +00:00
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2022-10-11 02:34:44 +00:00
|
|
|
.image-section {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 74px;
|
|
|
|
}
|
|
|
|
|
2022-10-10 23:14:56 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
.banner-1-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.banner-1-mobile {
|
|
|
|
display: unset;
|
|
|
|
}
|
2022-10-11 02:34:44 +00:00
|
|
|
.text-1 {
|
|
|
|
width: 86.47%;
|
|
|
|
}
|
|
|
|
.first-section p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.image-computer {
|
|
|
|
width: 57.73%;
|
|
|
|
}
|
2022-10-10 23:14:56 +00:00
|
|
|
}
|
|
|
|
|