@charset "UTF-8";
/* Colors */
/* Fonts */
/* Responsive Breakpoints */
/* Container Widths */
/***************************************
Mixins
contains global mixins, functions, helper selectors, etc.
***************************************/
/* Simple clearfix */
/* Fluid Typography */
/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
*, :after, :before {
  box-sizing: border-box;
}

.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/* Adjust containers and rows padding for Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* Frontend Admin Dashboard Icon
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.admin-bar #wpadminbar ul#wp-admin-bar-root-default > li#wp-admin-bar-custom_menu a:before {
  color: rgba(240, 245, 250, 0.6);
  content: "\f226";
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 1.25;
  vertical-align: top;
  -moz-osx-font-smoothing: grayscale;
  font-family: "dashicons";
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-decoration: inherit;
  text-align: center;
}

.admin-bar {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar {
    top: 46px;
  }
}

/* Core element styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

img.aligncenter, figure.aligncenter {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
  height: auto;
}

img.alignright, figure.alignright {
  display: inline-block;
  padding-left: 1.6%;
  float: right;
  max-width: 100%;
  height: auto;
}

img.alignleft, figure.alignleft {
  display: inline-block;
  padding-right: 1.6%;
  float: left;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

hr {
  margin: 4.5% auto;
  border: 1px solid #333333;
}

#content-wrapper .container {
  max-width: 1360px;
}

.content-area {
  float: left;
  width: 62%;
  margin-bottom: 25px;
  word-wrap: break-word;
}

.aside {
  float: right;
  width: 32.2%;
  margin-right: 10px;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .content-area {
    float: none;
    width: 100%;
  }
  .aside {
    float: none;
    width: 98%;
    margin-top: 50px;
  }
}
.container {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.no-sidebar .alignwide {
  margin: 25px calc(25% - 25vw);
}
@media (max-width: 991px) {
  .no-sidebar .alignwide {
    margin: 0 auto;
  }
}
.no-sidebar .alignfull {
  margin: 25px calc(50% - 50vw) !important;
  max-width: 100vw !important;
  width: 100vw !important;
}

/* SCREEN READER ONLY SPAN */
.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: disc outside;
}

ol {
  list-style: decimal outside;
}

ol, ul {
  padding-left: 1.5em;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 2% 0 2% 4.5%;
}

li {
  margin-bottom: 1%;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table th,
table td, .wp-block-table th,
.wp-block-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
}

/* FORMS AND FIELDS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  padding: 10px !important;
  background-color: transparent !important;
  border: 2px solid #555555 !important;
  color: #ADADAC !important;
  border-radius: 5px !important;
  box-shadow: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
}
input[type=email]:-webkit-autofill,
input[type=number]:-webkit-autofill,
input[type=search]:-webkit-autofill,
input[type=text]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=url]:-webkit-autofill,
input[type=password]:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #222222 inset;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  -webkit-box-shadow: 0 0 0 30px #222222 inset;
}

textarea {
  min-height: 100px;
  color: #ADADAC !important;
}

select:not([multiple]) {
  padding-right: 26px;
  color: #ADADAC;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA2MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNjAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHBvbHlnb24gcG9pbnRzPSI1Ny4zLDcgMzAsMjcuNSAyLjcsNyAwLDEwLjUgMzAsMzMgNjAsMTAuNSAiLz4KPC9zdmc+Cg==);
  background-position: 98.5% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}
select:not([multiple]):-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
select:not([multiple]) option:not(:checked) {
  color: #000;
}

label,
legend {
  display: block;
  margin-bottom: 10px;
  --minFontSize: 1.3rem;
  --maxFontSize: 1.5rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  color: #ffffff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 10px;
  font-weight: normal;
}

::placeholder {
  opacity: 1;
  color: #ADADAC !important;
}

:focus::placeholder {
  opacity: 0.15;
}

form br {
  display: none;
}

/* LINKS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #F7941D;
}

/* BUTTONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button], .wp-block-file__button, .wp-block-button__link {
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  background-color: #333333;
  border: 2px solid #F7941D;
  cursor: pointer;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
}
.button:hover, .button:focus,
button:hover,
button:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=reset]:hover,
input[type=reset]:focus,
input[type=button]:hover,
input[type=button]:focus, .wp-block-file__button:hover, .wp-block-file__button:focus, .wp-block-button__link:hover, .wp-block-button__link:focus {
  color: #000000;
  border-color: #F7941D;
  background-color: #F7941D;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary, .wp-block-file__button, .wp-block-button__link {
  color: #000000;
  background-color: #F7941D;
  border-color: #F7941D;
}
.button.button-primary:hover, .button.button-primary:focus,
button.button-primary:hover,
button.button-primary:focus,
input[type=submit].button-primary:hover,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:hover,
input[type=reset].button-primary:focus,
input[type=button].button-primary:hover,
input[type=button].button-primary:focus, .wp-block-file__button:hover, .wp-block-file__button:focus, .wp-block-button__link:hover, .wp-block-button__link:focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #F7941D;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 2%;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 3.5%;
}

pre,
dl,
table,
ul,
ol,
form {
  margin-bottom: 5%;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code, .wp-block-code {
  margin: 0 5px;
  padding: 2px 10px;
  font-size: 90%;
  white-space: nowrap;
  background: #f6f6f6;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
code textarea, .wp-block-code textarea {
  background-color: transparent;
}

pre > code {
  display: block;
  padding: 5px 15px;
  white-space: pre;
}

/* Default WP Image Gallery Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.blocks-gallery-grid.blocks-gallery-grid {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 600px) {
  .blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n), .blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n), .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n), .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n), .blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n), .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n), .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n), .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n), .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n), .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n), .blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n), .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n), .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n), .blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n), .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n), .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n), .blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n), .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n), .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n), .blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n), .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n), .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n), .blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n), .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n), .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.wp-block-gallery .blocks-gallery-image:last-child, .wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0 !important;
}

html {
  outline: none !important;
  /* Adjust font size */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  /* NOTE
  html is set to 62.5% so that all the REM measurements throughout
  are based on 10px sizing. So basically 1.6rem = 16px :) */
  font-size: 62.5%;
}

/* Fluid Typography */
h1 {
  --minFontSize: 4.8rem;
  --maxFontSize: 5.2rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  text-transform: uppercase;
}

h2 {
  --minFontSize: 2.4rem;
  --maxFontSize: 3.2rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin: 0 0 30px;
  z-index: 1;
  padding-bottom: 7px;
  line-height: 1.2;
}
h2:before {
  display: block;
  position: absolute;
  content: "";
  width: 30px;
  background-color: #F7941D;
  height: 2px;
  bottom: 0;
  z-index: 1;
}
h2:after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  background-color: #333333;
  height: 2px;
  bottom: 0;
}

h3, .eyebrow {
  --minFontSize: 1.6rem;
  --maxFontSize: 2.4rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
}

h4 {
  --minFontSize: 1.3rem;
  --maxFontSize: 1.5rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
}

h5 {
  --minFontSize: 1.28rem;
  --maxFontSize: 2.08rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
}

h6 {
  --minFontSize: 1.12rem;
  --maxFontSize: 1.92rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
}

body {
  --minFontSize: 1.3rem;
  --maxFontSize: 1.5rem;
  --scaler: 10vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
}

/*Base font sizes - Comment these out if using fluid typography*/
/*body {font-size: 1.6rem; line-height: 1.6; }
h1 { font-size: 4.0rem; line-height: 1.2; }
h2 { font-size: 3.6rem; line-height: 1.25; }
h3 { font-size: 3.0rem; line-height: 1.3; }
h4 { font-size: 2.4rem; line-height: 1.35; }
h5 { font-size: 1.8rem; line-height: 1.5; }
h6 { font-size: 1.5rem; line-height: 1.6; }

@media(max-width:575px){
	h1 { font-size: 5.0rem; }
	h2 { font-size: 4.2rem; }
	h3 { font-size: 3.6rem; }
	h4 { font-size: 3.0rem; }
	h5 { font-size: 2.4rem; }
	h6 { font-size: 1.5rem; }
}*/
p {
  margin-top: 0;
}

h1, h2 {
  color: #F5F5F5;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

h2 {
  font-size: 1.65em;
}

h3, h4 {
  color: #F5F5F5;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.07em;
}

.eyebrow {
  color: #AAAAAA;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.07em;
}

body {
  color: #D5D5D5;
  line-height: 24.5px;
  background-color: #222222;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

/* Colors for Visual Editor (_includes/functions/editor.php)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
span.color-black {
  color: #000000;
}

span.color-white {
  color: #ffffff;
}

/* Weights for Visual Editor (_includes/functions/editor.php)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.weight-light {
  font-weight: 300;
}

.weight-regular {
  font-weight: 400;
}

.weight-medium {
  font-weight: 500;
}

.weight-bold {
  font-weight: 700;
}

.weight-black {
  font-weight: 900;
}

/* Underline for Visual Editor (_includes/functions/editor.php)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.text-underline {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------------*/
/*  HEADER
/*-----------------------------------------------------------------------------------*/
#header-wrapper {
  width: 100%;
  padding: 30px 0;
  transition: all 1s;
}
#header-wrapper.sticky-header {
  position: fixed;
  padding: 10px 0;
  z-index: 10;
  top: 0;
  background-color: #222222;
}
#header-wrapper.sticky-header .logo {
  width: 125px;
}
#header-wrapper.sticky-header #slideout-trigger {
  top: 15px;
}
#header-wrapper .container {
  max-width: 1860px;
}

.logo {
  height: auto;
  width: 177px;
  float: left;
  transition: all 1s;
}

.text-logo {
  float: left;
  text-decoration: none;
  font-size: 4rem;
  font-weight: 700;
}
.text-logo:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------------*/
/*  NAVIGATION
/*-----------------------------------------------------------------------------------*/
#linkbar .nav-menu {
  float: right;
}
#linkbar a {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #F5F5F5;
  opacity: 0.55;
  font-size: 1.4rem;
}
#linkbar a:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  #linkbar nav {
    display: none;
  }
}
#linkbar ul {
  list-style-type: none;
  margin-bottom: 0;
}
#linkbar ul li {
  display: inline;
  padding: 0 20px;
  position: relative;
}
#linkbar ul li:hover ul {
  display: block;
}
#linkbar ul li ul {
  display: none;
}
#linkbar ul li ul li {
  display: block;
  margin: 10px 0;
}
#linkbar .current-menu-item a {
  opacity: 1;
}

/*   NAV SUB MENUS
==========*/
.nav-menu li.menu-item-has-children > a {
  position: relative;
}

.nav-menu li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -18px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA2MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNjAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHBvbHlnb24gcG9pbnRzPSI1Ny4zLDcgMzAsMjcuNSAyLjcsNyAwLDEwLjUgMzAsMzMgNjAsMTAuNSAiLz4KPC9zdmc+Cg==);
  background-position: 98.5% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  transition: transform 0.2s ease;
}

.nav-menu li.menu-item-has-children:hover > a:after {
  transform: rotateZ(180deg);
}

.nav-menu li.menu-item-has-children .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 0 20px 20px;
  min-width: 150px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  margin: 0;
  background: #fff;
  transform: translateX(-50%);
  animation-fill-mode: forwards;
}

.nav-menu li.menu-item-has-children:hover > .sub-menu {
  z-index: 5;
  opacity: 1;
  visibility: visible;
  animation: submenuShow 0.5s ease;
  animation-fill-mode: backwards;
}

@keyframes submenuShow {
  0% {
    z-index: -1;
    visibility: hidden;
    opacity: 0;
  }
  1% {
    z-index: 5;
    visibility: visible;
  }
  25% {
    opacity: 1;
  }
  100% {
    z-index: 5;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes submenuHide {
  0% {
    z-index: 5;
    opacity: 1;
    visibility: visible;
  }
  99% {
    z-index: 5;
    opacity: 1;
    visibility: visible;
  }
  100% {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
}
.nav-menu li.menu-item-has-children .sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
}

/*   Mobile Nav 
==========*/
#slideout-menu {
  position: fixed;
  padding: 100px 50px;
  min-width: 150px;
  width: 100%;
  top: 0;
  right: -350px;
  min-height: 100vh;
  z-index: 10000;
  max-height: calc(100vh - 100px);
  overflow: auto;
  background-color: #F7941D;
}
#slideout-menu a {
  color: #fff;
  text-decoration: none;
}
#slideout-menu #nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 20px;
  width: 20px;
  line-height: 4.5;
  font-size: 10px;
}
#slideout-menu .close-lines1, #slideout-menu .close-lines2 {
  width: 30px;
  display: block;
  background-color: #fff;
  height: 2px;
  position: relative;
  transition: transform 300ms ease;
  transition-delay: 400ms;
}
#slideout-menu .close-lines1 {
  top: 8px;
  transform: rotate(-180deg);
}
#slideout-menu .close-lines2 {
  top: 6px;
}
#slideout-menu .menu-item-has-children > a:after {
  position: relative;
}
#slideout-menu .mobile-logo {
  max-width: 150px;
  margin: 0 auto 25px;
}
#slideout-menu ul {
  text-align: center;
  list-style: none;
}
#slideout-menu ul li {
  margin-bottom: 1em;
  position: relative;
  margin-bottom: 20px;
}
#slideout-menu ul li a {
  font-size: 2em;
  text-decoration: none;
}
#slideout-menu ul li #submenu-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  right: -18px;
  margin-top: -15px;
  border: 4px solid transparent;
  border-bottom-width: 0;
  border-top-color: transparent;
  width: 25px;
  height: 25px;
  transition: transform 0.2s ease;
  background-image: url(data:image/svg+xml;base64,PHN2ZwogICAgICAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgICAgICB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIKICAgICAgICB3aWR0aD0iNjBweCIgaGVpZ2h0PSI0MHB4Ij4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgIGZpbGw9InJnYigxNjEsIDE2MSwgMTYxKSIKICAgICAgICAgIGQ9Ik0wLjAwMCwwLjAwMCBMNjAuMDAwLDAuMDAwIEwzMC4wMDAsNDAuMDAwIEwwLjAwMCwwLjAwMCBaIi8+Cjwvc3ZnPg==);
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}
#slideout-menu ul.sub-menu {
  display: none;
  margin: 2em 0;
}
#slideout-menu .widget {
  border-bottom: 0;
  text-align: right;
}
#slideout-menu .widget .social-links i, #slideout-menu .widget .social-links svg {
  margin-left: 20px;
}

#slideout-menu.open .close-lines1 {
  transform: rotate(45deg);
}
#slideout-menu.open .close-lines2 {
  transform: rotate(-45deg);
}

a#slideout-trigger {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 40px;
  display: none;
  text-align: center;
  line-height: 4.5;
  font-size: 10px;
}
@media (max-width: 991px) {
  a#slideout-trigger {
    display: block;
  }
}

#slideout-bar {
  width: 30px;
  height: 2px;
  top: 6px;
  position: relative;
  background-color: #ffffff;
}
#slideout-bar:before, #slideout-bar:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
  background-color: #ffffff;
}
#slideout-bar:before {
  bottom: 8px;
}
#slideout-bar:after {
  top: 6px;
}

/*-----------------------------------------------------------------------------------*/
/*  FOOTER
/*-----------------------------------------------------------------------------------*/
footer {
  padding: 15px 0;
  margin-top: 50px;
  background-color: #252525;
  border-top: 2px solid #333333;
}
footer ul#menu-social-links {
  list-style: none;
  diplay: inline;
  padding-left: 0;
  margin-bottom: 0;
}
footer ul#menu-social-links li {
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  footer ul#menu-social-links li {
    padding: 0 10px;
  }
}
footer ul#menu-social-links li a {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #F5F5F5;
  opacity: 0.55;
  font-size: 1.4rem;
}
footer ul#menu-social-links li a:hover {
  opacity: 1;
}
footer #credits .footer-left {
  width: 50%;
}
@media (max-width: 767px) {
  footer #credits .footer-left {
    width: 100%;
    text-align: center;
  }
}
footer #credits .footer-right {
  width: 50%;
  text-align: right;
}
@media (max-width: 767px) {
  footer #credits .footer-right {
    width: 100%;
    text-align: center;
  }
}
footer .social-links a {
  text-decoration: none;
}
footer .social-links a i, footer .social-links a svg {
  width: 32px !important;
}

#creditslide {
  position: fixed;
  padding: 65px 0 70px;
  width: 100%;
  bottom: -190px;
  z-index: 9999999;
  text-align: center;
  transition: 200ms ease-in-out all;
  background-color: #f1f1f1;
}
#creditslide #credit-close {
  position: absolute;
  top: 25px;
  right: 25px;
  height: 15px;
  width: 15px;
  content: "";
  cursor: pointer;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjM1N3B4IiBoZWlnaHQ9IjM1N3B4IiB2aWV3Qm94PSIwIDAgMzU3IDM1NyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzU3IDM1NzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGcgaWQ9ImNsb3NlIj4NCgkJPHBvbHlnb24gcG9pbnRzPSIzNTcsMzUuNyAzMjEuMywwIDE3OC41LDE0Mi44IDM1LjcsMCAwLDM1LjcgMTQyLjgsMTc4LjUgMCwzMjEuMyAzNS43LDM1NyAxNzguNSwyMTQuMiAzMjEuMywzNTcgMzU3LDMyMS4zIA0KCQkJMjE0LjIsMTc4LjUgCQkiLz4NCgk8L2c+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==);
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}
#creditslide .container > * {
  display: inline-block;
  vertical-align: top;
  width: 32%;
  padding: 0 1%;
}
#creditslide .callout-std span {
  display: table;
  margin: 0 auto;
}

#creditslide.credit-open {
  bottom: 0;
}

/*-----------------------------------------------------------------------------------*/
/*  BLOG
/*-----------------------------------------------------------------------------------*/
.post {
  margin-bottom: 2%;
}

.post-meta {
  margin-bottom: 2%;
}

/*-----------------------------------------------------------------------------------*/
/*	BLOG SINGLE
/*-----------------------------------------------------------------------------------*/
.post-footer {
  margin-bottom: 2%;
}

/*-----------------------------------------------------------------------------------*/
/*	SHARE LINKS
/*-----------------------------------------------------------------------------------*/
.share-buttons div {
  display: inline;
  padding: 0 5px;
}

/*-----------------------------------------------------------------------------------*/
/*	NAVIGATION
/*-----------------------------------------------------------------------------------*/
#navigation .pagination .nav-previous {
  float: left;
}
#navigation .pagination .nav-next {
  float: right;
}

/*-----------------------------------------------------------------------------------*/
/*	ABOUT AUTHOR
/*-----------------------------------------------------------------------------------*/
#about_author {
  background-color: #f1f1f1;
  box-sizing: border-box;
  padding: 30px 30px 5px;
  margin: 25px 0;
}
#about_author img {
  float: left;
  height: 100px;
  width: 100px;
  margin-right: 20px;
}

/*-----------------------------------------------------------------------------------*/
/*	SIDEBAR & WIDGETS
/*-----------------------------------------------------------------------------------*/
#sidebar .social-links a {
  padding: 0 7px;
  text-decoration: none;
}

/*-----------------------------------------------------------------------------------*/
/*	RELATED POSTS
/*-----------------------------------------------------------------------------------*/
#related_posts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#related_posts ul li {
  text-align: center;
  box-sizing: border-box;
  width: 32.26%;
  margin-right: 1.6%;
}
#related_posts ul li:last-child {
  margin-right: 0;
}
#related_posts .relatedcontent h5 {
  margin-bottom: 0;
}

/*-----------------------------------------------------------------------------------*/
/*	COMMENTS
/*-----------------------------------------------------------------------------------*/
#respond form .form__summary {
  box-sizing: border-box;
  padding: 20px;
  border: 2px solid red;
  margin-bottom: 50px;
}
#respond form .form__summary ol {
  margin-bottom: 0;
}
#respond form fieldset.form__data .form-element {
  margin-bottom: 25px;
}
#respond form fieldset.form__data .form-element input, #respond form fieldset.form__data .form-element textarea {
  margin-bottom: 0;
}
#respond form fieldset.form__data .form-element .form__validation {
  color: red;
}

#comments {
  clear: both;
}
#comments ul#comment-block li.comment {
  list-style: none;
}
#comments ul#comment-block li.comment .user {
  float: left;
  width: 75px;
  height: 75px;
  margin-right: 20px;
}
#comments ul#comment-block li.comment .message {
  overflow: hidden;
}

