tooplate-style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. /*
  2. Tooplate 2115 Marvel
  3. https://www.tooplate.com/view/2115-marvel
  4. */
  5. @import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,700");
  6. body {
  7. font-family: "Maven Pro", sans-serif;
  8. padding-top: 70px;
  9. }
  10. #gray-block {
  11. background-color: #474559;
  12. }
  13. .full-screen {
  14. padding: 8rem 0;
  15. }
  16. .small-text {
  17. color: #5b5b5b;
  18. font-size: 14px;
  19. font-weight: bold;
  20. border-radius: 50px;
  21. letter-spacing: 0.2px;
  22. }
  23. ul {
  24. margin: 0;
  25. padding: 0;
  26. }
  27. ul li {
  28. list-style: none;
  29. }
  30. a {
  31. font-weight: normal;
  32. text-decoration: none !important;
  33. transition: all 0.4s ease;
  34. }
  35. a:hover {
  36. color: #ff0000 !important;
  37. }
  38. .navbar-brand .uil {
  39. font-size: 18px;
  40. padding-bottom: 15px;
  41. }
  42. p {
  43. font-size: 18px;
  44. font-weight: 300;
  45. line-height: 1.5;
  46. color: #5b5b5b;
  47. }
  48. h1,
  49. h2,
  50. h3,
  51. h4,
  52. h5,
  53. h6 {
  54. font-weight: bold;
  55. letter-spacing: -1px;
  56. }
  57. h1 {
  58. color: #212121;
  59. font-size: 2.8em;
  60. margin: 24px 0;
  61. }
  62. h2 {
  63. color: #353535;
  64. font-size: 2.4em;
  65. font-weight: bold;
  66. }
  67. h3 {
  68. color: #484848;
  69. }
  70. h3,
  71. b,
  72. strong {
  73. font-weight: bold;
  74. }
  75. .custom-btn {
  76. background: #eee;
  77. color: #5b5b5b;
  78. font-weight: bold;
  79. border-radius: 50px;
  80. padding: 13px 29px;
  81. font-size: 14px;
  82. line-height: normal;
  83. overflow: hidden;
  84. transition: all 0.4s ease;
  85. }
  86. .custom-btn:hover {
  87. color: #ff0000;
  88. }
  89. .custom-btn.custom-btn-bg {
  90. background: #474559;
  91. color: #ffffff;
  92. }
  93. .custom-btn.custom-btn-bg:hover {
  94. background: #ff0000;
  95. color: #ffffff !important;
  96. }
  97. .animated {
  98. position: relative;
  99. }
  100. .animated-info {
  101. display: inline-block;
  102. vertical-align: top;
  103. margin-top: 5px;
  104. min-width: 260px;
  105. position: relative;
  106. }
  107. .animated-item {
  108. color: #ff0000;
  109. }
  110. .animated-item {
  111. font-size: 38px;
  112. line-height: inherit;
  113. display: block;
  114. opacity: 0;
  115. overflow: hidden;
  116. position: absolute;
  117. top: 0;
  118. right: 0;
  119. left: 0;
  120. width: 400px;
  121. animation: BottomTotop 6s linear infinite 0s;
  122. }
  123. .animated-item:nth-child(2n+2) {
  124. animation-delay: 2s;
  125. }
  126. .animated-item:nth-child(3n+3) {
  127. animation-delay: 4s;
  128. }
  129. @keyframes BottomTotop {
  130. 0% {
  131. opacity: 0;
  132. }
  133. 5% {
  134. opacity: 0;
  135. transform: translateY(5px);
  136. }
  137. 10% {
  138. opacity: 1;
  139. transform: translateY(0px);
  140. }
  141. 25% {
  142. opacity: 1;
  143. transform: translateY(0px);
  144. }
  145. 30% {
  146. opacity: 0;
  147. transform: translateY(5px);
  148. }
  149. 80% {
  150. opacity: 0;
  151. }
  152. 100% {
  153. opacity: 0;
  154. }
  155. }
  156. .navbar {
  157. position: fixed;
  158. top: 0;
  159. right: 0;
  160. left: 0;
  161. z-index: 999999;
  162. will-change: transform;
  163. transition: transform 200ms linear;
  164. }
  165. .navbar[class*="-unpinned"] {
  166. transform: translate(0, -150%);
  167. }
  168. .navbar[class*="-pinned"] {
  169. transform: translate(0, 0);
  170. }
  171. .navbar[class*="headroom--not-top"] {
  172. background: #ffffff;
  173. border-bottom: 1px solid #f0f0f0;
  174. padding-top: 0;
  175. padding-bottom: 0;
  176. }
  177. .navbar-brand {
  178. font-weight: bold;
  179. }
  180. .navbar-expand-sm .navbar-nav .nav-link {
  181. padding: 0 20px;
  182. }
  183. .nav-link {
  184. font-weight: bold;
  185. font-size: 16px;
  186. overflow: hidden;
  187. }
  188. .nav-link span {
  189. position: relative;
  190. display: inline-block;
  191. transition: transform 0.3s;
  192. }
  193. .nav-link span:before {
  194. position: absolute;
  195. top: 100%;
  196. content: attr(data-hover);
  197. transform: translate3d(0, 0, 0);
  198. }
  199. .navbar-light .navbar-nav .nav-link:focus,
  200. .navbar-light .navbar-nav .nav-link:hover {
  201. color: #ff0000;
  202. font-weight: bold;
  203. }
  204. .navbar-light .navbar-nav .nav-link:focus span,
  205. .navbar-light .navbar-nav .nav-link:hover span {
  206. transform: translateY(-100%);
  207. }
  208. .navbar-light .navbar-toggler-icon {
  209. background: none;
  210. }
  211. .navbar-toggler {
  212. border: 0;
  213. padding: 0;
  214. width: 32px;
  215. height: 32px;
  216. line-height: 32px;
  217. outline: none;
  218. cursor: pointer;
  219. margin-right: 10px;
  220. }
  221. .navbar-toggler:focus {
  222. outline: none;
  223. }
  224. .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
  225. transform: rotate(45deg);
  226. top: 6px;
  227. }
  228. .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
  229. display: none;
  230. }
  231. .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
  232. transform: rotate(-45deg);
  233. bottom: 1px;
  234. }
  235. .navbar-toggler .navbar-toggler-icon {
  236. background: #212121;
  237. display: block;
  238. width: 100%;
  239. height: 2px;
  240. margin: 5px 0;
  241. transition: all 0.4s ease;
  242. position: relative;
  243. }
  244. .copyright-text {
  245. font-size: 16px;
  246. font-weight: normal;
  247. display: block;
  248. }
  249. .color-mode {
  250. font-weight: bold;
  251. cursor: pointer;
  252. }
  253. .color-mode-icon {
  254. position: relative;
  255. right: 6px;
  256. }
  257. .color-mode-icon:after {
  258. font-family: 'unicons';
  259. content: '\ea9f';
  260. font-size: 30px;
  261. font-weight: 300;
  262. font-style: normal;
  263. }
  264. .color-mode-icon.active:after {
  265. font-family: 'unicons';
  266. content: '\eb65';
  267. font-size: 30px;
  268. color: #ffffff;
  269. }
  270. .dark-mode {
  271. background: #0c0c0d;
  272. }
  273. .dark-mode .navbar-light .navbar-nav .nav-link {
  274. color: rgba(255, 255, 255, 0.8);
  275. }
  276. .dark-mode .navbar-light .navbar-nav .nav-link:hover {
  277. color: #ff0000;
  278. }
  279. .dark-mode .navbar[class*="headroom--not-top"] {
  280. background: #0c0c0d;
  281. border-bottom: 1px solid;
  282. }
  283. .dark-mode #gray-block {
  284. background-color: #f0f0f0;
  285. }
  286. .dark-mode #header-gray {
  287. color: #474559 !important;
  288. }
  289. #lol,
  290. #low {
  291. color: #5b5b5b;
  292. }
  293. .dark-mode #small-text {
  294. color: rgba(255, 255, 255, 0.8) !important;
  295. }
  296. .dark-mode #lol {
  297. color: rgba(255, 255, 255, 0.8) !important;
  298. }
  299. .dark-mode #low {
  300. color: rgba(255, 255, 255, 0.8) !important;
  301. }
  302. .dark-mode .feature-card .uil,
  303. .dark-mode .navbar-light .navbar-brand,
  304. .dark-mode h1,
  305. .dark-mode h2,
  306. .dark-mode h3,
  307. .dark-mode h4,
  308. .dark-mode h5,
  309. .dark-mode h6,
  310. .dark-mode .color-mode {
  311. color: #ffffff;
  312. }
  313. .dark-mode .owl-carousel .owl-nav button.owl-next,
  314. .dark-mode .owl-carousel .owl-nav button.owl-prev,
  315. .dark-mode .owl-carousel button.owl-dot {
  316. color: #ff0000;
  317. }
  318. .timeline-wrapper {
  319. position: relative;
  320. padding: 22px 0;
  321. }
  322. .timeline-wrapper:last-child:before {
  323. height: 0;
  324. }
  325. .timeline-wrapper:before {
  326. content: "";
  327. background: #474559;
  328. width: 3px;
  329. height: 100%;
  330. position: absolute;
  331. left: 38px;
  332. }
  333. .timeline-yr {
  334. background: #474559;
  335. border-radius: 100%;
  336. position: absolute;
  337. width: 75px;
  338. height: 75px;
  339. line-height: 75px;
  340. text-align: center;
  341. }
  342. .timeline-yr span {
  343. color: #ffffff;
  344. font-size: 16px;
  345. font-weight: bold;
  346. display: block;
  347. line-height: 75px;
  348. }
  349. .timeline-info {
  350. display: inline-block;
  351. vertical-align: top;
  352. max-width: 432px;
  353. margin-left: 6em;
  354. }
  355. .timeline-info small {
  356. color: #474559;
  357. font-size: 16px;
  358. font-weight: bold;
  359. display: inline-block;
  360. vertical-align: middle;
  361. margin-left: 15px;
  362. }
  363. .owl-carousel .owl-nav span {
  364. display: none;
  365. }
  366. .owl-carousel .owl-nav .owl-prev:before,
  367. .owl-carousel .owl-nav .owl-next:before {
  368. background: none;
  369. padding: 0;
  370. display: block;
  371. position: absolute;
  372. top: 50%;
  373. transform: translate(0, -50%);
  374. font-family: 'unicons';
  375. font-size: 100px;
  376. line-height: normal;
  377. }
  378. .owl-carousel .owl-nav .owl-prev:before {
  379. content: '\e833';
  380. left: -45px;
  381. }
  382. .owl-carousel .owl-nav .owl-next:before {
  383. content: '\e836';
  384. right: -45px;
  385. }
  386. .owl-theme .owl-nav [class*=owl-] {
  387. background: none;
  388. border-radius: 0;
  389. margin: 0;
  390. padding: 0 0 10px 0;
  391. font-size: inherit;
  392. }
  393. .owl-theme .owl-nav [class*=owl-]:hover {
  394. color: #ff0000;
  395. }
  396. .dark-mode .owl-theme .owl-nav [class*=owl-]:hover {
  397. color: #474559;
  398. }
  399. .dark-mode #info-white {
  400. color: #f0f0f0;
  401. }
  402. .owl-theme .owl-dots .owl-dot {
  403. outline: none;
  404. }
  405. .owl-theme .owl-dots .owl-dot span {
  406. width: 8px;
  407. height: 8px;
  408. }
  409. .owl-theme .owl-dots .owl-dot.active span,
  410. .owl-theme .owl-dots .owl-dot:hover span {
  411. background: #5b5b5b;
  412. }
  413. .dark-mode .owl-theme .owl-dots .owl-dot.active span,
  414. .owl-theme .owl-dots .owl-dot:hover span {
  415. background: #474559;
  416. }
  417. .google-map iframe {
  418. width: 100%;
  419. }
  420. .contact-form {
  421. position: relative;
  422. }
  423. .contact-form .form-control {
  424. background: transparent;
  425. border-radius: 2px;
  426. outline: none;
  427. box-shadow: none;
  428. font-weight: bold;
  429. margin: 16px 0;
  430. }
  431. .contact-form .form-control:not(textarea) {
  432. height: 48px;
  433. }
  434. .contact-form .form-control:hover,
  435. .contact-form .form-control:focus {
  436. border-color: #ff0000;
  437. }
  438. .contact-form .submit-btn {
  439. background: #ff0000;
  440. border-radius: 50px;
  441. color: #ffffff;
  442. font-weight: bold;
  443. border: 0;
  444. cursor: pointer;
  445. transition: all 0.4s ease;
  446. }
  447. .contact-form .submit-btn:hover {
  448. background: #474559;
  449. }
  450. #white {
  451. color: #eee;
  452. font-weight: 400;
  453. }
  454. #white-red {
  455. color: #ff0000;
  456. font-weight: 600;
  457. }
  458. .dark-mode #white {
  459. color: #0c0c0d;
  460. }
  461. #price {
  462. background-color: #0c0c0d;
  463. }
  464. .dark-mode #price {
  465. background-color: #eee;
  466. }
  467. .contact-info {
  468. background: #474559;
  469. border-radius: 0 0 3px 3px;
  470. position: relative;
  471. bottom: 8px;
  472. }
  473. .contact-info p,
  474. .contact-info a {
  475. color: #f7f3f3;
  476. }
  477. .social-links .uil {
  478. color: #f7f3f3;
  479. font-size: 20px;
  480. display: block;
  481. margin: 5px 0;
  482. }
  483. .social-links .uil:hover {
  484. color: #ffc200;
  485. }
  486. @media (min-width: 1270px) {
  487. .owl-theme .owl-dots {
  488. position: relative;
  489. bottom: 50px;
  490. }
  491. }
  492. @media (max-width: 991px) {
  493. .full-screen {
  494. padding-bottom: 4rem;
  495. }
  496. .color-mode {
  497. display: none;
  498. }
  499. .about-image {
  500. margin-top: 4em;
  501. }
  502. .mobile-mt-2,
  503. .contact-form {
  504. margin-top: 2em;
  505. }
  506. .contact-info {
  507. padding: 0 2rem;
  508. }
  509. }
  510. @media (max-width: 767px) {
  511. h1 {
  512. font-size: 2.4em;
  513. }
  514. h2 {
  515. font-size: 2em;
  516. }
  517. .animated-item {
  518. font-size: 28px;
  519. }
  520. .navbar-collapse {
  521. background: #ffffff;
  522. text-align: center;
  523. padding-bottom: 20px;
  524. }
  525. .navbar-expand-sm .navbar-nav .nav-link {
  526. padding: 3px 20px;
  527. }
  528. }
  529. @media (max-width: 580px) {
  530. .animated-info {
  531. min-width: 200px;
  532. }
  533. .animated-item {
  534. font-size: 30px;
  535. }
  536. .custom-btn-group {
  537. text-align: center;
  538. }
  539. .custom-btn {
  540. display: block;
  541. margin: 10px 0;
  542. }
  543. .owl-theme .owl-nav {
  544. display: none;
  545. }
  546. .timeline-info small {
  547. display: block;
  548. margin: 10px 0 0 0;
  549. }
  550. }
  551. @media (max-width: 320px) {
  552. .animated-text {
  553. margin-top: 0;
  554. }
  555. .about-text {
  556. text-align: center;
  557. }
  558. .full-screen {
  559. padding: 4rem 0;
  560. }
  561. .mobile-block {
  562. display: block;
  563. }
  564. .contact-info {
  565. flex-direction: column;
  566. }
  567. .social-links li {
  568. display: inline-block;
  569. vertical-align: top;
  570. }
  571. }