small', function() {
+ $body.removeClass('is-touch');
+ });
+
+ }
+
+ // Fix: IE flexbox fix.
+ if (browser.name == 'ie') {
+
+ var $main = $('.main.fullscreen'),
+ IEResizeTimeout;
+
+ $window
+ .on('resize.ie-flexbox-fix', function() {
+
+ clearTimeout(IEResizeTimeout);
+
+ IEResizeTimeout = setTimeout(function() {
+
+ var wh = $window.height();
+
+ $main.each(function() {
+
+ var $this = $(this);
+
+ $this.css('height', '');
+
+ if ($this.height() <= wh)
+ $this.css('height', (wh - 50) + 'px');
+
+ });
+
+ });
+
+ })
+ .triggerHandler('resize.ie-flexbox-fix');
+
+ }
+
+ // Gallery.
+ $window.on('load', function() {
+
+ var $gallery = $('.gallery');
+
+ $gallery.poptrox({
+ baseZIndex: 10001,
+ useBodyOverflow: false,
+ usePopupEasyClose: false,
+ overlayColor: '#1f2328',
+ overlayOpacity: 0.65,
+ usePopupDefaultStyling: false,
+ usePopupCaption: true,
+ popupLoaderText: '',
+ windowMargin: 50,
+ usePopupNav: true
+ });
+
+ // Hack: Adjust margins when 'small' activates.
+ breakpoints.on('>small', function() {
+ $gallery.each(function() {
+ $(this)[0]._poptrox.windowMargin = 50;
+ });
+ });
+
+ breakpoints.on('<=small', function() {
+ $gallery.each(function() {
+ $(this)[0]._poptrox.windowMargin = 5;
+ });
+ });
+
+ });
+
+ // Section transitions.
+ if (browser.canUse('transition')) {
+
+ var on = function() {
+
+ // Galleries.
+ $('.gallery')
+ .scrollex({
+ top: '30vh',
+ bottom: '30vh',
+ delay: 50,
+ initialize: function() { $(this).addClass('inactive'); },
+ terminate: function() { $(this).removeClass('inactive'); },
+ enter: function() { $(this).removeClass('inactive'); },
+ leave: function() { $(this).addClass('inactive'); }
+ });
+
+ // Generic sections.
+ $('.main.style1')
+ .scrollex({
+ mode: 'middle',
+ delay: 100,
+ initialize: function() { $(this).addClass('inactive'); },
+ terminate: function() { $(this).removeClass('inactive'); },
+ enter: function() { $(this).removeClass('inactive'); },
+ leave: function() { $(this).addClass('inactive'); }
+ });
+
+ $('.main.style2')
+ .scrollex({
+ mode: 'middle',
+ delay: 100,
+ initialize: function() { $(this).addClass('inactive'); },
+ terminate: function() { $(this).removeClass('inactive'); },
+ enter: function() { $(this).removeClass('inactive'); },
+ leave: function() { $(this).addClass('inactive'); }
+ });
+
+ // Contact.
+ $('#contact')
+ .scrollex({
+ top: '50%',
+ delay: 50,
+ initialize: function() { $(this).addClass('inactive'); },
+ terminate: function() { $(this).removeClass('inactive'); },
+ enter: function() { $(this).removeClass('inactive'); },
+ leave: function() { $(this).addClass('inactive'); }
+ });
+
+ };
+
+ var off = function() {
+
+ // Galleries.
+ $('.gallery')
+ .unscrollex();
+
+ // Generic sections.
+ $('.main.style1')
+ .unscrollex();
+
+ $('.main.style2')
+ .unscrollex();
+
+ // Contact.
+ $('#contact')
+ .unscrollex();
+
+ };
+
+ breakpoints.on('<=small', off);
+ breakpoints.on('>small', on);
+
+ }
+
+ // Events.
+ var resizeTimeout, resizeScrollTimeout;
+
+ $window
+ .on('resize', function() {
+
+ // Disable animations/transitions.
+ $body.addClass('is-resizing');
+
+ clearTimeout(resizeTimeout);
+
+ resizeTimeout = setTimeout(function() {
+
+ // Update scrolly links.
+ $('a[href^="#"]').scrolly({
+ speed: 1500,
+ offset: $header.outerHeight() - 1
+ });
+
+ // Re-enable animations/transitions.
+ setTimeout(function() {
+ $body.removeClass('is-resizing');
+ $window.trigger('scroll');
+ }, 0);
+
+ }, 100);
+
+ })
+ .on('load', function() {
+ $window.trigger('resize');
+ });
+
+})(jQuery);
\ No newline at end of file
diff --git a/assets/js/util.js b/assets/js/util.js
new file mode 100644
index 0000000..bdb8e9f
--- /dev/null
+++ b/assets/js/util.js
@@ -0,0 +1,587 @@
+(function($) {
+
+ /**
+ * Generate an indented list of links from a nav. Meant for use with panel().
+ * @return {jQuery} jQuery object.
+ */
+ $.fn.navList = function() {
+
+ var $this = $(this);
+ $a = $this.find('a'),
+ b = [];
+
+ $a.each(function() {
+
+ var $this = $(this),
+ indent = Math.max(0, $this.parents('li').length - 1),
+ href = $this.attr('href'),
+ target = $this.attr('target');
+
+ b.push(
+ '' +
+ '' +
+ $this.text() +
+ ''
+ );
+
+ });
+
+ return b.join('');
+
+ };
+
+ /**
+ * Panel-ify an element.
+ * @param {object} userConfig User config.
+ * @return {jQuery} jQuery object.
+ */
+ $.fn.panel = function(userConfig) {
+
+ // No elements?
+ if (this.length == 0)
+ return $this;
+
+ // Multiple elements?
+ if (this.length > 1) {
+
+ for (var i=0; i < this.length; i++)
+ $(this[i]).panel(userConfig);
+
+ return $this;
+
+ }
+
+ // Vars.
+ var $this = $(this),
+ $body = $('body'),
+ $window = $(window),
+ id = $this.attr('id'),
+ config;
+
+ // Config.
+ config = $.extend({
+
+ // Delay.
+ delay: 0,
+
+ // Hide panel on link click.
+ hideOnClick: false,
+
+ // Hide panel on escape keypress.
+ hideOnEscape: false,
+
+ // Hide panel on swipe.
+ hideOnSwipe: false,
+
+ // Reset scroll position on hide.
+ resetScroll: false,
+
+ // Reset forms on hide.
+ resetForms: false,
+
+ // Side of viewport the panel will appear.
+ side: null,
+
+ // Target element for "class".
+ target: $this,
+
+ // Class to toggle.
+ visibleClass: 'visible'
+
+ }, userConfig);
+
+ // Expand "target" if it's not a jQuery object already.
+ if (typeof config.target != 'jQuery')
+ config.target = $(config.target);
+
+ // Panel.
+
+ // Methods.
+ $this._hide = function(event) {
+
+ // Already hidden? Bail.
+ if (!config.target.hasClass(config.visibleClass))
+ return;
+
+ // If an event was provided, cancel it.
+ if (event) {
+
+ event.preventDefault();
+ event.stopPropagation();
+
+ }
+
+ // Hide.
+ config.target.removeClass(config.visibleClass);
+
+ // Post-hide stuff.
+ window.setTimeout(function() {
+
+ // Reset scroll position.
+ if (config.resetScroll)
+ $this.scrollTop(0);
+
+ // Reset forms.
+ if (config.resetForms)
+ $this.find('form').each(function() {
+ this.reset();
+ });
+
+ }, config.delay);
+
+ };
+
+ // Vendor fixes.
+ $this
+ .css('-ms-overflow-style', '-ms-autohiding-scrollbar')
+ .css('-webkit-overflow-scrolling', 'touch');
+
+ // Hide on click.
+ if (config.hideOnClick) {
+
+ $this.find('a')
+ .css('-webkit-tap-highlight-color', 'rgba(0,0,0,0)');
+
+ $this
+ .on('click', 'a', function(event) {
+
+ var $a = $(this),
+ href = $a.attr('href'),
+ target = $a.attr('target');
+
+ if (!href || href == '#' || href == '' || href == '#' + id)
+ return;
+
+ // Cancel original event.
+ event.preventDefault();
+ event.stopPropagation();
+
+ // Hide panel.
+ $this._hide();
+
+ // Redirect to href.
+ window.setTimeout(function() {
+
+ if (target == '_blank')
+ window.open(href);
+ else
+ window.location.href = href;
+
+ }, config.delay + 10);
+
+ });
+
+ }
+
+ // Event: Touch stuff.
+ $this.on('touchstart', function(event) {
+
+ $this.touchPosX = event.originalEvent.touches[0].pageX;
+ $this.touchPosY = event.originalEvent.touches[0].pageY;
+
+ })
+
+ $this.on('touchmove', function(event) {
+
+ if ($this.touchPosX === null
+ || $this.touchPosY === null)
+ return;
+
+ var diffX = $this.touchPosX - event.originalEvent.touches[0].pageX,
+ diffY = $this.touchPosY - event.originalEvent.touches[0].pageY,
+ th = $this.outerHeight(),
+ ts = ($this.get(0).scrollHeight - $this.scrollTop());
+
+ // Hide on swipe?
+ if (config.hideOnSwipe) {
+
+ var result = false,
+ boundary = 20,
+ delta = 50;
+
+ switch (config.side) {
+
+ case 'left':
+ result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX > delta);
+ break;
+
+ case 'right':
+ result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX < (-1 * delta));
+ break;
+
+ case 'top':
+ result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY > delta);
+ break;
+
+ case 'bottom':
+ result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY < (-1 * delta));
+ break;
+
+ default:
+ break;
+
+ }
+
+ if (result) {
+
+ $this.touchPosX = null;
+ $this.touchPosY = null;
+ $this._hide();
+
+ return false;
+
+ }
+
+ }
+
+ // Prevent vertical scrolling past the top or bottom.
+ if (($this.scrollTop() < 0 && diffY < 0)
+ || (ts > (th - 2) && ts < (th + 2) && diffY > 0)) {
+
+ event.preventDefault();
+ event.stopPropagation();
+
+ }
+
+ });
+
+ // Event: Prevent certain events inside the panel from bubbling.
+ $this.on('click touchend touchstart touchmove', function(event) {
+ event.stopPropagation();
+ });
+
+ // Event: Hide panel if a child anchor tag pointing to its ID is clicked.
+ $this.on('click', 'a[href="#' + id + '"]', function(event) {
+
+ event.preventDefault();
+ event.stopPropagation();
+
+ config.target.removeClass(config.visibleClass);
+
+ });
+
+ // Body.
+
+ // Event: Hide panel on body click/tap.
+ $body.on('click touchend', function(event) {
+ $this._hide(event);
+ });
+
+ // Event: Toggle.
+ $body.on('click', 'a[href="#' + id + '"]', function(event) {
+
+ event.preventDefault();
+ event.stopPropagation();
+
+ config.target.toggleClass(config.visibleClass);
+
+ });
+
+ // Window.
+
+ // Event: Hide on ESC.
+ if (config.hideOnEscape)
+ $window.on('keydown', function(event) {
+
+ if (event.keyCode == 27)
+ $this._hide(event);
+
+ });
+
+ return $this;
+
+ };
+
+ /**
+ * Apply "placeholder" attribute polyfill to one or more forms.
+ * @return {jQuery} jQuery object.
+ */
+ $.fn.placeholder = function() {
+
+ // Browser natively supports placeholders? Bail.
+ if (typeof (document.createElement('input')).placeholder != 'undefined')
+ return $(this);
+
+ // No elements?
+ if (this.length == 0)
+ return $this;
+
+ // Multiple elements?
+ if (this.length > 1) {
+
+ for (var i=0; i < this.length; i++)
+ $(this[i]).placeholder();
+
+ return $this;
+
+ }
+
+ // Vars.
+ var $this = $(this);
+
+ // Text, TextArea.
+ $this.find('input[type=text],textarea')
+ .each(function() {
+
+ var i = $(this);
+
+ if (i.val() == ''
+ || i.val() == i.attr('placeholder'))
+ i
+ .addClass('polyfill-placeholder')
+ .val(i.attr('placeholder'));
+
+ })
+ .on('blur', function() {
+
+ var i = $(this);
+
+ if (i.attr('name').match(/-polyfill-field$/))
+ return;
+
+ if (i.val() == '')
+ i
+ .addClass('polyfill-placeholder')
+ .val(i.attr('placeholder'));
+
+ })
+ .on('focus', function() {
+
+ var i = $(this);
+
+ if (i.attr('name').match(/-polyfill-field$/))
+ return;
+
+ if (i.val() == i.attr('placeholder'))
+ i
+ .removeClass('polyfill-placeholder')
+ .val('');
+
+ });
+
+ // Password.
+ $this.find('input[type=password]')
+ .each(function() {
+
+ var i = $(this);
+ var x = $(
+ $('')
+ .append(i.clone())
+ .remove()
+ .html()
+ .replace(/type="password"/i, 'type="text"')
+ .replace(/type=password/i, 'type=text')
+ );
+
+ if (i.attr('id') != '')
+ x.attr('id', i.attr('id') + '-polyfill-field');
+
+ if (i.attr('name') != '')
+ x.attr('name', i.attr('name') + '-polyfill-field');
+
+ x.addClass('polyfill-placeholder')
+ .val(x.attr('placeholder')).insertAfter(i);
+
+ if (i.val() == '')
+ i.hide();
+ else
+ x.hide();
+
+ i
+ .on('blur', function(event) {
+
+ event.preventDefault();
+
+ var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
+
+ if (i.val() == '') {
+
+ i.hide();
+ x.show();
+
+ }
+
+ });
+
+ x
+ .on('focus', function(event) {
+
+ event.preventDefault();
+
+ var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
+
+ x.hide();
+
+ i
+ .show()
+ .focus();
+
+ })
+ .on('keypress', function(event) {
+
+ event.preventDefault();
+ x.val('');
+
+ });
+
+ });
+
+ // Events.
+ $this
+ .on('submit', function() {
+
+ $this.find('input[type=text],input[type=password],textarea')
+ .each(function(event) {
+
+ var i = $(this);
+
+ if (i.attr('name').match(/-polyfill-field$/))
+ i.attr('name', '');
+
+ if (i.val() == i.attr('placeholder')) {
+
+ i.removeClass('polyfill-placeholder');
+ i.val('');
+
+ }
+
+ });
+
+ })
+ .on('reset', function(event) {
+
+ event.preventDefault();
+
+ $this.find('select')
+ .val($('option:first').val());
+
+ $this.find('input,textarea')
+ .each(function() {
+
+ var i = $(this),
+ x;
+
+ i.removeClass('polyfill-placeholder');
+
+ switch (this.type) {
+
+ case 'submit':
+ case 'reset':
+ break;
+
+ case 'password':
+ i.val(i.attr('defaultValue'));
+
+ x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
+
+ if (i.val() == '') {
+ i.hide();
+ x.show();
+ }
+ else {
+ i.show();
+ x.hide();
+ }
+
+ break;
+
+ case 'checkbox':
+ case 'radio':
+ i.attr('checked', i.attr('defaultValue'));
+ break;
+
+ case 'text':
+ case 'textarea':
+ i.val(i.attr('defaultValue'));
+
+ if (i.val() == '') {
+ i.addClass('polyfill-placeholder');
+ i.val(i.attr('placeholder'));
+ }
+
+ break;
+
+ default:
+ i.val(i.attr('defaultValue'));
+ break;
+
+ }
+ });
+
+ });
+
+ return $this;
+
+ };
+
+ /**
+ * Moves elements to/from the first positions of their respective parents.
+ * @param {jQuery} $elements Elements (or selector) to move.
+ * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
+ */
+ $.prioritize = function($elements, condition) {
+
+ var key = '__prioritize';
+
+ // Expand $elements if it's not already a jQuery object.
+ if (typeof $elements != 'jQuery')
+ $elements = $($elements);
+
+ // Step through elements.
+ $elements.each(function() {
+
+ var $e = $(this), $p,
+ $parent = $e.parent();
+
+ // No parent? Bail.
+ if ($parent.length == 0)
+ return;
+
+ // Not moved? Move it.
+ if (!$e.data(key)) {
+
+ // Condition is false? Bail.
+ if (!condition)
+ return;
+
+ // Get placeholder (which will serve as our point of reference for when this element needs to move back).
+ $p = $e.prev();
+
+ // Couldn't find anything? Means this element's already at the top, so bail.
+ if ($p.length == 0)
+ return;
+
+ // Move element to top of parent.
+ $e.prependTo($parent);
+
+ // Mark element as moved.
+ $e.data(key, $p);
+
+ }
+
+ // Moved already?
+ else {
+
+ // Condition is true? Bail.
+ if (condition)
+ return;
+
+ $p = $e.data(key);
+
+ // Move element back to its original location (using our placeholder).
+ $e.insertAfter($p);
+
+ // Unmark element as moved.
+ $e.removeData(key);
+
+ }
+
+ });
+
+ };
+
+})(jQuery);
\ No newline at end of file
diff --git a/assets/sass/base/_page.scss b/assets/sass/base/_page.scss
new file mode 100644
index 0000000..5befb17
--- /dev/null
+++ b/assets/sass/base/_page.scss
@@ -0,0 +1,159 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Basic */
+
+ @-ms-viewport {
+ width: device-width;
+ }
+
+ html {
+ height: 100%;
+ }
+
+ // Set box model to border-box.
+ // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
+ html {
+ box-sizing: border-box;
+ }
+
+ *, *:before, *:after {
+ box-sizing: inherit;
+ }
+
+ body {
+ background: _palette(bg);
+ height: 100%;
+ min-width: 320px;
+
+ // Stops initial animations until page loads.
+ &.is-preload {
+ *, *:before, *:after {
+ @include vendor('animation', 'none !important');
+ @include vendor('transition', 'none !important');
+ }
+ }
+
+ }
+
+/* Spinner */
+
+ @include keyframes('spinner-rotate') {
+ 0% { @include vendor('transform', 'scale(1) rotate(0deg)'); }
+ 100% { @include vendor('transform', 'scale(1) rotate(360deg)'); }
+ }
+
+/* Loader */
+
+ @include keyframes('spinner-show') {
+ 0% { opacity: 0; }
+ 100% { opacity: 1; }
+ }
+
+ @include keyframes('spinner-hide') {
+ 0% {
+ @include vendor('transform', 'scale(1) rotate(0deg)');
+ color: _palette(border);
+ z-index: 100001;
+ }
+
+ 99% {
+ @include vendor('transform', 'scale(0.5) rotate(360deg)');
+ color: _palette(border);
+ z-index: 100001;
+ }
+
+ 100% {
+ @include vendor('transform', 'scale(0.5) rotate(360deg)');
+ color: _palette(border);
+ z-index: -1;
+ }
+ }
+
+ @include keyframes('overlay-hide') {
+ 0% {
+ opacity: 1;
+ z-index: 100000;
+ }
+
+ 15% {
+ opacity: 1;
+ z-index: 100000;
+ }
+
+ 99% {
+ opacity: 0;
+ z-index: 100000;
+ }
+
+ 100% {
+ opacity: 0;
+ z-index: -1;
+ }
+ }
+
+ body {
+ text-decoration: none;
+
+ &:before {
+ @include vendor('animation', ('spinner-show 1.5s 1 0.25s ease forwards', 'spinner-hide 0.25s ease-in-out forwards !important'));
+ @include vendor('transform-origin', '50% 50%');
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ font-family: FontAwesome;
+ font-style: normal;
+ font-weight: normal;
+ text-transform: none !important;
+ color: _palette(border);
+ content: '\f1ce';
+ cursor: default;
+ display: block;
+ font-size: 2em;
+ height: 2em;
+ left: 50%;
+ line-height: 2em;
+ margin: -1em 0 0 -1em;
+ opacity: 0;
+ position: fixed;
+ text-align: center;
+ top: 50%;
+ width: 2em;
+ z-index: -1;
+ }
+
+ &:after {
+ @include vendor('animation', 'overlay-hide 1.5s ease-in forwards !important');
+ background: #ffffff;
+ content: '';
+ display: block;
+ height: 100%;
+ left: 0;
+ opacity: 0;
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: -1;
+ }
+
+ &.is-preload {
+ &:before {
+ @include vendor('animation', ('spinner-show 1.5s 1 0.25s ease forwards', 'spinner-rotate 0.75s infinite linear !important'));
+ z-index: 100001;
+ }
+
+ &:after {
+ @include vendor('animation', 'none !important');
+ opacity: 1;
+ z-index: 100000;
+ }
+ }
+ }
+
+ @media (-webkit-min-device-pixel-ratio: 2) {
+ body:before {
+ line-height: 2.025em;
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/base/_reset.scss b/assets/sass/base/_reset.scss
new file mode 100644
index 0000000..7d5875a
--- /dev/null
+++ b/assets/sass/base/_reset.scss
@@ -0,0 +1,76 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+// Reset.
+// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
+
+ html, body, div, span, applet, object,
+ iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
+ pre, a, abbr, acronym, address, big, cite,
+ code, del, dfn, em, img, ins, kbd, q, s, samp,
+ small, strike, strong, sub, sup, tt, var, b,
+ u, i, center, dl, dt, dd, ol, ul, li, fieldset,
+ form, label, legend, table, caption, tbody,
+ tfoot, thead, tr, th, td, article, aside,
+ canvas, details, embed, figure, figcaption,
+ footer, header, hgroup, menu, nav, output, ruby,
+ section, summary, time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+ }
+
+ article, aside, details, figcaption, figure,
+ footer, header, hgroup, menu, nav, section {
+ display: block;
+ }
+
+ body {
+ line-height: 1;
+ }
+
+ ol, ul {
+ list-style:none;
+ }
+
+ blockquote, q {
+ quotes: none;
+
+ &:before,
+ &:after {
+ content: '';
+ content: none;
+ }
+ }
+
+ table {
+ border-collapse: collapse;
+ border-spacing: 0;
+ }
+
+ body {
+ -webkit-text-size-adjust: none;
+ }
+
+ mark {
+ background-color: transparent;
+ color: inherit;
+ }
+
+ input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+ }
+
+ input, select, textarea {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ -ms-appearance: none;
+ appearance: none;
+ }
\ No newline at end of file
diff --git a/assets/sass/base/_typography.scss b/assets/sass/base/_typography.scss
new file mode 100644
index 0000000..0a6732f
--- /dev/null
+++ b/assets/sass/base/_typography.scss
@@ -0,0 +1,101 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Type */
+
+ body, input, textarea, select {
+ font-family: _font(family);
+ font-weight: _font(weight);
+ font-size: 18pt;
+ line-height: 1.75em;
+ color: _palette(fg);
+ letter-spacing: 0.025em;
+
+ @include breakpoint('<=xxlarge') {
+ font-size: 17pt;
+ }
+
+ @include breakpoint('<=xlarge') {
+ font-size: 15pt;
+ }
+
+ @include breakpoint('<=large') {
+ font-size: 13pt;
+ }
+
+ @include breakpoint('<=medium') {
+ font-size: 13pt;
+ }
+
+ @include breakpoint('<=small') {
+ font-size: 12pt;
+ line-height: 1.5em;
+ }
+ }
+
+ h1, h2, h3, h4, h5, h6 {
+ font-weight: _font(weight-bold);
+ color: inherit;
+ letter-spacing: -0.0325em;
+
+ a {
+ color: inherit;
+ text-decoration: none;
+ }
+ }
+
+ h2 {
+ font-size: 2.25em;
+ line-height: 1.25em;
+ letter-spacing: -0.05em;
+ }
+
+ @include breakpoint('<=small') {
+ h2 {
+ font-size: 1.5em;
+ }
+ }
+
+ strong, b {
+ font-weight: _font(weight-bold);
+ color: inherit;
+ }
+
+ em, i {
+ font-style: italic;
+ }
+
+ a {
+ @include vendor('transition', 'color #{_duration(transition)} ease-in-out');
+ color: _palette(accent1, bg);
+ }
+
+ sub {
+ position: relative;
+ top: 0.5em;
+ font-size: 0.8em;
+ }
+
+ sup {
+ position: relative;
+ top: -0.5em;
+ font-size: 0.8em;
+ }
+
+ hr {
+ border: 0;
+ border-top: solid 1px _palette(border);
+ }
+
+ blockquote {
+ border-left: solid 0.5em _palette(border);
+ padding: 1em 0 1em 2em;
+ font-style: italic;
+ }
+
+ p, ul, ol, dl, table {
+ margin-bottom: 1em;
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_actions.scss b/assets/sass/components/_actions.scss
new file mode 100644
index 0000000..45b24b5
--- /dev/null
+++ b/assets/sass/components/_actions.scss
@@ -0,0 +1,101 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Actions */
+
+ ul.actions {
+ @include vendor('display', 'flex');
+ cursor: default;
+ list-style: none;
+ margin-left: (_size(element-margin) * -0.5);
+ padding-left: 0;
+
+ li {
+ padding: 0 0 0 (_size(element-margin) * 0.5);
+ vertical-align: middle;
+ }
+
+ &.special {
+ @include vendor('justify-content', 'center');
+ width: 100%;
+ margin-left: 0;
+
+ li {
+ &:first-child {
+ padding-left: 0;
+ }
+ }
+ }
+
+ &.stacked {
+ @include vendor('flex-direction', 'column');
+ margin-left: 0;
+
+ li {
+ padding: (_size(element-margin) * 0.65) 0 0 0;
+
+ &:first-child {
+ padding-top: 0;
+ }
+ }
+ }
+
+ &.fit {
+ width: calc(100% + #{_size(element-margin) * 0.5});
+
+ li {
+ @include vendor('flex-grow', '1');
+ @include vendor('flex-shrink', '1');
+ width: 100%;
+
+ > * {
+ width: 100%;
+ }
+ }
+
+ &.stacked {
+ width: 100%;
+ }
+ }
+
+ @include breakpoint('<=xsmall') {
+ &:not(.fixed) {
+ @include vendor('flex-direction', 'column');
+ margin-left: 0;
+ width: 100% !important;
+
+ li {
+ @include vendor('flex-grow', '1');
+ @include vendor('flex-shrink', '1');
+ padding: (_size(element-margin) * 0.5) 0 0 0;
+ text-align: center;
+ width: 100%;
+
+ > * {
+ width: 100%;
+ }
+
+ &:first-child {
+ padding-top: 0;
+ }
+
+ input[type="submit"],
+ input[type="reset"],
+ input[type="button"],
+ button,
+ .button {
+ width: 100%;
+
+ &.icon {
+ &:before {
+ margin-left: -0.5rem;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_box.scss b/assets/sass/components/_box.scss
new file mode 100644
index 0000000..533459a
--- /dev/null
+++ b/assets/sass/components/_box.scss
@@ -0,0 +1,30 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Box */
+
+ .box {
+ background: _palette(bg);
+ color: _palette(fg);
+ padding: 2em;
+
+ > :last-child {
+ margin-bottom: 0;
+ }
+
+ &.style2 {
+ padding: 3.5em 2.5em 3.5em 2.5em;
+ }
+
+ @include breakpoint('<=small') {
+ padding: 1em;
+
+ &.style2 {
+ padding: 1.5em 1.25em 1.5em 1.25em;
+ background-color: transparentize(_palette(bg), 0.1);
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_button.scss b/assets/sass/components/_button.scss
new file mode 100644
index 0000000..c2490dc
--- /dev/null
+++ b/assets/sass/components/_button.scss
@@ -0,0 +1,80 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Button */
+
+ input[type="button"],
+ input[type="submit"],
+ input[type="reset"],
+ .button,
+ button {
+ @include vendor('appearance', 'none');
+ @include vendor('transition', 'background-color #{_duration(transition)} ease-in-out');
+ background-color: _palette(accent1, bg);
+ border: 0;
+ border-radius: 3.5em;
+ color: _palette(accent1, fg);
+ cursor: pointer;
+ display: inline-block;
+ height: 3.5em;
+ line-height: 3.5em;
+ outline: 0;
+ padding: 0 2em 0 2em;
+ position: relative;
+ text-align: center;
+ text-decoration: none;
+
+ &.down {
+ width: 5em;
+ height: 5em;
+ line-height: 4.5em;
+ padding: 0;
+ background-image: url('images/dark-arrow.svg');
+ background-position: center center;
+ background-repeat: no-repeat;
+ text-indent: -10em;
+ overflow: hidden;
+
+ &.anchored {
+ bottom: 0;
+ border-bottom: 0;
+ border-radius: 3em 3em 0 0;
+ height: 4.5em;
+ margin-left: -2.5em;
+ }
+ }
+
+ &.anchored {
+ position: absolute;
+ left: 50%;
+ }
+
+ &:hover {
+ background-color: lighten(_palette(accent1, bg), 5);
+ }
+
+ &:active {
+ background-color: darken(_palette(accent1, bg), 5);
+ }
+
+ &.style2 {
+ background-color: transparent;
+ border: solid 2px _palette(border);
+ color: inherit;
+
+ &:hover {
+ background-color: transparentize(_palette(border), 0.75);
+ }
+
+ &:active {
+ background-color: transparentize(_palette(border), 0.625);
+ }
+
+ &.down {
+ background-image: url('images/arrow.svg');
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_form.scss b/assets/sass/components/_form.scss
new file mode 100644
index 0000000..e445c47
--- /dev/null
+++ b/assets/sass/components/_form.scss
@@ -0,0 +1,135 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Form */
+
+ form {
+ margin: 0 0 _size(element-margin) 0;
+
+ > :last-child {
+ margin-bottom: 0;
+ }
+
+ > .fields {
+ $gutter: (_size(element-margin) * 0.75);
+
+ @include vendor('display', 'flex');
+ @include vendor('flex-wrap', 'wrap');
+ width: calc(100% + #{$gutter * 2});
+ margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
+
+ > .field {
+ @include vendor('flex-grow', '0');
+ @include vendor('flex-shrink', '0');
+ padding: $gutter 0 0 $gutter;
+ width: calc(100% - #{$gutter * 1});
+
+ &.half {
+ width: calc(50% - #{$gutter * 0.5});
+ }
+
+ &.third {
+ width: calc(#{100% / 3} - #{$gutter * (1 / 3)});
+ }
+
+ &.quarter {
+ width: calc(25% - #{$gutter * 0.25});
+ }
+ }
+ }
+
+ @include breakpoint('<=xsmall') {
+ > .fields {
+ $gutter: (_size(element-margin) * 0.5);
+
+ width: calc(100% + #{$gutter * 2});
+ margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
+
+ > .field {
+ padding: $gutter 0 0 $gutter;
+ width: calc(100% - #{$gutter * 1});
+
+ &.half {
+ width: calc(100% - #{$gutter * 1});
+ }
+
+ &.third {
+ width: calc(100% - #{$gutter * 1});
+ }
+
+ &.quarter {
+ width: calc(100% - #{$gutter * 1});
+ }
+ }
+ }
+ }
+ }
+
+ label {
+ display: block;
+ }
+
+ input[type="text"],
+ input[type="password"],
+ input[type="email"],
+ input[type="tel"],
+ input[type="search"],
+ input[type="url"],
+ select,
+ textarea {
+ @include vendor('appearance', 'none');
+ @include vendor('transition', (
+ 'border-color #{_duration(transition)} ease-in-out',
+ 'color #{_duration(transition)} ease-in-out'
+ ));
+ color: _palette(fg);
+ display: block;
+ width: 100%;
+ padding: 0.65em 0.75em;
+ background: none;
+ border: solid 2px _palette(border);
+ color: inherit;
+ border-radius: 0.5em;
+ outline: none;
+
+ &:focus {
+ border-color: _palette(accent2, bg);
+ }
+ }
+
+ input[type="text"],
+ input[type="password"],
+ input[type="email"],
+ input[type="tel"],
+ input[type="search"],
+ input[type="url"],
+ select {
+ line-height: 1.35em;
+ }
+
+ textarea {
+ min-height: 8em;
+ }
+
+ ::-moz-focus-inner {
+ border: 0;
+ }
+
+ ::-webkit-input-placeholder {
+ opacity: 0.375;
+ }
+
+ :-moz-placeholder {
+ opacity: 0.375;
+ }
+
+ ::-moz-placeholder {
+ opacity: 0.375;
+ }
+
+ :-ms-input-placeholder {
+ opacity: 0.375;
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_gallery.scss b/assets/sass/components/_gallery.scss
new file mode 100644
index 0000000..8736d64
--- /dev/null
+++ b/assets/sass/components/_gallery.scss
@@ -0,0 +1,72 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Gallery */
+
+ .gallery {
+ @include vendor('display', 'flex');
+ @include vendor('flex-wrap', 'wrap');
+ width: 45em;
+ max-width: 100%;
+ margin: 0 auto _size(element-margin) auto;
+
+ article {
+ @include vendor('transition', (
+ 'transform 1s ease',
+ 'opacity 1s ease'
+ ));
+ @include vendor('transform', 'translateX(0)');
+ width: 50%;
+ position: relative;
+ opacity: 1.0;
+
+ .image {
+ margin: 0;
+ display: block;
+ }
+
+ @for $i from 1 through 23 {
+ &:nth-last-child(#{$i}n) {
+ @include vendor('transition-delay', '#{(0.05s * $i)}');
+ }
+
+ &:nth-last-child(#{$i + 1}n) {
+ @include vendor('transition-delay', '#{(0.05s * $i)}');
+ }
+ }
+ }
+
+ &.inactive {
+ article {
+ opacity: 0;
+
+ &.from-left {
+ @include vendor('transform', 'translateX(-14em)');
+ }
+
+ &.from-right {
+ @include vendor('transform', 'translateX(14em)');
+ }
+
+ &.from-top {
+ @include vendor('transform', 'translateY(-7em)');
+ }
+
+ &.from-bottom {
+ @include vendor('transform', 'translateY(7em)');
+ }
+ }
+ }
+
+ @include breakpoint('<=xsmall') {
+ @include vendor('flex-wrap', 'nowrap');
+ @include vendor('flex-direction', 'column');
+
+ article {
+ width: 100%;
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_icon.scss b/assets/sass/components/_icon.scss
new file mode 100644
index 0000000..44b3bb6
--- /dev/null
+++ b/assets/sass/components/_icon.scss
@@ -0,0 +1,33 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Icon */
+
+ .icon {
+ @include icon;
+ position: relative;
+ text-decoration: none;
+
+ &:before {
+ line-height: inherit;
+ }
+
+ > .label {
+ display: none;
+ }
+
+ &.solid {
+ &:before {
+ font-weight: 900;
+ }
+ }
+
+ &.brands {
+ &:before {
+ font-family: 'Font Awesome 5 Brands';
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_icons.scss b/assets/sass/components/_icons.scss
new file mode 100644
index 0000000..5357575
--- /dev/null
+++ b/assets/sass/components/_icons.scss
@@ -0,0 +1,24 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Icons */
+
+ ul.icons {
+ cursor: default;
+
+ li {
+ display: inline-block;
+ }
+
+ a {
+ display: inline-block;
+ width: 2em;
+ height: 2em;
+ line-height: 2em;
+ text-align: center;
+ border: 0;
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_image.scss b/assets/sass/components/_image.scss
new file mode 100644
index 0000000..d05928e
--- /dev/null
+++ b/assets/sass/components/_image.scss
@@ -0,0 +1,53 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Image */
+
+ .image {
+ position: relative;
+ display: inline-block;
+
+ &:before {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ background: url('images/overlay.png');
+ }
+
+ img {
+ display: block;
+ width: 100%;
+ }
+
+ &.featured {
+ display: block;
+ width: 100%;
+ margin: 0 0 2em 0;
+ }
+
+ &.fit {
+ display: block;
+ width: 100%;
+ }
+
+ &.left {
+ float: left;
+ margin: 0 2em 2em 0;
+ }
+
+ &.centered {
+ display: block;
+ margin: 0 0 2em 0;
+
+ img {
+ margin: 0 auto;
+ width: auto;
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_list.scss b/assets/sass/components/_list.scss
new file mode 100644
index 0000000..c2cb604
--- /dev/null
+++ b/assets/sass/components/_list.scss
@@ -0,0 +1,45 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* List */
+
+ ul {
+ &.default {
+ list-style: disc;
+ padding-left: 1em;
+
+ li {
+ padding-left: 0.5em;
+ }
+ }
+
+ &.menu {
+ cursor: default;
+
+ li {
+ display: inline-block;
+ line-height: 1em;
+ border-left: solid 1px _palette(border);
+ padding: 0 0 0 0.5em;
+ margin: 0 0 0 0.5em;
+
+ &:first-child {
+ border-left: 0;
+ padding-left: 0;
+ margin-left: 0;
+ }
+ }
+ }
+ }
+
+ ol.default {
+ list-style: decimal;
+ padding-left: 1.25em;
+
+ li {
+ padding-left: 0.25em;
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_poptrox-popup.scss b/assets/sass/components/_poptrox-popup.scss
new file mode 100644
index 0000000..7f5ced6
--- /dev/null
+++ b/assets/sass/components/_poptrox-popup.scss
@@ -0,0 +1,183 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Poptrox */
+
+ .poptrox-popup {
+ @include vendor('box-sizing', 'content-box');
+ background: #fff;
+ padding-bottom: 3em;
+ box-shadow: 0 0.1em 0.15em 0 rgba(0, 0, 0, 0.15);
+
+ .loader {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin: -1em 0 0 -1em;
+ width: 2em;
+ height: 2em;
+ display: block;
+ font-size: 2em;
+
+ &:before {
+ @include vendor('animation', 'spinner-rotate 0.75s infinite linear !important');
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ font-family: FontAwesome;
+ font-style: normal;
+ font-weight: normal;
+ text-transform: none !important;
+ color: _palette(border);
+ content: '\f1ce';
+ cursor: default;
+ display: block;
+ height: 2em;
+ left: 0;
+ line-height: 2em;
+ position: absolute;
+ text-align: center;
+ top: 0;
+ width: 2em;
+ }
+ }
+
+ .caption {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ background: _palette(bg);
+ width: 100%;
+ height: 3em;
+ line-height: 2.8em;
+ text-align: center;
+ cursor: default;
+ z-index: 1;
+ font-size: 0.9em;
+ }
+
+ .nav-next,
+ .nav-previous {
+ @include vendor('transition', 'opacity #{_duration(transition)} ease-in-out');
+ position: absolute;
+ top: 0;
+ width: 50%;
+ height: 100%;
+ opacity: 0;
+ cursor: pointer;
+ background: rgba(0, 0, 0, 0.01);
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
+ }
+
+ .nav-next:before,
+ .nav-previous:before {
+ content: '';
+ position: absolute;
+ width: 96px;
+ height: 64px;
+ background: url('images/poptrox-nav.svg');
+ top: calc(50% - 1.5em);
+ margin: -32px 0 0 0;
+ }
+
+ &:hover {
+ .nav-next,
+ .nav-previous {
+ opacity: 0.5;
+ }
+
+ .nav-next:hover,
+ .nav-previous:hover {
+ opacity: 1.0;
+ }
+ }
+
+ .nav-previous:before {
+ @include vendor('transform', 'scaleX(-1)');
+ -ms-filter: "FlipH";
+ filter: FlipH;
+ }
+
+ .nav-next {
+ right: 0;
+
+ &:before {
+ right: 0;
+ }
+ }
+
+ .nav-previous {
+ left: 0;
+
+ &:before {
+ left: 0;
+ }
+ }
+
+ .closer {
+ @include vendor('transition', 'opacity #{_duration(transition)} ease-in-out');
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 64px;
+ height: 64px;
+ text-indent: -9999px;
+ z-index: 2;
+ opacity: 0;
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
+
+ &:before {
+ content: '';
+ display: block;
+ position: absolute;
+ right: 16px;
+ top: 16px;
+ width: 40px;
+ height: 40px;
+ border-radius: 100%;
+ box-shadow: inset 0 0 0 2px #fff;
+ background: url('images/poptrox-closer.svg') center center;
+ color: _palette(bg) !important;
+ }
+ }
+
+ &:hover {
+ .closer {
+ opacity: 0.5;
+
+ &:hover {
+ opacity: 1.0;
+ }
+ }
+ }
+
+ body.is-touch & {
+ .nav-next,
+ .nav-previous,
+ .closer {
+ opacity: 1.0 !important;
+ }
+ }
+
+ @include breakpoint('<=small') {
+ .nav-next:before,
+ .nav-previous:before {
+ width: 48px;
+ height: 32px;
+ background-size: contain;
+ margin: -16px 0 0 0;
+ }
+
+ .closer:before {
+ right: 12px;
+ top: 12px;
+ width: 20px;
+ height: 20px;
+ box-shadow: inset 0 0 0 1px #fff;
+ background-size: contain;
+ opacity: 0.65;
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_section.scss b/assets/sass/components/_section.scss
new file mode 100644
index 0000000..564166a
--- /dev/null
+++ b/assets/sass/components/_section.scss
@@ -0,0 +1,21 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Sections/Article */
+
+ header {
+ margin-bottom: 1em;
+
+ p {
+ display: block;
+ margin: 1em 0 0 0;
+ padding: 0 0 0.5em 0;
+ }
+ }
+
+ footer {
+ margin-top: 2em;
+ }
\ No newline at end of file
diff --git a/assets/sass/components/_table.scss b/assets/sass/components/_table.scss
new file mode 100644
index 0000000..2976af4
--- /dev/null
+++ b/assets/sass/components/_table.scss
@@ -0,0 +1,38 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Table */
+
+ table {
+ width: 100%;
+
+ &.default {
+ width: 100%;
+
+ tbody tr:nth-child(2n+2) {
+ background: transparentize(_palette(border), 0.5);
+ }
+
+ td {
+ padding: 0.5em 1em 0.5em 1em;
+ }
+
+ th {
+ text-align: left;
+ font-weight: 900;
+ padding: 0.5em 1em 0.5em 1em;
+ }
+
+ thead {
+ background: _palette(fg);
+ color: _palette(bg);
+ }
+
+ tfoot {
+ background: _palette(border);
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/layout/_footer.scss b/assets/sass/layout/_footer.scss
new file mode 100644
index 0000000..955293a
--- /dev/null
+++ b/assets/sass/layout/_footer.scss
@@ -0,0 +1,74 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Footer */
+
+ #footer {
+ @include vendor('display', 'flex');
+ @include vendor('align-items', 'center');
+ @include vendor('justify-content', 'space-between');
+ position: relative;
+ margin: 0;
+ line-height: 1em;
+ padding: 1.5em;
+ background: _palette(accent3, bg);
+ color: _palette(accent3, fg);
+ overflow: hidden;
+
+ > * {
+ margin-bottom: 0;
+ }
+
+ a {
+ color: inherit;
+
+ &:hover {
+ color: _palette(accent3, fg-bold);
+ }
+ }
+
+ ul {
+ &.menu {
+ margin: 0;
+
+ li {
+ border-left-color: _palette(accent3, border);
+ font-size: 0.9em;
+ }
+ }
+ }
+
+ @include breakpoint('<=medium') {
+ @include vendor('flex-direction', 'column');
+ @include vendor('justify-content', 'center');
+ line-height: 1.5em;
+ text-align: center;
+ padding: 2em 1em 2em 1em;
+
+ > * {
+ margin: 0 0 1em 0;
+ }
+ }
+
+ @include breakpoint('<=small') {
+ ul {
+ &.menu {
+ li {
+ border-left: none;
+ display: block;
+ line-height: inherit;
+ margin: 0.25em 0 0 0;
+ padding: 0.25em 0 0 0;
+
+ &:first-child {
+ margin-top: 0;
+ padding-top: 0;
+ }
+ }
+ }
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/layout/_header.scss b/assets/sass/layout/_header.scss
new file mode 100644
index 0000000..3beb812
--- /dev/null
+++ b/assets/sass/layout/_header.scss
@@ -0,0 +1,90 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Header */
+
+ #header {
+ position: fixed;
+ z-index: 10000;
+ left: 0;
+ top: 0;
+ width: 100%;
+ background: transparentize(_palette(bg), 0.05);
+ height: 3em;
+ line-height: 3em;
+ box-shadow: 0 0 0.15em 0 rgba(0,0,0,0.1);
+
+ h1 {
+ position: absolute;
+ left: 1em;
+ top: 0;
+ height: 3em;
+ line-height: 3em;
+ cursor: default;
+
+ a {
+ font-size: 1.25em;
+ }
+ }
+
+ nav {
+ position: absolute;
+ right: 0.5em;
+ top: 0;
+ height: 3em;
+ line-height: 3em;
+
+ ul {
+ margin: 0;
+
+ li {
+ display: inline-block;
+ margin-left: 0.5em;
+ font-size: 0.9em;
+
+ a {
+ display: block;
+ color: inherit;
+ text-decoration: none;
+ height: 3em;
+ line-height: 3em;
+ padding: 0 0.5em 0 0.5em;
+ outline: 0;
+ }
+ }
+ }
+ }
+
+ @include breakpoint('<=small') {
+ height: 2.5em;
+ line-height: 2.5em;
+
+ h1 {
+ text-align: center;
+ position: relative;
+ left: 0;
+ top: 0;
+ height: 2.5em;
+ line-height: 2.5em;
+
+ a {
+ font-size: 1em;
+ }
+ }
+
+ nav {
+ display: none;
+ }
+ }
+ }
+
+ body {
+ padding-top: 3em;
+
+ @include breakpoint('<=small') {
+ padding-top: 2.5em;
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/layout/_main.scss b/assets/sass/layout/_main.scss
new file mode 100644
index 0000000..71e6533
--- /dev/null
+++ b/assets/sass/layout/_main.scss
@@ -0,0 +1,204 @@
+///
+/// Big Picture by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Main */
+
+ .main {
+ @include vendor('display', 'flex');
+ position: relative;
+ margin: 0;
+ overflow-x: hidden;
+
+ > .content {
+ width: 45em;
+ max-width: calc(100% - 4em);
+ margin: 0 auto;
+
+ > :last-child {
+ margin-bottom: 0;
+ }
+ }
+
+ &.fullscreen {
+ min-height: 100%;
+ }
+
+ &.style1 {
+ @include vendor('align-items', 'center');
+ @include vendor('justify-content', 'center');
+ text-align: center;
+ padding: 3em 0 3em 0;
+
+ h2 {
+ font-size: 4.25em;
+ line-height: 1em;
+ }
+
+ > .content {
+ @include vendor('transition', 'opacity #{_duration(fade-in)} ease');
+ @include vendor('transform', 'translateZ(0)');
+ opacity: 1.0;
+ margin: 0;
+ }
+
+ &.inactive > .content {
+ opacity: 0;
+ }
+ }
+
+ &.style2 {
+ @include vendor('align-items', 'center');
+ @include vendor('justify-content', 'center');
+ padding: 3em 0 3em 0;
+ overflow: hidden;
+
+ > .content {
+ @include vendor('transition', 'transform #{_duration(fade-in)} ease');
+ @include vendor('transform', 'translateZ(0)');
+ position: relative;
+ width: 35%;
+ margin: 0;
+ }
+
+ &.left {
+ @include vendor('justify-content', 'flex-start');
+ }
+
+ &.right {
+ @include vendor('justify-content', 'flex-end');
+ }
+
+ &.inactive {
+ &.left > .content {
+ @include vendor('transform', 'translateX(-100%)');
+ }
+
+ &.right > .content {
+ @include vendor('transform', 'translateX(100%)');
+ }
+ }
+ }
+
+ &.style3 {
+ text-align: center;
+ padding: 6em 0 6em 0;
+
+ .content > header {
+ margin-bottom: 2em;
+ }
+
+ &.primary {
+ background: _palette(bg);
+ }
+
+ &.secondary {
+ background: _palette(bg-alt);
+ }
+ }
+
+ &.dark {
+ color: _palette(dark, fg);
+
+ a {
+ color: inherit;
+ }
+
+ .button.style2 {
+ border-color: _palette(dark, fg);
+
+ &:hover {
+ background-color: transparentize(_palette(dark, border), 0.875);
+ }
+
+ &:active {
+ background-color: transparentize(_palette(dark, border), 0.75);
+ }
+
+ &.down {
+ background-image: url('images/dark-arrow.svg');
+ }
+ }
+ }
+
+ body.is-touch & {
+ background-attachment: scroll !important;
+ }
+
+ @include breakpoint('<=xxlarge') {
+ &.style2 {
+ .content {
+ width: 40%;
+ }
+ }
+ }
+
+ @include breakpoint('<=large') {
+ &.style2 {
+ .content {
+ width: 50%;
+ }
+ }
+ }
+
+ @include breakpoint('<=medium') {
+ &.style2 {
+ .content {
+ width: 60%;
+ }
+ }
+ }
+
+ @include breakpoint('<=small') {
+ > .content {
+ br {
+ display: none;
+ }
+ }
+
+ &.fullscreen {
+ height: auto !important;
+ }
+
+ &.style1 {
+ padding: 4em 15px 4em 15px;
+
+ h2 {
+ font-size: 3em;
+ }
+ }
+
+ &.style2 {
+ padding: 6em 15px 6em 15px;
+
+ &:before,
+ &:after {
+ display: none !important;
+ }
+
+ .button.anchored {
+ display: none;
+ }
+
+ .content {
+ width: 100%;
+ max-width: 100%;
+ text-align: center;
+ @include vendor('transform', 'none');
+ }
+ }
+
+ &.style3 {
+ text-align: center;
+ padding: 3em 10px 3em 10px;
+ }
+ }
+
+ @include breakpoint('<=xsmall') {
+ > .content {
+ max-width: calc(100% - 1.5em);
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/libs/_breakpoints.scss b/assets/sass/libs/_breakpoints.scss
new file mode 100644
index 0000000..c5301d8
--- /dev/null
+++ b/assets/sass/libs/_breakpoints.scss
@@ -0,0 +1,223 @@
+// breakpoints.scss v1.0 | @ajlkn | MIT licensed */
+
+// Vars.
+
+ /// Breakpoints.
+ /// @var {list}
+ $breakpoints: () !global;
+
+// Mixins.
+
+ /// Sets breakpoints.
+ /// @param {map} $x Breakpoints.
+ @mixin breakpoints($x: ()) {
+ $breakpoints: $x !global;
+ }
+
+ /// Wraps @content in a @media block targeting a specific orientation.
+ /// @param {string} $orientation Orientation.
+ @mixin orientation($orientation) {
+ @media screen and (orientation: #{$orientation}) {
+ @content;
+ }
+ }
+
+ /// Wraps @content in a @media block using a given query.
+ /// @param {string} $query Query.
+ @mixin breakpoint($query: null) {
+
+ $breakpoint: null;
+ $op: null;
+ $media: null;
+
+ // Determine operator, breakpoint.
+
+ // Greater than or equal.
+ @if (str-slice($query, 0, 2) == '>=') {
+
+ $op: 'gte';
+ $breakpoint: str-slice($query, 3);
+
+ }
+
+ // Less than or equal.
+ @elseif (str-slice($query, 0, 2) == '<=') {
+
+ $op: 'lte';
+ $breakpoint: str-slice($query, 3);
+
+ }
+
+ // Greater than.
+ @elseif (str-slice($query, 0, 1) == '>') {
+
+ $op: 'gt';
+ $breakpoint: str-slice($query, 2);
+
+ }
+
+ // Less than.
+ @elseif (str-slice($query, 0, 1) == '<') {
+
+ $op: 'lt';
+ $breakpoint: str-slice($query, 2);
+
+ }
+
+ // Not.
+ @elseif (str-slice($query, 0, 1) == '!') {
+
+ $op: 'not';
+ $breakpoint: str-slice($query, 2);
+
+ }
+
+ // Equal.
+ @else {
+
+ $op: 'eq';
+ $breakpoint: $query;
+
+ }
+
+ // Build media.
+ @if ($breakpoint and map-has-key($breakpoints, $breakpoint)) {
+
+ $a: map-get($breakpoints, $breakpoint);
+
+ // Range.
+ @if (type-of($a) == 'list') {
+
+ $x: nth($a, 1);
+ $y: nth($a, 2);
+
+ // Max only.
+ @if ($x == null) {
+
+ // Greater than or equal (>= 0 / anything)
+ @if ($op == 'gte') {
+ $media: 'screen';
+ }
+
+ // Less than or equal (<= y)
+ @elseif ($op == 'lte') {
+ $media: 'screen and (max-width: ' + $y + ')';
+ }
+
+ // Greater than (> y)
+ @elseif ($op == 'gt') {
+ $media: 'screen and (min-width: ' + ($y + 1) + ')';
+ }
+
+ // Less than (< 0 / invalid)
+ @elseif ($op == 'lt') {
+ $media: 'screen and (max-width: -1px)';
+ }
+
+ // Not (> y)
+ @elseif ($op == 'not') {
+ $media: 'screen and (min-width: ' + ($y + 1) + ')';
+ }
+
+ // Equal (<= y)
+ @else {
+ $media: 'screen and (max-width: ' + $y + ')';
+ }
+
+ }
+
+ // Min only.
+ @else if ($y == null) {
+
+ // Greater than or equal (>= x)
+ @if ($op == 'gte') {
+ $media: 'screen and (min-width: ' + $x + ')';
+ }
+
+ // Less than or equal (<= inf / anything)
+ @elseif ($op == 'lte') {
+ $media: 'screen';
+ }
+
+ // Greater than (> inf / invalid)
+ @elseif ($op == 'gt') {
+ $media: 'screen and (max-width: -1px)';
+ }
+
+ // Less than (< x)
+ @elseif ($op == 'lt') {
+ $media: 'screen and (max-width: ' + ($x - 1) + ')';
+ }
+
+ // Not (< x)
+ @elseif ($op == 'not') {
+ $media: 'screen and (max-width: ' + ($x - 1) + ')';
+ }
+
+ // Equal (>= x)
+ @else {
+ $media: 'screen and (min-width: ' + $x + ')';
+ }
+
+ }
+
+ // Min and max.
+ @else {
+
+ // Greater than or equal (>= x)
+ @if ($op == 'gte') {
+ $media: 'screen and (min-width: ' + $x + ')';
+ }
+
+ // Less than or equal (<= y)
+ @elseif ($op == 'lte') {
+ $media: 'screen and (max-width: ' + $y + ')';
+ }
+
+ // Greater than (> y)
+ @elseif ($op == 'gt') {
+ $media: 'screen and (min-width: ' + ($y + 1) + ')';
+ }
+
+ // Less than (< x)
+ @elseif ($op == 'lt') {
+ $media: 'screen and (max-width: ' + ($x - 1) + ')';
+ }
+
+ // Not (< x and > y)
+ @elseif ($op == 'not') {
+ $media: 'screen and (max-width: ' + ($x - 1) + '), screen and (min-width: ' + ($y + 1) + ')';
+ }
+
+ // Equal (>= x and <= y)
+ @else {
+ $media: 'screen and (min-width: ' + $x + ') and (max-width: ' + $y + ')';
+ }
+
+ }
+
+ }
+
+ // String.
+ @else {
+
+ // Missing a media type? Prefix with "screen".
+ @if (str-slice($a, 0, 1) == '(') {
+ $media: 'screen and ' + $a;
+ }
+
+ // Otherwise, use as-is.
+ @else {
+ $media: $a;
+ }
+
+ }
+
+ }
+
+ // Output.
+ @media #{$media} {
+ @content;
+ }
+
+ }
\ No newline at end of file
diff --git a/assets/sass/libs/_functions.scss b/assets/sass/libs/_functions.scss
new file mode 100644
index 0000000..f563aab
--- /dev/null
+++ b/assets/sass/libs/_functions.scss
@@ -0,0 +1,90 @@
+/// Removes a specific item from a list.
+/// @author Hugo Giraudel
+/// @param {list} $list List.
+/// @param {integer} $index Index.
+/// @return {list} Updated list.
+@function remove-nth($list, $index) {
+
+ $result: null;
+
+ @if type-of($index) != number {
+ @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
+ }
+ @else if $index == 0 {
+ @warn "List index 0 must be a non-zero integer for `remove-nth`.";
+ }
+ @else if abs($index) > length($list) {
+ @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
+ }
+ @else {
+
+ $result: ();
+ $index: if($index < 0, length($list) + $index + 1, $index);
+
+ @for $i from 1 through length($list) {
+
+ @if $i != $index {
+ $result: append($result, nth($list, $i));
+ }
+
+ }
+
+ }
+
+ @return $result;
+
+}
+
+/// Gets a value from a map.
+/// @author Hugo Giraudel
+/// @param {map} $map Map.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function val($map, $keys...) {
+
+ @if nth($keys, 1) == null {
+ $keys: remove-nth($keys, 1);
+ }
+
+ @each $key in $keys {
+ $map: map-get($map, $key);
+ }
+
+ @return $map;
+
+}
+
+/// Gets a duration value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _duration($keys...) {
+ @return val($duration, $keys...);
+}
+
+/// Gets a font value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _font($keys...) {
+ @return val($font, $keys...);
+}
+
+/// Gets a misc value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _misc($keys...) {
+ @return val($misc, $keys...);
+}
+
+/// Gets a palette value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _palette($keys...) {
+ @return val($palette, $keys...);
+}
+
+/// Gets a size value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _size($keys...) {
+ @return val($size, $keys...);
+}
\ No newline at end of file
diff --git a/assets/sass/libs/_mixins.scss b/assets/sass/libs/_mixins.scss
new file mode 100644
index 0000000..a331483
--- /dev/null
+++ b/assets/sass/libs/_mixins.scss
@@ -0,0 +1,78 @@
+/// Makes an element's :before pseudoelement a FontAwesome icon.
+/// @param {string} $content Optional content value to use.
+/// @param {string} $category Optional category to use.
+/// @param {string} $where Optional pseudoelement to target (before or after).
+@mixin icon($content: false, $category: regular, $where: before) {
+
+ text-decoration: none;
+
+ &:#{$where} {
+
+ @if $content {
+ content: $content;
+ }
+
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ display: inline-block;
+ font-style: normal;
+ font-variant: normal;
+ text-rendering: auto;
+ line-height: 1;
+ text-transform: none !important;
+
+ @if ($category == brands) {
+ font-family: 'Font Awesome 5 Brands';
+ }
+ @elseif ($category == solid) {
+ font-family: 'Font Awesome 5 Free';
+ font-weight: 900;
+ }
+ @else {
+ font-family: 'Font Awesome 5 Free';
+ font-weight: 400;
+ }
+
+ }
+
+}
+
+/// Applies padding to an element, taking the current element-margin value into account.
+/// @param {mixed} $tb Top/bottom padding.
+/// @param {mixed} $lr Left/right padding.
+/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
+/// @param {bool} $important If true, adds !important.
+@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
+
+ @if $important {
+ $important: '!important';
+ }
+
+ $x: 0.1em;
+
+ @if unit(_size(element-margin)) == 'rem' {
+ $x: 0.1rem;
+ }
+
+ padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
+
+}
+
+/// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp).
+/// @param {string} $svg SVG data URL.
+/// @return {string} Encoded SVG data URL.
+@function svg-url($svg) {
+
+ $svg: str-replace($svg, '"', '\'');
+ $svg: str-replace($svg, '%', '%25');
+ $svg: str-replace($svg, '<', '%3C');
+ $svg: str-replace($svg, '>', '%3E');
+ $svg: str-replace($svg, '&', '%26');
+ $svg: str-replace($svg, '#', '%23');
+ $svg: str-replace($svg, '{', '%7B');
+ $svg: str-replace($svg, '}', '%7D');
+ $svg: str-replace($svg, ';', '%3B');
+
+ @return url("data:image/svg+xml;charset=utf8,#{$svg}");
+
+}
\ No newline at end of file
diff --git a/assets/sass/libs/_vars.scss b/assets/sass/libs/_vars.scss
new file mode 100644
index 0000000..1ea881d
--- /dev/null
+++ b/assets/sass/libs/_vars.scss
@@ -0,0 +1,55 @@
+// Misc.
+ $misc: (
+ z-index-base: 10000
+ );
+
+// Duration.
+ $duration: (
+ transition: 0.2s,
+ fade-in: 1s
+ );
+
+// Size.
+ $size: (
+ element-margin: 2em
+ );
+
+// Font.
+ $font: (
+ family: ('Source Sans Pro', 'sans-serif'),
+ weight: 300,
+ weight-bold: 900
+ );
+
+// Palette.
+ $palette: (
+ bg: #ffffff,
+ bg-alt: #f5f6f7,
+ fg: #39454b,
+ fg-bold: #39454b,
+ border: #e5e6e7,
+ dark: (
+ bg: #39454b,
+ fg: #ffffff,
+ fg-bold: #ffffff,
+ border: #ffffff
+ ),
+ accent1: (
+ bg: #98c593,
+ fg: #ffffff,
+ fg-bold: #ffffff,
+ border: #ffffff
+ ),
+ accent2: (
+ bg: #9ac8e9,
+ fg: #ffffff,
+ fg-bold: #ffffff,
+ border: #ffffff
+ ),
+ accent3: (
+ bg: #39454b,
+ fg: rgba(185,186,187,0.5),
+ fg-bold: rgba(185,186,187,1),
+ border: rgba(185,186,187,0.2)
+ )
+ );
\ No newline at end of file
diff --git a/assets/sass/libs/_vendor.scss b/assets/sass/libs/_vendor.scss
new file mode 100644
index 0000000..6599a3f
--- /dev/null
+++ b/assets/sass/libs/_vendor.scss
@@ -0,0 +1,376 @@
+// vendor.scss v1.0 | @ajlkn | MIT licensed */
+
+// Vars.
+
+ /// Vendor prefixes.
+ /// @var {list}
+ $vendor-prefixes: (
+ '-moz-',
+ '-webkit-',
+ '-ms-',
+ ''
+ );
+
+ /// Properties that should be vendorized.
+ /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
+ /// @var {list}
+ $vendor-properties: (
+
+ // Animation.
+ 'animation',
+ 'animation-delay',
+ 'animation-direction',
+ 'animation-duration',
+ 'animation-fill-mode',
+ 'animation-iteration-count',
+ 'animation-name',
+ 'animation-play-state',
+ 'animation-timing-function',
+
+ // Appearance.
+ 'appearance',
+
+ // Backdrop filter.
+ 'backdrop-filter',
+
+ // Background image options.
+ 'background-clip',
+ 'background-origin',
+ 'background-size',
+
+ // Box sizing.
+ 'box-sizing',
+
+ // Clip path.
+ 'clip-path',
+
+ // Filter effects.
+ 'filter',
+
+ // Flexbox.
+ 'align-content',
+ 'align-items',
+ 'align-self',
+ 'flex',
+ 'flex-basis',
+ 'flex-direction',
+ 'flex-flow',
+ 'flex-grow',
+ 'flex-shrink',
+ 'flex-wrap',
+ 'justify-content',
+ 'order',
+
+ // Font feature.
+ 'font-feature-settings',
+ 'font-language-override',
+ 'font-variant-ligatures',
+
+ // Font kerning.
+ 'font-kerning',
+
+ // Fragmented borders and backgrounds.
+ 'box-decoration-break',
+
+ // Grid layout.
+ 'grid-column',
+ 'grid-column-align',
+ 'grid-column-end',
+ 'grid-column-start',
+ 'grid-row',
+ 'grid-row-align',
+ 'grid-row-end',
+ 'grid-row-start',
+ 'grid-template-columns',
+ 'grid-template-rows',
+
+ // Hyphens.
+ 'hyphens',
+ 'word-break',
+
+ // Masks.
+ 'mask',
+ 'mask-border',
+ 'mask-border-outset',
+ 'mask-border-repeat',
+ 'mask-border-slice',
+ 'mask-border-source',
+ 'mask-border-width',
+ 'mask-clip',
+ 'mask-composite',
+ 'mask-image',
+ 'mask-origin',
+ 'mask-position',
+ 'mask-repeat',
+ 'mask-size',
+
+ // Multicolumn.
+ 'break-after',
+ 'break-before',
+ 'break-inside',
+ 'column-count',
+ 'column-fill',
+ 'column-gap',
+ 'column-rule',
+ 'column-rule-color',
+ 'column-rule-style',
+ 'column-rule-width',
+ 'column-span',
+ 'column-width',
+ 'columns',
+
+ // Object fit.
+ 'object-fit',
+ 'object-position',
+
+ // Regions.
+ 'flow-from',
+ 'flow-into',
+ 'region-fragment',
+
+ // Scroll snap points.
+ 'scroll-snap-coordinate',
+ 'scroll-snap-destination',
+ 'scroll-snap-points-x',
+ 'scroll-snap-points-y',
+ 'scroll-snap-type',
+
+ // Shapes.
+ 'shape-image-threshold',
+ 'shape-margin',
+ 'shape-outside',
+
+ // Tab size.
+ 'tab-size',
+
+ // Text align last.
+ 'text-align-last',
+
+ // Text decoration.
+ 'text-decoration-color',
+ 'text-decoration-line',
+ 'text-decoration-skip',
+ 'text-decoration-style',
+
+ // Text emphasis.
+ 'text-emphasis',
+ 'text-emphasis-color',
+ 'text-emphasis-position',
+ 'text-emphasis-style',
+
+ // Text size adjust.
+ 'text-size-adjust',
+
+ // Text spacing.
+ 'text-spacing',
+
+ // Transform.
+ 'transform',
+ 'transform-origin',
+
+ // Transform 3D.
+ 'backface-visibility',
+ 'perspective',
+ 'perspective-origin',
+ 'transform-style',
+
+ // Transition.
+ 'transition',
+ 'transition-delay',
+ 'transition-duration',
+ 'transition-property',
+ 'transition-timing-function',
+
+ // Unicode bidi.
+ 'unicode-bidi',
+
+ // User select.
+ 'user-select',
+
+ // Writing mode.
+ 'writing-mode',
+
+ );
+
+ /// Values that should be vendorized.
+ /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
+ /// @var {list}
+ $vendor-values: (
+
+ // Cross fade.
+ 'cross-fade',
+
+ // Element function.
+ 'element',
+
+ // Filter function.
+ 'filter',
+
+ // Flexbox.
+ 'flex',
+ 'inline-flex',
+
+ // Grab cursors.
+ 'grab',
+ 'grabbing',
+
+ // Gradients.
+ 'linear-gradient',
+ 'repeating-linear-gradient',
+ 'radial-gradient',
+ 'repeating-radial-gradient',
+
+ // Grid layout.
+ 'grid',
+ 'inline-grid',
+
+ // Image set.
+ 'image-set',
+
+ // Intrinsic width.
+ 'max-content',
+ 'min-content',
+ 'fit-content',
+ 'fill',
+ 'fill-available',
+ 'stretch',
+
+ // Sticky position.
+ 'sticky',
+
+ // Transform.
+ 'transform',
+
+ // Zoom cursors.
+ 'zoom-in',
+ 'zoom-out',
+
+ );
+
+// Functions.
+
+ /// Removes a specific item from a list.
+ /// @author Hugo Giraudel
+ /// @param {list} $list List.
+ /// @param {integer} $index Index.
+ /// @return {list} Updated list.
+ @function remove-nth($list, $index) {
+
+ $result: null;
+
+ @if type-of($index) != number {
+ @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
+ }
+ @else if $index == 0 {
+ @warn "List index 0 must be a non-zero integer for `remove-nth`.";
+ }
+ @else if abs($index) > length($list) {
+ @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
+ }
+ @else {
+
+ $result: ();
+ $index: if($index < 0, length($list) + $index + 1, $index);
+
+ @for $i from 1 through length($list) {
+
+ @if $i != $index {
+ $result: append($result, nth($list, $i));
+ }
+
+ }
+
+ }
+
+ @return $result;
+
+ }
+
+ /// Replaces a substring within another string.
+ /// @author Hugo Giraudel
+ /// @param {string} $string String.
+ /// @param {string} $search Substring.
+ /// @param {string} $replace Replacement.
+ /// @return {string} Updated string.
+ @function str-replace($string, $search, $replace: '') {
+
+ $index: str-index($string, $search);
+
+ @if $index {
+ @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
+ }
+
+ @return $string;
+
+ }
+
+ /// Replaces a substring within each string in a list.
+ /// @param {list} $strings List of strings.
+ /// @param {string} $search Substring.
+ /// @param {string} $replace Replacement.
+ /// @return {list} Updated list of strings.
+ @function str-replace-all($strings, $search, $replace: '') {
+
+ @each $string in $strings {
+ $strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace));
+ }
+
+ @return $strings;
+
+ }
+
+// Mixins.
+
+ /// Wraps @content in vendorized keyframe blocks.
+ /// @param {string} $name Name.
+ @mixin keyframes($name) {
+
+ @-moz-keyframes #{$name} { @content; }
+ @-webkit-keyframes #{$name} { @content; }
+ @-ms-keyframes #{$name} { @content; }
+ @keyframes #{$name} { @content; }
+
+ }
+
+ /// Vendorizes a declaration's property and/or value(s).
+ /// @param {string} $property Property.
+ /// @param {mixed} $value String/list of value(s).
+ @mixin vendor($property, $value) {
+
+ // Determine if property should expand.
+ $expandProperty: index($vendor-properties, $property);
+
+ // Determine if value should expand (and if so, add '-prefix-' placeholder).
+ $expandValue: false;
+
+ @each $x in $value {
+ @each $y in $vendor-values {
+ @if $y == str-slice($x, 1, str-length($y)) {
+
+ $value: set-nth($value, index($value, $x), '-prefix-' + $x);
+ $expandValue: true;
+
+ }
+ }
+ }
+
+ // Expand property?
+ @if $expandProperty {
+ @each $vendor in $vendor-prefixes {
+ #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
+ }
+ }
+
+ // Expand just the value?
+ @elseif $expandValue {
+ @each $vendor in $vendor-prefixes {
+ #{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
+ }
+ }
+
+ // Neither? Treat them as a normal declaration.
+ @else {
+ #{$property}: #{$value};
+ }
+
+ }
\ No newline at end of file
diff --git a/assets/sass/main.scss b/assets/sass/main.scss
new file mode 100644
index 0000000..808d169
--- /dev/null
+++ b/assets/sass/main.scss
@@ -0,0 +1,110 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+@import 'libs/vendor';
+@import 'libs/breakpoints';
+@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900');
+@import url('fontawesome-all.min.css');
+
+/*
+ Big Picture by HTML5 UP
+ html5up.net | @ajlkn
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+// Breakpoints.
+
+ @include breakpoints((
+ xxlarge: ( 1681px, 1920px ),
+ xlarge: ( 1281px, 1680px ),
+ large: ( 1001px, 1280px ),
+ medium: ( 737px, 1000px ),
+ small: ( 481px, 736px ),
+ xsmall: ( null, 480px )
+ ));
+
+// Base.
+
+ @import 'base/reset';
+ @import 'base/page';
+ @import 'base/typography';
+
+// Component.
+
+ @import 'components/box';
+ @import 'components/button';
+ @import 'components/form';
+ @import 'components/icon';
+ @import 'components/image';
+ @import 'components/list';
+ @import 'components/actions';
+ @import 'components/icons';
+ @import 'components/section';
+ @import 'components/table';
+ @import 'components/poptrox-popup';
+ @import 'components/gallery';
+
+// Layout.
+
+ @import 'layout/header';
+ @import 'layout/main';
+ @import 'layout/footer';
+
+/* Intro */
+
+ #intro {
+ background: url('images/overlay.png'), url('../../images/intro.jpg');
+ background-size: 256px 256px, cover;
+ background-attachment: fixed, fixed;
+ background-position: top left, bottom center;
+ background-repeat: repeat, no-repeat;
+ }
+
+/* One */
+
+ #one {
+ background: url('images/overlay.png'), url('../../images/one.jpg');
+ background-size: 256px 256px, cover;
+ background-attachment: fixed, fixed;
+ background-position: top left, center center;
+ }
+
+/* Two */
+
+ #two {
+ background: url('images/overlay.png'), url('../../images/two.jpg');
+ background-size: 256px 256px, cover;
+ background-attachment: fixed, fixed;
+ background-position: top left, center center;
+ }
+
+/* Contact */
+
+ #contact {
+ overflow: hidden;
+ padding-bottom: 0;
+
+ .box {
+ @include vendor('transition', 'transform #{_duration(fade-in)} ease');
+ @include vendor('transform', 'translateY(0)');
+ position: relative;
+ }
+
+ &.inactive {
+ .box {
+ @include vendor('transform', 'translateY(100%)');
+ }
+ }
+
+ @include breakpoint('<=small') {
+ .box {
+ padding: 1.5em 1.5em 2em 1.5em;
+ }
+ }
+
+ @include breakpoint('<=xsmall') {
+ .box {
+ padding: 1em 1em 2em 1em;
+ }
+ }
+ }
\ No newline at end of file
diff --git a/assets/sass/noscript.scss b/assets/sass/noscript.scss
new file mode 100644
index 0000000..9a926b4
--- /dev/null
+++ b/assets/sass/noscript.scss
@@ -0,0 +1,19 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+@import 'libs/vendor';
+@import 'libs/breakpoints';
+
+/*
+ Big Picture by HTML5 UP
+ html5up.net | @ajlkn
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+/* Loader */
+
+ body {
+ &:before, &:after {
+ display: none;
+ }
+ }
\ No newline at end of file
diff --git a/assets/webfonts/fa-brands-400.eot b/assets/webfonts/fa-brands-400.eot
new file mode 100644
index 0000000..cba6c6c
Binary files /dev/null and b/assets/webfonts/fa-brands-400.eot differ
diff --git a/assets/webfonts/fa-brands-400.svg b/assets/webfonts/fa-brands-400.svg
new file mode 100644
index 0000000..b9881a4
--- /dev/null
+++ b/assets/webfonts/fa-brands-400.svg
@@ -0,0 +1,3717 @@
+
+
+
diff --git a/assets/webfonts/fa-brands-400.ttf b/assets/webfonts/fa-brands-400.ttf
new file mode 100644
index 0000000..8d75ded
Binary files /dev/null and b/assets/webfonts/fa-brands-400.ttf differ
diff --git a/assets/webfonts/fa-brands-400.woff b/assets/webfonts/fa-brands-400.woff
new file mode 100644
index 0000000..3375bef
Binary files /dev/null and b/assets/webfonts/fa-brands-400.woff differ
diff --git a/assets/webfonts/fa-brands-400.woff2 b/assets/webfonts/fa-brands-400.woff2
new file mode 100644
index 0000000..402f81c
Binary files /dev/null and b/assets/webfonts/fa-brands-400.woff2 differ
diff --git a/assets/webfonts/fa-regular-400.eot b/assets/webfonts/fa-regular-400.eot
new file mode 100644
index 0000000..a4e5989
Binary files /dev/null and b/assets/webfonts/fa-regular-400.eot differ
diff --git a/assets/webfonts/fa-regular-400.svg b/assets/webfonts/fa-regular-400.svg
new file mode 100644
index 0000000..463af27
--- /dev/null
+++ b/assets/webfonts/fa-regular-400.svg
@@ -0,0 +1,801 @@
+
+
+
diff --git a/assets/webfonts/fa-regular-400.ttf b/assets/webfonts/fa-regular-400.ttf
new file mode 100644
index 0000000..7157aaf
Binary files /dev/null and b/assets/webfonts/fa-regular-400.ttf differ
diff --git a/assets/webfonts/fa-regular-400.woff b/assets/webfonts/fa-regular-400.woff
new file mode 100644
index 0000000..ad077c6
Binary files /dev/null and b/assets/webfonts/fa-regular-400.woff differ
diff --git a/assets/webfonts/fa-regular-400.woff2 b/assets/webfonts/fa-regular-400.woff2
new file mode 100644
index 0000000..5632894
Binary files /dev/null and b/assets/webfonts/fa-regular-400.woff2 differ
diff --git a/assets/webfonts/fa-solid-900.eot b/assets/webfonts/fa-solid-900.eot
new file mode 100644
index 0000000..e994171
Binary files /dev/null and b/assets/webfonts/fa-solid-900.eot differ
diff --git a/assets/webfonts/fa-solid-900.svg b/assets/webfonts/fa-solid-900.svg
new file mode 100644
index 0000000..00296e9
--- /dev/null
+++ b/assets/webfonts/fa-solid-900.svg
@@ -0,0 +1,5034 @@
+
+
+
diff --git a/assets/webfonts/fa-solid-900.ttf b/assets/webfonts/fa-solid-900.ttf
new file mode 100644
index 0000000..25abf38
Binary files /dev/null and b/assets/webfonts/fa-solid-900.ttf differ
diff --git a/assets/webfonts/fa-solid-900.woff b/assets/webfonts/fa-solid-900.woff
new file mode 100644
index 0000000..23ee663
Binary files /dev/null and b/assets/webfonts/fa-solid-900.woff differ
diff --git a/assets/webfonts/fa-solid-900.woff2 b/assets/webfonts/fa-solid-900.woff2
new file mode 100644
index 0000000..2217164
Binary files /dev/null and b/assets/webfonts/fa-solid-900.woff2 differ
diff --git a/images/depression.jpg b/images/depression.jpg
new file mode 100644
index 0000000..3da2dcf
Binary files /dev/null and b/images/depression.jpg differ
diff --git a/images/depression1.jpg b/images/depression1.jpg
new file mode 100644
index 0000000..7f798ca
Binary files /dev/null and b/images/depression1.jpg differ
diff --git a/images/design.jpg b/images/design.jpg
new file mode 100644
index 0000000..6076db7
Binary files /dev/null and b/images/design.jpg differ
diff --git a/images/design1.jpg b/images/design1.jpg
new file mode 100644
index 0000000..b20e078
Binary files /dev/null and b/images/design1.jpg differ
diff --git a/images/eating.jpg b/images/eating.jpg
new file mode 100644
index 0000000..703045f
Binary files /dev/null and b/images/eating.jpg differ
diff --git a/images/eating1.jpg b/images/eating1.jpg
new file mode 100644
index 0000000..bb5d195
Binary files /dev/null and b/images/eating1.jpg differ
diff --git a/images/fulls/01.jpg b/images/fulls/01.jpg
new file mode 100644
index 0000000..7a82c04
Binary files /dev/null and b/images/fulls/01.jpg differ
diff --git a/images/fulls/02.jpg b/images/fulls/02.jpg
new file mode 100644
index 0000000..6076db7
Binary files /dev/null and b/images/fulls/02.jpg differ
diff --git a/images/fulls/020.jpg b/images/fulls/020.jpg
new file mode 100644
index 0000000..2094262
Binary files /dev/null and b/images/fulls/020.jpg differ
diff --git a/images/fulls/03.jpg b/images/fulls/03.jpg
new file mode 100644
index 0000000..ef6f83a
Binary files /dev/null and b/images/fulls/03.jpg differ
diff --git a/images/fulls/04.jpg b/images/fulls/04.jpg
new file mode 100644
index 0000000..7a8525c
Binary files /dev/null and b/images/fulls/04.jpg differ
diff --git a/images/fulls/05.jpg b/images/fulls/05.jpg
new file mode 100644
index 0000000..281562c
Binary files /dev/null and b/images/fulls/05.jpg differ
diff --git a/images/fulls/06.jpg b/images/fulls/06.jpg
new file mode 100644
index 0000000..b9e1598
Binary files /dev/null and b/images/fulls/06.jpg differ
diff --git a/images/intro.jpg b/images/intro.jpg
new file mode 100644
index 0000000..8483d9e
Binary files /dev/null and b/images/intro.jpg differ
diff --git a/images/intro1.jpg b/images/intro1.jpg
new file mode 100644
index 0000000..7f798ca
Binary files /dev/null and b/images/intro1.jpg differ
diff --git a/images/recs.jpg b/images/recs.jpg
new file mode 100644
index 0000000..e076a73
Binary files /dev/null and b/images/recs.jpg differ
diff --git a/images/recs1.jpg b/images/recs1.jpg
new file mode 100644
index 0000000..bb5d195
Binary files /dev/null and b/images/recs1.jpg differ
diff --git a/images/thumbs/01.jpg b/images/thumbs/01.jpg
new file mode 100644
index 0000000..6076db7
Binary files /dev/null and b/images/thumbs/01.jpg differ
diff --git a/images/thumbs/010.jpg b/images/thumbs/010.jpg
new file mode 100644
index 0000000..b4e7822
Binary files /dev/null and b/images/thumbs/010.jpg differ
diff --git a/images/thumbs/02.jpg b/images/thumbs/02.jpg
new file mode 100644
index 0000000..a02f60d
Binary files /dev/null and b/images/thumbs/02.jpg differ
diff --git a/images/thumbs/03.jpg b/images/thumbs/03.jpg
new file mode 100644
index 0000000..d4690d4
Binary files /dev/null and b/images/thumbs/03.jpg differ
diff --git a/images/thumbs/04.jpg b/images/thumbs/04.jpg
new file mode 100644
index 0000000..bcc9bad
Binary files /dev/null and b/images/thumbs/04.jpg differ
diff --git a/images/thumbs/05.jpg b/images/thumbs/05.jpg
new file mode 100644
index 0000000..2fe08e6
Binary files /dev/null and b/images/thumbs/05.jpg differ
diff --git a/images/thumbs/06.jpg b/images/thumbs/06.jpg
new file mode 100644
index 0000000..e8e2cf2
Binary files /dev/null and b/images/thumbs/06.jpg differ
diff --git a/images/thumbs/eating.jpg b/images/thumbs/eating.jpg
new file mode 100644
index 0000000..703045f
Binary files /dev/null and b/images/thumbs/eating.jpg differ