BCB Bank static website
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

145 lignes
2.6 KiB

  1. @import '_colors';
  2. @import 'custom_fonts';
  3. .banner {
  4. height: 30vh;
  5. background-image: url('../images/cover-image.jpg');
  6. background-size: cover;
  7. background-repeat: no-repeat;
  8. display: flex;
  9. justify-content: center;
  10. position: relative;
  11. &:after {
  12. content: '';
  13. width: 100%;
  14. height: 100%;
  15. position: absolute;
  16. background-color: rgba($color: $dark_brown, $alpha: 0.6)
  17. }
  18. h3 {
  19. text-align: center;
  20. align-self: center;
  21. font-size: $heading_size;
  22. color: white;
  23. z-index: 1;
  24. }
  25. }
  26. .about-content {
  27. margin: 50px auto;
  28. line-height: 1.8;
  29. letter-spacing: 0.8px;
  30. color: #808285;
  31. border-bottom: 1px solid #f1f1f1;
  32. .inner-container {
  33. display: flex;
  34. justify-content: space-between;
  35. width: 90%;
  36. margin: 0 auto;
  37. .description {
  38. width: 60%;
  39. align-self: center;
  40. display: flex;
  41. justify-content: space-between;
  42. flex-direction: column;
  43. p {
  44. width: 100%;
  45. }
  46. marked {
  47. color: $blue;
  48. }
  49. .heading {
  50. font-weight: bold;
  51. font-size: $heading_size;
  52. font-family: archivo-black;
  53. color: $dark_brown;
  54. }
  55. }
  56. }
  57. figure {
  58. width: 37%;
  59. align-self: center;
  60. display: flex;
  61. img {
  62. width: 100%;
  63. align-self: center;
  64. }
  65. }
  66. p {
  67. margin-top: 30px;
  68. width: 90%;
  69. margin: 30px auto 0;
  70. padding-bottom: 50px;
  71. }
  72. }
  73. #our-team {
  74. width: 90%;
  75. margin: 30px auto 100px;
  76. h3 {
  77. font-size: $heading_size;
  78. color: $dark_brown;
  79. text-align: center;
  80. font-family: archivo-black;
  81. marked {
  82. color: $blue;
  83. display: inline;
  84. }
  85. }
  86. marked {
  87. color: $blue;
  88. padding: 10px 0 0;
  89. text-align: center;
  90. display: block;
  91. font-weight: bold;
  92. }
  93. .owl-team {
  94. margin: 50px 0;
  95. }
  96. .section-container {
  97. margin: 0 20px;
  98. }
  99. figure {
  100. width: 100%;
  101. display: block;
  102. margin: 0 auto;
  103. img {
  104. width: 100%;
  105. }
  106. }
  107. p {
  108. text-align: center;
  109. margin-top: 10px;
  110. }
  111. .owl-team-btn {
  112. margin: 20px auto;
  113. text-align: center;
  114. padding: 20px 0;
  115. i {
  116. font-size: 16px;
  117. padding: 0 10px;
  118. color: $blue;
  119. cursor: pointer;
  120. }
  121. }
  122. }