about.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /*========================================
  2. ABOUT PAGE STYLE
  3. =========================================*/
  4. body {
  5. background: var(--white);
  6. }
  7. .about-content h2 {
  8. margin-bottom: 25px;
  9. }
  10. .about-content p {
  11. margin-bottom: 40px;
  12. }
  13. .about-list {
  14. display: -webkit-box;
  15. display: -ms-flexbox;
  16. display: flex;
  17. -webkit-box-align: center;
  18. -ms-flex-align: center;
  19. align-items: center;
  20. -webkit-box-pack: justify;
  21. -ms-flex-pack: justify;
  22. justify-content: space-between;
  23. }
  24. .about-list li {
  25. padding-left: 30px;
  26. border-left: 1px solid var(--border);
  27. }
  28. .about-list li:first-child {
  29. border-left: 0px;
  30. padding-left: 0px;
  31. }
  32. .about-list li h3 {
  33. margin-bottom: 5px;
  34. }
  35. .about-list li h6 {
  36. font-weight: 400;
  37. color: var(--text);
  38. text-transform: capitalize;
  39. }
  40. .about-img {
  41. display: -ms-grid;
  42. display: grid;
  43. grid-gap: 20px;
  44. -ms-grid-columns: 1fr 1fr;
  45. grid-template-columns: 1fr 1fr;
  46. margin-left: 50px;
  47. }
  48. .about-img img {
  49. width: 100%;
  50. border-radius: 8px;
  51. }
  52. .about-testimonial {
  53. background: url(../../images/testimonial-shape.png);
  54. background-repeat: no-repeat;
  55. background-position: center;
  56. background-size: cover;
  57. padding: 100px 0px 70px;
  58. }
  59. .testi-content {
  60. display: -webkit-box;
  61. display: -ms-flexbox;
  62. display: flex;
  63. -webkit-box-align: center;
  64. -ms-flex-align: center;
  65. align-items: center;
  66. -webkit-box-pack: center;
  67. -ms-flex-pack: center;
  68. justify-content: center;
  69. padding-bottom: 30px;
  70. }
  71. .testi-img {
  72. margin-right: 80px;
  73. border-radius: 50%;
  74. -webkit-box-shadow: var(--primary-bshadow);
  75. box-shadow: var(--primary-bshadow);
  76. }
  77. .testi-img img {
  78. width: 300px;
  79. height: 300px;
  80. border-radius: 50%;
  81. border: 10px solid var(--white);
  82. }
  83. .testi-quote {
  84. width: 600px;
  85. }
  86. .testi-quote i {
  87. font-size: 50px;
  88. color: var(--primary);
  89. display: inline-block;
  90. margin-bottom: 30px;
  91. }
  92. .testi-quote p {
  93. font-size: 24px;
  94. line-height: 38px;
  95. margin-bottom: 30px;
  96. }
  97. .testi-quote h4 {
  98. text-transform: capitalize;
  99. margin-bottom: 5px;
  100. }
  101. .testi-quote h6 {
  102. font-weight: 400;
  103. color: var(--text);
  104. }
  105. .about-choose {
  106. margin-bottom: 75px;
  107. }
  108. .choose-card {
  109. margin: 25px 15px;
  110. }
  111. .about-brand {
  112. background: var(--green-chalk);
  113. padding: 90px 0px 100px;
  114. }
  115. .brand-slider li {
  116. margin: 0px 10px;
  117. padding: 20px 0px;
  118. border-radius: 8px;
  119. background: var(--white);
  120. }
  121. .brand-slider li img {
  122. width: 100%;
  123. }
  124. .team-slider li {
  125. margin: 0px 12px;
  126. }
  127. .team-slider .dandik,
  128. .team-slider .bamdik {
  129. top: 40%;
  130. }
  131. @media (max-width: 575px) {
  132. .about-list li {
  133. padding-left: 15px;
  134. }
  135. }
  136. @media (max-width: 767px) {
  137. .testi-content {
  138. -webkit-box-orient: vertical;
  139. -webkit-box-direction: normal;
  140. -ms-flex-direction: column;
  141. flex-direction: column;
  142. }
  143. .testi-img {
  144. margin-right: 0px;
  145. }
  146. .testi-quote {
  147. width: 100%;
  148. }
  149. }
  150. @media (min-width: 768px) and (max-width: 1199px) {
  151. .testi-img {
  152. margin-right: 50px;
  153. }
  154. .testi-quote {
  155. width: 100%;
  156. }
  157. }
  158. @media (max-width: 991px) {
  159. .about-list {
  160. margin-bottom: 30px;
  161. }
  162. .about-img {
  163. margin-left: 0px;
  164. }
  165. }