/*-----------------------------------------------------------------------------------*/
/*  FLEX GRID
/*-----------------------------------------------------------------------------------*/
/* Flex Grid Gutter Space */
.grid,
.grid-mobile, .wp-block-columns {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid .cell,
.grid-mobile .cell, .wp-block-column {
  flex: 1;
}

@media (min-width: 768px) {
  .grid, .wp-block-columns {
    display: flex;
  }
  .grid.grid-12-col .cell {
    flex: 0 0 calc(8.33% - 36.668px);
  }
  .grid.grid-12-col .cell.span-1 {
    flex: 0 0 calc(10% - 36px);
  }
  .grid.grid-12-col .cell.span-2 {
    flex: 0 0 calc(16.6% - 33.36px);
  }
  .grid.grid-12-col .cell.span-3 {
    flex: 0 0 calc(25% - 30px);
  }
  .grid.grid-12-col .cell.span-4 {
    flex: 0 0 calc(33.3% - 26.68px);
  }
  .grid.grid-12-col .cell.span-5 {
    flex: 0 0 calc(41.6% - 23.36px);
  }
  .grid.grid-12-col .cell.span-6 {
    flex: 0 0 calc(50% - 20px);
  }
  .grid.grid-12-col .cell.span-7 {
    flex: 0 0 calc(58.3% - 16.68px);
  }
  .grid.grid-12-col .cell.span-8 {
    flex: 0 0 calc(66.6% - 13.36px);
  }
  .grid.grid-12-col .cell.span-9 {
    flex: 0 0 calc(75% - 10px);
  }
  .grid.grid-12-col .cell.span-10 {
    flex: 0 0 calc(83.3% - 6.68px);
  }
  .grid.grid-12-col .cell.span-11 {
    flex: 0 0 calc(90% - 4px);
  }
  .grid.grid-12-col .cell.span-12 {
    flex: 0 0 100%;
  }
  .grid.grid-2-col .cell, .wp-block-columns.has-2-columns .wp-block-column {
    flex: 0 0 calc(50% - 20px);
  }
  .grid.grid-2-col .cell.span-2, .wp-block-columns.has-2-columns .wp-block-column.span-2 {
    flex: 0 0 100%;
  }
  .grid.grid-3-col .cell, .wp-block-columns.has-3-columns .wp-block-column {
    flex: 0 0 calc(33.33% - 26.668px);
  }
  .grid.grid-3-col .cell.span-2, .wp-block-columns.has-3-columns .wp-block-column.span-2 {
    flex: 0 0 calc(66.66% - 13.336px);
  }
  .grid.grid-3-col .cell.span-3, .wp-block-columns.has-3-columns .wp-block-column.span-3 {
    flex: 0 0 100%;
  }
  .grid.grid-4-col .cell, .wp-block-columns.has-4-columns .wp-block-column {
    flex: 0 0 calc(25% - 30px);
  }
  .grid.grid-4-col .cell.span-2, .wp-block-columns.has-4-columns .wp-block-column.span-2 {
    flex: 0 0 calc(50% - 20px);
  }
  .grid.grid-4-col .cell.span-3, .wp-block-columns.has-4-columns .wp-block-column.span-3 {
    flex: 0 0 calc(75% - 10px);
  }
  .grid.grid-4-col .cell.span-4, .wp-block-columns.has-4-columns .wp-block-column.span-4 {
    flex: 0 0 100%;
  }
  .grid.grid-5-col .cell, .wp-block-columns.has-5-columns .wp-block-column {
    flex: 0 0 calc(20% - 32px);
  }
  .grid.grid-5-col .cell.span-2, .wp-block-columns.has-5-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 24px);
  }
  .grid.grid-5-col .cell.span-3, .wp-block-columns.has-5-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 16px);
  }
  .grid.grid-5-col .cell.span-4, .wp-block-columns.has-5-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 8px);
  }
  .grid.grid-5-col .cell.span-5, .wp-block-columns.has-5-columns .wp-block-column.span-5 {
    flex: 0 0 100%;
  }
  .grid.grid-6-col .cell, .wp-block-columns.has-6-columns .wp-block-column {
    flex: 0 0 calc(16.66% - 33.336px);
  }
  .grid.grid-6-col .cell.span-2, .wp-block-columns.has-6-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 24px);
  }
  .grid.grid-6-col .cell.span-3, .wp-block-columns.has-6-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 16px);
  }
  .grid.grid-6-col .cell.span-4, .wp-block-columns.has-6-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 8px);
  }
  .grid.grid-6-col .cell.span-5, .wp-block-columns.has-6-columns .wp-block-column.span-5 {
    flex: 0 0 calc(100% - 0px);
  }
  .grid.grid-6-col .cell.span-6, .wp-block-columns.has-6-columns .wp-block-column.span-6 {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .grid-mobile {
    display: flex;
  }
  .grid-mobile.grid-mobile-2-col .cell, .wp-block-columns.has-2-columns .wp-block-column {
    flex: 0 0 calc(50% - 20px);
  }
  .grid-mobile.grid-mobile-2-col .cell.span-2, .wp-block-columns.has-2-columns .wp-block-column.span-2 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-3-col .cell, .wp-block-columns.has-3-columns .wp-block-column {
    flex: 0 0 calc(33.33% - 26.668px);
  }
  .grid-mobile.grid-mobile-3-col .cell.span-2, .wp-block-columns.has-3-columns .wp-block-column.span-2 {
    flex: 0 0 calc(66.66% - 13.336px);
  }
  .grid-mobile.grid-mobile-3-col .cell.span-3, .wp-block-columns.has-3-columns .wp-block-column.span-3 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-4-col .cell, .wp-block-columns.has-4-columns .wp-block-column {
    flex: 0 0 calc(25% - 30px);
  }
  .grid-mobile.grid-mobile-4-col .cell.span-2, .wp-block-columns.has-4-columns .wp-block-column.span-2 {
    flex: 0 0 calc(50% - 20px);
  }
  .grid-mobile.grid-mobile-4-col .cell.span-3, .wp-block-columns.has-4-columns .wp-block-column.span-3 {
    flex: 0 0 calc(75% - 10px);
  }
  .grid-mobile.grid-mobile-4-col .cell.span-4, .wp-block-columns.has-4-columns .wp-block-column.span-4 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-5-col .cell, .wp-block-columns.has-5-columns .wp-block-column {
    flex: 0 0 calc(20% - 32px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-2, .wp-block-columns.has-5-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 24px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-3, .wp-block-columns.has-5-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 16px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-4, .wp-block-columns.has-5-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 8px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-5, .wp-block-columns.has-5-columns .wp-block-column.span-5 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-6-col .cell, .wp-block-columns.has-6-columns .wp-block-column {
    flex: 0 0 calc(16.66% - 33.336px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-2, .wp-block-columns.has-6-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 24px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-3, .wp-block-columns.has-6-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 16px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-4, .wp-block-columns.has-6-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 8px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-5, .wp-block-columns.has-6-columns .wp-block-column.span-5 {
    flex: 0 0 calc(100% - 0px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-6, .wp-block-columns.has-6-columns .wp-block-column.span-6 {
    flex: 0 0 100%;
  }
}
.entry-header {
  margin: 0px calc(50% - 50vw) 25px !important;
  max-width: 100vw !important;
  width: 100vw !important;
  border: 2px solid #333333;
  background-color: #252525;
  padding: 65px 20px;
  display: flex;
  justify-content: space-between;
}
.entry-header h1.entry-title {
  max-width: 1860px;
  margin: 0;
}
@media (max-width: 767px) {
  .entry-header h1.entry-title {
    line-height: 1.25;
  }
}
.entry-header .button {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .entry-header {
    display: block;
  }
  .entry-header .button {
    margin: 25px auto 0;
  }
  .entry-header h1.entry-title {
    text-align: left;
  }
}

@keyframes boxAnimation {
  from {
    opacity: 0;
    top: 50px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
@keyframes notify {
  0% {
    opacity: 0;
  }
  12.5% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
}
ul.animated {
  position: relative;
  list-style: none;
}
ul.animated li {
  animation: notify 12s infinite;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: -10px;
}
@media (max-width: 991px) {
  ul.animated li {
    top: -3em;
  }
}

ul.animated li:nth-child(1) {
  animation-delay: 0s;
}

ul.animated li:nth-child(2) {
  animation-delay: 3s;
}

ul.animated li:nth-child(3) {
  animation-delay: 6s;
}

ul.animated li:nth-child(4) {
  animation-delay: 9s;
}

#about-me .container {
  max-width: 1055px;
}
@media (max-width: 575px) {
  #about-me .container {
    padding: 0 !important;
  }
}
#about-me .grid {
  align-items: center;
}
@media (max-width: 991px) {
  #about-me .grid {
    display: block;
  }
}
#about-me .grid .home-photo {
  display: flex;
  background-color: #444;
  border: 18px solid #444;
  border-radius: 1000px;
  overflow: hidden;
  width: 410px;
  height: 410px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  #about-me .grid .home-photo {
    width: 350px;
    height: 350px;
    margin-bottom: 55px;
  }
}
#about-me .grid .home-photo img {
  object-position: top;
  object-fit: cover;
  flex: 1;
  overflow: hidden;
  height: 450px;
}

#what-i-do .container h2 {
  font-size: 1.65em;
}
#what-i-do .container .grid h3 {
  margin: 0 0 5px;
}
#what-i-do .container .grid p {
  margin-bottom: 35px;
  font-size: 0.9em;
}
#what-i-do .container .grid section .container {
  padding: 0 !important;
}
@media (max-width: 991px) {
  #what-i-do .container .grid section .container .grid {
    display: block;
    text-align: left;
  }
  #what-i-do .container .grid section .container .grid img {
    margin: 0 0 25px;
  }
}
#what-i-do .container .grid section .container img {
  max-width: none !important;
}

