/**
 * Variables
 */
 :root {
  --body-bg: #0d0f16;
  --header-bg: #020312;
  --content-bg: #12141c;
  --text-color: #a1a1a1;
  --sidebar-link-color: #cfcfcf;
  --border-color: #1e222a;
  --pink: #f26c4f;
  --violet: #f4399e;
  --circle-color: #1b0e21;
  --pink-gradient: linear-gradient(to right, #f26c4f, #f4399e);
}
/**
 * Fonts
 */
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('../fonts/open-sans.woff2') format('woff2'),
       url('../fonts/open-sans.woff') format('woff');
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
       url('../fonts/roboto.woff2') format('woff2'),
       url('../fonts/roboto.woff') format('woff');
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'),
       url('../fonts/roboto-bold.woff2') format('woff2'),
       url('../fonts/roboto-bold.woff') format('woff');
}
/**
 * html and body.
 */
html {
  line-height: 1.7;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: -system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.7;
  background: #0d0f16;
  background: var(--body-bg);
  color: #a1a1a1;
  color: var(--text-color);
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/*
 * Fields and regions.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
summary {
  display: list-item;
  cursor: pointer;
  color: #a1a1a1;
  color: var(--text-color);
}
template,
[hidden] {
  display: none;
}

/**
 * Typography
 ------------------------------------*/
/* Typography -> Headings. */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
}
h1 {
  font-size: 2.2em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.6em;
}
h4 {
  font-size: 1.2em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 1em;
}

/* Typography -> Paragraph */
p {
  margin: 0 0 1em 0;
}

