Diligent web site
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

custom.css 15KB

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