@media (max-width: 991px) {
  #fun-facts .value-stacks .stack:nth-child(3) {
    margin: 0 0 0 10px;
  }
  #fun-facts .value-stacks .stack:last-child {
    margin: 20px 0 0;
  }
}
@media (max-width: 575px) {
  #fun-facts .value-stacks .stack {
    margin: 10px 0 !important;
  }
}

#testimonials .intro-text h2 {
  font-size: 1.65em;
}
#testimonials .slider-container .testimonials-slider .slick-dots {
  bottom: -50px;
}
#testimonials .slider-container .testimonials-slider .slick-dots li button {
  padding: 0 15px;
}
#testimonials .slider-container .testimonials-slider .slick-dots li button .slick-dot-icon {
  color: #454545;
  opacity: 1;
}
#testimonials .slider-container .testimonials-slider .slick-dots li button .slick-dot-icon:before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 5px;
  margin-top: 0;
  background-color: #454545;
}
#testimonials .slider-container .testimonials-slider .slick-dots li.slick-active button {
  padding: 0 19px;
}
#testimonials .slider-container .testimonials-slider .slick-dots li.slick-active button .slick-dot-icon {
  color: #F7941D;
}
#testimonials .slider-container .testimonials-slider .slick-dots li.slick-active button .slick-dot-icon:before {
  width: 38px;
  background-color: #F7941D;
}
#testimonials .slider-container .testimonials-slider .slick-list {
  margin: 0 -10px;
  transition: all 0.5s ease;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide {
  position: relative;
  margin: 0 10px;
  padding: 25px;
  box-sizing: border-box;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide:after {
  content: "\f10e";
  position: absolute;
  color: #353535;
  bottom: 10px;
  right: 4px;
  z-index: -1;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 50px;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide {
  box-sizing: border-box;
  padding: 35px 60px;
  border: 2px solid #444444;
  border-radius: 8px;
  background-color: #282828;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide .auth-img {
  position: absolute;
  max-width: 80px;
  top: 0;
  left: 0;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide .auth-img img {
  border-radius: 50%;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide .auth-text {
  line-height: normal;
  position: relative;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide .auth-text:before {
  content: "\f10d";
  position: absolute;
  color: #454545;
  bottom: 25px;
  left: -40px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 25px;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide .auth-text .testimonial-txt p {
  font-style: italic;
  margin-bottom: 0;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide .auth-text .testimonial-auth h4 {
  margin: 10px 0 0;
  font-size: 0.9em;
}
#testimonials .slider-container .testimonials-slider .slick-list .slick-slide .testimonial-slide .auth-text .testimonial-auth p {
  margin-bottom: 0;
  font-size: 0.8em;
}

#clients .intro-text h2 {
  font-size: 1.65em;
}
#clients .logo-slider .slick-dots {
  bottom: -50px;
}
#clients .logo-slider .slick-dots li button {
  padding: 0 15px;
}
#clients .logo-slider .slick-dots li button .slick-dot-icon {
  color: #454545;
  opacity: 1;
}
#clients .logo-slider .slick-dots li button .slick-dot-icon:before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 5px;
  margin-top: 0;
  background-color: #454545;
}
#clients .logo-slider .slick-dots li.slick-active button {
  padding: 0 19px;
}
#clients .logo-slider .slick-dots li.slick-active button .slick-dot-icon {
  color: #F7941D;
}
#clients .logo-slider .slick-dots li.slick-active button .slick-dot-icon:before {
  width: 38px;
  background-color: #F7941D;
}
#clients .logo-slider .slick-track {
  display: flex;
  align-items: center;
}
#clients .logo-slider .slick-track .slick-slide {
  padding: 0 30px;
}
#clients .logo-slider .slick-track .slick-slide img {
  max-height: 150px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  #experience .container.block-columns {
    padding: 0 !important;
  }
}

