Diligent web site
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

custom.css 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901
  1. /* #navigation ul li.active.portfolio .nav-active-mark
  2. {
  3. bottom: -20px;
  4. } */
  5. a:hover
  6. {
  7. text-decoration: none!important;
  8. }
  9. a.email
  10. {
  11. color: #993c95;
  12. transition: opacity .35s;
  13. -webkit-transition: opacity .35s;
  14. }
  15. a.email:hover
  16. {
  17. color: #993c95;
  18. opacity: .9;
  19. }
  20. ul.bulleted-list li
  21. {
  22. list-style-type: disc;
  23. }
  24. ul.bulleted-list {
  25. padding-left: 30px;
  26. }
  27. /* header */
  28. .service-link,.industries-link
  29. {
  30. cursor: pointer;
  31. position: relative;
  32. }
  33. .service-link .fa-angle-down,.industries-link .fa-angle-down
  34. {
  35. position: absolute;
  36. right: -17px;
  37. top: 4px;
  38. font-size: 17px;
  39. transition: transform .35s;
  40. }
  41. .service-link.up.active .fa-angle-down, .industries-link.up.active .fa-angle-down
  42. {
  43. transform: rotate(180deg);
  44. }
  45. .sub-menu
  46. {
  47. /* display: flex;
  48. flex-direction: column; */
  49. }
  50. .dropdown_wrap
  51. {
  52. }
  53. .dropdown_menu
  54. {
  55. display: none;
  56. position: relative;
  57. left: 0;
  58. width: 100%;
  59. padding: 10px 0px 32px 0;
  60. }
  61. .dropdown-left img
  62. {
  63. max-height: 200px;
  64. }
  65. #servicesMenu ul
  66. {
  67. padding-left: 95px;
  68. }
  69. #industriesMenu ul
  70. {
  71. padding-left: 172px;
  72. }
  73. #servicesMenu.active, #industriesMenu.active {
  74. display: block;
  75. }
  76. .expand-menu li
  77. {
  78. padding:5px 0px;
  79. }
  80. .expand-menu li a
  81. {
  82. color:#fff;
  83. transition: color .35s;
  84. }
  85. .expand-menu li a:hover
  86. {
  87. color:#993c95;
  88. }
  89. /* header end*/
  90. #back-to-top
  91. {
  92. position: fixed;
  93. right: 16px;
  94. bottom: 40px;
  95. width: 70px;
  96. height: 50px;
  97. display: none;
  98. background-color: #993c95;
  99. border-radius: 7px;
  100. z-index: 99;
  101. }
  102. #back-to-top span
  103. {
  104. position: relative;
  105. top: 12px;
  106. left: 29%;
  107. font-size: 20px;
  108. color: #fff;
  109. }
  110. #back-to-top.active{
  111. display: block;
  112. }
  113. .h3
  114. {
  115. font-size: 36px;
  116. }
  117. .section-title h1
  118. {
  119. font: 72px 'bebas_neue', Helvetica, Arial, sans-serif;
  120. color: #1d1d1d;
  121. padding: 0;
  122. margin-bottom: -10px;
  123. }
  124. .red-background
  125. {
  126. background-color: #cd1e28
  127. }
  128. .white-background, .contact-social.linkedin .hex-area.white-background
  129. {
  130. background-color: #d7dbd8!important;
  131. }
  132. .gray-background, .contact-social.linkedin .outer-hex.gray-background
  133. {
  134. background-color: #9e9e9e !important;
  135. }
  136. .dark-blue-background ,.contact-social.linkedin .dark-blue-background.hex-area
  137. {
  138. background-color: #103576!important;
  139. }
  140. .light-blue-background, .contact-social.linkedin .light-blue-background.hex-area
  141. {
  142. background-color: #089bcf!important;
  143. }
  144. /* portfolio */
  145. #gallery .contact-socials .contact-social-overlay .hex-area ,#portfolio-header .contact-socials .contact-social-overlay .hex-area {
  146. /*background-color: #d7dbd8!important;*/
  147. background-color: #cccccc!important;
  148. }
  149. .gbi-description
  150. {
  151. display: flow-root;
  152. }
  153. #gallery .gallery-item-overlay .hex-area, #portfolio-header .gallery-item-overlay .hex-area{
  154. background-color: #d7dbd8!important;
  155. }
  156. #gallery .gallery-item-overlay .hex-area.no-partner
  157. {
  158. background-color: rgba(104,104,104)!important;
  159. position: relative;
  160. z-index: 999999999;
  161. }
  162. #gallery .hex_overlay
  163. {
  164. background-color: rgba(104,104,104)!important;
  165. position: relative;
  166. z-index: 99999999999;
  167. width: 100%;
  168. height: 100%;
  169. }
  170. #gallery .gallery-item-overlay .outer-hex , #portfolio-header .gallery-item-overlay .outer-hex {
  171. background-color: #9e9e9e;
  172. transition: background-color .35s;
  173. -webkit-transition: background-color .35s;
  174. }
  175. #gallery .flex-control-paging
  176. {
  177. display: none;
  178. }
  179. .white-color
  180. {
  181. color:#fff;
  182. }
  183. #gallery .gallery-item .socials {
  184. padding-top: 80px;
  185. }
  186. #gallery .gallery-item-overlay:hover .outer-hex, #portfolio-header .gallery-item-overlay:hover .outer-hex {
  187. background-color: rgba(153,60,149,0.7);
  188. }
  189. #intro {
  190. height: 540px;
  191. }
  192. #gallery .gallery-box
  193. {
  194. padding: 0px 100px;
  195. }
  196. #our_partners-section
  197. {
  198. position: relative;
  199. z-index: 1;
  200. padding-bottom: 100px;
  201. }
  202. #our_partners-wrap .our_partners-cont
  203. {
  204. position: absolute;
  205. width: 100%;
  206. height: 100%;
  207. left: 0;
  208. top: 0;
  209. opacity: .1;
  210. background-size: cover;
  211. background-color: #000;
  212. z-index: 4;
  213. }
  214. .gallery-cont
  215. {
  216. position: relative;
  217. z-index: 7;
  218. position: relative;
  219. opacity:1;
  220. }
  221. #gallery .contact-social .outer-hex, #portfolio-header .contact-social .outer-hex{
  222. background-color: #9e9e9e !important;
  223. }
  224. .services-wrap-cont
  225. {
  226. border-top: 5px solid #ddd;
  227. }
  228. .typewriter-span {
  229. font-size: 3.82rem;
  230. text-shadow: 0 0 2px #000;
  231. }
  232. .non-margin
  233. {
  234. margin: 0!important;
  235. }
  236. .about-item.highlight {
  237. background-color: #fff;
  238. }
  239. .about-item, .serevices-item {
  240. text-align: center;
  241. padding: 180px 5px;
  242. }
  243. #portfolio-header .hive .outer-hex:hover
  244. {
  245. background-color: rgba(153,60,149,0.7)!important;
  246. }
  247. #galery .gallery-item-overlay:hover .hex-area.no-partner
  248. {
  249. background-color: #d7dbd8!important;
  250. }
  251. #gallery .section-triangle-grey
  252. {
  253. /*background-color: #f6f6f6;*/
  254. display: none;
  255. }
  256. /* #about-section
  257. {
  258. padding-bottom: 240px;
  259. } */
  260. #gallery
  261. {
  262. position: relative;
  263. padding-bottom: 0px!important;
  264. padding-top: 210px;
  265. }
  266. #our_partners-wrap::before{
  267. content: "";
  268. position: absolute;
  269. width: 0;
  270. height: 0;
  271. border-style: solid;
  272. border-width: 36px 63px 0px 63px;
  273. border-color: #f6f6f6 transparent transparent transparent;
  274. top: 0;
  275. left:50%;
  276. transform: translateX(-50%);
  277. z-index: 11;
  278. }
  279. #our_partners_title
  280. {
  281. font-size: 40px;
  282. }
  283. #our_partners-section:before
  284. {
  285. content: "";
  286. position: absolute;
  287. width: 0;
  288. height: 0;
  289. border-style: solid;
  290. border-width: 36px 63px 0px 63px;
  291. border-color: #f6f6f6 transparent transparent transparent;
  292. top: 0;
  293. left: 50%;
  294. transform: translateX(-50%);
  295. z-index: 11;
  296. opacity: 1;
  297. }
  298. .successfully
  299. {
  300. color:#00FF00;
  301. }
  302. .error
  303. {
  304. background-color: #FF0000;
  305. }
  306. /*careers page*/
  307. .careers-intro, .service_type-intro
  308. {
  309. padding-top: 30px;
  310. padding-bottom: 30px;
  311. display: flex;
  312. flex-direction: row;
  313. }
  314. .careers-intro
  315. {
  316. min-height: 500px;
  317. padding-bottom: 100px;
  318. }
  319. .service_type-intro
  320. {
  321. min-height: 400px;
  322. }
  323. .service-type-wrapper.dark
  324. {
  325. background-color: #1d1d1d;
  326. }
  327. .service-type-wrapper.dark .section-title h1
  328. {
  329. color:#fff;
  330. }
  331. .service-info
  332. {
  333. padding: 50px 0px;
  334. }
  335. .service-info-wrapper,.service-type-wrapper
  336. {
  337. position: relative;
  338. }
  339. .service-type-wrapper:after
  340. {
  341. content: "";
  342. position: absolute;
  343. width: 0;
  344. height: 0;
  345. border-style: solid;
  346. border-width: 36px 63px 0px 63px;
  347. border-color: #f6f6f6 transparent transparent transparent;
  348. bottom: -36px;
  349. left: 50%;
  350. transform: translateX(-50%);
  351. z-index: 11;
  352. opacity: 1;
  353. }
  354. .service-type-wrapper.dark:after
  355. {
  356. border-color: #1d1d1d transparent transparent transparent;
  357. }
  358. .service-info-icon
  359. {
  360. font-size: 45px;
  361. }
  362. .careers .section-title, .service_type .section-title
  363. {
  364. position: relative;
  365. }
  366. .careers, .apply-form-cont
  367. {
  368. padding-top: 70px;
  369. padding-bottom: 80px;
  370. }
  371. .service_type
  372. {
  373. padding-top: 70px;
  374. }
  375. .careers .one_half, .service_type .one_half
  376. {
  377. float: left;
  378. }
  379. .position-cont
  380. {
  381. position: relative;
  382. width:100%;
  383. }
  384. .position
  385. {
  386. position: relative;
  387. width:100%;
  388. color: inherit;
  389. padding: 0px 35px;
  390. border: 4px solid #993c95;
  391. display: flex;
  392. flex-direction: column;
  393. justify-content: space-between;
  394. margin-bottom: 20px;
  395. color: #1d1d1d;
  396. -webkit-transition: background-color .35s, color .35s;
  397. transition: background-color .35s, color .35s;
  398. border-radius: 65px;
  399. cursor: pointer;
  400. }
  401. .position:hover
  402. {
  403. background-color: #993c95!important;
  404. color:#fff!important;
  405. }
  406. .position.active{
  407. background-color: #993c95!important;
  408. color:#fff!important;
  409. }
  410. .position-name
  411. {
  412. padding-top: 15px;
  413. }
  414. .position-name h4
  415. {
  416. position: relative;
  417. margin-right: 55px;
  418. padding-bottom: 10px !important;
  419. }
  420. .chevron
  421. {
  422. position: absolute;
  423. top: 50%;
  424. right: 30px;
  425. transform: translateY(-50%);
  426. }
  427. .chevron__line1, .chevron__line2
  428. {
  429. stroke-width: 10;
  430. stroke-linecap: round;
  431. -webkit-transition: -webkit-transform 0.4s, stroke 0.4s;
  432. transition: transform 0.4s, stroke 0.4s;
  433. }
  434. .chevron__line1 {
  435. -webkit-transform-origin: 50px 50px;
  436. transform-origin: 50px 50px;
  437. }
  438. .chevron__line2 {
  439. -webkit-transform-origin: 50px 50px;
  440. transform-origin: 50px 50px;
  441. }
  442. .chevron--down, .chevron--up {
  443. display: block;
  444. }
  445. .chevron--down .chevron__container, .chevron--up .chevron__container {
  446. -webkit-transition: -webkit-transform 0.4s;
  447. transition: transform 0.4s;
  448. -webkit-transform: translateY(13px);
  449. transform: translateY(13px);
  450. }
  451. .chevron--down .chevron__line1, .chevron--up .chevron__line1 {
  452. stroke: #993c95;
  453. -webkit-transform: rotate(40deg);
  454. transform: rotate(40deg);
  455. }
  456. .chevron--down .chevron__line2, .chevron--up .chevron__line2 {
  457. stroke: #993c95;
  458. -webkit-transform: rotate(-40deg);
  459. transform: rotate(-40deg);
  460. }
  461. .chevron--up .chevron__container {
  462. -webkit-transform: translateY(-13px);
  463. transform: translateY(-13px);
  464. }
  465. .chevron--up .chevron__line1 {
  466. stroke: white;
  467. -webkit-transform: rotate(-40deg);
  468. transform: rotate(-40deg);
  469. }
  470. .chevron--up .chevron__line2 {
  471. stroke: white;
  472. -webkit-transform: rotate(40deg);
  473. transform: rotate(40deg);
  474. }
  475. .position:hover .chevron--down .chevron__line1, .position:hover .chevron--down .chevron__line2 {
  476. stroke: #fff;
  477. }
  478. .position-content {
  479. padding: 30px 0px;
  480. }
  481. .apply-cont
  482. {
  483. height: auto;
  484. width: 100%;
  485. text-align: center;
  486. margin-top: 50px;
  487. }
  488. .btn-apply
  489. {
  490. color: #fff;
  491. padding: 10px 35px;
  492. border-radius: 45px;
  493. background-color: #993c95;
  494. border: none;
  495. font-size: 1.5rem;
  496. font-weight: bold;
  497. cursor: pointer;
  498. }
  499. .btn-apply:hover{
  500. opacity: .8;
  501. color: #fff;
  502. }
  503. .background-overlay
  504. {
  505. position: absolute;
  506. background-color: #000;
  507. top:0;
  508. left:0;
  509. height: 100vh;
  510. width: 100vw;
  511. opacity: .85;
  512. z-index: 100;
  513. display: none;
  514. }
  515. .background-overlay.active{
  516. display: block;
  517. }
  518. .apply-notification{
  519. position: absolute;
  520. top:50%;
  521. left:50%;
  522. height:200px;
  523. width:300px;
  524. background-color: #993c95;
  525. z-index: 101;
  526. transform: translate(-50%,-150%);
  527. border-radius: 10px;
  528. text-align: center;
  529. display: none;
  530. }
  531. .apply-notification.active{
  532. display: block;
  533. }
  534. .notification-msg
  535. {
  536. position: relative;
  537. top: 71px;
  538. color: #fff;
  539. font-size: 20px;
  540. }
  541. .close-notification
  542. {
  543. font-size: 25px;
  544. position: absolute;
  545. top: 5px;
  546. right: 13px;
  547. color:#fff;
  548. cursor: pointer;
  549. }
  550. /*end careers*/
  551. /*apply page*/
  552. .apply-title-cont
  553. {
  554. text-align: center;
  555. padding-bottom: 25px;
  556. }
  557. .aplly-title
  558. {
  559. margin-top: 30px;
  560. }
  561. .apply-form-cont .selectize-input input[type="text"]
  562. {
  563. display: none;
  564. }
  565. .apply-form-cont .selectize-control
  566. {
  567. position: relative;
  568. margin-bottom: 30px;
  569. border-bottom: 2px solid #993c95;
  570. cursor: pointer;
  571. }
  572. .apply-form-cont .selectize-control .item
  573. {
  574. padding: 13px 0px 12px 10px;
  575. background-color: #fff;
  576. border-bottom: 1px solid #993c95;
  577. }
  578. .apply-form-cont .selectize-control:hover:after{
  579. color: #993c95;
  580. }
  581. .apply-form-cont .selectize-control:after
  582. {
  583. content:"\25bc";
  584. position: absolute;
  585. right:0;
  586. top:11px;
  587. font-size: 20px;
  588. pointer-events: none;
  589. }
  590. .apply-form-cont .selectize-dropdown
  591. {
  592. position: absolute;
  593. }
  594. .apply-form-cont .selectize-dropdown-content .option
  595. {
  596. background-color: #fff;
  597. -webkit-transition: background-color 0.35s;
  598. transition: background-color 0.35s;
  599. padding: 7px 5px;
  600. padding-left: 10px;
  601. }
  602. .apply-form-cont .selectize-dropdown-content .option:hover{
  603. background-color: #993c95;
  604. color: #fff;
  605. }
  606. .apply-field:not(.resume-file)
  607. {
  608. width:100%;
  609. height:50px;
  610. margin-bottom: 30px;
  611. padding-left: 10px;
  612. border:none;
  613. border-bottom:2px solid #993c95;
  614. }
  615. input[type="file"].apply-field
  616. {
  617. opacity: 0;
  618. /* visibility: hidden; */
  619. position: relative;
  620. z-index: 3;
  621. cursor: pointer;
  622. }
  623. .resume-cont
  624. {
  625. display: block;
  626. position: relative;
  627. z-index: 1;
  628. }
  629. .resume-cont label
  630. {
  631. display: inline-block;
  632. margin-bottom: .5rem;
  633. position: absolute;
  634. font-size: 1.3rem;
  635. /* right: 85px; */
  636. left:50px;
  637. top: 0px;
  638. cursor: pointer;
  639. z-index: 1;
  640. pointer-events: none;
  641. }
  642. .apply-option
  643. {
  644. padding: 10px 0px;
  645. }
  646. .apply-option:hover
  647. {
  648. background-color: #993c95;
  649. }
  650. .apply-field::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  651. opacity: 1; /* Firefox */
  652. }
  653. select.apply-field
  654. {
  655. cursor: pointer;
  656. }
  657. .apply-field:not(.resume-file){
  658. display: block;
  659. }
  660. textarea.apply-field
  661. {
  662. resize: none;
  663. padding-top: 13px;
  664. height: 170px!important;
  665. }
  666. .apply-submit
  667. {
  668. float:right;
  669. display: block;
  670. color: #fff;
  671. border: none;
  672. font-size: 14px;
  673. font-weight: bold;
  674. float: right;
  675. cursor: pointer;
  676. margin-top: 20px;
  677. background-color: #993c95;
  678. border-radius: 23px;
  679. padding: 15px 25px;
  680. transition: opacity 300ms;
  681. -webkit-transition: opacity 300ms;
  682. }
  683. .apply-submit:hover,.contact-form input#submit:hover
  684. {
  685. opacity: .8;
  686. }
  687. .apply-submit:disabled
  688. {
  689. background-color: #d1d1d1;
  690. }
  691. #temp-btn
  692. {
  693. padding:10px;
  694. background-color: red;
  695. }
  696. .collapse
  697. {
  698. transition: display 300ms;
  699. -webkit-transition: display 300ms;
  700. }
  701. .resume-file
  702. {
  703. display: block;
  704. }
  705. .delete-file
  706. {
  707. position: relative;
  708. }
  709. .btn-delete-file
  710. {
  711. position: relative;
  712. float: right;
  713. height: 30px;
  714. width: 30px;
  715. cursor: pointer;
  716. z-index: 1;
  717. border: none;
  718. background-color: transparent;
  719. }
  720. .btn-delete-file svg{
  721. font-size: 20px;
  722. }
  723. .btn-delete-file svg path
  724. {
  725. transition: fill 300ms;
  726. -webkit-transition: fill 300ms;
  727. }
  728. .btn-delete-file:hover svg path{
  729. fill: #993c95;
  730. }
  731. .apply-submit:focus,.btn-delete-file:focus{
  732. border:none;
  733. outline: none;
  734. }
  735. .apply-msg-cont
  736. {
  737. margin-top: 50px;
  738. text-align: center;
  739. }
  740. .apply-msg
  741. {
  742. visibility: hidden;
  743. opacity: 0;
  744. color: #28a745;
  745. transition: visibility 0s linear 300ms, opacity 300ms;
  746. -webkit-transition: visibility 0s linear 300ms, opacity 300ms;
  747. font-size: 20px;
  748. }
  749. .apply-msg.active
  750. {
  751. visibility: visible;
  752. opacity: 1;
  753. }
  754. /*apply page end*/
  755. .slides > * {
  756. opacity :1!important;
  757. }
  758. .mobile-nav-toggle:hover{
  759. color: #993c95;
  760. }
  761. #services
  762. {
  763. padding:155 0px;
  764. }
  765. .diligent-purple-background
  766. {
  767. background-color: #993c95 !important;
  768. }
  769. .diligent-purple-title
  770. {
  771. color: #993c95 !important;
  772. }
  773. .padding-bottom-50
  774. {
  775. padding-bottom:50px !important;
  776. }
  777. @media (max-width: 1024px)
  778. {
  779. #gallery .gallery-box
  780. {
  781. padding: 0px 80px;
  782. }
  783. }
  784. @media (max-width: 768px)
  785. {
  786. .first-sti, .second-sti
  787. {
  788. padding-bottom: 50px;
  789. }
  790. .apply-notification
  791. {
  792. transform: translate(-50%,-275%);
  793. }
  794. #gallery .gallery-box
  795. {
  796. padding: 0px 50px;
  797. }
  798. .careers-intro
  799. {
  800. flex-direction: column;
  801. }
  802. .section-title h1
  803. {
  804. font-size: 43px;
  805. }
  806. .chevron svg
  807. {
  808. height: 50px;
  809. width:50px;
  810. }
  811. .position-name h4
  812. {
  813. font-size: 20px;
  814. }
  815. }
  816. @media (max-width: 767px)
  817. {
  818. .gbi-description
  819. {
  820. display: block;
  821. }
  822. }
  823. @media (max-width: 480px)
  824. {
  825. #gallery .gallery-box
  826. {
  827. padding:0px;
  828. }
  829. .chevron
  830. {
  831. right:20px;
  832. }
  833. .position-name h4
  834. {
  835. position: relative;
  836. margin-right: 55px;
  837. font-size: 1.2rem;
  838. }
  839. #intro
  840. {
  841. height: 544px!important;
  842. }
  843. }