style.css 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376
  1. /* ########################################
  2. ########### davidwindham.com ##############
  3. ###########################################
  4. . . . . . .
  5. . . ...-..-| |-. .-. .-.-..-| .-.. ...-|
  6. ` ` '' '`-'-' '-`-`-' ' '`-'-`-`-` '`-'-
  7. 1 - Body
  8. 2 - Typography
  9. 3 - Header
  10. 4 - Navigation
  11. 5 - Layout
  12. 6 - Parts
  13. 7 - Footer
  14. 9 - Queries
  15. 10 - Fonts
  16. url - https://davidwindham.com
  17. git - https://github.com/windhamdavid/dw
  18. post - https://davidawindham.com/my-website
  19. /*########################################
  20. ################# BODY ###################
  21. #########################################*/
  22. body {
  23. position: relative;
  24. margin: 0;
  25. padding: 0;
  26. min-height: 100%;
  27. -webkit-font-smoothing: antialiased;
  28. font-kerning: auto;
  29. color:#535763;
  30. ;
  31. background: :#363e48;
  32. transition: background-color 0.4s ease;
  33. font-family: sans-serif;
  34. }
  35. /****** viewports - waypoints ******/
  36. .viewport {
  37. position: fixed;
  38. height: 100%;
  39. width: 100%;
  40. top: 0;
  41. left: 0;
  42. right: 0;
  43. bottom: 0;
  44. overflow: hidden;
  45. }
  46. .viewport-above {
  47. opacity: 0;
  48. }
  49. .viewport-inside {
  50. opacity: 1;
  51. }
  52. .viewport-below {
  53. opacity: 0;
  54. }
  55. .viewport-below > * {
  56. transform: translateY(100px);
  57. }
  58. .page-view {
  59. padding: 7rem 0;
  60. transition: opacity 0.4s ease;
  61. opacity: 0;
  62. position: relative;
  63. background: transparent !important;
  64. scroll-snap-align: start;
  65. min-height: 100vh;
  66. }
  67. .page-view > * {
  68. transition: all 0.4s ease;
  69. }
  70. .page-view:after {
  71. content: '';
  72. }
  73. .no-js .page-view {
  74. opacity: 1;
  75. }
  76. .background-color {
  77. position: relative;
  78. }
  79. .background-color.white {
  80. background-color: #e3e3e3;
  81. }
  82. .background-color.black {
  83. background-color: #484C57;
  84. z-index: 0;
  85. }
  86. .page-view {
  87. padding: 7rem 0;
  88. transition: opacity 0.4s ease;
  89. opacity: 0;
  90. position: relative;
  91. background: transparent !important;
  92. scroll-snap-align: start;
  93. min-height: 100vh;
  94. }
  95. .page-view > * {
  96. transition: all 0.4s ease;
  97. }
  98. .page-view:after {
  99. content: '';
  100. }
  101. .no-js .page-view {
  102. opacity: 1;
  103. }
  104. /*########################################
  105. ################# TYPE ###################
  106. #########################################*/
  107. h1 {
  108. font-family: 'Playfair Display', serif;
  109. font-weight: 900;
  110. font-size: 37px;
  111. letter-spacing: .01em;
  112. }
  113. .header h1 {
  114. color: #e3e3e3;
  115. }
  116. h2 {
  117. font-family: 'Playfair Display', serif;
  118. font-weight: 700;
  119. font-size: 27px;
  120. }
  121. h3 {
  122. font-family: 'Playfair Display', serif;
  123. font-weight: 500;
  124. font-size: 23px;
  125. }
  126. p {
  127. font-family: 'Montserrat', sans-serif;
  128. font-size: 17px;
  129. line-height: 1.2;
  130. }
  131. a {
  132. color: #67000a;
  133. text-decoration:none !important;
  134. }
  135. .right {
  136. text-align:right;
  137. }
  138. .lead {
  139. font-size: 1.4rem;
  140. }
  141. .numbering {
  142. display: inline-block;
  143. margin-right: .5rem;
  144. font-size: 12px;
  145. vertical-align: super;
  146. }
  147. [bg=dark-bg] {
  148. color: #9c9ea5;
  149. }
  150. [bg=dark-bg] h1,
  151. [bg=dark-bg] h2,
  152. [bg=dark-bg] h4,
  153. [bg=dark-bg] h5,
  154. [bg=dark-bg] h6,
  155. [bg=dark-bg] a {
  156. color: #e3e3e3 !important;
  157. }
  158. [bg=dark-bg] blockquote {
  159. color: #e3e3e3;
  160. }
  161. h5.modal-title {
  162. color: #535763 !important;
  163. }
  164. h6.modal {
  165. color: #535763 !important;
  166. }
  167. h1.who {
  168. font-weight: 800;
  169. margin: 0;
  170. }
  171. h2.who {
  172. margin: 0;
  173. color: #999 !important;
  174. font-size:20px;
  175. }
  176. h1.what {
  177. font-weight: 800;
  178. margin: 0;
  179. }
  180. h2.what {
  181. margin: 0;
  182. color: #e3e3e3 !important;
  183. font-size:32px;
  184. }
  185. h1.when {
  186. font-weight: 800;
  187. margin: 0;
  188. }
  189. h2.when{
  190. margin: 0;
  191. color: #e3e3e3 !important;
  192. font-size:28px;
  193. }
  194. h4.when{
  195. font-weight: 600;
  196. color: #535763 !important;
  197. font-size:22px;
  198. }
  199. h1.why {
  200. font-weight: 800;
  201. margin: 0 0 40px 0;
  202. }
  203. h2.why {
  204. margin: 0;
  205. font-size:28px;
  206. }
  207. .why blockquote {
  208. }
  209. h1.how {
  210. font-weight: 800;
  211. color: #535763 !important;
  212. margin: 0;
  213. }
  214. h2.how {
  215. margin: 0;
  216. color: #535763 !important;
  217. font-size:28px;
  218. }
  219. h4.how {
  220. color: #535763 !important;
  221. }
  222. h5.how {
  223. color: #535763 !important;
  224. }
  225. .services .service .numbering, .approach .service .numbering {
  226. height: 2rem;
  227. width: 2rem;
  228. line-height: 2rem;
  229. color: #777;
  230. border-radius: 3px;
  231. text-align: center;
  232. position: absolute;
  233. left: 0;
  234. top: 0;
  235. background: #999;
  236. background: #9993;
  237. font-size: 70%;
  238. }
  239. /*########################################
  240. ################# HEAD ###################
  241. #########################################*/
  242. #header {
  243. position: fixed;
  244. z-index: 98;
  245. margin: 0;
  246. padding: 0;
  247. left: 0;
  248. top: 0;
  249. right: 0;
  250. pointer-events: none;
  251. }
  252. #header .header-ui {
  253. margin: 0;
  254. padding: 0;
  255. display: -ms-flexbox;
  256. display: flex;
  257. -ms-flex-wrap: wrap;
  258. flex-wrap: wrap;
  259. -ms-align-items: center;
  260. align-items: center;
  261. justify-content: space-between;
  262. }
  263. #header .header-ui .brand--nav {
  264. margin: 0 auto 0 0;
  265. padding: 1rem;
  266. flex: 0 0 100%;
  267. width: 100%;
  268. max-width: 100%;
  269. display: -ms-flexbox;
  270. display: flex;
  271. -ms-flex-wrap: wrap;
  272. flex-wrap: wrap;
  273. -ms-align-items: center;
  274. align-items: center;
  275. justify-content: space-between;
  276. pointer-events: auto;
  277. will-change: width, padding, flex;
  278. }
  279. #header .header-ui .brand--nav h1 {
  280. font-size: 27px;
  281. margin-left: 30px;
  282. }
  283. @media (min-width: 576px) {
  284. #header .header-ui .brand--nav {
  285. flex: 0 0 50%;
  286. width: 50%;
  287. max-width: 50%;
  288. }
  289. #header .header-ui .brand--nav .brand {
  290. margin-right: 20px;
  291. }
  292. }
  293. @media (min-width: 768px) {
  294. #header {
  295. -webkit-transition: opacity .35s ease-in-out 0s;
  296. transition: opacity .35s ease-in-out 0s;
  297. }
  298. #header .header-ui .brand--nav,
  299. #header .header-ui .header--complementary {
  300. padding: 2rem;
  301. -webkit-transition: width .35s ease-in-out 0s, padding .35s ease-in-out 0s, flex .35s ease-in-out 0s, background .35s ease-in-out 0s;
  302. transition: width .35s ease-in-out 0s, padding .35s ease-in-out 0s, flex .35s ease-in-out 0s, background .35s ease-in-out 0s;
  303. }
  304. #header.shrink .header-ui .brand--nav,
  305. #header.shrink .header-ui .header--complementary {
  306. padding: 1rem;
  307. flex: 0 0 auto;
  308. }
  309. #header.on_menu .brand--nav {
  310. padding-right: 0;
  311. }
  312. #header.on_menu .brand--nav .hamburger {
  313. -webkit-transform: translateX(27px);
  314. transform: translateX(27px);
  315. }
  316. }
  317. @media (min-width: 992px) {
  318. #header .header-ui .brand--nav,
  319. #header.shrink .header-ui .brand--nav,
  320. #header.shrink .header-ui .header--complementary {
  321. padding: 1rem;
  322. flex: 0 0 auto;
  323. }
  324. #header.on_menu .brand--nav {
  325. padding-right: 0;
  326. }
  327. #header.on_menu .brand--nav .hamburger {
  328. -webkit-transform: translateX(27px);
  329. transform: translateX(27px);
  330. }
  331. }
  332. .dw-header {
  333. position: fixed;
  334. }
  335. .dw-header,
  336. .works-header {
  337. background: #121212;
  338. }
  339. .dw-header h2,
  340. .works-header h2 {
  341. letter-spacing: 0.01rem;
  342. font-weight: normal;
  343. text-align: left;
  344. margin: 0;
  345. }
  346. @media (min-width: 992px) {
  347. .dw-header h2,
  348. .works-header h2 {
  349. font-size: 2.4rem;
  350. }
  351. }
  352. .dw-header {
  353. min-height: 400px;
  354. }
  355. .dw-header h2 {
  356. max-width: 900px;
  357. }
  358. .dw-header .main {
  359. position: relative;
  360. z-index: 2;
  361. }
  362. #header {
  363. position: absolute;
  364. }
  365. #header .header-ui .brand--nav,
  366. #header .header-ui .header--complementary {
  367. padding: 1rem;
  368. background: transparent !important;
  369. }
  370. #header .header-ui .button.button-to-quote,
  371. #header .header-ui a {
  372. margin-left: 40px;
  373. }
  374. #header .header-ui a,
  375. #header .header-ui .button {
  376. position: relative;
  377. color: hsla(0, 0%, 100%, 0.5);
  378. border-color: hsla(0, 0%, 100%, 0.5);
  379. font-family: 'Inter', sans-serif;
  380. }
  381. #header .header-ui .brand img {
  382. width: 200px;
  383. }
  384. .header-small {
  385. width: 100%;
  386. position: fixed;
  387. display: flex;
  388. padding: 0.5rem 1rem 1rem 1rem;
  389. z-index: 999;
  390. opacity: 0;
  391. top: -200px;
  392. left: 0;
  393. transition: opacity 0.4s ease, background-color 0.4s ease;
  394. }
  395. .header-small .header-small-menu {
  396. background-color: #39393a;
  397. position: absolute;
  398. box-shadow: 0 27px 53px 0 rgba(57, 57, 58, 0.24);
  399. z-index: 1;
  400. opacity: 0;
  401. visibility: hidden;
  402. padding: 20px 20px 40px 20px;
  403. top: 0;
  404. right: 0;
  405. }
  406. .header-small .header-small-menu h6 {
  407. font-weight: bold;
  408. color: #e3e3e3;
  409. margin: 40px 0 0 0;
  410. }
  411. .header-small .header-small-menu a,
  412. .header-small .header-small-menu h6 {
  413. padding: 6px 29px 8px 12px;
  414. }
  415. .header-small .header-small-menu a {
  416. font-size: 26px;
  417. line-height: 44px;
  418. letter-spacing: -0.43px;
  419. display: block;
  420. color: #e3e3e3;
  421. }
  422. .header-small .header-small-menu a:hover {
  423. opacity: 0.5;
  424. }
  425. .header-small .header-small-menu a.email {
  426. font-size: 1rem;
  427. line-height: 1.2;
  428. }
  429. .header-small.menu-open .header-small-menu {
  430. display: block;
  431. opacity: 1;
  432. visibility: visible;
  433. }
  434. .header-small.showing {
  435. opacity: 1;
  436. top: 0;
  437. }
  438. .header-small a {
  439. color: currentColor;
  440. }
  441. .header-small img {
  442. margin-left: 0px;
  443. width: 22px;
  444. transition: background-color 0.4s ease;
  445. }
  446. .header-small .light {
  447. display: none;
  448. border: 1px solid #e3e3e3;
  449. }
  450. .header-small .dark {
  451. display: inline-block;
  452. border: 1px solid #535763;
  453. }
  454. [bg=dark-bg] .header-small .light {
  455. display: inline-block;
  456. }
  457. [bg=dark-bg] .header-small .dark {
  458. display: none;
  459. }
  460. [bg=dark-bg] .hamburger-inner,
  461. [bg=dark-bg] .hamburger-inner:before,
  462. [bg=dark-bg] .hamburger-inner:after {
  463. background-color: #e3e3e3 !important;
  464. }
  465. /*########################################
  466. ################# NAVI ###################
  467. #########################################*/
  468. .hamburger {
  469. font: inherit;
  470. display: inline-block;
  471. overflow: visible;
  472. margin: 0;
  473. padding: 0;
  474. cursor: pointer;
  475. transition-timing-function: linear;
  476. transition-duration: 0.15s;
  477. transition-property: opacity, filter;
  478. text-transform: none;
  479. color: inherit;
  480. border: 0;
  481. background-color: transparent;
  482. align-self: flex-end;
  483. margin-left: auto;
  484. z-index: 6;
  485. }
  486. .hamburger:focus, .hamburger:active {
  487. outline-width: 0;
  488. }
  489. .hamburger.is-active {
  490. outline-width: 0;
  491. }
  492. .hamburger-box {
  493. width: 24px;
  494. height: 15px;
  495. display: inline-block;
  496. position: relative;
  497. }
  498. .hamburger-inner {
  499. display: block;
  500. top: 50%;
  501. margin-top: -0.5px;
  502. }
  503. .hamburger-inner,
  504. .hamburger-inner::before,
  505. .hamburger-inner::after {
  506. width: 24px;
  507. height: 2px;
  508. border-radius: 2px;
  509. position: absolute;
  510. transition-property: transform;
  511. transition-duration: 0.15s;
  512. transition-timing-function: ease;
  513. background-color: #535763;
  514. }
  515. .hamburger-inner::before, .hamburger-inner::after {
  516. content: "";
  517. display: block;
  518. }
  519. .hamburger-inner::before {
  520. top: -7px;
  521. }
  522. .hamburger-inner::after {
  523. bottom: -7px;
  524. }
  525. .hamburger-inner:before {
  526. top: 5px;
  527. }
  528. .hamburger-inner:after {
  529. top: 10px;
  530. }
  531. .hamburger:hover {
  532. opacity: 0.7;
  533. }
  534. .hamburger:focus, .hamburger:active {
  535. outline-width: 0;
  536. }
  537. .hamburger.is-active {
  538. outline-width: 0;
  539. }
  540. .hamburger.is-active:hover {
  541. opacity: 0.7;
  542. }
  543. .hamburger.is-active .hamburger-inner,
  544. .hamburger.is-active .hamburger-inner::before,
  545. .hamburger.is-active .hamburger-inner::after {
  546. background-color: #535763;
  547. }
  548. .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  549. background-color: #535763;
  550. }
  551. .hamburger.is-active .hamburger-inner {
  552. transform: translate3d(0, 10px, 0) rotate(45deg);
  553. background-color: #e3e3e3;
  554. }
  555. .hamburger.is-active .hamburger-inner:before {
  556. transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  557. opacity: 0;
  558. }
  559. .hamburger.is-active .hamburger-inner:after {
  560. transform: translate3d(0, -10px, 0) rotate(-90deg);
  561. background-color: #e3e3e3;
  562. }
  563. .hamburger-box {
  564. position: relative;
  565. display: inline-block;
  566. width: 20px;
  567. height: 20px;
  568. }
  569. .hamburger-inner {
  570. top: 50%;
  571. display: block;
  572. margin-top: -2px;
  573. }
  574. /*########################################
  575. ################# LAYO ###################
  576. #########################################*/
  577. .lead {
  578. font-weight: 400;
  579. line-height: 1.6;
  580. }
  581. .hero,
  582. .page-header,
  583. .portfolio-header {
  584. background: #191A1B;
  585. position: relative;
  586. }
  587. .hero .container,
  588. .page-header .container,
  589. .portfolio-header .container {
  590. position: relative;
  591. }
  592. .hero h1,
  593. .page-header h1,
  594. .portfolio-header h1 {
  595. font-family: 'Inter', 'Source Sans Pro', sans-serif;
  596. line-height: 1.2;
  597. max-width: 900px;
  598. font-weight: 800;
  599. }
  600. .hero {
  601. height: 100vh;
  602. min-height: 620px;
  603. }
  604. .capabilities {
  605. padding: 6rem 0;
  606. }
  607. .capabilities .capabilities-types {
  608. padding-top: 3rem;
  609. }
  610. .capabilities ul {
  611. list-style: none;
  612. margin: 0 0 3rem 0 !important;
  613. }
  614. .capabilities li {
  615. margin: 0 !important;
  616. }
  617. .capabilities h5,
  618. .capabilities h6 {
  619. margin-bottom: 0.5rem;
  620. }
  621. .services,
  622. .approach {
  623. padding-bottom: 10rem;
  624. }
  625. .services .row,
  626. .approach .row {
  627. display: flex;
  628. }
  629. .services .numbering,
  630. .approach .numbering {
  631. color: #9c9ea5;
  632. }
  633. .services .service,
  634. .approach .service {
  635. padding-left: 4rem;
  636. padding-bottom: 1rem;
  637. border-radius: 4px;
  638. position: relative;
  639. transition: all 0.2s ease;
  640. cursor: pointer;
  641. }
  642. .services .service:hover,
  643. .approach .service:hover {
  644. transform: scale(1.1) translateX(1.6rem);
  645. }
  646. .services .service:hover .numbering,
  647. .approach .service:hover .numbering {
  648. background: #eee;
  649. color: #535763;
  650. }
  651. .services .service p,
  652. .approach .service p {
  653. color: #8a8a8a;
  654. }
  655. .services .service .numbering,
  656. .approach .service .numbering {
  657. height: 2rem;
  658. width: 2rem;
  659. line-height: 2rem;
  660. border-radius: 3px;
  661. text-align: center;
  662. position: absolute;
  663. left: 0;
  664. top: 0;
  665. background: #eee;
  666. background: rgba(255, 255, 255, 0.2);
  667. font-size: 70%;
  668. }
  669. .services .service p,
  670. .approach .service p {
  671. margin-top: 0 !important;
  672. margin-bottom: 2rem;
  673. }
  674. .services .service h4,
  675. .approach .service h4 {
  676. margin: 0;
  677. font-weight: 400;
  678. }
  679. .services .service i,
  680. .approach .service i {
  681. display: block;
  682. position: relative;
  683. margin: 20px 0;
  684. width: 22px;
  685. height: 22px;
  686. border-radius: 50%;
  687. border: 2px solid white;
  688. transition: all 0.2s ease;
  689. display: none;
  690. }
  691. .services .service:nth-child(1) i,
  692. .approach .service:nth-child(1) i {
  693. border-color: #50E3C2;
  694. color: #50E3C2;
  695. }
  696. .services .service:nth-child(2) i,
  697. .approach .service:nth-child(2) i {
  698. border-color: #8755FF;
  699. color: #8755FF;
  700. }
  701. .services .service:nth-child(3) i,
  702. .approach .service:nth-child(3) i {
  703. border-color: #01D5FF;
  704. color: #01D5FF;
  705. }
  706. .services .service:nth-child(4) i,
  707. .approach .service:nth-child(4) i {
  708. border-color: #BD10E0;
  709. color: #BD10E0;
  710. }
  711. .numbering {
  712. margin-bottom: 1rem;
  713. margin-right: 1rem;
  714. font-size: 1rem;
  715. }
  716. .numbering {
  717. display: inline-block;
  718. margin-right: .5rem;
  719. font-size: 12px;
  720. vertical-align: super;
  721. }
  722. ul.pricing {
  723. margin-left:0px;
  724. padding: 0 0 0 25px;
  725. }
  726. .vendor-image {
  727. filter: grayscale(1);
  728. width:100%;
  729. }
  730. .vendor-image:hover {
  731. filter: grayscale(0);
  732. transition: 0.5s ease-in-out;
  733. }
  734. blockquote {
  735. padding: 0;
  736. position: relative;
  737. }
  738. .br-testimonial figcaption {
  739. padding-left: 70px;
  740. font-size: 13px;
  741. letter-spacing: .025em;
  742. }
  743. .br-testimonial figcaption cite {
  744. display: block;
  745. font-style: normal;
  746. font-weight: bold;
  747. }
  748. .br-testimonial blockquote {
  749. margin: 0 0 20px 0;
  750. }
  751. .br-testimonial figcaption {
  752. padding: 0;
  753. font-size: 1rem;
  754. }
  755. .has-highlight {
  756. position: relative;
  757. }
  758. .has-highlight:after {
  759. content: '';
  760. position: absolute;
  761. bottom: 0px;
  762. height: 20px;
  763. width: 102%;
  764. background: #d6f0ff;
  765. left: -3px;
  766. z-index: -1;
  767. }
  768. .testimonials-section {
  769. color: #9c9ea5;
  770. }
  771. .testimonials-section h1,
  772. .testimonials-section h2,
  773. .testimonials-section h4,
  774. .testimonials-section h5,
  775. .testimonials-section h6,
  776. .testimonials-section a {
  777. color: #e3e3e3 !important;
  778. }
  779. .testimonials-section blockquote {
  780. color: #e3e3e3;
  781. font-size:1.5em;
  782. }
  783. .testimonials-section .br-testimonial {
  784. opacity: 0;
  785. visibility: hidden;
  786. position: relative;
  787. transition: opacity 0.4s ease;
  788. position: fixed;
  789. left: -5000px;
  790. }
  791. .testimonials-section .br-testimonial.showing {
  792. opacity: 1;
  793. visibility: visible;
  794. top: 0;
  795. position: relative;
  796. left: 0;
  797. }
  798. .testimonials-section .next-wrapper {
  799. text-align: right;
  800. padding-top: 2rem;
  801. padding-right: 2rem;
  802. }
  803. .testimonials-section .next-testimonial {
  804. display: inline-block;
  805. cursor: pointer;
  806. }
  807. .testimonials-section .next-testimonial:hover svg {
  808. opacity: 1;
  809. }
  810. .testimonials-section .next-testimonial:hover span {
  811. opacity: 1;
  812. }
  813. .testimonials-section .next-testimonial svg {
  814. max-width: 40px;
  815. max-height: 40px;
  816. opacity: 0.5;
  817. transition: opacity 0.2s ease;
  818. }
  819. .testimonials-section .next-testimonial span {
  820. display: block;
  821. font-size: 56%;
  822. padding-top: 17px;
  823. width: 53px;
  824. text-align: center;
  825. opacity: 0;
  826. transition: opacity 0.2s ease;
  827. }
  828. .testimonials-section .next-testimonial path {
  829. fill: #e3e3e3;
  830. }
  831. .testimonials-section .indicators {
  832. text-align: right;
  833. }
  834. .testimonials-section .indicators span {
  835. height: 14px;
  836. width: 14px;
  837. border-radius: 50%;
  838. background: rgba(255, 255, 255, 0.2);
  839. margin: 5px;
  840. display: inline-block;
  841. cursor: pointer;
  842. }
  843. .testimonials-section .indicators span:hover,
  844. .testimonials-section .indicators span.current {
  845. background: rgba(255, 255, 255, 0.7);
  846. }
  847. @media (max-width: 768px) {
  848. .testimonials-section .next-testimonial {
  849. display: none;
  850. }
  851. .testimonials-section .indicators {
  852. text-align: center;
  853. }
  854. }
  855. /*########################################
  856. ############## Calendar ##################
  857. #########################################*/
  858. .fc-button-primary {
  859. }
  860. .fc-button-primary:disabled {
  861. color: #777;
  862. background-color: #e3e3e3;
  863. border-color: #777;
  864. }
  865. .fc-button-primary:not(:disabled):active,
  866. .fc-button-primary:not(:disabled).fc-button-active {
  867. color: #e3e3e3;
  868. background-color: #737373;
  869. border-color: #151e27;
  870. }
  871. .fc-toolbar h2 {
  872. font-size: 1.0em;
  873. margin: 0;
  874. text-align:right;
  875. }
  876. .fc-event {
  877. position: relative;
  878. display: block;
  879. font-size: 0.85em;
  880. line-height: 1.4;
  881. border-radius: 3px;
  882. }
  883. .fc-event, .fc-event-dot {
  884. }
  885. .fc-theme-standard td,
  886. .fc-theme-standard th {
  887. border: 1px solid #c2c2c2;
  888. }
  889. .fc-col-header-cell {
  890. background-color:rgba(0, 0, 0, 0.1);
  891. }
  892. .fc-button-primary {
  893. color: rgba(83, 87, 99, 1);
  894. background-color: #e3e3e3;
  895. border-color: #535763;
  896. }
  897. .fc-button-primary:disabled {
  898. color: #535763;
  899. background-color: #e3e3e3;
  900. border-color: #535763;
  901. }
  902. .fc .fc-button-primary:not(:disabled) {
  903. color: #535763;
  904. background-color: rgba(0, 0, 0, 0.1);
  905. border-color: rgba(0, 0, 0, 0.1);
  906. }
  907. .fc .fc-button-primary:not(:disabled):active,
  908. .fc .fc-button-primary:not(:disabled).fc-button-active {
  909. color: #e3e3e3;
  910. background-color: rgba(83, 87, 99, .5);
  911. border-color: rgba(83, 87, 99, .5);
  912. }
  913. .fc-toolbar h2 {
  914. font-size: 1.0em;
  915. margin: 0;
  916. text-align:right;
  917. }
  918. .fc-event {
  919. position: relative;
  920. display: block;
  921. font-size: 0.85em;
  922. font-weight: lighter;
  923. line-height: 1.4;
  924. color: #535763a5 !important;
  925. border-radius: 3px;
  926. border: 1px solid rgba(83, 87, 99, .25);
  927. }
  928. .fc-event, .fc-event-dot {
  929. background-color: rgba(0, 0, 0, 0.1);
  930. color: #535763;
  931. }
  932. .fc-unthemed td.fc-today {
  933. background: #77777732;
  934. }
  935. /*########################################
  936. ################# FOOT ###################
  937. #########################################*/
  938. .dw-footer h1 {
  939. font-weight: 800;
  940. margin: 0;
  941. }
  942. .dw-footer h4,
  943. .dw-footer h5 {
  944. font-weight: 900;
  945. line-height: 1.2;
  946. font-family: 'Playfair Display', serif;
  947. }
  948. .dw-footer .lead {
  949. margin-top: 0 !important;
  950. margin-bottom: 4rem;
  951. }
  952. #dw-footer {
  953. background-color: #484C57;
  954. color: #dadada;
  955. }
  956. #dw-footer a:hover {
  957. color: #111;
  958. fill: #111;
  959. }
  960. #dw-footer a:before {
  961. transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  962. }
  963. #dw-footer .br-widget img {
  964. width: 150px;
  965. }
  966. #dw-footer {
  967. margin: 0;
  968. padding: 4rem 0 4rem;
  969. }
  970. #dw-footer .br-widget {
  971. margin: 4rem 0 0;
  972. padding: 0 0 0;
  973. }
  974. #dw-footer .br-widget:first-child {
  975. margin-top: 0;
  976. }
  977. #dw-footer .br-widget ul.footer-links {
  978. list-style-type: none;
  979. margin: 0;
  980. padding: 0;
  981. }
  982. #dw-footer .br-widget ul.footer-links li {
  983. list-style-type: none;
  984. text-align: right;
  985. margin: 0 0 .35rem;
  986. padding: 0 0 .35rem;
  987. }
  988. #dw-footer .br-widget ul.footer-social li {
  989. font-size: 28px;
  990. }
  991. #dw-footer .br-widget ul.footer-links li:last-child {
  992. margin-bottom: 0;
  993. }
  994. #dw-footer a {
  995. position: relative;
  996. }
  997. #dw-footer a:before {
  998. content: '';
  999. position: absolute;
  1000. bottom: 0;
  1001. right: 0;
  1002. height: 1px;
  1003. width: 0;
  1004. background: currentColor;
  1005. -webkit-transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1006. transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1007. }
  1008. #dw-footer a:hover:before {
  1009. left: 0;
  1010. right: initial;
  1011. width: 100%;
  1012. }
  1013. #dw-footer a {
  1014. color: #dadada;
  1015. fill: #dadada;
  1016. }
  1017. #dw-footer a:hover {
  1018. color: #e3e3e3fff;
  1019. fill: #e3e3e3fff;
  1020. }
  1021. #dw-footer {
  1022. margin: 0;
  1023. padding: 4rem 0 4rem;
  1024. }
  1025. #dw-footer .br-widget {
  1026. margin: 4rem 0 0;
  1027. padding: 0 0 0;
  1028. }
  1029. #dw-footer .br-widget:first-child {
  1030. margin-top: 0;
  1031. }
  1032. #dw-footer .br-widget ul.footer-links {
  1033. list-style-type: none;
  1034. margin: 0;
  1035. padding: 0;
  1036. }
  1037. #dw-footer .br-widget ul.footer-links li {
  1038. list-style-type: none;
  1039. margin: 0 0 .35rem;
  1040. padding: 0 0 .35rem;
  1041. }
  1042. #dw-footer .br-widget ul.footer-links li:last-child {
  1043. margin-bottom: 0;
  1044. }
  1045. #dw-footer a {
  1046. position: relative;
  1047. }
  1048. #dw-footer a:before {
  1049. content: '';
  1050. position: absolute;
  1051. bottom: 0;
  1052. right: 0;
  1053. height: 1px;
  1054. width: 0;
  1055. background: currentColor;
  1056. -webkit-transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1057. transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  1058. }
  1059. #dw-footer a:hover:before {
  1060. left: 0;
  1061. right: initial;
  1062. width: 100%;
  1063. }
  1064. #dw-footer .footer-end {
  1065. margin: 4rem 0 0;
  1066. padding: 0;
  1067. font-size: 13px;
  1068. letter-spacing: .05em;
  1069. opacity: .75;
  1070. }
  1071. #dw-footer .footer-end .footer-social {
  1072. font-size: 21px;
  1073. }
  1074. #dw-footer .footer-end .footer-social .list-inline-item:not(:last-child) {
  1075. margin-right:0.1rem
  1076. }
  1077. @media (min-width: 768px) {
  1078. #dw-footer {
  1079. padding: 5rem 0 5rem;
  1080. }
  1081. }
  1082. @media (min-width: 992px) {
  1083. #dw-footer {
  1084. padding: 6rem 0 6rem;
  1085. }
  1086. }
  1087. /*########################################
  1088. ################# QUER ###################
  1089. #########################################*/
  1090. @media (max-width: 639px) {
  1091. h1 {
  1092. font-size: 27px;
  1093. }
  1094. .container {
  1095. padding:10px 5px;
  1096. }
  1097. .main {
  1098. padding: 5px 15px;
  1099. }
  1100. }
  1101. @media (max-width: 767px) {}
  1102. @media (max-width: 1023px) {}
  1103. @media (max-width: 1279px) {}
  1104. /*########################################
  1105. ################# FONT ###################
  1106. #########################################*/
  1107. @font-face {
  1108. font-family: 'Inter';
  1109. font-style: normal;
  1110. font-weight: 400;
  1111. src: url("/fonts/Inter-Regular.woff2") format("woff2"),
  1112. url("/fonts/Inter-Regular.woff") format("woff");
  1113. font-display: swap;
  1114. }
  1115. @font-face {
  1116. font-family: 'Inter';
  1117. font-style: italic;
  1118. font-weight: 400;
  1119. src: url("/fonts/Inter-Italic.woff2") format("woff2"),
  1120. url("/fonts/Inter-Italic.woff") format("woff");
  1121. font-display: swap;
  1122. }
  1123. @font-face {
  1124. font-family: 'Inter';
  1125. font-style: normal;
  1126. font-weight: 500;
  1127. src: url("/fonts/Inter-Medium.woff2") format("woff2"),
  1128. url("/fonts/Inter-Medium.woff") format("woff");
  1129. font-display: swap;
  1130. }
  1131. @font-face {
  1132. font-family: 'Inter';
  1133. font-style: italic;
  1134. font-weight: 500;
  1135. src: url("/fonts/Inter-MediumItalic.woff2") format("woff2"),
  1136. url("/fonts/Inter-MediumItalic.woff") format("woff");
  1137. font-display: swap;
  1138. }
  1139. @font-face {
  1140. font-family: 'Inter';
  1141. font-style: normal;
  1142. font-weight: 600;
  1143. src: url("/fonts/Inter-SemiBold.woff2") format("woff2"),
  1144. url("/fonts/Inter-SemiBold.woff") format("woff");
  1145. font-display: swap;
  1146. }
  1147. @font-face {
  1148. font-family: 'Inter';
  1149. font-style: italic;
  1150. font-weight: 600;
  1151. src: url("/fonts/Inter-SemiBoldItalic.woff2") format("woff2"),
  1152. url("/fonts/Inter-SemiBoldItalic.woff") format("woff");
  1153. font-display: swap;
  1154. }
  1155. @font-face {
  1156. font-family: 'Inter';
  1157. font-style: normal;
  1158. font-weight: 700;
  1159. src: url("/fonts/Inter-Bold.woff2") format("woff2"),
  1160. url("/fonts/Inter-Bold.woff") format("woff");
  1161. font-display: swap;
  1162. }
  1163. @font-face {
  1164. font-family: 'Inter';
  1165. font-style: italic;
  1166. font-weight: 700;
  1167. src: url("/fonts/Inter-BoldItalic.woff2") format("woff2"),
  1168. url("/fonts/Inter-BoldItalic.woff") format("woff");
  1169. font-display: swap;
  1170. }
  1171. @font-face {
  1172. font-family: 'Inter';
  1173. font-style: normal;
  1174. font-weight: 800;
  1175. src: url("/fonts/Inter-ExtraBold.woff2") format("woff2"),
  1176. url("/fonts/Inter-ExtraBold.woff") format("woff");
  1177. font-display: swap;
  1178. }
  1179. @font-face {
  1180. font-family: 'Inter';
  1181. font-style: italic;
  1182. font-weight: 800;
  1183. src: url("/fonts/Inter-ExtraBoldItalic.woff2") format("woff2"),
  1184. url("/fonts/Inter-ExtraBoldItalic.woff") format("woff");
  1185. font-display: swap;
  1186. }
  1187. @font-face {
  1188. font-family: 'Inter';
  1189. font-style: normal;
  1190. font-weight: 900;
  1191. src: url("/fonts/Inter-Black.woff2") format("woff2"),
  1192. url("/fonts/Inter-Black.woff") format("woff");
  1193. font-display: swap;
  1194. }
  1195. @font-face {
  1196. font-family: 'Inter';
  1197. font-style: italic;
  1198. font-weight: 900;
  1199. src: url("/fonts/Inter-BlackItalic.woff2") format("woff2"),
  1200. url("/fonts/Inter-BlackItalic.woff") format("woff");
  1201. font-display: swap;
  1202. }
  1203. @font-face {
  1204. font-family: 'Montserrat';
  1205. font-style: italic;
  1206. font-weight: 400;
  1207. src: url('/fonts/montserrat-v14-latin-italic.eot'); /* IE9 Compat Modes */
  1208. src: local('Montserrat Italic'), local('Montserrat-Italic'),
  1209. url('/fonts/montserrat-v14-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1210. url('/fonts/montserrat-v14-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
  1211. url('/fonts/montserrat-v14-latin-italic.woff') format('woff'), /* Modern Browsers */
  1212. url('/fonts/montserrat-v14-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1213. url('/fonts/montserrat-v14-latin-italic.svg#Montserrat') format('svg'); /* Legacy iOS */
  1214. font-display: swap;
  1215. }
  1216. @font-face {
  1217. font-family: 'Montserrat';
  1218. font-style: normal;
  1219. font-weight: 400;
  1220. src: url('/fonts/montserrat-v14-latin-regular.eot'); /* IE9 Compat Modes */
  1221. src: local('Montserrat Regular'), local('Montserrat-Regular'),
  1222. url('/fonts/montserrat-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1223. url('/fonts/montserrat-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  1224. url('/fonts/montserrat-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
  1225. url('/fonts/montserrat-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  1226. url('/fonts/montserrat-v14-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
  1227. font-display: swap;
  1228. }
  1229. @font-face {
  1230. font-family: 'Montserrat';
  1231. font-style: normal;
  1232. font-weight: 500;
  1233. src: url('/fonts/montserrat-v14-latin-500.eot'); /* IE9 Compat Modes */
  1234. src: local('Montserrat Medium'), local('Montserrat-Medium'),
  1235. url('/fonts/montserrat-v14-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1236. url('/fonts/montserrat-v14-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
  1237. url('/fonts/montserrat-v14-latin-500.woff') format('woff'), /* Modern Browsers */
  1238. url('/fonts/montserrat-v14-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
  1239. url('/fonts/montserrat-v14-latin-500.svg#Montserrat') format('svg'); /* Legacy iOS */
  1240. font-display: swap;
  1241. }
  1242. @font-face {
  1243. font-family: 'Montserrat';
  1244. font-style: italic;
  1245. font-weight: 500;
  1246. src: url('/fonts/montserrat-v14-latin-500italic.eot'); /* IE9 Compat Modes */
  1247. src: local('Montserrat Medium Italic'), local('Montserrat-MediumItalic'),
  1248. url('/fonts/montserrat-v14-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1249. url('/fonts/montserrat-v14-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
  1250. url('/fonts/montserrat-v14-latin-500italic.woff') format('woff'), /* Modern Browsers */
  1251. url('/fonts/montserrat-v14-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1252. url('/fonts/montserrat-v14-latin-500italic.svg#Montserrat') format('svg'); /* Legacy iOS */
  1253. font-display: swap;
  1254. }
  1255. @font-face {
  1256. font-family: 'Montserrat';
  1257. font-style: normal;
  1258. font-weight: 900;
  1259. src: url('/fonts/montserrat-v14-latin-900.eot'); /* IE9 Compat Modes */
  1260. src: local('Montserrat Black'), local('Montserrat-Black'),
  1261. url('/fonts/montserrat-v14-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1262. url('/fonts/montserrat-v14-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
  1263. url('/fonts/montserrat-v14-latin-900.woff') format('woff'), /* Modern Browsers */
  1264. url('/fonts/montserrat-v14-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
  1265. url('/fonts/montserrat-v14-latin-900.svg#Montserrat') format('svg'); /* Legacy iOS */
  1266. font-display: swap;
  1267. }
  1268. @font-face {
  1269. font-family: 'Playfair Display';
  1270. font-style: normal;
  1271. font-weight: 400;
  1272. src: url('/fonts/playfair-display-v20-latin-regular.eot'); /* IE9 Compat Modes */
  1273. src: local(''),
  1274. url('/fonts/playfair-display-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1275. url('/fonts/playfair-display-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  1276. url('/fonts/playfair-display-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
  1277. url('/fonts/playfair-display-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  1278. url('/fonts/playfair-display-v20-latin-regular.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1279. font-display: swap;
  1280. }
  1281. @font-face {
  1282. font-family: 'Playfair Display';
  1283. font-style: normal;
  1284. font-weight: 700;
  1285. src: url('/fonts/playfair-display-v20-latin-700.eot'); /* IE9 Compat Modes */
  1286. src: local(''),
  1287. url('/fonts/playfair-display-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1288. url('/fonts/playfair-display-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
  1289. url('/fonts/playfair-display-v20-latin-700.woff') format('woff'), /* Modern Browsers */
  1290. url('/fonts/playfair-display-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
  1291. url('/fonts/playfair-display-v20-latin-700.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1292. font-display: swap;
  1293. }
  1294. @font-face {
  1295. font-family: 'Playfair Display';
  1296. font-style: normal;
  1297. font-weight: 900;
  1298. src: url('/fonts/playfair-display-v20-latin-900.eot'); /* IE9 Compat Modes */
  1299. src: local(''),
  1300. url('/fonts/playfair-display-v20-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1301. url('/fonts/playfair-display-v20-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
  1302. url('/fonts/playfair-display-v20-latin-900.woff') format('woff'), /* Modern Browsers */
  1303. url('/fonts/playfair-display-v20-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
  1304. url('/fonts/playfair-display-v20-latin-900.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1305. font-display: swap;
  1306. }
  1307. @font-face {
  1308. font-family: 'Playfair Display';
  1309. font-style: italic;
  1310. font-weight: 400;
  1311. src: url('/fonts/playfair-display-v20-latin-italic.eot'); /* IE9 Compat Modes */
  1312. src: local(''),
  1313. url('/fonts/playfair-display-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1314. url('/fonts/playfair-display-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
  1315. url('/fonts/playfair-display-v20-latin-italic.woff') format('woff'), /* Modern Browsers */
  1316. url('/fonts/playfair-display-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1317. url('/fonts/playfair-display-v20-latin-italic.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1318. font-display: swap;
  1319. }
  1320. @font-face {
  1321. font-family: 'Playfair Display';
  1322. font-style: italic;
  1323. font-weight: 700;
  1324. src: url('/fonts/playfair-display-v20-latin-700italic.eot'); /* IE9 Compat Modes */
  1325. src: local(''),
  1326. url('/fonts/playfair-display-v20-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  1327. url('/fonts/playfair-display-v20-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
  1328. url('/fonts/playfair-display-v20-latin-700italic.woff') format('woff'), /* Modern Browsers */
  1329. url('/fonts/playfair-display-v20-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
  1330. url('/fonts/playfair-display-v20-latin-700italic.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
  1331. font-display: swap;
  1332. }