Commit f275f1eb authored by Clint Mourlevat's avatar Clint Mourlevat

First version

parent 9eb2d6a0
......@@ -4,7 +4,6 @@ using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Stratis.Guru.Models;
namespace Stratis.Guru.Controllers
{
......@@ -15,29 +14,22 @@ namespace Stratis.Guru.Controllers
return View();
}
public IActionResult About()
{
ViewData["Message"] = "Your application description page.";
return View();
}
[Route("contact")]
public IActionResult Contact()
{
ViewData["Message"] = "Your contact page.";
return View();
}
public IActionResult Privacy()
[Route("block-explorer")]
public IActionResult Explorer()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
[Route("generator")]
public IActionResult Generator()
{
return View(new ErrorViewModel {RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier});
return View();
}
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
......@@ -9,18 +10,19 @@ using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.FileProviders;
namespace Stratis.Guru
{
public class Startup
{
public IConfiguration Configuration { get; }
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
......@@ -31,7 +33,6 @@ namespace Stratis.Guru
options.MinimumSameSitePolicy = SameSiteMode.None;
});
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
......@@ -52,6 +53,15 @@ namespace Stratis.Guru
app.UseStaticFiles();
app.UseCookiePolicy();
// Node.js Modules Directory Access
app.UseStaticFiles(new StaticFileOptions
{
FileProvider = new PhysicalFileProvider(
Path.Combine(env.ContentRootPath, "node_modules")
),
RequestPath = "/npm"
});
app.UseMvc(routes =>
{
routes.MapRoute(
......
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
</ItemGroup>
</Project>

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stratis.Guru", "Stratis.Guru.csproj", "{4D393841-F041-4D75-8033-873799B61EB2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4D393841-F041-4D75-8033-873799B61EB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4D393841-F041-4D75-8033-873799B61EB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4D393841-F041-4D75-8033-873799B61EB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4D393841-F041-4D75-8033-873799B61EB2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
@{
ViewData["Title"] = "About";
}
<h2>@ViewData["Title"]</h2>
<h3>@ViewData["Message"]</h3>
<p>Use this area to provide additional information.</p>
@{
ViewData["Title"] = "Contact";
Layout = "_Layout";
}
<h2>@ViewData["Title"]</h2>
<h3>@ViewData["Message"]</h3>
<address>
One Microsoft Way<br />
Redmond, WA 98052-6399<br />
<abbr title="Phone">P:</abbr>
425.555.0100
</address>
<address>
<strong>Support:</strong> <a href="mailto:Support@example.com">Support@example.com</a><br />
<strong>Marketing:</strong> <a href="mailto:Marketing@example.com">Marketing@example.com</a>
</address>
<section class="welcome-area" id="welcome-1">
<div class="header-token">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 pb-4 align-self-center text-center">
<h1><i class="fa fa-envelope-o"></i> Contact Me</h1>
<p>If you need to contact me, don't hesitate to send me a mail at clint.mourlevat@gmail.com</p>
</div>
</div>
</div>
</div>
</section>
\ No newline at end of file
@model object
@{
ViewBag.Title = "title";
Layout = "_Layout";
}
<h2>title</h2>
@{
ViewBag.Title = "Stratis Address Generator";
Layout = "_Layout";
}
<section class="welcome-area" id="welcome-1">
<div class="header-token">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 align-self-center text-center">
<h1>ARDA Decentralized Blockchain Platform</h1>
<p>Arda makes it easy creation and deployment of decentralized applications, that can be downloaded by end-users from the application store.</p>
<a href="#" class="btn-secondary-box">Download Whitepaper</a>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 align-self-center text-center">
<h1>ARDA Decentralized Blockchain Platform</h1>
<p>Arda makes it easy creation and deployment of decentralized applications, that can be downloaded by end-users from the application store.</p>
<a href="#" class="btn-secondary-box">Download Whitepaper</a>
</div>
</div>
</div>
</div>
</section>
\ No newline at end of file
@{
ViewBag.Title = "Online ticker for Stratis";
ViewData["Title"] = "Home Page";
}
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="6000">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="~/images/banner1.svg" alt="ASP.NET" class="img-responsive" />
<div class="carousel-caption" role="option">
<p>
Learn how to build ASP.NET apps that can run anywhere.
<a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525028&clcid=0x409">
Learn More
</a>
</p>
<section class="welcome-area" id="welcome-1">
<div class="header-token">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 align-self-center text-center">
<h1>The <strong>$STRAT</strong> price in realtime.</h1>
<p>Arda makes it easy creation and deployment of decentralized applications, that can be downloaded by end-users from the application store.</p>
<a href="#" class="btn-secondary-box">Download Whitepaper</a>
</div>
</div>
<div class="item">
<img src="~/images/banner2.svg" alt="Visual Studio" class="img-responsive" />
<div class="carousel-caption" role="option">
<p>
There are powerful new features in Visual Studio for building modern web apps.
<a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525030&clcid=0x409">
Learn More
</a>
</p>
</div>
</div>
<div class="item">
<img src="~/images/banner3.svg" alt="Microsoft Azure" class="img-responsive" />
<div class="carousel-caption" role="option">
<p>
Learn how Microsoft's Azure cloud platform allows you to build, deploy, and scale web apps.
<a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525027&clcid=0x409">
Learn More
</a>
</p>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="row">
<div class="col-md-3">
<h2>Application uses</h2>
<ul>
<li>Sample pages using ASP.NET Core MVC</li>
<li>Theming using <a href="https://go.microsoft.com/fwlink/?LinkID=398939">Bootstrap</a></li>
</ul>
</div>
<div class="col-md-3">
<h2>How to</h2>
<ul>
<li><a href="https://go.microsoft.com/fwlink/?LinkID=398600">Add a Controller and View</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699315">Manage User Secrets using Secret Manager.</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699316">Use logging to log a message.</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699317">Add packages using NuGet.</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699319">Target development, staging or production environment.</a></li>
</ul>
</div>
<div class="col-md-3">
<h2>Overview</h2>
<ul>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=518008">Conceptual overview of what is ASP.NET Core</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699320">Fundamentals of ASP.NET Core such as Startup and middleware.</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=398602">Working with Data</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkId=398603">Security</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkID=699321">Client side development</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkID=699322">Develop on different platforms</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkID=699323">Read more on the documentation site</a></li>
</ul>
</div>
<div class="col-md-3">
<h2>Run &amp; Deploy</h2>
<ul>
<li><a href="https://go.microsoft.com/fwlink/?LinkID=517851">Run your app</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkID=517853">Run tools such as EF migrations and more</a></li>
<li><a href="https://go.microsoft.com/fwlink/?LinkID=398609">Publish to Microsoft Azure Web Apps</a></li>
</ul>
</div>
</div>
</section>
\ No newline at end of file
@{
ViewData["Title"] = "Privacy Policy";
}
<h2>@ViewData["Title"]</h2>
<p>Use this page to detail your site's privacy policy.</p>
@model ErrorViewModel
@{
ViewData["Title"] = "Error";
}
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (Model.ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}
<h3>Development Mode</h3>
<p>
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
</p>
<p>
<strong>Development environment should not be enabled in deployed applications</strong>, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>, and restarting the application.
</p>
......@@ -24,7 +24,7 @@
Use this space to summarize your privacy and cookie use policy.
</p>
<div class="navbar-right">
<a asp-controller="Home" asp-action="Privacy" class="btn btn-info navbar-btn">Learn More</a>
@*<a asp-controller="Home" asp-action="Privacy" class="btn btn-info navbar-btn">Learn More</a>*@
<button type="button" class="btn btn-default navbar-btn" data-cookie-string="@cookieString">Accept</button>
</div>
</div>
......
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - Stratis.Guru</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Stratis.guru | @ViewBag.Title</title>
<link rel="icon" href="~/favicon.ico" />
<link href="~/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="~/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="~/css/owl.carousel.min.css" rel="stylesheet" type="text/css">
<link href="~/css/owl.theme.default.min.css" rel="stylesheet" type="text/css">
<environment include="Development">
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="~/css/site.css" />
</environment>
<environment exclude="Development">
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css"
asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
<link href="~/css/default.css" rel="stylesheet" type="text/css">
</environment>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<header class="header-area">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a asp-area="" asp-controller="Home" asp-action="Index" class="navbar-brand">Stratis.Guru</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a asp-area="" asp-controller="Home" asp-action="Index">Home</a></li>
<li><a asp-area="" asp-controller="Home" asp-action="About">About</a></li>
<li><a asp-area="" asp-controller="Home" asp-action="Contact">Contact</a></li>
<div class="row">
<div class="col-12">
<nav class="main-nav">
<a asp-controller="Home" asp-action="Index" class="logo ">
<img src="~/images/logo.png" class="light-logo" alt="Stratis.guru"/> <span class="text-white">Stratis</span><span class="text-muted">.guru</span>
<img src="~/images/logos/white-logo-dark.svg" class="dark-logo" alt="Arda ICO"/>
</a>
<ul class="nav">
<li><a asp-action="Index" asp-controller="Home"><i class="fa fa-home"></i> HOME</a></li>
<li><a asp-action="Explorer" asp-controller="Home"><i class="fa fa-book"></i> BLOCK EXPLORER</a></li>
<li><a asp-action="Generator" asp-controller="Home"><i class="fa fa-qrcode"></i> ADDRESS GENERATOR</a></li>
<li><a asp-action="Contact" asp-controller="Home"><i class="fa fa-envelope"></i> CONTACT</a></li>-code
</ul>
<a class='menu-trigger'>
<span>Menu</span>
</a>
</nav>
</div>
</div>
</nav>
</div>
</header>
@RenderBody()
<div id="crafted" class="pb-4">
<p class="text-center small">Proudly Crafted with 💖 by <a href="https://twitter.com/clint_network" target="_blank">Clint.Network</a> — Help me to maintain by sending $STRAT at SdKPovau8L1ViuioiYcgJauwRMPAxfbDG6</p>
</div>
<script src="~/js/jquery-2.1.0.min.js"></script>
<script src="~/js/popper.js"></script>
<script src="~/js/bootstrap.min.js"></script>
<script src="~/js/particles.min.js"></script>
<script src="~/js/scrollreveal.min.js"></script>
<script src="~/js/jquery.downCount.js"></script>
<script src="~/js/parallax.min.js"></script>
<script src="~/js/owl.carousel.min.js"></script>
<script src="~/js/particle-green.js"></script>
<script src="~/js/custom.js"></script>
</body>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111742056-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-111742056-1');
</script>
<!--stratisguru-->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5a48282c1ee2c396"></script>
</html>
@*<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Clint Mourlevat">
<link rel="icon" href="~/favicon.ico">
<title>Stratis.Guru | Online Stratis Tool</title>
<!-- Bootstrap core CSS -->
<link href="~/npm/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<partial name="_CookieConsentPartial" />
<!-- Custom styles for this template -->
<link href="~/css/site.css" rel="stylesheet">
</head>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<p>&copy; 2018 - Stratis.Guru</p>
</footer>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-transparent mt-4">
<div class="container">
<a class="navbar-brand mr-5 mt-0" asp-controller="Home" asp-action="Index"><img class="logo" src="~/images/logo.png"/> Stratis.Guru</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-right">
<div class="collapse navbar-collapse ml-auto" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link ml-4" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link ml-4" href="#">Disabled</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
@RenderBody()
<environment include="Development">
<script src="~/lib/jquery/dist/jquery.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
</environment>
<environment exclude="Development">
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.3.1.min.js"
asp-fallback-src="~/lib/jquery/dist/jquery.min.js"
asp-fallback-test="window.jQuery"
crossorigin="anonymous"
integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT">
</script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js"
asp-fallback-src="~/lib/bootstrap/dist/js/bootstrap.min.js"
asp-fallback-test="window.jQuery && window.jQuery.fn && window.jQuery.fn.modal"
crossorigin="anonymous"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa">
</script>
<script src="~/js/site.min.js" asp-append-version="true"></script>
</environment>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111742056-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-111742056-1');
</script>
@RenderSection("Scripts", required: false)
<!--stratisguru-->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5a48282c1ee2c396"></script>
</body>
</html>
*@
\ No newline at end of file
@using Stratis.Guru
@using Stratis.Guru.Models
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
{
"name": "stratis.guru",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"bootstrap": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.1.3.tgz",
"integrity": "sha512-rDFIzgXcof0jDyjNosjv4Sno77X4KuPeFxG2XZZv1/Kc8DRVGVADdoQyyOVDwPqL36DDmtCQbrpMCqvpPLJQ0w=="
}
}
}
{
"name": "stratis.guru",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "http://git.clint.network/clintm/Stratis.Guru.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.1.3"
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
/**
* Owl Carousel v2.3.3
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.html) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
\ No newline at end of file
/**
* Owl Carousel v2.3.3
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#F6FCFF" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#F6FCFF" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#F6FCFF">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#1DAAE5" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#1DAAE5" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#1DAAE5">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#01405F" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#01405F" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#01405F">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#FB236A" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#FB236A" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#FB236A">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#1DAAE5" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#1DAAE5" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#1DAAE5">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#3B566E"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#1DAAE5" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#1DAAE5" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#1DAAE5">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#3B566E"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#01405F" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#01405F" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#01405F">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#3B566E"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="29px" viewBox="0 0 107 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>Group 21</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.080909147 23.7668609 0.080909147 23.7668609 27.3236216 0 27.3236216"></polygon>
<polygon id="path-3" points="0.0182046848 0.109626374 16.2609108 0.109626374 16.2609108 28.9868559 0.0182046848 28.9868559"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Desktop-HD" transform="translate(-77.000000, -53.000000)">
<g id="Group-21" transform="translate(77.000000, 53.000000)">
<g id="Group-23">
<g id="Group-3" transform="translate(0.000000, 1.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M20.7964034,18.5857148 C19.7514316,16.5134913 18.7718343,14.5708599 17.7239683,12.4925472 C16.6692925,14.5880347 15.6827151,16.5481533 14.6571514,18.5857148 L20.7964034,18.5857148 Z M13.6033267,0.080909147 C17.0314063,6.91587406 20.378619,13.5893954 23.7668609,20.3451999 L11.7159762,20.3451999 C11.8635797,20.0263722 11.9847951,19.7453293 12.1220136,19.4710001 C13.5275671,16.6605705 14.9249488,13.8465497 16.3548475,11.046425 C16.5787214,10.6078418 16.6156649,10.256382 16.381406,9.80889912 C15.4622461,8.05362966 14.5858182,6.27931174 13.6247778,4.37602633 C13.4441464,4.70094322 13.3069279,4.92874416 13.1879258,5.16435185 C9.68987492,12.0970573 6.19369679,19.0305433 2.69683767,25.9638733 C1.95235058,27.4398173 1.9516696,27.4396611 -3.40492611e-05,27.2156074 C4.51728142,18.2049016 9.02114743,9.22105091 13.6033267,0.080909147 Z" id="Fill-1" fill="#FB236A" mask="url(#mask-2)"></path>
</g>
<g id="Group-6" transform="translate(18.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-5"></g>
<path d="M16.2609622,28.8919352 C16.1599202,28.9279462 16.1347453,28.9437209 16.1085429,28.9453143 C14.2954385,29.0551 14.294411,29.0554187 13.5355685,27.5270231 C9.14966086,18.6931769 4.76426704,9.85917143 0.379558258,1.02468791 C0.25145756,0.766556044 0.134659865,0.503643956 0.0182046848,0.254594505 C0.105888585,0.201693407 0.126782014,0.178748352 0.149559278,0.176836264 C2.02825534,0.018610989 2.0296254,0.018132967 2.801826,1.58110549 C7.17026532,10.4222813 11.5380196,19.2637758 15.9045751,28.1059077 C16.0318195,28.3637209 16.1421094,28.6287044 16.2609622,28.8919352" id="Fill-4" fill="#FB236A" mask="url(#mask-4)"></path>
</g>
<g id="Group-22" transform="translate(8.000000, 26.000000)" fill="#FB236A">
<path d="M0,2 C0.216980454,1.43518007 0.357484191,0.928744767 0.598878988,0.497481996 C0.728873239,0.265062699 1.03089968,0.0210783974 1.25612604,0.0199592033 C6.42064889,-0.00671492138 11.5851717,-0.00671492138 16.7495329,0.020332268 C16.9739508,0.0214514621 17.2737137,0.270845202 17.4040313,0.504383692 C17.6442943,0.935086867 17.7847981,1.43984338 18,2 L0,2 Z" id="Fill-7"></path>
</g>
</g>
<path d="M51.402,7 L53.074,7 L59.454,22.62 L57.342,22.62 L55.494,18.044 L48.938,18.044 L47.112,22.62 L45,22.62 L51.402,7 Z M55.054,16.504 L52.238,9.288 L49.334,16.504 L55.054,16.504 Z M62.3297143,22.62 L62.3297143,7 L69.0177143,7 C69.7070511,7 70.3413781,7.14299857 70.9207143,7.429 C71.5000506,7.71500143 71.9987122,8.09633095 72.4167143,8.573 C72.8347164,9.04966905 73.1610465,9.58499703 73.3957143,10.179 C73.6303822,10.773003 73.7477143,11.3779969 73.7477143,11.994 C73.7477143,12.5366694 73.6707151,13.0609975 73.5167143,13.567 C73.3627136,14.0730025 73.1427158,14.5313313 72.8567143,14.942 C72.5707129,15.3526687 72.2260497,15.7046652 71.8227143,15.998 C71.419379,16.2913348 70.9683835,16.5039993 70.4697143,16.636 L74.2537143,22.62 L72.0097143,22.62 L68.4457143,17.01 L64.3097143,17.01 L64.3097143,22.62 L62.3297143,22.62 Z M64.3097143,15.25 L69.0397143,15.25 C69.450383,15.25 69.8207127,15.1620009 70.1507143,14.986 C70.480716,14.8099991 70.7630465,14.5716682 70.9977143,14.271 C71.2323822,13.9703318 71.4157137,13.622002 71.5477143,13.226 C71.679715,12.829998 71.7457143,12.4193355 71.7457143,11.994 C71.7457143,11.5539978 71.6687151,11.1396686 71.5147143,10.751 C71.3607136,10.3623314 71.1553823,10.0176682 70.8987143,9.717 C70.6420464,9.41633183 70.3413827,9.18166751 69.9967143,9.013 C69.6520459,8.84433249 69.2890496,8.76 68.9077143,8.76 L64.3097143,8.76 L64.3097143,15.25 Z M77.5694287,22.62 L77.5694287,7 L82.9814287,7 C84.2281016,7 85.3244239,7.20533128 86.2704287,7.616 C87.2164334,8.02666872 88.0047588,8.58399648 88.6354287,9.288 C89.2660985,9.99200352 89.7390937,10.8169953 90.0544287,11.763 C90.3697636,12.7090047 90.5274287,13.717328 90.5274287,14.788 C90.5274287,15.9760059 90.3514304,17.0503285 89.9994287,18.011 C89.6474269,18.9716715 89.141432,19.7929966 88.4814287,20.475 C87.8214254,21.1570034 87.0257666,21.6849981 86.0944287,22.059 C85.1630907,22.4330019 84.1254344,22.62 82.9814287,22.62 L77.5694287,22.62 Z M88.5254287,14.788 C88.5254287,13.9079956 88.4044299,13.0976704 88.1624287,12.357 C87.9204274,11.6163296 87.5610977,10.9820026 87.0844287,10.454 C86.6077596,9.92599736 86.0247654,9.51166817 85.3354287,9.211 C84.6460919,8.91033183 83.8614331,8.76 82.9814287,8.76 L79.5494287,8.76 L79.5494287,20.86 L82.9814287,20.86 C83.8760998,20.86 84.6717585,20.7060015 85.3684287,20.398 C86.0650988,20.0899985 86.6444263,19.6646694 87.1064287,19.122 C87.568431,18.5793306 87.9204274,17.9376704 88.1624287,17.197 C88.4044299,16.4563296 88.5254287,15.6533377 88.5254287,14.788 Z M98.309143,7 L99.981143,7 L106.361143,22.62 L104.249143,22.62 L102.401143,18.044 L95.845143,18.044 L94.019143,22.62 L91.907143,22.62 L98.309143,7 Z M101.961143,16.504 L99.145143,9.288 L96.241143,16.504 L101.961143,16.504 Z" id="ARDA" fill="#3B566E"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
(function(_0x2f2ex1) {
'use strict';
_0x2f2ex1(document)['ready'](function() {
_0x2f2exe();
if (_0x2f2ex1('.menu-trigger')['length']) {
_0x2f2ex1('.menu-trigger')['click'](function() {
_0x2f2ex1(this)['toggleClass']('active');
_0x2f2ex1('.header-area .nav')['slideToggle'](200)
})
};
_0x2f2ex1('body')['click'](function(_0x2f2ex4) {
var _0x2f2ex5 = _0x2f2ex4['target'];
if (_0x2f2ex1(_0x2f2ex5)['parents']('.flag-list')['length'] || _0x2f2ex1(_0x2f2ex5)['hasClass']('flag-list')) {
return
};
if (_0x2f2ex1('.flag-list')['css']('display') === 'block') {
_0x2f2ex1('.flag-list')['css']('display', 'none');
return
};
if (_0x2f2ex1(_0x2f2ex5)['hasClass']('selected') || _0x2f2ex1(_0x2f2ex5)['parents']('.selected')['length']) {
_0x2f2ex1('.flag-list')['css']('display', 'block')
}
});
if (_0x2f2ex1('.countdown')['length']) {
_0x2f2ex1('.countdown')['downCount']({
date: '09/29/2018 12:00:00',
offset: +10
})
};
if (_0x2f2ex1('.token .token-input')['length']) {
_0x2f2ex1('.token .token-input .fa-plus')['click'](function() {
var _0x2f2ex6 = _0x2f2ex1(this)['parent']()['find']('input')['val']();
var _0x2f2ex7 = _0x2f2ex1(this)['parent']()['find']('input')['data']('step');
if (_0x2f2ex6 == '') {
_0x2f2ex6 = 0
};
var _0x2f2ex8 = parseInt(_0x2f2ex6, 10) + parseInt(_0x2f2ex7, 10);
_0x2f2ex1(this)['parent']()['find']('input')['val'](_0x2f2ex8)
});
_0x2f2ex1('.token .token-input .fa-minus')['click'](function() {
var _0x2f2ex6 = _0x2f2ex1(this)['parent']()['find']('input')['val']();
var _0x2f2ex7 = _0x2f2ex1(this)['parent']()['find']('input')['data']('step');
if (_0x2f2ex6 == '') {
_0x2f2ex6 = 0
};
var _0x2f2ex8 = parseInt(_0x2f2ex6, 10) - parseInt(_0x2f2ex7, 10);
if (_0x2f2ex8 <= 0) {
_0x2f2ex8 = _0x2f2ex7
};
_0x2f2ex1(this)['parent']()['find']('input')['val'](_0x2f2ex8)
})
};
window['sr'] = new scrollReveal();
_0x2f2ex1('a[href*=\#]:not([href=\#])')['click'](function() {
if (location['pathname']['replace'](/^\//, '') == this['pathname']['replace'](/^\//, '') && location['hostname'] == this['hostname']) {
var _0x2f2ex9 = _0x2f2ex1(this['hash']);
_0x2f2ex9 = _0x2f2ex9['length'] ? _0x2f2ex9 : _0x2f2ex1('[name=' + this['hash']['slice'](1) + ']');
if (_0x2f2ex9['length']) {
var _0x2f2exa = _0x2f2ex1(window)['width']();
if (_0x2f2exa < 991) {
_0x2f2ex1('.menu-trigger')['removeClass']('active');
_0x2f2ex1('.header-area .nav')['slideUp'](200)
};
_0x2f2ex1('html,body')['animate']({
scrollTop: (_0x2f2ex9['offset']()['top']) - 30
}, 700);
return false
}
}
});
if (_0x2f2ex1('.token-progress ul')['length']) {
_0x2f2ex1('.token-progress ul')['find']('.item')['each'](function(_0x2f2exb) {
_0x2f2ex1('.token-progress ul .item:eq(' + [_0x2f2exb] + ')')['css']('left', _0x2f2ex1('.token-progress ul .item:eq(' + [_0x2f2exb] + ')')['data']('position'))
});
var _0x2f2exc = _0x2f2ex1('.token-progress ul .progress-active')['data']('progress');
_0x2f2ex1('.token-progress ul .progress-active')['css']('width', _0x2f2exc)
};
if (_0x2f2ex1('.table-progress')['length']) {
_0x2f2ex1('.table-latests')['find']('.table-progress')['each'](function(_0x2f2exb) {
_0x2f2ex1('.table-progress:eq(' + [_0x2f2exb] + ') .progress-line')['css']('width', parseInt(_0x2f2ex1('.table-progress:eq(' + [_0x2f2exb] + ') .progress-line')['data']('value'), 10) + parseInt(70, 10) + '%')
})
};
if (_0x2f2ex1('.roadmap-modern-wrapper')['length']) {
_0x2f2ex1('.roadmap-modern-wrapper')['owlCarousel']({
loop: true,
margin: 30,
nav: false,
responsive: {
0: {
items: 1
},
600: {
items: 2
},
1000: {
items: 3
}
}
})
};
if (_0x2f2ex1('.roadmap-lux-wrapper')['length']) {
_0x2f2ex1('.roadmap-lux-wrapper')['owlCarousel']({
loop: true,
margin: 30,
nav: false,
responsive: {
0: {
items: 1
},
600: {
items: 2
},
1000: {
items: 3
}
}
})
}
});
_0x2f2ex1(window)['load'](function() {
_0x2f2ex1('.loading-wrapper')['animate']({
"\x6F\x70\x61\x63\x69\x74\x79": '0'
}, 600, function() {
setTimeout(function() {
_0x2f2ex1('.loading-wrapper')['css']('visibility', 'hidden')['fadeOut']();
if (_0x2f2ex1('.parallax')['length']) {
_0x2f2ex1('.parallax')['parallax']({
imageSrc: 'assets/images/parallax.jpg',
zIndex: '1'
})
}
}, 300)
})
});
_0x2f2ex1(window)['scroll'](function() {
var _0x2f2exa = _0x2f2ex1(window)['width']();
if (_0x2f2exa > 991) {
var _0x2f2exd = _0x2f2ex1(window)['scrollTop']();
if (_0x2f2exd >= 30) {
_0x2f2ex1('.header-area')['addClass']('header-sticky');
_0x2f2ex1('.header-area .dark-logo')['css']('display', 'block');
_0x2f2ex1('.header-area .light-logo')['css']('display', 'none')
} else {
_0x2f2ex1('.header-area')['removeClass']('header-sticky');
_0x2f2ex1('.header-area .dark-logo')['css']('display', 'none');
_0x2f2ex1('.header-area .light-logo')['css']('display', 'block')
}
}
});
_0x2f2ex1(window)['resize'](function() {
_0x2f2exe()
});
function _0x2f2exe() {
/*var _0x2f2exa = _0x2f2ex1(window)['width']();
if (_0x2f2exa > 991) {
var _0x2f2exf = _0x2f2ex1(window)['height']();
_0x2f2ex1('.welcome-area')['css']('height', _0x2f2exf - 80)
} else {
_0x2f2ex1('.welcome-area')['css']('height', 'auto')
};
if (_0x2f2ex1('#home')['length']) {
particlesJS('home', welcome1Settings)
}*/
}
})(jQuery)
This diff is collapsed.
/**
* downCount: Simple Countdown clock with offset
* Author: Sonny T. <hi@sonnyt.com>, sonnyt.com
*/
(function ($) {
$.fn.downCount = function (options, callback) {
var settings = $.extend({
date: null,
offset: null
}, options);
// Throw error if date is not set
if (!settings.date) {
$.error('Date is not defined.');
}
// Throw error if date is set incorectly
if (!Date.parse(settings.date)) {
$.error('Incorrect date format, it should look like this, 12/24/2012 12:00:00.');
}
// Save container
var container = this;
/**
* Change client's local date to match offset timezone
* @return {Object} Fixed Date object.
*/
var currentDate = function () {
// get client's current date
var date = new Date();
// turn date to utc
var utc = date.getTime() + (date.getTimezoneOffset() * 60000);
// set new Date object
var new_date = new Date(utc + (3600000*settings.offset))
return new_date;
};
/**
* Main downCount function that calculates everything
*/
function countdown () {
var target_date = new Date(settings.date), // set target date
current_date = currentDate(); // get fixed current date
// difference of dates
var difference = target_date - current_date;
// if difference is negative than it's pass the target date
if (difference < 0) {
// stop timer
clearInterval(interval);
if (callback && typeof callback === 'function') callback();
return;
}
// basic math variables
var _second = 1000,
_minute = _second * 60,
_hour = _minute * 60,
_day = _hour * 24;
// calculate dates
var days = Math.floor(difference / _day),
hours = Math.floor((difference % _day) / _hour),
minutes = Math.floor((difference % _hour) / _minute),
seconds = Math.floor((difference % _minute) / _second);
// fix dates so that it will show two digets
days = (String(days).length >= 2) ? days : '0' + days;
hours = (String(hours).length >= 2) ? hours : '0' + hours;
minutes = (String(minutes).length >= 2) ? minutes : '0' + minutes;
seconds = (String(seconds).length >= 2) ? seconds : '0' + seconds;
// based on the date change the refrence wording
var ref_days = (days === 1) ? 'day' : 'days',
ref_hours = (hours === 1) ? 'hour' : 'hours',
ref_minutes = (minutes === 1) ? 'minute' : 'minutes',
ref_seconds = (seconds === 1) ? 'second' : 'seconds';
// set to DOM
container.find('.days').text(days);
container.find('.hours').text(hours);
container.find('.minutes').text(minutes);
container.find('.seconds').text(seconds);
container.find('.days_ref').text(ref_days);
container.find('.hours_ref').text(ref_hours);
container.find('.minutes_ref').text(ref_minutes);
container.find('.seconds_ref').text(ref_seconds);
};
// start
var interval = setInterval(countdown, 1000);
};
})(jQuery);
\ No newline at end of file
This diff is collapsed.
/*!
* parallax.js v1.5.0 (http://pixelcog.github.io/parallax.js/)
* @copyright 2016 PixelCog, Inc.
* @license MIT (https://github.com/pixelcog/parallax.js/blob/master/LICENSE)
*/
!function(t,i,e,s){function o(i,e){var h=this;"object"==typeof e&&(delete e.refresh,delete e.render,t.extend(this,e)),this.$element=t(i),!this.imageSrc&&this.$element.is("img")&&(this.imageSrc=this.$element.attr("src"));var r=(this.position+"").toLowerCase().match(/\S+/g)||[];if(r.length<1&&r.push("center"),1==r.length&&r.push(r[0]),"top"!=r[0]&&"bottom"!=r[0]&&"left"!=r[1]&&"right"!=r[1]||(r=[r[1],r[0]]),this.positionX!==s&&(r[0]=this.positionX.toLowerCase()),this.positionY!==s&&(r[1]=this.positionY.toLowerCase()),h.positionX=r[0],h.positionY=r[1],"left"!=this.positionX&&"right"!=this.positionX&&(isNaN(parseInt(this.positionX))?this.positionX="center":this.positionX=parseInt(this.positionX)),"top"!=this.positionY&&"bottom"!=this.positionY&&(isNaN(parseInt(this.positionY))?this.positionY="center":this.positionY=parseInt(this.positionY)),this.position=this.positionX+(isNaN(this.positionX)?"":"px")+" "+this.positionY+(isNaN(this.positionY)?"":"px"),navigator.userAgent.match(/(iPod|iPhone|iPad)/))return this.imageSrc&&this.iosFix&&!this.$element.is("img")&&this.$element.css({backgroundImage:"url("+this.imageSrc+")",backgroundSize:"cover",backgroundPosition:this.position}),this;if(navigator.userAgent.match(/(Android)/))return this.imageSrc&&this.androidFix&&!this.$element.is("img")&&this.$element.css({backgroundImage:"url("+this.imageSrc+")",backgroundSize:"cover",backgroundPosition:this.position}),this;this.$mirror=t("<div />").prependTo(this.mirrorContainer);var a=this.$element.find(">.parallax-slider"),n=!1;0==a.length?this.$slider=t("<img />").prependTo(this.$mirror):(this.$slider=a.prependTo(this.$mirror),n=!0),this.$mirror.addClass("parallax-mirror").css({visibility:"hidden",zIndex:this.zIndex,position:"fixed",top:0,left:0,overflow:"hidden"}),this.$slider.addClass("parallax-slider").one("load",function(){h.naturalHeight&&h.naturalWidth||(h.naturalHeight=this.naturalHeight||this.height||1,h.naturalWidth=this.naturalWidth||this.width||1),h.aspectRatio=h.naturalWidth/h.naturalHeight,o.isSetup||o.setup(),o.sliders.push(h),o.isFresh=!1,o.requestRender()}),n||(this.$slider[0].src=this.imageSrc),(this.naturalHeight&&this.naturalWidth||this.$slider[0].complete||a.length>0)&&this.$slider.trigger("load")}!function(){for(var t=0,e=["ms","moz","webkit","o"],s=0;s<e.length&&!i.requestAnimationFrame;++s)i.requestAnimationFrame=i[e[s]+"RequestAnimationFrame"],i.cancelAnimationFrame=i[e[s]+"CancelAnimationFrame"]||i[e[s]+"CancelRequestAnimationFrame"];i.requestAnimationFrame||(i.requestAnimationFrame=function(e){var s=(new Date).getTime(),o=Math.max(0,16-(s-t)),h=i.setTimeout(function(){e(s+o)},o);return t=s+o,h}),i.cancelAnimationFrame||(i.cancelAnimationFrame=function(t){clearTimeout(t)})}(),t.extend(o.prototype,{speed:.2,bleed:0,zIndex:-100,iosFix:!0,androidFix:!0,position:"center",overScrollFix:!1,mirrorContainer:"body",refresh:function(){this.boxWidth=this.$element.outerWidth(),this.boxHeight=this.$element.outerHeight()+2*this.bleed,this.boxOffsetTop=this.$element.offset().top-this.bleed,this.boxOffsetLeft=this.$element.offset().left,this.boxOffsetBottom=this.boxOffsetTop+this.boxHeight;var t,i=o.winHeight,e=o.docHeight,s=Math.min(this.boxOffsetTop,e-i),h=Math.max(this.boxOffsetTop+this.boxHeight-i,0),r=this.boxHeight+(s-h)*(1-this.speed)|0,a=(this.boxOffsetTop-s)*(1-this.speed)|0;r*this.aspectRatio>=this.boxWidth?(this.imageWidth=r*this.aspectRatio|0,this.imageHeight=r,this.offsetBaseTop=a,t=this.imageWidth-this.boxWidth,"left"==this.positionX?this.offsetLeft=0:"right"==this.positionX?this.offsetLeft=-t:isNaN(this.positionX)?this.offsetLeft=-t/2|0:this.offsetLeft=Math.max(this.positionX,-t)):(this.imageWidth=this.boxWidth,this.imageHeight=this.boxWidth/this.aspectRatio|0,this.offsetLeft=0,t=this.imageHeight-r,"top"==this.positionY?this.offsetBaseTop=a:"bottom"==this.positionY?this.offsetBaseTop=a-t:isNaN(this.positionY)?this.offsetBaseTop=a-t/2|0:this.offsetBaseTop=a+Math.max(this.positionY,-t))},render:function(){var t=o.scrollTop,i=o.scrollLeft,e=this.overScrollFix?o.overScroll:0,s=t+o.winHeight;this.boxOffsetBottom>t&&this.boxOffsetTop<=s?(this.visibility="visible",this.mirrorTop=this.boxOffsetTop-t,this.mirrorLeft=this.boxOffsetLeft-i,this.offsetTop=this.offsetBaseTop-this.mirrorTop*(1-this.speed)):this.visibility="hidden",this.$mirror.css({transform:"translate3d("+this.mirrorLeft+"px, "+(this.mirrorTop-e)+"px, 0px)",visibility:this.visibility,height:this.boxHeight,width:this.boxWidth}),this.$slider.css({transform:"translate3d("+this.offsetLeft+"px, "+this.offsetTop+"px, 0px)",position:"absolute",height:this.imageHeight,width:this.imageWidth,maxWidth:"none"})}}),t.extend(o,{scrollTop:0,scrollLeft:0,winHeight:0,winWidth:0,docHeight:1<<30,docWidth:1<<30,sliders:[],isReady:!1,isFresh:!1,isBusy:!1,setup:function(){function s(){if(p==i.pageYOffset)return i.requestAnimationFrame(s),!1;p=i.pageYOffset,h.render(),i.requestAnimationFrame(s)}if(!this.isReady){var h=this,r=t(e),a=t(i),n=function(){o.winHeight=a.height(),o.winWidth=a.width(),o.docHeight=r.height(),o.docWidth=r.width()},l=function(){var t=a.scrollTop(),i=o.docHeight-o.winHeight,e=o.docWidth-o.winWidth;o.scrollTop=Math.max(0,Math.min(i,t)),o.scrollLeft=Math.max(0,Math.min(e,a.scrollLeft())),o.overScroll=Math.max(t-i,Math.min(t,0))};a.on("resize.px.parallax load.px.parallax",function(){n(),h.refresh(),o.isFresh=!1,o.requestRender()}).on("scroll.px.parallax load.px.parallax",function(){l(),o.requestRender()}),n(),l(),this.isReady=!0;var p=-1;s()}},configure:function(i){"object"==typeof i&&(delete i.refresh,delete i.render,t.extend(this.prototype,i))},refresh:function(){t.each(this.sliders,function(){this.refresh()}),this.isFresh=!0},render:function(){this.isFresh||this.refresh(),t.each(this.sliders,function(){this.render()})},requestRender:function(){var t=this;t.render(),t.isBusy=!1},destroy:function(e){var s,h=t(e).data("px.parallax");for(h.$mirror.remove(),s=0;s<this.sliders.length;s+=1)this.sliders[s]==h&&this.sliders.splice(s,1);t(e).data("px.parallax",!1),0===this.sliders.length&&(t(i).off("scroll.px.parallax resize.px.parallax load.px.parallax"),this.isReady=!1,o.isSetup=!1)}});var h=t.fn.parallax;t.fn.parallax=function(s){return this.each(function(){var h=t(this),r="object"==typeof s&&s;this==i||this==e||h.is("body")?o.configure(r):h.data("px.parallax")?"object"==typeof s&&t.extend(h.data("px.parallax"),r):(r=t.extend({},h.data(),r),h.data("px.parallax",new o(this,r))),"string"==typeof s&&("destroy"==s?o.destroy(this):o[s]())})},t.fn.parallax.Constructor=o,t.fn.parallax.noConflict=function(){return t.fn.parallax=h,this},t(function(){t('[data-parallax="scroll"]').parallax()})}(jQuery,window,document);
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
/*! Scroll Reveal Animations */
window.scrollReveal=function(t){"use strict";function e(e){this.docElem=t.document.documentElement,this.options=this.extend(this.defaults,e),this.styleBank={},1==this.options.init&&this.init()}var i=1,o=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||function(e){t.setTimeout(e,1e3/60)}}();return e.prototype={defaults:{after:"0s",enter:"bottom",move:"24px",over:"0.66s",easing:"ease-in-out",opacity:0,viewportFactor:.33,reset:!1,init:!0},init:function(){this.scrolled=!1;var e=this;this.elems=Array.prototype.slice.call(this.docElem.querySelectorAll("[data-scroll-reveal]")),this.elems.forEach(function(t,o){var r=t.getAttribute("data-scroll-reveal-id");r||(r=i++,t.setAttribute("data-scroll-reveal-id",r)),e.styleBank[r]||(e.styleBank[r]=t.getAttribute("style")),e.update(t)});var r=function(t){e.scrolled||(e.scrolled=!0,o(function(){e._scrollPage()}))},n=function(){function t(){e._scrollPage(),e.resizeTimeout=null}e.resizeTimeout&&clearTimeout(e.resizeTimeout),e.resizeTimeout=setTimeout(t,200)};t.addEventListener("scroll",r,!1),t.addEventListener("resize",n,!1)},_scrollPage:function(){var t=this;this.elems.forEach(function(e,i){t.update(e)}),this.scrolled=!1},parseLanguage:function(t){function e(t){var e=[],i=["from","the","and","then","but","with"];return t.forEach(function(t,o){i.indexOf(t)>-1||e.push(t)}),e}var i=t.getAttribute("data-scroll-reveal").split(/[, ]+/),o={};return i=e(i),i.forEach(function(t,e){switch(t){case"enter":return void(o.enter=i[e+1]);case"after":return void(o.after=i[e+1]);case"wait":return void(o.after=i[e+1]);case"move":return void(o.move=i[e+1]);case"ease":return o.move=i[e+1],void(o.ease="ease");case"ease-in":return o.move=i[e+1],void(o.easing="ease-in");case"ease-in-out":return o.move=i[e+1],void(o.easing="ease-in-out");case"ease-out":return o.move=i[e+1],void(o.easing="ease-out");case"over":return void(o.over=i[e+1]);default:return}}),o},update:function(t){var e=this.genCSS(t),i=this.styleBank[t.getAttribute("data-scroll-reveal-id")];return null!=i?i+=";":i="",t.getAttribute("data-scroll-reveal-initialized")||(t.setAttribute("style",i+e.initial),t.setAttribute("data-scroll-reveal-initialized",!0)),this.isElementInViewport(t,this.options.viewportFactor)?t.getAttribute("data-scroll-reveal-complete")?void 0:this.isElementInViewport(t,this.options.viewportFactor)?(t.setAttribute("style",i+e.target+e.transition),void(this.options.reset||setTimeout(function(){""!=i?t.setAttribute("style",i):t.removeAttribute("style"),t.setAttribute("data-scroll-reveal-complete",!0)},e.totalDuration))):void 0:void(this.options.reset&&t.setAttribute("style",i+e.initial+e.reset))},genCSS:function(t){var e,i,o=this.parseLanguage(t);o.enter?(("top"==o.enter||"bottom"==o.enter)&&(e=o.enter,i="y"),("left"==o.enter||"right"==o.enter)&&(e=o.enter,i="x")):(("top"==this.options.enter||"bottom"==this.options.enter)&&(e=this.options.enter,i="y"),("left"==this.options.enter||"right"==this.options.enter)&&(e=this.options.enter,i="x")),("top"==e||"left"==e)&&(o.move?o.move="-"+o.move:o.move="-"+this.options.move);var r=o.move||this.options.move,n=o.over||this.options.over,s=o.after||this.options.after,a=o.easing||this.options.easing,l=o.opacity||this.options.opacity,u="-webkit-transition: -webkit-transform "+n+" "+a+" "+s+", opacity "+n+" "+a+" "+s+";transition: transform "+n+" "+a+" "+s+", opacity "+n+" "+a+" "+s+";-webkit-perspective: 1000;-webkit-backface-visibility: hidden;",c="-webkit-transition: -webkit-transform "+n+" "+a+" 0s, opacity "+n+" "+a+" "+s+";transition: transform "+n+" "+a+" 0s, opacity "+n+" "+a+" "+s+";-webkit-perspective: 1000;-webkit-backface-visibility: hidden;",f="-webkit-transform: translate"+i+"("+r+");transform: translate"+i+"("+r+");opacity: "+l+";",p="-webkit-transform: translate"+i+"(0);transform: translate"+i+"(0);opacity: 1;";return{transition:u,initial:f,target:p,reset:c,totalDuration:1e3*(parseFloat(n)+parseFloat(s))}},getViewportH:function(){var e=this.docElem.clientHeight,i=t.innerHeight;return i>e?i:e},getOffset:function(t){var e=0,i=0;do isNaN(t.offsetTop)||(e+=t.offsetTop),isNaN(t.offsetLeft)||(i+=t.offsetLeft);while(t=t.offsetParent);return{top:e,left:i}},isElementInViewport:function(e,i){var o=t.pageYOffset,r=o+this.getViewportH(),n=e.offsetHeight,s=this.getOffset(e).top,a=s+n,i=i||0;return r>=s+n*i&&a>=o||"fixed"==(e.currentStyle?e.currentStyle:t.getComputedStyle(e,null)).position},extend:function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return t}},e}(window);
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment