/*!
Theme Name: Arteficial
Theme URI: https://panicbear.studio/
Author: Panicbear Studio
Author URI: https://panicbear.studio/
Description: Made by Panic Bear studio with love!
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: arteficial
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Arteficial is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@-webkit-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 0.02;
  }
}
@-moz-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 0.02;
  }
}
@-ms-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 0.02;
  }
}
@keyframes placeholder-background-loading {
  0% {
    opacity: 0.02;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 0.02;
  }
}
@font-face {
  font-family: "Fractul Alt";
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/themes/arteficial/assets/fonts/e926c00c44b920d18e29797128dd784a.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Fractul Alt";
  font-style: normal;
  font-weight: 500;
  src: url(/wp-content/themes/arteficial/assets/fonts/9c26d79e52347177966e3ec19cb718b3.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Fractul Alt";
  font-style: normal;
  font-weight: 700;
  src: url(/wp-content/themes/arteficial/assets/fonts/f96d6f0341061689b7985b3b2a55a4b1.ttf) format("truetype");
  font-display: swap;
}
/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*============================================================================
  Return a color based on the brightness of an existing color.
  Need to pass in brightness because it is calculated with Liquid.
  @param {Number} $brightness
  @param {String} $color
  @example scss - Usage
    $focusColor: adaptiveColor(#000, 0);
  @example css - CSS Output
    $focusColor: #404040;
  @return {String}
==============================================================================*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #F83641;
}

::selection {
  color: #fff;
  background: #F83641;
}

body,
html {
  margin: 0;
  padding: 0;
}

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #fff;
  line-height: inherit;
}

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

p {
  margin-bottom: 1.5em;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

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;
  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;
}

abbr,
acronym {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  cursor: help;
}

mark,
ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
hr {
  background-color: rgba(255, 255, 255, 0.1);
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

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;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

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

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

figure {
  margin: 1em 0;
}

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

/* Links
--------------------------------------------- */
a {
  color: #F83641;
  transition: 0.25s all;
  text-decoration: none;
}
a:visited {
  color: #fff;
}
a:hover, a:focus, a:active {
  color: #C3222E;
}
a:focus, a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  background: #1a1a1a;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
  box-shadow: none;
  outline: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 3px;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