#skills .single-skill-item h6 {
  margin-bottom: 0 !important;
}
#skills .single-skill-item .progress {
  padding: 5px;
  height: 16px;
  border: 2px solid #444444;
  border-radius: 8px;
  position: relative;
}
#skills .single-skill-item .progress .progress-bar {
  height: 3px;
  position: static;
}
#skills .single-skill-item .progress span {
  padding: 0;
  right: 0;
  left: auto;
  font-weight: 300;
  font-size: 11px;
}
@media (max-width: 575px) {
  #skills .grid .cell:nth-child(2) {
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  #map .container, #contact-info .container, #contact-form .container {
    padding: 0 !important;
  }
}

#contact-info h3 {
  margin: 0 0 5px;
}
#contact-info h3 a {
  color: #ffffff;
  text-decoration: none;
}
#contact-info p {
  margin-bottom: 30px;
  font-size: 0.8em;
}
#contact-info .cell.span-2 {
  flex: 0 0 calc(25% - 33.36px);
}
@media (max-width: 991px) {
  #contact-info .span-4 .grid {
    display: block;
  }
  #contact-info .span-4 .grid .span-2 img {
    max-width: none !important;
    margin: 0 0 25px;
  }
}

#contact-form h2 {
  margin-bottom: 0;
}
#contact-form .gform_confirmation_message {
  padding: 25px 0 0 0;
}
#contact-form .gform-body .gform_fields {
  display: flex;
}
@media (max-width: 991px) {
  #contact-form .gform-body .gform_fields {
    display: block;
  }
}
#contact-form .gform-body .gform_fields .gfield {
  margin-bottom: 25px;
  position: relative;
}
#contact-form .gform-body .gform_fields .gfield input {
  height: 42px;
}
#contact-form .gform-body .gform_fields .gfield.gfield--type-captcha label {
  display: none;
}
#contact-form .gform-body label, #contact-form .gform-body legend {
  position: absolute;
  top: -10px;
  left: 10px;
  padding: 2px 5px;
  background-color: #222222;
  z-index: 1;
}
#contact-form .gform-footer {
  margin-top: 0;
}
#contact-form .gform-footer input[type=submit] {
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  background-color: #333333;
  border: 2px solid #F7941D;
  cursor: pointer;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
}
#contact-form .gform-footer input[type=submit]:hover, #contact-form .gform-footer input[type=submit]:focus {
  color: #000000;
  border-color: #F7941D;
  background-color: #F7941D;
}

@media (max-width: 575px) {
  .page-portfolio section .container {
    padding: 0 !important;
  }
}

.section-project-gallery {
  padding: 25px 0;
}
.section-project-gallery .block-project-gallery img {
  width: 100%;
}

.portfolio-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.portfolio-grid .portfolio-item {
  flex: 0 0 calc(50% - 13.34px);
  margin: 0 6.67px 13.34px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .portfolio-grid .portfolio-item {
    flex: 0 0 calc(33.3% - 13.34px);
  }
}
@media (max-width: 575px) {
  .portfolio-grid .portfolio-item {
    flex: 0 0 calc(100% - 13.34px);
  }
}
.portfolio-grid .portfolio-item a {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  height: 285px;
}
.portfolio-grid .portfolio-item a h4.name {
  position: absolute;
  display: block;
  padding: 0 15px;
  border-radius: 30px;
  height: 25px;
  line-height: 25px;
  color: #222222;
  left: 15px;
  top: 15px;
  margin: 0;
  z-index: 1;
  background-color: #F7941D;
  font-weight: 300;
  font-size: 14px;
}
@media (max-width: 575px) {
  .portfolio-grid .portfolio-item a h4.name {
    height: auto;
    line-height: 1.25;
    padding: 5px 15px;
    max-width: 85%;
  }
}
.portfolio-grid .portfolio-item a img {
  object-position: top;
  object-fit: cover;
  flex: 1;
  overflow: hidden;
  height: 285px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.portfolio-grid .portfolio-item a .categories {
  position: absolute;
  bottom: 15px;
  right: 15px;
  text-align: right;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.portfolio-grid .portfolio-item a .categories .category {
  color: #D5D5D5;
  border: 1px solid #F7941D;
  border-radius: 30px;
  padding: 0 10px;
  height: 24px;
  line-height: 22px;
  display: inline-block;
  margin-left: 5px;
  background-color: #222222;
  font-weight: 300;
  font-size: 12px;
}
.portfolio-grid .portfolio-item a:hover img {
  transform: scale(1.2);
}
.portfolio-grid .portfolio-item a:hover .categories {
  opacity: 1;
}

.single-portfolio .block-project-gallery a {
  display: block;
}
.single-portfolio .block-project-gallery a img {
  max-width: 866px;
}
.single-portfolio aside {
  box-sizing: border-box;
  margin-top: 25px;
  padding: 25px;
  border: 2px solid #444444;
  border-radius: 15px;
  background-color: #333333;
}
.single-portfolio aside h3 {
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 18px;
}
.single-portfolio aside .client-name, .single-portfolio aside .client-website, .single-portfolio aside .agency-name, .single-portfolio aside .project-date {
  margin-bottom: 10px;
  font-size: 14px;
}
.single-portfolio aside .client-name svg, .single-portfolio aside .client-website svg, .single-portfolio aside .agency-name svg, .single-portfolio aside .project-date svg {
  color: #F7941D;
  margin-right: 5px;
  font-size: 12px;
}
.single-portfolio aside .client-name strong, .single-portfolio aside .client-website strong, .single-portfolio aside .agency-name strong, .single-portfolio aside .project-date strong {
  font-weight: 700;
}
.single-portfolio aside .project-desc {
  padding-bottom: 75px;
  margin-bottom: 25px;
  border-bottom: 1px solid #444444;
}
.single-portfolio aside .project-desc p {
  font-size: 14px;
}
.single-portfolio aside .tools {
  margin-bottom: 25px;
}
.single-portfolio aside .tools .tool {
  color: #D5D5D5;
  border: 1px solid #F7941D;
  border-radius: 30px;
  padding: 0 10px;
  height: 24px;
  line-height: 22px;
  display: inline-block;
  margin: 0 5px 5px 0;
  background-color: #222222;
  font-weight: 300;
  font-size: 12px;
}
.single-portfolio aside .share-link {
  padding: 0;
}
.single-portfolio aside .share-link a {
  text-decoration: none;
  color: #888;
  height: 28px;
  width: 28px;
  line-height: 28px;
  display: inline-block;
  text-align: center;
  background-color: #444444;
}
.single-portfolio aside .share-link a svg {
  font-size: 14px;
}
.single-portfolio aside.testimonial {
  position: relative;
  margin: 25px auto 0;
  padding: 25px;
  box-sizing: border-box;
  border: none;
  background: transparent;
}
.single-portfolio aside.testimonial .testimonial-inner {
  box-sizing: border-box;
  padding: 35px 60px;
  border: 2px solid #444444;
  border-radius: 8px;
  background-color: #282828;
}
.single-portfolio aside.testimonial .testimonial-inner:after {
  content: "\f10e";
  position: absolute;
  color: #353535;
  bottom: 10px;
  right: 4px;
  z-index: -1;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 50px;
}
.single-portfolio aside.testimonial .testimonial-inner .auth-img {
  position: absolute;
  max-width: 80px;
  top: 0;
  left: 0;
}
.single-portfolio aside.testimonial .testimonial-inner .auth-img img {
  border-radius: 50%;
}
.single-portfolio aside.testimonial .testimonial-inner .auth-text {
  line-height: normal;
  position: relative;
}
.single-portfolio aside.testimonial .testimonial-inner .auth-text:before {
  content: "\f10d";
  position: absolute;
  color: #454545;
  bottom: 25px;
  left: -40px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 25px;
}
.single-portfolio aside.testimonial .testimonial-inner .auth-text .testimonial-txt p {
  font-style: italic;
  margin-bottom: 0;
}
.single-portfolio aside.testimonial .testimonial-inner .auth-text .testimonial-auth h4 {
  margin: 10px 0 0;
  font-size: 0.9em;
}
.single-portfolio aside.testimonial .testimonial-inner .auth-text .testimonial-auth p {
  margin-bottom: 0;
  font-size: 0.8em;
}
.single-portfolio #navigation {
  padding-top: 25px;
}
.single-portfolio #navigation .pagination {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .single-portfolio #navigation .pagination {
    display: block;
  }
  .single-portfolio #navigation .pagination .nav-next, .single-portfolio #navigation .pagination .nav-previous, .single-portfolio #navigation .pagination .portfolio-link {
    float: none;
  }
  .single-portfolio #navigation .pagination .nav-next .button, .single-portfolio #navigation .pagination .nav-previous .button, .single-portfolio #navigation .pagination .portfolio-link .button {
    width: 100%;
  }
}

