2022-10-10 13:00:52 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-10 14:57:49 +00:00
|
|
|
body{
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
2022-10-10 13:00:52 +00:00
|
|
|
.page-header{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
background: #000000;
|
|
|
|
padding: 29px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo{
|
|
|
|
display: block;
|
2022-10-10 13:57:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner{
|
|
|
|
width: 100%;
|
2022-10-11 16:48:50 +00:00
|
|
|
display: block;
|
2022-10-10 13:57:45 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 14:57:49 +00:00
|
|
|
.top-infocard{
|
2022-10-11 14:29:22 +00:00
|
|
|
display:flex;
|
2022-10-10 14:57:49 +00:00
|
|
|
justify-content: center;
|
2022-10-11 14:29:22 +00:00
|
|
|
align-items: center;
|
|
|
|
margin-top: 73px;
|
2022-10-10 14:57:49 +00:00
|
|
|
}
|
|
|
|
|
2022-10-11 14:29:22 +00:00
|
|
|
|
2022-10-10 14:57:49 +00:00
|
|
|
.top-infocard-text{
|
2022-10-11 16:48:50 +00:00
|
|
|
width: 100%;
|
|
|
|
max-width: 766px;
|
2022-10-11 14:29:22 +00:00
|
|
|
|
2022-10-10 14:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle{
|
2022-10-11 14:29:22 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-10-10 14:57:49 +00:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title{
|
2022-10-11 14:29:22 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-10-10 14:57:49 +00:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-transform: uppercase;
|
2022-10-11 14:29:22 +00:00
|
|
|
margin-bottom: 24px;
|
2022-10-10 14:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-top: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image{
|
2022-10-11 14:29:22 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-10-11 16:48:50 +00:00
|
|
|
margin: 73px 0 178px;
|
2022-10-10 14:57:49 +00:00
|
|
|
}
|
|
|
|
|
2022-10-11 18:58:45 +00:00
|
|
|
.top-cards{
|
|
|
|
display: grid;
|
2022-10-12 01:22:23 +00:00
|
|
|
grid-template-columns: repeat(3, max-content);
|
2022-10-11 18:58:45 +00:00
|
|
|
gap: 21px;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 80px;
|
2022-10-12 01:22:23 +00:00
|
|
|
|
2022-10-11 18:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-card{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 26px 26px 34px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-image{
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-description{
|
|
|
|
max-width: 300px;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-10-12 01:22:23 +00:00
|
|
|
.cards-image{
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, max-content);
|
|
|
|
justify-content: center;
|
|
|
|
background: #E0E0E0;
|
|
|
|
gap: 39px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-image{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 26px 26px 34px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
padding: 0px;
|
|
|
|
margin-top: 62px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-img{
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-11 18:58:45 +00:00
|
|
|
|
2022-10-10 13:57:45 +00:00
|
|
|
/*MEDIAS*/
|
|
|
|
|
|
|
|
@media screen and (max-width:414px) {
|
|
|
|
.main-banner-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-11 14:29:22 +00:00
|
|
|
|
|
|
|
.top-infocard-subtitle{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title{
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description{
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
2022-10-11 16:48:50 +00:00
|
|
|
margin: 0 28px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image{
|
|
|
|
margin: 65px 0 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-img{
|
|
|
|
width: 239px;
|
|
|
|
height: 239px;
|
|
|
|
}
|
|
|
|
|
2022-10-11 19:59:03 +00:00
|
|
|
.top-cards{
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
padding: 36px 26px;
|
|
|
|
}
|
2022-10-11 16:48:50 +00:00
|
|
|
}
|
|
|
|
|
2022-10-11 19:59:03 +00:00
|
|
|
@media screen and (min-width: 415px) and (max-width: 1199px) {
|
2022-10-11 16:48:50 +00:00
|
|
|
.top-infocard-subtitle{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title{
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description{
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin: 0 28px;
|
2022-10-11 14:29:22 +00:00
|
|
|
text-align: center;
|
2022-10-11 16:48:50 +00:00
|
|
|
|
2022-10-11 14:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image{
|
2022-10-11 16:48:50 +00:00
|
|
|
margin: 73px 0 90px;
|
|
|
|
}
|
2022-10-11 19:59:03 +00:00
|
|
|
|
|
|
|
.top-cards{
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
padding: 36px 26px;
|
|
|
|
}
|
2022-10-11 16:48:50 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-10-11 19:59:03 +00:00
|
|
|
|
|
|
|
|
2022-10-11 16:48:50 +00:00
|
|
|
@media screen and (min-width: 3000px) and (max-width: 4000px) {
|
|
|
|
.header-logo{
|
|
|
|
width: 470px;
|
|
|
|
height: 88px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-text{
|
|
|
|
width: 1915px;
|
|
|
|
height: 418px;
|
|
|
|
max-width: 100%;
|
|
|
|
margin-top: 152px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle{
|
|
|
|
font-size: 66px;
|
|
|
|
line-height: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title{
|
|
|
|
font-size: 100px;
|
|
|
|
line-height: 120px;
|
2022-10-11 14:29:22 +00:00
|
|
|
}
|
2022-10-10 13:57:45 +00:00
|
|
|
|
2022-10-11 16:48:50 +00:00
|
|
|
.top-infocard-description{
|
|
|
|
font-size: 40px;
|
|
|
|
line-height: 44px;
|
|
|
|
margin: 28px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image{
|
2022-10-11 19:59:03 +00:00
|
|
|
margin: 73px 0 178px;
|
2022-10-11 16:48:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-img{
|
|
|
|
width: 656px;
|
|
|
|
height: 656px;
|
2022-10-11 19:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-card{
|
|
|
|
width: 730px;
|
|
|
|
height: 598px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-cards{
|
|
|
|
gap: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img1{
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 27px;
|
|
|
|
width: 214.58px;
|
|
|
|
height: 214.58px;
|
|
|
|
margin: 47px 0 38px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img2{
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 27px;
|
|
|
|
width: 212.5px;
|
|
|
|
height: 214.58.8px;
|
|
|
|
margin: 35px 0 27px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-description{
|
|
|
|
max-width: 625px;
|
|
|
|
font-size: 34px;
|
|
|
|
line-height: 50px;
|
|
|
|
text-align: center;
|
2022-10-11 16:48:50 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 13:57:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 415px){
|
|
|
|
.main-banner-mobile{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-11 14:29:22 +00:00
|
|
|
|
2022-10-10 13:57:45 +00:00
|
|
|
}
|
|
|
|
|