BCB Bank static website
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

183 linhas
3.2 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. @media screen and (max-width: 1024px) {
  38. flex-direction: column;
  39. }
  40. .description {
  41. width: 60%;
  42. align-self: center;
  43. display: flex;
  44. justify-content: space-between;
  45. flex-direction: column;
  46. @media screen and (max-width: 1024px) {
  47. width: 100%;
  48. }
  49. p {
  50. width: 100%;
  51. }
  52. mark {
  53. color: $blue;
  54. }
  55. .heading {
  56. font-weight: bold;
  57. font-size: $heading_size;
  58. font-family: archivo-black;
  59. color: $dark_brown;
  60. }
  61. }
  62. }
  63. figure {
  64. width: 37%;
  65. align-self: center;
  66. display: flex;
  67. height: 50vh;
  68. @media screen and (max-width: 1024px) {
  69. width: 100%;
  70. }
  71. img {
  72. width: 100%;
  73. align-self: center;
  74. height: 100%;
  75. object-fit: cover;
  76. object-position: top;
  77. }
  78. }
  79. p {
  80. width: 90%;
  81. margin: 0 auto 0;
  82. padding-bottom: 50px;
  83. @media screen and (max-width: 1024px) {
  84. margin: 0 auto;
  85. }
  86. }
  87. .features {
  88. width: 90%;
  89. margin: 20px auto;
  90. h3 {
  91. margin-bottom: 10px;
  92. }
  93. p {
  94. width: 100%;
  95. padding: 0;
  96. }
  97. ul {
  98. margin-bottom: 20px;
  99. margin-left: 30px;
  100. }
  101. }
  102. }
  103. #our-team {
  104. width: 90%;
  105. margin: 30px auto 100px;
  106. h3 {
  107. font-size: $heading_size;
  108. color: $dark_brown;
  109. text-align: center;
  110. font-family: archivo-black;
  111. marked {
  112. color: $blue;
  113. display: inline;
  114. }
  115. }
  116. marked {
  117. color: $blue;
  118. padding: 10px 0 0;
  119. text-align: center;
  120. display: block;
  121. font-weight: bold;
  122. }
  123. .owl-team {
  124. margin: 50px 0;
  125. }
  126. .section-container {
  127. margin: 0 20px;
  128. }
  129. figure {
  130. width: 100%;
  131. display: block;
  132. margin: 0 auto;
  133. img {
  134. width: 100%;
  135. }
  136. }
  137. p {
  138. text-align: center;
  139. margin-top: 10px;
  140. }
  141. .owl-team-btn {
  142. margin: 20px auto;
  143. text-align: center;
  144. padding: 20px 0;
  145. i {
  146. font-size: 16px;
  147. padding: 0 10px;
  148. color: $blue;
  149. cursor: pointer;
  150. }
  151. }
  152. }