2022-10-10 16:50:29 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body{
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
2022-10-10 18:02:12 +00:00
|
|
|
/*** HEADER ***/
|
|
|
|
|
2022-10-10 16:50:29 +00:00
|
|
|
.page-header{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #000000;
|
|
|
|
padding: 28px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-10-10 18:02:12 +00:00
|
|
|
/*** MAIN BANNER ***/
|
|
|
|
|
2022-10-10 16:50:29 +00:00
|
|
|
.main-banner-desktop{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2022-10-10 17:07:11 +00:00
|
|
|
}
|
|
|
|
.main-banner-mobile{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-10 18:02:12 +00:00
|
|
|
/*** TOP INFOCARD ***/
|
|
|
|
|
|
|
|
.top-infocard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 74px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title{
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-top: 28px;
|
|
|
|
max-width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image{
|
2022-10-10 20:44:35 +00:00
|
|
|
display: block;
|
2022-10-10 18:02:12 +00:00
|
|
|
margin-top: 74px;
|
2022-10-13 12:18:45 +00:00
|
|
|
width: 100%;
|
2022-10-10 18:02:12 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 20:44:35 +00:00
|
|
|
/*** TOP CARDS ***/
|
|
|
|
.top-cards{
|
2022-10-11 18:39:37 +00:00
|
|
|
margin-top: 178px;
|
2022-10-10 20:44:35 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 18%);
|
|
|
|
gap: 20px;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card{
|
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-image{
|
|
|
|
margin-top: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-description{
|
2022-10-11 18:39:37 +00:00
|
|
|
align-items: center;
|
|
|
|
max-width: 85%;
|
|
|
|
margin: 28px auto;
|
2022-10-13 12:18:45 +00:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
2022-10-10 20:44:35 +00:00
|
|
|
}
|
|
|
|
|
2022-10-11 17:58:31 +00:00
|
|
|
/*** MID BANNER ***/
|
|
|
|
|
|
|
|
.mid-banners{
|
|
|
|
background: #E0E0E0;
|
|
|
|
margin-top: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mid-banner-wrapper{
|
|
|
|
display: grid;
|
2022-10-11 18:39:37 +00:00
|
|
|
grid-template-columns: repeat(3, 29%);
|
|
|
|
width: 100%;
|
2022-10-11 17:58:31 +00:00
|
|
|
gap: 40px;
|
|
|
|
justify-content: center;
|
|
|
|
position: relative;
|
|
|
|
bottom: -62px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.mid-banner-image{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-11 18:39:37 +00:00
|
|
|
/*** BOTTOM CARDS ***/
|
|
|
|
|
|
|
|
.bottom-cards{
|
|
|
|
margin-top: 190px;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(4, 22%);
|
|
|
|
gap: 16px;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2022-10-12 14:16:56 +00:00
|
|
|
/*** BOTTOM INFOCARD ***/
|
|
|
|
.bottom-infocard{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-top: 108px;
|
2022-10-13 12:18:45 +00:00
|
|
|
width: 100%;
|
2022-10-12 14:16:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-title{
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-description{
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
max-width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-image-desktop{
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 100%;
|
2022-10-13 12:18:45 +00:00
|
|
|
padding: 0 14% 0;
|
2022-10-12 14:16:56 +00:00
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
|
2022-10-12 14:54:42 +00:00
|
|
|
/** PAGE FOOTER **/
|
|
|
|
.page-footer{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #000000;
|
|
|
|
margin-top: 116px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-icons{
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
gap: 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
margin-top: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyright{
|
|
|
|
color: #BDBDBD;
|
|
|
|
margin: 16px 0 38px;
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 12px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-10-10 17:07:11 +00:00
|
|
|
@media screen and (max-width: 1024px){
|
2022-10-12 14:16:56 +00:00
|
|
|
/*** MAIN BANNER E BOTTOM INFOCARD ***/
|
|
|
|
.main-banner-desktop,
|
|
|
|
.bottom-infocard-image-desktop{
|
2022-10-10 17:07:11 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-10 18:02:12 +00:00
|
|
|
|
|
|
|
/*** TOP INFOCARD ***/
|
|
|
|
.top-infocard{
|
|
|
|
padding: 0 28px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title{
|
|
|
|
text-align: center;
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description{
|
|
|
|
max-width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image{
|
|
|
|
margin-top: 65px;
|
2022-10-10 20:44:35 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** TOP CARDS ***/
|
|
|
|
.top-cards{
|
|
|
|
grid-template-columns: repeat(1, 100%);
|
|
|
|
padding: 0 28px 0;
|
|
|
|
margin-top: 90px;
|
|
|
|
gap: 24px;
|
2022-10-10 18:02:12 +00:00
|
|
|
}
|
2022-10-10 20:44:35 +00:00
|
|
|
|
|
|
|
.card{
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2022-10-11 18:39:37 +00:00
|
|
|
|
|
|
|
.card-description{
|
|
|
|
width: 82%;
|
|
|
|
}
|
2022-10-11 17:58:31 +00:00
|
|
|
|
|
|
|
/*** MID BANNER ***/
|
|
|
|
.mid-banners{
|
|
|
|
padding: 0 24px 0;
|
|
|
|
}
|
2022-10-12 14:16:56 +00:00
|
|
|
|
2022-10-11 17:58:31 +00:00
|
|
|
.mid-banner-wrapper{
|
|
|
|
width: 100%;
|
|
|
|
grid-template-columns: repeat(2, 45%);
|
|
|
|
gap: 0;
|
|
|
|
column-gap: 14px;
|
|
|
|
row-gap: 24px;
|
|
|
|
bottom: -32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mid-banner-3{
|
|
|
|
grid-area: 2 / 1 /span 2/ span 2;
|
|
|
|
}
|
2022-10-10 20:44:35 +00:00
|
|
|
|
2022-10-11 18:39:37 +00:00
|
|
|
/*** BOTTOM CARDS ***/
|
|
|
|
.bottom-cards{
|
|
|
|
grid-template-columns: repeat(1, 100%);
|
|
|
|
padding: 0 28px 0;
|
|
|
|
margin-top: 112px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card-description{
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2022-10-12 14:16:56 +00:00
|
|
|
|
|
|
|
/*** BOTTOM INFOCARD ***/
|
|
|
|
.bottom-infocard{
|
|
|
|
margin-top: 98px;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-title{
|
|
|
|
order: 2;
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 29px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-description{
|
|
|
|
order: 3;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 10px 32px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-image-mobile{
|
|
|
|
order: 1;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-10-12 14:54:42 +00:00
|
|
|
|
|
|
|
/** PAGE FOOTER **/
|
|
|
|
.page-footer{
|
|
|
|
margin-top: 88px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-icons{
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyright{
|
|
|
|
margin: 16px 0 32px;
|
|
|
|
width: 64%;
|
|
|
|
}
|
|
|
|
|
2022-10-10 17:07:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1025px){
|
2022-10-12 14:16:56 +00:00
|
|
|
/*** MAIN BANNER E BOTTOM INFOCARD ***/
|
|
|
|
.main-banner-mobile,
|
|
|
|
.bottom-infocard-image-mobile{
|
2022-10-10 17:07:11 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-11 17:58:31 +00:00
|
|
|
/*** 2500 px ***/
|
|
|
|
@media (min-width: 2500px){
|
2022-10-13 12:18:45 +00:00
|
|
|
/*** TOP INFOCARD ***/
|
|
|
|
.top-infocard-subtitle{
|
|
|
|
font-size: 64px;
|
|
|
|
line-height: 78px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title{
|
|
|
|
font-size: 96px;
|
|
|
|
line-height: 116px;
|
|
|
|
}
|
2022-10-11 17:58:31 +00:00
|
|
|
|
2022-10-13 12:18:45 +00:00
|
|
|
.top-infocard-description{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image{
|
|
|
|
width: 470px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** CARDS ***/
|
|
|
|
.card-description{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-image{
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** BOTTOM INFOCARD ***/
|
|
|
|
.bottom-infocard-title{
|
|
|
|
font-size: 64px;
|
|
|
|
line-height: 78px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-description{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
margin: 0 auto 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard{
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** FOOTER ***/
|
|
|
|
.copyright{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2022-10-11 17:58:31 +00:00
|
|
|
}
|