tooplate-style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  1. /*
  2. Template 2099 Scenic
  3. http://www.tooplate.com/view/2099-scenic
  4. */
  5. @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700');
  6. body {
  7. background: #ffffff;
  8. font-family: 'Source Sans Pro', sans-serif;
  9. overflow-x: hidden;
  10. }
  11. html, body {
  12. width: 100%;
  13. height: 100%;
  14. }
  15. /*---------------------------------------
  16. TYPOGRAPHY
  17. -----------------------------------------*/
  18. h1,h2,h3,h4,h5,h6 {
  19. font-weight: 300;
  20. }
  21. h1 {
  22. font-size: 40px;
  23. font-weight: 200;
  24. line-height: 50px;
  25. }
  26. h2 {
  27. font-size: 30px;
  28. line-height: 40px;
  29. margin-top: 0;
  30. }
  31. h3 {
  32. font-size: 20px;
  33. font-weight: bold;
  34. line-height: 32px;
  35. }
  36. h4 {
  37. color: #505050;
  38. font-size: 18px;
  39. line-height: 28px;
  40. }
  41. p {
  42. color: #757575;
  43. font-size: 16px;
  44. font-weight: 300;
  45. line-height: 29px;
  46. letter-spacing: 0.5px;
  47. }
  48. /*---------------------------------------
  49. BUTTONS
  50. -----------------------------------------*/
  51. .section-btn {
  52. margin: 32px 0 0 0;
  53. padding: 0;
  54. }
  55. .section-btn a,
  56. .section-btn button {
  57. line-height: 45px;
  58. -webkit-perspective: 1000px;
  59. -moz-perspective: 1000px;
  60. perspective: 1000px;
  61. color: #ffffff;
  62. font-weight: normal;
  63. }
  64. .section-btn a span,
  65. .section-btn button span {
  66. position: relative;
  67. display: inline-block;
  68. font-size: 18px;
  69. font-weight: normal;
  70. letter-spacing: 0.5px;
  71. padding: 0 25px;
  72. background: #4dc47d;
  73. border-radius: 1px;
  74. -webkit-transition: -webkit-transform 0.3s;
  75. -moz-transition: -moz-transform 0.3s;
  76. transition: transform 0.3s;
  77. -webkit-transform-origin: 50% 0;
  78. -moz-transform-origin: 50% 0;
  79. transform-origin: 50% 0;
  80. -webkit-transform-style: preserve-3d;
  81. -moz-transform-style: preserve-3d;
  82. transform-style: preserve-3d;
  83. }
  84. .csstransforms3d .section-btn a span::before,
  85. .csstransforms3d .section-btn button span::before {
  86. position: absolute;
  87. top: 100%;
  88. left: 0;
  89. width: 100%;
  90. height: 100%;
  91. background: #000000;
  92. border-radius: 1px;
  93. color: #ffffff;
  94. padding: 0 25px;
  95. content: attr(data-hover);
  96. -webkit-transition: background 0.3s;
  97. -moz-transition: background 0.3s;
  98. transition: background 0.3s;
  99. -webkit-transform: rotateX(-90deg);
  100. -moz-transform: rotateX(-90deg);
  101. transform: rotateX(-90deg);
  102. -webkit-transform-origin: 50% 0;
  103. -moz-transform-origin: 50% 0;
  104. transform-origin: 50% 0;
  105. }
  106. .section-btn a:hover span,
  107. .section-btn a:focus span,
  108. .section-btn button:hover span,
  109. .section-btn button:focus span {
  110. -webkit-transform: rotateX(90deg) translateY(-22px);
  111. -moz-transform: rotateX(90deg) translateY(-22px);
  112. transform: rotateX(90deg) translateY(-22px);
  113. }
  114. .csstransforms3d .section-btn a:hover span::before,
  115. .csstransforms3d .section-btn a:focus span::before,
  116. .csstransforms3d .section-btn button:hover span::before,
  117. .csstransforms3d .section-btn button:hover span::before {
  118. background: #000000;
  119. }
  120. /*---------------------------------------
  121. GENERAL
  122. -----------------------------------------*/
  123. html{
  124. -webkit-font-smoothing: antialiased;
  125. }
  126. a {
  127. color: #4dc47d;
  128. -webkit-transition: 0.5s;
  129. transition: 0.5s;
  130. }
  131. a:hover, a:active, a:focus {
  132. color: #000000;
  133. outline: none;
  134. }
  135. * {
  136. -webkit-box-sizing: border-box;
  137. box-sizing: border-box;
  138. }
  139. *:before,
  140. *:after {
  141. -webkit-box-sizing: border-box;
  142. box-sizing: border-box;
  143. }
  144. ::-webkit-scrollbar{
  145. width: 6px;
  146. height: 6px;
  147. }
  148. ::-webkit-scrollbar-thumb {
  149. cursor: pointer;
  150. background: #252525;
  151. }
  152. .section-title {
  153. position: relative;
  154. padding-bottom: 22px;
  155. }
  156. .parallax-section {
  157. background-attachment: fixed !important;
  158. background-size: cover !important;
  159. }
  160. #about, #project,
  161. #team, #contact, footer {
  162. background: #ffffff;
  163. }
  164. #about,
  165. #team, #contact {
  166. padding-top: 100px;
  167. padding-bottom: 100px;
  168. text-align: center;
  169. }
  170. /*---------------------------------------
  171. PRE LOADER
  172. -----------------------------------------*/
  173. .preloader {
  174. position: fixed;
  175. top: 0;
  176. left: 0;
  177. width: 100%;
  178. height: 100%;
  179. z-index: 99999;
  180. display: flex;
  181. flex-flow: row nowrap;
  182. justify-content: center;
  183. align-items: center;
  184. background: none repeat scroll 0 0 #ffffff;
  185. }
  186. .spinner {
  187. border: 1px solid transparent;
  188. border-radius: 5px;
  189. position: relative;
  190. }
  191. .spinner:before {
  192. content: '';
  193. box-sizing: border-box;
  194. position: absolute;
  195. top: 50%;
  196. left: 50%;
  197. width: 45px;
  198. height: 45px;
  199. margin-top: -10px;
  200. margin-left: -10px;
  201. border-radius: 50%;
  202. border: 1px solid #959595;
  203. border-top-color: #ffffff;
  204. animation: spinner .9s linear infinite;
  205. }
  206. @-webkit-@keyframes spinner {
  207. to {transform: rotate(360deg);}
  208. }
  209. @keyframes spinner {
  210. to {transform: rotate(360deg);}
  211. }
  212. /*---------------------------------------
  213. MENU
  214. -----------------------------------------*/
  215. .custom-navbar {
  216. margin-bottom: 0;
  217. background-color: #4dc47d;
  218. padding: 20px 0;
  219. }
  220. .custom-navbar .navbar-brand {
  221. color: #f9f9f9;
  222. font-weight: normal;
  223. font-size: 25px;
  224. }
  225. .custom-navbar .nav li a {
  226. font-size: 14px;
  227. font-weight: normal;
  228. color: #f9f9f9;
  229. letter-spacing: 0.5px;
  230. -webkit-transition: all ease-in-out 0.4s;
  231. transition: all ease-in-out 0.4s;
  232. padding: 0;
  233. margin: 15px 20px;
  234. text-transform: uppercase;
  235. }
  236. .custom-navbar .navbar-nav > li > a:hover,
  237. .custom-navbar .navbar-nav > li > a:focus {
  238. background-color: transparent;
  239. color: #ffffff;
  240. }
  241. .custom-navbar .navbar-nav li a:after {
  242. content: "";
  243. position: absolute;
  244. display: block;
  245. width: 0px;
  246. height: 2px;
  247. margin: auto;
  248. background: transparent;
  249. transition: width .3s ease, background-color .3s ease;
  250. }
  251. .custom-navbar .navbar-nav li a:hover:after,
  252. .custom-navbar .nav li.active > a:after {
  253. background: #ffffff;
  254. color: #ffffff;
  255. width: 100%;
  256. }
  257. .custom-navbar .nav li.active > a {
  258. background-color: transparent;
  259. color: #ffffff;
  260. }
  261. .custom-navbar .navbar-toggle {
  262. border: none;
  263. padding-top: 10px;
  264. }
  265. .custom-navbar .navbar-toggle {
  266. background-color: transparent;
  267. }
  268. .custom-navbar .navbar-toggle .icon-bar {
  269. background: #ffffff;
  270. border-color: transparent;
  271. }
  272. @media(min-width:768px) {
  273. .custom-navbar {
  274. background: 0 0;
  275. }
  276. .custom-navbar.top-nav-collapse {
  277. background: #4dc47d;
  278. padding: 15px 0;
  279. }
  280. }
  281. /*---------------------------------------
  282. HOME
  283. -----------------------------------------*/
  284. #home {
  285. display: -webkit-box;
  286. display: -webkit-flex;
  287. display: -ms-flexbox;
  288. display: flex;
  289. -webkit-box-align: center;
  290. -webkit-align-items: center;
  291. -ms-flex-align: center;
  292. align-items: center;
  293. height: 100vh;
  294. position: relative;
  295. padding-top: 10em;
  296. }
  297. #home h1 {
  298. color: #ffffff;
  299. font-size: 6em;
  300. line-height: 1.2em;
  301. }
  302. #home p {
  303. color: rgba(250,250,250,0.7);
  304. }
  305. #home .overlay {
  306. position: absolute;
  307. top: 0;
  308. right: 0;
  309. bottom: 0;
  310. left: 0;
  311. width: 100%;
  312. height: 100%;
  313. background-color: rgba(0,0,0,0.75);
  314. }
  315. #home video {
  316. position: fixed;
  317. top: 50%;
  318. left: 50%;
  319. min-width: 100%;
  320. min-height: 100%;
  321. width: auto;
  322. height: auto;
  323. z-index: -100;
  324. transform: translateX(-50%) translateY(-50%);
  325. background-size: cover;
  326. transition: 1s opacity;
  327. }
  328. /*---------------------------------------
  329. ABOUT
  330. -----------------------------------------*/
  331. #about {
  332. padding-top: 200px;
  333. padding-bottom: 150px;
  334. }
  335. .about-info h3 {
  336. font-size: 14px;
  337. letter-spacing: 12px;
  338. text-transform: uppercase;
  339. margin: 0;
  340. }
  341. /*---------------------------------------
  342. PROJECT
  343. -----------------------------------------*/
  344. .project-item {
  345. overflow: hidden;
  346. position: relative;
  347. margin-bottom: 25px;
  348. padding: 0;
  349. vertical-align: middle;
  350. text-align: center;
  351. }
  352. .project-overlay {
  353. background: rgba(0,0,0,0.5);
  354. position: absolute;
  355. width: 100%;
  356. height: 100%;
  357. top: 0;
  358. right: 0;
  359. bottom: 0;
  360. left: 0;
  361. opacity: 0;
  362. -webkit-transition: all ease-in-out 0.4s;
  363. transition: all ease-in-out 0.4s;
  364. }
  365. .project-info {
  366. padding: 12em 0;
  367. }
  368. .project-item img {
  369. -webkit-transition: all ease-in-out 0.4s;
  370. transition: all ease-in-out 0.4s;
  371. }
  372. .project-item:hover img {
  373. transform: scale(1.1);
  374. }
  375. .project-overlay h1 {
  376. color: #ffffff;
  377. margin: 0;
  378. }
  379. .project-overlay h3 {
  380. color: #d9d9d9;
  381. font-size: 14px;
  382. letter-spacing: 0.2px;
  383. margin-top: 0;
  384. }
  385. .project-item:hover .project-overlay {
  386. opacity: 1;
  387. }
  388. /*---------------------------------------
  389. TEAM
  390. -----------------------------------------*/
  391. #team .item {
  392. display: block;
  393. width: 100%;
  394. margin-bottom: 22px;
  395. }
  396. #team h3,
  397. #team p {
  398. margin: 0;
  399. }
  400. .team-item {
  401. overflow: hidden;
  402. position: relative;
  403. margin-top: 34px;
  404. margin-bottom: 16px;
  405. }
  406. .team-item img {
  407. -webkit-transition: all ease-in-out 0.4s;
  408. transition: all ease-in-out 0.4s;
  409. }
  410. .team-item:hover img {
  411. transform: scale(1.1);
  412. }
  413. .team-overlay {
  414. background: rgba(0,0,0,0.5);
  415. opacity: 0;
  416. position: absolute;
  417. width: 100%;
  418. height: 100%;
  419. top: 0;
  420. left: 0;
  421. right: 0;
  422. bottom: 0;
  423. -webkit-transition: all ease-in-out 0.4s;
  424. transition: all ease-in-out 0.4s;
  425. }
  426. .team-overlay .social-icon {
  427. position: relative;
  428. top: 45%;
  429. }
  430. .team-overlay .social-icon li a {
  431. background: #ffffff;
  432. color: #191919;
  433. width: 35px;
  434. height: 35px;
  435. line-height: 35px;
  436. text-align: center;
  437. }
  438. .team-item:hover .team-overlay {
  439. opacity: 1;
  440. }
  441. /*---------------------------------------
  442. CONTACT
  443. -----------------------------------------*/
  444. #contact {
  445. background: url('../images/contact-bg.jpg') 50% 0 repeat-y fixed;
  446. background-size: cover;
  447. background-position: center center;
  448. }
  449. #contact-form {
  450. padding-top: 22px;
  451. }
  452. #contact .text-success,
  453. #contact .text-danger {
  454. display: none;
  455. padding: 0 0 5px 20px;
  456. }
  457. #contact .form-control {
  458. border: none;
  459. box-shadow: none;
  460. font-size: 18px;
  461. font-weight: normal;
  462. margin-bottom: 22px;
  463. -webkit-transition: all ease-in-out 0.4s;
  464. transition: all ease-in-out 0.4s;
  465. }
  466. #contact .form-control:focus {
  467. border-color: #d9d9d9;
  468. }
  469. #contact input {
  470. height: 55px;
  471. line-height: 45px;
  472. }
  473. #contact .section-btn {
  474. margin: 5px 0 0 0;
  475. }
  476. #contact button#cf-submit {
  477. background: transparent;
  478. border: none;
  479. padding: 0;
  480. line-height: 50px;
  481. }
  482. /*---------------------------------------
  483. FOOTER
  484. -----------------------------------------*/
  485. footer {
  486. padding-top: 120px;
  487. padding-bottom: 120px;
  488. }
  489. footer h4 {
  490. padding-top: 12px;
  491. }
  492. footer a {
  493. color: #757575;
  494. }
  495. footer .copyright-text {
  496. padding-top: 42px;
  497. }
  498. /*---------------------------------------
  499. SOCIAL ICON
  500. -----------------------------------------*/
  501. .social-icon {
  502. position: relative;
  503. padding: 0;
  504. margin: 0;
  505. text-align: center;
  506. }
  507. .social-icon li {
  508. display: inline-block;
  509. list-style: none;
  510. }
  511. .social-icon li a {
  512. border-radius: 100%;
  513. color: #292929;
  514. cursor: pointer;
  515. font-size: 18px;
  516. text-decoration: none;
  517. -webkit-transition: all ease-in-out 0.3s;
  518. transition: all ease-in-out 0.3s;
  519. text-align: center;
  520. position: relative;
  521. margin: 4px 8px 0 8px;
  522. }
  523. .social-icon li a:hover {
  524. -webkit-transform: scale(1.2);
  525. transform: scale(1.2);
  526. }
  527. /*---------------------------------------
  528. MOBILE RESPONSIVE
  529. -----------------------------------------*/
  530. @media (max-width: 992px) {
  531. #home h1 {
  532. font-size: 4em;
  533. line-height: normal;
  534. }
  535. }
  536. @media (max-width: 980px) {
  537. h1 {
  538. font-size: 30px;
  539. line-height: inherit;
  540. }
  541. #home {
  542. padding-top: 0em;
  543. }
  544. #about {
  545. padding-top: 120px;
  546. padding-bottom: 100px;
  547. }
  548. .project-info {
  549. padding: 4em 0;
  550. }
  551. footer {
  552. text-align: center;
  553. }
  554. footer .social-icon {
  555. margin-top: 32px;
  556. }
  557. }
  558. @media (max-width: 770px) {
  559. #home h1 {
  560. font-size: 3.5em;
  561. }
  562. }
  563. @media (max-width: 767px) {
  564. .custom-navbar {
  565. padding: 10px 0;
  566. }
  567. .custom-navbar .nav li a {
  568. display: inline-block;
  569. line-height: 15px;
  570. margin-bottom: 0;
  571. }
  572. .custom-navbar .nav li:last-child a {
  573. margin-bottom: 5px;
  574. }
  575. .project-info {
  576. padding: 10em 0;
  577. }
  578. .footer-info {
  579. padding: 22px 0 22px 0;
  580. }
  581. }
  582. @media (max-width: 580px) {
  583. h1 {
  584. font-size: 26px;
  585. }
  586. #home {
  587. height: 100vh;
  588. }
  589. .about-info h3 {
  590. font-size: 12px;
  591. letter-spacing: 6px;
  592. }
  593. .project-info {
  594. padding: 5em 0;
  595. }
  596. }