*{
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}
/*
Theme Name: kickoff
Author: Daelen Berg
Author URI: http://arraystudios.com/
Description: A Blank Wordpress Starter Template

kickoff is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
*/

/*--------------------------------------------------------------
	TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Links
# Alignments
# Clearings
# Content
	## Comments
	## Media
	## Captions
	## Galleries
	## Columns
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
	-webkit-font-smoothing: antialiased;
	height: 100%;
}

body {
	margin: 0;
	height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
	line-height: 0px;
	font-size: 0px;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
	margin-top: 0px;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background: #fff;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

img {
	height: auto;
	max-width: 100%;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #ccc;
	border-radius: 0px;
	background: #e6e6e6;
	color: black;
	font-size: 16px;
	line-height: 1;
	padding: 10px 30px;
	outline: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #afafaf;
	background: #afafaf;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus{
	border-color: #ccc;
	background: #e6e6e6;
}

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #afafaf;
	background: #afafaf;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 0px; 
	width: 100%;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
textarea{
	vertical-align:middle;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus {
	color: #111;
	outline: 1px solid #b5bdff; 
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea {
	padding: 5px 10px; 
}

textarea {
	width: 100%;
	resize: none;
}


/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
	color: $color-primary; 
}

a:hover,
a:focus,
a:active {
	color: $color-primary-dark;
}

a:focus {
	outline: none; 
}

a:hover,
a:active {
	outline: 0;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table; 
}

.clearfix:after,
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both; 
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%; 
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%; 
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto; 
}

.wp-caption-text {
	text-align: center; 
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0; 
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
## Columns
--------------------------------------------------------------*/

.col-1, 
.col-2, 
.col-3, 
.col-4, 
.col-5, 
.col-6, 
.col-7, 
.col-8, 
.col-9, 
.col-10, 
.col-11, 
.col-12 {
	float: left;
	position: relative;
}
.col-12 {
	width: 100%;
}
.col-11 {
	width: 91.66666667%;
}
.col-10 {
	width: 83.33333333%;
}
.col-9 {
	width: 75%;
}
.col-8 {
	width: 66.66666667%;
}
.col-7 {
	width: 58.33333333%;
}
.col-6 {
	width: 50%;
}
.col-5 {
	width: 41.66666667%;
}
.col-4 {
	width: 33.33333333%;
}
.col-3 {
	width: 25%;
}
.col-2 {
	width: 16.66666667%;
}
.col-1 {
	width: 8.33333333%;
}

@media screen and (max-width:750px){
	.col-1, 
	.col-2, 
	.col-3, 
	.col-4, 
	.col-5, 
	.col-6, 
	.col-7, 
	.col-8, 
	.col-9, 
	.col-10, 
	.col-11, 
	.col-12 {
	  float: left;
	  position: relative;
	}
}









a{
	text-decoration: none;
}

body{
	font-size: 18px;
	line-height: 0px;
	font-family: proxima-nova, sans-serif;
	color: #313131;
	min-height: 100%;
}

h1{
	font-size: 55px;
	margin-top: 0px;
	font-weight: 900;
	text-transform: uppercase;
}

.slider{
	width: 700px;
	height: 700px;
}

.slider .slide svg{
	width: 700px;
	height: 700px;
	opacity: 0.7;
}

.slider-wrap{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
		padding: 80px;
}
.slider-text{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-indeX: 999;
	color: white;
	padding: 100px 0px 50px 0px;
	text-align: center;
	width: 600px;
	margin: auto;
	line-height: 1.8;
}
#bg{
	width: 700px;
	height: 700px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: -500px;
	left: -500px;
	margin: auto;
	z-index: -1;
}

.slider-text a{
	color: white;
	
}

