2022-10-11 01:48:24 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-header{
|
|
|
|
display: block;
|
|
|
|
padding: 28px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 425px){
|
|
|
|
.banner-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 426px){
|
|
|
|
.banner-mobile{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-11 02:16:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.infocard{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 72px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-subtitle{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-title{
|
|
|
|
font-weight: 500px;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-description{
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
max-width: 766px;
|
|
|
|
padding: 28px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-image{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-10-11 02:55:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 425px){
|
|
|
|
.infocard{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-subtitle{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
max-width: 62%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-title{
|
|
|
|
font-size: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infocard-description{
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
2022-10-12 03:38:52 +00:00
|
|
|
max-width: 64%;
|
2022-10-11 02:55:29 +00:00
|
|
|
}
|
2022-10-11 15:59:55 +00:00
|
|
|
|
2022-10-11 02:55:29 +00:00
|
|
|
.infocard-image{
|
2022-10-11 15:59:55 +00:00
|
|
|
display: flex;
|
2022-10-11 02:55:29 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-10-12 03:38:52 +00:00
|
|
|
max-width: 414px;
|
2022-10-11 15:59:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cards-conteiner{
|
|
|
|
display: grid;
|
2022-10-12 03:11:19 +00:00
|
|
|
grid-template-columns: repeat(3, max-content);
|
|
|
|
justify-content: center;
|
2022-10-11 15:59:55 +00:00
|
|
|
gap: 20px;
|
2022-10-12 03:11:19 +00:00
|
|
|
padding: 180px 0 80px;
|
2022-10-11 15:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2022-10-12 03:11:19 +00:00
|
|
|
padding: 26px 26px 34px;
|
2022-10-11 15:59:55 +00:00
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
2022-10-12 03:11:19 +00:00
|
|
|
.card-image{
|
2022-10-11 15:59:55 +00:00
|
|
|
display: block;
|
|
|
|
margin-bottom: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-text{
|
|
|
|
max-width: 300px;
|
2022-10-12 03:11:19 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
2022-10-12 03:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
.cards-conteiner {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
padding: 90px 30px 80px;
|
|
|
|
}
|
2022-10-12 03:11:19 +00:00
|
|
|
}
|