|
- @font-face {
- src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
- font-family: archivo-black;
- font-style: normal;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
- font-family: open-sans;
- font-weight: bolder;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
- font-family: open-sans;
- font-weight: bold;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
- font-family: open-sans;
- font-style: normal;
- }
- @font-face {
- src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
- font-family: open-sans;
- font-weight: normal;
- font-style: italic;
- }
- .banner {
- height: 30vh;
- background-image: url("../images/cover-image.jpg");
- background-size: cover;
- background-repeat: no-repeat;
- display: flex;
- justify-content: center;
- position: relative;
- }
- .banner:after {
- content: "";
- width: 100%;
- height: 100%;
- position: absolute;
- background-color: rgba(64, 62, 65, 0.6);
- }
- .banner h3 {
- text-align: center;
- align-self: center;
- font-size: 36px;
- color: white;
- z-index: 1;
- }
-
- .service-content {
- width: 90%;
- margin: 60px auto;
- display: flex;
- min-height: 42vh;
- justify-content: space-between;
- }
- .service-content ul {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-self: flex-start;
- }
- .service-content ul li {
- list-style: none;
- padding: 30px;
- text-align: center;
- cursor: pointer;
- background-color: #fcfcfc;
- color: #808285;
- }
-
- /*# sourceMappingURL=others.css.map */
|