svg .hex-bg{
	-webkit-animation-name: example; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 30s; /* Safari 4.0 - 8.0 */
	animation-name: scaleUp;
	transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
	animation-duration: 30s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes scaleUp {
  from {transform: scale(1);}
  to {transform: scale(1.3);}
}

/* Standard syntax */
@keyframes scaleUp {
	from {transform: scale(1);}
	to {transform: scale(1.3);}
}


.custom-button{
	display: inline-block;
	margin-right: 30px;
	position: relative;
	padding: 15px 0;
	top: -15px;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 800px;
	perspective: 800px;
	height: 112px;
	transition: all .7s ease-out;
}
	
.custom-button:hover a{
	color: white;
	transform: rotateX(90deg);
}

.custom-button a{
	left: 5px;
	font-size: 18px;
	display: inline-block;
	padding: 15px 60px 15px 25px;
	background: #ffaf42;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	transform-origin: 50% 0%;
	transform: rotateX(0deg) translateZ(50px);
	color: white;
	font-weight: 700;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	position: relative;
	background: #ffaf42 url('https://meetarray.com/wp-content/themes/array/images/svg/arrow-right-white.svg') right 20px center no-repeat;
	-webkit-background-size: 19px;
	-moz-background-size: 19px;
	-o-background-size: 19px;
	background-size: 19px;
	transition: all .4s ease-out;
}

		
		
		
.custom-button a:after{
	content: attr(title);
	padding: 15px 60px 15px 25px;
	position: absolute;
	top: 100%;
	left: 0px;
	width: 100%;
	height: 100%;
	display: block;
	transform-origin: 0% 0%;
	transform: rotateX(-90deg) translateZ(0px);
	color: white;
	z-index: 9999;
	background: #ef9519 url('https://meetarray.com/wp-content/themes/array/images/svg/arrow-right-white.svg') right 20px center no-repeat;
	-webkit-background-size: 19px;
	-moz-background-size: 19px;
	-o-background-size: 19px;
	background-size: 19px;
	transition: all .4s ease-out;
}



/* Slider */
.slick-slider
{
	position: relative;

	display: block;
	box-sizing: border-box;

	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;

	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
		touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list
{
	position: relative;

	display: block;
	overflow: hidden;

	margin: 0;
	padding: 0;
}
.slick-list:focus
{
	outline: none;
}
.slick-list.dragging
{
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		 -o-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}

.slick-track
{
	position: relative;
	top: 0;
	left: 0;

	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
	display: table;

	content: '';
}
.slick-track:after
{
	clear: both;
}
.slick-loading .slick-track
{
	visibility: hidden;
}

.slick-slide
{
	display: none;
	float: left;

	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide
{
	float: right;
}
.slick-slide img
{
	display: block;
}
.slick-slide.slick-loading img
{
	display: none;
}
.slick-slide.dragging img
{
	pointer-events: none;
}
.slick-initialized .slick-slide
{
	display: block;
}
.slick-loading .slick-slide
{
	visibility: hidden;
}
.slick-vertical .slick-slide
{
	display: block;

	height: auto;

	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}


@media screen and (max-width: 700px){
	.slider-wrap{
		padding: 35px;
		overflow: hidden;
	}
	.slider-text{
		max-width: 500px;
		width: auto;
		padding: 0px 35px;
	}
	h1{
		font-size: 40px;
		line-height: 1.2;
	}
	
	.custom-button a{
		font-size: 14px;
		padding: 10px 45px 10px 20px;
		background: #ffaf42 url('https://meetarray.com/wp-content/themes/array/images/svg/arrow-right-white.svg') right 16px center no-repeat;
		-webkit-background-size: 16px;
		-moz-background-size: 16px;
		-o-background-size: 16px;
		background-size: 16px;
	}
	.custom-button a:after{
		padding: 10px 45px 10px 20px;
		background: #ef9519 url('https://meetarray.com/wp-content/themes/array/images/svg/arrow-right-white.svg') right 16px center no-repeat;
		-webkit-background-size: 16px;
		-moz-background-size: 16px;
		-o-background-size: 16px;
		background-size: 16px;
	}

}
