App.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. body {
  2. height: auto;
  3. scroll-behavior: smooth;
  4. }
  5. .heading {
  6. margin: 100px 0;
  7. text-align: center;
  8. }
  9. .fix {
  10. position: fixed;
  11. z-index: 1000;
  12. width: 100%;
  13. top: 0;
  14. }
  15. .date {
  16. text-align: right;
  17. font-weight: bold;
  18. }
  19. .headcont {
  20. margin: 50px 0;
  21. color: black;
  22. text-align: center;
  23. }
  24. .headcont h2 {
  25. margin: 0 0 50px 0;
  26. }
  27. .fix.sticky {
  28. position: fixed;
  29. z-index: 1000;
  30. width: 100%;
  31. top: 0;
  32. }
  33. .textBt {
  34. margin: 0 100px;
  35. }
  36. .content {
  37. display: flex;
  38. justify-content: space-between;
  39. padding: 0 50px;
  40. margin: 100px 0;
  41. }
  42. .contentBx {
  43. padding-right: 30px;
  44. }
  45. .contentBx h3 {
  46. font-size: 24px;
  47. margin-bottom: 10px;
  48. }
  49. .banner {
  50. position: relative;
  51. min-height: 100vh;
  52. background: url(./images/banner.jpg);
  53. background-size: cover;
  54. background-position: right;
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. }
  59. .banner h2 {
  60. font-size: 3em;
  61. color: #fff;
  62. font-weight: 500;
  63. line-height: 1.5em;
  64. }
  65. .banner h2 span {
  66. font-size: 1.5em;
  67. font-weight: 700;
  68. }
  69. .banner h3 {
  70. font-size: 1.5em;
  71. color: #fff;
  72. font-weight: 500;
  73. }
  74. .about {
  75. height: 110vh;
  76. }
  77. .btnAbout {
  78. position: relative;
  79. background: #2196f3;
  80. display: inline-block;
  81. color: #fff;
  82. margin-top: 20px;
  83. padding: 10px 30px;
  84. font-size: 18px;
  85. text-transform: uppercase;
  86. text-decoration: none;
  87. letter-spacing: 2px;
  88. font-weight: 500;
  89. }
  90. .btnAbout:hover {
  91. text-decoration: none;
  92. }
  93. .text-muted {
  94. font-style: italic;
  95. color: grey;
  96. }
  97. .fa {
  98. padding: 20px;
  99. font-size: 20px;
  100. text-align: center;
  101. text-decoration: none;
  102. display: inline-block;
  103. border-radius: 20px;
  104. }
  105. .fa span {
  106. margin: 0 0 0 10px;
  107. }
  108. .fa:hover {
  109. text-decoration: none;
  110. color: white;
  111. border: 1px solid black;
  112. font-size: 19px;
  113. }
  114. .fa-facebook {
  115. background: #3b5998;
  116. color: white;
  117. }
  118. .fa-twitter {
  119. background: #55acee;
  120. color: white;
  121. }
  122. .fa-youtube {
  123. background: #c4302b;
  124. color: white;
  125. }
  126. .fa-instagram {
  127. background: #e1306c;
  128. color: white;
  129. }
  130. .contactus {
  131. background-color: white;
  132. padding: 40px 70px;
  133. height: 80vh;
  134. }
  135. .contactusBx {
  136. text-align: center;
  137. width: 100%;
  138. }
  139. .space {
  140. white-space: normal;
  141. }
  142. .spacepd {
  143. padding: 10px 0;
  144. }
  145. .spmar {
  146. margin: 50px 0 0 0;
  147. }
  148. .prodst {
  149. width: 14rem;
  150. padding: 10px;
  151. height: 30rem;
  152. }
  153. .flexview {
  154. display: flex;
  155. justify-content: space-between;
  156. flex-wrap: wrap;
  157. margin: 20px;
  158. }
  159. .toDown {
  160. position: absolute;
  161. bottom: 10px;
  162. left: 10px;
  163. }
  164. .toCenter {
  165. position: absolute;
  166. bottom: 70px;
  167. left: 10px;
  168. }
  169. .forImg {
  170. width: 80%;
  171. }
  172. .forButton {
  173. margin: 70px 0;
  174. text-align: center;
  175. }
  176. .w50 {
  177. width: 50%;
  178. }
  179. .loader {
  180. margin: 100px 0;
  181. border: 10px solid #f3f3f3;
  182. border-top: 10px solid #000000;
  183. border-radius: 50%;
  184. width: 60px;
  185. height: 60px;
  186. animation: spin 2s linear infinite;
  187. }
  188. @keyframes spin {
  189. 0% {
  190. transform: rotate(0deg);
  191. }
  192. 100% {
  193. transform: rotate(360deg);
  194. }
  195. }
  196. @media (max-width: 1050px) {
  197. .bgw50 {
  198. min-width: 0;
  199. width: 100%;
  200. position: absolute;
  201. left: 0;
  202. top: 100%;
  203. margin: 0;
  204. }
  205. .w50 {
  206. margin: 0;
  207. flex-direction: column;
  208. text-align: justify;
  209. height: 80%;
  210. min-width: 0;
  211. }
  212. .content {
  213. padding: 20px 50px;
  214. margin: 0;
  215. }
  216. .heading {
  217. margin: 30px;
  218. color: black;
  219. text-align: center;
  220. }
  221. }
  222. @media (max-width: 500px) {
  223. .bgw50 {
  224. min-width: 0;
  225. width: 100%;
  226. position: absolute;
  227. left: 0;
  228. top: 150%;
  229. margin: 0;
  230. background-image: "./images/site.jpg";
  231. background-repeat: no-repeat;
  232. }
  233. .textBt h2 {
  234. font-size: 2.4em;
  235. font-weight: 500;
  236. line-height: 1em;
  237. }
  238. .textBt h3 {
  239. font-size: 2em;
  240. font-weight: 500;
  241. }
  242. .textBt {
  243. padding: 20px;
  244. margin: 20px;
  245. }
  246. .flexview {
  247. display: flex;
  248. justify-content: center;
  249. flex-wrap: wrap;
  250. margin: 20px 20px;
  251. }
  252. }
  253. @media (max-width: 700px) {
  254. .fa {
  255. padding: 20px;
  256. font-size: 15px;
  257. text-align: center;
  258. text-decoration: none;
  259. border-radius: 20px;
  260. display: flex;
  261. justify-content: center;
  262. align-self: stretch;
  263. }
  264. }
  265. @media (max-width: 900px) {
  266. .fa {
  267. padding: 20px;
  268. font-size: 15px;
  269. text-align: center;
  270. border-radius: 20px;
  271. }
  272. .fa span {
  273. display: flex;
  274. width: 200px;
  275. justify-content: center;
  276. }
  277. .fa:hover {
  278. font-size: 14px;
  279. }
  280. .contactusBx {
  281. display: flex;
  282. flex-direction: column;
  283. align-items: center;
  284. }
  285. .heading {
  286. margin: 20%;
  287. }
  288. }