2022-10-10 14:52:42 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-10-10 17:23:47 +00:00
|
|
|
body{
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: #000;
|
|
|
|
}
|
2022-10-10 14:52:42 +00:00
|
|
|
.page-header{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-10-12 17:32:03 +00:00
|
|
|
text-align: center;
|
2022-10-10 14:52:42 +00:00
|
|
|
padding: 29px 0;
|
|
|
|
background-color: #000;
|
|
|
|
}
|
2022-10-10 17:23:47 +00:00
|
|
|
.header-logo{
|
2022-10-12 17:32:03 +00:00
|
|
|
width: 12%;
|
|
|
|
}
|
|
|
|
.header-logo-image{
|
|
|
|
width: 100%;
|
2022-10-10 17:23:47 +00:00
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
/* main-banner */
|
2022-10-10 14:52:42 +00:00
|
|
|
.main-banner-desktop{
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.main-banner-mobile{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
/* top-infocard */
|
2022-10-10 17:23:47 +00:00
|
|
|
.top-infocard{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2022-10-10 20:39:38 +00:00
|
|
|
padding: 73px 0 0;
|
2022-10-10 17:23:47 +00:00
|
|
|
}
|
|
|
|
.top-inforcard-subtitle{
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
2022-10-11 22:32:18 +00:00
|
|
|
line-height: 39px;
|
2022-10-10 17:23:47 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
.top-infocard-title{
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
2022-10-11 22:32:18 +00:00
|
|
|
line-height: 58px;
|
2022-10-10 17:23:47 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
padding: 0 0 28px;
|
|
|
|
}
|
|
|
|
.top-infocard-description{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.top-infocard-text{
|
|
|
|
max-width: 40%;
|
|
|
|
padding: 0 0 73px;
|
|
|
|
}
|
|
|
|
.top-infocard-image{
|
|
|
|
width: 16%;
|
2022-10-10 17:52:06 +00:00
|
|
|
min-width: 239px;
|
2022-10-10 17:23:47 +00:00
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
/* top-cards */
|
2022-10-10 20:39:38 +00:00
|
|
|
.top-cards{
|
2022-10-11 19:44:55 +00:00
|
|
|
display: flex;
|
2022-10-10 20:39:38 +00:00
|
|
|
justify-content: center;
|
2022-10-11 19:44:55 +00:00
|
|
|
gap: 21px;
|
|
|
|
padding: 178px 31px 50px;
|
2022-10-10 20:39:38 +00:00
|
|
|
}
|
|
|
|
.top-card{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2022-10-11 19:44:55 +00:00
|
|
|
padding: 36px 26px 26px;
|
|
|
|
gap: 27px;
|
2022-10-10 20:39:38 +00:00
|
|
|
background: #FFF;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
2022-10-11 19:44:55 +00:00
|
|
|
width: 18%;
|
|
|
|
min-height: 287px;
|
2022-10-10 20:39:38 +00:00
|
|
|
}
|
|
|
|
.top-card-image{
|
2022-10-11 19:44:55 +00:00
|
|
|
width: 34%;
|
2022-10-10 20:39:38 +00:00
|
|
|
}
|
|
|
|
.top-card-description{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
/* middle-banner */
|
2022-10-11 01:25:24 +00:00
|
|
|
.middle-banner-wrapper{
|
|
|
|
background: #E0E0E0
|
|
|
|
}
|
2022-10-11 00:12:03 +00:00
|
|
|
.banners-middle{
|
|
|
|
display: flex;
|
2022-10-10 21:30:37 +00:00
|
|
|
justify-content: center;
|
2022-10-11 00:12:03 +00:00
|
|
|
gap: 39px;
|
2022-10-11 01:25:24 +00:00
|
|
|
position: relative;
|
|
|
|
bottom: -62px;
|
2022-10-10 21:30:37 +00:00
|
|
|
}
|
|
|
|
.middle-banner{
|
2022-10-11 19:44:55 +00:00
|
|
|
justify-content: center;
|
2022-10-11 00:12:03 +00:00
|
|
|
width: 29%;
|
|
|
|
}
|
|
|
|
.middle-banner-image{
|
2022-10-10 21:30:37 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
/* bottom-cards */
|
|
|
|
.bottom-cards{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 191px 0 54px;
|
2022-10-11 22:32:18 +00:00
|
|
|
gap: 16px;
|
2022-10-11 19:44:55 +00:00
|
|
|
}
|
|
|
|
.bottom-figures-card{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
width: 23%;
|
|
|
|
padding: 35px 32px 65px;
|
2022-10-11 20:54:42 +00:00
|
|
|
gap: 17px;
|
2022-10-11 19:44:55 +00:00
|
|
|
min-height: 332px;
|
|
|
|
background: #FFF;
|
|
|
|
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
.bottom-figures-image{
|
2022-10-11 20:54:42 +00:00
|
|
|
height: 100%;
|
2022-10-11 19:44:55 +00:00
|
|
|
width: 34%;
|
|
|
|
}
|
|
|
|
.bottom-figcapiton{
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
2022-10-11 20:54:42 +00:00
|
|
|
}
|
|
|
|
/* bottom-banner */
|
|
|
|
.bottom-banner{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 54px 0 106px;
|
|
|
|
gap: 50px;
|
|
|
|
}
|
|
|
|
.bottom-banner-text{
|
|
|
|
width: 29%;
|
2022-10-12 21:48:46 +00:00
|
|
|
min-width: 550px;
|
2022-10-11 20:54:42 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.bottom-banner-subtitle{
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
}
|
|
|
|
.bottom-banner-describition{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.bottom-banner-images{
|
|
|
|
width: 71%;
|
|
|
|
}
|
|
|
|
.bottom-banner-desktop{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.bottom-banner-mobile{
|
|
|
|
display: none;
|
2022-10-11 22:07:01 +00:00
|
|
|
}
|
|
|
|
/* footer */
|
|
|
|
.page-footer{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 38px 0;
|
|
|
|
gap: 16px;
|
|
|
|
background: #000000;
|
|
|
|
}
|
|
|
|
.footer-icons{
|
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
2022-10-12 17:32:03 +00:00
|
|
|
justify-content: center;
|
2022-10-11 22:07:01 +00:00
|
|
|
gap: 16px;
|
|
|
|
}
|
2022-10-12 17:32:03 +00:00
|
|
|
.icons{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.icons-image{
|
|
|
|
width: 5%;
|
|
|
|
min-width: 24px;
|
|
|
|
}
|
2022-10-11 22:07:01 +00:00
|
|
|
.footer-text{
|
2022-10-12 17:32:03 +00:00
|
|
|
text-align: center;
|
2022-10-11 22:07:01 +00:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 12px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #BDBDBD;
|
2022-10-11 22:32:18 +00:00
|
|
|
}
|
2022-10-12 17:32:03 +00:00
|
|
|
|
2022-10-11 19:44:55 +00:00
|
|
|
/* layout 4K */
|
2022-10-10 14:52:42 +00:00
|
|
|
@media screen and (min-width: 2500px) {
|
|
|
|
.page-header{
|
|
|
|
padding: 58px
|
|
|
|
}
|
2022-10-11 22:32:18 +00:00
|
|
|
.top-inforcard-subtitle{
|
|
|
|
font-size: 64px;
|
|
|
|
line-height: 78px;
|
|
|
|
}
|
|
|
|
.top-infocard-title{
|
|
|
|
font-size: 96px;
|
|
|
|
line-height: 116px;
|
|
|
|
}
|
|
|
|
.top-infocard-description{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
|
|
|
.top-card-description{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
|
|
|
.bottom-figcapiton{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
|
|
|
.bottom-banner-subtitle{
|
|
|
|
font-size: 64px;
|
|
|
|
line-height: 78px;
|
|
|
|
}
|
2022-10-12 21:48:46 +00:00
|
|
|
.bottom-banner-text{
|
|
|
|
min-width: 900px;
|
|
|
|
}
|
2022-10-11 22:32:18 +00:00
|
|
|
.bottom-banner-describition{
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
|
|
|
.footer-text{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2022-10-12 17:32:03 +00:00
|
|
|
.icons-image{
|
|
|
|
min-width: 48px;}
|
2022-10-10 14:52:42 +00:00
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
/* layaut mobile */
|
2022-10-11 00:12:03 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
2022-10-12 17:32:03 +00:00
|
|
|
.header-logo{
|
|
|
|
width: 55%;
|
|
|
|
}
|
2022-10-10 14:52:42 +00:00
|
|
|
.main-banner-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.main-banner-mobile{
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
2022-10-10 17:52:06 +00:00
|
|
|
/* top infocard */
|
|
|
|
.top-inforcard-subtitle{
|
|
|
|
font-size: 20px;
|
2022-10-12 17:32:03 +00:00
|
|
|
line-height: 34px;
|
2022-10-10 17:52:06 +00:00
|
|
|
}
|
|
|
|
.top-infocard-title{
|
|
|
|
font-size: 28px;
|
2022-10-12 17:32:03 +00:00
|
|
|
line-height: 24px;
|
2022-10-10 17:52:06 +00:00
|
|
|
}
|
|
|
|
.top-infocard-text{
|
|
|
|
text-align: center;
|
|
|
|
max-width: 86%;
|
|
|
|
padding: 0 0 73px;
|
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
.top-infocard-image {
|
2022-10-11 22:32:18 +00:00
|
|
|
width: 58%;
|
2022-10-11 19:44:55 +00:00
|
|
|
}
|
|
|
|
/* top-cards */
|
2022-10-10 20:39:38 +00:00
|
|
|
.top-cards{
|
2022-10-11 19:44:55 +00:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 90px 0;
|
|
|
|
}
|
|
|
|
.top-card{
|
2022-10-12 17:32:03 +00:00
|
|
|
width: 85%;
|
2022-10-11 19:44:55 +00:00
|
|
|
gap: 37px;
|
2022-10-10 20:39:38 +00:00
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
.top-card-image{
|
|
|
|
width: 25%;
|
2022-10-10 17:52:06 +00:00
|
|
|
}
|
2022-10-11 22:07:01 +00:00
|
|
|
/* banners-middle */
|
2022-10-11 00:12:03 +00:00
|
|
|
.banners-middle{
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"b1 b2"
|
|
|
|
"b3 b3";
|
|
|
|
justify-items: center;
|
2022-10-12 17:32:03 +00:00
|
|
|
padding: 0px 23px;
|
2022-10-11 00:12:03 +00:00
|
|
|
gap: 14px;
|
2022-10-11 01:25:24 +00:00
|
|
|
top: 32px;
|
2022-10-11 00:12:03 +00:00
|
|
|
}
|
|
|
|
.middle-banner{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.Banner1{
|
|
|
|
grid-area: b1;
|
|
|
|
}
|
|
|
|
.Banner2{
|
|
|
|
grid-area: b2;
|
2022-10-11 22:32:18 +00:00
|
|
|
}
|
|
|
|
.Banner3{
|
2022-10-11 00:12:03 +00:00
|
|
|
grid-area: b3;
|
2022-10-10 20:39:38 +00:00
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
/* bottom-cards */
|
|
|
|
.bottom-cards{
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2022-10-11 21:21:27 +00:00
|
|
|
padding: 96px 0 0;
|
|
|
|
}
|
|
|
|
.bottom-banner-text{
|
|
|
|
width: 29%;
|
2022-10-11 19:44:55 +00:00
|
|
|
}
|
|
|
|
.bottom-figures-card{
|
2022-10-12 17:32:03 +00:00
|
|
|
width: 89%;
|
2022-10-10 20:39:38 +00:00
|
|
|
}
|
2022-10-11 20:54:42 +00:00
|
|
|
/* bottom-banner */
|
2022-10-11 21:21:27 +00:00
|
|
|
.bottom-banner{
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
padding: 98px 0 87px;
|
|
|
|
}
|
2022-10-11 20:54:42 +00:00
|
|
|
.bottom-banner-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.bottom-banner-mobile{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-10-11 21:21:27 +00:00
|
|
|
.bottom-banner-images{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.bottom-banner-text{
|
|
|
|
width: 85%;
|
2022-10-12 21:48:46 +00:00
|
|
|
min-width: 0;
|
2022-10-11 21:21:27 +00:00
|
|
|
}
|
|
|
|
.bottom-banner-subtitle{
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 29px;
|
2022-10-12 17:32:03 +00:00
|
|
|
margin-bottom: 9px;
|
2022-10-11 21:21:27 +00:00
|
|
|
}
|
2022-10-11 22:07:01 +00:00
|
|
|
/* footer-text */
|
|
|
|
.page-footer{
|
|
|
|
padding: 32px 0;
|
|
|
|
}
|
|
|
|
.footer-text{
|
|
|
|
width: 63%;
|
|
|
|
}
|
2022-10-11 19:44:55 +00:00
|
|
|
}
|
2022-10-12 21:48:46 +00:00
|
|
|
@media screen and (max-width: 413px) {
|
2022-10-12 17:32:03 +00:00
|
|
|
.top-card {
|
|
|
|
width: 95%;
|
|
|
|
padding: 36px 7px 26px;
|
|
|
|
}
|
|
|
|
.top-infocard-text {
|
|
|
|
max-width: 87%;
|
|
|
|
}
|
|
|
|
.banners-middle {
|
|
|
|
padding: 0px 10px;
|
|
|
|
}
|
|
|
|
.bottom-figures-card {
|
|
|
|
width: 95%;
|
|
|
|
padding: 35px 16px 65px;
|
|
|
|
}
|
|
|
|
.bottom-banner-text {
|
|
|
|
width: 90%;
|
|
|
|
}
|
2022-10-11 22:36:09 +00:00
|
|
|
}
|