style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. html {
  2. font-family: Montserrat', sans-serif;
  3. }
  4. body {
  5. height: 200vh;
  6. position: relative;
  7. }
  8. body:before {
  9. content: "";
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. background: rgba(0, 0, 0, 0.5);
  16. -webkit-transition: .3s all ease;
  17. -o-transition: .3s all ease;
  18. transition: .3s all ease;
  19. opacity: 0;
  20. visibility: hidden;
  21. z-index: 1;
  22. }
  23. body.offcanvas-menu:before {
  24. opacity: 1;
  25. z-index: 1002;
  26. visibility: visible;
  27. }
  28. a {
  29. -webkit-transition: .3s all ease;
  30. -o-transition: .3s all ease;
  31. transition: .3s all ease;
  32. }
  33. a, a:hover {
  34. text-decoration: none !important;
  35. }
  36. .hero {
  37. height: 100vh;
  38. width: 100%;
  39. background-size: cover;
  40. background-position: center center;
  41. background-repeat: no-repeat;
  42. }
  43. .site-navbar-wrap {
  44. position: absolute;
  45. z-index: 99;
  46. width: 100%;
  47. left: 0;
  48. }
  49. .site-navbar-wrap a {
  50. color: #D9CCC1;
  51. }
  52. .site-navbar-wrap .site-navbar-top {
  53. font-size: 0.8rem;
  54. }
  55. .site-navbar-top {
  56. border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  57. }
  58. .site-navbar {
  59. margin-bottom: 0px;
  60. width: 100%;
  61. }
  62. .site-navbar .site-logo {
  63. font-weight: 200;
  64. line-height: 0;
  65. top: -7px;
  66. position: relative;
  67. }
  68. .site-navbar .site-logo a {
  69. font-weight: 200;
  70. color: #D9CCC1;
  71. font-size: 20px;
  72. font-weight: bold;
  73. text-transform: uppercase;
  74. }
  75. .site-navbar .site-navigation .site-menu {
  76. margin-bottom: 0;
  77. }
  78. .site-navbar .site-navigation .site-menu a {
  79. text-decoration: none !important;
  80. display: inline-block;
  81. font-weight: 500;
  82. }
  83. .site-navbar .site-navigation .site-menu > li {
  84. display: inline-block;
  85. padding: 10px 5px;
  86. }
  87. .site-navbar .site-navigation .site-menu > li > a {
  88. padding: 20px 10px;
  89. color: rgba(255, 255, 255, 0.6);
  90. font-size: 15px;
  91. text-decoration: none !important;
  92. }
  93. .site-navbar .site-navigation .site-menu > li > a.active {
  94. color: #D9CCC1;
  95. }
  96. .site-navbar .site-navigation .site-menu > li > a:hover {
  97. color: #D9CCC1;
  98. border-bottom: 1px solid transparent;
  99. content: "";
  100. width: 100%;
  101. border-image: linear-gradient(to right, #635A4A 0%, #BFAA92 100%);
  102. border-image-slice: 1;
  103. border-width: 2px;
  104. bottom: 0;
  105. }
  106. .site-navbar .site-navigation .site-menu > li:last-child {
  107. padding-right: 0;
  108. }
  109. .site-navbar .site-navigation .site-menu > li:last-child > a {
  110. padding-right: 0;
  111. }
  112. .site-navbar .site-navigation .site-menu .has-children {
  113. position: relative;
  114. }
  115. .site-navbar .site-navigation .site-menu .has-children > a {
  116. position: relative;
  117. padding-right: 20px;
  118. }
  119. .site-navbar .site-navigation .site-menu .has-children > a:before {
  120. position: absolute;
  121. content: "\2193";
  122. font-size: 16px;
  123. top: 50%;
  124. right: 0;
  125. -webkit-transform: translateY(-50%);
  126. -ms-transform: translateY(-50%);
  127. transform: translateY(-50%);
  128. font-family: 'icomoon';
  129. }
  130. .site-navbar .site-navigation .site-menu .has-children .dropdown {
  131. visibility: hidden;
  132. opacity: 0;
  133. top: 100%;
  134. position: absolute;
  135. text-align: left;
  136. -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
  137. box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
  138. padding: 0px 0;
  139. margin-top: 20px;
  140. margin-left: 0px;
  141. background: #D9CCC1;
  142. -webkit-transition: 0.2s 0s;
  143. -o-transition: 0.2s 0s;
  144. transition: 0.2s 0s;
  145. border-radius: 4px;
  146. }
  147. .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  148. position: absolute;
  149. }
  150. .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  151. bottom: 100%;
  152. left: 20%;
  153. border: solid transparent;
  154. content: " ";
  155. height: 0;
  156. width: 0;
  157. position: absolute;
  158. pointer-events: none;
  159. }
  160. .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  161. border-color: rgba(136, 183, 213, 0);
  162. border-bottom-color: #D9CCC1;
  163. border-width: 10px;
  164. margin-left: -10px;
  165. }
  166. .site-navbar .site-navigation .site-menu .has-children .dropdown a {
  167. font-size: 14px;
  168. text-transform: none;
  169. letter-spacing: normal;
  170. -webkit-transition: 0s all;
  171. -o-transition: 0s all;
  172. transition: 0s all;
  173. color: #28261E;
  174. }
  175. .site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  176. color: #635A4A;
  177. }
  178. .site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
  179. color: #D9CCC1 !important;
  180. }
  181. .site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  182. list-style: none;
  183. padding: 0;
  184. margin: 0;
  185. min-width: 200px;
  186. }
  187. .site-navbar .site-navigation .site-menu .has-children .dropdown > li:first-child > a {
  188. border-top-left-radius: 4px;
  189. border-top-right-radius: 4px;
  190. }
  191. .site-navbar .site-navigation .site-menu .has-children .dropdown > li:last-child > a {
  192. border-bottom-left-radius: 4px;
  193. border-bottom-right-radius: 4px;
  194. }
  195. .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  196. padding: 9px 20px;
  197. display: block;
  198. }
  199. .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
  200. background: #D9CCC1;
  201. color: #28261E;
  202. }
  203. .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
  204. content: "\2193";
  205. right: 20px;
  206. }
  207. .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
  208. left: 100%;
  209. top: 0;
  210. }
  211. .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
  212. background: #D9CCC1;
  213. color: #28261E;
  214. }
  215. .site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
  216. color: #D9CCC1;
  217. }
  218. .site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
  219. cursor: pointer;
  220. }
  221. .site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  222. -webkit-transition-delay: 0s;
  223. -o-transition-delay: 0s;
  224. transition-delay: 0s;
  225. margin-top: 0px;
  226. visibility: visible;
  227. opacity: 1;
  228. }
  229. .site-mobile-menu {
  230. width: 300px;
  231. position: fixed;
  232. right: 0;
  233. z-index: 2000;
  234. padding-top: 20px;
  235. background: #D9CCC1;
  236. height: calc(100vh);
  237. -webkit-transform: translateX(110%);
  238. -ms-transform: translateX(110%);
  239. transform: translateX(110%);
  240. -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  241. box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  242. -webkit-transition: .3s all ease-in-out;
  243. -o-transition: .3s all ease-in-out;
  244. transition: .3s all ease-in-out;
  245. }
  246. .offcanvas-menu .site-mobile-menu {
  247. -webkit-transform: translateX(0%);
  248. -ms-transform: translateX(0%);
  249. transform: translateX(0%);
  250. }
  251. .site-mobile-menu .site-mobile-menu-header {
  252. width: 100%;
  253. float: left;
  254. padding-left: 20px;
  255. padding-right: 20px;
  256. }
  257. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  258. float: right;
  259. margin-top: 8px;
  260. }
  261. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  262. font-size: 30px;
  263. display: inline-block;
  264. padding-left: 10px;
  265. padding-right: 0px;
  266. line-height: 1;
  267. cursor: pointer;
  268. -webkit-transition: .3s all ease;
  269. -o-transition: .3s all ease;
  270. transition: .3s all ease;
  271. }
  272. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  273. color: #dee2e6;
  274. }
  275. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  276. float: left;
  277. margin-top: 10px;
  278. margin-left: 0px;
  279. }
  280. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  281. display: inline-block;
  282. text-transform: uppercase;
  283. }
  284. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  285. max-width: 70px;
  286. }
  287. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  288. text-decoration: none;
  289. }
  290. .site-mobile-menu .site-mobile-menu-body {
  291. overflow-y: scroll;
  292. -webkit-overflow-scrolling: touch;
  293. position: relative;
  294. padding: 20px;
  295. height: calc(100vh - 52px);
  296. padding-bottom: 150px;
  297. }
  298. .site-mobile-menu .site-nav-wrap {
  299. padding: 0;
  300. margin: 0;
  301. list-style: none;
  302. position: relative;
  303. }
  304. .site-mobile-menu .site-nav-wrap a {
  305. padding: 10px 20px;
  306. display: block;
  307. position: relative;
  308. color: #28261E;
  309. }
  310. .site-mobile-menu .site-nav-wrap a.active, .site-mobile-menu .site-nav-wrap a:hover {
  311. color: #635A4A;
  312. }
  313. .site-mobile-menu .site-nav-wrap li {
  314. position: relative;
  315. display: block;
  316. }
  317. .site-mobile-menu .site-nav-wrap li.active > a {
  318. color: #635A4A;
  319. }
  320. .site-mobile-menu .site-nav-wrap .arrow-collapse {
  321. position: absolute;
  322. right: 0px;
  323. top: 10px;
  324. z-index: 20;
  325. width: 36px;
  326. height: 36px;
  327. text-align: center;
  328. cursor: pointer;
  329. border-radius: 50%;
  330. }
  331. .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  332. background: #f8f9fa;
  333. }
  334. .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  335. font-size: 12px;
  336. z-index: 20;
  337. font-family: "icomoon";
  338. content: "\f078";
  339. position: absolute;
  340. top: 50%;
  341. left: 50%;
  342. -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  343. -ms-transform: translate(-50%, -50%) rotate(-180deg);
  344. transform: translate(-50%, -50%) rotate(-180deg);
  345. -webkit-transition: .3s all ease;
  346. -o-transition: .3s all ease;
  347. transition: .3s all ease;
  348. }
  349. .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  350. -webkit-transform: translate(-50%, -50%);
  351. -ms-transform: translate(-50%, -50%);
  352. transform: translate(-50%, -50%);
  353. }
  354. .site-mobile-menu .site-nav-wrap > li {
  355. display: block;
  356. position: relative;
  357. float: left;
  358. width: 100%;
  359. }
  360. .site-mobile-menu .site-nav-wrap > li > a {
  361. padding-left: 20px;
  362. font-size: 20px;
  363. }
  364. .site-mobile-menu .site-nav-wrap > li > ul {
  365. padding: 0;
  366. margin: 0;
  367. list-style: none;
  368. }
  369. .site-mobile-menu .site-nav-wrap > li > ul > li {
  370. display: block;
  371. }
  372. .site-mobile-menu .site-nav-wrap > li > ul > li > a {
  373. padding-left: 40px;
  374. font-size: 16px;
  375. }
  376. .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  377. padding: 0;
  378. margin: 0;
  379. }
  380. .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  381. display: block;
  382. }
  383. .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  384. font-size: 16px;
  385. padding-left: 60px;
  386. }
  387. .sticky-wrapper {
  388. position: absolute;
  389. z-index: 100;
  390. width: 100%;
  391. }
  392. .sticky-wrapper + .site-blocks-cover {
  393. margin-top: 96px;
  394. }
  395. .sticky-wrapper .site-navbar {
  396. -webkit-transition: .3s all ease;
  397. -o-transition: .3s all ease;
  398. transition: .3s all ease;
  399. }
  400. .sticky-wrapper .site-navbar ul li.active a {
  401. color: #D9CCC1;
  402. }
  403. .sticky-wrapper.is-sticky .site-navbar {
  404. background-color: #635A4A;
  405. }
  406. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li {
  407. display: inline-block;
  408. padding: 10px 5px;
  409. }
  410. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child {
  411. padding-right: 0;
  412. }
  413. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child > a {
  414. padding-right: 0;
  415. }
  416. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.has-children > a {
  417. padding-right: 20px;
  418. }
  419. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a {
  420. padding: 10px 10px;
  421. color: rgba(255, 255, 255, 0.6);
  422. font-size: 15px;
  423. }
  424. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a:hover {
  425. color: #D9CCC1 !important;
  426. }
  427. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a.active {
  428. color: #D9CCC1 !important;
  429. }
  430. .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.active a {
  431. color: #D9CCC1;
  432. }
  433. /* parallax */
  434. .parallax-container {
  435. display: flex;
  436. min-height: 100vh;
  437. flex-direction: column;
  438. align-items: center;
  439. justify-content: center;
  440. /* this is where the magic happens: */
  441. background-attachment: fixed;
  442. background-position: center;
  443. background-size: cover;
  444. row-gap: 4rem;
  445. text-align: center;
  446. }
  447. .buffer {
  448. width: 100%;
  449. min-height: 100vh;
  450. z-index: 10;
  451. }
  452. /*
  453. .overlay {
  454. background: #000;
  455. opacity: .4;
  456. }
  457. .overlay-bg {
  458. height: 100vw;
  459. width: 100vw;
  460. position: absolute;
  461. }
  462. section {
  463. z-index: 10;
  464. position: inherit;
  465. }
  466. */