info-section.css 581 B

1234567891011121314151617181920212223242526272829303132333435
  1. .info-section{
  2. position: relative;
  3. background: url('./../../img/info1.jpg');
  4. background-size: cover;
  5. background-position: center;
  6. padding: 68px 0;
  7. }
  8. .info-section::before{
  9. position: absolute;
  10. content: '';
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 100%;
  15. background-color: rgb(0 0 0 / 0.75);
  16. }
  17. .info-section__row{
  18. position: relative;
  19. z-index: 1;
  20. display: flex;
  21. justify-content: space-between;
  22. }
  23. .info-section__title{
  24. margin: 0;
  25. font-family: 'Playfair Display', serif;
  26. font-style: normal;
  27. font-weight: normal;
  28. font-size: 52px;
  29. line-height: 1;
  30. color: #FFFFFF;
  31. }