/* Typography -> Links. */
a {
  color: #f26c4f;
  color: var(--pink);
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

a:active,
li a.active {
  color: #f26c4f;
  color: var(--pink);
}
a:hover,
a:visited:hover {
  color: #f4399e;
  color: var(--violet);
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}
/* Typography -> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
  padding: 2px 8px;
  background: #020312;
  background: var(--header-bg);
  margin: 0;
}
pre {
  overflow: auto;
  margin-bottom: 1em;
}
/* Typography -> Font styles */
b,
strong {
  font-weight: bolder;
  color: #ffffff;
}
em {
  font-style: normal;
  color: #f26c4f;
  color: var(--pink);
}
dfn,
cite {
  font-style: italic;
}
del {
  text-decoration: line-through;
}
small {
  font-size: 80%;
}
big {
  font-size: 125%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}
mark {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
  text-shadow: none;
}

/* Typography -> Address */
address {
  margin: 0 0 1em 0;
  font-style: italic;
}

/* Typography -> Abbreviation */
acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
abbr,
acronym {
  cursor: help;
}

/* Typography -> Blockquote */
blockquote {
  position: relative;
  margin: 0.6em 0 1em 0;
  padding: 1em;
  background: #020312;
  background: var(--header-bg);
  border-left: 4px solid #f26c4f;
  border-left: 4px solid var(--pink);

}
blockquote > :last-child {
  margin-bottom: 0;
}
/**
 * Media
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img,
a img {
  max-width: 100% !important;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-style: none;
  vertical-align: middle;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border: 0;
}
.align-left {
  margin: 1em 1em 1em 0;
}
.align-right {
  margin: 1em 0 1em 1em;
}
.align-center {
  margin-top: 1em;
  margin-bottom: 1em;
}
figcaption {
  padding: 4px;
  font-size: 0.8em;
  background: #020312;
  background: var(--header-bg);
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
  text-align: center;
}
.image-field {
  margin: 0 0 1em 0;
}

/**
 * Form.
 */
form {
  margin-bottom: 1em;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
.button-solid,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  position: relative;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  padding: 9px 10px;
  background: #f26c4f;
  background: var(--pink-gradient);
  color: #fff;
  -webkit-appearance: button;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.button-solid:hover,
button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
  background: #020312;
  background: var(--header-bg);
  color: #ffffff;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0;
}
button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
input {
  line-height: normal;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  background: transparent;
  color: #a1a1a1;
  color: var(--text-color);
  padding: 10px;
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  -webkit-transition: border 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  border: 1px solid #f26c4f;
  border: 1px solid var(--pink);
  outline: 0;
}
@-webkit-keyframes autofill {
  to {
    color: #a1a1a1;
    color: var(--text-color);
    background: transparent;
  }
}
@keyframes autofill {
  to {
    color: #a1a1a1;
    color: var(--text-color);
    background: transparent;
  }
}
input:-webkit-autofill {
  -webkit-animation-name: autofill;
  animation-name: autofill;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
[type="checkbox"],
[type="radio"] {
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
textarea {
  width: 100%;
  overflow: auto;
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
  vertical-align: top;
}
/* Animated expanding textarea */
.form-textarea {
  height: 100px;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}
.form-textarea:focus {
  height: 180px;
}
fieldset {
  margin: 0 0 10px 0;
  padding: 0.35em 0.5em 0.5em 0;
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
}
fieldset > :last-child {
  margin-bottom: 0;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
optgroup {
  font-weight: bold;
}
select {
  padding: 4px 0;
}
form label {
  color: #ffffff;
}
label[for] {
  cursor: pointer;
}
.page-content input[type="text"],
.page-content input[type="password"],
.page-content input[type="search"] {
  padding: 9px 6px;
  outline: 0;
}
.page-content input {
  max-width: 100%;
}
/* Form -> Drupal form elements */
.form-item {
  margin-bottom: 1em;
}
.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: #f26c4f;
  color: var(--pink);
}
.form-item label {
  display: block;
}
label.option {
  display: inline;
  font-weight: normal;
}
progress {
  vertical-align: baseline;
}
::-webkit-input-placeholder {
  color: #1e222a;
  color: var(--border-color);
}
:-moz-placeholder {
  color: #1e222a;
  color: var(--border-color);
}
::-moz-placeholder {
  color: #1e222a;
  color: var(--border-color);
  opacity: 1;
}
:-ms-input-placeholder {
  color: #1e222a;
  color: var(--border-color);
}

/**
 * List.
 */
 ul,
 ol {
   margin: 0;
   padding: 0 0 0.25em 1em; /* LTR */
 }
 [dir="rtl"] ul,
 [dir="rtl"] ol {
   padding: 0 1em 0.25em 0;
 }
 ol ol,
 ul ul {
   margin: 0;
   padding: 0 0 0.25em 1em; /* LTR */
 }
 [dir="rtl"] ol ol,
 [dir="rtl"] ul ul {
   padding: 0 1em 0.25em 0;
 }
 ul {
   list-style: disc;
 }
 ol {
   list-style: decimal;
 }
 li > ul,
 li > ol {
   margin-bottom: 0;
 }
 [dir="rtl"] ul,
 [dir="rtl"] ol {
   padding: 0 1em 0.25em 0;
 }
 li {
   padding: 4px 0;
 }
 .node-content li {
   padding: 6px 0;
 }

/* Typography -> Definition Lists */
dt {
  color: #ffffff;
  font-weight: 700;
}
dd {
  margin: 0 0 1.2em 0;
}

/**
 * Table.
 */
table {
  width: 100%;
  margin-bottom: 1.2em;
  border-spacing: 0;
  border-collapse: collapse;
}
th,
tr,
td {
  vertical-align: middle;
}
th {
  margin: 0;
  padding: 5px;
  background: #020312;
  background: var(--header-bg);
  color: #fff;
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
  text-align: left;
  text-shadow: none;
}
td {
  padding: 5px;
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
}

/**
 * HTML elements
 */
hr {
  clear: both;
  width: 100%;
  height: 2px;
  background: #1e222a;
  background: var(--border-color);
  border: 0;
  box-sizing: content-box;
  overflow: visible;
}

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

/**
 * Misc.
 */
::-moz-selection {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
  text-shadow: none;
}

/**
 * Font icons used in theme
 */
@font-face {
  font-family: 'zuvi';
  src:  url('../fonts/zuvi.eot');
  src:  url('../fonts/zuvi.eot') format('embedded-opentype'),
    url('../fonts/zuvi.ttf') format('truetype'),
    url('../fonts/zuvi.woff') format('woff'),
    url('../fonts/zuvi.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'zuvi';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-horn:before {
  content: "\e917";
}
.icon-bell:before {
  content: "\e918";
}
.icon-info:before {
  content: "\e919";
}
.icon-share:before {
  content: "\e916";
}
.icon-align-left:before {
  content: "\e915";
}
.icon-document:before {
  content: "\e914";
}
.icon-menu:before {
  content: "\e913";
}
.icon-add_comment:before {
  content: "\e910";
}
.icon-vimeo:before {
  content: "\e912";
}
.icon-comments:before {
  content: "\e911";
}
.icon-exclamation-circle:before {
  content: "\e90e";
}
.icon-exclamation-triangle:before {
  content: "\e90f";
}
.icon-check-square:before {
  content: "\e90d";
}
.icon-hashtag:before {
  content: "\e90c";
}
.icon-calendar:before {
  content: "\e90a";
}
.icon-user:before {
  content: "\e90b";
}
.icon-search:before {
  content: "\e909";
}
.icon-vk:before {
  content: "\e900";
}
.icon-github:before {
  content: "\e901";
}
.icon-whatsapp:before {
  content: "\e902";
}
.icon-telegram:before {
  content: "\e903";
}
.icon-youtube:before {
  content: "\e904";
}
.icon-linkedin:before {
  content: "\e905";
}
.icon-instagram:before {
  content: "\e906";
}
.icon-twitter:before {
  content: "\e907";
}
.icon-facebook:before {
  content: "\e908";
}

/* Layout
----------------------------------- */
/* Layout -> containers */
.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
.container {
  position: relative;
  width: 100%;
  max-width: 575px;
  margin: 0 auto;
  padding: 0 10px;
}
#main-wrapper {
  position: relative;
  width: 100%;
  padding: 2em 0;
}
.flex-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
/* Layout -> Main with different sidebars */
#main {
  position: relative;
  padding: 0;
  margin: 0 0 2em 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
}
.sidebar-left #main,
.sidebar-right #main,
.two-sidebar #main { 
  width: 100%;
  margin: 0 0 2em 0;
  float: none;
}
.no-sidebar #main {
  float: none;
  width: 100%;
}
.footer-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
/* Sidebar */
.sidebar {
  width: 100%;
  margin: 0 0 2em 0;
  float: none;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
}
#sidebar-left, #sidebar-right {
  padding: 0;
}

