tooplate-style.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. @import url('https://fonts.googleapis.com/css?family=Poppins:300,400');
  2. body {
  3. background: #ffffff;
  4. font-family: 'Poppins', sans-serif;
  5. font-style: normal;
  6. font-weight: normal;
  7. overflow-x: hidden;
  8. }
  9. html, body {
  10. width: 100%;
  11. height: 100%;
  12. }
  13. /*---------------------------------------
  14. Typorgraphy
  15. -----------------------------------------*/
  16. h1,h2,h3,h4,h5,h6 {
  17. font-style: normal;
  18. font-weight: bold;
  19. letter-spacing: 0px;
  20. }
  21. h1 {
  22. color: #ffffff;
  23. font-size: 45px;
  24. line-height: normal;
  25. }
  26. h2 {
  27. color: #2b2b2b;
  28. font-size: 35px;
  29. line-height: 52px;
  30. margin-top: 0px;
  31. }
  32. h3 {
  33. color: #282828;
  34. font-size: 16px;
  35. line-height: 32px;
  36. letter-spacing: 6px;
  37. text-transform: uppercase;
  38. }
  39. h4 {
  40. color: #353535;
  41. font-size: 20px;
  42. }
  43. p {
  44. color: #878787;
  45. font-size: 16px;
  46. font-weight: normal;
  47. line-height: 25px;
  48. letter-spacing: 0.2px;
  49. }
  50. .bg-grey {
  51. background: #2b2b2b !important;
  52. }
  53. .white-color {
  54. color: #f0f0f0;
  55. }
  56. /*---------------------------------------
  57. Buttons
  58. -----------------------------------------*/
  59. .section-btn {
  60. background: #000000;
  61. border: none;
  62. border-radius: 50px;
  63. color: #f0f0f0;
  64. font-size: 12px;
  65. font-weight: bold;
  66. letter-spacing: 1.5px;
  67. padding: 18px 32px;
  68. margin-top: 42px;
  69. text-transform: uppercase;
  70. -webkit-transition: all ease-in-out 0.4s;
  71. transition: all ease-in-out 0.4s;
  72. }
  73. .section-btn:focus,
  74. .section-btn:hover {
  75. background: #ffffff;
  76. color: #000000;
  77. }
  78. .bi-bi-camera {
  79. margin: 20 0 20 0;
  80. }
  81. /*---------------------------------------
  82. General
  83. -----------------------------------------*/
  84. html{
  85. -webkit-font-smoothing: antialiased;
  86. }
  87. a {
  88. color: #757557;
  89. -webkit-transition: 0.5s;
  90. transition: 0.5s;
  91. text-decoration: none !important;
  92. }
  93. a:hover, a:active, a:focus {
  94. color: #000000;
  95. outline: none;
  96. }
  97. * {
  98. -webkit-box-sizing: border-box;
  99. box-sizing: border-box;
  100. }
  101. *:before,
  102. *:after {
  103. -webkit-box-sizing: border-box;
  104. box-sizing: border-box;
  105. }
  106. .parallax-section {
  107. background-attachment: fixed !important;
  108. background-size: cover !important;
  109. }
  110. .section-title {
  111. margin: 0;
  112. padding-bottom: 32px;
  113. }
  114. #service, #about, #work,
  115. #contact, footer {
  116. position: relative;
  117. padding-top: 80px;
  118. padding-bottom: 80px;
  119. }
  120. #service, #work {
  121. background: #f9f9f9;
  122. text-align: center;
  123. }
  124. /*---------------------------------------
  125. Pre loader section
  126. -----------------------------------------*/
  127. .preloader {
  128. position: fixed;
  129. top: 0;
  130. left: 0;
  131. width: 100%;
  132. height: 100%;
  133. z-index: 99999;
  134. display: flex;
  135. flex-flow: row nowrap;
  136. justify-content: center;
  137. align-items: center;
  138. background: none repeat scroll 0 0 #ffffff;
  139. }
  140. .spinner {
  141. border: 1px solid transparent;
  142. border-radius: 5px;
  143. position: relative;
  144. }
  145. .spinner:before {
  146. content: '';
  147. box-sizing: border-box;
  148. position: absolute;
  149. top: 50%;
  150. left: 50%;
  151. width: 65px;
  152. height: 65px;
  153. margin-top: -10px;
  154. margin-left: -10px;
  155. border-radius: 50%;
  156. border: 2px solid #454545;
  157. border-top-color: #ffffff;
  158. animation: spinner .9s linear infinite;
  159. }
  160. @-webkit-@keyframes spinner {
  161. to {transform: rotate(360deg);}
  162. }
  163. @keyframes spinner {
  164. to {transform: rotate(360deg);}
  165. }
  166. /*---------------------------------------
  167. Home section
  168. -----------------------------------------*/
  169. #home {
  170. background: url('../images/images.jpg') 50% 0 repeat-y fixed;
  171. background-size: cover;
  172. background-position: center center;
  173. display: -webkit-box;
  174. display: -webkit-flex;
  175. display: -ms-flexbox;
  176. display: flex;
  177. -webkit-box-align: center;
  178. -webkit-align-items: center;
  179. -ms-flex-align: center;
  180. align-items: center;
  181. height: 100vh;
  182. position: relative;
  183. text-align: right;
  184. }
  185. /*---------------------------------------
  186. Service section
  187. -----------------------------------------*/
  188. .service-thumb {
  189. background: #ffffff;
  190. border-radius: 5px;
  191. padding: 50px 10px;
  192. cursor: crosshair;
  193. position: relative;
  194. top: 0;
  195. -webkit-transition: all ease-in-out 0.4s;
  196. transition: all ease-in-out 0.4s;
  197. margin-block-end: 30px;
  198. }
  199. .service-thumb:hover {
  200. background: #2b2b2b;
  201. top: -5px;
  202. }
  203. .service-thumb:hover .fa,
  204. .service-thumb:hover h4 {
  205. color: #ffffff;
  206. }
  207. .service-thumb h4 {
  208. padding-bottom: 5px;
  209. }
  210. .service-thumb .fa {
  211. color: #7682cc;
  212. font-size: 62px;
  213. text-align: center;
  214. margin-top: 32px;
  215. margin-bottom: 22px;
  216. }
  217. .bg-grey .fa {
  218. color: #ffffff;
  219. }
  220. /*---------------------------------------
  221. About section
  222. -----------------------------------------*/
  223. #about {
  224. padding-top: 100px;
  225. }
  226. .about-image-thumb img {
  227. border-radius: 5px;
  228. margin-bottom: 22px;
  229. }
  230. .about-image-thumb .social-icon li a {
  231. background: #f0f0f0;
  232. }
  233. .about-thumb {
  234. padding: 32px 12px;
  235. }
  236. .about-thumb p {
  237. padding: 2px 0;
  238. }
  239. /*---------------------------------------
  240. Work section
  241. -----------------------------------------*/
  242. .work-thumb {
  243. margin: 10px 10 12px 10;
  244. padding: 0;
  245. overflow: hidden;
  246. position: relative;
  247. text-align: left;
  248. }
  249. .work-thumb img {
  250. border-radius: 5px;
  251. }
  252. .work-thumb h2 {
  253. font-size: 25px;
  254. }
  255. .work-thumb-overlay {
  256. position: absolute;
  257. background: #7682cc;
  258. border-radius: 5px;
  259. cursor: crosshair;
  260. opacity: 0;
  261. width: 100%;
  262. height: 100%;
  263. padding: 82px 42px;
  264. -webkit-transition: all ease-in-out 0.4s;
  265. transition: all ease-in-out 0.4s;
  266. }
  267. .work-thumb:hover .work-thumb-overlay {
  268. opacity: 1;
  269. }
  270. /*---------------------------------------
  271. Contact section
  272. -----------------------------------------*/
  273. .contact-info .fa {
  274. padding-right: 5px;
  275. }
  276. #contact .form-control {
  277. border: none;
  278. border-bottom: 2px solid #f0f0f0;
  279. border-radius: 0px;
  280. box-shadow: none;
  281. font-size: 18px;
  282. margin-top: 10px;
  283. margin-bottom: 10px;
  284. -webkit-transition: all ease-in-out 0.4s;
  285. transition: all ease-in-out 0.4s;
  286. }
  287. #contact .form-control:focus {
  288. border-bottom-color: #999999;
  289. }
  290. #contact input {
  291. height: 55px;
  292. }
  293. #contact button#submit {
  294. background: #2b2b2b;
  295. border: none;
  296. border-radius: 50px;
  297. color: #ffffff;
  298. height: 50px;
  299. margin-top: 24px;
  300. }
  301. #contact button#submit:hover {
  302. background: #7682cc;
  303. color: #ffffff;
  304. }
  305. /*---------------------------------------
  306. Footer section
  307. -----------------------------------------*/
  308. footer {
  309. background: #7682cc;
  310. text-align: center;
  311. padding: 120px 0;
  312. }
  313. footer p {
  314. padding-bottom: 16px;
  315. }
  316. /*---------------------------------------
  317. Social icon
  318. -----------------------------------------*/
  319. .social-icon {
  320. position: relative;
  321. padding: 0;
  322. margin: 0;
  323. text-align: center;
  324. }
  325. .social-icon li {
  326. display: inline-block;
  327. list-style: none;
  328. }
  329. .social-icon li a {
  330. background: #ffffff;
  331. border-radius: 100%;
  332. color: #454545;
  333. cursor: pointer;
  334. font-size: 20px;
  335. text-decoration: none;
  336. transition: all 0.4s ease-in-out;
  337. width: 45px;
  338. height: 45px;
  339. line-height: 45px;
  340. text-align: center;
  341. vertical-align: middle;
  342. position: relative;
  343. top: 0;
  344. margin: 0px 6px 10px 6px;
  345. }
  346. .social-icon li a:hover {
  347. background: #000000;
  348. color: #ffffff;
  349. transform: scale(1.1);
  350. top: -5px;
  351. }
  352. /*---------------------------------------
  353. Mobile Responsive styles
  354. -----------------------------------------*/
  355. @media (max-width: 980px) {
  356. #home {
  357. height: 55vh;
  358. }
  359. .service-thumb {
  360. margin-top: 12px;
  361. margin-bottom: 22px;
  362. }
  363. .contact-info {
  364. margin-top: 22px;
  365. }
  366. }
  367. @media (max-width: 768px) {
  368. #home {
  369. height: 85vh;
  370. }
  371. }
  372. @media (max-width: 580px) {
  373. h1 {
  374. font-size: 29px;
  375. }
  376. h2 {
  377. font-size: 23px;
  378. }
  379. #home {
  380. height: 95vh;
  381. }
  382. .contact-info {
  383. margin-top: 42px;
  384. }
  385. }
  386. @media (max-width: 320px) {
  387. #home {
  388. height: 125vh;
  389. }
  390. }