BCB Bank static website
Você não pode selecionar mais de 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.
 
 
 
 

110 linhas
1.8 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. width: 90%;
  28. margin: 50px auto;
  29. .inner-container {
  30. display: flex;
  31. justify-content: space-between;
  32. .description {
  33. width: 60%;
  34. align-self: center;
  35. display: flex;
  36. justify-content: space-between;
  37. flex-direction: column;
  38. .heading {
  39. font-weight: bold;
  40. font-size: $heading_size;
  41. }
  42. }
  43. }
  44. figure {
  45. width: 30%;
  46. img {
  47. width: 100%;
  48. }
  49. }
  50. p {
  51. margin-top: 30px;
  52. }
  53. }
  54. #our-team {
  55. width: 90%;
  56. margin: 30px auto 100px;
  57. h3 {
  58. font-size: $heading_size;
  59. color: $dark_brown;
  60. text-align: center;
  61. }
  62. .owl-team {
  63. margin: 50px 0;
  64. }
  65. .section-container {
  66. margin: 0 20px;
  67. }
  68. figure {
  69. width: 100%;
  70. display: block;
  71. margin: 0 auto;
  72. img {
  73. width: 100%;
  74. }
  75. }
  76. p {
  77. text-align: center;
  78. margin-top: 10px;
  79. }
  80. .owl-team-btn {
  81. margin: 20px auto;
  82. text-align: center;
  83. padding: 20px 0;
  84. i {
  85. font-size: 16px;
  86. padding: 0 10px;
  87. color: $blue;
  88. cursor: pointer;
  89. }
  90. }
  91. }