/* columns */
.row {
  width: 100%;
  clear: both;
  margin-bottom: 1em;
}
.full {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 0;
}
.item {
  margin: 0 0 2em 0;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
}

/* Drupal Core
----------------------------------- */
/* Admin Toolbar */
button.toolbar-item,
button.toolbar-icon {
  background: none;
}

/* Filter Module */
.filter-wrapper {
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
}

/* Drupal system message */
.message,
.message-success,
.message-info,
.message-error,
.message-warning,
.message-announcement,
.message-notice {
  position: relative;
  margin: 1em 0;
  padding: 14px 14px 14px 64px;
  color: #ffffff;
  text-shadow: none;
}
.message p:last-child,
.message-success p:last-child,
.message-info p:last-child,
.message-error p:last-child,
.message-warning p:last-child,
.message-announcement p:last-child,
.message-notice p:last-child {
  margin: 0;
}
.message a,
.message-success a,
.message-info a,
.message-error a,
.message-warning a,
.message-announcement a,
.message-notice a {
  color: #ffffff;
  text-decoration: underline;
}
.message-status,
.message-success {
  background: #89ad32;
}
.message-status::before,
.message-success::before {
  content: "\e90d";
  background-color: #759625;
}
.message-error {
  background: #c94d1c;
}
.message-error::before {
  content: "\e90e";
  background-color: #b3461b;
}
.message-warning {
  background: #cd5a0a;
}
.message-warning::before {
  content: "\e90f";
  background-color: #a44707;
}
.message-info {
  background: #5a82a1;
}
.message-info::before {
  content: "\e919";
  background-color: #3e6584;
}
.message-announcement {
  background: #46c280;
}
.message-announcement::before {
  content: "\e917";
  background-color: #34a268;
}
.message-notice {
  background: #afa82e;
}
.message-notice::before {
  content: "\e918";
  background-color: #9b941b;
}
.message::before,
.message-success::before,
.message-info::before,
.message-error::before,
.message-warning::before,
.message-announcement::before,
.message-notice::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 53px;
  height: 100%;
  font-family: "zuvi";
  font-size: 2em;
  line-height: 53px;
  text-align: center;
}

/* 
 * Blocks
 * Common styling for all blocks regions
 */
 .block-section {
   position: relative;
 }
.block-title {
  position: relative;
  color: #ffffff;
}
.block-section h2.block-title {
  margin: 0 0 1em 0;
  padding: 0 0 0.3em 0;
  font-size: 1.5em;
  font-weight: 400;
}
.block-section .block-title::before,
.block-section .block-title::after,
.homepage-content .block-title::before,
.homepage-content .block-title::after {
  position: absolute;
  content: "";
  left: 0;
  height: 1px;
  background: #f26c4f;
  background: var(--pink-gradient);
}
.block-section .block-title::before,
.homepage-content .block-title::before {
  width: 40px;
  bottom: 0;
}
.block-section .block-title::after,
.homepage-content .block-title::after {
  width: 60px;
  bottom: -4px;
}

/* Search Block region */
.search-box-content .block-title::before,
.search-box-content .block-title::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #f26c4f;
  background: var(--pink-gradient);
  left: 0;
}
.search-box-content .block-title::before {
  bottom: 0;
  -webkit-transform: scaleX(0.1);
  -ms-transform: scaleX(0.1);
  transform: scaleX(0.1);
}
.search-box-content .block-title::after {
  bottom: -4px;
  -webkit-transform: scaleX(0.2);
  -ms-transform: scaleX(0.2);
  transform: scaleX(0.2);
}
/* List style for sidebar and footer block regions */
.sidebar ul,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
.sidebar ul ul,
.footer ul ul,
.sidebar ol ol,
.footer ol ol {
  margin: 0;
  padding: 0 0 0.25em 1em;
}
.sidebar li,
.footer li {
  list-style: none;
  padding: 6px 0;
  border-bottom: 1px solid #1e222a;
  border-bottom: 1px solid var(--border-color);
}
ul ul li:last-child,
ol ol li:last-child {
  border-bottom: none;
}

