* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; color: #000; } /*Header*/ .page-header { display: flex; justify-content: center; background-color: #000; padding: 28px 0; } .header-logo { display: block; } /*Banners*/ .main-banner, .middle-banner { width: 100%; } .main-banner-desktop, .middle-banner-desktop { display: block; } .main-banner-mobile, .middle-banner-mobile { display: none; } /*Top infocard*/ .top-infocard { display: flex; align-items: center; justify-content: center; gap: 124px; padding: 80px 0 96px 0; } .top-infocard-content { width: 40%; } .top-infocard-subtitle { font-weight: 400; font-size: 32px; text-transform: uppercase; } .top-infocard-title { font-weight: 500; font-size: 48px; text-transform: uppercase; margin-bottom: 24px; } .top-infocard-description { font-weight: 400; font-size: 16px; line-height: 24px; } /*top card*/ .top-cards { background: #f0f0f0; padding: 74px 0; display: flex; justify-content: center; gap: 20px; } .top-card { display: flex; align-items: center; flex-direction: column; background: #FFFFFF; box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23); width: 18%; padding: 26px; } .top-card-image { display: block; width: 30%; min-width: 65px; } .top-card-description { margin-top: 26px; font-weight: 400; font-size: 16px; line-height: 24px; text-align: center; width: 86%; } @media screen and (max-width: 1024px) { /*top infocard*/ .top-infocard { padding: 84px 26px 158px; flex-wrap: wrap; gap: 0; } .top-infocard-content { width: 100%; } .top-infocard-image-container { margin-top: 68px; width: 58%; display: flex; justify-content: center; } .top-infocard-image { width: 100%; max-width: 239px; } .top-infocard-subtitle { font-size: 20px; } .top-infocard-title { font-size: 28px; } /*top card*/ .top-cards { flex-direction: column; gap: 16px; padding: 37px 26px; } .top-card { width: 100%; } .top-card-image { max-width: 120px; } } @media screen and (max-width: 414px) { /*banners*/ .main-banner-desktop, .middle-banner-desktop { display: none; } .main-banner-mobile, .middle-banner-mobile { display: block; } }