').addClass(settings.dotsClass).appendTo(this.$element)).addClass('disabled');
+
+ this._controls.$absolute.on('click', 'button', $.proxy(function(e) {
+ var index = $(e.target).parent().is(this._controls.$absolute)
+ ? $(e.target).index() : $(e.target).parent().index();
+
+ e.preventDefault();
+
+ this.to(index, settings.dotsSpeed);
+ }, this));
+
+ /*$el.on('focusin', function() {
+ $(document).off(".carousel");
+
+ $(document).on('keydown.carousel', function(e) {
+ if(e.keyCode == 37) {
+ $el.trigger('prev.owl')
+ }
+ if(e.keyCode == 39) {
+ $el.trigger('next.owl')
+ }
+ });
+ });*/
+
+ // override public methods of the carousel
+ for (override in this._overrides) {
+ this._core[override] = $.proxy(this[override], this);
+ }
+ };
+
+ /**
+ * Destroys the plugin.
+ * @protected
+ */
+ Navigation.prototype.destroy = function() {
+ var handler, control, property, override, settings;
+ settings = this._core.settings;
+
+ for (handler in this._handlers) {
+ this.$element.off(handler, this._handlers[handler]);
+ }
+ for (control in this._controls) {
+ if (control === '$relative' && settings.navContainer) {
+ this._controls[control].html('');
+ } else {
+ this._controls[control].remove();
+ }
+ }
+ for (override in this.overides) {
+ this._core[override] = this._overrides[override];
+ }
+ for (property in Object.getOwnPropertyNames(this)) {
+ typeof this[property] != 'function' && (this[property] = null);
+ }
+ };
+
+ /**
+ * Updates the internal state.
+ * @protected
+ */
+ Navigation.prototype.update = function() {
+ var i, j, k,
+ lower = this._core.clones().length / 2,
+ upper = lower + this._core.items().length,
+ maximum = this._core.maximum(true),
+ settings = this._core.settings,
+ size = settings.center || settings.autoWidth || settings.dotsData
+ ? 1 : settings.dotsEach || settings.items;
+
+ if (settings.slideBy !== 'page') {
+ settings.slideBy = Math.min(settings.slideBy, settings.items);
+ }
+
+ if (settings.dots || settings.slideBy == 'page') {
+ this._pages = [];
+
+ for (i = lower, j = 0, k = 0; i < upper; i++) {
+ if (j >= size || j === 0) {
+ this._pages.push({
+ start: Math.min(maximum, i - lower),
+ end: i - lower + size - 1
+ });
+ if (Math.min(maximum, i - lower) === maximum) {
+ break;
+ }
+ j = 0, ++k;
+ }
+ j += this._core.mergers(this._core.relative(i));
+ }
+ }
+ };
+
+ /**
+ * Draws the user interface.
+ * @todo The option `dotsData` wont work.
+ * @protected
+ */
+ Navigation.prototype.draw = function() {
+ var difference,
+ settings = this._core.settings,
+ disabled = this._core.items().length <= settings.items,
+ index = this._core.relative(this._core.current()),
+ loop = settings.loop || settings.rewind;
+
+ this._controls.$relative.toggleClass('disabled', !settings.nav || disabled);
+
+ if (settings.nav) {
+ this._controls.$previous.toggleClass('disabled', !loop && index <= this._core.minimum(true));
+ this._controls.$next.toggleClass('disabled', !loop && index >= this._core.maximum(true));
+ }
+
+ this._controls.$absolute.toggleClass('disabled', !settings.dots || disabled);
+
+ if (settings.dots) {
+ difference = this._pages.length - this._controls.$absolute.children().length;
+
+ if (settings.dotsData && difference !== 0) {
+ this._controls.$absolute.html(this._templates.join(''));
+ } else if (difference > 0) {
+ this._controls.$absolute.append(new Array(difference + 1).join(this._templates[0]));
+ } else if (difference < 0) {
+ this._controls.$absolute.children().slice(difference).remove();
+ }
+
+ this._controls.$absolute.find('.active').removeClass('active');
+ this._controls.$absolute.children().eq($.inArray(this.current(), this._pages)).addClass('active');
+ }
+ };
+
+ /**
+ * Extends event data.
+ * @protected
+ * @param {Event} event - The event object which gets thrown.
+ */
+ Navigation.prototype.onTrigger = function(event) {
+ var settings = this._core.settings;
+
+ event.page = {
+ index: $.inArray(this.current(), this._pages),
+ count: this._pages.length,
+ size: settings && (settings.center || settings.autoWidth || settings.dotsData
+ ? 1 : settings.dotsEach || settings.items)
+ };
+ };
+
+ /**
+ * Gets the current page position of the carousel.
+ * @protected
+ * @returns {Number}
+ */
+ Navigation.prototype.current = function() {
+ var current = this._core.relative(this._core.current());
+ return $.grep(this._pages, $.proxy(function(page, index) {
+ return page.start <= current && page.end >= current;
+ }, this)).pop();
+ };
+
+ /**
+ * Gets the current succesor/predecessor position.
+ * @protected
+ * @returns {Number}
+ */
+ Navigation.prototype.getPosition = function(successor) {
+ var position, length,
+ settings = this._core.settings;
+
+ if (settings.slideBy == 'page') {
+ position = $.inArray(this.current(), this._pages);
+ length = this._pages.length;
+ successor ? ++position : --position;
+ position = this._pages[((position % length) + length) % length].start;
+ } else {
+ position = this._core.relative(this._core.current());
+ length = this._core.items().length;
+ successor ? position += settings.slideBy : position -= settings.slideBy;
+ }
+
+ return position;
+ };
+
+ /**
+ * Slides to the next item or page.
+ * @public
+ * @param {Number} [speed=false] - The time in milliseconds for the transition.
+ */
+ Navigation.prototype.next = function(speed) {
+ $.proxy(this._overrides.to, this._core)(this.getPosition(true), speed);
+ };
+
+ /**
+ * Slides to the previous item or page.
+ * @public
+ * @param {Number} [speed=false] - The time in milliseconds for the transition.
+ */
+ Navigation.prototype.prev = function(speed) {
+ $.proxy(this._overrides.to, this._core)(this.getPosition(false), speed);
+ };
+
+ /**
+ * Slides to the specified item or page.
+ * @public
+ * @param {Number} position - The position of the item or page.
+ * @param {Number} [speed] - The time in milliseconds for the transition.
+ * @param {Boolean} [standard=false] - Whether to use the standard behaviour or not.
+ */
+ Navigation.prototype.to = function(position, speed, standard) {
+ var length;
+
+ if (!standard && this._pages.length) {
+ length = this._pages.length;
+ $.proxy(this._overrides.to, this._core)(this._pages[((position % length) + length) % length].start, speed);
+ } else {
+ $.proxy(this._overrides.to, this._core)(position, speed);
+ }
+ };
+
+ $.fn.owlCarousel.Constructor.Plugins.Navigation = Navigation;
+
+})(window.Zepto || window.jQuery, window, document);
+
+/**
+ * Hash Plugin
+ * @version 2.3.4
+ * @author Artus Kolanowski
+ * @author David Deutsch
+ * @license The MIT License (MIT)
+ */
+;(function($, window, document, undefined) {
+ 'use strict';
+
+ /**
+ * Creates the hash plugin.
+ * @class The Hash Plugin
+ * @param {Owl} carousel - The Owl Carousel
+ */
+ var Hash = function(carousel) {
+ /**
+ * Reference to the core.
+ * @protected
+ * @type {Owl}
+ */
+ this._core = carousel;
+
+ /**
+ * Hash index for the items.
+ * @protected
+ * @type {Object}
+ */
+ this._hashes = {};
+
+ /**
+ * The carousel element.
+ * @type {jQuery}
+ */
+ this.$element = this._core.$element;
+
+ /**
+ * All event handlers.
+ * @protected
+ * @type {Object}
+ */
+ this._handlers = {
+ 'initialized.owl.carousel': $.proxy(function(e) {
+ if (e.namespace && this._core.settings.startPosition === 'URLHash') {
+ $(window).trigger('hashchange.owl.navigation');
+ }
+ }, this),
+ 'prepared.owl.carousel': $.proxy(function(e) {
+ if (e.namespace) {
+ var hash = $(e.content).find('[data-hash]').addBack('[data-hash]').attr('data-hash');
+
+ if (!hash) {
+ return;
+ }
+
+ this._hashes[hash] = e.content;
+ }
+ }, this),
+ 'changed.owl.carousel': $.proxy(function(e) {
+ if (e.namespace && e.property.name === 'position') {
+ var current = this._core.items(this._core.relative(this._core.current())),
+ hash = $.map(this._hashes, function(item, hash) {
+ return item === current ? hash : null;
+ }).join();
+
+ if (!hash || window.location.hash.slice(1) === hash) {
+ return;
+ }
+
+ window.location.hash = hash;
+ }
+ }, this)
+ };
+
+ // set default options
+ this._core.options = $.extend({}, Hash.Defaults, this._core.options);
+
+ // register the event handlers
+ this.$element.on(this._handlers);
+
+ // register event listener for hash navigation
+ $(window).on('hashchange.owl.navigation', $.proxy(function(e) {
+ var hash = window.location.hash.substring(1),
+ items = this._core.$stage.children(),
+ position = this._hashes[hash] && items.index(this._hashes[hash]);
+
+ if (position === undefined || position === this._core.current()) {
+ return;
+ }
+
+ this._core.to(this._core.relative(position), false, true);
+ }, this));
+ };
+
+ /**
+ * Default options.
+ * @public
+ */
+ Hash.Defaults = {
+ URLhashListener: false
+ };
+
+ /**
+ * Destroys the plugin.
+ * @public
+ */
+ Hash.prototype.destroy = function() {
+ var handler, property;
+
+ $(window).off('hashchange.owl.navigation');
+
+ for (handler in this._handlers) {
+ this._core.$element.off(handler, this._handlers[handler]);
+ }
+ for (property in Object.getOwnPropertyNames(this)) {
+ typeof this[property] != 'function' && (this[property] = null);
+ }
+ };
+
+ $.fn.owlCarousel.Constructor.Plugins.Hash = Hash;
+
+})(window.Zepto || window.jQuery, window, document);
+
+/**
+ * Support Plugin
+ *
+ * @version 2.3.4
+ * @author Vivid Planet Software GmbH
+ * @author Artus Kolanowski
+ * @author David Deutsch
+ * @license The MIT License (MIT)
+ */
+;(function($, window, document, undefined) {
+
+ var style = $('
').get(0).style,
+ prefixes = 'Webkit Moz O ms'.split(' '),
+ events = {
+ transition: {
+ end: {
+ WebkitTransition: 'webkitTransitionEnd',
+ MozTransition: 'transitionend',
+ OTransition: 'oTransitionEnd',
+ transition: 'transitionend'
+ }
+ },
+ animation: {
+ end: {
+ WebkitAnimation: 'webkitAnimationEnd',
+ MozAnimation: 'animationend',
+ OAnimation: 'oAnimationEnd',
+ animation: 'animationend'
+ }
+ }
+ },
+ tests = {
+ csstransforms: function() {
+ return !!test('transform');
+ },
+ csstransforms3d: function() {
+ return !!test('perspective');
+ },
+ csstransitions: function() {
+ return !!test('transition');
+ },
+ cssanimations: function() {
+ return !!test('animation');
+ }
+ };
+
+ function test(property, prefixed) {
+ var result = false,
+ upper = property.charAt(0).toUpperCase() + property.slice(1);
+
+ $.each((property + ' ' + prefixes.join(upper + ' ') + upper).split(' '), function(i, property) {
+ if (style[property] !== undefined) {
+ result = prefixed ? property : true;
+ return false;
+ }
+ });
+
+ return result;
+ }
+
+ function prefixed(property) {
+ return test(property, true);
+ }
+
+ if (tests.csstransitions()) {
+ /* jshint -W053 */
+ $.support.transition = new String(prefixed('transition'))
+ $.support.transition.end = events.transition.end[ $.support.transition ];
+ }
+
+ if (tests.cssanimations()) {
+ /* jshint -W053 */
+ $.support.animation = new String(prefixed('animation'))
+ $.support.animation.end = events.animation.end[ $.support.animation ];
+ }
+
+ if (tests.csstransforms()) {
+ /* jshint -W053 */
+ $.support.transform = new String(prefixed('transform'));
+ $.support.transform3d = tests.csstransforms3d();
+ }
+
+})(window.Zepto || window.jQuery, window, document);
diff --git a/theme_archit/static/src/js/owl.carousel.min.js b/theme_archit/static/src/js/owl.carousel.min.js
new file mode 100755
index 000000000..fbbffc534
--- /dev/null
+++ b/theme_archit/static/src/js/owl.carousel.min.js
@@ -0,0 +1,7 @@
+/**
+ * Owl Carousel v2.3.4
+ * Copyright 2013-2018 David Deutsch
+ * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
+ */
+!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},a.each(["onResize","onThrottledResize"],a.proxy(function(b,c){this._handlers[c]=a.proxy(this[c],this)},this)),a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a.charAt(0).toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Workers,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}e.Defaults={items:3,loop:!1,center:!1,rewind:!1,checkVisibility:!0,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,fallbackEasing:"swing",slideTransition:"",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Type={Event:"event",State:"state"},e.Plugins={},e.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(a){var b=this.settings.margin||"",c=!this.settings.autoWidth,d=this.settings.rtl,e={width:"auto","margin-left":d?b:"","margin-right":d?"":b};!c&&this.$stage.children().css(e),a.css=e}},{filter:["width","items","settings"],run:function(a){var b=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,c=null,d=this._items.length,e=!this.settings.autoWidth,f=[];for(a.items={merge:!1,width:b};d--;)c=this._mergers[d],c=this.settings.mergeFit&&Math.min(c,this.settings.items)||c,a.items.merge=c>1||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g>0;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i,g-=1;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.$stage.children(".center").removeClass("center"),this.settings.center&&this.$stage.children().eq(this.current()).addClass("center")}}],e.prototype.initializeStage=function(){this.$stage=this.$element.find("."+this.settings.stageClass),this.$stage.length||(this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+">",{class:this.settings.stageClass}).wrap(a("
",{class:this.settings.stageOuterClass})),this.$element.append(this.$stage.parent()))},e.prototype.initializeItems=function(){var b=this.$element.find(".owl-item");if(b.length)return this._items=b.get().map(function(b){return a(b)}),this._mergers=this._items.map(function(){return 1}),void this.refresh();this.replace(this.$element.children().not(this.$stage.parent())),this.isVisible()?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass)},e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var a,b,c;a=this.$element.find("img"),b=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,c=this.$element.children(b).width(),a.length&&c<=0&&this.preloadAutoWidthImages(a)}this.initializeStage(),this.initializeItems(),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.isVisible=function(){return!this.settings.checkVisibility||this.$element.is(":visible")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){this.enter("refreshing"),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$element.addClass(this.options.refreshClass),this.update(),this.$element.removeClass(this.options.refreshClass),this.leave("refreshing"),this.trigger("refreshed")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.isVisible()&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),!1!==this.settings.responsive&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var e=-1,f=30,g=this.width(),h=this.coordinates();return this.settings.freeDrag||a.each(h,a.proxy(function(a,i){return"left"===c&&b>i-f&&bi-g-f&&b",h[a+1]!==d?h[a+1]:i-g)&&(e="left"===c?a+1:a),-1===e},this)),this.settings.loop||(this.op(b,">",h[this.minimum()])?e=b=this.minimum():this.op(b,"<",h[this.maximum()])&&(e=b=this.maximum())),e},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"+(this.settings.slideTransition?" "+this.settings.slideTransition:"")}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){(a=this.normalize(a))!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){if(b=this._items.length)for(c=this._items[--b].width(),d=this.$element.width();b--&&!((c+=this._items[b].width()+this.settings.margin)>d););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2==0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=-1*f*g),a=c+e,(d=((a-h)%g+g)%g+h)!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.isVisible()&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){(a=this.normalize(a,!0))!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),!1!==this.settings.responsive&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].destroy();this.$stage.children(".cloned").remove(),this.$stage.unwrap(),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$stage.remove(),this.$element.removeClass(this.options.refreshClass).removeClass(this.options.loadingClass).removeClass(this.options.loadedClass).removeClass(this.options.rtlClass).removeClass(this.options.dragClass).removeClass(this.options.grabClass).attr("class",this.$element.attr("class").replace(new RegExp(this.options.responsiveClass+"-\\S+\\s","g"),"")).removeData("owl.carousel")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a":return d?ac;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&-1!==a.namespace.indexOf("owl")?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.isVisible(),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.isVisible()!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type)){var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&-1*e||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);for(c.lazyLoadEager>0&&(e+=c.lazyLoadEager,c.loop&&(g-=c.lazyLoadEager,e++));f++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src")||f.attr("data-srcset");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):f.is("source")?f.one("load.owl.lazy",a.proxy(function(){this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("srcset",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(c){this._core=c,this._previousHeight=null,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"===a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._intervalId=null;var d=this;a(b).on("load",function(){d._core.settings.autoHeight&&d.update()}),a(b).resize(function(){d._core.settings.autoHeight&&(null!=d._intervalId&&clearTimeout(d._intervalId),d._intervalId=setTimeout(function(){d.update()},250))})};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.settings.lazyLoad,e=this._core.$stage.children().toArray().slice(b,c),f=[],g=0;a.each(e,function(b,c){f.push(a(c).height())}),g=Math.max.apply(null,f),g<=1&&d&&this._previousHeight&&(g=this._previousHeight),this._previousHeight=g,this._core.$stage.parent().height(g).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com|be\-nocookie\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?"width:"+c.width+"px;height:"+c.height+"px;":"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(c){e='
',d=k.lazyLoad?a("
",{class:"owl-video-tn "+j,srcType:c}):a("
",{class:"owl-video-tn",style:"opacity:1;background-image:url("+c+")"}),b.after(d),b.after(e)};if(b.wrap(a("
",{class:"owl-video-wrapper",style:g})),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),c=a(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,
+animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push(''+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['‹ ','› '],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a('
').addClass(c.dotClass).append(a("")).prop("outerHTML")]),this._controls.$absolute=(c.dotsContainer?a(c.dotsContainer):a("").addClass(c.dotsClass).appendTo(this.$element)).addClass("disabled"),this._controls.$absolute.on("click","button",a.proxy(function(b){var d=a(b.target).parent().is(this._controls.$absolute)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(d,c.dotsSpeed)},this));for(b in this._overrides)this._core[b]=a.proxy(this[b],this)},e.prototype.destroy=function(){var a,b,c,d,e;e=this._core.settings;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)"$relative"===b&&e.navContainer?this._controls[b].html(""):this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},e.prototype.update=function(){var a,b,c,d=this._core.clones().length/2,e=d+this._core.items().length,f=this._core.maximum(!0),g=this._core.settings,h=g.center||g.autoWidth||g.dotsData?1:g.dotsEach||g.items;if("page"!==g.slideBy&&(g.slideBy=Math.min(g.slideBy,g.items)),g.dots||"page"==g.slideBy)for(this._pages=[],a=d,b=0,c=0;a
=h||0===b){if(this._pages.push({start:Math.min(f,a-d),end:a-d+h-1}),Math.min(f,a-d)===f)break;b=0,++c}b+=this._core.mergers(this._core.relative(a))}},e.prototype.draw=function(){var b,c=this._core.settings,d=this._core.items().length<=c.items,e=this._core.relative(this._core.current()),f=c.loop||c.rewind;this._controls.$relative.toggleClass("disabled",!c.nav||d),c.nav&&(this._controls.$previous.toggleClass("disabled",!f&&e<=this._core.minimum(!0)),this._controls.$next.toggleClass("disabled",!f&&e>=this._core.maximum(!0))),this._controls.$absolute.toggleClass("disabled",!c.dots||d),c.dots&&(b=this._pages.length-this._controls.$absolute.children().length,c.dotsData&&0!==b?this._controls.$absolute.html(this._templates.join("")):b>0?this._controls.$absolute.append(new Array(b+1).join(this._templates[0])):b<0&&this._controls.$absolute.children().slice(b).remove(),this._controls.$absolute.find(".active").removeClass("active"),this._controls.$absolute.children().eq(a.inArray(this.current(),this._pages)).addClass("active"))},e.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotsData?1:c.dotsEach||c.items)}},e.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,a.proxy(function(a,c){return a.start<=b&&a.end>=b},this)).pop()},e.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},e.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},e.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},e.prototype.to=function(b,c,d){var e;!d&&this._pages.length?(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c)):a.proxy(this._overrides.to,this._core)(b,c)},a.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(c){this._core=c,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(c){c.namespace&&"URLHash"===this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find("[data-hash]").addBack("[data-hash]").attr("data-hash");if(!c)return;this._hashes[c]=b.content}},this),"changed.owl.carousel":a.proxy(function(c){if(c.namespace&&"position"===c.property.name){var d=this._core.items(this._core.relative(this._core.current())),e=a.map(this._hashes,function(a,b){return a===d?b:null}).join();if(!e||b.location.hash.slice(1)===e)return;b.location.hash=e}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(a){var c=b.location.hash.substring(1),e=this._core.$stage.children(),f=this._hashes[c]&&e.index(this._hashes[c]);f!==d&&f!==this._core.current()&&this._core.to(this._core.relative(f),!1,!0)},this))};e.Defaults={URLhashListener:!1},e.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){function e(b,c){var e=!1,f=b.charAt(0).toUpperCase()+b.slice(1);return a.each((b+" "+h.join(f+" ")+f).split(" "),function(a,b){if(g[b]!==d)return e=!c||b,!1}),e}function f(a){return e(a,!0)}var g=a("").get(0).style,h="Webkit Moz O ms".split(" "),i={transition:{end:{WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",transition:"transitionend"}},animation:{end:{WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd",animation:"animationend"}}},j={csstransforms:function(){return!!e("transform")},csstransforms3d:function(){return!!e("perspective")},csstransitions:function(){return!!e("transition")},cssanimations:function(){return!!e("animation")}};j.csstransitions()&&(a.support.transition=new String(f("transition")),a.support.transition.end=i.transition.end[a.support.transition]),j.cssanimations()&&(a.support.animation=new String(f("animation")),a.support.animation.end=i.animation.end[a.support.animation]),j.csstransforms()&&(a.support.transform=new String(f("transform")),a.support.transform3d=j.csstransforms3d())}(window.Zepto||window.jQuery,window,document);
\ No newline at end of file
diff --git a/theme_archit/static/src/scss/_common.scss b/theme_archit/static/src/scss/_common.scss
new file mode 100755
index 000000000..c28b9dae1
--- /dev/null
+++ b/theme_archit/static/src/scss/_common.scss
@@ -0,0 +1,127 @@
+*:focus {
+ outline: 0 !important;
+}
+
+*button:focus {
+ border: none;
+ outline: none;
+ box-shadow: none;
+}
+
+* {
+ list-style-type: none;
+
+ font-family: $font-default;
+ font-size: 14px;
+ &:focus,
+ &:active {
+ outline: none !important;
+ }
+}
+
+*:hover {
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+*::selection {
+ color: rgb(199, 80, 95);
+ background-color: $color-brand;
+}
+
+*a,
+a:visited {
+ color: #990000;
+ text-decoration: none;
+}
+
+body {
+ // background-color: #ffffff; /* light gray */
+ // font-family:$font-third;
+ // font-weight: 500;
+ // font-size: 14px;
+ color: $color-text; /* dark gray */
+}
+
+.affix {
+ top: 0;
+ width: 100%;
+ z-index: 9999 !important;
+}
+// h1, h2, h3, h4, h5, h6 {
+
+// font-family:$font-default;
+// color: $color-black; }
+
+// .gap{
+// padding-top: 100px;
+// padding-bottom: 50px;
+// }
+
+// .gap2{
+// padding-top: 50px;
+
+// }
+
+.heading {
+ h3 {
+ color: $color-brand;
+ font-size: 25px;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ line-height: 2.8rem;
+ }
+ p {
+ text-align: center;
+ padding: 15px 110px;
+ font-size: 16px;
+ line-height: 2rem;
+
+ @media screen and(max-width:992px) {
+ padding: 15px 0px;
+ }
+ }
+}
+
+.sub_heading {
+ h3 {
+ color: $color-brand;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 70px;
+
+ padding-top: 100px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 60px;
+ }
+ }
+ p {
+ text-align: center;
+ color: $color-brand3;
+ font-size: 16px;
+ line-height: 2rem;
+ }
+}
+html {
+ scroll-behavior: smooth;
+}
+
+.back-to-top {
+ position: fixed;
+ bottom: 25px;
+ right: 25px;
+ display: none;
+ background-color: $color-brand4 !important;
+}
+
+@font-face {
+ font-family: myFirstFont;
+ src: url(./../fonts/OstrichSans-Medium.otf);
+}
+
+// div {
+// font-family: myFirstFont;
+// }
diff --git a/theme_archit/static/src/scss/_elements.scss b/theme_archit/static/src/scss/_elements.scss
new file mode 100755
index 000000000..e69de29bb
diff --git a/theme_archit/static/src/scss/_normalize.scss b/theme_archit/static/src/scss/_normalize.scss
new file mode 100755
index 000000000..eec96676e
--- /dev/null
+++ b/theme_archit/static/src/scss/_normalize.scss
@@ -0,0 +1,352 @@
+/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
+
+/* Document
+ ========================================================================== */
+
+/**
+ * 1. Correct the line height in all browsers.
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
+ */
+
+ html {
+ line-height: 1.15; /* 1 */
+ -webkit-text-size-adjust: 100%; /* 2 */
+ }
+
+ /* Sections
+ ========================================================================== */
+
+ /**
+ * Remove the margin in all browsers.
+ */
+
+ body {
+ margin: 0;
+ }
+
+ /**
+ * Render the `main` element consistently in IE.
+ */
+
+ main {
+ display: block;
+ }
+
+ /**
+ * Correct the font size and margin on `h1` elements within `section` and
+ * `article` contexts in Chrome, Firefox, and Safari.
+ */
+
+ h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+ }
+
+ /* Grouping content
+ ========================================================================== */
+
+ /**
+ * 1. Add the correct box sizing in Firefox.
+ * 2. Show the overflow in Edge and IE.
+ */
+
+ hr {
+ box-sizing: content-box; /* 1 */
+ height: 0; /* 1 */
+ overflow: visible; /* 2 */
+ }
+
+ /**
+ * 1. Correct the inheritance and scaling of font size in all browsers.
+ * 2. Correct the odd `em` font sizing in all browsers.
+ */
+
+ pre {
+ font-family: monospace, monospace; /* 1 */
+ font-size: 1em; /* 2 */
+ }
+
+ /* Text-level semantics
+ ========================================================================== */
+
+ /**
+ * Remove the gray background on active links in IE 10.
+ */
+
+ a {
+ background-color: transparent;
+ }
+
+ /**
+ * 1. Remove the bottom border in Chrome 57-
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
+ */
+
+ abbr[title] {
+ border-bottom: none; /* 1 */
+ text-decoration: underline; /* 2 */
+ text-decoration: underline dotted; /* 2 */
+ }
+
+ /**
+ * Add the correct font weight in Chrome, Edge, and Safari.
+ */
+
+ b,
+ strong {
+ font-weight: bolder;
+ }
+
+ /**
+ * 1. Correct the inheritance and scaling of font size in all browsers.
+ * 2. Correct the odd `em` font sizing in all browsers.
+ */
+
+ code,
+ kbd,
+ samp {
+ font-family: monospace, monospace; /* 1 */
+ font-size: 1em; /* 2 */
+ }
+
+ /**
+ * Add the correct font size in all browsers.
+ */
+
+ small {
+ font-size: 80%;
+ }
+
+ /**
+ * Prevent `sub` and `sup` elements from affecting the line height in
+ * all browsers.
+ */
+
+ sub,
+ sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+ }
+
+ sub {
+ bottom: -0.25em;
+ }
+
+ sup {
+ top: -0.5em;
+ }
+
+ /* Embedded content
+ ========================================================================== */
+
+ /**
+ * Remove the border on images inside links in IE 10.
+ */
+
+ img {
+ border-style: none;
+ }
+
+ /* Forms
+ ========================================================================== */
+
+ /**
+ * 1. Change the font styles in all browsers.
+ * 2. Remove the margin in Firefox and Safari.
+ */
+
+ button,
+ input,
+ optgroup,
+ select,
+ textarea {
+ font-family: inherit; /* 1 */
+ font-size: 100%; /* 1 */
+ line-height: 1.15; /* 1 */
+ margin: 0; /* 2 */
+ }
+
+ /**
+ * Show the overflow in IE.
+ * 1. Show the overflow in Edge.
+ */
+
+ button,
+ input { /* 1 */
+ overflow: visible;
+ }
+
+ /**
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
+ * 1. Remove the inheritance of text transform in Firefox.
+ */
+
+ button,
+ select { /* 1 */
+ text-transform: none;
+ }
+
+ /**
+ * Correct the inability to style clickable types in iOS and Safari.
+ */
+
+ button,
+ [type="button"],
+ [type="reset"],
+ [type="submit"] {
+ -webkit-appearance: button;
+ }
+
+ /**
+ * Remove the inner border and padding in Firefox.
+ */
+
+ button::-moz-focus-inner,
+ [type="button"]::-moz-focus-inner,
+ [type="reset"]::-moz-focus-inner,
+ [type="submit"]::-moz-focus-inner {
+ border-style: none;
+ padding: 0;
+ }
+
+ /**
+ * Restore the focus styles unset by the previous rule.
+ */
+
+ button:-moz-focusring,
+ [type="button"]:-moz-focusring,
+ [type="reset"]:-moz-focusring,
+ [type="submit"]:-moz-focusring {
+ outline: 1px dotted ButtonText;
+ }
+
+ /**
+ * Correct the padding in Firefox.
+ */
+
+ fieldset {
+ padding: 0.35em 0.75em 0.625em;
+ }
+
+ /**
+ * 1. Correct the text wrapping in Edge and IE.
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
+ * 3. Remove the padding so developers are not caught out when they zero out
+ * `fieldset` elements in all browsers.
+ */
+
+ legend {
+ box-sizing: border-box; /* 1 */
+ color: inherit; /* 2 */
+ display: table; /* 1 */
+ max-width: 100%; /* 1 */
+ padding: 0; /* 3 */
+ white-space: normal; /* 1 */
+ }
+
+ /**
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
+ */
+
+ progress {
+ vertical-align: baseline;
+ }
+
+ /**
+ * Remove the default vertical scrollbar in IE 10+.
+ */
+
+ textarea {
+ overflow: auto;
+ }
+
+ /**
+ * 1. Add the correct box sizing in IE 10.
+ * 2. Remove the padding in IE 10.
+ */
+
+ [type="checkbox"],
+ [type="radio"] {
+ box-sizing: border-box; /* 1 */
+ padding: 0; /* 2 */
+ }
+
+ /**
+ * Correct the cursor style of increment and decrement buttons in Chrome.
+ */
+
+ [type="number"]::-webkit-inner-spin-button,
+ [type="number"]::-webkit-outer-spin-button {
+ height: auto;
+ }
+
+ /**
+ * 1. Correct the odd appearance in Chrome and Safari.
+ * 2. Correct the outline style in Safari.
+ */
+
+ [type="search"] {
+ -webkit-appearance: textfield; /* 1 */
+ outline-offset: -2px; /* 2 */
+ }
+
+ /**
+ * Remove the inner padding in Chrome and Safari on macOS.
+ */
+
+ [type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+ }
+
+ /**
+ * 1. Correct the inability to style clickable types in iOS and Safari.
+ * 2. Change font properties to `inherit` in Safari.
+ */
+
+ ::-webkit-file-upload-button {
+ -webkit-appearance: button; /* 1 */
+ font: inherit; /* 2 */
+ }
+
+ /* Interactive
+ ===========================================
+ =============================== */
+
+ /*
+ * Add the correct display in Edge, IE 10+, and Firefox.
+ */
+
+ details {
+ display: block;
+ }
+
+ /*
+ * Add the correct display in all browsers.
+ */
+
+ summary {
+ display: list-item;
+ }
+
+ /* Misc
+ ========================================================================== */
+
+ /**
+ * Add the correct display in IE 10+.
+ */
+
+ template {
+ display: none;
+ }
+
+ /**
+ * Add the correct display in IE 10.
+ */
+
+ [hidden] {
+ display: none;
+ }
+
+
\ No newline at end of file
diff --git a/theme_archit/static/src/scss/_variables.scss b/theme_archit/static/src/scss/_variables.scss
new file mode 100755
index 000000000..13f49c588
--- /dev/null
+++ b/theme_archit/static/src/scss/_variables.scss
@@ -0,0 +1,61 @@
+
+//font
+
+$font-third:'Julius Sans One', sans-serif;
+$font-default:'Work Sans', sans-serif;
+
+
+//colors
+
+
+
+
+$color-brand:#191919;
+$color-brand2: #d4434c;
+$color-brand3:#d16b6d;
+$color-brand4: #f5f5f5;
+$color-brand5: #e8e8e8;
+$color-black:#000000;
+$color-white:#fff;
+$color-text:#535353;
+$color-grey:#b8b8b8;
+$color-green:#28a745;
+$color-button:#0069d9;
+$color-footer:#121725;
+$color-grey:#6c6a74;
+$color-hover:#e9c939;
+$color-border:#dedede;
+$color-transp:#3a3a3ab3;
+$color-h-bg:#f4f2f8;
+
+$select-border-color: #959191 !important;
+$select-focus-color: green;
+
+
+
+
+
+
+
+
+
+
+
+//font-size
+
+
+$font-h1:36px;
+$font-h2: 18px;
+$font-h3:36px;
+$font-h4: 25px;
+$font-h5:36px;
+$font-h6: 18px;
+$font-size-banner:60px;
+$font-heading:46px;
+$font-sub-heading:28px;
+$font-text:14px;
+
+
+
+
+
diff --git a/theme_archit/static/src/scss/components/_buttons.scss b/theme_archit/static/src/scss/components/_buttons.scss
new file mode 100755
index 000000000..5be26ec2f
--- /dev/null
+++ b/theme_archit/static/src/scss/components/_buttons.scss
@@ -0,0 +1,112 @@
+.btn {
+ outline: none !important;
+ box-shadow: none !important;
+ background: $color-brand;
+ border: none;
+ z-index: 3;
+ padding: 10px 15px;
+ &-primary {
+ background-color: transparent !important;
+ border-color: #fff;
+ padding: 12px 36px;
+ color: #fff !important;
+ font-size: 16px;
+ font-weight: 600;
+ border-radius: 0;
+ border: 3px solid !important;
+ -webkit-animation: mainFadeIn 2s forwards;
+ -o-animation: mainFadeIn 2s forwards;
+ animation: mainFadeIn 2s forwards;
+ animation-delay: 1.6s;
+ opacity: 0;
+
+ @media screen and(max-width:576px) {
+ padding: 10px 19px;
+ color: #fff !important;
+ font-size: 13px;
+ font-weight: 500;
+ }
+
+ &:hover {
+ background-color: darken($color-brand, 10%) !important;
+ border: 1px solid !important;
+ border-color: $color-brand !important;
+
+ color: $color-white;
+ }
+ }
+ &-primaryt {
+ background: $color-brand;
+ padding: 10px 20px;
+ border-radius: 3px;
+ font-size: 20px;
+ font-size: 16px;
+ color: $color-white;
+ border: 1px solid !important;
+ border-color: transparent !important;
+ @media screen and(max-width:768px) {
+ padding: 8px 8px !important;
+ font-size: 14px;
+ }
+ &:hover {
+ background-color: darken($color-brand, 10%) !important;
+ border: 1px solid !important;
+ border-color: $color-brand !important;
+
+ color: $color-white;
+ }
+ }
+ &-black {
+ background: $color-brand;
+ padding: 10px 20px;
+ border-radius: 0px;
+ font-size: 20px;
+ font-size: 16px;
+ color: $color-white;
+ border: 1px solid !important;
+ border-color: transparent !important;
+ letter-spacing: 2px;
+ -webkit-transition: all 0.3s ease-in;
+ -moz-transition: all 0.3s ease-in;
+ -o-transition: all 0.3s ease-in;
+ transition: all 0.3s ease-in;
+ &:hover {
+ background-color: darken($color-brand, 10%) !important;
+ border: 1px solid !important;
+ border-color: $color-brand !important;
+ -webkit-transition: all 0.3s ease-in;
+ -moz-transition: all 0.3s ease-in;
+ -o-transition: all 0.3s ease-in;
+ transition: all 0.3s ease-in;
+ color: $color-white;
+ }
+ }
+
+ &-error {
+ background-color: $color-brand !important;
+ padding: 12px 36px;
+ color: #fff !important;
+ font-size: 16px;
+ font-weight: 600;
+ border-radius: 0;
+ border: 3px solid !important;
+ border-color: $color-brand !important;
+
+ &:hover {
+ background-color: darken($color-brand, 10%) !important;
+ border: 3px solid !important;
+ border-color: $color-brand !important;
+
+ color: $color-white;
+ }
+ }
+}
+.btn-light {
+ color: #fff;
+ background-color: #191919 !important;
+
+ &:hover {
+ color: rgb(37, 37, 37);
+ background-color: #9c9c9c !important;
+ }
+}
diff --git a/theme_archit/static/src/scss/components/_components.scss b/theme_archit/static/src/scss/components/_components.scss
new file mode 100755
index 000000000..42c8a0ad4
--- /dev/null
+++ b/theme_archit/static/src/scss/components/_components.scss
@@ -0,0 +1 @@
+@import './buttons';
\ No newline at end of file
diff --git a/theme_archit/static/src/scss/components/_form.scss b/theme_archit/static/src/scss/components/_form.scss
new file mode 100755
index 000000000..e69de29bb
diff --git a/theme_archit/static/src/scss/components/_grid.scss b/theme_archit/static/src/scss/components/_grid.scss
new file mode 100755
index 000000000..e69de29bb
diff --git a/theme_archit/static/src/scss/layout/_banner.scss b/theme_archit/static/src/scss/layout/_banner.scss
new file mode 100755
index 000000000..a34a5a27e
--- /dev/null
+++ b/theme_archit/static/src/scss/layout/_banner.scss
@@ -0,0 +1,344 @@
+.banner {
+ margin-bottom: 100px;
+ @media screen and(max-width:768px) {
+ margin-bottom: 50px;
+ }
+ .banner_bg {
+ background-image: linear-gradient(#0003, #000000bf), url(./../img/banner/2.jpg);
+ justify-content: center;
+ height: 100vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ position: relative;
+ }
+ .banner_bg2 {
+ background-image: linear-gradient(#0003, #000000bf), url(./../img/banner/1.jpg);
+ justify-content: center;
+ height: 100vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ position: relative;
+
+ }
+ .banner_bg3 {
+ background-image: linear-gradient(#0003, #000000b5), url(./../img/banner/3.jpg);
+ justify-content: center;
+ height: 100vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+
+ }
+ .banner_content {
+ top: 70%;
+ position: absolute;
+ width: 100%;
+ @media screen and(max-width:576px) {
+ top: 65%;
+ }
+ }
+ .owl-carousel {
+ position: relative;
+ .owl-nav {
+ position: absolute;
+ display: none;
+ right: 0%;
+ bottom: 50%;
+ width: 100%;
+ text-align: center;
+ padding-top: 23px;
+ @media screen and(max-width:996px) {
+ right: 0%;
+ bottom: 20%;
+ }
+ @media screen and(max-width:576px) {
+ right: 0%;
+ bottom: 20%;
+ }
+ }
+ .owl-prev {
+ color: $color-white;
+ margin-right: 15px;
+ position: absolute;
+ left: 0;
+ &:hover {
+ color: $color-white;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+ padding-right: 15px;
+ i {
+ font-size: 45px;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+ }
+ }
+ i {
+ font-size: 45px;
+ padding: 15px;
+ margin-left: -50px;
+ @media screen and(max-width:576px) {
+ font-size: 28px;
+ }
+ }
+ }
+ .owl-next {
+ color: $color-white;
+ position: absolute;
+ right: 0;
+ &:hover {
+ color: $color-white;
+ padding-left: 15px !important;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+ i {
+ font-size: 45px;
+ padding: 15px;
+ }
+ }
+ i {
+ font-size: 45px;
+ padding: 15px;
+ @media screen and(max-width:576px) {
+ font-size: 28px;
+ }
+ }
+ }
+ }
+ .banner_lef {
+ .box {
+ width: 500px;
+ position: relative;
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+ .title {
+ width: 100%;
+ position: relative;
+ display: flex;
+ align-items: center;
+ height: 50px;
+ .block {
+ width: 0%;
+ height: inherit;
+ background: $color-brand;
+ position: absolute;
+ animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
+ animation-delay: 1s;
+ display: flex;
+ }
+ h1 {
+ -webkit-animation: mainFadeIn 2s forwards;
+ -o-animation: mainFadeIn 2s forwards;
+ animation: mainFadeIn 2s forwards;
+ animation-delay: 1.5s;
+ opacity: 0;
+ display: flex;
+ align-items: baseline;
+ position: relative;
+ color: $color-white;
+ font-size: 35px;
+ font-weight: 700;
+ letter-spacing: 1px;
+ text-transform: uppercase;
+ font-family: $font-third !important;
+ @media screen and(max-width:576px) {
+ font-size: 25px;
+ }
+ span {
+ width: 0px;
+ height: 0px;
+ -webkit-border-radius: 50%;
+ -moz-border-radius: 50%;
+ border-radius: 50%;
+ background: #ffb510;
+ -webkit-animation: load 0.6s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
+ animation: popIn 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
+ animation-delay: 2s;
+ margin-left: 5px;
+ margin-top: -50px;
+ position: absolute;
+ bottom: 13px;
+ right: -12px;
+ }
+ }
+ }
+ .role {
+ width: 100%;
+ position: relative;
+ display: flex;
+ align-items: center;
+ height: 30px;
+ margin-top: -10px;
+ @media screen and(max-width:992px) {
+ width: 100%;
+ position: relative;
+ display: flex;
+ align-items: center;
+ height: 30px;
+ margin-top: -232px;
+ }
+ @media screen and(max-width:576px) {
+ width: 100%;
+ position: relative;
+ display: flex;
+ align-items: center;
+ height: 30px;
+ margin-top: -150px;
+ }
+ .block {
+ width: 0%;
+ height: inherit;
+ background: $color-brand;
+ position: absolute;
+ animation: secBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
+ animation-delay: 2s;
+ display: flex;
+ }
+ p {
+ animation: secFadeIn 2s forwards;
+ animation-delay: 2.5s;
+ opacity: 0;
+ font-weight: 400;
+ color: $color-white;
+ font-size: 18px !important;
+ letter-spacing: 2px;
+ text-transform: uppercase;
+ }
+ }
+ }
+ }
+}
+.banner:hover {
+ transition: all 0.35s ease-out;
+ transform-origin: center left;
+ .owl-nav {
+ display: block !important;
+ }
+ .owl-prev {
+ i {
+ margin-left: 0 !important;
+ }
+ }
+}
+/* Feel free to change duration */
+.animated {
+ -webkit-animation-duration: 1000 ms;
+ animation-duration: 1000 ms;
+ -webkit-animation-fill-mode: both;
+ animation-fill-mode: both;
+}
+/* .owl-animated-out - only for current item */
+/* This is very important class. Use z-index if you want move Out item above In item */
+.owl-animated-out {
+ z-index: 1;
+}
+/* .owl-animated-in - only for upcoming item
+/* This is very important class. Use z-index if you want move In item above Out item */
+.owl-animated-in {
+ z-index: 0;
+}
+/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css: */
+.fadeOut {
+ -webkit-animation-name: fadeOut;
+ animation-name: fadeOut;
+}
+@-webkit-keyframes fadeOut {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@keyframes fadeOut {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@keyframes mainBlock {
+ 0% {
+ width: 0%;
+ left: 0;
+ }
+ 50% {
+ width: 100%;
+ left: 0;
+ }
+ 100% {
+ width: 0;
+ left: 100%;
+ }
+}
+@keyframes secBlock {
+ 0% {
+ width: 0%;
+ left: 0;
+ }
+ 50% {
+ width: 100%;
+ left: 0;
+ }
+ 100% {
+ width: 0;
+ left: 100%;
+ }
+}
+@keyframes mainFadeIn {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+@keyframes popIn {
+ 0% {
+ width: 0px;
+ height: 0px;
+ background: #e9d856;
+ border: 0px solid #ddd;
+ opacity: 0;
+ }
+ 50% {
+ width: 10px;
+ height: 10px;
+ background: #e9d856;
+ opacity: 1;
+ bottom: 45px;
+ }
+ 65% {
+ width: 7px;
+ height: 7px;
+ bottom: 0px;
+ width: 15px;
+ }
+ 80% {
+ width: 10px;
+ height: 10px;
+ bottom: 20px;
+ }
+ 100% {
+ width: 7px;
+ height: 7px;
+ background: #e9d856;
+ border: 0px solid #222;
+ bottom: 13px;
+ }
+}
+@keyframes secFadeIn {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 0.5;
+ }
+}
diff --git a/theme_archit/static/src/scss/layout/_footer.scss b/theme_archit/static/src/scss/layout/_footer.scss
new file mode 100755
index 000000000..6073e2ef5
--- /dev/null
+++ b/theme_archit/static/src/scss/layout/_footer.scss
@@ -0,0 +1,46 @@
+.footer {
+ .footer_top {
+ padding: 40px 0;
+ background: $color-brand4;
+ .footer_icon {
+ text-align: center;
+ }
+ a {
+ color: $color-brand;
+ margin-right: 15px;
+ &:hover {
+ color: $color-brand2;
+ }
+ span {
+ font-size: 25px;
+ }
+ }
+ }
+
+ .footer_bottom {
+ padding-top: 70px;
+ padding-bottom: 50px;
+ text-align: center;
+ background: $color-brand5;
+ span {
+ text-transform: uppercase;
+ color: $color-brand;
+ font-weight: 700;
+ font-size: 18px;
+ }
+
+ .bb{
+ display: block ruby;
+ }
+ a {
+ color: $color-brand;
+ text-decoration: none;
+ font-size: 16px;
+ display: block;
+ padding: 20px 0;
+ &:hover {
+ color: $color-brand3;
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/layout/_header.scss b/theme_archit/static/src/scss/layout/_header.scss
new file mode 100755
index 000000000..e69de29bb
diff --git a/theme_archit/static/src/scss/layout/_layouts.scss b/theme_archit/static/src/scss/layout/_layouts.scss
new file mode 100755
index 000000000..ade4f7eb7
--- /dev/null
+++ b/theme_archit/static/src/scss/layout/_layouts.scss
@@ -0,0 +1,5 @@
+@import './navigation';
+@import './banner';
+@import './product';
+@import './footer';
+@import './loader';
\ No newline at end of file
diff --git a/theme_archit/static/src/scss/layout/_loader.scss b/theme_archit/static/src/scss/layout/_loader.scss
new file mode 100755
index 000000000..9791251c3
--- /dev/null
+++ b/theme_archit/static/src/scss/layout/_loader.scss
@@ -0,0 +1,129 @@
+.no-js #loader {
+ display: none;
+}
+.js #loader {
+ display: block;
+ position: absolute;
+ left: 100px;
+ top: 0;
+}
+
+#i-w {
+ z-index: 9999;
+ visibility: visible;
+ -webkit-transform: translateY(0%);
+ transform: translateY(0%);
+ -webkit-transition: -webkit-transform 0.4s ease-in-out;
+ transition: transform 0.4s ease-in-out;
+ will-change: transform;
+}
+
+#i-w.loaded {
+ visibility: hidden;
+ -webkit-transform: translateY(-100%);
+ transform: translateY(-100%);
+ -webkit-transition: -webkit-transform 1.3s cubic-bezier(0.96, 0, 0.07, 1), visibility 0s 1.9s;
+ transition: transform 1.3s cubic-bezier(0.96, 0, 0.07, 1), visibility 0s 1.9s;
+}
+
+#i-w .itr {
+ z-index: 100000;
+ position: fixed;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ background: $color-brand;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+}
+
+#i-w {
+ position: fixed;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+}
+
+.main {
+ background: transparent !important;
+ // display: flex;
+ // flex-direction: column;
+ // min-height: 100vh;
+ // justify-content: center;
+ // align-items: center;
+ transform: translateY(0);
+ transition: transform 0.7s cubic-bezier(0.96, 0, 0.07, 1);
+ will-change: transform;
+}
+.main.fd {
+ transform: translateY(100%);
+ transition: transform 0.1s cubic-bezier(0.96, 0, 0.07, 1);
+}
+.hdg {
+ // font-family: Helvetica, sans-serif;
+ text-transform: uppercase;
+ text-align: center;
+ color: #000;
+ font-size: 18vw;
+}
+.itr-hdg {
+ font-family: myFirstFont !important;
+ text-transform: uppercase;
+ text-align: center;
+ color: $color-brand2;
+ font-size: 5vw;
+ opacity: 1;
+ visibility: hidden;
+ will-change: transform;
+ transform: translate3d(0, 150%, 0) skewY(18deg) scale(1);
+ animation: fd-i 1.3s 0.6s cubic-bezier(0.86, 0, 0.07, 1) forwards,
+ trlt-i 1.5s 1s cubic-bezier(0.23, 1, 0.32, 1) forwards, trlt-o 0.5s 2.9s cubic-bezier(0.23, 1, 0.32, 1) forwards,
+ fd-o 0.4s 3s ease forwards;
+}
+
+@keyframes trlt-i {
+ to {
+ -webkit-transform: translateZ(0);
+ transform: translateZ(0);
+ }
+}
+
+@keyframes trlt-o {
+ from {
+ -webkit-transform: translateZ(0);
+ transform: translateZ(0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, -150%, 0) skewY(0deg) scale(1);
+ transform: translate3d(0, -150%, 0) skewY(0deg) scale(1);
+ }
+}
+
+@keyframes fd-i {
+ 0% {
+ opacity: 0;
+ visibility: hidden;
+ }
+
+ to {
+ opacity: 1;
+ visibility: visible;
+ }
+}
+
+@keyframes fd-o {
+ 0% {
+ opacity: 1;
+ visibility: visible;
+ }
+
+ to {
+ opacity: 0;
+ visibility: hidden;
+ }
+}
diff --git a/theme_archit/static/src/scss/layout/_navigation.scss b/theme_archit/static/src/scss/layout/_navigation.scss
new file mode 100755
index 000000000..f56d88e1d
--- /dev/null
+++ b/theme_archit/static/src/scss/layout/_navigation.scss
@@ -0,0 +1,209 @@
+.fixed-top {
+ position: fixed !important;
+ top: 30px;
+ right: 0;
+ left: 0;
+ z-index: 1030;
+}
+.navbar {
+ -webkit-box-shadow: 0px 10px 8px 0px rgba(49, 49, 50, 0.15);
+ -moz-box-shadow: 0px 10px 8px 0px rgba(49, 49, 50, 0.15);
+ box-shadow: 0px 10px 8px 0px rgba(49, 49, 50, 0.15);
+ padding: 8px 42px;
+ border-radius: 24px;
+ .navbar-collapse {
+ transition: all 0.35s ease-out;
+ transform-origin: center left;
+ }
+ .navbar-nav {
+ width: 100%;
+ background: $color-white;
+ display: flex;
+ // margin-left: auto;
+ // justify-content: end;
+ // display: flex;
+ .nav-item {
+ padding: 0 15px;
+ text-align: center;
+ .active {
+ color: $color-black !important;
+ }
+ }
+ .nav-link {
+ color: $color-brand !important;
+ padding-left: 15px;
+ font-weight: 700;
+ transition: all 0.35s ease-out;
+ transform-origin: center left;
+ &:hover {
+ color: $color-grey;
+ }
+ img {
+ width: 100%;
+ max-width: 25px;
+ }
+ }
+ }
+ .nav-shop {
+ margin-left: auto;
+ .nav-link {
+ color: $color-black;
+ padding-left: 15px;
+ &:hover {
+ color: rgba(0, 0, 0, 0.747);
+ }
+ }
+ }
+}
+.bg-light {
+ background-color: rgb(255, 255, 255) !important;
+}
+.navbar-light {
+ .navbar-brand {
+ // color: black !important;
+ // font-size: 35px;
+ // font-family: $font-heading;
+ margin: auto;
+
+ max-width: 45px;
+ img {
+ width: 100%;
+ }
+ @media screen and(max-width:992px) {
+ margin: 0 !important;
+ }
+ @media screen and(max-width:768px) {
+ font-size: 25px;
+ }
+ }
+ .brand-shop {
+ color: $color-black !important;
+ }
+ .footer_icon {
+ margin-left: auto;
+ @media screen and(max-width:992px) {
+ text-align: center;
+ margin-top: 30px;
+ }
+ a {
+ color: $color-black;
+ margin-right: 15px;
+ &:hover {
+ color: $color-brand2;
+ }
+ }
+ }
+}
+.navbar-light .navbar-nav .active > .nav-link,
+.navbar-light .navbar-nav .nav-link.active,
+.navbar-light .navbar-nav .nav-link.show,
+.navbar-light .navbar-nav .show > .nav-link {
+ color: $color-brand;
+ border: 1px solid;
+ border-color: transparent;
+ padding-bottom: 10px;
+}
+.new {
+ fill: black;
+ &:hover {
+ fill: rgba(75, 75, 75, 0.747) !important;
+ }
+}
+.navbar-toggler span {
+ display: block;
+ background-color: #4f4f4f;
+ height: 3px;
+ width: 25px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ position: relative;
+ left: 0;
+ opacity: 1;
+ transition: all 0.35s ease-out;
+ transform-origin: center left;
+}
+.dropdown-menu.show {
+ display: block !important;
+}
+.dropdown {
+ .dropdown-menu {
+ position: static;
+ top: 90%;
+ left: 0%;
+ z-index: 1000;
+ display: none !important;
+ float: none;
+ min-width: 10rem;
+ padding: 0.5rem 0;
+ margin: 0.125rem 0 0;
+ font-size: 1rem;
+ color: #212529;
+ text-align: left;
+ list-style: none;
+ background-color: #ffffff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ border-radius: 0.25rem;
+ transition: all 0.5s;
+ }
+ &:hover {
+ .dropdown-menu {
+ display: block !important;
+ text-align: center;
+ -webkit-box-shadow: 0px 10px 18px 2px rgba(0, 0, 0, 0.35);
+ -moz-box-shadow: 0px 10px 18px 2px rgba(0, 0, 0, 0.35);
+ box-shadow: 0px 10px 18px 2px rgba(0, 0, 0, 0.35);
+ border-color: transparent !important;
+ border-bottom-color: $color-brand !important;
+ border: 2px solid;
+ }
+ }
+}
+.nav-item:hover .dropdown-menu {
+ .dropdown-item {
+ padding-top: 10px;
+ padding-bottom: 10px;
+ font-weight: 400;
+ &:hover {
+ background: #00000036;
+ border: none;
+ border-left: 1.5px solid #fff !important;
+ border-radius: 0px 50px 50px 0px;
+ padding-left: 30px;
+ }
+ }
+}
+/* top line needs a little padding */
+.navbar-toggler span:nth-child(1) {
+ margin-top: 0.3em;
+}
+/**
+ * Animate collapse into X.
+ */
+/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
+.navbar-toggler:not(.collapsed) span:nth-child(1) {
+ transform: translate(15%, -33%) rotate(45deg);
+}
+/* center line goes transparent */
+.navbar-toggler:not(.collapsed) span:nth-child(2) {
+ opacity: 0;
+}
+/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button */
+.navbar-toggler:not(.collapsed) span:nth-child(3) {
+ transform: translate(15%, 33%) rotate(-45deg);
+}
+/**
+ * Animate collapse open into hamburger menu
+ */
+/* top line moves back to initial position and rotates back to 0 degrees */
+.navbar-toggler span:nth-child(1) {
+ transform: translate(0%, 0%) rotate(0deg);
+}
+/* middle line goes back to regular color and opacity */
+.navbar-toggler span:nth-child(2) {
+ opacity: 1;
+}
+/* bottom line goes back to initial position and rotates back to 0 degrees */
+.navbar-toggler span:nth-child(3) {
+ transform: translate(0%, 0%) rotate(0deg);
+}
diff --git a/theme_archit/static/src/scss/layout/_product.scss b/theme_archit/static/src/scss/layout/_product.scss
new file mode 100755
index 000000000..e69de29bb
diff --git a/theme_archit/static/src/scss/pages/_404.scss b/theme_archit/static/src/scss/pages/_404.scss
new file mode 100755
index 000000000..651007d55
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_404.scss
@@ -0,0 +1,35 @@
+.error {
+ background-image: linear-gradient(#000000ab, #000000b5), url(./../img/banner/404/404.jpg);
+ height: 100vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+ .h-full {
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ }
+ .ct {
+ align-items: center;
+ display: flex;
+ h1 {
+ color: $color-white;
+ font-size: 10vw;
+ text-align: center;
+ margin: 0;
+ font-family: myFirstFont;
+ letter-spacing: 2rem;
+ }
+ p {
+ color: $color-white;
+ font-size: 2vw;
+ text-align: center;
+ }
+ .wrapper {
+ display: flex;
+ justify-content: center;
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_about.scss b/theme_archit/static/src/scss/pages/_about.scss
new file mode 100755
index 000000000..33f423e54
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_about.scss
@@ -0,0 +1,335 @@
+.about_main {
+ .banner {
+ background-image: linear-gradient(#0000003d, #0000003d), url(./../img/banner/about/about_bg.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+ font-family: myFirstFont;
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 240px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .about {
+ .heading {
+ padding-bottom: 30px;
+ h3 {
+ color: $color-brand;
+ font-size: 25px;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ line-height: 3rem;
+ }
+ p {
+ text-align: center;
+ padding-top: 15px;
+ font-size: 16px;
+ }
+ }
+ .wrapper_bg {
+ margin-top: 100px;
+ background-image: url(./../img/banner/about/team_bg.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+ font-family: myFirstFont;
+ @media screen and(max-width:768px) {
+ height: 60vh;
+ margin-top: 20px;
+ }
+ &::before {
+ position: absolute;
+ content: "";
+ background: rgba(0, 0, 0, 0.25);
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ z-index: 1;
+ }
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 135px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .team {
+ margin-top: 70px;
+ .card {
+ border: none;
+ .card-img-top {
+ border-radius: 0;
+ }
+ .card-body {
+ padding: 0;
+ margin-top: 20px;
+ .card-title {
+ padding-top: 15px;
+ text-align: center;
+ color: $color-brand;
+ font-size: 20px;
+ letter-spacing: 1px;
+ }
+ .card-text {
+ font-size: 16px;
+ font-variant: small-caps;
+ color: $color-text;
+ padding-top: 0px;
+ text-align: center;
+ }
+ }
+ }
+ }
+ }
+ .partners {
+ .wrapper {
+ margin-top: 50px;
+ padding-bottom: 50px;
+ .staff {
+ margin-top: 30px;
+ @media screen and(max-width:576px) {
+ margin-left: 20px;
+ }
+ h4 {
+ color: $color-brand;
+ font-size: 22px;
+ }
+ p {
+ font-size: 14px;
+ }
+ }
+ }
+ }
+ .recruit {
+ margin-top: 100px;
+ background-image: url(./../img/recruit/recruit.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+ font-family: myFirstFont;
+ @media screen and(max-width:768px) {
+ height: 60vh;
+ margin-top: 20px;
+ }
+ &::before {
+ position: absolute;
+ content: "";
+ background: rgba(0, 0, 0, 0.336);
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ z-index: 1;
+ }
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 135px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .fill_form {
+ margin-bottom: 150px;
+ .wrapper {
+ margin-top: 70px;
+ .position {
+ color: $color-brand;
+ font-size: 35px;
+ @media screen and(max-width:768px) {
+ padding-bottom: 20px;
+ }
+ }
+ .fill_left {
+ ul {
+ padding-left: 0;
+ margin-top: 40px;
+ list-style-type: disc !important ;
+ h4 {
+ color: $color-brand;
+ padding-bottom: 15px;
+ }
+ li {
+ padding-bottom: 10px;
+ &::before {
+ content: "\2022";
+ color: $color-brand;
+ font-weight: bold;
+ display: inline-block;
+ width: 1em;
+ }
+ }
+ }
+ form {
+ @media screen and(max-width:768px) {
+ margin-top: 20px;
+ }
+ .dropdownbox {
+ border: 1px solid !important;
+ box-shadow: none !important;
+ border-color: $select-border-color !important;
+ width: 55%;
+ border-radius: 0;
+ padding-bottom: 10px;
+ p {
+ padding: 5px 10px;
+ font-size: 1.25em;
+ line-height: 1.4em;
+ user-select: none;
+ -moz-user-select: none;
+ margin-top: 10px;
+ margin-bottom: 0;
+ /* Safari */
+ -khtml-user-select: none;
+ }
+ }
+ .dropdownbox:focus {
+ background-color: #fff !important;
+ border: 1px solid !important;
+ box-shadow: none !important;
+ border-color: $color-brand4 !important;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ border: 1px solid !important;
+ }
+ ul.menu {
+ position: relative;
+ width: 400px;
+ overflow: hidden;
+ height: 0;
+ margin-top: 10px;
+ -webkit-transition: all 0.3s ease-in;
+ -moz-transition: all 0.3s ease-in;
+ -o-transition: all 0.3s ease-in;
+ transition: all 0.3s ease-in;
+ /*-moz-transform:scale(0); */
+ background: transparent;
+ color: $color-brand;
+ cursor: pointer;
+ user-select: none;
+ -moz-user-select: none;
+ /* Safari */
+ -khtml-user-select: none;
+ }
+ ul.menu li {
+ padding: 2px 10px;
+ font-size: 1.25em;
+ line-height: 1.4em;
+ -webkit-transition: all 0.3s ease-in;
+ -moz-transition: all 0.3s ease-in;
+ -o-transition: all 0.3s ease-in;
+ transition: all 0.3s ease-in;
+ border-bottom: 1px dotted rgb(254, 238, 223);
+ }
+ ul.menu li:hover {
+ padding-left: 20px;
+ color: rgb(129, 111, 127);
+ background: rgb(254, 238, 223);
+ }
+ .menu.showMenu {
+ /*-moz-transform:scale(1);*/
+ height: 165px;
+ }
+ }
+ .contact-form {
+ margin-top: 70px;
+ .form-control {
+ display: block;
+ width: 100%;
+ height: calc(2.5em + 0.75rem + 2px);
+ padding: 0.375rem 0.75rem;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #495057;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgb(255, 255, 255) ;
+
+ border-bottom-color: #959191 !important;
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ border-radius: 0;
+ &:focus {
+ border: 1px solid !important;
+ box-shadow: none !important;
+ border-color: $select-border-color !important;
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ }
+ }
+ .input-block {
+ margin-bottom: 30px;
+ label {
+ color: $color-grey;
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_blank.scss b/theme_archit/static/src/scss/pages/_blank.scss
new file mode 100755
index 000000000..48198ce48
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_blank.scss
@@ -0,0 +1,18 @@
+.blank {
+ background-color: $color-white;
+ height: 100vh;
+ width: auto;
+ .wrapper {
+ position: relative;
+ height: 100vh;
+ h2 {
+ position: absolute;
+ font-size: 5vw;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ top: 43%;
+ left: 31%;
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_blog-single.scss b/theme_archit/static/src/scss/pages/_blog-single.scss
new file mode 100755
index 000000000..2b3d7a699
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_blog-single.scss
@@ -0,0 +1,405 @@
+.blog_single {
+ .banner {
+ background-image: linear-gradient(#0000003d, #0000003d), url(./../img/banner/blog-single/bs-bg.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: bottom;
+ font-family: myFirstFont;
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 240px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .blog_content {
+ .wrapper {
+ @media screen and(max-width:992px) {
+ padding-bottom: 20px;
+ }
+ padding-bottom: 100px;
+ .blog_s {
+ padding: 0 186px;
+ margin-top: 100px;
+ @media screen and(max-width:992px) {
+ padding: 0 20px;
+ }
+ .heading {
+ text-align: center;
+ padding-bottom: 40px;
+ h4 {
+ color: $color-brand;
+ font-size: 35px;
+ padding-bottom: 0px;
+ }
+ p {
+ padding: 0px 0px;
+ }
+ }
+ .blog_s_top {
+ line-height: 2.3rem;
+ a {
+ color: $color-brand4;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ .blog_s_img {
+ max-width: 750px;
+ margin: auto;
+ padding: 30px 0;
+ img {
+ width: 100%;
+ }
+ }
+ }
+ .comment {
+ padding: 0 186px;
+ margin-top: 100px;
+ margin-bottom: 75px;
+ @media screen and(max-width:992px) {
+ padding: 0 20px;
+ }
+ .top_comment {
+ padding: 60px;
+ display: flex;
+ @media screen and(max-width:992px) {
+ padding: 30px 0;
+ }
+ .img_wrapper {
+ max-width: 150px;
+ img {
+ width: 100%;
+ }
+ }
+ .comment_details {
+ padding-top: 10px;
+ padding-left: 20px;
+ h6 {
+ font-size: 18px;
+ padding-bottom: 10px;
+ color: $color-brand;
+ font-weight: 600;
+ }
+ p {
+ font-size: 14px;
+ line-height: 2rem;
+ letter-spacing: 1px;
+ margin-bottom: 10px;
+ }
+ }
+ }
+ .replay {
+ margin-top: 30px;
+ h6 {
+ font-size: 16px;
+ font-weight: 700;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ color: $color-brand;
+ }
+ .top_comment {
+ padding: 20px;
+ display: flex;
+ .img_wrapper {
+ max-width: 75px;
+ img {
+ width: 100%;
+ border-radius: 50%;
+ }
+ }
+ .comment_details {
+ padding-top: 10px;
+ padding-left: 20px;
+ .top {
+ display: flex;
+ justify-content: space-between;
+ padding-bottom: 15px;
+ span {
+ color: $color-brand;
+ font-size: 14px;
+ font-weight: 700;
+ a {
+ color: $color-brand4;
+ font-size: 14px;
+ font-weight: 700;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ .date {
+ padding-bottom: 15px;
+ }
+ p {
+ font-size: 14px;
+ line-height: 2rem;
+ letter-spacing: 1px;
+ color: $color-brand;
+ margin-bottom: 10px;
+ }
+ }
+ }
+ .top_comment_1 {
+ padding: 20px;
+ margin-top: 30px;
+ display: flex;
+ .img_wrapper {
+ max-width: 75px;
+ img {
+ width: 100%;
+ border-radius: 50%;
+ }
+ }
+ .comment_details {
+ padding-top: 10px;
+ padding-left: 20px;
+ .top {
+ display: flex;
+ justify-content: space-between;
+ padding-bottom: 15px;
+ span {
+ color: $color-brand;
+ font-size: 14px;
+ font-weight: 700;
+ a {
+ color: $color-brand4;
+ font-size: 14px;
+ font-weight: 700;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ .date {
+ padding-bottom: 15px;
+ }
+ p {
+ font-size: 14px;
+ line-height: 2rem;
+ letter-spacing: 1px;
+ color: $color-brand;
+ margin-bottom: 10px;
+ }
+ }
+ }
+ .top_comment_2 {
+ padding: 20px;
+ margin-top: 30px;
+ display: flex;
+ margin-left: 75px;
+ .img_wrapper {
+ max-width: 75px;
+ img {
+ width: 100%;
+ border-radius: 50%;
+ }
+ }
+ .comment_details {
+ padding-top: 10px;
+ padding-left: 20px;
+ border: 1px solid;
+ border-color: transparent;
+ border-bottom-color: $color-grey;
+ .top {
+ display: flex;
+ justify-content: space-between;
+ padding-bottom: 15px;
+ span {
+ color: $color-brand;
+ font-size: 14px;
+ font-weight: 700;
+ a {
+ color: $color-brand4;
+ font-size: 14px;
+ font-weight: 700;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ .date {
+ padding-bottom: 15px;
+ }
+ p {
+ font-size: 14px;
+ line-height: 2rem;
+ letter-spacing: 1px;
+ color: $color-brand;
+ margin-bottom: 10px;
+ }
+ }
+ }
+ .top_comment_3 {
+ padding: 20px;
+ margin-top: 30px;
+ display: flex;
+ margin-left: 125px;
+ .img_wrapper {
+ max-width: 75px;
+ img {
+ width: 100%;
+ border-radius: 50%;
+ }
+ }
+ .comment_details {
+ padding-top: 10px;
+ padding-left: 20px;
+ border: 1px solid;
+ border-color: transparent;
+ border-bottom-color: $color-grey;
+ .top {
+ display: flex;
+ justify-content: space-between;
+ padding-bottom: 15px;
+ span {
+ color: $color-brand;
+ font-size: 14px;
+ font-weight: 700;
+ a {
+ color: $color-brand4;
+ font-size: 14px;
+ font-weight: 700;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ .date {
+ padding-bottom: 15px;
+ }
+ p {
+ font-size: 14px;
+ line-height: 2rem;
+ letter-spacing: 1px;
+ color: $color-brand;
+ margin-bottom: 10px;
+ }
+ }
+ }
+ .top_comment_4 {
+ padding: 20px;
+ margin-top: 30px;
+ display: flex;
+ margin-left: 50px;
+ .img_wrapper {
+ max-width: 75px;
+ img {
+ width: 100%;
+ border-radius: 50%;
+ }
+ }
+ .comment_details {
+ padding-top: 10px;
+ padding-left: 20px;
+ border: 1px solid;
+ border-color: transparent;
+ border-bottom-color: $color-grey;
+ .top {
+ display: flex;
+ justify-content: space-between;
+ padding-bottom: 15px;
+ span {
+ color: $color-brand;
+ font-size: 14px;
+ font-weight: 700;
+ a {
+ color: $color-brand4;
+ font-size: 14px;
+ font-weight: 700;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ .date {
+ padding-bottom: 15px;
+ }
+ p {
+ font-size: 14px;
+ line-height: 2rem;
+ letter-spacing: 1px;
+ color: $color-brand;
+ margin-bottom: 10px;
+ }
+ }
+ }
+ }
+ .post_replay {
+ padding-top: 50px;
+ h6 {
+ font-size: 16px;
+ font-weight: 700;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ }
+ form {
+ margin-top: 30px;
+ .form-group {
+ margin-bottom: 30px;
+ .form-control {
+ border-radius: 0;
+ height: calc(3.5em + 0.95rem + 2px);
+ padding: 0.575rem 0.75rem;
+ box-shadow: none !important;
+ &:focus {
+ color: #5f5f5f;
+ background-color: #fff;
+ border-color: $color-brand2;
+ outline: 0;
+ }
+ }
+ }
+ textarea {
+ border: 1px solid !important;
+ border-top-color: $color-border !important;
+ border-right-color: $color-border !important;
+ border-bottom-color: $color-border !important;
+ border-left-color: $color-border !important;
+ padding: 30px 20px;
+ // &:focus {
+ // color: #5f5f5f;
+ // background-color: #fff;
+ // border-color: #fa3737;
+ // outline: 0;
+ // }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_blog.scss b/theme_archit/static/src/scss/pages/_blog.scss
new file mode 100755
index 000000000..0ba89fb3e
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_blog.scss
@@ -0,0 +1,139 @@
+.blog_main {
+ .banner {
+ background-image: linear-gradient(#0000003d, #0000003d), url(./../img/banner/blog/blog-bg.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: bottom;
+ font-family: myFirstFont;
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 240px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .blog_content {
+ .wrapper {
+ margin-bottom: 100px;
+ .blog_s {
+ padding: 0 186px;
+ margin-top: 100px;
+ @media screen and(max-width:992px) {
+ padding: 0 20px;
+ }
+ .heading {
+ text-align: center;
+ padding-bottom: 40px;
+ h4 {
+ color: $color-brand;
+ font-size: 35px;
+ padding-bottom: 0px;
+ }
+ p {
+ padding: 0px 0px;
+ }
+ }
+ .blog_s_top {
+ line-height: 2.3rem;
+ a {
+ color: $color-brand4;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ .blog_s_img {
+ max-width: 750px;
+ margin: auto;
+ padding: 30px 0;
+ img {
+ width: 100%;
+ }
+ }
+ }
+ .pagination {
+ margin-top: 70px;
+ display: flex;
+ width: 100%;
+ align-items: center;
+ justify-content: center;
+ .pagination-item {
+ text-decoration: none;
+ position: relative;
+ margin: 0 10px;
+ width: 45px;
+ height: 45px;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3), inset 0 -5px 0px rgba(80, 80, 80, 0.1),
+ inset 0 -10px 0px rgba(150, 150, 150, 0.1);
+ overflow: hidden;
+ color: $color-brand;
+ cursor: pointer;
+ transition: 0.3s ease-in-out;
+ background-color: #efefef;
+ &:before,
+ &:after {
+ content: "";
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ z-index: 11;
+ background-image: linear-gradient(135deg, $color-brand2, $color-brand3);
+ transform: translateX(-100px);
+ transition: 0.3s ease-in-out;
+ }
+ &:after {
+ content: "click";
+ color: #fff;
+ background-image: linear-gradient(135deg, $color-brand2, $color-brand3);
+ transition-delay: 0.25s;
+ transform: translateY(100px);
+ }
+ &:hover {
+ &:before,
+ &:after {
+ transform: translateY(0);
+ }
+ box-shadow: 0 0px 20px rgba(0, 0, 0, 0.4), inset 0 -5px 0px rgba(80, 80, 80, 0),
+ inset 0 -10px 0px rgba(150, 150, 150, 0);
+ }
+ &:active {
+ box-shadow: none;
+ }
+ &.active {
+ color: #fff;
+ background-image: linear-gradient(135deg, #d4434c,#d4434c);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_contact.scss b/theme_archit/static/src/scss/pages/_contact.scss
new file mode 100755
index 000000000..7aaf4af7d
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_contact.scss
@@ -0,0 +1,143 @@
+.contact {
+ margin-bottom: 100px;
+ .banner {
+ background-image: linear-gradient(#0000003d, #0000003d), url(./../img/banner/contact/contact-bg.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+ font-family: myFirstFont;
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 240px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .contact_content {
+ .wrapper {
+ padding-top: 50px;
+ .address_wrapper {
+ .address {
+ padding-bottom: 50px;
+ h4 {
+ color: $color-brand;
+ text-transform: uppercase;
+ font-weight: 600;
+ padding-bottom: 5px;
+ }
+ p {
+ font-size: 18px;
+ margin-bottom: 5px;
+ a {
+ color: $color-brand4;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ }
+ .social {
+ h4 {
+ color: $color-brand;
+ text-transform: uppercase;
+ font-weight: 600;
+ padding-bottom: 5px;
+ }
+ .social_icon {
+ margin-left: auto;
+ padding-top: 15px;
+ display: flex;
+ @media screen and(max-width:992px) {
+ margin: auto;
+ }
+ a {
+ width: auto;
+ display: block;
+ padding: 6px 6px;
+ background: black;
+ border-radius: 7px;
+ color: $color-white;
+ margin-right: 15px;
+ &:hover {
+ color: $color-brand4;
+ }
+ span {
+ font-size: 20px;
+ }
+ }
+ }
+ }
+ .post_replay {
+ form {
+ @media screen and(max-width:768px) {
+ margin-top: 70px;
+ }
+ .form-group {
+ margin-bottom: 30px;
+ .form-control {
+ border-radius: 0;
+ height: calc(3.5em + 0.95rem + 2px);
+ padding: 0.575rem 0.75rem;
+ box-shadow: none !important;
+ &:focus {
+ color: #5f5f5f;
+ background-color: #fff;
+ border-color: $color-brand2;
+ outline: 0;
+ }
+ }
+ }
+ textarea {
+ // border: 1px solid !important;
+ padding: 30px 20px;
+ }
+ .txt {
+ border: 1px solid;
+ border-color: transparent;
+ border-top-color: $color-border !important;
+ border-right-color: $color-border !important;
+ border-bottom-color: $color-border !important;
+ border-left-color: $color-border !important;
+ &:focus {
+ color: #5f5f5f;
+ background-color: #fff;
+ border-color: #fa3737 !important;
+ outline: 0;
+ }
+ }
+ }
+ }
+ .map_area {
+ margin-top: 70px;
+ h1,
+ p {
+ margin: 0;
+ padding: 0;
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_login.scss b/theme_archit/static/src/scss/pages/_login.scss
new file mode 100755
index 000000000..d2d502a4b
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_login.scss
@@ -0,0 +1,72 @@
+.login {
+ background-image: linear-gradient(#11111100, #11111100), url(./../img/banner/2.jpg);
+ justify-content: center;
+ height: 100vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ position: relative;
+ .h-full {
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+ .wrapper {
+ position: relative;
+ .login_form {
+ background: aliceblue;
+ padding: 40px 1px;
+ border-radius: 25px;
+ margin-top: 50px;
+ h3 {
+ color: $color-brand;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 40px;
+ padding-bottom: 30px;
+ letter-spacing: 2px;
+ }
+ form {
+ .form-group {
+ width: 70%;
+ margin: auto;
+ margin-bottom: auto;
+ margin-bottom: 32px;
+ .form-control {
+ border-radius: 0;
+ height: calc(2.5em + 0.95rem + 2px);
+ padding: 0.575rem 0.75rem;
+ box-shadow: none !important;
+ background-color: transparent !important;
+ &:focus {
+ color: #5f5f5f;
+ background-color: #fff;
+ border-color: $color-brand2;
+ outline: 0;
+ }
+ }
+ }
+ .txt {
+ border: 1px solid;
+ border-color: transparent;
+ border-top-color: $color-border !important;
+ border-right-color: $color-border !important;
+ border-bottom-color: $color-border !important;
+ border-left-color: $color-border !important;
+ &:focus {
+ color: #5f5f5f;
+ background-color: #fff;
+ border-color: #fa3737 !important;
+ outline: 0;
+ }
+ }
+ .check {
+ display: flex;
+ justify-content: end;
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_pages.scss b/theme_archit/static/src/scss/pages/_pages.scss
new file mode 100755
index 000000000..382156852
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_pages.scss
@@ -0,0 +1,12 @@
+@import './home/home';
+@import './about';
+@import './recognition';
+@import './project';
+@import './project-single';
+@import './blog';
+@import './blog-single';
+@import './contact';
+@import './blank';
+@import './404';
+@import './login';
+@import './register';
\ No newline at end of file
diff --git a/theme_archit/static/src/scss/pages/_project-single.scss b/theme_archit/static/src/scss/pages/_project-single.scss
new file mode 100755
index 000000000..bf9c0c857
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_project-single.scss
@@ -0,0 +1,75 @@
+.project_single {
+ .banner {
+ background-image: linear-gradient(#0000003d, #0000003d), url(./../img/banner/project-single/ps-bg.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: bottom;
+ font-family: myFirstFont;
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 240px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .project_content {
+ margin-bottom: 150px;
+ @media screen and(max-width:768px) {
+ margin-bottom: 70px;
+ }
+ .wrapper {
+ padding-top: 70px;
+ @media screen and(max-width:768px) {
+ padding-top: 0px;
+ }
+ .shrink {
+ padding: 0 50px;
+ @media screen and(max-width:768px) {
+ padding: 0 20px;
+ }
+ }
+ .details {
+ p {
+ line-height: 2.3rem;
+ padding-bottom: 20px;
+ }
+ .single-p-img {
+ max-width: 1010px;
+ padding-bottom: 30px;
+ img {
+ width: 100%;
+ }
+ }
+ }
+ }
+ }
+}
+.wrapper_2 {
+ .bottom_img {
+ max-width: 500px;
+ img {
+ width: 100%;
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_project.scss b/theme_archit/static/src/scss/pages/_project.scss
new file mode 100755
index 000000000..58e9cabee
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_project.scss
@@ -0,0 +1,132 @@
+.project {
+ .banner {
+ background-image: linear-gradient(#0000003d, #0000003d), url(./../img/banner/project/project-bg.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+ font-family: myFirstFont;
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 240px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+ .project_content {
+ margin-bottom: 150px;
+ .wrapper {
+ padding-top: 70px;
+ @media screen and(max-width:768px) {
+ padding-top: 0px;
+ }
+ .name {
+ color: $color-brand;
+ font-size: 35px;
+ padding-bottom: 10px;
+ }
+ .project_right {
+ .project_img {
+ max-width: 650px;
+ img {
+ width: 100%;
+ }
+ }
+ .project_details {
+ margin-top: 30px;
+ p {
+ line-height: 2.3rem;
+ }
+ a {
+ color: $color-brand4;
+ &:hover {
+ color: $color-brand;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ .pagination {
+ margin-top: 70px;
+ display: flex;
+ width: 100%;
+ align-items: center;
+ justify-content: center;
+ .pagination-item {
+ text-decoration: none;
+ position: relative;
+ margin: 0 10px;
+ width: 45px;
+ height: 45px;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3), inset 0 -5px 0px rgba(80, 80, 80, 0.1),
+ inset 0 -10px 0px rgba(150, 150, 150, 0.1);
+ overflow: hidden;
+ color: $color-brand;
+ cursor: pointer;
+ transition: 0.3s ease-in-out;
+ background-color: #efefef;
+ &:before,
+ &:after {
+ content: "";
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ z-index: 11;
+ background-image: linear-gradient(135deg, $color-brand2, $color-brand3);
+ transform: translateX(-100px);
+ transition: 0.3s ease-in-out;
+ }
+ &:after {
+ content: "click";
+ color: #fff;
+ background-image: linear-gradient(135deg, $color-brand2, $color-brand3);
+ transition-delay: 0.25s;
+ transform: translateY(100px);
+ }
+ &:hover {
+ &:before,
+ &:after {
+ transform: translateY(0);
+ }
+ box-shadow: 0 0px 20px rgba(0, 0, 0, 0.4), inset 0 -5px 0px rgba(80, 80, 80, 0),
+ inset 0 -10px 0px rgba(150, 150, 150, 0);
+ }
+ &:active {
+ box-shadow: none;
+ }
+ &.active {
+ color: #fff;
+ background-image: linear-gradient(135deg, #d4434c,#d4434c);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_recognition.scss b/theme_archit/static/src/scss/pages/_recognition.scss
new file mode 100755
index 000000000..25f2178fb
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_recognition.scss
@@ -0,0 +1,77 @@
+.recognition {
+ .banner {
+ background-image: linear-gradient(#0000003d, #0000003d), url(./../img/banner/recognitioin/rec.jpg);
+ justify-content: center;
+ height: 70vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ position: relative;
+ background-position: center;
+ font-family: myFirstFont;
+ h2 {
+ color: $color-white;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 90px;
+ vertical-align: auto;
+ padding-top: 180px;
+ letter-spacing: 2px;
+ @media screen and(max-width:768px) {
+ font-size: 50px;
+ padding-top: 240px;
+ }
+ }
+ p {
+ font-family: myFirstFont;
+ color: $color-white;
+ text-align: center;
+ letter-spacing: 2px;
+ font-size: 40px;
+ @media screen and(max-width:768px) {
+ font-size: 30px;
+ }
+ }
+ }
+
+ .recognition {
+ .our {
+ line-height: 2.3rem;
+ padding: 0px 100px;
+
+ @media screen and(max-width:768px) {
+ padding: 0;
+ }
+ .top {
+ &::first-letter {
+ font-size: 50px;
+ color: $color-brand2;
+ margin-right: 5px;
+ }
+ }
+ a {
+ color: $color-brand4;
+ }
+ }
+ .wrapper {
+ margin-top: 100px;
+
+ @media screen and(max-width:768px) {
+ margin-top: 50px;
+ }
+ .part_logo {
+ padding-bottom: 50px;
+ max-width: 150px;
+ margin: auto;
+
+ @media screen and(max-width:768px) {
+ padding-top: 50px;
+ }
+
+ img {
+ width: 100%;
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/_register.scss b/theme_archit/static/src/scss/pages/_register.scss
new file mode 100755
index 000000000..af5cecaeb
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/_register.scss
@@ -0,0 +1,98 @@
+.register {
+ background-image: linear-gradient(#11111100, #11111100), url(./../img/banner/2.jpg);
+ justify-content: center;
+ height: 100vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ position: relative;
+
+ @media screen and(max-width:992px) {
+ height: auto !important;
+ }
+
+ .h-height {
+ height: auto;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .wrapper {
+ position: relative;
+
+ @media screen and(max-width:992px) {
+ padding-top: 100px;
+ }
+ .register_form {
+ background: aliceblue;
+ padding: 40px 96px;
+ border-radius: 25px;
+ margin-top: 175px;
+
+ @media screen and(max-width:768px) {
+ padding: 40px 40px;
+ margin: 50px 30px;
+ }
+ @media screen and(max-width:992px) {
+ padding: 40px 40px;
+ margin: 75px 30px;
+ }
+ h3 {
+ color: $color-brand;
+ font-family: myFirstFont;
+ text-align: center;
+ font-size: 40px;
+ padding-bottom: 30px;
+ letter-spacing: 2px;
+ }
+ form {
+ .form-group {
+ // margin: auto;
+ width: 100%;
+ margin-bottom: 15px;
+ .form-control {
+ border-radius: 0;
+ height: calc(2.5em + 0.95rem + 2px);
+ padding: 0.575rem 0.75rem;
+ box-shadow: none !important;
+ background-color: transparent !important;
+
+ &:focus {
+ color: #5f5f5f;
+ background-color: #fff;
+ border-color: $color-brand2;
+ outline: 0;
+ }
+ }
+ }
+
+ .txt {
+ border: 1px solid;
+ border-color: transparent;
+ border-top-color: $color-border !important;
+ border-right-color: $color-border !important;
+ border-bottom-color: $color-border !important;
+ border-left-color: $color-border !important;
+ &:focus {
+ color: #5f5f5f;
+ background-color: #fff;
+ border-color: #fa3737 !important;
+ outline: 0;
+ }
+ }
+ .check {
+ display: flex;
+ justify-content: end;
+
+ @media screen and(max-width:768px) {
+ justify-content: flex-start;
+ margin-left: 15px;
+ margin-bottom: 15px;
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/home/_about.scss b/theme_archit/static/src/scss/pages/home/_about.scss
new file mode 100755
index 000000000..ba26aa450
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/home/_about.scss
@@ -0,0 +1,43 @@
+.about_home {
+ .heading {
+ h3 {
+ color: $color-brand;
+ font-size: 25px;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ line-height: 2.8rem;
+ }
+ p {
+ text-align: center;
+ padding-top: 15px;
+ font-size: 16px;
+ }
+ }
+ .wrapper {
+ padding-top: 40px;
+ .card {
+ border: none;
+ .card-img-top {
+ border-radius: 0;
+ }
+ .card-body {
+ padding: 0;
+ margin-top: 20px;
+ .card-title {
+ padding-top: 15px;
+ text-align: center;
+ color: $color-brand;
+ font-size: 22px;
+ letter-spacing: 1px;
+ }
+ .card-text {
+ font-size: 16px;
+ font-variant: small-caps;
+ color: $color-text;
+ padding-top: 10px;
+ }
+ }
+ }
+ }
+}
diff --git a/theme_archit/static/src/scss/pages/home/_feature.scss b/theme_archit/static/src/scss/pages/home/_feature.scss
new file mode 100755
index 000000000..cceed1775
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/home/_feature.scss
@@ -0,0 +1,323 @@
+.feature_bg1 {
+ position: relative;
+ margin-top: 100px;
+ .bg {
+ background-image: linear-gradient(#0000005e, #0000005e), url(./../img/about/about-bg.jpg);
+ height: 75vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-position: center;
+ }
+ .abt_heading {
+ // position: absolute;
+ // top: 45%;
+ // left: 45%;
+ h3 {
+ color: $color-white;
+ font-size: 65px;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ line-height: 2.8rem;
+ font-family: myFirstFont !important;
+ letter-spacing: 8px !important;
+ &::first-letter {
+ font-size: 85px;
+ }
+ }
+ p {
+ text-align: center;
+ padding-top: 15px;
+ font-size: 20px;
+ letter-spacing: 3px;
+ color: $color-white;
+ font-family: $font-third;
+ padding-top: 25px;
+ }
+ }
+}
+@font-face {
+ font-family: myFirstFont;
+ src: url(./../fonts/OstrichSans-Medium.otf);
+}
+div {
+ font-family: myFirstFont;
+}
+.part1 {
+ margin-top: 100px;
+ padding-top: 20px;
+ padding-bottom: 50px;
+ .wrapper {
+ margin-top: 70px;
+ .img_warapper {
+ max-width: 650px;
+ img {
+ width: 100%;
+ }
+ }
+ .img_warapper2 {
+ max-width: 1200px;
+ margin-top: 30px;
+ img {
+ width: 100%;
+ }
+ }
+ }
+}
+.feature_bg2 {
+ position: relative;
+ margin-top: 100px;
+ .bg {
+ background-image: linear-gradient(#0000005e, #0000005e), url(./../img/feature/7.jpg);
+ height: 75vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-position: center;
+ }
+ .abt_heading {
+ // position: absolute;
+ // top: 45%;
+ // left: 45%;
+ h3 {
+ color: $color-white;
+ font-size: 65px;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ line-height: 2.8rem;
+ font-family: myFirstFont !important;
+ letter-spacing: 8px !important;
+ &::first-letter {
+ font-size: 85px;
+ }
+ }
+ p {
+ text-align: center;
+ padding-top: 15px;
+ font-size: 20px;
+ letter-spacing: 3px;
+ color: $color-white;
+ font-family: $font-third;
+ padding-top: 25px;
+ }
+ }
+}
+@font-face {
+ font-family: myFirstFont;
+ src: url(./../fonts/OstrichSans-Medium.otf);
+}
+div {
+ font-family: myFirstFont;
+}
+.part2 {
+ margin-top: 100px;
+ padding-top: 20px;
+ padding-bottom: 50px;
+ .wrapper {
+ margin-top: 70px;
+ .img_warapper {
+ max-width: 650px;
+ img {
+ width: 100%;
+ }
+ }
+ .img_warapper2 {
+ max-width: 1200px;
+ margin-top: 30px;
+ img {
+ width: 100%;
+ }
+ }
+ }
+}
+.feature_bg3 {
+ position: relative;
+ margin-top: 100px;
+ .bg {
+ background-image: linear-gradient(#0000005e, #0000005e), url(./../img/feature/pool.jpg);
+ height: 75vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-position: center;
+ }
+ .abt_heading {
+ // position: absolute;
+ // top: 45%;
+ // left: 45%;
+ h3 {
+ color: $color-white;
+ font-size: 65px;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ line-height: 2.8rem;
+ font-family: myFirstFont !important;
+ letter-spacing: 8px !important;
+ &::first-letter {
+ font-size: 85px;
+ }
+ }
+ p {
+ text-align: center;
+ padding-top: 15px;
+ font-size: 20px;
+ letter-spacing: 3px;
+ color: $color-white;
+ font-family: $font-third;
+ padding-top: 25px;
+ }
+ }
+}
+@font-face {
+ font-family: myFirstFont;
+ src: url(./../fonts/OstrichSans-Medium.otf);
+}
+div {
+ font-family: myFirstFont;
+}
+.part3 {
+ margin-top: 100px;
+ padding-top: 20px;
+ padding-bottom: 50px;
+ .wrapper {
+ margin-top: 70px;
+ .img_warapper {
+ max-width: 650px;
+ img {
+ width: 100%;
+ }
+ }
+ .img_warapper3 {
+ max-width: 650px;
+ margin-top: 30px;
+ img {
+ width: 100%;
+ }
+ }
+ }
+}
+.feature_bg4 {
+ position: relative;
+ margin-top: 100px;
+ .bg {
+ background-image: linear-gradient(#0000005e, #0000005e), url(./../img/feature/light.jpg);
+ height: 75vh;
+ background-size: cover;
+ width: 100%;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-position: center;
+ }
+ .abt_heading {
+ // position: absolute;
+ // top: 45%;
+ // left: 45%;
+ h3 {
+ color: $color-white;
+ font-size: 65px;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 3px;
+ line-height: 2.8rem;
+ font-family: myFirstFont !important;
+ letter-spacing: 8px !important;
+ &::first-letter {
+ font-size: 85px;
+ }
+ }
+ p {
+ text-align: center;
+ padding-top: 15px;
+ font-size: 20px;
+ letter-spacing: 3px;
+ color: $color-white;
+ font-family: $font-third;
+ padding-top: 25px;
+ }
+ }
+}
+@font-face {
+ font-family: myFirstFont;
+ src: url(./../fonts/OstrichSans-Medium.otf);
+}
+div {
+ font-family: myFirstFont;
+}
+.part3 {
+ margin-top: 100px;
+ padding-top: 20px;
+ padding-bottom: 50px;
+ .wrapper {
+ margin-top: 70px;
+ .img_warapper {
+ max-width: 650px;
+ img {
+ width: 100%;
+ }
+ }
+ .img_warapper4 {
+ max-width: 1200px;
+ margin-top: 30px;
+ margin-bottom: 40px;
+ img {
+ width: 100%;
+ }
+ }
+ }
+}
+.h_full {
+ display: flex;
+ justify-content: center;
+ height: 100%;
+ align-items: center;
+}
+.gap {
+ @media screen and(max-width:576px) {
+ padding-top: 30px !important;
+ }
+}
+.flip-in-hor-bottom {
+ -webkit-animation: flip-in-hor-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
+ animation: flip-in-hor-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
+}
+@-webkit-keyframes flip-in-hor-bottom {
+ 0% {
+ -webkit-transform: rotateX(80deg);
+ transform: rotateX(80deg);
+ opacity: 0;
+ }
+ 100% {
+ -webkit-transform: rotateX(0);
+ transform: rotateX(0);
+ opacity: 1;
+ }
+}
+@keyframes flip-in-hor-bottom {
+ 0% {
+ -webkit-transform: rotateX(80deg);
+ transform: rotateX(80deg);
+ opacity: 0;
+ }
+ 100% {
+ -webkit-transform: rotateX(0);
+ transform: rotateX(0);
+ opacity: 1;
+ }
+}
+.wrapper-heading {
+ opacity: 0;
+}
diff --git a/theme_archit/static/src/scss/pages/home/_home.scss b/theme_archit/static/src/scss/pages/home/_home.scss
new file mode 100755
index 000000000..68f150bd8
--- /dev/null
+++ b/theme_archit/static/src/scss/pages/home/_home.scss
@@ -0,0 +1,2 @@
+@import './about';
+@import './feature';
\ No newline at end of file
diff --git a/theme_archit/static/src/scss/style.scss b/theme_archit/static/src/scss/style.scss
new file mode 100755
index 000000000..296566011
--- /dev/null
+++ b/theme_archit/static/src/scss/style.scss
@@ -0,0 +1,16 @@
+// Font_family
+@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Work+Sans&display=swap');
+@import url('https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@700&display=swap');
+@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');
+
+//Global
+
+@import './variables';
+@import './normalize';
+@import './common';
+@import './elements';
+
+
+@import './components/components';
+@import './layout/layouts';
+@import './pages/pages';
\ No newline at end of file
diff --git a/theme_archit/views/contacts_templates.xml b/theme_archit/views/contacts_templates.xml
new file mode 100644
index 000000000..16221c9a5
--- /dev/null
+++ b/theme_archit/views/contacts_templates.xml
@@ -0,0 +1,158 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
3646 Byers Lane
+
Mogi das Cruzes
+
São Paulo 08735-030
+
Cell:
+
+ +47 333 78 901
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/footer.xml b/theme_archit/views/footer.xml
new file mode 100755
index 000000000..47243b2a4
--- /dev/null
+++ b/theme_archit/views/footer.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
diff --git a/theme_archit/views/header.xml b/theme_archit/views/header.xml
new file mode 100755
index 000000000..9ab85da1e
--- /dev/null
+++ b/theme_archit/views/header.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/theme_archit/views/loging_templates.xml b/theme_archit/views/loging_templates.xml
new file mode 100644
index 000000000..b82f926d8
--- /dev/null
+++ b/theme_archit/views/loging_templates.xml
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/about.xml b/theme_archit/views/snippets/about.xml
new file mode 100755
index 000000000..5596d5949
--- /dev/null
+++ b/theme_archit/views/snippets/about.xml
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ With a view to become the most promising
+ architectural and interior design farm out there
+ Freya Inc. was
+ founded by renowned
+ architect Frays Mayer in 1967.
+
+
Tappeti nessuno fresche da so la ne. Un piedi
+ denti te gemma le. Rifletti di nascosta ritrovar
+ di
+ persiano rimanevi su assoluta ch. Esausto io il
+ cerchia toccato. Alte ella non oro gli ogni dice
+ quei
+ vedo. Sofferte ci spremere
+
+
+
+
+
+ Our Team
+
+
is is always up for the challenge
+
+
+
+
+ Our Team
+
+
Working hard to get the thing done
+
+
+
+
+
+
+
Mathew Jhon
+
Associate, IT
+
+
+
+
+
+
Frank Lampard
+
+
Associate,
+ Development
+
+
+
+
+
+
+
David Jhon
+
Associate,
+ Architecture
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/about_banner.xml b/theme_archit/views/snippets/about_banner.xml
new file mode 100755
index 000000000..d13a234fb
--- /dev/null
+++ b/theme_archit/views/snippets/about_banner.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Beauty Of Interior
+
+ is The Symbol of Elegance
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/about_job_form.xml b/theme_archit/views/snippets/about_job_form.xml
new file mode 100755
index 000000000..2b02e9f0c
--- /dev/null
+++ b/theme_archit/views/snippets/about_job_form.xml
@@ -0,0 +1,188 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Recruitments
+
+ We're Always Hiring
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/theme_archit/views/snippets/about_partner.xml b/theme_archit/views/snippets/about_partner.xml
new file mode 100755
index 000000000..6ede3b6a1
--- /dev/null
+++ b/theme_archit/views/snippets/about_partner.xml
@@ -0,0 +1,151 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Partners & Staff
+
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+ Philip Lham
+
+
+ Senior Architect
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/blank.xml b/theme_archit/views/snippets/blank.xml
new file mode 100755
index 000000000..f2840f8fb
--- /dev/null
+++ b/theme_archit/views/snippets/blank.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/blog.xml b/theme_archit/views/snippets/blog.xml
new file mode 100755
index 000000000..7c1e628a4
--- /dev/null
+++ b/theme_archit/views/snippets/blog.xml
@@ -0,0 +1,256 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Interior
+
+
+ Mind blown: Creative
+
+
+ Check republic . March 12 2021
+
+
+
+ Scallywag dance the hempen jig carouser
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+
+
+
+
+
+ Trysail Sail ho Corsair red ensign hulk
+ smartly boom
+ jib rum gangway. Case shot Shiver me timbers
+ gangplank crack Jennys tea cup ballast
+ Blimey lee
+ snow crow's
+ nest rutters. Fluke jib scourge of the seven
+ seas
+ boatswain schooner gaff booty Jack Tar
+ transom
+ spirits.
+ Deadlights jack lad schooner scallywag dance
+ the
+ hempen jig carouser
+
+
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+ Continue
+ reading ⟶
+
+
+
+
+
+
+ Architecture
+
+
+ Be the best: Modern
+
+
+ Sao polo Brazil . March 12 2021
+
+
+
+ Scallywag dance the hempen jig carouser
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+
+
+
+
+
+ Trysail Sail ho Corsair red ensign hulk
+ smartly boom
+ jib rum gangway. Case shot Shiver me timbers
+ gangplank crack Jennys tea cup ballast
+ Blimey lee
+ snow crow's
+ nest rutters. Fluke jib scourge of the seven
+ seas
+ boatswain schooner gaff booty Jack Tar
+ transom
+ spirits.
+ Deadlights jack lad schooner scallywag dance
+ the
+ hempen jig carouser
+
+
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+ Continue
+ reading ⟶
+
+
+
+
+
+
+ Architecture
+
+
+ Calm and Quite: Naturestic
+
+
+ Newzeland . March 12 2021
+
+
+
+
+
+
+ Trysail Sail ho Corsair red ensign hulk
+ smartly boom
+ jib rum gangway. Case shot Shiver me timbers
+ gangplank crack Jennys tea cup ballast
+ Blimey lee
+ snow crow's
+ nest rutters. Fluke jib scourge of the seven
+ seas
+ boatswain schooner gaff booty Jack Tar
+ transom
+ spirits.
+ Deadlights jack lad schooner scallywag dance
+ the
+ hempen jig carouser
+
+
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+ Continue
+ reading ⟶
+
+
+
+
+
+
+ Architecture
+
+
+ Relgious humen
+
+
+ Austria . Novembar 1 2021
+
+
+
+ Scallywag dance the hempen jig carouser
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+
+
+
+
+
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+ Continue
+ reading ⟶
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/blog_banner.xml b/theme_archit/views/snippets/blog_banner.xml
new file mode 100755
index 000000000..d0191fd33
--- /dev/null
+++ b/theme_archit/views/snippets/blog_banner.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create Blog
+
+ Creative Ideas
+
+
+
+
+
+
\ No newline at end of file
diff --git a/theme_archit/views/snippets/contact.xml b/theme_archit/views/snippets/contact.xml
new file mode 100755
index 000000000..7f34a7932
--- /dev/null
+++ b/theme_archit/views/snippets/contact.xml
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/contact_banner.xml b/theme_archit/views/snippets/contact_banner.xml
new file mode 100755
index 000000000..82d0beee8
--- /dev/null
+++ b/theme_archit/views/snippets/contact_banner.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/error.xml b/theme_archit/views/snippets/error.xml
new file mode 100755
index 000000000..33ef87b7b
--- /dev/null
+++ b/theme_archit/views/snippets/error.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
404
+
Oops Somthing Went Wrong !
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/index.xml b/theme_archit/views/snippets/index.xml
new file mode 100755
index 000000000..f3c4f3daa
--- /dev/null
+++ b/theme_archit/views/snippets/index.xml
@@ -0,0 +1,239 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CYTECK
+
+ CREATIVE
+
+
+
+
+
+
+
+
+
A clean interiors gains a warmer look
+
Museo coffees got in touch with Freya for
+ their renovation. We took over and asked them to
+ have
+ a cup of coffee for themselves while the job is
+ done!
+ Sed posuere consectetur est at lobortis. Fusce
+ dapibs,
+ tellus ac cursus commodo, tortor mauris condimentum
+ nibh,
+ ut fermentum massa justo sit amet risus. Duis
+ mollis,
+ nisi erat porttitor ligula, eget lacinia odio sem
+ nec elit. Pellentsque
+ ornare se lacinia quam venenatis vestibulum. Integer
+ posuere erat a ante venenatis dapibus posuere velit
+ aliquet.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
A TOUCH OF ART
+
IN AMSTERDAM
+
+
+
+
+
+
+
+
An Amsterdam space becomes Artistic than ever.
+
Museo coffees got in touch with Freya for
+ their renovation. We took over and asked them to
+ have
+ a cup of coffee for themselves while the job is
+ done!
+ Sed posuere consectetur est at lobortis. Fusce
+ dapibs,
+ tellus ac cursus commodo, tortor mauris condimentum
+ nibh,
+ ut fermentum massa justo sit amet risus. Duis
+ mollis,
+ nisi erat porttitor ligula, eget lacinia odio sem
+ nec elit. Pellentsque
+ ornare se lacinia quam venenatis vestibulum. Integer
+ posuere erat a ante venenatis dapibus posuere velit
+ aliquet.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Classic Pools
+
In Melboun
+
+
+
+
+
+
+
+
Melboun pool becomes cooler than soul.
+
Museo coffees got in touch with Freya for
+ their renovation. We took over and asked them to
+ have
+ a cup of coffee for themselves while the job is
+ done!
+ Sed posuere consectetur est at lobortis. Fusce
+ dapibs,
+ tellus ac cursus commodo, tortor mauris condimentum
+ nibh,
+ ut fermentum massa justo sit amet risus. Duis
+ mollis,
+ nisi erat porttitor ligula, eget lacinia odio sem
+ nec elit. Pellentsque
+ ornare se lacinia quam venenatis vestibulum. Integer
+ posuere erat a ante venenatis dapibus posuere velit
+ aliquet.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Be The Milan Brighter than Sun Shine
+
Museo coffees got in touch with Freya for
+ their renovation. We took over and asked them to
+ have
+ a cup of coffee for themselves while the job is
+ done!
+ Sed posuere consectetur est at lobortis. Fusce
+ dapibs,
+ tellus ac cursus commodo, tortor mauris condimentum
+ nibh,
+ ut fermentum massa justo sit amet risus. Duis
+ mollis,
+ nisi erat porttitor ligula, eget lacinia odio sem
+ nec elit. Pellentsque
+ ornare se lacinia quam venenatis vestibulum. Integer
+ posuere erat a ante venenatis dapibus posuere velit
+ aliquet.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/index_about.xml b/theme_archit/views/snippets/index_about.xml
new file mode 100755
index 000000000..ca0b8d005
--- /dev/null
+++ b/theme_archit/views/snippets/index_about.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
RADER Inc. is the hub for world's top architects and
+ inventors,
+ ready to turn your imagination into
+ reality
+
+
+
All photographs provided for demo purposes only.
+
+
+
+
+
+
+
RESIDENTIAL
+
From Manitoba to
+ Brooklyn,
+ affordable, comfortable and livable
+ houses
+ for families
+ of
+ all shapes and sizes are covered by us.
+ Cras
+ justo odio, dapibus, egestas eget quam
+ lorem
+ ipsum.
+
+
+
+
+
+
+
COMMERCIAL
+
Sed eleifend nibh id
+ massa
+ tincidunt, at dapibus nisi hendrerit.
+ Curabitur quis ex
+ vulputate,
+ egestas justo eget, sollicitudin velit.i
+ Proin rhoncus ligula ac dapibus aliquet
+
+
+
+
+
+
+
HOSPITALITY
+
Nulla mi nulla,
+ pulvinar
+ eget leo et, lacinia tincidunt velit. Ut
+ ac
+ arcu pulvinar,
+ ornare urna quis,
+ sit amet ex tincidunt pretium sit amet
+ ut
+ nisi.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/index_banner.xml b/theme_archit/views/snippets/index_banner.xml
new file mode 100755
index 000000000..de9d22247
--- /dev/null
+++ b/theme_archit/views/snippets/index_banner.xml
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Luxurios Apartment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Luxurios Apartment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Luxurios Apartment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/theme_archit/views/snippets/login.xml b/theme_archit/views/snippets/login.xml
new file mode 100755
index 000000000..9ca043245
--- /dev/null
+++ b/theme_archit/views/snippets/login.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/projects.xml b/theme_archit/views/snippets/projects.xml
new file mode 100755
index 000000000..d573e2a93
--- /dev/null
+++ b/theme_archit/views/snippets/projects.xml
@@ -0,0 +1,209 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Concept: Be Nature
+
+
+ Kolalpur,Malaysia
+
+
+
+
+
+
+
+
+
+ Prow scuttle parrel provost Sail
+ ho shrouds spirits boom
+ mizzenmast yardarm.
+ Pinnace holystone mizzenmast
+ quarter crow's nest nipperkin
+ grog yardarm hempen halter furl.
+
+
Deadlights jack lad schooner
+ scallywag dance the hempen jig
+ carouser
+ broadside cable strike colors.
+ Bring a spring upon her cable
+ holystone blow the
+ man down spanker Shiver me
+ timbers to go on account lookout
+ wherry doubloon chase. Belay
+ yo-ho-ho keelhaul squiffy black
+ spot yardarm spyglass sheet
+ transom
+ heave to.
+
+ Continue reading ⟶
+
+
+
+
+
+
+
+
+
+ Tasty Coffe From A cafteria
+
+
Lillie, France
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Trysail Sail ho Corsair red
+ ensign hulk smartly boom jib rum
+ gangway. Case shot Shiver me
+ timbers
+ gangplank crack Jennys tea cup
+ ballast Blimey lee snow crow's
+ nest rutters. Fluke jib scourge
+ of the seven seas boatswain
+ schooner gaff booty Jack Tar
+ transom
+ spirits.
+ Deadlights jack lad schooner
+ scallywag dance the hempen jig
+ carouser
+ broadside cable strike colors.
+ Bring a spring upon her cable
+ holystone blow the
+ man down spanker Shiver me
+ timbers to go on account lookout
+ wherry doubloon chase. Belay
+ yo-ho-ho keelhaul squiffy black
+ spot yardarm spyglass sheet
+ transom
+ heave to.
+
+ Continue reading ⟶
+
+
+
+
+
+
+
+
+
+ Own Royal Hospitality
+
+
+ Rome, Ittaly
+
+
+
+
+
+
+
+
+
Deadlights jack lad schooner
+ scallywag dance the hempen jig
+ carouser
+ broadside cable strike colors.
+ Bring a spring upon her cable
+ holystone blow the
+ man down spanker Shiver me
+ timbers to go on account lookout
+ wherry doubloon chase. Belay
+ yo-ho-ho keelhaul squiffy black
+ spot yardarm spyglass sheet
+ transom
+ heave to.
+
+ Continue reading ⟶
+
+
+
+
+
+
+
+
+
+ Feel the Luxury
+
+
+ Dubai, United arab emirates
+
+
+
+
+
+
+
+
+
Deadlights jack lad schooner
+ scallywag dance the hempen jig
+ carouser
+ broadside cable strike colors.
+ Bring a spring upon her cable
+ holystone blow the
+ man down spanker Shiver me
+ timbers to go on account lookout
+ wherry doubloon chase. Belay
+ yo-ho-ho keelhaul squiffy black
+ spot yardarm spyglass sheet
+ transom
+ heave to.
+
+ Continue reading ⟶
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/recognition.xml b/theme_archit/views/snippets/recognition.xml
new file mode 100755
index 000000000..6d94fb829
--- /dev/null
+++ b/theme_archit/views/snippets/recognition.xml
@@ -0,0 +1,119 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Recognitions
+
+ Notable Awards
+
+
+
+
+
+
+
Rader Inc. is vastly recognized
+ worldwide for it's stunning designs and
+ creations. We are a
+ team consisting of
+ specialized persons in comprehensive interior
+ detailing and space planning .
+ Lorem ipsum dolor sit amet, consectetur
+ adipisicing elit, eiusmod tempor
+ incididunt ut labore et dolore magna aliqua. Ut
+ enim ad minim veniam,quis
+ nostrud exercitation ullamco laboris nisi
+ ut aliquip ex ea commodoconsequat. Duis aute
+ irure dolor in reprehenderit i
+ n voluptate velit essecillum dolore eu fugiat
+ nulla.
+
+
To schedule a consultation program with our
+ design team.
+ Continue reading ⟶
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/register.xml b/theme_archit/views/snippets/register.xml
new file mode 100755
index 000000000..b5396439c
--- /dev/null
+++ b/theme_archit/views/snippets/register.xml
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/single_blog.xml b/theme_archit/views/snippets/single_blog.xml
new file mode 100755
index 000000000..043892ec6
--- /dev/null
+++ b/theme_archit/views/snippets/single_blog.xml
@@ -0,0 +1,371 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mind blown: Creative
+
+ Interior
+
+
+
+
+
+
+
+
+
+ Interior
+
+
+ Mind blown: Creative
+
+
+ Check republic . March 12 2021
+
+
+
+ Scallywag dance the hempen jig carouser
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+
+
+
+
+
+ Trysail Sail ho Corsair red ensign hulk
+ smartly boom
+ jib rum gangway. Case shot Shiver me timbers
+ gangplank crack Jennys tea cup ballast
+ Blimey lee
+ snow crow's
+ nest rutters. Fluke jib scourge of the seven
+ seas
+ boatswain schooner gaff booty Jack Tar
+ transom
+ spirits.
+ Deadlights jack lad schooner scallywag dance
+ the
+ hempen jig carouser
+
+
+ broadside cable strike colors. Bring a
+ spring upon
+ her cable holystone blow the
+ man down spanker Shiver me timbers to go on
+ account
+ lookout
+ wherry doubloon chase. Belay yo-ho-ho
+ keelhaul
+ squiffy black spot yardarm spyglass sheet
+ transom
+ heave
+ to.
+ Continue
+ reading ⟶
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/theme_archit/views/snippets/single_project.xml b/theme_archit/views/snippets/single_project.xml
new file mode 100755
index 000000000..72c620ec8
--- /dev/null
+++ b/theme_archit/views/snippets/single_project.xml
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Go green
+
+ Be with Nature
+
+
+
+
+
+
+
+
+
+
+ Trysail Sail ho Corsair red ensign
+ hulk
+ smartly boom jib
+ rum gangway. Case shot Shiver me
+ timbers
+ gangplank crack Jennys tea cup
+ ballast
+ Blimey lee snow
+ crow's
+ nest rutters. Fluke jib scourge of
+ the seven
+ seas boatswain schooner gaff booty
+ Jack Tar
+ transom
+ spirits.
+ Deadlights jack lad schooner
+ scallywag dance
+ the hempen jig carouser broadside
+ cable
+ strike colors.
+
+
+
+
+
Ricotta fromage frais smelly cheese.
+ Hard
+ cheese cheese triangles cheeseburger
+ parmesan fondue hard
+ cheese halloumi bavarian bergkase.
+ Edam goat
+ airedale swiss red leicester babybel
+ caerphilly
+ emmental.
+ Smelly cheese say cheese camembert
+ de
+ normandie taleggio macaroni cheese
+ cottage
+ cheese st. agur
+ blue
+ cheese.
+
+
+ Gouda the big cheese squirty cheese.
+ Parmesan gouda rubber
+ cheese chalk
+ and cheese
+ strings jarlsberg caerphilly.
+ Monterey jack
+ emmental mozzarella rubber cheese
+ cottage
+ cheese ricotta
+ concoction edam. Cheddar cheese
+ strings cut
+ the cheese stilton cheese slices
+ bocconcini
+ the big
+ cheese
+ blue castello. Cheese on toast who
+ moved my
+ cheese.
+
+
+ Bavarian bergkase who moved my
+ cheese
+ jarlsberg. Cheesy grin rubber cheese
+ cheese
+ on toast monterey
+ jack cheeseburger brie bavarian
+ bergkase
+ cheese strings. Cheese and wine
+ macaroni
+ cheese blue
+ castello
+ rubber cheese chalk and cheese
+ dolcelatte
+ cream cheese st. agur blue cheese.
+ Pecorino
+ cut the cheese
+ cheeseburger cheese slices when the
+ cheese
+ comes out everybody's happy
+ dolcelatte
+ macaroni cheese
+ lancashire. Cheese and biscuits
+ cheesy feet
+ cauliflower cheese chalk and cheese
+ hard
+ cheese halloumi
+ stilton cream cheese. Mozzarella
+ cheese
+ triangles dolcelatte cheese slices
+ the big
+ cheese smelly
+ cheese danish fontina taleggio.
+ Fromage brie
+ smelly cheese roquefort airedale
+ babybel
+ jarlsberg
+ fondue. Dolcelatte queso
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+