textarea {
  width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

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

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
.grid {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
  position: relative;
  float: none;
}
.grid:after {
  content: "";
  display: table;
  clear: both;
}

.grid__column {
  position: relative;
  box-sizing: border-box;
  min-height: 1px;
  vertical-align: top;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .grid--stackable > .grid__column {
    width: 100% !important;
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 0 auto !important;
    -webkit-flex: 1 0 auto !important;
    flex: 1 0 auto !important;
  }
}

.grid--rev {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid--full {
  margin-left: 0;
  margin-right: 0;
}
.grid--full > .grid__column {
  padding: 0 15px;
}

.grid--nospace {
  margin: 0;
}
.grid--nospace .grid__column {
  padding: 0;
}

.grid--automatic {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.grid--automatic > .grid__column {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.grid--automatic > .grid__column[class*=-twelfths] {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.grid--automatic > .grid__column:not([class*=-twelfths]) {
  flex: 1 1 0%;
  -webkit-flex: 1 1 0%;
}

.grid--equal-height > .grid__column > div {
  width: 100%;
}
.grid--equal-height > .grid__column {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}

.grid--aligned-topcenter {
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.grid--aligned-topright {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.grid--aligned-middleleft {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.grid--aligned-center {
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.grid--aligned-middleright {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.grid--aligned-bottomleft {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.grid--aligned-bottomcenter {
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.grid--aligned-bottomright {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.grid--one-column > .grid__column {
  width: 100%;
}

.grid--two-columns > .grid__column {
  width: 50%;
}

.grid--three-columns > .grid__column {
  width: 33.3333333333%;
}

.grid--four-columns > .grid__column {
  width: 25%;
}

.grid--five-columns > .grid__column {
  width: 20%;
}

.grid--six-columns > .grid__column {
  width: 16.6666666667%;
}

.grid--seven-columns > .grid__column {
  width: 14.2857142857%;
}

.grid--eight-columns > .grid__column {
  width: 12.5%;
}

.grid--nine-columns > .grid__column {
  width: 11.1111111111%;
}

.grid--ten-columns > .grid__column {
  width: 10%;
}

.grid--eleven-columns > .grid__column {
  width: 9.0909090909%;
}

.grid--twelfth-columns > .grid__column {
  width: 8.3333333333%;
}

/** Whole */
.one-whole {
  width: 100%;
}

/* Halves */
.one-half {
  width: 50%;
}

/* Twelfths */
.one-twelfth {
  width: 8.333%;
}

.two-twelfths {
  width: 16.666%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.333%;
}

.five-twelfths {
  width: 41.666%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.333%;
}

.eight-twelfths {
  width: 66.666%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

.visible {
  display: block !important;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  /** Whole */
  .mobile--one-whole {
    width: 100%;
  }

  /* Halves */
  .mobile--one-half {
    width: 50%;
  }

  /* Twelfths */
  .mobile--one-twelfth {
    width: 8.333%;
  }

  .mobile--two-twelfths {
    width: 16.666%;
  }

  .mobile--three-twelfths {
    width: 25%;
  }

  .mobile--four-twelfths {
    width: 33.333%;
  }

  .mobile--five-twelfths {
    width: 41.666%;
  }

  .mobile--six-twelfths {
    width: 50%;
  }

  .mobile--seven-twelfths {
    width: 58.333%;
  }

  .mobile--eight-twelfths {
    width: 66.666%;
  }

  .mobile--nine-twelfths {
    width: 75%;
  }

  .mobile--ten-twelfths {
    width: 83.333%;
  }

  .mobile--eleven-twelfths {
    width: 91.666%;
  }

  .mobile--visible {
    display: block !important;
  }

  .mobile--hidden {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /** Whole */
  .tablet--one-whole {
    width: 100%;
  }

  /* Halves */
  .tablet--one-half {
    width: 50%;
  }

  /* Twelfths */
  .tablet--one-twelfth {
    width: 8.333%;
  }

  .tablet--two-twelfths {
    width: 16.666%;
  }

  .tablet--three-twelfths {
    width: 25%;
  }

  .tablet--four-twelfths {
    width: 33.333%;
  }

  .tablet--five-twelfths {
    width: 41.666%;
  }

  .tablet--six-twelfths {
    width: 50%;
  }

  .tablet--seven-twelfths {
    width: 58.333%;
  }

  .tablet--eight-twelfths {
    width: 66.666%;
  }

  .tablet--nine-twelfths {
    width: 75%;
  }

  .tablet--ten-twelfths {
    width: 83.333%;
  }

  .tablet--eleven-twelfths {
    width: 91.666%;
  }

  .tablet--visible {
    display: block !important;
  }

  .tablet--hidden {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /** Whole */
  .desk--one-whole {
    width: 100%;
  }

  /* Halves */
  .desk--one-half {
    width: 50%;
  }

  /* Twelfths */
  .desk--one-twelfth {
    width: 8.333%;
  }

  .desk--two-twelfths {
    width: 16.666%;
  }

  .desk--three-twelfths {
    width: 25%;
  }

  .desk--four-twelfths {
    width: 33.333%;
  }

  .desk--five-twelfths {
    width: 41.666%;
  }

  .desk--six-twelfths {
    width: 50%;
  }

  .desk--seven-twelfths {
    width: 58.333%;
  }

  .desk--eight-twelfths {
    width: 66.666%;
  }

  .desk--nine-twelfths {
    width: 75%;
  }

  .desk--ten-twelfths {
    width: 83.333%;
  }

  .desk--eleven-twelfths {
    width: 91.666%;
  }

  .desk--visible {
    display: block !important;
  }

  .desk--hidden {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid--doubling.grid--two-columns > .grid__column {
    width: 100%;
  }

  .grid--doubling.grid--three-columns > .grid__column {
    width: 50%;
  }

  .grid--doubling.grid--four-columns > .grid__column {
    width: 50%;
  }

  .grid--doubling.grid--five-columns > .grid__column {
    width: 33.3333333333%;
  }

  .grid--doubling.grid--six-columns > .grid__column {
    width: 33.3333333333%;
  }

  .grid--doubling.grid--seven-columns > .grid__column {
    width: 33.3333333333%;
  }

  .grid--doubling.grid--eight-columns > .grid__column {
    width: 25%;
  }

  .grid--doubling.grid--nine-columns > .grid__column {
    width: 20%;
  }

  .grid--doubling.grid--ten-columns > .grid__column {
    width: 20%;
  }

  .grid--doubling.grid--eleven-columns > .grid__column {
    width: 20%;
  }

  .grid--doubling.grid--twelfth-columns > .grid__column {
    width: 16.6666666667%;
  }
}
@media (max-width: 767px) {
  .grid--doubling.grid--two-columns > .grid__column, .grid--doubling.grid--three-columns > .grid__column, .grid--doubling.grid--four-columns > .grid__column, .grid--doubling.grid--five-columns > .grid__column {
    width: 100%;
  }
  .grid--doubling.grid--six-columns > .grid__column, .grid--doubling.grid--seven-columns > .grid__column, .grid--doubling.grid--eight-columns > .grid__column, .grid--doubling.grid--nine-columns > .grid__column {
    width: 50%;
  }
  .grid--doubling.grid--ten-columns > .grid__column, .grid--doubling.grid--elevent-columns > .grid__column, .grid--doubling.grid--twelfth-columns > .grid__column {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .large--visible {
    display: block !important;
  }

  .large--hidden {
    display: none !important;
  }
}
.flex {
  display: flex;
}
.flex--spacer {
  flex: 1;
}
.flex--column {
  flex-flow: column;
}
.flex--row {
  flex-flow: row;
}
.flex--inline {
  display: inline-flex;
}

.justify--center {
  justify-content: center;
}
.justify--around {
  justify-content: space-around;
}
.justify--between {
  justify-content: space-between;
}
.justify--start {
  justify-content: flex-start;
}
.justify--end {
  justify-content: flex-end;
}

.align--center {
  align-items: center;
}
.align--start {
  align-items: flex-start;
}
.align--end {
  align-items: flex-end;
}

.text--black {
  font-weight: 900;
}
.text--bold {
  font-weight: 700;
}
.text--semi {
  font-weight: 600;
}
.text--medium {
  font-weight: 500;
}
.text--normal {
  font-weight: 400;
}
.text--light {
  font-weight: 300;
}
.text--extra-light {
  font-weight: 200;
}
.text--italic {
  font-style: italic;
}
.text--upper {
  text-transform: uppercase;
}
.text--lower {
  text-transform: lowercase;
}
.text--capitalize {
  text-transform: capitalize;
}
.text--nowrap {
  white-space: nowrap;
}
.text--strikethrough {
  text-decoration: line-through;
}
.text--white {
  color: #fff;
}
.text--dark {
  color: #fff;
}
.text--primary {
  color: #F83641;
}
.text--secondary {
  color: #395CAE;
}
.text--link {
  color: #F83641;
}
.text--link:hover {
  color: #fff;
}
.text--right {
  text-align: right;
}
.text--left {
  text-align: left;
}
.text--center {
  text-align: center;
}
.text--underline {
  text-decoration: underline;
}
.text--desc {
  font-size: 16px;
  line-height: 26px;
}
.text--brackets {
  color: #F83641;
}
.text--brackets:before {
  content: "[";
  margin-right: 5px;
}
.text--brackets:after {
  content: "]";
  margin-left: 5px;
}
.text--outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #f83642;
}

.no-style {
  margin: 0;
  padding: 0;
}
.no-style li {
  list-style: none;
}

.mgt--10 {
  margin-top: 10px;
}

.mgt--20 {
  margin-top: 20px;
}

.mgt--30 {
  margin-top: 30px;
}

.mgt--40 {
  margin-top: 40px;
}

.mgt--50 {
  margin-top: 50px;
}

.mgt--60 {
  margin-top: 60px;
}

.mgt--70 {
  margin-top: 70px;
}

.mgt--80 {
  margin-top: 80px;
}

.mgt--90 {
  margin-top: 90px;
}

.mgt--100 {
  margin-top: 100px;
}

.mgb--10 {
  margin-bottom: 10px;
}

.mgb--20 {
  margin-bottom: 20px;
}

.mgb--30 {
  margin-bottom: 30px;
}

.mgb--40 {
  margin-bottom: 40px;
}

.mgb--50 {
  margin-bottom: 50px;
}

.mgb--60 {
  margin-bottom: 60px;
}

.mgb--70 {
  margin-bottom: 70px;
}

.mgb--80 {
  margin-bottom: 80px;
}

.mgb--90 {
  margin-bottom: 90px;
}

.mgb--100 {
  margin-bottom: 100px;
}

.pdt--10 {
  padding-top: 10px;
}

.pdt--20 {
  padding-top: 20px;
}

.pdt--30 {
  padding-top: 30px;
}

.pdt--40 {
  padding-top: 40px;
}

.pdt--50 {
  padding-top: 50px;
}

.pdt--60 {
  padding-top: 60px;
}

.pdt--70 {
  padding-top: 70px;
}

.pdt--80 {
  padding-top: 80px;
}

.pdt--90 {
  padding-top: 90px;
}

.pdt--100 {
  padding-top: 100px;
}

.pdb--10 {
  padding-bottom: 10px;
}

.pdb--20 {
  padding-bottom: 20px;
}

.pdb--30 {
  padding-bottom: 30px;
}

.pdb--40 {
  padding-bottom: 40px;
}

.pdb--50 {
  padding-bottom: 50px;
}

.pdb--60 {
  padding-bottom: 60px;
}

.pdb--70 {
  padding-bottom: 70px;
}

.pdb--80 {
  padding-bottom: 80px;
}

.pdb--90 {
  padding-bottom: 90px;
}

.pdb--100 {
  padding-bottom: 100px;
}

.pd--10 {
  padding: 10px;
}

.pd--20 {
  padding: 20px;
}

.pd--30 {
  padding: 30px;
}

.pd--40 {
  padding: 40px;
}

.pd--50 {
  padding: 50px;
}

.pd--60 {
  padding: 60px;
}

.pd--70 {
  padding: 70px;
}

.pd--80 {
  padding: 80px;
}

.pd--90 {
  padding: 90px;
}

.pd--100 {
  padding: 100px;
}

.lazyload--fade-in {
  transition: 0.3s all;
  opacity: 0;
  will-change: opacify;
}
.lazyload--fade-in.lazyloaded {
  opacity: 1;
}

[data-image-with-placeholder-wrapper] {
  position: relative;
}

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.placeholder-background--animation {
  background-color: #000;
  animation: placeholder-background-loading 1.5s infinite linear;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.icon-spinner {
  animation: spin 500ms infinite linear;
}

.svg-icon {
  transition: 0.3s all;
  color: #fff;
}
.svg-icon svg path {
  fill: currentColor !important;
}
.svg-icon:hover {
  background: #fff;
  color: #fff;
}

.disable-scroll {
  overflow: hidden;
}

.image-bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: rgba(0, 0, 0, 0.95);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .contact__form .nf-form-title h3, .h3, .h4, .h5, .h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #fff;
  font-weight: 500;
  padding: 0;
  font-family: "Fractul Alt", Helvetica, Arial, sans-serif;
}

h1, .h1 {
  font-size: 60px;
  line-height: 88px;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 44px;
    line-height: 64px;
  }
}

h2, .h2, .contact__form .nf-form-title h3 {
  font-size: 24px;
  line-height: 34px;
}
@media (max-width: 767px) {
  h2, .h2, .contact__form .nf-form-title h3 {
    font-size: 18px;
    line-height: 32px;
  }
}

h3, .h3 {
  font-size: 20px;
  line-height: 28px;
}

h4, .h4 {
  font-size: 18px;
  line-height: 26px;
}

h5, .h5 {
  font-size: 16px;
  line-height: 24px;
}

h6, .h6 {
  font-size: 14px;
  line-height: 22px;
}

.container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  pointer-events: none;
}
.site-header.sticky {
  height: 80px !important;
  background: rgba(0, 0, 0, 0.5);
}
.site-header.sticky .site-header__cta {
  transform: scale(0.7);
}
.site-header--v2 {
  padding: 0 60px;
  pointer-events: auto;
  background: #0e0e0e;
}
.site-header--v2 a {
  color: rgba(255, 255, 255, 0.6);
}
.site-header--v2 a:hover {
  color: #fff;
}
.is-mobile .site-header--v2 {
  padding: 0 20px !important;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.is-mobile .site-header__inner {
  height: auto;
  padding: 32px 0;
  width: 100%;
}
.site-header h1 {
  margin: 0;
}
.is-mobile .site-header {
  pointer-events: auto;
  padding: 0 20px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
}
.site-header__cta {
  background: #F83641;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 60px;
  height: 60px;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  padding-bottom: 2px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .site-header {
    padding: 0 50px !important;
  }
}

.site-branding {
  padding: 60px;
  display: inline-block;
  pointer-events: auto;
}
.is-mobile .site-branding {
  padding: 0;
  width: 60px;
}

.site-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
}
.site-nav__cta {
  width: 240px;
  flex: 0 0 auto;
}
.site-nav .menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1;
}
.site-nav .menu-item {
  flex: 1;
  text-align: center;
  list-style: none;
}
.site-nav .menu-item a {
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.6) !important;
  display: block;
}
.site-nav .menu-item a.btn, .site-nav .menu-item a:hover {
  color: #fff !important;
}
.site-nav .menu-item.active a {
  color: #fff !important;
}

.suffix {
  color: #F83641;
}

.animate {
  transform: translate3d(0, 50px, 0);
  opacity: 0;
}
.is-mobile .animate {
  opacity: 1;
  transform: none;
}

.open-nav {
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  z-index: 11;
}
.mobile-nav:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 205px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.98) 42.19%);
  display: block;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.mobile-nav a {
  flex: 1;
  display: inline-flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: 0.3s all;
}
.mobile-nav a.active {
  color: #fff;
}
.mobile-nav__progress {
  position: absolute;
  bottom: 100%;
  height: 2px;
  background: #272727;
  width: 100%;
}
.mobile-nav__progress span {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #F83641;
}

.mobile-titles {
  position: fixed;
  bottom: 76px;
  left: 0;
  width: 100%;
  display: block;
  z-index: 99;
}
.mobile-titles h2 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  margin: 0;
  opacity: 0;
  font-size: 26px;
  line-height: 32px;
  transition: 0.3s;
}
.mobile-titles h2.active {
  opacity: 1;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.btn {
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  line-height: 60px;
  padding: 0 32px;
  background: #F83641;
  font-weight: 500;
  font-family: "Fractul Alt", Helvetica, Arial, sans-serif;
  font-size: 18px;
  border: none;
  transition: 0.25s;
  color: #fff;
}
.btn:hover {
  background: #C3222E;
  color: #fff;
}
.btn--full {
  width: 100%;
}
.btn--plain {
  padding: 0;
  height: auto;
  line-height: inherit;
  background: none;
}
@media (max-width: 767px) {
  .btn {
    height: 48px;
    line-height: 48px;
  }
}

.form__control {
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #191919 !important;
  font-size: 14px;
  color: #fff !important;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
.home {
  overflow: hidden;
}
.home.is-mobile {
  overflow: auto;
}
.home-slides {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.home-slides__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.home-slides__progress {
  position: absolute;
  text-align: center;
  z-index: 10;
  height: 3px;
  bottom: 57px;
  left: 0;
  right: 240px;
  background: none !important;
}
.home-slides__progress span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  background: #F83641;
}
.home-slides__progress--current {
  width: calc((100vw)/5) !important;
  left: auto !important;
  right: 100% !important;
}
.home-slides__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  z-index: -1;
}
.home-slides__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.home-slides__bg-video {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-slides__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.home-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.home-slide__title {
  position: absolute;
  opacity: 0;
  bottom: 100px;
  left: 60px;
  z-index: 1;
}
.home-slide__title .h1 {
  margin-bottom: 0;
}
.home-slide__title .pager {
  font-size: 12px;
  font-weight: 500;
  font-family: "Fractul Alt", Helvetica, Arial, sans-serif;
}
.home-slide__title .pager span {
  color: #F83641;
}
.home-slide .home-slide__title {
  display: none;
}

.home-inner {
  position: relative;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-block {
  display: flex;
  flex-flow: column;
  position: relative;
}
.home-block__title {
  color: #F83641;
  margin-bottom: 0;
}
.home-block__title.animated {
  transition: 0.4s all;
}
.home-block__desc {
  margin-top: 1rem;
  color: #fff;
}
.home-block__desc + .home-block__title {
  margin-top: 48px;
}
.home-block__icon {
  position: absolute;
  top: 10px;
  left: 0;
  transition: 0.4s all;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}
.home-block__image {
  flex: 0 0 auto;
}
.home-block__content {
  padding-left: 48px;
}
.home-block--boxed {
  max-width: 375px;
}
.home-block--with-image {
  flex-flow: row;
}
.home-block--push-top {
  margin-top: calc(100vh/3);
}
.home-block--with-icon:hover .home-block__title {
  transform: translate3d(66px, 0, 0) !important;
}
.home-block--with-icon:hover .home-block__icon {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.home-block--horizontal {
  flex-flow: row nowrap;
}
.home-block--horizontal .home-block__title {
  min-width: 200px;
  margin-right: 30px;
}
.home-block--horizontal .home-block__desc {
  max-width: 350px;
  margin-top: 0;
}

.home-row {
  display: flex;
  min-height: calc(100vh/3);
}

.home-index {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-index__title {
  opacity: 0;
  white-space: nowrap;
  padding-bottom: 50px;
}
.home-index__title-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 900px;
  width: 900px;
  transform: translate(-50%, -50%);
}
.home-index__title strong {
  font-weight: 500;
}
@media (max-width: 767px) {
  .home-index__title {
    white-space: inherit;
    padding-bottom: 0;
  }
  .home-index__title-wrapper {
    position: static;
    transform: none;
    max-width: 90vw;
    width: auto;
    padding-bottom: 50px;
  }
}

.home-services .home-inner {
  padding: 30px calc(100vw/5) 0;
}
.home-services .home-row {
  align-items: flex-start;
}
.home-services .home-block {
  padding-bottom: 35px;
}
.home-services .home-block:before, .home-services .home-block:after {
  opacity: 0;
  transition: 0.3s all;
}
.home-services .home-block:before {
  content: "";
  display: block;
  background: rgba(248, 54, 65, 0.1);
  border: 1px solid #F83641;
  position: absolute;
  left: -16px;
  right: -16px;
  top: -24px;
  bottom: 4px;
}
.home-services .home-block:after {
  content: "";
  display: block;
  height: 66px;
  left: -16px;
  right: -16px;
  position: absolute;
  top: 100%;
  background: url(/wp-content/themes/arteficial/assets/images/30ba8dc9a01d00f804d08f75e9e910d9.svg) repeat-x center center;
}
.home-services .home-block:hover .home-block__inner:before,
.home-services .home-block:hover .home-block__inner:after, .home-services .home-block:hover:before, .home-services .home-block:hover:after {
  opacity: 1;
}
.home-services .home-block--first {
  transform: translate3d(0, 80px, 0);
}
.home-services .home-block__inner:before, .home-services .home-block__inner:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #F83641;
  left: -26px;
  top: -34px;
  transition: 0.3s all;
  opacity: 0;
}
.home-services .home-block__inner:after {
  width: 12px;
  height: 12px;
  bottom: 0;
  right: -22px;
  top: auto;
  left: auto;
}

.home-rd .home-inner {
  padding: 0 calc(100vw/5);
}
.home-rd__slides {
  flex-flow: column;
  transform: translate3d(0px, 0, 0);
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.home-rd__slides-container {
  position: relative;
  overflow: hidden;
  padding-right: 60px;
  margin-right: -60px;
  height: 66.67vh;
}
.home-rd__slide {
  flex-shrink: 0;
  width: 100%;
  height: 66.67vh !important;
  position: relative;
  transition-property: transform;
}
.home-rd__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-rd__slide-content {
  display: flex;
  position: absolute;
  padding: 40px;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.home-rd__slide-content h2 {
  padding-right: 60px;
}
.home-rd__slide-advisor {
  position: absolute;
  right: 60px;
  top: 130px;
  z-index: 1;
}
.home-rd__navigation {
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 200px;
  right: calc(400vw/5);
  margin-right: 43px;
  z-index: 2;
}
.home-rd__navigation a {
  padding: 0;
  line-height: 40px;
  margin: 5px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.home-rd__navigation a:hover, .home-rd__navigation a.active {
  color: #F83641;
}
.home-rd__navigation a:after {
  content: "";
  display: block;
  height: 2px;
  width: 80px;
  background: url(/wp-content/themes/arteficial/assets/images/dcc9d48cfe8fa8eb02048c052a803aa6.svg) no-repeat right center;
  position: absolute;
  right: -60px;
  top: 20px;
  margin-left: 5px;
  opacity: 0;
  transition: 0.2s;
}
.home-rd__navigation a:last-child:after {
  width: 47px;
  background: url(/wp-content/themes/arteficial/assets/images/02bfc23e63a76891dd7126a7f861a758.svg) no-repeat right center;
}
.home-rd__navigation a.active:after {
  opacity: 1;
}
.home-rd--animate {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

.home-about .home-inner {
  padding: 170px 240px 50px 60px;
}
.home-about .home-block + .home-block {
  margin-top: 45px;
}
.home-about__members {
  position: absolute;
  right: 180px;
  top: 60px;
  bottom: 60px;
  overflow: hidden;
  padding: 0 90px 0 30px;
  margin: 0 -90px 0 -30px;
}
.home-about__members-wrapper {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.home-about__members-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.home-about__members-navigation .animate {
  display: flex;
  flex-flow: column;
}
.home-about__members-navigation .btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #F83641;
  background: none;
  padding: 0;
  margin: 8px 0;
  cursor: pointer;
}
.home-about__members-navigation .btn:hover {
  background: #F83641;
}
.home-about__members-navigation .btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.home-about__member {
  display: flex;
  flex-flow: row;
  height: calc(100%/3);
  position: relative;
}
.home-about__member:before, .home-about__member:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #F83641;
  position: absolute;
  bottom: 40px;
  left: -10px;
  transition: 0.3s all;
  opacity: 0;
  z-index: 2;
}
.home-about__member:after {
  left: auto;
  right: -10px;
  top: 40px;
}
.home-about__member:hover .home-about__member-avatar:after, .home-about__member:hover:before, .home-about__member:hover:after {
  opacity: 1;
}
.home-about__member-avatar {
  position: relative;
  width: calc(100vh/3);
}
.home-about__member-avatar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s all;
  z-index: 1;
  background: linear-gradient(180deg, rgba(248, 54, 65, 0) 24.48%, rgba(6, 12, 40, 0.684615) 65.1%, #080D28 92.19%);
  border: 1px solid #F83641;
  opacity: 0;
  pointer-events: none;
}
.home-about__member-avatar:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(7, 16, 40, 0.4);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s all;
  opacity: 1;
}
.home-about__member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: 0.3s all;
}
.home-about__member:hover .home-about__member-avatar:before {
  opacity: 1;
}
.home-about__member:hover .home-about__member-avatar:after {
  opacity: 0;
}
.home-about__member:hover .home-about__member-avatar img {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
.home-about__member-info {
  padding: 32px 20px;
  background: rgba(248, 54, 65, 0.14);
  border: 1px solid #F83641;
  width: calc(100vh/3);
  transition: 0.3s all;
  opacity: 0;
  position: relative;
}
.home-about__member:hover .home-about__member-info {
  opacity: 1;
}
.home-about__member--reversed {
  flex-flow: row-reverse;
}

.home-career .home-inner {
  padding: 60px 240px 80px 320px;
}
.home-career .home-inner h2 {
  position: absolute;
  top: 160px;
  left: 60px;
}
.home-career__job-list {
  overflow: auto;
  max-height: 100%;
  display: flex;
  flex-flow: column;
  position: relative;
  padding-right: 30px;
  margin-right: -30px;
  padding-bottom: 135px;
}
.home-career__job-list:after {
  display: block;
  height: 134px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.96) 100%);
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
.home-career__job-header {
  display: flex;
  align-items: center;
  height: 56px;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  padding: 0 24px;
  border: 1px solid transparent;
}
.home-career__job-header:hover {
  border-color: #F83641;
  background: rgba(248, 54, 65, 0.1);
}
.home-career__job-header .arrow {
  transition: 0.3s all;
  color: #F83641;
}
.home-career__job-title {
  flex: 1;
  margin: 0;
}
.home-career__job-title:before {
  content: "< ";
}
.home-career__job-title:after {
  content: " >";
}
.home-career__job-type, .home-career__job-location {
  width: 200px;
}
.home-career__job-content {
  padding: 40px 24px;
  color: #fff;
  display: none;
  border: 1px solid transparent;
}
.home-career__job-content ul {
  padding: 0;
  margin: 0;
}
.home-career__job-content ul li {
  list-style: none;
  position: relative;
  line-height: 30px;
}
.home-career__job-content ul li:before {
  content: "-";
  margin-right: 30px;
}
.home-career__job-subtitle {
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #F83641;
  font-weight: 500;
  font-family: "Fractul Alt", Helvetica, Arial, sans-serif;
}
.home-career__job-subtitle:after {
  content: " {";
}
.home-career__job.active .home-career__job-header {
  border-color: #F83641;
  background: rgba(248, 54, 65, 0.1);
}
.home-career__job.active .home-career__job-header .arrow {
  transform: rotate(-180deg);
  color: #fff;
}
.home-career__job.active .home-career__job-content {
  background: rgba(248, 54, 65, 0.1);
  border-color: #F83641;
}

.is-mobile .home-slide {
  padding-top: 100px;
}
.is-mobile .home-slide:first-child {
  padding-top: 0;
}
.is-mobile .home-row {
  min-height: auto;
  flex-flow: column;
}
.is-mobile .home-index {
  height: 100vh;
  padding: 0 20px;
}
.is-mobile .home-index__title {
  overflow: hidden;
}
.is-mobile .home-slides {
  position: relative;
  padding-bottom: 200px;
}
.is-mobile .home-slides__wrapper {
  flex-flow: column;
}
.is-mobile .home-slides__bg {
  position: fixed;
}
.is-mobile .home-block {
  min-height: unset;
  max-width: 100%;
  transform: none;
}
.is-mobile .home-block:not(:last-child) {
  margin-bottom: 40px;
}
.is-mobile .home-rd__navigation {
  display: none;
}
.is-mobile .home-rd__slides-container {
  height: auto;
  margin: 0;
  padding: 0;
}
.is-mobile .home-rd__slide {
  height: auto !important;
  padding-top: 0;
}
.is-mobile .home-rd__slide + .home-rd__slide {
  margin-top: 60px;
}
.is-mobile .home-rd__slide-bg {
  position: static;
  height: auto;
}
.is-mobile .home-rd__slide-advisor {
  position: static;
  margin: 10px 0 0 20px;
}
.is-mobile .home-rd__slide-content {
  position: static;
  flex-flow: column;
  margin-top: -100px;
  padding: 0 20px;
}
.is-mobile .home-about .home-inner {
  display: flex;
  flex-flow: column;
}
.is-mobile .home-about .home-block {
  flex-flow: column;
  margin-top: 0;
}
.is-mobile .home-about .home-block .home-block__title {
  margin-right: 0;
  min-width: auto;
}
.is-mobile .home-about__members {
  position: static;
  margin-top: 0;
}
.is-mobile .home-about__member {
  height: auto;
  align-items: center;
  flex-flow: row !important;
  padding: 10px 0;
}
.is-mobile .home-about__member:before, .is-mobile .home-about__member:after {
  display: none;
}
.is-mobile .home-about__member-info {
  opacity: 1;
  background: none;
  border: none;
  flex: 1;
  padding: 0 0 0 20px;
}
.is-mobile .home-about__member-info:before, .is-mobile .home-about__member-info:after {
  display: none;
}
.is-mobile .home-about__member-avatar {
  width: 92px;
  height: 92px;
  border: none !important;
}
.is-mobile .home-about__member-avatar:before {
  display: none;
}
.is-mobile .home-about__member-avatar img {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}

@media (min-width: 768px) and (max-width: 991px) {
  .home-inner {
    padding: 0 50px !important;
  }

  .home-index {
    padding: 0 50px !important;
    height: 90vh !important;
  }
  .home-index__title {
    white-space: inherit;
  }
  .home-index__title br {
    display: none;
  }
  .home-index__title-wrapper {
    width: 90vw;
    text-align: center;
  }

  .home-services {
    padding-bottom: 120px;
  }
  .home-services .home-row {
    justify-content: flex-start;
    min-height: auto;
    flex-flow: column;
  }
  .home-services .home-row + .home-row {
    margin-top: 0;
  }
  .home-services .home-block {
    margin-bottom: 50px;
    transform: none;
  }

  .home-about__members {
    margin-top: 70px !important;
  }
  .home-about .home-block {
    margin-bottom: 60px !important;
  }
  .home-about__member-avatar {
    width: 150px !important;
    height: 150px !important;
  }
  .home-about__member-info {
    max-width: 450px;
  }

  .home-rd {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .home-inner {
    padding: 0 20px !important;
  }

  .home-slide .home-slide__title {
    display: block;
    position: static;
    opacity: 1;
    padding-bottom: 40px;
  }

  .home-services .home-row {
    margin-top: 0;
  }
  .home-services .home-block {
    margin-bottom: 0;
  }
  .home-services .home-block__inner:before, .home-services .home-block__inner:after, .home-services .home-block:before, .home-services .home-block:after {
    display: none;
  }
  .home-services .home-block__desc {
    padding-left: 66px;
    margin-top: 12px;
  }
  .home-services .home-block__title {
    transform: translate3d(66px, 0, 0) !important;
  }
  .home-services .home-block__icon {
    opacity: 1;
    transform: none;
  }

  .home-block__desc + .home-block__title {
    margin-top: 30px;
  }

  .home-career .home-slide__title h2 {
    position: static;
  }
  .home-career__job-header span:not(.arrow) {
    display: none;
  }
  .home-career__job-list {
    padding-bottom: 20px;
    padding-right: 0;
    margin: 0 !important;
  }
}
.contact .site-main {
  padding-top: 90px;
  min-height: 100vh;
}
.contact__info {
  padding-top: 90px;
  padding-right: 60px;
}
.contact__map {
  position: relative;
  text-align: center;
}
.contact__map img {
  width: 100%;
}
.contact__location {
  display: inline-flex;
  background: #F83641;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
.contact__location:before, .contact__location:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background: #F83641;
  border-radius: 50%;
  animation: beacon 2s infinite;
  display: none;
}
.contact__location:after {
  animation: beacon 2s infinite 0.3s;
}
.contact__location.active:before, .contact__location.active:after {
  display: inline-flex;
}
.contact__location--1 {
  top: 63.3802816901%;
  left: 75.503875969%;
}
.contact__location--2 {
  top: 30.4225352113%;
  left: 46.6666666667%;
}
.contact__location--3 {
  top: 36.338028169%;
  left: 48.8372093023%;
}
.contact__location--4 {
  top: 81.9718309859%;
  left: 88.6821705426%;
}
.contact__addresses {
  display: flex;
  margin-top: 60px;
  flex-flow: row wrap;
}
.contact__addresses-block {
  width: 50%;
  padding-right: 60px;
  padding-bottom: 16px;
  margin-bottom: 30px;
  position: relative;
  opacity: 0.6;
  transition: 0.3s all;
}
.contact__addresses-block:after {
  content: "";
  display: block;
  height: 1px;
  background: #F83641;
  transition: 0.3s all;
  opacity: 0;
  width: calc(100% - 60px);
  position: absolute;
  bottom: 0;
  left: 0;
}
.contact__addresses-block:hover {
  opacity: 1;
}
.contact__addresses-block:hover:after {
  opacity: 1;
}
.contact__form {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.contact__form .nf-form-fields-required {
  display: none;
}
.contact__form .nf-form-title h3 {
  margin-bottom: 30px;
}
.contact__form .nf-form-cont {
  width: 100%;
}
.contact__form .nf-form-content {
  padding: 0;
}
.contact__form nf-fields-wrap {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -9px;
}
.contact__form nf-field {
  width: 50%;
  padding: 0 9px;
}
.contact__form nf-field:last-child, .contact__form nf-field:nth-child(3) {
  width: 100%;
}
.contact__form .nf-field-label label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
}
.contact__form .submit-wrap .btn-submit {
  width: 100%;
  background: #F83641 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-family: "Fractul Alt", Helvetica, Arial, sans-serif;
  height: 60px;
  text-align: center;
  cursor: pointer;
}
.contact__form .submit-wrap .btn-submit:hover {
  background: #C3222E !important;
}
.contact__form .field-wrap .nf-field-element:after {
  display: none;
}
.contact__form .nf-pass .ninja-forms-field {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.contact__form .nf-error .form__control {
  background: rgba(248, 54, 65, 0.16) !important;
}

@-webkit-keyframes beacon {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(10);
  }
}
.is-mobile .container {
  padding: 0 20px;
}
.is-mobile .contact__info {
  padding: 0;
  margin-top: 50px;
}
.is-mobile .contact__form {
  padding: 20px 0 0;
  border: none;
}
.is-mobile .contact__form nf-field {
  width: 100%;
}
.is-mobile .contact__addresses-block {
  padding: 0 0 10px;
  margin-bottom: 20px;
  width: 100%;
}
.is-mobile.contact {
  padding-bottom: 60px;
}
.is-mobile.contact .grid {
  flex-flow: column-reverse;
}
/**
 * Swiper 6.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 30, 2020
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