/***************************************
Vendor custom styles
contains custom styling overrides for plugins/dependancies
***************************************/
/*WEN SKILLS*/
.wen-skill-charts-wrap .wen-skill-bar .skill-wrap {
  position: relative !important;
}
.wen-skill-charts-wrap .wen-skill-bar .skill-wrap .skill-title {
  margin-bottom: 3px !important;
  font-size: 13px !important;
}
.wen-skill-charts-wrap .wen-skill-bar .skill-wrap .skill-bar-wrap {
  height: 16px !important;
  border: 2px solid #444444 !important;
  Border-radius: 8px !important;
  padding: 0 5px !important;
}
.wen-skill-charts-wrap .wen-skill-bar .skill-wrap .skill-bar-wrap .skill-bar {
  height: 4px !important;
  margin-top: 4px !important;
}
.wen-skill-charts-wrap .wen-skill-bar .skill-wrap .skill-bar-wrap .skill-bar .skill-percentage {
  top: -2.5em !important;
  position: absolute !important;
  font-weight: 300 !important;
  font-size: 11px;
}

/*S&F Pro*/
.searchandfilter ul {
  padding: 0 !important;
}
.searchandfilter .sf-field-taxonomy-portfolio_category ul {
  text-align: right;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .searchandfilter .sf-field-taxonomy-portfolio_category ul {
    text-align: center;
  }
}
.searchandfilter .sf-field-taxonomy-portfolio_category ul li {
  display: inline;
  padding-left: 15px;
}
@media (max-width: 575px) {
  .searchandfilter .sf-field-taxonomy-portfolio_category ul li {
    padding: 0 5px;
  }
  .searchandfilter .sf-field-taxonomy-portfolio_category ul li label {
    padding: 0;
  }
}
.searchandfilter .sf-field-taxonomy-portfolio_category ul li.sf-option-active label, .searchandfilter .sf-field-taxonomy-portfolio_category ul li:hover label {
  opacity: 1;
}
.searchandfilter .sf-field-taxonomy-portfolio_category ul li input {
  display: none;
}
.searchandfilter .sf-field-taxonomy-portfolio_category ul li label {
  transition: all 0.3s ease;
  color: #F5F5F5;
  opacity: 0.5;
  font-weight: 300;
  font-size: 12px;
}

.search-filter-scroll-loading {
  margin: 20px auto;
  border: 5px solid rgba(255, 255, 255, 0.15);
  border-right-color: rgba(255, 255, 244, 0.6);
}

/*WP Page Navi*/
.portfolio-pagination {
  margin: 25px 0 0;
  text-align: center;
}
.portfolio-pagination .wp-pagenavi a {
  border: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
}
.portfolio-pagination .wp-pagenavi span {
  border: none;
  opacity: 0.5;
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
}
.portfolio-pagination .wp-pagenavi span.current {
  opacity: 1;
  color: #F7941D;
}

/*reCAPTCHA*/
.grecaptcha-badge {
  bottom: 8em !important;
}

/*# sourceMappingURL=theme-styles-min.css.map */
