1234567891011121314151617181920212223242526272829303132333435 |
- .info-section{
- position: relative;
- background: url('./../../img/info1.jpg');
- background-size: cover;
- background-position: center;
- padding: 68px 0;
- }
- .info-section::before{
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgb(0 0 0 / 0.75);
- }
- .info-section__row{
- position: relative;
- z-index: 1;
- display: flex;
- justify-content: space-between;
- }
- .info-section__title{
- margin: 0;
- font-family: 'Playfair Display', serif;
- font-style: normal;
- font-weight: normal;
- font-size: 52px;
- line-height: 1;
- color: #FFFFFF;
- }
|