style.css
144 lines
| 1 | @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;800&family=Roboto&display=swap'); |
| 2 | |
| 3 | .bmi-banner { |
| 4 | font-family: 'Montserrat', Helvetica, Arial, sans-serif; |
| 5 | background: linear-gradient(180deg, #FFFFFF -10.65%, #C3EAF2 103.46%); |
| 6 | position: relative; |
| 7 | max-width: 1000px; |
| 8 | margin: 30px auto; |
| 9 | border-radius: 10px; |
| 10 | padding: 30px 60px; |
| 11 | color: #000; |
| 12 | } |
| 13 | |
| 14 | .bmi-banner__close { |
| 15 | position: absolute; |
| 16 | top: 20px; |
| 17 | right: 20px; |
| 18 | font-size: 40px; |
| 19 | color: #999; |
| 20 | text-decoration: none; |
| 21 | } |
| 22 | |
| 23 | .bmi-banner__close:hover { |
| 24 | color: #929498; |
| 25 | } |
| 26 | |
| 27 | .bmi-banner__header { |
| 28 | margin-bottom: 10px; |
| 29 | } |
| 30 | |
| 31 | .bmi-banner__header div { |
| 32 | margin-bottom: 25px; |
| 33 | font-weight: 400; |
| 34 | font-size: 27px; |
| 35 | color: #000; |
| 36 | text-align: center; |
| 37 | } |
| 38 | |
| 39 | .bmi-banner__header div .bb-highlight { |
| 40 | color: #0C7872; |
| 41 | font-weight: 700; |
| 42 | } |
| 43 | |
| 44 | .bmi-banner__header .small { |
| 45 | font-size: 0.9rem; |
| 46 | color: #000; |
| 47 | margin-left: 6px; |
| 48 | } |
| 49 | |
| 50 | .bmi-banner__cards { |
| 51 | display: flex; |
| 52 | justify-content: space-between; |
| 53 | margin-top: 5px; |
| 54 | gap: 25px; |
| 55 | opacity: 0.85; |
| 56 | } |
| 57 | |
| 58 | .bmi-banner__card { |
| 59 | display: flex; |
| 60 | flex-direction: column; |
| 61 | background: #fff; |
| 62 | padding: 20px 25px 20px 20px; |
| 63 | } |
| 64 | |
| 65 | .bmi-banner__card img { |
| 66 | width: 100%; |
| 67 | height: auto; |
| 68 | } |
| 69 | |
| 70 | .bmi-banner__card-header { |
| 71 | display: flex; |
| 72 | justify-content: space-between; |
| 73 | align-items: center; |
| 74 | } |
| 75 | |
| 76 | .bmi-banner__card-header h3 { |
| 77 | font-size: 18px; |
| 78 | font-weight: 700; |
| 79 | color: #000; |
| 80 | } |
| 81 | |
| 82 | .bmi-banner__card-header img { |
| 83 | width: 70px; |
| 84 | height: 70px; |
| 85 | border-radius: 50%; |
| 86 | } |
| 87 | |
| 88 | .bmi-banner__card-header img { |
| 89 | width: 70px; |
| 90 | height: 70px; |
| 91 | border-radius: 50%; |
| 92 | } |
| 93 | |
| 94 | .bmi-banner__card-header h3 { |
| 95 | font-size: 18px; |
| 96 | font-weight: 700; |
| 97 | color: #000; |
| 98 | } |
| 99 | |
| 100 | .bmi-banner__card-text { |
| 101 | font-size: 15px; |
| 102 | line-height: 22.5px; |
| 103 | color: #000; |
| 104 | } |
| 105 | |
| 106 | .bmi-banner__footer { |
| 107 | display: flex; |
| 108 | flex-direction: column; |
| 109 | flex-wrap: wrap; |
| 110 | align-items: center; |
| 111 | justify-content: space-between; |
| 112 | margin-top: 25px; |
| 113 | gap: 25px; |
| 114 | } |
| 115 | |
| 116 | .bmi-banner__footer-text { |
| 117 | display: flex; |
| 118 | align-items: center; |
| 119 | gap: 6px; |
| 120 | font-size: 15px; |
| 121 | } |
| 122 | |
| 123 | .bmi-banner__footer span { |
| 124 | margin: 0; |
| 125 | font-size: 15px; |
| 126 | line-height: 22.5px; |
| 127 | } |
| 128 | |
| 129 | .bmi-banner__footer a { |
| 130 | color: #0C7872; |
| 131 | text-decoration: none; |
| 132 | } |
| 133 | |
| 134 | .bmi-banner__cta-button { |
| 135 | background: #00a6b2; |
| 136 | color: #fff; |
| 137 | border: none; |
| 138 | border-radius: 20px; |
| 139 | padding: 10px 20px; |
| 140 | font-size: 15px; |
| 141 | cursor: pointer; |
| 142 | } |
| 143 | |
| 144 |