/* Header
--------------------------------------*/
.header {
  position: relative;
  width: 100%;
  background: #020312;
  background: var(--header-bg);
  margin: 0;
  padding: 0 0 1em 0;
}
.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* header -> homepage header when slider is enabled */
.frontpage .header {
  background: #020312;
  background: var(--header-bg);
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* Header -> site branding. */
.site-brand {
  position: relative;
}
.site-branding {
  position: relative;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
.site-branding img {
  width: auto;
  max-height: 36px;
}
.site-branding  a {
  color: #f26c4f;
  color: var(--pink);
}
.site-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  color: #f26c4f;
  color: var(--pink);
  text-transform: uppercase;
}
.site-slogan {
  font-size: 0.8em;
}
/* Header -> header right */
.header-main-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.primary-menu-wrapper {
  font-weight: 400;
}
.menu-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 0);
  background: transparent;
  z-index: 25;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.active-menu .menu-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  margin: 0;
  transform: translate(0, 0);
  padding: 1em;
  background: var(--content-bg);
  box-shadow: 2px 0 4px #000000;
  z-index: 25;
  overflow-y: scroll;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-menu a {
  text-decoration: none;
}
.main-menu a,
.main-menu a:visited {
  color: #ffffff;
}
.close-mobile-menu {
  display: none;
  width: 34px;
  height: 34px;
  line-height: 28px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 48;
  cursor: pointer;
  text-align: center;
}
.active-menu .close-mobile-menu {
  position: absolute;
  display: block;
  top: 4px;
  right: 4px;
}
.active-menu .main-menu {
  display: block;
}
ul.main-menu {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  z-index: 30;
  list-style: none;
  list-style-type: none;
}
ul.main-menu li {
  position: relative;
  display: inline-block;
  padding: 0;
}
ul.main-menu > li {
  display: inline-block;
  line-height: 1;
  margin-right: 24px;
}
ul.main-menu > li > a {
  display: block;
  margin: 0;
  padding: 10px 1px;
}
ul.main-menu > li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #f26c4f;
  background: var(--pink-gradient);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
ul.main-menu li:hover > a::after {
  width: 100%;
}
ul.main-menu ul.submenu {
  position: absolute;
  display: none;
  top: 36px;
  margin: 0;
  padding: 0;
  z-index: 30;
  opacity: 0;
}
ul.main-menu ul.submenu li {
  display: block;
  width: 160px;
  padding: 1px;
  font-size: 0.9em;
  background: #04051a;
  text-align: left;
}
ul.main-menu ul.submenu li a {
  display: block;
  padding: 10px 5px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
ul.main-menu ul.submenu li a:hover {
  padding: 10px 1px 10px 10px;
}
ul.main-menu ul.submenu li a::after {
  width: 100%;
  height: 1px;
}
li.expanded:hover ul.submenu,
li.collapsed:hover ul.submenu {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
}
.active-menu li.expanded:hover ul.submenu,
.active-menu li.collapsed:hover ul.submenu {
  -webkit-animation: none;
  animation: none;
}
.dropdown-arrow {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
ul.main-menu li.expanded:hover .dropdown-arrow,
ul.main-menu li.collapsed:hover .dropdown-arrow {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* Third level drop down */
ul.main-menu ul.submenu ul.submenu {
  position: absolute;
  display: none;
  top: 0;
  left: 160px;
  margin: 0;
  padding: 0;
  z-index: 30;
  opacity: 0;
}

ul.main-menu ul.submenu ul.submenu li {
  display: block;
  font-size: inherit;
  width: 160px;
  padding: 14px 0;
  background: #04051a;
  text-align: left;
}
.main-menu ul.submenu li.expanded::after {
  content: '+';
  color: #ffffff;
}
ul.submenu li.expanded:hover ul.submenu,
ul.submenu li.collapsed:hover ul.submenu {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
  -moz-animation: slideUp 0.5s forwards;
  -o-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
}
ul.submenu .active-menu li.expanded:hover ul.submenu,
ul.submenu .active-menu li.collapsed:hover ul.submenu {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}

/* Mobile Menu */
.active-menu .menu-wrap ul.main-menu {
  overflow-y: scroll;
}
.active-menu .menu-wrap ul.main-menu > li {
  display: block;
  float: none;
  margin: 0;
}
.active-menu ul.main-menu > li a::after {
  content: none;
}
.active-menu .menu-wrap ul.main-menu a {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}
.active-menu .menu-wrap .dropdown-arrow {
  position: absolute;
  right: 10px;
}
.active-menu ul.main-menu ul.submenu {
  position: relative;
  display: block;
  top: 0;
  opacity: 1;
}
.active-menu ul.main-menu ul.submenu::before,
.active-menu ul.main-menu ul.submenu::after {
  content: "";
  display: table;
  clear: both;
}
.active-menu ul.main-menu ul.submenu li {
  position: relative;
  width: 100%;
  padding: 0 10px;
  background: none;
  text-align: right;
}
.active-menu ul.main-menu ul.submenu li a {
  display: block;
  width: 100%;
}
.active-menu ul.main-menu li a {
  border-bottom: 1px solid #434343;
}
/* Header -> Full page search form */
.full-page-search {
  position: relative;
  margin: 0;
  padding: 0;
}
.search-icon,
.mobile-menu,
.sliding-panel-icon,
.close-animated-sidebar {
  position: relative;
  margin: 0;
  color: #ffffff;
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border-top: 3px solid #f26c4f;
  border-left: 3px solid #f26c4f;
  border-bottom: 3px solid #f4399e;
  border-right: 3px solid #f4399e;
  border-top: 3px solid var(--pink);
  border-left: 3px solid var(--pink);
  border-bottom: 3px solid var(--violet);
  border-right: 3px solid var(--violet);
}
.sliding-panel-icon i {
  line-height: 30px;
}
.search-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #12141c;
  background: var(--content-bg);
  z-index: 50;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.search-box.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.search-box-content {
  position: relative;
  z-index: 60;
  text-align: center;
}
.search-box-content .block {
  width: 100%;
  margin: 0 auto;
}
.search-box-content .block-title {
  color: #fff;
}
.search-box-content form label {
  display: none;
}
.search-box-content input[type="search"] {
  width: 90%;
  margin: 2em 0;
  padding: 0 30px 10px 0;
  font-size: 1.4em;
  background: url("../images/search.svg") top right no-repeat;
  background-size: contain;
  color: #fff;
  border: 0;
  border-bottom: 2px solid #020312;
  border-bottom: 2px solid var(--header-bg);
  border-radius: 0;
  outline: 0;
}
.search-box-content input[type="search"]:focus {
  border: 0;
  border-bottom: 2px solid #f26c4f;
  border-bottom: 2px solid var(--pink);
}
.search-box-content input[type="submit"] {
  padding: 10px 20px;
}
.search-box-close {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 60;
  cursor: crosshair;  
}
.mobile-menu {
  display: block;
  margin-right: 0.5em;
}
/* Header -> Page header */
#page-header {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 2em 0 1em 0;
  /* z-index: 15; */
}
.page-header {
  text-align: center;
}
/* Header -> Page title */
.page-title {
  color: #fff;
}
h1.page-title {
  font-weight: 700;
}
/* Header -> Page header -> Breadcrumb. */
.breadcrumb {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}
.breadcrumb,
.breadcrumb a,
.breadcrumb a:visited {
  color: #f26c4f;
  color: var(--pink);
}
.breadcrumb a:hover {
  color: #f4399e;
  color: var(--violet);
}
ol.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
ol.breadcrumb-items li {
  display: inline-block;
  padding: 0;
  line-height: 1;
}
.breadcrumb-item span {
  margin: 0 10px;
  color: #a1a1a1;
  color: var(--text-color);
}
/* Highlighted Region */
.highlighted {
  width: 100%;
  background: #12141c;
  background: var(--content-bg);
}
.region-highlighted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.highlighted .block {
  position: relative;
  margin: 0;
  padding: 1.5em 0;
}
/* Animated circles */
.header-circle1,
.header-circle2,
.header-circle3,
.header-circle4,
.header-circle5,
.header-circle6 {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--circle-color);
  width: 4em;
  height: 4em;
}
.header-circle1,
.header-circle3 {
  bottom: 2em;
}
.header-circle1 {
  left: 5vw;
  -webkit-animation: circle-size 9s linear infinite alternate;
  animation: circle-size 9s linear infinite alternate;
}
.header-circle3 {
  right: 5vw;
  -webkit-animation: circle-size 6s linear infinite alternate;
  animation: circle-size 6s linear infinite alternate;
}
.header-circle2,
.header-circle4 {
  bottom: 1em;
}
.header-circle2 {
  left: 15vw;
  -webkit-animation: circle-move 9s linear infinite alternate;
  animation: circle-move 9s linear infinite alternate;
}
.header-circle4 {
  right: 25vw;
  -webkit-animation: circle-move 6s linear infinite alternate;
  animation: circle-move 6s linear infinite alternate;
}
.header-circle5,
.header-circle6 {
  bottom: 5em;
}
.header-circle5 {
  -webkit-animation: circle-size 6s linear infinite alternate;
  animation: circle-size 6s linear infinite alternate;
  left: 25vw;
}
.header-circle6 {
  -webkit-animation: circle-size 8s linear infinite alternate;
  animation: circle-size 8s linear infinite alternate;
  right: 15vw;
}
@-webkit-keyframes circle-size {
  to {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@keyframes circle-size {
  to {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@-webkit-keyframes circle-move {
 to {
   bottom: 6em;
 }
}
@keyframes circle-move {
 to {
   bottom: 6em;
 }
}

/* Main
--------------------------------------*/
/* Main -> Content top and content bottom block regions */
.content-top,
.content-bottom {
  width: 100%;
}
.region-content-top,
.region-content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.content-top .block,
.content-bottom .block {
  position: relative;
  margin: 0;
}
.content-top .block {
  padding-bottom: 2em;
}
.content-bottom .block {
  padding: 1.5em 0;
}

/* Main -> Admin Tabs */
ul.page-tabs {
  margin: 0 0 0.6em 0;
  padding: 0 0 1px 0;
  border-bottom: 1px solid #1e222a;
  border-bottom: 1px solid var(--border-color);
  list-style: none;
}
.page-tabs li {
  display: inline-block;
  padding: 0;
}
.page-tabs li a {
  padding: 4px 10px;
  background: #1e222a;
  background: var(--border-color);
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-tabs li.active-page-tab a,
.page-tabs li a:hover {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
}

/* Main -> Node */
.node,
.node-promoted,
.node-sticky,
.node-view-mode-full,
.node-unpublished {
  position: relative;
}

/* Main -> node -> teaser view */
.node-view-mode-teaser {
  position: relative;
  background: #12141c;
  background: var(--content-bg);
  padding: 1em 1em 4em 1em;
  margin-bottom: 4em;
  border-bottom: 1px solid #1e222a;
  border-bottom: 1px solid var(--border-color);
}
.node-view-mode-teaser.node-sticky {
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
}
.node-view-mode-full .node-taxonomy-container {
  margin: 0;
}

/* Main -> node -> Title */
.node-title a {
  position: relative;
  transition: color 0.4s;
}
.node-title a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.node-title a:hover::after {
  transform: scaleX(1);
}
.node-title a:hover {
  color: #ffffff;
}

/* Main -> node -> submitted details */
.node-header {
  position: relative;
  display: block;
  font-size: 0.8em;
  width: 100%;
  margin: 0 0 1em 0;
  padding: 10px 0;
  border-bottom: 1px solid #1e222a;
  border-bottom: 1px solid var(--border-color);
}
.author-picture {
  float: left;
}
.author-picture img {
  width: auto;
  height: 25px;
  margin: 0 6px 0 0;
}
.node-submitted-details {
  margin: 0;
  padding: 0;
  color: #ffffff;
}
.node-submitted-details a,
.node-submitted-details a:visited {
  color: #ffffff;
}
.node-submitted-details a:hover {
  border-bottom: 1px dotted #1e222a;
  border-bottom: 1px dotted var(--border-color);
}
.node-submitted-details i {
  margin: 0 0 0 1em;
  color: #f26c4f;
  color: var(--pink);
}
.node-submitted-details i.user-icon {
  margin-left: 0;
}

/* Main -> node -> taxonomy and links */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1em 0;
  border-top: 1px solid #1e222a;
  border-top: 1px solid var(--border-color);
}
h3.term-title {
  margin: 0;
  font-size: 1.2em;
  line-height: 1;
}
ul.taxonomy-terms {
  margin: 1em 0 0.2em 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
li.taxonomy-term {
  position: relative;
  display: inline-block;
}
li.taxonomy-term a {
  padding: 6px 14px;
  border: 2px solid #1e222a;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
li.taxonomy-term a:hover {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
  border: 2px solid #fff;
}
li.taxonomy-term a::before {
  content: '#';
  margin-right: 5px;
}
.node-links-container ul.links {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0;
}
ul.inline li {
  position: relative;
  display: inline-block;
  padding: 0;
  list-style-type: none;
}
ul.inline li a {
  display: inline-block;
}
.node-links-container li {
  float: left;
  margin-right: 1em;
}

/* read more link */
li.node-readmore {
  float: right;
  margin: 0;
}
li.node-readmore a {
  position: relative;
  color: #fff;
  border: 2px solid #f26c4f;
  border: 2px solid var(--pink);
  border-radius: 50px;
  padding: 0.4em 0.8em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
li.node-readmore a:hover {
  color: #f26c4f;
  color: var(--pink);
  padding: 0.6em 3em 0.6em 1em;
}
li.node-readmore a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  height: 2px;
  width: 0;
  background: #f26c4f;
  background: var(--pink);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
li.node-readmore a:hover::after {
  width: 2em;
}
.comment-comments a::before,
.comment-add a::before {
  font-family: 'zuvi';
  color: #fff;
  padding-right: 6px;
}
.comment-comments a::before{
  content: "\e911";
}
.comment-add a::before {
  content: "\e910";
}

/* Main -> node -> pager */
nav.pager {
  position: relative;
}
.pager ul.pager__items {
  position: relative;
  margin: 0;
  padding: 1em 0;
  list-style: none;
  list-style-type: none;
}
.pager__items {
  clear: both;
  text-align: center;
}
.pager__item {
  display: inline-block;
  padding: 12px 0;
}
.pager__item a {
  padding: 8px 14px;
  color: #fff;
  background: #12141c;
  background: var(--content-bg);
  border-radius: 4px;
}
.pager__item a:hover,
.pager__item.is-active a {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
}

/* Node content (page or articles) */
.field--name-body input[type="text"],
.field--name-body input[type="email"],
.field--name-body input[type="url"],
.field--name-body input[type="password"],
.field--name-body input[type="search"],
.field--name-body textarea {
  display: block;
  margin-bottom: 0.8em;
}

/* Search result page
--------------------------------------*/
.page-content input[type="search"] {
  width: 80%;
}
ol.search-results {
  margin: 1em 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
ol.search-results li {
  margin: 0 0 1em 0;
  padding: 1em;
  background: #12141c;
  background: var(--content-bg);
}
.search-advanced summary {
  margin: 10px 0;
  cursor: pointer;
}
.search-advanced .form-details-wrapper {
  padding: 0.5em 1.4em;
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
}
.search-advanced .form-wrapper {
  padding: 0.5em 1.4em;
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
}

/* Homepage
--------------------------------------*/
/* Homepage -> Homepage content block region */
.region-content-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.homepage-content .block {
  padding: 4em 0;
}
.homepage-content .block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.homepage-content h2.block-title {
  margin: 0 0 1em 0;
  padding: 0 0 0.3em 0;
  font-size: 2.6em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.homepage-content .block-title::before,
.homepage-content .block-title::after {
  left: auto;
}

/* Comments
--------------------------------------*/
 #node-comment {
  position: relative;
  margin: 0;
  border-top: 1px solid #1e222a;
  border-top: 1px solid var(--border-color);
}
#node-comment i {
  color: #f26c4f;
  color: var(--pink);
}
.comments-title i {
  font-size: 1em;
}

/* Comments -> comment form. */
.comment-form-wrap {
  position: relative;
  margin: 2em 0 1em 0;
}
.add-comment-title {
  margin: 0;
}
.add-comment-title i {
  font-size: 1em;
}
.comment-form label {
  display: block;
}

/* Comments -> single comment */
.single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1em;
  padding: 10px 0;
  background: #12141c;
  background: var(--content-bg);
}
.comment-user-picture {
  position: relative;
  padding: 0 4px;
  border-right: 1px solid #1e222a;
  border-right: 1px solid var(--border-color);
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
}
.comment-user-picture img {
  max-width: 100px;
  height: auto;
}
h3.single-comment-title {
  margin: 0.1em 0;
  font-size: 1.2em;
}
.single-comment-meta {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  font-size: 0.9em;
  border-bottom: 1px solid #1e222a;
  border-bottom: 1px solid var(--border-color);
}
.single-comment-content-body {
  position: relative;
  padding: 0 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}
#node-comment .indented {
  margin-left: 4em;
}
.comment-delete,
.comment-edit {
  margin-right: 0.8em;
}
.comment-reply a,
.comment-delete a,
.comment-edit a {
  padding: 4px 16px;
  color: #fff;
  border: 2px solid #1e222a;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.comment-reply a:hover,
.comment-delete a:hover,
.comment-edit a:hover {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
}

/* Sidebar
--------------------------------------*/
/* Sidebar -> Sidebar block */
.sidebar .block {
  margin-bottom: 2em;
  padding: 1.6em;
  background: #12141c;
  background: var(--content-bg);
  border-radius: 4px;
  color: #a1a1a1;
  color: var(--text-color);
}
.sidebar a {
  color: #cfcfcf;
  color: var(--sidebar-link-color);
}
.sidebar a:hover {
  color: #f26c4f;
  color: var(--pink);
}
/* Sidebar -> Form */
.sidebar input[type="text"], 
.sidebar input[type="email"], 
.sidebar input[type="url"], 
.sidebar input[type="password"], 
.sidebar input[type="search"] {
  background: transparent;
  width: 100%;
  border: 1px solid #1e222a;
  border: 1px solid var(--border-color);
  outline: none;
}
.sidebar input[type="text"]:focus, 
.sidebar input[type="email"]:focus, 
.sidebar input[type="url"]:focus, 
.sidebar input[type="password"]:focus, 
.sidebar input[type="search"]:focus {
  border: 1px solid #f26c4f;
  border: 1px solid var(--pink);
}

/* Footer
--------------------------------------*/
.footer,
#footer-bottom-last {
  position: relative;
  width: 100%;
}
#footer-top,
#footer-blocks,
#footer-bottom {
  position: relative;
  width: 100%;
  padding: 2em 0 0 0;
}
#footer-bottom-last {
  padding: 1.2em 0;
}

/* Footer Top */
#footer-top,
#footer-bottom {
  background: #12141c;
  background: var(--content-bg);
}

/* Footer Four Blocks */
#footer-blocks {
  background: #020312;
  background: var(--header-bg);
}
/* Footer Bottom */
.footer-bottom-last {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-bottom-last > * {
  margin-bottom: 2em;
}
/* Footer copyright and social icons */
#footer-bottom-last {
  background: #12141c;
  background: var(--content-bg);
}
.footer .block {
  padding-bottom: 3em;
}
.footer-social-icons {
  margin-left: auto;
}
.footer-container,
.footer-bottom-last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
  padding: 0;
}
.last-flex-item,
.last-footer-block {
  padding-right: 0;
}

/* Footer -> Social icons. */
ul.social-icons {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-icons li {
  position: relative;
  display: inline-block;
  margin: 0 0 0.6em 0;
  padding: 0;
  border: 0;
}
ul.social-icons li a {
  display: inline-block;
  border-top: 3px solid #f26c4f;
  border-left: 3px solid #f26c4f;
  border-bottom: 3px solid #f4399e;
  border-right: 3px solid #f4399e;
  border-top: 3px solid var(--pink);
  border-left: 3px solid var(--pink);
  border-bottom: 3px solid var(--violet);
  border-right: 3px solid var(--violet);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
ul.social-icons li a:hover {
  color: #f26c4f;
  color: var(--pink);
  border: 3px solid #fff;
}
.social-icons i {
  font-size: 1.2em;
}
/* Footer -> Scroll To Top. */
.scrolltop {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  line-height: 42px;
  border-radius: 50%;
  background: #f26c4f;
  background: var(--pink-gradient);
  color: #fff;
  font-size: 20px;
  z-index: 20;
  cursor: pointer;
  text-align: center;
  padding: 4px;
}
.scrolltop-icon {
  border-radius: 50%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.scrolltop:hover .scrolltop-icon {
  background: #0d0f16;
  background: var(--body-bg);
}

/* Text align
-------------------------------------------- */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

/* Block Alignment
-------------------------------------------- */
.center {
  margin: 0 auto;
}
/* Text Size
-------------------------------------------- */
.size-2x {
  font-size: 2em;
}
.size-3x {
  font-size: 3em;
}
.size-4x {
  font-size: 4em;
}
.size-5x {
  font-size: 5em;
}
.size-6x {
  font-size: 6em;
}

/* container width
-------------------------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}
.height-full {
  height: 100%;
}
/* Empty space
-------------------------------------------- */
.empty,
.empty50,
.empty70,
.empty100,
.empty150 {
  position: relative;
  width: 100%;
  clear: both;
}
.empty {
  height: 2em;
}
.empty50 {
  height: 50px;
}
.empty70 {
  height: 70px;
}
.empty100 {
  height: 100px;
}
.empty150 {
  height: 150px;
}

/* Color
-------------------------------------------- */
.theme-color {
  color: #f26c4f;
  color: var(--pink);
}
.white-color {
  color: #ffffff;
}

/* Buttons
-------------------------------------------- */
.round {
  border-radius: 50px;
}
.button-round,
a.button-round {
  position: relative;
  display: inline-block;
  color: var(--pink);
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.4s ease-in-out;;
}
.button-round:hover,
a.button-round:hover {
  color: #ffffff;
  background: var(--pink);
  border: 2px solid #ffffff;
}
.button-border,
a.button-border,
button.button-border {
  position: relative;
  display: inline-block;
  color: #ffffff;
  background: transparent;
  border: 0;
  padding: 0.6em 0.2em 0.6em 0;
}
.button-border:hover,
a.button-border:hover,
button.button-border:hover {
  background: transparent;
}
.button-border::after,
a.button-border::after,
button.button-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.4em;
  height: 2px;
  background: var(--pink);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.button-border:hover::after,
a.button-border:hover::after,
button.button-border:hover::after {
  width: 100%;
}
button.button-link {
  background: transparent;
}
button.button-link,
.button-link {
  position: relative;
  display: inline-block;
  border: 2px solid #f26c4f;
  border: 2px solid var(--pink);
  padding: 0.6em 1em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
button.button-link a,
a.button-link,
.button-link a {
  color: #ffffff;
}
button.button-link:hover,
button.button-link a:hover,
a.button-link:hover,
.button-link a:hover {
  color: #f26c4f;
  color: var(--pink);
  border: 2px solid #ffffff;
}
button.button-link:hover,
.button-link:hover {
  padding: 0.6em 3em 0.6em 1em;
}
button.button-link::after,
.button-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  height: 2px;
  width: 0;
  background: #f26c4f;
  background: var(--pink);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
button.button-link:hover::after,
.button-link:hover::after {
  width: 2em;
}

/* Services
-------------------------------------------- */
.services {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin: 0;
}
.service {
  margin: 0 0 2em 0;
  -webkit-box-flex: 1;
  flex: 1 1 100%;
  max-width: 100%;
  background: #12141c;
  background: var(--content-bg);
  padding: 2em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.service-icon {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.service-icon img {
  width: 50px;
  height: auto;
}
.service-icon i {
  color: #f26c4f;
  color: var(--pink);
  font-size: 3em;
}
.service h3 {
  margin: 0.8em 0;
}
.service .button-link {
  text-transform: uppercase;
}
.service:hover .button-link {
  color: #f26c4f;
  color: var(--pink);
  border: 2px solid #ffffff;
  padding: 0.6em 3em 0.6em 1em;
}
.service:hover .button-link::after {
  width: 2em;
}
.service:hover .service-icon {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
/* Animation
-------------------------------------------- */
/*slide up */
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

/* Clearing
--------------------------------------*/
.clear::before,
.clear::after,
.row::before,
.row::after,
.full::before,
.full::after,
.section::before,
.section::after {
  content: '';
  display: table;
  clear: both;
}
.empty::before,
.empty50::before,
.empty70::before,
.empty100::before,
.empty150::before,
.empty::after,
.empty50::after,
.empty70::after,
.empty100::after,
.empty150::after {
  content: '';
  display: table;
  clear: both;
}