@charset "UTF-8";
/**
 *
 *  Theme Name: Sera - OnePage Multi-Purpose Theme
 *  Theme URI: http://gleesik.ro/
 *  Author: Gleesik
 *  Author URI: http://gleesik.ro/
 *  Description: OnePage Multi-Purpose Theme
 *  Version: 1.0
 *  License: GNU General Public License v2 or later
 *  License URI: http://www.gnu.org/licenses/gpl-2.0.html
 *  Tags: onepage, blog, multiple-columns, left-sidebar, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, post-formats, threaded-comments, translation-ready
 *  Text Domain: sera-onepage
 *
 *  @package gleesik_project
 *
 **/
/**
 * -----------------------------------------------------------------------------
 *
 *  [ Table of contents ]
 *
 *  1. Modules
 *    1.1 Reset Css
 *    1.2 Configuration
 *    1.3 Color Skin
 *        1.3.1 Light Theme
 *        1.3.2 Dark Theme
 *    1.4 Class Tools
 *    1.5 Bootstrap Grid System
 *    1.6 Responsive Embed
 *        1.6.1 16:6 Video Aspect Ratio
 *        1.6.2 4:3 Video Aspect Ratio
 *        1.6.3 Standard Audio
 *    1.7 Animations
 *    1.8 Owl Carousel
 *    1.9 Font 7 Stroke Icons
 *    1.10 Flaticon Social Icons
 *  2. Components
 *    2.1 Forms
 *        2.1.1 Inputs
 *        2.1.2 Textarea
 *        2.1.3 Buttons
 *        2.1.4 Form Group
 *    2.2 Social Icons
 *    2.3 Tags Box
 *    2.4 Buttons
 *  3. Layout
 *    3.1 Global
 *    3.4 Sections
 *        3.4.1 Header
 *            3.4.1.1 Header Responsive
 *            3.4.1.2 Navigation Menu
 *            3.4.1.3 Mobile Navigation
 *            3.4.1.4 Buttons CTA (Call To Actions)
 *         3.4.2 Offer Banner
 *         3.4.3 About
 *         3.4.4 Features
 *         3.4.5 Portfolio
 *             3.4.5.1 Portfolio Menu
 *             3.4.5.2 Portfolio Grid
 *         3.4.6 Parallax Features
 *         3.4.7 Testimonials
 *         3.4.8 Blog
 *         3.4.9 Team
 *         3.4.10 Prices
 *         3.4.11 Contact
 *         3.4.12 Footer
 *    3.5 Sidebar
 * -----------------------------------------------------------------------------
 **/
/**
 *
 *  CSS Reset
 *
 *  @package gleesik_module
 *
 **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/**
 *
 *  Color Skin
 *
 *  @package gleesik_module
 *
  **/
/**
 *
 *  Global Classes Style
 *
 *  @package gleesik_module
 *
 **/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-focus {
  color: #F15C2E;
}

.parent {
  position: relative;
}

.child-center-v {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.child-center-h {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.child-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.circle {
  -webkit-border-radius: 120%;
          border-radius: 120%;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.affix {
  position: fixed;
}

.parallax {
  overflow: hidden !important;
  background: none !important;
}

.parallax .cover {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -999999;
}

.parallax .cover:before {
  content: '';
  background-color: #2d3e50;
  height: 80px;
  display: block;
  width: 100%;
  z-index: 1;
  position: absolute;
}

.parallax .cover img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-height: 100%;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.parallax .cover .content {
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 2;
}

/**
*
*  Bootstrap Grid System
*
*  @package gleesik_module
*
**/
@-ms-viewport {
  width: device-width;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 5%;
  padding-right: 5%;
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.row > [class*='col-'] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.col, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 992px) {
  .col, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 1200px) {
  .col, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

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

/**
 *
 *  Responsive Embed
 *
 *  @package gleesik_module
 *
 **/
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/**
 *
 *  Animations Style
 *
 *  @package gleesik_modules
 *
 **/
@-webkit-keyframes sera-pulse {
  0% {
    -webkit-transform: rotate(45deg) scale(1.1);
            transform: rotate(45deg) scale(1.1);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.4);
            transform: rotate(45deg) scale(1.4);
  }
  100% {
    -webkit-transform: rotate(45deg) scale(1.1);
            transform: rotate(45deg) scale(1.1);
  }
}
@keyframes sera-pulse {
  0% {
    -webkit-transform: rotate(45deg) scale(1.1);
            transform: rotate(45deg) scale(1.1);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.4);
            transform: rotate(45deg) scale(1.4);
  }
  100% {
    -webkit-transform: rotate(45deg) scale(1.1);
            transform: rotate(45deg) scale(1.1);
  }
}

@-webkit-keyframes sera-loader-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sera-loader-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes sera-loader-out {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes sera-loader-out {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes sera-inM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes sera-inM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes sera-outM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes sera-outM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes sera-inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0deg);
            transform: translateY(14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(135deg);
            transform: translateY(14px) rotate(135deg);
  }
}

@keyframes sera-inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0deg);
            transform: translateY(14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(135deg);
            transform: translateY(14px) rotate(135deg);
  }
}

@-webkit-keyframes sera-outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0deg);
            transform: translateY(14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(135deg);
            transform: translateY(14px) rotate(135deg);
  }
}

@keyframes sera-outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0deg);
            transform: translateY(14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(135deg);
            transform: translateY(14px) rotate(135deg);
  }
}

@-webkit-keyframes sera-inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0deg);
            transform: translateY(-14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(135deg);
            transform: translateY(-14px) rotate(135deg);
  }
}

@keyframes sera-inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0deg);
            transform: translateY(-14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(135deg);
            transform: translateY(-14px) rotate(135deg);
  }
}

@-webkit-keyframes sera-outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0deg);
            transform: translateY(-14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(135deg);
            transform: translateY(-14px) rotate(135deg);
  }
}

@keyframes sera-outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0deg);
            transform: translateY(-14px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(135deg);
            transform: translateY(-14px) rotate(135deg);
  }
}

/**
 *
 *  Owl Carousel Style
 *
 *  @package gleesik_modules
 *
 **/
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  /* mouse grab icon */
  /* fix */
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
  /* clearfix */
}

.owl-carousel .owl-wrapper-outer .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-carousel .owl-controls {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin-bottom: 30px;
}

.owl-carousel .owl-controls .owl-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.owl-carousel .owl-controls .owl-pagination .owl-page {
  cursor: pointer;
  margin: 0 10px;
}

.owl-carousel .owl-controls .owl-pagination .owl-page span {
  width: 15px;
  height: 15px;
  background-color: #5c5d5f;
  display: block;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.owl-carousel .owl-controls .owl-pagination .owl-page.active > span {
  background-color: #f15d2f;
}

.owl-carousel .grabbing {
  cursor: move;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.switch {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  outline: none;
}

.switch,
.switch small {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.switch small {
  position: relative;
  font-size: 12px;
  top: 0;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  text-align: center;
  display: block;
  background: transparent !important;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  overflow: hidden;
  color: #000;
}

.switch-default {
  width: 50px;
  height: 30px;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  line-height: 30px;
}

.switch-default small {
  width: 30px;
  height: 30px;
}

.switch-small {
  -webkit-border-radius: 20px;
          border-radius: 20px;
  height: 20px;
  width: 33px;
  line-height: 20px;
}

.switch-small small {
  height: 20px;
  width: 20px;
}

.switch-large {
  -webkit-border-radius: 50px;
          border-radius: 50px;
  height: 50px;
  width: 100px;
  line-height: 50px;
  border: none !important;
}

.switch-large small {
  height: 50px;
  width: 50px;
}

.switch-disabled {
  opacity: 0.5;
}

.switch-large small::after {
  content: '';
  position: absolute;
  background-color: white;
  width: 34px;
  height: 34px;
  -webkit-border-radius: 30px;
          border-radius: 30px;
  left: 8px;
  top: 8px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@font-face {
  font-family: '7-stroke';
  src: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FPe-icon-7-stroke%2FPe-icon-7-stroke.eot%3Fd7yf1v");
  src: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FPe-icon-7-stroke%2FPe-icon-7-stroke.eot%3F%23iefixd7yf1v") format("embedded-opentype"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FPe-icon-7-stroke%2FPe-icon-7-stroke.woff%3Fd7yf1v") format("woff"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FPe-icon-7-stroke%2FPe-icon-7-stroke.ttf%3Fd7yf1v") format("truetype"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FPe-icon-7-stroke%2FPe-icon-7-stroke.svg%3Fd7yf1v%23Pe-icon-7-stroke") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
  font-family: '7-stroke';
  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;
}

.pe-7s-album:before {
  content: "\e6aa";
}

.pe-7s-arc:before {
  content: "\e6ab";
}

.pe-7s-back-2:before {
  content: "\e6ac";
}

.pe-7s-bandaid:before {
  content: "\e6ad";
}

.pe-7s-car:before {
  content: "\e6ae";
}

.pe-7s-diamond:before {
  content: "\e6af";
}

.pe-7s-door-lock:before {
  content: "\e6b0";
}

.pe-7s-eyedropper:before {
  content: "\e6b1";
}

.pe-7s-female:before {
  content: "\e6b2";
}

.pe-7s-gym:before {
  content: "\e6b3";
}

.pe-7s-hammer:before {
  content: "\e6b4";
}

.pe-7s-headphones:before {
  content: "\e6b5";
}

.pe-7s-helm:before {
  content: "\e6b6";
}

.pe-7s-hourglass:before {
  content: "\e6b7";
}

.pe-7s-leaf:before {
  content: "\e6b8";
}

.pe-7s-magic-wand:before {
  content: "\e6b9";
}

.pe-7s-male:before {
  content: "\e6ba";
}

.pe-7s-map-2:before {
  content: "\e6bb";
}

.pe-7s-next-2:before {
  content: "\e6bc";
}

.pe-7s-paint-bucket:before {
  content: "\e6bd";
}

.pe-7s-pendrive:before {
  content: "\e6be";
}

.pe-7s-photo:before {
  content: "\e6bf";
}

.pe-7s-piggy:before {
  content: "\e6c0";
}

.pe-7s-plugin:before {
  content: "\e6c1";
}

.pe-7s-refresh-2:before {
  content: "\e6c2";
}

.pe-7s-rocket:before {
  content: "\e6c3";
}

.pe-7s-settings:before {
  content: "\e6c4";
}

.pe-7s-shield:before {
  content: "\e6c5";
}

.pe-7s-smile:before {
  content: "\e6c6";
}

.pe-7s-usb:before {
  content: "\e6c7";
}

.pe-7s-vector:before {
  content: "\e6c8";
}

.pe-7s-wine:before {
  content: "\e6c9";
}

.pe-7s-cloud-upload:before {
  content: "\e68a";
}

.pe-7s-cash:before {
  content: "\e68c";
}

.pe-7s-close:before {
  content: "\e680";
}

.pe-7s-bluetooth:before {
  content: "\e68d";
}

.pe-7s-cloud-download:before {
  content: "\e68b";
}

.pe-7s-way:before {
  content: "\e68e";
}

.pe-7s-close-circle:before {
  content: "\e681";
}

.pe-7s-id:before {
  content: "\e68f";
}

.pe-7s-angle-up:before {
  content: "\e682";
}

.pe-7s-wristwatch:before {
  content: "\e690";
}

.pe-7s-angle-up-circle:before {
  content: "\e683";
}

.pe-7s-world:before {
  content: "\e691";
}

.pe-7s-angle-right:before {
  content: "\e684";
}

.pe-7s-volume:before {
  content: "\e692";
}

.pe-7s-angle-right-circle:before {
  content: "\e685";
}

.pe-7s-users:before {
  content: "\e693";
}

.pe-7s-angle-left:before {
  content: "\e686";
}

.pe-7s-user-female:before {
  content: "\e694";
}

.pe-7s-angle-left-circle:before {
  content: "\e687";
}

.pe-7s-up-arrow:before {
  content: "\e695";
}

.pe-7s-angle-down:before {
  content: "\e688";
}

.pe-7s-switch:before {
  content: "\e696";
}

.pe-7s-angle-down-circle:before {
  content: "\e689";
}

.pe-7s-scissors:before {
  content: "\e697";
}

.pe-7s-wallet:before {
  content: "\e600";
}

.pe-7s-safe:before {
  content: "\e698";
}

.pe-7s-volume2:before {
  content: "\e601";
}

.pe-7s-volume1:before {
  content: "\e602";
}

.pe-7s-voicemail:before {
  content: "\e603";
}

.pe-7s-video:before {
  content: "\e604";
}

.pe-7s-user:before {
  content: "\e605";
}

.pe-7s-upload:before {
  content: "\e606";
}

.pe-7s-unlock:before {
  content: "\e607";
}

.pe-7s-umbrella:before {
  content: "\e608";
}

.pe-7s-trash:before {
  content: "\e609";
}

.pe-7s-tools:before {
  content: "\e60a";
}

.pe-7s-timer:before {
  content: "\e60b";
}

.pe-7s-ticket:before {
  content: "\e60c";
}

.pe-7s-target:before {
  content: "\e60d";
}

.pe-7s-sun:before {
  content: "\e60e";
}

.pe-7s-study:before {
  content: "\e60f";
}

.pe-7s-stopwatch:before {
  content: "\e610";
}

.pe-7s-star:before {
  content: "\e611";
}

.pe-7s-speaker:before {
  content: "\e612";
}

.pe-7s-signal:before {
  content: "\e613";
}

.pe-7s-shuffle:before {
  content: "\e614";
}

.pe-7s-shopbag:before {
  content: "\e615";
}

.pe-7s-share:before {
  content: "\e616";
}

.pe-7s-server:before {
  content: "\e617";
}

.pe-7s-search:before {
  content: "\e618";
}

.pe-7s-film:before {
  content: "\e6a5";
}

.pe-7s-science:before {
  content: "\e619";
}

.pe-7s-disk:before {
  content: "\e6a6";
}

.pe-7s-ribbon:before {
  content: "\e61a";
}

.pe-7s-repeat:before {
  content: "\e61b";
}

.pe-7s-refresh:before {
  content: "\e61c";
}

.pe-7s-add-user:before {
  content: "\e6a9";
}

.pe-7s-refresh-cloud:before {
  content: "\e61d";
}

.pe-7s-paperclip:before {
  content: "\e69c";
}

.pe-7s-radio:before {
  content: "\e61e";
}

.pe-7s-note2:before {
  content: "\e69d";
}

.pe-7s-print:before {
  content: "\e61f";
}

.pe-7s-network:before {
  content: "\e69e";
}

.pe-7s-prev:before {
  content: "\e620";
}

.pe-7s-mute:before {
  content: "\e69f";
}

.pe-7s-power:before {
  content: "\e621";
}

.pe-7s-medal:before {
  content: "\e6a0";
}

.pe-7s-portfolio:before {
  content: "\e622";
}

.pe-7s-like2:before {
  content: "\e6a1";
}

.pe-7s-plus:before {
  content: "\e623";
}

.pe-7s-left-arrow:before {
  content: "\e6a2";
}

.pe-7s-play:before {
  content: "\e624";
}

.pe-7s-key:before {
  content: "\e6a3";
}

.pe-7s-plane:before {
  content: "\e625";
}

.pe-7s-joy:before {
  content: "\e6a4";
}

.pe-7s-photo-gallery:before {
  content: "\e626";
}

.pe-7s-pin:before {
  content: "\e69b";
}

.pe-7s-phone:before {
  content: "\e627";
}

.pe-7s-plug:before {
  content: "\e69a";
}

.pe-7s-pen:before {
  content: "\e628";
}

.pe-7s-right-arrow:before {
  content: "\e699";
}

.pe-7s-paper-plane:before {
  content: "\e629";
}

.pe-7s-delete-user:before {
  content: "\e6a7";
}

.pe-7s-paint:before {
  content: "\e62a";
}

.pe-7s-bottom-arrow:before {
  content: "\e6a8";
}

.pe-7s-notebook:before {
  content: "\e62b";
}

.pe-7s-note:before {
  content: "\e62c";
}

.pe-7s-next:before {
  content: "\e62d";
}

.pe-7s-news-paper:before {
  content: "\e62e";
}

.pe-7s-musiclist:before {
  content: "\e62f";
}

.pe-7s-music:before {
  content: "\e630";
}

.pe-7s-mouse:before {
  content: "\e631";
}

.pe-7s-more:before {
  content: "\e632";
}

.pe-7s-moon:before {
  content: "\e633";
}

.pe-7s-monitor:before {
  content: "\e634";
}

.pe-7s-micro:before {
  content: "\e635";
}

.pe-7s-menu:before {
  content: "\e636";
}

.pe-7s-map:before {
  content: "\e637";
}

.pe-7s-map-marker:before {
  content: "\e638";
}

.pe-7s-mail:before {
  content: "\e639";
}

.pe-7s-mail-open:before {
  content: "\e63a";
}

.pe-7s-mail-open-file:before {
  content: "\e63b";
}

.pe-7s-magnet:before {
  content: "\e63c";
}

.pe-7s-loop:before {
  content: "\e63d";
}

.pe-7s-look:before {
  content: "\e63e";
}

.pe-7s-lock:before {
  content: "\e63f";
}

.pe-7s-lintern:before {
  content: "\e640";
}

.pe-7s-link:before {
  content: "\e641";
}

.pe-7s-like:before {
  content: "\e642";
}

.pe-7s-light:before {
  content: "\e643";
}

.pe-7s-less:before {
  content: "\e644";
}

.pe-7s-keypad:before {
  content: "\e645";
}

.pe-7s-junk:before {
  content: "\e646";
}

.pe-7s-info:before {
  content: "\e647";
}

.pe-7s-home:before {
  content: "\e648";
}

.pe-7s-help2:before {
  content: "\e649";
}

.pe-7s-help1:before {
  content: "\e64a";
}

.pe-7s-graph3:before {
  content: "\e64b";
}

.pe-7s-graph2:before {
  content: "\e64c";
}

.pe-7s-graph1:before {
  content: "\e64d";
}

.pe-7s-graph:before {
  content: "\e64e";
}

.pe-7s-global:before {
  content: "\e64f";
}

.pe-7s-gleam:before {
  content: "\e650";
}

.pe-7s-glasses:before {
  content: "\e651";
}

.pe-7s-gift:before {
  content: "\e652";
}

.pe-7s-folder:before {
  content: "\e653";
}

.pe-7s-flag:before {
  content: "\e654";
}

.pe-7s-filter:before {
  content: "\e655";
}

.pe-7s-file:before {
  content: "\e656";
}

.pe-7s-expand1:before {
  content: "\e657";
}

.pe-7s-exapnd2:before {
  content: "\e658";
}

.pe-7s-edit:before {
  content: "\e659";
}

.pe-7s-drop:before {
  content: "\e65a";
}

.pe-7s-drawer:before {
  content: "\e65b";
}

.pe-7s-download:before {
  content: "\e65c";
}

.pe-7s-display2:before {
  content: "\e65d";
}

.pe-7s-display1:before {
  content: "\e65e";
}

.pe-7s-diskette:before {
  content: "\e65f";
}

.pe-7s-date:before {
  content: "\e660";
}

.pe-7s-cup:before {
  content: "\e661";
}

.pe-7s-culture:before {
  content: "\e662";
}

.pe-7s-crop:before {
  content: "\e663";
}

.pe-7s-credit:before {
  content: "\e664";
}

.pe-7s-copy-file:before {
  content: "\e665";
}

.pe-7s-config:before {
  content: "\e666";
}

.pe-7s-compass:before {
  content: "\e667";
}

.pe-7s-comment:before {
  content: "\e668";
}

.pe-7s-coffee:before {
  content: "\e669";
}

.pe-7s-cloud:before {
  content: "\e66a";
}

.pe-7s-clock:before {
  content: "\e66b";
}

.pe-7s-check:before {
  content: "\e66c";
}

.pe-7s-chat:before {
  content: "\e66d";
}

.pe-7s-cart:before {
  content: "\e66e";
}

.pe-7s-camera:before {
  content: "\e66f";
}

.pe-7s-call:before {
  content: "\e670";
}

.pe-7s-calculator:before {
  content: "\e671";
}

.pe-7s-browser:before {
  content: "\e672";
}

.pe-7s-box2:before {
  content: "\e673";
}

.pe-7s-box1:before {
  content: "\e674";
}

.pe-7s-bookmarks:before {
  content: "\e675";
}

.pe-7s-bicycle:before {
  content: "\e676";
}

.pe-7s-bell:before {
  content: "\e677";
}

.pe-7s-battery:before {
  content: "\e678";
}

.pe-7s-ball:before {
  content: "\e679";
}

.pe-7s-back:before {
  content: "\e67a";
}

.pe-7s-attention:before {
  content: "\e67b";
}

.pe-7s-anchor:before {
  content: "\e67c";
}

.pe-7s-albums:before {
  content: "\e67d";
}

.pe-7s-alarm:before {
  content: "\e67e";
}

.pe-7s-airplay:before {
  content: "\e67f";
}

.pe-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.pe-2x {
  font-size: 2em;
}

.pe-3x {
  font-size: 3em;
}

.pe-4x {
  font-size: 4em;
}

.pe-5x {
  font-size: 5em;
}

.pe-fw {
  width: 1.2857142857142858em;
  text-align: center;
}

.pe-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}

.pe-ul > li {
  position: relative;
}

.pe-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}

.pe-li.pe-lg {
  left: -1.8571428571428572em;
}

.pe-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  -webkit-border-radius: .1em;
          border-radius: .1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.pe.pull-left {
  margin-right: .3em;
}

.pe.pull-right {
  margin-left: .3em;
}

.pe-spin {
  -webkit-animation: spin 2s infinite linear;
          animation: spin 2s infinite linear;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.pe-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.pe-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pe-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}

.pe-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.pe-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}

.pe-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.pe-stack-1x,
.pe-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.pe-stack-1x {
  line-height: inherit;
}

.pe-stack-2x {
  font-size: 2em;
}

.pe-inverse {
  color: #ffffff;
}

/* Custom classes / mods - PIXEDEN */
.pe-va {
  vertical-align: middle;
}

.pe-border {
  border: solid 0.08em #eaeaea;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
}

/*
Flaticon icon font: Flaticon
Creation date: 06/02/2020 15:13
*/
@font-face {
  font-family: "Flaticon";
  src: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFlaticon%2FFlaticon.eot%3F%23v2");
  src: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFlaticon%2FFlaticon.eot%3F%23v2_iefix") format("embedded-opentype"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFlaticon%2FFlaticon.woff2%23v2_") format("woff2"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFlaticon%2FFlaticon.woff%23v2_") format("woff"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFlaticon%2FFlaticon.ttf%23v2_") format("truetype"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFlaticon%2FFlaticon.svg%23v2_Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFlaticon%2FFlaticon.svg%23v2_Flaticon") format("svg");
  }
}

.fi:before {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-facebook-c:before {
  content: "\f106";
  color: #1877f2;
}

.flaticon-linkedin-c:before {
  content: "\f101";
  color: #007bb5;
}

.flaticon-telegram-c:before {
  content: "\f100";
  color: #0088cc;
}

.flaticon-twitter-c:before {
  content: "\f103";
  color: #1da1f2;
}

.flaticon-whatsapp-c:before {
  content: "\f104";
  color: #25d366;
}

.flaticon-telegram:before {
  content: "\f100";
}

.flaticon-linkedin:before {
  content: "\f101";
}

.flaticon-github:before {
  content: "\f102";
}

.flaticon-twitter:before {
  content: "\f103";
}

.flaticon-whatsapp:before {
  content: "\f104";
}

.flaticon-youtube:before {
  content: "\f105";
}

.flaticon-facebook:before {
  content: "\f106";
}

.flaticon-attach:before {
  content: "\f107";
}

/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFontawesome%2Ffa-brands-400.eot");
  src: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFontawesome%2Ffa-brands-400.eot%3F%23iefix") format("embedded-opentype"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFontawesome%2Ffa-brands-400.woff2") format("woff2"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFontawesome%2Ffa-brands-400.woff") format("woff"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFontawesome%2Ffa-brands-400.ttf") format("truetype"), url("/?originalUrl=https%3A%2F%2Fdiode.io%2Ffonts%2FFontawesome%2Ffa-brands-400.svg%23fontawesome") format("svg");
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa-youtube:before {
  content: "";
}

.fa-telegram-plane:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fab:before {
  display: inline-block;
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/**
 *
 *  Forms & Inputs Style
 *
 *  @package gleesik_components
 *
 **/
form {
  display: block;
  position: relative;
  width: 100%;
}

input, textarea, button {
  line-height: 1;
  letter-spacing: 0.08rem;
  display: inline-block;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 1rem;
  font-family: "Titillium Web";
  padding: 15px;
  outline: 0;
  color: #5e5e5e;
  border: 1px solid #bdc3c7;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, button::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bdc3c7;
  -webkit-transition: color 300ms ease-in-out;
  -o-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

input::-moz-placeholder, textarea::-moz-placeholder, button::-moz-placeholder {
  /* Firefox 19+ */
  color: #bdc3c7;
  -webkit-transition: color 300ms ease-in-out;
  -o-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder, button:-ms-input-placeholder {
  /* IE 10+ */
  color: #bdc3c7;
  -webkit-transition: color 300ms ease-in-out;
  -o-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

input:-moz-placeholder, textarea:-moz-placeholder, button:-moz-placeholder {
  /* Firefox 18- */
  color: #bdc3c7;
  -webkit-transition: color 300ms ease-in-out;
  -o-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

input:hover, input:active, textarea:hover, textarea:active, button:hover, button:active {
  color: #5d5d5d;
}

input:hover::-webkit-input-placeholder, input:active::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder, textarea:active::-webkit-input-placeholder, button:hover::-webkit-input-placeholder, button:active::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #5d5d5d;
}

input:hover::-moz-placeholder, input:active::-moz-placeholder, textarea:hover::-moz-placeholder, textarea:active::-moz-placeholder, button:hover::-moz-placeholder, button:active::-moz-placeholder {
  /* Firefox 19+ */
  color: #5d5d5d;
}

input:hover:-ms-input-placeholder, input:active:-ms-input-placeholder, textarea:hover:-ms-input-placeholder, textarea:active:-ms-input-placeholder, button:hover:-ms-input-placeholder, button:active:-ms-input-placeholder {
  /* IE 10+ */
  color: #5d5d5d;
}

input:hover:-moz-placeholder, input:active:-moz-placeholder, textarea:hover:-moz-placeholder, textarea:active:-moz-placeholder, button:hover:-moz-placeholder, button:active:-moz-placeholder {
  /* Firefox 18- */
  color: #5d5d5d;
}

/**
 *
 *  Social Icons Style
 *
 *  @package gleesik_components
 *
 **/
.social-icons {
  display: inline-block;
  font-size: 1.75rem;
  margin: 0.5rem 0;
}

.social-icons ul.icons {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.social-icons ul.icons.global-text-color-icons li a {
  color: #5e5e5e;
}

.social-icons ul.icons.global-text-color-icons li a:hover {
  color: #F15C2E;
}

.social-icons ul.icons li {
  margin-right: 10px;
}

.social-icons ul.icons li:last-child {
  margin-right: 0;
}

/**
 *
 *  Tags Box Style
 *
 *  @package gleesik_components
 *
 **/
ul.tag-cloud-box {
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

ul.tag-cloud-box li {
  display: inline-block;
  margin: 0px 1px;
}

ul.tag-cloud-box li a {
  display: block;
  padding: 8px 12px;
  border: 1px solid #F15C2E;
  line-height: 0.8em;
  height: auto !important;
}

ul.tag-cloud-box li a:hover {
  color: #fff;
  border-color: #F15C2E;
  background: #F15C2E;
}

/**
 *
 *  Buttons Style
 *
 *  @package gleesik_components
 *
 **/
.button, button {
  background-color: #f15d2f;
  color: #fff;
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  border: 2px solid #f15d2f;
}

@media (max-width: 768px) {
  .button, button {
    font-size: 16px;
  }
}

.button.button-focus, button.button-focus {
  background-color: #ed4423;
}

.button:hover, .button:active, button:hover, button:active {
  background-color: #ed4423;
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 5px #f15d2f);
          filter: drop-shadow(0px 0px 5px #f15d2f);
}

.button--outline, button--outline {
  background-color: #fff;
  border: 2px solid #f15d2f;
  color: #2d3e50;
}

.link {
  font-size: 18px;
  text-transform: uppercase;
  color: #f15d2f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: 700;
}

.link i {
  font-weight: 700;
  font-size: 1.6em;
}

.link:hover {
  color: #f15d2f;
  -webkit-filter: drop-shadow(0px 0px 10px #f15d2f);
          filter: drop-shadow(0px 0px 10px #f15d2f);
}

.link--white {
  color: #fff;
}

.link--arrow {
  position: relative;
  display: inline-block;
}

.link--arrow::after {
  content: '\e684';
  position: absolute;
  font-weight: 700;
  font-size: 1.6em;
  font-family: '7-stroke';
  bottom: -7px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .link {
    font-size: 16px;
  }
  .link::after {
    bottom: -8px;
  }
}

.button-cta {
  display: inline-block;
  max-width: 100%;
  color: #fff;
  border: 2px solid #fff;
  padding: 1em 1.5em;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.button-cta.button-focus {
  border-color: #F15C2E;
  background-color: #F15C2E;
}

.button-cta.button-blue {
  color: #F15C2E;
  border-color: #F15C2E;
}

.button-cta:hover, .button-cta:active {
  color: #fff;
  border-color: #f7a78e;
  background-color: #f7a78e;
}

button.button-block,
.button.button-block,
.button-cta.button-block {
  display: block;
  width: 100%;
}

/**
 *
 *  Global Style
 *
 *  @package gleesik_layout
 *
 **/
body {
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.08rem;
  color: #5e5e5e;
  background-color: #fff;
}

body sup {
  font-size: 40%;
  font-weight: bold;
  vertical-align: text-top;
}

body .site-header .container:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: transparent;
  -webkit-transition: background-color 300ms ease-in-out;
  -o-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
  z-index: 99;
}

body .noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body.no-scroll {
  height: 100vh;
  overflow-y: hidden;
}

body.no-scroll .site-header > .container:before {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

section.blog-section h1, section.blog-section h2, section.blog-section h3, section.blog-section h4, section.blog-section h5, section.docs-section h1, section.docs-section h2, section.docs-section h3, section.docs-section h4, section.docs-section h5 {
  color: #2d3e50;
  font-weight: normal;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

.thin {
  font-weight: lighter;
}

h1 {
  font-size: 3.75em;
}

h2 {
  font-size: 2.1875em;
}

h3 {
  font-size: 1.25em;
}

h4 {
  font-size: 1.15em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.85em;
}

p {
  line-height: 1.5;
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

hr {
  clear: both;
  border: none;
  width: 100%;
  height: 1px;
  background-color: #bdc3c7;
}

hr.separator {
  width: 60%;
}

hr.small {
  width: 40px;
  height: 2px;
  background-color: #F15C2E;
}

hr.medium {
  width: 70px;
  height: 1px;
  background-color: #F15C2E;
}

hr.normal {
  position: relative;
  border: none;
  width: 100px;
  height: 4px;
  background-color: #2d3e50;
}

hr.normal:after {
  display: block;
  position: absolute;
  content: "";
  width: 50%;
  height: 4px;
  background: #F15C2E;
  top: 0;
  right: 0;
}

a {
  color: #F15C2E;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a:hover, a:active {
  color: #f7a78e;
}

img {
  display: block;
  position: relative;
  max-width: 100%;
  height: auto;
}

sup a {
  text-decoration: underline;
}

div.footnotes ol {
  margin-left: 1em;
  padding-top: 10px;
  list-style: decimal;
}

div.footnotes:before {
  content: "";
  position: absolute;
  height: 10px;
  border-top: 1px solid black;
  width: 30%;
}

blockquote {
  display: block;
  position: relative;
  width: auto;
  font-size: 1.5em;
  font-weight: lighter;
  line-height: 1.35;
  padding: 0 10%;
  margin: 1.2em auto 1em auto;
  z-index: 1;
}

blockquote small {
  display: block;
  font-size: 1.6rem;
  font-style: italic;
  float: right;
}

blockquote:before {
  content: '\0022';
  position: absolute;
  font-size: 7em;
  font-weight: 900;
  opacity: 0.1;
  top: -6rem;
  left: 5%;
  z-index: -1;
}

@media (max-width: 450px) {
  blockquote small {
    font-size: 1.2rem;
  }
  blockquote:before {
    top: -3rem;
    left: 3%;
  }
}

.go-to-top-button {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 1px solid #F15C2E;
  background: rgba(244, 248, 249, 0.2);
  -webkit-transform: translate3d(0, -webkit-calc(130% + 50px), 0);
          transform: translate3d(0, calc(130% + 50px), 0);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 9999;
}

.go-to-top-button i {
  font-size: 3.2rem;
}

.go-to-top-button:hover {
  color: #fff;
  background: #F15C2E;
}

.go-to-top-button.active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/**
 *
 *  Header Style
 *
 *  @package gleesik_layout
 *
 **/
.no-scroll header.site-header .site-navigation-bar {
  overflow: visible;
}

body > section:first-of-type {
  margin-top: 90px;
}

header.site-header {
  position: fixed;
  width: 100%;
  background-color: #2d3e50;
  z-index: 1;
  top: 0;
}

header.site-header .toggle-submenu {
  display: none;
}

header.site-header .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999999999999;
}

header.site-header .overlay iframe {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header.site-header.blog-header {
  height: 80px;
}

header.site-header.blog-header .parallax-wrapper {
  height: 600px;
}

header.site-header.blog-header .container {
  height: 600px;
}

header.site-header.blog-header .header-banner {
  height: -webkit-calc(600px - 250px);
  height: calc(600px - 250px);
}

header.site-header .parallax-wrapper {
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  top: 0;
  left: 0;
}

header.site-header > .container {
  pointer-events: none;
  max-height: 1080px;
  height: 90px;
}

header.site-header > .container .heading-content {
  pointer-events: all;
}

header.site-header > .container .heading-content .heading-title h2 {
  margin: auto;
  max-width: 1080px;
}

header.site-header > .container .heading-content .tutorial {
  width: -webkit-calc(100vh / 900 * 560);
  width: calc(100vh / 900 * 560);
  height: -webkit-calc(100vh / 900 * 315);
  height: calc(100vh / 900 * 315);
}

header.site-header .site-navigation-bar {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  height: 90px;
  z-index: 2;
  font-weight: bold;
}

header.site-header .site-navigation-bar .logo img {
  width: 120px;
  max-width: initial;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 25px;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu i.fi {
  font-size: 1.8em;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li {
  padding: 0 10px;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li.current-menu-item > .nav-link {
  color: #f15d2f;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li.subnav > .nav-link {
  overflow: hidden;
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li.subnav:hover > .subnav-content {
  display: block;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li > .subnav-content {
  display: none;
  position: fixed;
  left: 0;
  top: 90px;
  background-color: #F1F3F6;
  width: 100%;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #2d3e50;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li > .subnav-content .container {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li > .subnav-content .container a {
  color: #2d3e50;
  cursor: pointer;
  padding-top: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 400;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li > .subnav-content .container a:hover::before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #f15d2f;
  bottom: 0;
  width: 100%;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li > .subnav-content .container a.current-menu-item {
  color: #f15d2f;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li > .subnav-content .container > .current-menu-item > a::before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #f15c2e;
  bottom: 0;
  width: 100%;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li:last-child {
  margin-right: 0;
  padding: 0;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li.current-menu-item .nav-link {
  color: #F15C2E;
  position: relative;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li.current-menu-item .nav-link.button {
  color: #fff;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li .nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding: 10px 0;
  font-size: 20px;
  height: 100%;
  text-transform: initial;
  height: 90px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li .nav-link:hover, header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li .nav-link:active {
  color: #F15C2E;
}

header.site-header .site-navigation-bar .navigation-bar nav.nav-menu ul li .nav-link i {
  font-size: 1.5rem;
}

header.site-header .frag {
  color: #F15C2E;
}

header.site-header .header-banner {
  margin-top: 2em;
  height: -webkit-calc(100vh - 250px);
  height: calc(100vh - 250px);
  max-height: -webkit-calc(1080px - 250px);
  max-height: calc(1080px - 250px);
  z-index: 2;
  color: #fff;
}

header.site-header .header-banner .heading-content {
  width: 100%;
  text-transform: uppercase;
}

header.site-header .header-banner .heading-content .buttons-header {
  margin-top: 2em;
}

header.site-header .header-banner .heading-content .buttons-header .button-cta {
  margin-top: 0.5em;
  width: 100%;
}

header.site-header .header-banner .heading-content .buttons-header div {
  padding-left: 13px;
  padding-right: 13px;
}

header.site-header .arrow-down-section {
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: 0;
  z-index: 3;
}

header.site-header .arrow-down-section .arrow-down {
  display: block;
  position: relative;
  font-size: 4rem;
  line-height: 4rem;
  color: #fff;
  width: 64px;
  height: 64px;
}

header.site-header .arrow-down-section .arrow-down:before, header.site-header .arrow-down-section .arrow-down:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

header.site-header .arrow-down-section .arrow-down:before {
  border: 1px solid #F15C2E;
  -webkit-animation: sera-pulse 2.5s ease-in-out infinite alternate;
          animation: sera-pulse 2.5s ease-in-out infinite alternate;
}

header.site-header .arrow-down-section .arrow-down:after {
  -webkit-transition: background-color 300ms ease-in-out;
  -o-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.2);
}

header.site-header .arrow-down-section .arrow-down:hover i {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}

header.site-header .arrow-down-section .arrow-down:hover:after {
  background-color: rgba(255, 255, 255, 0.3);
}

header.site-header .arrow-down-section .arrow-down i {
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  -o-transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

header.site-header .arrow-down-section .arrow-down i:before {
  width: 100%;
  height: 100%;
}

/**
 *
 *  Responsive Header Style + Navigation Mobile Menu
 *
 *  @package gleesik_layout
 *
 **/
.row > .toggle-menu {
  display: none;
}

@media (max-width: 992px) {
  body > section:first-of-type {
    margin-top: 70px;
  }
  header.site-header {
    width: 100%;
    overflow: visible !important;
    z-index: 99999;
  }
  header.site-header .header-banner {
    top: 50px;
    height: -webkit-calc(100vh - 190px);
    height: calc(100vh - 190px);
    max-height: -webkit-calc(1080px - 190px);
    max-height: calc(1080px - 190px);
  }
  header.site-header .header-banner .heading-content {
    padding: 0 40px;
  }
  header.site-header .cover::before {
    height: 50px;
  }
  header.site-header.blog-header {
    height: 50px;
  }
  header.site-header.blog-header .parallax-wrapper {
    visibility: hidden;
  }
  header.site-header > .container {
    height: 70px;
  }
  header.site-header > .container::before {
    opacity: 0;
  }
  header.site-header > .container .site-navigation-bar {
    height: 70px;
    z-index: 99999999999998;
  }
  header.site-header > .container .site-navigation-bar .logo img {
    width: 100px;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh - 50px);
    height: calc(100vh - 50px);
    font-weight: lighter;
    overflow-y: scroll;
    opacity: 1;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    background: #2d3e50;
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
    transition: -webkit-transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
    z-index: 99999999999999;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu {
    width: 100%;
    padding: 30px 0;
    font-size: 1.3rem;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu {
    position: relative;
    display: block;
    padding: 0px 48px;
    list-style: none;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li {
    width: 100%;
    margin-bottom: 5px;
    opacity: 0;
    -webkit-transform: scale(1.15) translateY(-30px);
        -ms-transform: scale(1.15) translateY(-30px);
            transform: scale(1.15) translateY(-30px);
    -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -o-transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    position: relative;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 1px;
    background-color: #f15d2f;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:first-child::before {
    content: none;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li > .nav-link {
    height: 70px !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li.has-target-nav {
    display: none;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li.has-button-nav {
    display: none;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li > .subnav-content {
    display: none !important;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(1) {
    -webkit-transition-delay: 0.49s;
         -o-transition-delay: 0.49s;
            transition-delay: 0.49s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(2) {
    -webkit-transition-delay: 0.42s;
         -o-transition-delay: 0.42s;
            transition-delay: 0.42s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(3) {
    -webkit-transition-delay: 0.35s;
         -o-transition-delay: 0.35s;
            transition-delay: 0.35s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(4) {
    -webkit-transition-delay: 0.28s;
         -o-transition-delay: 0.28s;
            transition-delay: 0.28s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(5) {
    -webkit-transition-delay: 0.21s;
         -o-transition-delay: 0.21s;
            transition-delay: 0.21s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(6) {
    -webkit-transition-delay: 0.14s;
         -o-transition-delay: 0.14s;
            transition-delay: 0.14s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(7) {
    -webkit-transition-delay: 0.07s;
         -o-transition-delay: 0.07s;
            transition-delay: 0.07s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(8) {
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(9) {
    -webkit-transition-delay: -0.07s;
         -o-transition-delay: -0.07s;
            transition-delay: -0.07s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(10) {
    -webkit-transition-delay: -0.14s;
         -o-transition-delay: -0.14s;
            transition-delay: -0.14s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(11) {
    -webkit-transition-delay: -0.21s;
         -o-transition-delay: -0.21s;
            transition-delay: -0.21s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li:nth-child(12) {
    -webkit-transition-delay: -0.28s;
         -o-transition-delay: -0.28s;
            transition-delay: -0.28s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li.current-menu-item a:before {
    content: '';
    display: none;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar .nav-menu ul.menu li .nav-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    width: 100%;
    padding: 15px 0 20px 0;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 300ms;
         -o-transition-duration: 300ms;
            transition-duration: 300ms;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li {
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    opacity: 1;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(1) {
    -webkit-transition-delay: 0.27s;
         -o-transition-delay: 0.27s;
            transition-delay: 0.27s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(2) {
    -webkit-transition-delay: 0.34s;
         -o-transition-delay: 0.34s;
            transition-delay: 0.34s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(3) {
    -webkit-transition-delay: 0.41s;
         -o-transition-delay: 0.41s;
            transition-delay: 0.41s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(4) {
    -webkit-transition-delay: 0.48s;
         -o-transition-delay: 0.48s;
            transition-delay: 0.48s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(5) {
    -webkit-transition-delay: 0.55s;
         -o-transition-delay: 0.55s;
            transition-delay: 0.55s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(6) {
    -webkit-transition-delay: 0.62s;
         -o-transition-delay: 0.62s;
            transition-delay: 0.62s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(7) {
    -webkit-transition-delay: 0.69s;
         -o-transition-delay: 0.69s;
            transition-delay: 0.69s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(8) {
    -webkit-transition-delay: 0.76s;
         -o-transition-delay: 0.76s;
            transition-delay: 0.76s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(9) {
    -webkit-transition-delay: 0.83s;
         -o-transition-delay: 0.83s;
            transition-delay: 0.83s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(10) {
    -webkit-transition-delay: 0.9s;
         -o-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(11) {
    -webkit-transition-delay: 0.97s;
         -o-transition-delay: 0.97s;
            transition-delay: 0.97s;
  }
  header.site-header > .container .site-navigation-bar .navigation-bar.active .nav-menu ul.menu li:nth-child(12) {
    -webkit-transition-delay: 1.04s;
         -o-transition-delay: 1.04s;
            transition-delay: 1.04s;
  }
  header.site-header > .container .site-navigation-bar .toggle-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3rem;
    color: #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header.site-header > .container .site-navigation-bar .toggle-menu__actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.site-header > .container .site-navigation-bar .toggle-menu__actions .nav-link--shortcut {
    color: #fff;
    font-size: 29px;
    margin-right: 30px;
  }
}

@media (max-width: 992px) and (max-width: 410px) {
  header.site-header > .container .site-navigation-bar .toggle-menu__actions .nav-link--shortcut {
    display: none;
  }
}

@media (max-width: 992px) {
  header.site-header > .container .site-navigation-bar .toggle-menu__actions .button {
    padding: 12px 5px;
    margin-right: 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) and (max-width: 320px) {
  header.site-header > .container .site-navigation-bar .toggle-menu__actions .button {
    display: none;
  }
}

@media (max-width: 992px) {
  header.site-header > .container .site-navigation-bar .toggle-menu .navTrigger {
    cursor: pointer;
    width: 36px;
    height: 32px;
    position: relative;
  }
  header.site-header > .container .site-navigation-bar .toggle-menu .navTrigger i {
    background-color: #fff;
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    -webkit-border-radius: 1px;
            border-radius: 1px;
  }
  header.site-header > .container .site-navigation-bar .toggle-menu .navTrigger i:nth-child(1) {
    margin-top: 9px;
    width: 36px;
  }
  header.site-header > .container .site-navigation-bar .toggle-menu .navTrigger i:nth-child(2) {
    margin: 11px 0 0 18px;
    width: 18px;
  }
  header.site-header > .toggle-submenu {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: -100vw;
    z-index: 99999999999998;
    background-color: #F1F3F6;
    -webkit-transition: left 0.2s ease-in-out;
    -o-transition: left 0.2s ease-in-out;
    transition: left 0.2s ease-in-out;
  }
  header.site-header > .toggle-submenu.show {
    left: 0;
  }
  header.site-header > .toggle-submenu .sub-header > .container {
    height: 70px;
    background-color: #2d3e50;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-back {
    width: 50px;
    margin-left: -20px;
    cursor: pointer;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-back:hover {
    color: #f15d2f;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-back i {
    font-weight: bolder;
    font-size: 3rem;
  }
  header.site-header > .toggle-submenu .sub-header > .container .sub-header__title {
    font-size: 29px;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-close {
    cursor: pointer;
    width: 36px;
    height: 32px;
    position: relative;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-close i {
    background-color: #fff;
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    -webkit-border-radius: 1px;
            border-radius: 1px;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-close i:nth-child(1) {
    margin-top: 9px;
    width: 36px;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-close i:nth-child(2) {
    margin: 11px 0 0 18px;
    width: 18px;
  }
  header.site-header > .toggle-submenu .sub-header > .container .button-close:hover i {
    background-color: #f15d2f;
  }
  header.site-header > .toggle-submenu .sub-menu {
    padding: 40px 0;
  }
  header.site-header > .toggle-submenu .sub-menu .subnav {
    margin-bottom: 10px;
  }
  header.site-header > .toggle-submenu .sub-menu .subnav-link {
    line-height: 2;
    font-size: 18px;
    position: relative;
    color: #2d3e50;
    font-weight: 700;
    cursor: pointer;
  }
  header.site-header > .toggle-submenu .sub-menu .subnav-link::after {
    content: '\e684';
    position: absolute;
    font-weight: 700;
    font-size: 1.6em;
    font-family: '7-stroke';
    top: -webkit-calc(50% - 14px);
    top: calc(50% - 14px);
    line-height: 30px;
  }
  header.site-header > .toggle-submenu .sub-menu .subnav-link:hover, header.site-header > .toggle-submenu .sub-menu .subnav-link.current-menu-item {
    color: #f15d2f;
  }
}

@media (max-width: 992px) and (min-width: 550px) {
  header.site-header .header-banner {
    margin-top: 0em;
  }
  header.site-header .header-banner .heading-title h1 {
    font-size: 3rem;
  }
  header.site-header .header-banner .heading-title h2 {
    font-size: 1.75rem;
  }
  header.site-header .site-navigation-bar .navigation-bar {
    left: 60%;
    width: 40%;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
    transition: -webkit-transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  }
  header.site-header .site-navigation-bar .navigation-bar.active {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
}

@media (max-width: 720px) and (min-width: 550px) {
  header.site-header .site-navigation-bar .navigation-bar .nav-menu ul.menu {
    padding: 0 20px;
  }
}

@media (max-width: 550px) {
  header.site-header .header-banner {
    margin-top: 0em;
  }
  header.site-header .header-banner .heading-title h1 {
    font-size: 2.4rem;
  }
  header.site-header .header-banner .heading-title h2 {
    font-size: 1.3rem;
  }
  header.site-header .header-banner .buttons-header .button-cta {
    font-size: 1rem;
  }
}

@media (min-width: 993px) {
  .toggle-submenu.show {
    display: none !important;
  }
  .subnav {
    width: 130px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .subnav:hover::after {
    content: '';
    position: absolute;
    margin-left: 0px;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #F1F3F6;
    pointer-events: none;
  }
}

/**
 *
 *  Breadcrumbs Style
 *
 *  @package gleesik_layout
 *
 **/
.breadcrumbs {
  margin-top: 90px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.breadcrumbs li {
  font-size: 18px;
  padding: 40px 0;
  position: relative;
  margin-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .breadcrumbs li {
    padding: 30px 0;
    font-size: 16px;
    margin-right: 35px;
  }
}

.breadcrumbs li a {
  color: #2d3e50;
}

@media (max-width: 768px) {
  .breadcrumbs li a {
    color: #161c2a;
  }
}

.breadcrumbs li a:hover {
  color: #f15d2f;
}

.breadcrumbs li::after {
  content: '\e684';
  font-family: '7-stroke';
  font-weight: 700;
  font-size: 1.5em;
  position: absolute;
  color: #2d3e50;
  right: -32px;
}

@media (max-width: 768px) {
  .breadcrumbs li::after {
    color: #161c2a;
    font-size: 1.4em;
    top: -webkit-calc(50% - 11px);
    top: calc(50% - 11px);
  }
}

.breadcrumbs li.active {
  color: #f15d2f;
}

.breadcrumbs li.active:after {
  content: '';
}

@media (max-width: 768px) {
  .breadcrumbs li.active {
    color: #5c5d5f;
  }
}

.breadcrumbs + section {
  margin-top: 0rem !important;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
  .breadcrumbs + section {
    margin-top: 0rem !important;
  }
}

div.highlight {
  border: 1px solid black;
  -webkit-border-radius: .4em;
          border-radius: .4em;
  background-color: #2e0a23;
  color: lightgray;
  padding: 0.2em;
  font-size: 0.8em;
  overflow: auto;
  margin: 1em auto;
  padding: 1em 0em 1em .5em;
  font-family: monospace;
}

code.highlighter-rouge {
  font-size: 0.9em;
  background-color: #2e0a23;
  color: lightgray;
}

.highlight {
  /* Comment */
  /* Error */
  /* Generic */
  /* Keyword */
  /* Literal */
  /* Name */
  /* Operator */
  /* Other */
  /* Punctuation */
  /* Comment.Multiline */
  /* Comment.Preproc */
  /* Comment.Single */
  /* Comment.Special */
  /* Generic.Deleted */
  /* Generic.Emph */
  /* Generic.Error */
  /* Generic.Heading */
  /* Generic.Inserted */
  /* Generic.Output */
  /* Generic.Prompt */
  /* Generic.Strong */
  /* Generic.Subheading */
  /* Generic.Traceback */
  /* Keyword.Constant */
  /* Keyword.Declaration */
  /* Keyword.Namespace */
  /* Keyword.Pseudo */
  /* Keyword.Reserved */
  /* Keyword.Type */
  /* Literal.Date */
  /* Literal.Number */
  /* Literal.String */
  /* Name.Attribute */
  /* Name.Builtin */
  /* Name.Class */
  /* Name.Constant */
  /* Name.Decorator */
  /* Name.Entity */
  /* Name.Exception */
  /* Name.Function */
  /* Name.Label */
  /* Name.Namespace */
  /* Name.Other */
  /* Name.Property */
  /* Name.Tag */
  /* Name.Variable */
  /* Operator.Word */
  /* Text.Whitespace */
  /* Literal.Number.Float */
  /* Literal.Number.Hex */
  /* Literal.Number.Integer */
  /* Literal.Number.Oct */
  /* Literal.String.Backtick */
  /* Literal.String.Char */
  /* Literal.String.Doc */
  /* Literal.String.Double */
  /* Literal.String.Escape */
  /* Literal.String.Heredoc */
  /* Literal.String.Interpol */
  /* Literal.String.Other */
  /* Literal.String.Regex */
  /* Literal.String.Single */
  /* Literal.String.Symbol */
  /* Name.Builtin.Pseudo */
  /* Name.Variable.Class */
  /* Name.Variable.Global */
  /* Name.Variable.Instance */
  /* Literal.Number.Integer.Long */
}

.highlight pre {
  background-color: #2e0a23;
}

.highlight .hll {
  background-color: #2e0a23;
}

.highlight .c {
  color: #999999;
  font-style: italic;
}

.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}

.highlight .g {
  color: #d0d0d0;
}

.highlight .k {
  color: #6ab825;
  font-weight: bold;
}

.highlight .l {
  color: #d0d0d0;
}

.highlight .n {
  color: #d0d0d0;
}

.highlight .o {
  color: #d0d0d0;
}

.highlight .x {
  color: #d0d0d0;
}

.highlight .p {
  color: #d0d0d0;
}

.highlight .cm {
  color: #999999;
  font-style: italic;
}

.highlight .cp {
  color: #cd2828;
  font-weight: bold;
}

.highlight .c1 {
  color: #999999;
  font-style: italic;
}

.highlight .cs {
  color: #e50808;
  font-weight: bold;
  background-color: #520000;
}

.highlight .gd {
  color: #d22323;
}

.highlight .ge {
  color: #d0d0d0;
  font-style: italic;
}

.highlight .gr {
  color: #d22323;
}

.highlight .gh {
  color: #ffffff;
  font-weight: bold;
}

.highlight .gi {
  color: #589819;
}

.highlight .go {
  color: #cccccc;
}

.highlight .gp {
  color: #aaaaaa;
}

.highlight .gs {
  color: #d0d0d0;
  font-weight: bold;
}

.highlight .gu {
  color: #ffffff;
  text-decoration: underline;
}

.highlight .gt {
  color: #d22323;
}

.highlight .kc {
  color: #6ab825;
  font-weight: bold;
}

.highlight .kd {
  color: #6ab825;
  font-weight: bold;
}

.highlight .kn {
  color: #6ab825;
  font-weight: bold;
}

.highlight .kp {
  color: #6ab825;
}

.highlight .kr {
  color: #6ab825;
  font-weight: bold;
}

.highlight .kt {
  color: #6ab825;
  font-weight: bold;
}

.highlight .ld {
  color: #d0d0d0;
}

.highlight .m {
  color: #3677a9;
}

.highlight .s {
  color: #ed9d13;
}

.highlight .na {
  color: #bbbbbb;
}

.highlight .nb {
  color: #24909d;
}

.highlight .nc {
  color: #447fcf;
  text-decoration: underline;
}

.highlight .no {
  color: #40ffff;
}

.highlight .nd {
  color: #ffa500;
}

.highlight .ni {
  color: #d0d0d0;
}

.highlight .ne {
  color: #bbbbbb;
}

.highlight .nf {
  color: #447fcf;
}

.highlight .nl {
  color: #d0d0d0;
}

.highlight .nn {
  color: #447fcf;
  text-decoration: underline;
}

.highlight .nx {
  color: #d0d0d0;
}

.highlight .py {
  color: #d0d0d0;
}

.highlight .nt {
  color: #6ab825;
  font-weight: bold;
}

.highlight .nv {
  color: #40ffff;
}

.highlight .ow {
  color: #6ab825;
  font-weight: bold;
}

.highlight .w {
  color: #666666;
}

.highlight .mf {
  color: #3677a9;
}

.highlight .mh {
  color: #3677a9;
}

.highlight .mi {
  color: #3677a9;
}

.highlight .mo {
  color: #3677a9;
}

.highlight .sb {
  color: #ed9d13;
}

.highlight .sc {
  color: #ed9d13;
}

.highlight .sd {
  color: #ed9d13;
}

.highlight .s2 {
  color: #ed9d13;
}

.highlight .se {
  color: #ed9d13;
}

.highlight .sh {
  color: #ed9d13;
}

.highlight .si {
  color: #ed9d13;
}

.highlight .sx {
  color: #ffa500;
}

.highlight .sr {
  color: #ed9d13;
}

.highlight .s1 {
  color: #ed9d13;
}

.highlight .ss {
  color: #ed9d13;
}

.highlight .bp {
  color: #24909d;
}

.highlight .vc {
  color: #40ffff;
}

.highlight .vg {
  color: #40ffff;
}

.highlight .vi {
  color: #40ffff;
}

.highlight .il {
  color: #3677a9;
}

/**
 *
 *  Sections Style
 *
 *  @package gleesik_layout
 *
 **/
.site-section {
  padding: 100px 0;
  background: #fff;
}

.site-section__title {
  font-size: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  color: #2d3e50;
  margin-bottom: 50px;
  font-weight: 400;
}

.site-section__title:after {
  content: '';
  position: absolute;
  width: 150px;
  height: 1px;
  bottom: -20px;
  left: -webkit-calc(50% - 75px);
  left: calc(50% - 75px);
  background-color: #f15d2f;
}

@media (max-width: 993px) {
  .site-section__title {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .site-section__title:after {
    width: 36px;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
  }
}

@media (max-width: 768px) {
  .site-section__title {
    font-size: 22px;
  }
}

.site-section__description {
  margin: 0 0 30px;
  font-size: 29px;
  line-height: 1.5;
  font-weight: 400;
  color: #5c5d5f;
  text-align: center;
}

@media (max-width: 993px) {
  .site-section__description {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .site-section__description {
    font-size: 18px;
  }
}

.site-section header.section-header h1, .site-section header.section-header h2, .site-section header.section-header h3, .site-section header.section-header h4, .site-section header.section-header h5, .site-section header.section-header h6 {
  font-weight: bold;
  text-transform: uppercase;
  color: #2d3e50;
}

.site-section header.section-header hr.normal {
  margin: 40px auto;
}

.site-section.section-focus {
  background-color: #f4f8f9;
}

.site-section.section-focus.next-section-indicator:after {
  border-top-color: #f4f8f9;
}

.site-section.next-section-indicator {
  position: relative;
}

.site-section.next-section-indicator:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: -30px;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #fff;
}

/**
 *
 *  Sidebar Aside Style
 *
 *  @package gleesik_layout
 *
 **/
.col-sidebar {
  background-color: #f4f8f9;
  top: 0px;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  padding-top: 20px;
  width: 15em;
  overflow-y: scroll;
}

.col-sidebar aside.site-sidebar h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0.2em 0;
  color: #2d3e50;
  cursor: pointer;
  text-transform: uppercase;
}

.col-sidebar aside.site-sidebar h3:hover {
  color: black;
}

.col-sidebar aside.site-sidebar .group {
  margin-bottom: 2em;
}

.col-sidebar aside.site-sidebar input.active {
  outline: solid 1px green;
  border-color: green;
  background-color: #b9ffb9;
}

.col-sidebar aside.site-sidebar input.notfound {
  outline: solid 1px orange;
  border-color: orange;
  background-color: #ffe6b8;
}

.col-sidebar aside.site-sidebar .folded span.arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.col-sidebar aside.site-sidebar .folded ul {
  display: none;
}

.col-sidebar aside.site-sidebar span.arrow {
  transition: transform .2s linear, -webkit-transform .2s linear;
}

.col-sidebar aside.site-sidebar ul {
  padding: 0px;
}

.col-sidebar aside.site-sidebar ul li {
  padding: 0 0 5px 0px;
}

.col-sidebar aside.site-sidebar ul li a {
  display: block;
  height: 1.1em;
}

.col-sidebar aside.site-sidebar ul li.current {
  line-height: 1.2em;
  font-weight: bold;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-color: #F15C2E;
          text-decoration-color: #F15C2E;
}

.col-sidebar aside.site-sidebar ul li.matching-item {
  -webkit-box-shadow: 0 0 3pt 3pt #63d463;
          box-shadow: 0 0 3pt 3pt #63d463;
  -webkit-border-radius: 20px;
          border-radius: 20px;
}

.col-sidebar aside.site-sidebar ul li.non-matching-item a {
  -webkit-text-decoration: line-through red 2px;
          text-decoration: line-through red 2px;
}

.col-sidebar aside.site-sidebar .widget {
  margin-bottom: 20px;
}

.col-sidebar aside.site-sidebar .widget header.widget-header {
  padding: 24px 30px;
  color: #2d3e50;
  margin-bottom: 30px;
  background-color: #f4f8f9;
}

.col-sidebar aside.site-sidebar .widget header.widget-header h4.widget-title {
  font-size: 1.25rem;
  text-transform: uppercase;
}

/**
 *
 *  Offer Style
 *
 *  @package gleesik_layout
 *
 **/
section.offer-section {
  padding: 40px 0;
  color: #fff;
  background-color: #2d3e50;
  padding: 100px 0;
}

section.offer-section .offer-link {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

section.offer-section .offer-link:hover {
  color: #f15d2f;
}

section.offer-section .offer-link h2 {
  font-size: 29px;
  text-transform: uppercase;
}

section.offer-section .offer-link i {
  font-size: 29px;
  font-weight: 700;
}

section.offer-section .offer-link::after {
  content: '';
  position: absolute;
  width: 226px;
  height: 1px;
  background-color: #f15d2f;
  bottom: -30px;
  left: -webkit-calc(50% - 113px);
  left: calc(50% - 113px);
}

@media (max-width: 768px) {
  section.offer-section .offer-link {
    text-align: center;
  }
  section.offer-section .offer-link h2 {
    font-size: 20px;
    font-weight: 400;
    text-transform: inherit;
  }
  section.offer-section .offer-link i {
    display: none;
  }
}

.taglist-post {
  margin-bottom: 400px;
}

.taglist-post .img-wrap a {
  width: 100%;
}

.taglist-post .img-wrap img {
  -o-object-fit: none;
     object-fit: none;
  height: 100px;
  width: 100%;
}

.taglist-post h2.category {
  color: #F15C2E;
  text-transform: capitalize;
}

/**
 *
 *  Hero Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.site-section.hero-section {
  background-color: #2d3e50;
  color: #fff;
  background-image: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Fimages%2Fcloud.png");
  background-repeat: no-repeat;
  background-position: right -500px center;
  -webkit-background-size: 1311px 913px;
          background-size: 1311px 913px;
}

@media (max-width: 1500px) {
  section.site-section.hero-section {
    background-position: right -600px center;
  }
}

@media (max-width: 1300px) {
  section.site-section.hero-section {
    background-position: right -650px center;
  }
}

@media (max-width: 1199px) {
  section.site-section.hero-section {
    background-position: right -720px center;
  }
}

@media (max-width: 993px) {
  section.site-section.hero-section {
    background-position: right -560px center;
    -webkit-background-size: 900px 900px;
            background-size: 900px;
  }
}

@media (max-width: 768px) {
  section.site-section.hero-section {
    -webkit-background-size: inherit inherit;
            background-size: inherit;
    background-position: right 20px;
    background-image: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Fimages%2Fhero-right-mobile.png");
    padding-bottom: 60px;
  }
}

section.site-section.hero-section .container .row {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  position: relative;
}

section.site-section.hero-section .container .row .hero-title {
  font-size: 50px;
  line-height: 1.2;
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 500px;
}

section.site-section.hero-section .container .row .hero-title::after {
  content: '';
  position: absolute;
  width: 400px;
  background-color: #f15d2f;
  height: 1px;
  bottom: -7px;
  left: 0;
}

section.site-section.hero-section .container .row .hero-title-lp {
  font-size: 50px;
  line-height: 1.2;
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 1000px;
}

section.site-section.hero-section .container .row .hero-title::after {
  content: '';
  position: absolute;
  width: 400px;
  background-color: #f15d2f;
  height: 0px;
  bottom: -7px;
  left: 0;
}

section.site-section.hero-section .container .row .hero-title--xs {
  display: none;
  font-size: 1.8rem;
  line-height: 1.2;
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 400px;
}

section.site-section.hero-section .container .row .hero-title--xs::after {
  content: '';
  position: absolute;
  width: 68px;
  background-color: #f15d2f;
  height: 1px;
  bottom: -12px;
  left: 0;
}


section.site-section.hero-section .container .row .hero-title-lp--xs {
  display: none;
  font-size: 1.8rem;
  line-height: 1.2;
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 500px;
}

section.site-section.hero-section .container .row .hero-title--xs::after {
  content: '';
  position: absolute;
  width: 68px;
  background-color: #f15d2f;
  height: 0px;
  bottom: -12px;
  left: 0;
}


@media (max-width: 768px) {
  section.site-section.hero-section .container .row .hero-title {
    display: none;
  }
  section.site-section.hero-section .container .row .hero-title--xs {
    display: block;
  }
}

section.site-section.hero-section .container .row .hero-subtitle {
  font-size: 29px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 400;
  max-width: 500px;
}

section.site-section.hero-section .container .row .hero-subtitle--xs {
  display: none;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 80%;
}

@media (max-width: 768px) {
  section.site-section.hero-section .container .row .hero-subtitle {
    display: none;
  }
  section.site-section.hero-section .container .row .hero-subtitle--xs {
    display: block;
  }
}

section.site-section.hero-section .container .row .hero-description {
  margin-bottom: 80px;
  font-weight: 400;
  font-size: 18px;
  max-width: 500px;
}

section.site-section.hero-section .container .row .hero-description--xs {
  max-width: 70%;
  display: none;
  font-size: 18px;
}

@media (max-width: 768px) {
  section.site-section.hero-section .container .row .hero-description {
    display: none;
  }
  section.site-section.hero-section .container .row .hero-description--xs {
    display: block;
  }
}

section.site-section.hero-section .container .row .company-name {
  position: relative;
  margin-right: 20px;
}

section.site-section.hero-section .container .row .company-name span {
  position: absolute;
  font-size: .6em;
}

section.site-section.hero-section .container .row .action-container {
  position: relative;
  margin-right: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 600px;
}

section.site-section.hero-section .container .row .action-container .action-descriptoin {
  position: absolute;
  bottom: -1.8em;
  font-size: 12px;
}

section.site-section.hero-section .container .row .action-container .text-xs {
  display: none;
}

@media (max-width: 768px) {
  section.site-section.hero-section .container .row .action-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  section.site-section.hero-section .container .row .action-container .text-sm {
    display: none;
  }
  section.site-section.hero-section .container .row .action-container .text-xs {
    display: block;
  }
  section.site-section.hero-section .container .row .action-container .action-descriptoin {
    display: none;
  }
  section.site-section.hero-section .container .row .action-container .action-button {
    margin-bottom: 50px;
  }
  section.site-section.hero-section .container .row .action-container .link {
    margin-top: 20px;
    margin-right: auto;
  }
}

/**
 *
 *  About Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.about-section {
  background-color: #fff;
  padding: 10px 0 60px;
}

section.about-section .site-section__description {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

section.about-section .content-container {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  background-color: #F1F3F6;
  padding: 50px 80px;
  font-size: 18px;
  color: #2d3e50;
  line-height: 1.2;
}

@media (max-width: 768px) {
  section.about-section .content-container {
    padding: 20px 0 50px;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    font-size: 18px;
  }
}

section.about-section .content-container .action {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

section.team-section {
  background-color: #2d3e50;
  color: #fff;
  padding: 50px 0 0 0;
  min-height: 620px;
}

section.team-section .site-section__title--small {
  font-size: 29px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

section.team-section .site-section__title--small::after {
  content: "";
  position: absolute;
  width: 40px;
  left: -webkit-calc(50% - 20px);
  left: calc(50% - 20px);
  height: 1px;
  background-color: #f15d2f;
  bottom: -10px;
}

@media (max-width: 768px) {
  section.team-section .site-section__title--small {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
  }
  section.team-section .site-section__title--small::after {
    bottom: -20px;
  }
}

section.team-section .site-section__description--small {
  font-size: 18px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  section.team-section .site-section__description--small {
    font-size: 18px;
    font-weight: 400;
  }
}

section.team-section .container {
  position: relative;
}

section.team-section .team-card {
  position: absolute;
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  padding: 50px 60px 50px 60px;
  background-color: #fff;
  color: #2d3e50;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (max-width: 1199px) {
  section.team-section .team-card {
    width: -webkit-calc(100% - 118px);
    width: calc(100% - 118px);
    padding-bottom: 0;
  }
}

@media (max-width: 993px) {
  section.team-section .team-card {
    width: 90%;
  }
}

@media (max-width: 768px) {
  section.team-section .team-card {
    position: inherit;
    width: 100%;
    -webkit-border-bottom-left-radius: 0;
            border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
            border-bottom-right-radius: 0;
  }
}

section.team-section .team-card .member-col {
  width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 15px;
}

section.team-section .team-card .member-col .member-picture {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
}

section.team-section .team-card .member-col .member-name {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  min-height: 60px;
  line-height: 1.5;
  color: #1f2739;
}

section.team-section .team-card .member-col .member-position {
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  section.team-section .team-card .member-col {
    width: 100%;
    margin-bottom: 60px;
  }
  section.team-section .team-card .member-col .member-picture {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  section.team-section .team-card .member-col .member-name {
    font-size: 18px;
    min-height: 40px;
  }
  section.team-section .team-card .member-col .member-position {
    font-size: 18px;
  }
}

section.story-section {
  padding: 100px 0 0;
  background-color: #F1F3F6;
}

section.story-section .section-title {
  text-transform: uppercase;
  color: #1f2739;
  text-align: center;
  width: 100%;
  font-size: 29px;
}

section.story-section .story {
  padding: 70px 0;
}

section.story-section .story:nth-child(2) {
  padding-top: 40px;
}

section.story-section .story:nth-child(4) {
  padding-bottom: 10px;
}

section.story-section .story__title {
  font-size: 20px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 400;
}

section.story-section .story__title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background: #f15d2f;
  left: -webkit-calc(50% - 25px);
  left: calc(50% - 25px);
  bottom: -10px;
  font-weight: 400;
}

section.story-section .story__content {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

section.story-section .story__action {
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

section.story-section .story--gray {
  background-color: #F1F3F6;
  color: #1f2739;
}

section.story-section .story--white {
  background-color: #fff;
  color: #1f2739;
}

section.story-section .story--dark {
  background-color: #2d3e50;
  color: #fff;
}

section.story-section--xs {
  background-color: #fff;
  padding: 50px 0 0;
}

section.story-section--xs .section-title {
  font-size: 20px;
  text-transform: inherit;
  position: relative;
  margin-bottom: 20px;
}

section.story-section--xs .section-title::after {
  content: "";
  position: absolute;
  width: 40px;
  left: -webkit-calc(50% - 20px);
  left: calc(50% - 20px);
  height: 1px;
  background-color: #f15d2f;
  bottom: -20px;
}

section.story-section--xs .story {
  font-size: 18px;
}

section.story-section--xs .story--gray-card {
  padding-bottom: 0;
}

section.story-section--xs .story--gray-card .container > .story__content {
  background-color: #F1F3F6;
  padding: 20px;
  color: #1f2739;
}

section.story-section--xs .story--dark {
  position: relative;
  padding-top: 80px;
}

section.story-section--xs .story--dark::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 1px;
  background-color: #f15d2f;
  top: 50px;
  left: -webkit-calc(50% - 18px);
  left: calc(50% - 18px);
}

/**
 *
 *  Features Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.features-section {
  background-color: #fff;
}

@media (max-width: 768px) {
  section.features-section {
    padding: 40px 0;
  }
}

section.features-section .feature {
  margin-bottom: 100px;
  position: relative;
}

section.features-section .feature:last-child {
  margin-bottom: 30px;
}

section.features-section .feature-content {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

section.features-section .feature-icon {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

section.features-section .feature-icon svg {
  width: 100%;
  max-width: 294px;
}

@media (max-width: 768px) {
  section.features-section .feature-icon {
    position: absolute;
    width: 50%;
    right: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
    top: -100px;
  }
  section.features-section .feature-icon--1 {
    top: 0;
  }
  section.features-section .feature-icon svg {
    width: 100%;
    height: 50%;
    min-height: 160px;
  }
}

section.features-section .feature:nth-child(even) .feature-content {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

section.features-section .feature:nth-child(even) .feature-icon {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

section.features-section .feature .feature-title {
  font-size: 29px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #2d3e50;
  font-weight: 600;
}

section.features-section .feature .feature-title--xs {
  display: none;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  section.features-section .feature .feature-title {
    display: none;
  }
  section.features-section .feature .feature-title--xs {
    display: block;
  }
}

section.features-section .feature .feature-description {
  font-size: 18px;
  margin-bottom: 30px;
}

section.features-section .feature .feature-description--xs {
  display: none;
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  section.features-section .feature .feature-description {
    display: none;
  }
  section.features-section .feature .feature-description--xs {
    display: block;
  }
}

section.features-section .feature .feature-link--xs {
  display: none;
}

@media (max-width: 768px) {
  section.features-section .feature .feature-link {
    display: none;
  }
  section.features-section .feature .feature-link--xs {
    display: block;
  }
}

section.features-section .feature-more > div:first-child .contact-button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin-right: 20px;
  margin-left: auto;
}

section.features-section .feature-more > div:last-child a {
  margin-left: 20px;
}

section.features-section .feature-more--xs {
  display: none;
}

@media (max-width: 768px) {
  section.features-section .feature-more {
    display: none;
  }
  section.features-section .feature-more--xs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -40px;
    margin-bottom: 40px;
  }
  section.features-section .feature-more--xs a {
    margin: 5px;
  }
}

/**
 *
 *  Solutions Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.solutions-section {
  background-color: #fff !important;
  padding: 10px 0 60px;
}

section.solutions-section .container {
  position: relative;
}

section.solutions-section .site-section__title {
  margin-bottom: 50px;
}

@media (max-width: 993px) {
  section.solutions-section .site-section__title {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  section.solutions-section .site-section__title {
    position: absolute;
    top: 30px;
    width: 90%;
  }
}

section.solutions-section .solution-section__description {
  margin: 0 0 60px;
  font-size: 29px;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 993px) {
  section.solutions-section .solution-section__description {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  section.solutions-section .solution-section__description {
    font-size: 18px;
    padding-top: 120px;
    text-align: center;
  }
}

section.solutions-section .row {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.solutions-section .row .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

section.solutions-section .solution {
  background-color: #f1f3f6;
  font-weight: 400;
  min-height: 320px;
  padding: 25px;
}

@media (max-width: 993px) {
  section.solutions-section .solution {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  section.solutions-section .solution {
    padding: 50px 25px;
  }
}

section.solutions-section .solution-title {
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 20px auto;
  text-align: center;
  position: relative;
}

section.solutions-section .solution-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #f15d2f;
  bottom: -15px;
  left: -webkit-calc(50% - 50px);
  left: calc(50% - 50px);
}

@media (max-width: 768px) {
  section.solutions-section .solution-title {
    font-size: 1.3rem;
    color: #161c2a;
  }
  section.solutions-section .solution-title::after {
    width: 36px;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
    bottom: -25px;
  }
}

section.solutions-section .solution-description {
  padding: 25px 10px 0;
  font-size: 18px;
}

@media (max-width: 768px) {
  section.solutions-section .solution-description {
    font-size: 1.1rem;
  }
}

section.solutions-section .solution .box__solution-image {
  display: block;
  width: auto;
  height: calc(100% - 50px); /* subtract top+bottom padding */
  margin: 0 auto;
  background: transparent;
  object-fit: cover;
}

/**
 *
 *  Solutions Download Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.solutions-download-section {
  padding: 0;
  position: relative;
}

section.solutions-download-section .downloads {
  width: 100%;
  padding: 50px 0 120px;
  background-color: #2d3e50 !important;
}

section.solutions-download-section .downloads .container .download {
  padding: 0 60px;
}

section.solutions-download-section .downloads .container .download:first-child {
  border-right: 2px solid #fff;
}

section.solutions-download-section .downloads .container .download-title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

section.solutions-download-section .downloads .container .download-title {
  color: #f15d2f;
  font-weight: 400;
  margin-left: 20px;
  font-size: 29px;
}

section.solutions-download-section .downloads .container .download-description {
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 50px;
}

section.solutions-download-section .downloads .container .download .button {
  margin: 0 auto;
  width: 250px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0;
}

section.solutions-download-section .downloads .container .download--xs:first-child {
  position: relative;
  margin-bottom: 50px;
}

section.solutions-download-section .downloads .container .download--xs:first-child::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: -webkit-calc(50% - 18px);
  left: calc(50% - 18px);
}

section.solutions-download-section .downloads .container .download--xs .download-title {
  color: #fff;
  font-size: 20px;
  margin-left: 0;
  margin-bottom: 25px;
}

section.solutions-download-section .downloads .container .download--xs .download-link {
  margin-bottom: 30px;
  font-weight: 400;
}

section.solutions-download-section .downloads .container .download--xs .download-description {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

section.solutions-download-section .contact-us {
  background-color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.solutions-download-section .contact-us__card {
  -webkit-border-radius: 5px;
          border-radius: 5px;
  background-color: #fff;
  margin-top: -60px;
  max-width: 814px;
  padding: 45px 30px 50px;
  text-align: center;
}

section.solutions-download-section .contact-us__card .description {
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 50px;
}

section.solutions-download-section .contact-us__card .button {
  margin: 0 auto;
  width: 230px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  section.solutions-download-section .contact-us__card {
    margin-top: -90px;
    width: 90%;
  }
  section.solutions-download-section .contact-us__card .button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/**
 *
 *  Products Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.products-header-section {
  background-color: #fff !important;
  padding: 10px 0 60px;
}

section.products-header-section .products-image {
  width: 100%;
  min-height: 240px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

section.products-header-section .products-image iframe {
  min-height: 300px;
  width: 100%;
  max-width: 500px;
}

section.products-header-section .products-header-actions {
  margin-top: 40px;
}

section.products-header-section .products-image-description {
  font-size: 29px;
  line-height: 1.5;
  font-weight: 400;
  color: #1f2739;
}

@media (max-width: 768px) {
  section.products-header-section .site-section__description {
    color: #1f2739;
    margin-bottom: 20px;
  }
  section.products-header-section .products-image {
    margin-bottom: 40px;
  }
  section.products-header-section .products-image iframe {
    min-height: 200px;
    min-width: 320px;
  }
}

section.products-body-section {
  background-color: #f1f3f6 !important;
  padding: 50px;
}

@media (max-width: 768px) {
  section.products-body-section {
    padding: 50px 0 40px;
  }
}

section.products-body-section .products-body-text {
  font-size: 1.7rem;
  color: #2d3e50;
  line-height: 1.5;
  position: relative;
  margin-bottom: 60px;
}

section.products-body-section .products-body-text::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #f15d2f;
  left: -webkit-calc(50% - 25px);
  left: calc(50% - 25px);
  bottom: -10px;
}

@media (max-width: 768px) {
  section.products-body-section .products-body-text {
    font-size: 20px;
    text-align: center;
  }
}

section.products-body-section .products-body-features {
  max-width: 946px;
  margin-left: auto;
  margin-right: auto;
}

section.products-body-section .products-body-features .feature {
  background-color: #fff;
  padding: 30px 50px;
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  section.products-body-section .products-body-features .feature {
    padding: 40px 50px;
    margin-bottom: 50px;
  }
}

section.products-body-section .products-body-features .feature-title {
  text-transform: uppercase;
  color: #2d3e50;
  font-size: 29px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

section.products-body-section .products-body-features .feature-title > img {
  margin-right: 15px;
}

@media (max-width: 768px) {
  section.products-body-section .products-body-features .feature-title {
    font-size: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.products-body-section .products-body-features .feature-title > img {
    width: 20px;
    margin-left: -30px;
  }
}

section.products-body-section .products-body-features .feature-description {
  font-size: 18px;
}

@media (max-width: 768px) {
  section.products-body-section .products-body-features .feature-description {
    font-size: 18px;
  }
}

section.products-body-section .products-body-actions {
  text-align: center;
}

section.products-body-section .products-body-actions a {
  margin: 0 15px 15px 15px;
}

@media (max-width: 768px) {
  section.products-body-section .products-body-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.products-body-section .products-body-actions a {
    width: 160px;
    height: 38px;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

section.products-footer-section .container {
  text-align: center;
}

section.products-footer-section .container iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  section.products-footer-section .container iframe {
    height: 300px;
  }
}

section.products-pricing-section {
  background-color: #fff !important;
  padding: 10px 0 60px;
}

section.products-pricing-section .plan-switch-container {
  width: 100%;
  text-align: center;
}

section.products-pricing-section .plan-switch-label-container {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

section.products-pricing-section .plan-switch-label-container .plan-switch-label span {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #848484;
  margin: 0 5px;
}

section.products-pricing-section .plan-switch-label-container .plan-switch-label span.active {
  color: #1f2739;
}

section.products-pricing-section .plans-description {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  color: #2d3e50;
  line-height: 1.5;
}

@media (max-width: 993px) {
  section.products-pricing-section .plans-description {
    font-size: 20px;
  }
}

section.products-pricing-section .plans-annotation {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  color: #2d3e50;
  line-height: 1.5;
}

@media (max-width: 993px) {
  section.products-pricing-section .plans-annotation {
    font-size: 14px;
  }
}

section.products-pricing-section .products-section__description {
  margin: 0 auto 60px auto;
  font-size: 29px;
  line-height: 1.5;
  font-weight: 400;
  color: #5c5d5f;
  text-align: center;
  max-width: 900px;
}

@media (max-width: 993px) {
  section.products-pricing-section .products-section__description {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  section.products-pricing-section .products-section__description {
    font-size: 20px;
  }
}

section.products-pricing-section .products-pricing__contact-us {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.products-pricing-section .plans .col-blank {
  width: 350px;
}

section.products-pricing-section .plans .col-blank--text {
  padding: 10px 25px 10px 0;
  font-size: 30px;
  color: #2d3e50;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: left;
  text-align: left;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.products-pricing-section .plans .col-blank--text a {
  text-align: left;
}

section.products-pricing-section .plans .col-plan {
  width: -webkit-calc((100% - 350px) / 3);
  width: calc((100% - 350px) / 3);
  padding: 15px;
}

section.products-pricing-section .plans .col-plan--card {
  padding: 20px;
  width: -webkit-calc((100% - 100px) / 3);
  width: calc((100% - 100px) / 3);
}

@media (max-width: 1199px) {
  section.products-pricing-section .plans .col-blank {
    width: 250px;
    font-size: 24px;
  }
  section.products-pricing-section .plans .col-plan {
    width: -webkit-calc((100% - 250px) / 3);
    width: calc((100% - 250px) / 3);
    padding: 15px;
  }
  section.products-pricing-section .plans .col-plan--card {
    width: 33%;
  }
  section.products-pricing-section .plans .col-plan--card ul {
    padding: 0 !important;
  }
}

@media (max-width: 993px) {
  section.products-pricing-section .plans .col-blank {
    width: 180px;
    font-size: 20px;
  }
  section.products-pricing-section .plans .col-plan {
    width: -webkit-calc((100% - 180px) / 3);
    width: calc((100% - 180px) / 3);
    padding: 10px;
  }
  section.products-pricing-section .plans .col-plan--card {
    width: 33%;
  }
}

section.products-pricing-section .plans .plan {
  border: 1px solid #f15d2f;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  padding: 25px;
  text-align: center;
  height: 540px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

section.products-pricing-section .plans .plan__title {
  font-size: 20px;
  color: #1f2739;
  margin-bottom: 25px;
}

section.products-pricing-section .plans .plan__description {
  color: #1f2739;
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

section.products-pricing-section .plans .plan__price {
  color: #1f2739;
  font-size: 50px;
  margin-bottom: 20px;
}

section.products-pricing-section .plans .plan__price > span {
  font-size: 20px;
  color: #2d3e50;
}

section.products-pricing-section .plans .plan__price .plan__price_annotation {
  font-size: 12px;
  color: #2d3e50;
}

section.products-pricing-section .plans .plan__action {
  margin-top:auto;
}

section.products-pricing-section .plans .plan__action > .button {
  width: 100%;
  text-transform: uppercase;
}

section.products-pricing-section .plans .plan__features {
  margin-bottom: 10px;
  height: 200px;
}

@media (min-width: 769px) and (max-width: 993px) {
  section.products-pricing-section .plans .plan__features {
    height: 225px;
  }
}

section.products-pricing-section .plans .plan__features ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 20px;
}

section.products-pricing-section .plans .plan__features ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #1f2739;
  text-align: left;
  letter-spacing: .5px;
}

section.products-pricing-section .plans .plan__features ul li > .circle {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #f15d2f;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  left: 1px;
  top: -1px;
}

section.products-pricing-section .plans .plan__features ul li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 2px;
  background-color: #f15d2f;
  left: 5px;
  top: 10px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

section.products-pricing-section .plans .plan__features ul li::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #f15d2f;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 7px;
  top: 8px;
}

@media (max-width: 993px) {
  section.products-pricing-section .plans .plan {
    padding: 25px 10px;
  }
  section.products-pricing-section .plans .plan__price {
    font-size: 34px;
  }
  section.products-pricing-section .plans .plan__price > span {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  section.products-pricing-section .plans .plan {
    padding: 25px;
  }
  section.products-pricing-section .plans .plan__price {
    font-size: 50px;
  }
  section.products-pricing-section .plans .plan__price > span {
    font-size: 20px;
  }
}

section.products-pricing-section .plans--xs .col-plan {
  width: 100%;
}

section.products-pricing-section .plans--xs .col-plan .plan {
  height: inherit;
  min-height: 540px;
  margin-bottom: 0;
}

section.products-pricing-section .pricing-table {
  margin-bottom: 60px;
}

section.products-pricing-section .pricing-table__header {
  font-weight: 700;
  background-color: #fff;
  z-index: 0;
}

section.products-pricing-section .pricing-table__header .col-plan {
  font-weight: 700 !important;
}

section.products-pricing-section .pricing-table__description {
  font-size: 16px;
  margin: 10px 0;
  line-height: 1.5;
}

section.products-pricing-section .pricing-table .row.plans .col-blank {
  color: #2d3e50;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  min-height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 15px;
  border-bottom: 1px solid #f1f3f6;
}

section.products-pricing-section .pricing-table .row.plans .col-plan {
  border-left: 2px solid #f15d2f;
  background-color: #fff;
  color: #2d3e50;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  min-height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  border-bottom: 1px solid #f1f3f6;
}

section.products-pricing-section .pricing-table .row.plans .col-plan > .ammount {
  font-size: 24px;
}

section.products-pricing-section .pricing-table .row.plans .col-plan > .ammount--tip {
  font-size: 18px;
}

section.products-pricing-section .pricing-table .row.plans .col-plan > .has-asterisk {
  position: relative;
}

section.products-pricing-section .pricing-table .row.plans .col-plan > .has-asterisk::after {
  position: absolute;
  content: '*';
  right: -10px;
}

@media (max-width: 993px) {
  section.products-pricing-section .pricing-table .row.plans .col-plan, section.products-pricing-section .pricing-table .row.plans .col-blank {
    font-size: 18px;
  }
}

/**
 *
 *  How It Works Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.how-it-works-section {
  background-color: #fff !important;
  padding: 10px 0 60px;
}

section.how-it-works-section .container iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
}

@media (max-width: 768px) {
  section.how-it-works-section .container iframe {
    height: 300px;
  }
}

section.how-it-works-section .container .actions {
  margin: 60px auto 0 auto;
  text-align: center;
}

section.how-it-works-section .container .actions > a {
  margin: 15px;
}

@media (max-width: 768px) {
  section.how-it-works-section .container .actions > a {
    margin: 2px;
    width: 150px;
    padding: 10px 0;
  }
}

section.how-it-works-section--2 {
  padding: 60px 0;
}

section.how-it-works-section--2 .container .title {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 29px;
  margin-bottom: 40px;
}

section.how-it-works-section--2 .container .title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #f15d2f;
  left: -webkit-calc(50% - 25px);
  left: calc(50% - 25px);
  bottom: -15px;
}

@media (max-width: 768px) {
  section.how-it-works-section--2 .container .title {
    color: #2d3e50;
    font-size: 20px;
    text-transform: inherit;
  }
  section.how-it-works-section--2 .container .title::after {
    bottom: -20px;
  }
}

section.how-it-works-section--2 .container .description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section.how-it-works-section--2 .container .description {
    font-size: 18px;
  }
}

section.how-it-works-section--3 {
  padding: 0;
}

section.how-it-works-section--3 .section-top-container {
  padding: 60px 0 0 0;
  background-color: #fff !important;
  width: 100%;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container {
    padding: 0;
  }
}

section.how-it-works-section--3 .section-top-container .container {
  border-top: 1px solid #f15d2f;
  border-left: 1px solid #f15d2f;
  border-right: 1px solid #f15d2f;
  padding: 50px 0 20px;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container .container {
    border: none;
    padding-bottom: 0;
  }
}

section.how-it-works-section--3 .section-top-container .container .title {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 29px;
  margin-bottom: 40px;
  color: #2d3e50;
}

section.how-it-works-section--3 .section-top-container .container .title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #f15d2f;
  left: -webkit-calc(50% - 25px);
  left: calc(50% - 25px);
  bottom: -15px;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container .container .title {
    font-size: 20px;
    text-transform: inherit;
    color: #2d3e50;
  }
  section.how-it-works-section--3 .section-top-container .container .title::after {
    bottom: -20px;
  }
}

section.how-it-works-section--3 .section-top-container .container .description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container .container .description {
    color: #5c5d5f;
    padding: 0 5%;
  }
}

section.how-it-works-section--3 .section-top-container .container .row {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container {
  position: relative;
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container .item {
  padding: 0 30px;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container .container .row > .item-container .item {
    background-color: #F1F3F6;
    padding: 50px 5%;
  }
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container .item-title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container .item-title-wrapper img {
  margin-right: 15px;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container .container .row > .item-container .item-title-wrapper h4 {
    text-align: center;
    width: 100%;
    color: #2d3e50;
    font-size: 18px;
  }
  section.how-it-works-section--3 .section-top-container .container .row > .item-container .item-title-wrapper img {
    display: none;
  }
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container .item-title {
  font-size: 20px;
  text-transform: uppercase;
  color: #2d3e50;
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container .item-description {
  font-size: 18px;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container .container .row > .item-container .item-description {
    font-size: 18px;
  }
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container:first-child::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 200px;
  background-color: #f15d2f;
  top: 60px;
  right: 0;
}

section.how-it-works-section--3 .section-top-container .container .row > .item-container:first-child {
  position: relative;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-top-container .container .row > .item-container:first-child {
    position: relative;
  }
  section.how-it-works-section--3 .section-top-container .container .row > .item-container:first-child::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 1px;
    background-color: #f15d2f;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
    bottom: 0;
    top: inherit;
  }
}

section.how-it-works-section--3 .section-bottom-container {
  padding: 0;
  background-color: #2d3e50 !important;
  color: #fff;
  width: 100%;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-bottom-container {
    background-color: #fff !important;
    color: #2d3e50;
  }
}

section.how-it-works-section--3 .section-bottom-container .container {
  border-left: 1px solid #f15d2f;
  border-right: 1px solid #f15d2f;
  border-bottom: 1px solid #f15d2f;
  padding: 70px 0 0 0;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-bottom-container .container {
    padding-top: 0px;
    border: none;
  }
}

section.how-it-works-section--3 .section-bottom-container .container__label {
  display: none;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-bottom-container .container__label {
    display: block;
    padding: 50px 5%;
    font-size: 18px;
  }
}

section.how-it-works-section--3 .section-bottom-container .container .item-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

section.how-it-works-section--3 .section-bottom-container .container .item-container:last-child {
  background-color: #2d3e50;
  color: #fff;
  padding: 50px 0 10px;
}

section.how-it-works-section--3 .section-bottom-container .container .item-container .item {
  padding: 0 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-bottom-container .container .item-container .item {
    padding: 0 5%;
  }
}

section.how-it-works-section--3 .section-bottom-container .container .item-container .item-title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

section.how-it-works-section--3 .section-bottom-container .container .item-container .item-title-wrapper img {
  margin-right: 15px;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-bottom-container .container .item-container .item-title-wrapper img {
    display: none;
  }
}

section.how-it-works-section--3 .section-bottom-container .container .item-container .item-title {
  font-size: 20px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-bottom-container .container .item-container .item-title {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
  }
  section.how-it-works-section--3 .section-bottom-container .container .item-container .item-title::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 1px;
    background-color: #f15d2f;
    bottom: -20px;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
  }
}

section.how-it-works-section--3 .section-bottom-container .container .item-container .item-description,
section.how-it-works-section--3 .section-bottom-container .container .item-container .item-description > p {
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  section.how-it-works-section--3 .section-bottom-container .container .item-container .item-description,
  section.how-it-works-section--3 .section-bottom-container .container .item-container .item-description > p {
    font-size: 18px;
    line-height: 1.5;
  }
}

section.how-it-works-section--3 .section-bottom-container .action {
  text-align: center;
  padding: 70px 0;
}

section.how-it-works-section--4 {
  background-color: #fff !important;
  padding: 80px 0;
}

section.how-it-works-section--4 .container iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 {
    padding-bottom: 10px;
  }
}

section.how-it-works-section--4 .container .title {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 29px;
  margin-bottom: 50px;
  color: #2d3e50;
}

section.how-it-works-section--4 .container .title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #f15d2f;
  left: -webkit-calc(50% - 25px);
  left: calc(50% - 25px);
  bottom: -15px;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .title {
    font-size: 20px;
    text-transform: inherit;
    margin-bottom: 40px;
  }
  section.how-it-works-section--4 .container .title::after {
    width: 36px;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
    bottom: -20px;
    top: inherit;
  }
}

section.how-it-works-section--4 .container .description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .description {
    font-size: 18px;
  }
}

section.how-it-works-section--4 .container .row {
  margin-bottom: 60px;
  position: relative;
}

section.how-it-works-section--4 .container .row .number {
  width: 25%;
  color: #f15d2f;
  text-align: center;
  font-size: 9rem;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .number {
    position: absolute;
    top: 20px;
    left: 0;
    color: #2d3e50;
    opacity: 0.2;
    font-size: 96px;
  }
}

section.how-it-works-section--4 .container .row .item {
  width: 75%;
  border: 2px solid #f15d2f;
  padding: 40px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .item {
    width: 93%;
    padding: 40px 5%;
  }
}

section.how-it-works-section--4 .container .row .item-title {
  font-size: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
  color: #2d3e50;
  line-height: 1.5;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .item-title {
    color: #1f2739;
    font-size: 18px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

section.how-it-works-section--4 .container .row .item-description {
  font-size: 18px;
  line-height: 1.5;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .item-description {
    color: #1f2739;
    font-size: 18px;
  }
}

section.how-it-works-section--4 .container .row:nth-child(even) .number {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

section.how-it-works-section--4 .container .row:nth-child(even) .item {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

section.how-it-works-section--4 .container .action {
  text-align: center;
  width: 100%;
}

/**
 *
 *  Parallax Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.parallax-features-section {
  position: relative;
  padding-bottom: 50px;
  color: #f4f8f9;
}

section.parallax-features-section header.section-header h2, section.parallax-features-section header.section-header h3, section.parallax-features-section header.section-header h4 {
  color: #fff;
}

section.parallax-features-section header.section-header hr {
  background: #fff;
}

section.parallax-features-section .section-features {
  margin-top: 80px;
}

section.parallax-features-section .section-features .phone img {
  margin-bottom: -90%;
}

section.parallax-features-section .section-features .text-left {
  margin-top: 10%;
}

section.parallax-features-section .section-features .text-left .icon-wrap {
  margin-right: 30px;
  float: left;
}

section.parallax-features-section .section-features .text-right {
  margin-top: 10%;
}

section.parallax-features-section .section-features .text-right .icon-wrap {
  margin-left: 30px;
  float: right;
}

section.parallax-features-section .section-features .feature {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

section.parallax-features-section .section-features .feature .text-wrap {
  display: inline-block;
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}

section.parallax-features-section .section-features .feature .text-wrap h3 {
  color: #F15C2E;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

section.parallax-features-section .section-features .feature .text-wrap p {
  color: #bdc3c7;
  font-size: 0.875rem;
}

section.parallax-features-section .section-features .feature .icon-wrap {
  display: block;
}

section.parallax-features-section .section-features .feature .icon-wrap .circle {
  width: 70px;
  height: 70px;
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
}

section.parallax-features-section .section-features .feature, section.parallax-features-section .section-features .feature p, section.parallax-features-section .section-features .feature .icon-wrap .circle {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

section.parallax-features-section .section-features .feature:hover p {
  color: #fff;
}

section.parallax-features-section .section-features .feature:hover .icon-wrap .circle {
  background-color: #F15C2E;
}

@media (max-width: 991px) {
  section.parallax-features-section .section-features .phone {
    display: none;
  }
  section.parallax-features-section .section-features .text-left {
    margin-top: 10%;
  }
  section.parallax-features-section .section-features .text-left .icon-wrap {
    margin-right: 30px;
    float: left;
  }
  section.parallax-features-section .section-features .text-right {
    margin-top: 10%;
    text-align: left;
  }
  section.parallax-features-section .section-features .text-right .icon-wrap {
    margin-left: 0;
    margin-right: 30px;
    float: left;
  }
}

/**
 *
 *  Privacy Policy Style
 *
 *  @package gleesik_layout
 *
 **/
section.privacy-policy-section {
  background-color: #fff !important;
  padding: 10px 0 10px;
}

section.privacy-policy-section h3, section.privacy-policy-section h4 {
  margin-bottom: 0.5em;
}

section.privacy-policy-section h4 {
  font-weight: normal;
  font-style: italic;
}

section.privacy-policy-section .container iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
}

@media (max-width: 768px) {
  section.privacy-policy-section .container iframe {
    height: 300px;
  }
}

section.privacy-policy-section .container .actions {
  margin: 60px auto 0 auto;
  text-align: center;
}

section.privacy-policy-section .container .actions > a {
  margin: 15px;
}

@media (max-width: 768px) {
  section.privacy-policy-section .container .actions > a {
    margin: 2px;
    width: 150px;
    padding: 10px 0;
  }
}

section.privacy-policy-section--1 {
  padding: 0;
}

section.privacy-policy-section--1 ul {
  line-height: 1.5em;
  margin: 0.5em 0em 0.5em 0;
  list-style: disc;
}

section.privacy-policy-section--1 ul ul {
  margin: 0;
  list-style: circle;
  padding-left: 1em;
  font-size: 90%;
}

section.privacy-policy-section--1 .number {
  color: white;
  display: block;
  background-color: #f15d2f;
  padding: .2em;
  font-weight: bold;
  margin-right: 0.2em;
  font-size: 150%;
  font-family: "Titillium Web", Arial, sans-serif;
}

section.privacy-policy-section--1 .section-top-container {
  padding: 60px 0 0 0;
  background-color: #fff !important;
  width: 100%;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container {
    padding: 0;
  }
}

section.privacy-policy-section--1 .section-top-container .container {
  border-top: 1px solid #f15d2f;
  border-left: 1px solid #f15d2f;
  border-right: 1px solid #f15d2f;
  padding: 50px 0 20px;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container .container {
    border: none;
    padding-bottom: 0;
  }
}

section.privacy-policy-section--1 .section-top-container .container .title {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 29px;
  margin-bottom: 40px;
  color: #2d3e50;
}

section.privacy-policy-section--1 .section-top-container .container .title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #f15d2f;
  left: -webkit-calc(50% - 25px);
  left: calc(50% - 25px);
  bottom: -15px;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container .container .title {
    font-size: 20px;
    text-transform: inherit;
    color: #2d3e50;
  }
  section.privacy-policy-section--1 .section-top-container .container .title::after {
    bottom: -20px;
  }
}

section.privacy-policy-section--1 .section-top-container .container .description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container .container .description {
    color: #5c5d5f;
    padding: 0 5%;
  }
}

section.privacy-policy-section--1 .section-top-container .container .row {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container {
  position: relative;
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item {
  padding: 0 30px;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item {
    background-color: #F1F3F6;
    padding: 50px 5%;
  }
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item-title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item-title-wrapper img {
  margin-right: 15px;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item-title-wrapper h4 {
    text-align: center;
    width: 100%;
    color: #2d3e50;
    font-size: 18px;
  }
  section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item-title-wrapper img {
    display: none;
  }
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item-title {
  font-size: 20px;
  text-transform: uppercase;
  color: #2d3e50;
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item-description {
  font-size: 18px;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container .container .row > .item-container .item-description {
    font-size: 18px;
  }
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container:first-child::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 300px;
  background-color: #f15d2f;
  top: 60px;
  right: 0;
}

section.privacy-policy-section--1 .section-top-container .container .row > .item-container:first-child {
  position: relative;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-top-container .container .row > .item-container:first-child {
    position: relative;
  }
  section.privacy-policy-section--1 .section-top-container .container .row > .item-container:first-child::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 1px;
    background-color: #f15d2f;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
    bottom: 0;
    top: inherit;
  }
}

section.privacy-policy-section--1 .section-bottom-container {
  padding: 0;
  background-color: #2d3e50 !important;
  color: #fff;
  width: 100%;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container {
    background-color: #fff !important;
    color: #2d3e50;
  }
}

@media (min-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container .number {
    color: #2d3e50;
  }
}

section.privacy-policy-section--1 .section-bottom-container .container {
  border-left: 1px solid #f15d2f;
  border-right: 1px solid #f15d2f;
  border-bottom: 1px solid #f15d2f;
  padding: 70px 0 0 0;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container .container {
    padding-top: 0px;
    border: none;
  }
}

section.privacy-policy-section--1 .section-bottom-container .container__label {
  display: none;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container .container__label {
    display: block;
    padding: 50px 5%;
    font-size: 18px;
  }
}

section.privacy-policy-section--1 .section-bottom-container .container .item-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

section.privacy-policy-section--1 .section-bottom-container .container .item-container:last-child {
  background-color: #2d3e50;
  color: #fff;
  padding: 50px 0 10px;
}

section.privacy-policy-section--1 .section-bottom-container .container .item-container .item {
  padding: 0 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container .container .item-container .item {
    padding: 0 5%;
  }
}

section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-title-wrapper img {
  margin-right: 15px;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-title-wrapper img {
    display: none;
  }
}

section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-title {
  font-size: 20px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-title {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
  }
  section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-title::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 1px;
    background-color: #f15d2f;
    bottom: -20px;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
  }
}

section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-description,
section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-description > p {
  font-size: 18px;
}

@media (max-width: 768px) {
  section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-description,
  section.privacy-policy-section--1 .section-bottom-container .container .item-container .item-description > p {
    font-size: 18px;
  }
}

section.privacy-policy-section--1 .section-bottom-container .action {
  text-align: center;
  padding: 70px 0;
}

section.how-it-works-section--4 {
  background-color: #fff !important;
  padding: 80px 0;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 {
    padding-bottom: 10px;
  }
}

section.how-it-works-section--4 .container .title {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 29px;
  margin-bottom: 50px;
  color: #2d3e50;
}

section.how-it-works-section--4 .container .title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #f15d2f;
  left: -webkit-calc(50% - 25px);
  left: calc(50% - 25px);
  bottom: -15px;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .title {
    font-size: 20px;
    text-transform: inherit;
    margin-bottom: 40px;
  }
  section.how-it-works-section--4 .container .title::after {
    width: 36px;
    left: -webkit-calc(50% - 18px);
    left: calc(50% - 18px);
    bottom: -20px;
    top: inherit;
  }
}

section.how-it-works-section--4 .container .description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .description {
    font-size: 18px;
  }
}

section.how-it-works-section--4 .container .row {
  margin-bottom: 60px;
  position: relative;
}

section.how-it-works-section--4 .container .row .number {
  width: 25%;
  color: #f15d2f;
  text-align: center;
  font-size: 9rem;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .number {
    position: absolute;
    top: 20px;
    left: 0;
    color: #2d3e50;
    opacity: 0.2;
    font-size: 96px;
  }
}

section.how-it-works-section--4 .container .row .item {
  width: 75%;
  border: 2px solid #f15d2f;
  padding: 40px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .item {
    width: 93%;
    padding: 40px 5%;
  }
}

section.how-it-works-section--4 .container .row .item-title {
  font-size: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
  color: #2d3e50;
  line-height: 1.5;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .item-title {
    color: #1f2739;
    font-size: 18px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

section.how-it-works-section--4 .container .row .item-description {
  font-size: 18px;
  line-height: 1.5;
  color: #2d3e50;
}

@media (max-width: 768px) {
  section.how-it-works-section--4 .container .row .item-description {
    color: #1f2739;
    font-size: 18px;
  }
}

section.how-it-works-section--4 .container .row:nth-child(even) .number {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

section.how-it-works-section--4 .container .row:nth-child(even) .item {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

section.how-it-works-section--4 .container .action {
  text-align: center;
  width: 100%;
}

/**
 *
 *  Blog Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.blog-section {
  padding: 150px 0;
  background-color: #f1f3f6;
}

@media (max-width: 768px) {
  section.blog-section {
    padding: 50px 0;
  }
}

section.blog-section .row {
  -webkit-box-align: initial;
  -webkit-align-items: initial;
      -ms-flex-align: initial;
          align-items: initial;
}

section.blog-section.page-layout {
  padding-top: 30px;
}

section.blog-section.page-layout .blog-articles-container {
  margin-top: 0;
}

section.blog-section.page-layout.no-sidebar .blog-articles-container {
  width: 100%;
}

section.blog-section.page-layout .blog-articles-container > .title {
  text-align: center;
}

section.blog-section.page-layout .blog-articles-container > .subtitle {
  text-align: center;
  margin-top: 1rem;
}

section.blog-section.page-layout article.border-article {
  border: 1px solid gray;
  padding: 1em;
  border-style: dashed;
}

section.blog-section.page-layout article.blog-article {
  overflow: hidden;
}

section.blog-section.page-layout article.blog-article .article-boxes {
  float: left;
  width: 100%;
  padding: 50px 0;
}

section.blog-section.page-layout article.blog-article .article-boxes section.offer-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background-color: #e3e9ed;
  color: #5e5e5e;
}

section.blog-section.page-layout article.blog-article .article-boxes section.offer-section .button-cta {
  border: 2px solid #F15C2E;
  color: #F15C2E;
}

section.blog-section.page-layout article.blog-article .article-boxes section.offer-section .button-cta:hover, section.blog-section.page-layout article.blog-article .article-boxes section.offer-section .button-cta:active {
  color: #fff;
  background-color: #F15C2E;
}

section.blog-section.page-layout article.blog-article .article-boxes .box {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

section.blog-section.page-layout article.blog-article .article-boxes .box:last-child {
  margin-bottom: 0;
}

section.blog-section.page-layout article.blog-article .article-boxes .box span.title {
  float: left;
  color: #2d3e50;
  font-weight: bold;
  width: 100px;
}

@media (max-width: 768px) {
  section.blog-section.page-layout article.blog-article .article-boxes .box span.title {
    width: 100%;
    font-size: 1.2rem;
    padding-top: 0;
    margin-bottom: 20px;
  }
  section.blog-section.page-layout article.blog-article .article-boxes .box.share-article {
    background-color: #e3e9ed;
    width: 100%;
    position: fixed;
    padding: 0.2rem;
    bottom: 0px;
    left: 0px;
    z-index: 99999999999;
  }
  section.blog-section.page-layout article.blog-article .article-boxes .box.share-article .social-icons {
    width: 100%;
  }
  section.blog-section.page-layout article.blog-article .article-boxes .box.share-article ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  section.blog-section.page-layout article.blog-article .article-boxes .box.share-article ul li {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  section.blog-section.page-layout article.blog-article .article-boxes .box.share-article ul a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    box-pack: center;
    font-size: 2.5rem;
  }
}

section.blog-section.page-layout article.blog-article .article-boxes .box .box-content {
  float: left;
}

section.blog-section.page-layout article.blog-article .article-boxes .tags-article span.title {
  padding-top: 8px;
}

section.blog-section .blog-articles-container {
  -webkit-box-align: initial;
  -webkit-align-items: initial;
      -ms-flex-align: initial;
          align-items: initial;
}

@media (max-width: 430px) {
  section.blog-section .blog-articles-container .col-md-4 {
    width: 100%;
    left: 0;
  }
}

section.blog-section .blog-articles-container article.blog-article {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  section.blog-section .blog-articles-container article.blog-article {
    max-width: 100%;
  }
}

section.blog-section .blog-articles-container article.blog-article img {
  max-width: 100%;
  margin: 0 auto;
}

section.blog-section .blog-articles-container article.blog-article.blog-single-page header.article-header .article-title h3.title {
  color: #2d3e50;
  font-size: 2rem;
}

section.blog-section .blog-articles-container article.blog-article header.article-header {
  display: block;
  position: relative;
  width: 100%;
  float: left;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .article-author .avatar {
  width: 38px;
  height: 38px;
  -webkit-background-size: auto 100%;
          background-size: auto 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  display: inline-block;
  vertical-align: top;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 10px;
  position: relative;
  bottom: 8px;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .article-date {
  float: right;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  background-color: #fff;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap a {
  width: 100%;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.preview {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
  width: 100%;
}

@media (max-width: 992px) {
  section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.preview {
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px;
  }
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.vertical-preview {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 250px;
  width: 100%;
}

@media (max-width: 992px) {
  section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.vertical-preview {
    height: 200px;
  }
}

@media (max-width: 768px) {
  section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.vertical-preview {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.top {
  -o-object-position: top;
     object-position: top;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.center {
  -o-object-position: center;
     object-position: center;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.fill {
  -o-object-fit: fill;
     object-fit: fill;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .img-wrap img.none {
  -o-object-fit: none;
     object-fit: none;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .article-title {
  display: block;
  width: 100%;
  margin: 15px 0 15px;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .article-title h3.title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  section.blog-section .blog-articles-container article.blog-article header.article-header .article-title h3.title {
    text-transform: inherit;
  }
}

section.blog-section .blog-articles-container article.blog-article header.article-header .article-title h3.title a {
  color: #2d3e50;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .article-title h3.title a:hover, section.blog-section .blog-articles-container article.blog-article header.article-header .article-title h3.title a:active {
  color: #F15C2E;
}

section.blog-section .blog-articles-container article.blog-article header.article-header .article-title h4.category {
  color: #F15C2E;
  text-transform: capitalize;
}

section.blog-section .blog-articles-container article.blog-article .article-content {
  font-size: 21px;
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

@media (max-width: 992px) {
  section.blog-section .blog-articles-container article.blog-article .article-content {
    font-size: 18px;
  }
}

section.blog-section .blog-articles-container article.blog-article .article-content strong {
  color: black;
}

section.blog-section .blog-articles-container article.blog-article .article-content table {
  border: 1px solid black;
  margin: 1em auto;
}

section.blog-section .blog-articles-container article.blog-article .article-content td, section.blog-section .blog-articles-container article.blog-article .article-content th {
  padding: 0.3em;
}

section.blog-section .blog-articles-container article.blog-article .article-content td.red, section.blog-section .blog-articles-container article.blog-article .article-content th.red {
  background-color: #ea9999;
}

section.blog-section .blog-articles-container article.blog-article .article-content td.green, section.blog-section .blog-articles-container article.blog-article .article-content th.green {
  background-color: #b6d7a8;
}

section.blog-section .blog-articles-container article.blog-article .article-content td.yellow, section.blog-section .blog-articles-container article.blog-article .article-content th.yellow {
  background-color: #f1c232;
}

section.blog-section .blog-articles-container article.blog-article .article-content th {
  color: #2d3e50;
  font-weight: normal;
  background-color: #e3e9ed;
}

section.blog-section .blog-articles-container article.blog-article .article-content .math {
  display: block;
  font-family: 'Times New Roman', serif;
  background-color: #f3f3f3;
  font-size: 0.9em;
  padding: 1em;
  margin: 1em;
}

section.blog-section .blog-articles-container article.blog-article .article-content pre {
  max-width: 80vw;
}

section.blog-section .blog-articles-container article.blog-article .article-content iframe {
  max-width: 100%;
}

section.blog-section .blog-articles-container article.blog-article .article-content em, section.blog-section .blog-articles-container article.blog-article .article-content i {
  background-color: #f5e2dd;
}

section.blog-section .blog-articles-container article.blog-article .article-content ol {
  list-style: decimal;
  margin: 1em 1em 1em 1.2em;
  line-height: 1.2em;
  padding-left: 0.3em;
}

section.blog-section .blog-articles-container article.blog-article .article-content ol li {
  margin-bottom: 0.5em;
}

section.blog-section .blog-articles-container article.blog-article .article-content ul {
  list-style: disc;
  margin: 1em 1em 1em 1.2em;
  line-height: 1.2em;
  padding-left: 0.3em;
}

section.blog-section .blog-articles-container article.blog-article .article-content ul li {
  margin-bottom: 0.5em;
}

section.blog-section .blog-articles-container article.blog-article .article-content ul ul {
  list-style: circle;
}

section.blog-section .blog-articles-container article.blog-article .article-content ul ul ul {
  list-style: square;
}

section.blog-section .blog-articles-container article.blog-article .article-content .article-date {
  width: 100px;
  float: left;
  padding-right: 30px;
  color: #fff;
  text-transform: uppercase;
}

section.blog-section .blog-articles-container article.blog-article .article-content .article-date .date {
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 5px;
  background: #F15C2E;
}

section.blog-section .blog-articles-container article.blog-article .article-content .article-date .date .day {
  font-size: 1.875rem;
}

section.blog-section .blog-articles-container article.blog-article .article-content .article-date .date .month {
  font-size: 1rem;
}

section.blog-section .blog-articles-container article.blog-article .article-content .article-date .time {
  width: 100%;
  padding: 10px 0;
  background: #F15C2E;
}

section.blog-section .blog-articles-container article.blog-article .article-content .article-text {
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
  font-size: 0.9rem;
  float: left;
}

section.blog-section .blog-articles-container article.blog-article .article-content .article-text p {
  line-height: 1.4;
}

section.blog-section .blog-articles-container article.blog-article .article-content .show-more {
  display: block;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  float: left;
}

section.blog-section .blog-articles-container article.blog-article .article-content .show-more .button {
  float: left;
  margin: 0 0 0 100px;
}

section.blog-section .blog-articles-container article.blog-article .article-content h1, section.blog-section .blog-articles-container article.blog-article .article-content h2, section.blog-section .blog-articles-container article.blog-article .article-content h3, section.blog-section .blog-articles-container article.blog-article .article-content h4, section.blog-section .blog-articles-container article.blog-article .article-content h5, section.blog-section .blog-articles-container article.blog-article .article-content h6 {
  margin-bottom: 1em;
}

section.blog-section .blog-articles-container article.blog-article .article-content h2, section.blog-section .blog-articles-container article.blog-article .article-content h3, section.blog-section .blog-articles-container article.blog-article .article-content h4, section.blog-section .blog-articles-container article.blog-article .article-content h5, section.blog-section .blog-articles-container article.blog-article .article-content h6 {
  margin-top: 1em;
}

section.blog-section .view-posts > div {
  margin-top: -50px;
  text-align: center;
}

@media (max-width: 768px) {
  section.blog-section .view-posts > div {
    text-align: left;
  }
}

section.blog-section .view-posts .button-cta {
  margin-bottom: 0;
  float: inherit !important;
}

/**
 *
 *  Team
  Section Style
 *
 *  @package gleesik_layout
 *
 **/
.author-widget img {
  max-height: 150px;
  margin: 0 auto;
  -webkit-border-radius: 150px;
          border-radius: 150px;
}

section.team-section .team-members-container {
  margin-top: 80px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (max-width: 600px) and (min-width: 430px) {
  section.team-section .team-members-container .col-md-3 {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
  }
}

@media (max-width: 430px) {
  section.team-section .team-members-container .col-md-3 {
    width: 100%;
  }
}

section.team-section .team-members-container .team-member {
  background: #fff;
  margin-bottom: 30px;
  height: 100%;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

section.team-section .team-members-container .team-member .img-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
}

section.team-section .team-members-container .team-member .img-wrapper img {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  padding: 0.5em;
}

section.team-section .team-members-container .team-member .img-wrapper:before, section.team-section .team-members-container .team-member .img-wrapper:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(241, 92, 46, 0.8);
  z-index: 1;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

section.team-section .team-members-container .team-member .img-wrapper:after {
  content: "\e623";
  font-family: '7-stroke';
  font-size: 4rem;
  width: auto;
  height: auto;
  color: #fff;
  background: transparent;
}

section.team-section .team-members-container .team-member .team-member-content {
  padding: 30px 30px 20px 30px;
}

section.team-section .team-members-container .team-member .team-member-content h3.name {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #2d3e50;
  text-transform: uppercase;
  margin-bottom: 5px;
}

section.team-section .team-members-container .team-member .team-member-content h4.tagline {
  font-size: 0.875rem;
}

section.team-section .team-members-container .team-member .team-member-content .social-icons {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 30px;
}

section.team-section .team-members-container .team-member .team-member-content .social-icons .icons {
  display: inline-block;
}

section.team-section .team-members-container .team-member .team-member-content .social-icons .icons li {
  margin-bottom: 10px;
}

section.team-section .team-members-container .team-member .team-member-content .social-icons .icons li a {
  color: #5e5e5e;
}

section.team-section .team-members-container .team-member .team-member-content .social-icons .icons li a:hover, section.team-section .team-members-container .team-member .team-member-content .social-icons .icons li a:active {
  color: #F15C2E;
}

section.team-section .team-members-container .team-member:hover {
  -webkit-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.52);
          box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.52);
}

section.team-section .team-members-container .team-member:hover .img-wrapper:before, section.team-section .team-members-container .team-member:hover .img-wrapper:after {
  opacity: 1;
}

/**
 *
 *  Contact Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.contact-section {
  color: #f4f8f9;
}

section.contact-section header.section-header h2, section.contact-section header.section-header h3, section.contact-section header.section-header h4 {
  color: #fff;
}

section.contact-section header.section-header hr {
  background: #fff;
}

section.contact-section .form-container {
  margin-top: 80px;
}

section.contact-section .form-container form.contact-form .col-md-6, section.contact-section .form-container form.contact-form .col-md-12 {
  margin-bottom: 30px;
}

section.contact-section .form-container form.contact-form input, section.contact-section .form-container form.contact-form textarea {
  color: #fff;
}

section.contact-section .form-container form.contact-form input:hover, section.contact-section .form-container form.contact-form input:active, section.contact-section .form-container form.contact-form textarea:hover, section.contact-section .form-container form.contact-form textarea:active {
  color: #fff;
  border-color: #F15C2E;
  background: rgba(241, 92, 46, 0.25);
}

section.contact-section .form-container form.contact-form input:hover::-webkit-input-placeholder, section.contact-section .form-container form.contact-form input:active::-webkit-input-placeholder, section.contact-section .form-container form.contact-form textarea:hover::-webkit-input-placeholder, section.contact-section .form-container form.contact-form textarea:active::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

section.contact-section .form-container form.contact-form input:hover::-moz-placeholder, section.contact-section .form-container form.contact-form input:active::-moz-placeholder, section.contact-section .form-container form.contact-form textarea:hover::-moz-placeholder, section.contact-section .form-container form.contact-form textarea:active::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

section.contact-section .form-container form.contact-form input:hover:-ms-input-placeholder, section.contact-section .form-container form.contact-form input:active:-ms-input-placeholder, section.contact-section .form-container form.contact-form textarea:hover:-ms-input-placeholder, section.contact-section .form-container form.contact-form textarea:active:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

section.contact-section .form-container form.contact-form input:hover:-moz-placeholder, section.contact-section .form-container form.contact-form input:active:-moz-placeholder, section.contact-section .form-container form.contact-form textarea:hover:-moz-placeholder, section.contact-section .form-container form.contact-form textarea:active:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

section.contact-section .form-container form.contact-form .form-action {
  text-align: center;
  padding-top: 30px;
}

section.contact-section .form-container form.contact-form .form-action .send-button {
  text-transform: uppercase;
  width: 40%;
}

@media (max-width: 500px) {
  section.contact-section .form-container form.contact-form .form-action .send-button {
    display: block;
    width: 100%;
  }
}

/**
 *
 *  Download Section Style
 *
 *  @package gleesik_layout
 *
 **/
section.alpha {
  background-color: antiquewhite;
}

section.alpha .alpha-header {
  margin: 1em;
  text-align: center;
}

section.alpha .alpha-header .title {
  font-size: 2em;
  font-weight: bold;
}

section.alpha .alpha-header p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5em;
}

section.alpha .alpha-header img {
  height: 1.5em;
  display: inline;
}

section.download-section {
  padding: 0;
  font-size: 18px;
}

section.download-section .site-section__description {
  text-transform: uppercase;
}

section.download-section .download {
  padding: 60px 0;
}

section.download-section .download:nth-child(2) {
  background-color: #F1F3F6;
  color: #1f2739;
}

@media (max-width: 768px) {
  section.download-section .download:nth-child(2) {
    padding: 0;
    background-color: #fff;
  }
  section.download-section .download:nth-child(2) p {
    color: #5c5d5f;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: center;
  }
  section.download-section .download:nth-child(2) .download__left {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.download-section .download:nth-child(2) .download__left .action-description {
    display: none;
  }
}

section.download-section .download:last-child {
  background-color: #2d3e50;
  color: #fff;
}

@media (max-width: 768px) {
  section.download-section .download:last-child {
    background-color: #fff;
    color: #5c5d5f;
    padding: 0;
    text-align: center;
    font-size: 18px;
  }
}

section.download-section .download-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

section.download-section .download-title h2 {
  font-size: 50px;
}

section.download-section .download-title img {
  margin-right: 15px;
}

@media (max-width: 768px) {
  section.download-section .download-title {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
  section.download-section .download-title h2 {
    font-size: 22px;
    width: 100%;
    text-align: left;
    color: #2d3e50;
  }
  section.download-section .download-title img {
    height: 40px;
  }
}

section.download-section .download-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

section.download-section .download-description {
  font-size: 29px;
  line-height: 1.5;
  margin-bottom: 30px;
}

section.download-section .download .link {
  margin-right: 20px;
}

section.download-section .download__left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 170px;
}

@media (max-width: 768px) {
  section.download-section .download__left {
    min-height: inherit;
    width: 100%;
  }
}

section.download-section .download-action {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  section.download-section .download-action {
    padding: 0 !important;
    margin-bottom: 50px;
  }
}

section.download-section .download-action .button {
  padding-left: 25px;
  padding-right: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

section.download-section .download-action code {
  background-color: #f15d2f;
  padding: 15px 20px;
  text-align: center;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  width: 100%;
  font-size: 20px;
}

@media (max-width: 768px) {
  section.download-section .download-action code {
    margin-top: 30px;
    background-color: #2d3e50;
    color: #fff;
    font-size: 14px;
    padding: 40px 0;
    white-space: nowrap;
    overflow-x: auto;
  }
}

section.download-section .download-action .action-description {
  position: absolute;
  bottom: -1.8em;
  font-size: 12px;
  min-width: 400px;
}

section.download-section .download-command {
  margin-top: 50px;
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  section.download-section .download-command {
    margin-bottom: 30px;
    margin-top: 0;
  }
}

section.download-section .download-command .command-label {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

section.download-section .download-command .download-action {
  padding: 0 25px;
}

section.download-section .download-command .download-action .button {
  width: 100%;
}

section.download-section .download-command .download-action .action-description {
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
  text-align: center;
}

section.download-section .download hr.orange {
  background-color: #f15d2f;
  margin-bottom: 50px;
}

section.download-section .download .row {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.download-section .download .download-choices .choice-downloads .fas.fa-cube {
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Fimages%2Fmac-os-package.svg");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  section.download-section .download .download-choices > div {
    background-color: #F1F3F6;
    color: #1f2739;
    margin-top: 50px;
    width: 110%;
    margin-left: -5%;
    margin-right: -5%;
  }
  section.download-section .download .download-choices > div:last-child {
    margin-bottom: 80px;
  }
}

section.download-section .download .download-choices .choice {
  background-color: #fff;
  color: #1f2739;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 20px;
  min-height: 325px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

section.download-section .download .download-choices .choice-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

section.download-section .download .download-choices .choice-title .circle {
  margin-right: 15px;
  background-color: #f15d2f;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 18px;
}

section.download-section .download .download-choices .choice code {
  background-color: #1f2739;
  color: #fff;
  width: 100%;
  overflow-x: auto;
  height: 35px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  white-space: nowrap;
  overflow-x: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  font-size: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.download-section .download .download-choices .choice-hint {
  line-height: 1.5;
  text-align: center;
}

section.download-section .download .download-choices .choice-description {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 10px;
}

section.download-section .download .download-choices .choice-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #f15d2f;
  color: #fff;
  padding: 7px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  text-align: center;
  font-size: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
}

section.download-section .download .download-choices .choice-action i {
  font-size: 18px;
  margin-right: 5px;
}

section.download-section .download .download-choices .choice-command {
  background-color: #1f2739;
  color: #fff;
  padding: 7px;
  font-size: 12px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  height: 35px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.download-section .download .download-choices .choice-hint {
  color: #f15d2f;
  margin-top: 30px;
  font-size: 14px;
}

section.download-section .download .download-choices .choice-downloads {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

section.download-section .download .download-choices .choice-downloads .download-item {
  font-size: 14px;
  color: #f15d2f;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 7px;
}

section.download-section .download .download-choices .choice-downloads .download-item i {
  font-size: 18px;
  margin-right: 5px;
}

@media (max-width: 768px) {
  section.download-section .download .download-choices .choice {
    background-color: transparent;
    min-height: inherit;
    padding-top: 30px;
  }
  section.download-section .download .download-choices .choice-title {
    position: relative;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 20px;
    text-transform: inherit;
  }
  section.download-section .download .download-choices .choice-title .circle {
    position: absolute;
    left: 10px;
  }
  section.download-section .download .download-choices .choice-description {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}

section.download-section .download-popup {
  position: fixed;
  width: 100%;
  z-index: 200000;
  background-color: rgba(204, 204, 204, 0.7);
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

section.download-section .download-popup .popup {
  margin: 0 auto;
  border: 1px solid #ccc;
  max-width: 80rem;
  width: 80%;
  background: white;
}

section.download-section .download-popup .popup .popup-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

section.download-section .download-popup .popup .popup-title img {
  margin-right: .5em;
}

section.download-section .download-popup .popup .popup-title .title {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

section.download-section .download-popup .popup .popup-title a {
  cursor: pointer;
}

section.download-section .download-popup .popup .popup-content {
  background-color: #f1f3f6;
  padding: 2rem;
}

section.download-section .download-popup .popup .popup-content .action-description {
  margin-top: 2em;
}

section.download-section .download-popup .popup .popup-content .action-description ul.downloads {
  margin-top: 0.3em;
  list-style: disc;
  padding-left: 1em;
}

section.download-section .download-popup .popup .popup-content .action-description ul.downloads li {
  padding: 0.3em 0em;
}

section.download-section .download-popup .popup .popup-content .action-description ul.downloads span.sha {
  font-family: monospace;
  font-size: 80%;
  word-break: break-word;
}

section.download-section .download-list .action-description ul.downloads {
  margin-top: 0.3em;
  list-style: disc;
  padding-left: 1em;
}

section.download-section .download-list .action-description ul.downloads li {
  padding: 0.3em 0em;
}

section.download-section .download-list .action-description ul.downloads span.sha {
  font-family: monospace;
  font-size: 80%;
}

/**
 *
 *  Footer Style
 *
 *  @package gleesik_layout
 *
 **/
footer.site-footer {
  position: relative;
  color: #848484;
  background-color: #161c2a;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
}

footer.site-footer .container {
  position: relative;
}

footer.site-footer .container .scrollup-container {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

footer.site-footer .container .scrollup-container .footer-logo {
  display: none;
}

footer.site-footer .container .scrollup-container .scrollup {
  width: 48px;
  height: 48px;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 50;
}

footer.site-footer .container .scrollup-container .scrollup i {
  font-size: 38px;
  font-weight: bold;
  color: #2d3e50;
}

footer.site-footer .row {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer.site-footer .row .footer-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

footer.site-footer .row .footer-menu__col.quick-menu {
  display: none;
}

footer.site-footer .row .footer-menu__col .footer-link {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  line-height: 2.5;
}

footer.site-footer .row .footer-menu__col .footer-link:hover {
  color: #f15d2f;
}

footer.site-footer .row .footer-menu__col ul li a {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 2.5;
}

footer.site-footer .row .footer-menu__col ul li a:hover {
  color: #f15d2f;
}

footer.site-footer .row .footer-socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 250px;
  min-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

footer.site-footer .row .footer-socials a {
  font-size: 1.8em;
  color: #fff;
  line-height: 1.5;
}

footer.site-footer .row .footer-socials a:hover {
  color: #f15d2f;
}

footer.site-footer .row .footer-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1em;
  color: #e3e9ed;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

footer.site-footer .row .footer-text .v-cross {
  width: 1px;
  height: 20px;
  background: #e3e9ed;
}

footer.site-footer .row.footer-bottom-1 {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

footer.site-footer .row.footer-bottom-2 {
  display: none;
}

footer.site-footer .footer-logo img {
  width: 120px;
}

@media (max-width: 1199px) {
  footer.site-footer .container .scrollup-container {
    position: inherit;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
  footer.site-footer .container .scrollup-container .footer-logo {
    display: block;
  }
  footer.site-footer .container .row.footer-bottom-1 {
    display: none;
  }
  footer.site-footer .container .row.footer-bottom-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  footer.site-footer .container .row.footer-bottom-2 .footer-text {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.5;
  }
}

@media (max-width: 720px) {
  footer.site-footer .row .footer-menu {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer.site-footer .row .footer-menu__col.quick-menu {
    display: block;
  }
  footer.site-footer .row .footer-menu__col.quick-menu .footer-link {
    text-decoration: none;
    line-height: 3.5;
  }
  footer.site-footer .row .footer-menu__col.full-menu {
    display: none;
  }
}

body.prenet {
  font: 16px/1.4em "Titillium Web", Arial, sans-serif;
  background-image: url("/?originalUrl=https%3A%2F%2Fdiode.io%2Fprenet%2Fbackground.png");
}

body.prenet #app {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.prenet .header {
  padding: 25px 0px;
  -webkit-box-shadow: 0px 10px 8px -15px #111;
          box-shadow: 0px 10px 8px -15px #111;
  background-color: #2d3e50;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.prenet .header .logo {
  padding-left: 7%;
}

body.prenet .header .logo img {
  width: 120px;
}

body.prenet ul.navbar {
  margin-right: 7%;
  padding-left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

body.prenet ul.navbar li {
  display: block;
  padding-left: 2em;
}

body.prenet ul.navbar li a {
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

body.prenet ul.navbar li a:hover {
  color: #f15c2e;
}

body.prenet ul.navbar li a.router-link-exact-active, body.prenet ul.navbar li a.router-link-active {
  padding-bottom: 3px;
  border-bottom: 1px solid #f15c2e;
}

body.prenet .page-content {
  margin: 0% 7%;
}

body.prenet #home .site-navigation-bar {
  padding: 0% 13% 0% 13%;
}

body.prenet #home .header-banner {
  margin-top: 5%;
}

body.prenet .column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

body.prenet a {
  color: #5e5e5e;
  cursor: pointer;
  z-index: 100;
}

body.prenet a.no-decoration {
  text-decoration: none;
}

body.prenet .title {
  width: 100%;
  height: 80px;
  text-align: left;
  background-color: #f15c2e;
  padding: 1% 7%;
  margin: 0;
}

body.prenet .title p {
  color: white;
  text-align: right;
  font-size: 14px;
  text-transform: capitalize;
  float: right;
}

body.prenet .title p a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #ffffff;
}

body.prenet .title h1 {
  color: #ffffff;
  font-weight: normal;
  font-size: 1.2em;
}

body.prenet .title i.fa {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  z-index: 99;
  width: 20px;
  cursor: pointer;
}

body.prenet .input-button {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  border: 1.3px solid white;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  background-color: #f15c2e;
  min-width: 308px;
}

body.prenet .input-button.search-bar {
  width: 350px;
}

body.prenet .input-button input[type="text"] {
  padding: 5px;
  float: left;
  width: 80%;
  background-color: #f15c2e;
  color: white;
  border: 0;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  padding-left: 12%;
}

body.prenet .input-button input[type="text"]:focus {
  text-decoration: underline;
}

body.prenet .input-button input[type="text"]::-webkit-input-placeholder {
  /* Edge */
  color: #c0c5cb;
}

body.prenet .input-button input[type="text"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c0c5cb;
}

body.prenet .input-button input[type="text"]::-moz-placeholder {
  color: #c0c5cb;
}

body.prenet .input-button input[type="text"]::-ms-input-placeholder {
  color: #c0c5cb;
}

body.prenet .input-button input[type="text"]::placeholder {
  color: #c0c5cb;
}

body.prenet .input-button input[type="text"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #f15c2e inset !important;
  -webkit-text-fill-color: white;
  caret-color: white;
}

body.prenet .input-button input[type="text"].no-icon {
  padding-left: 3%;
}

body.prenet .input-button button {
  position: absolute;
  top: 1px;
  right: 0.6%;
  border: 1px solid #d6442e;
  border-left: none;
  color: #000000;
  min-width: 58px;
  margin: 0px;
  background: #ffffff;
}

body.prenet .input-button button[disabled] {
  cursor: not-allowed !important;
  border: none;
  background-color: #b4b4b4;
}

body.prenet .input-button button[name="search"] {
  right: 0.6%;
}

body.prenet .input-button::after {
  content: "";
  clear: both;
  display: table;
}

body.prenet .input-button.white {
  border: 1.3px solid #f15c2e;
  background-color: white;
}

body.prenet .input-button.white input {
  background-color: white;
  color: grey;
}

body.prenet .input-button.white button {
  border: 1px solid #d6442e;
  border-left: none;
  color: white;
  background: #F15E40;
}

body.prenet .input-button.white button[disabled] {
  cursor: not-allowed !important;
  border: none;
  background-color: #b4b4b4;
}

body.prenet .logs-data {
  font-size: 10px;
  line-height: 12px;
  max-height: 700px;
  max-width: 100%;
  overflow-x: auto;
}

body.prenet td.fleet,
body.prenet th.fleet {
  background-color: #ebebeb;
}

body.prenet table {
  table-layout: fixed;
  border-top: 0 !important;
}

body.prenet table caption {
  text-align: left;
  padding: 12px 10px 5px 10px;
  background: rgb(240, 248, 255);;
  color: #000000;
}

body.prenet table .empty-search {
  color: #eb411d;
  padding: 20px 45px 45px 45px;
}

body.prenet table.data {
  margin-top: 25px;
  border: 1px solid #ddd;
  width: 100%;
  background-color: rgb(240, 248, 255);
  border-collapse: collapse;
  border-spacing: 0;
}

body.prenet table.data td {
  word-wrap: break-word;
}

body.prenet table.transposed {
  border-top: 1px solid #ddd !important;
  color: #000;
}

body.prenet table.transposed tr th {
  width: 20%;
  font-weight: normal;
  border-right: 1px solid #ddd;
}

body.prenet table.transposed tr td {
  padding-left: 20px;
}

body.prenet table.nested {
  margin: 5px;
  border-top: 1px solid #ddd !important;
}

body.prenet table.small-margin {
  margin-top: 25px;
}

body.prenet table.inner {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  width: 100%;
  margin: 0;
}

body.prenet table.inner tr td,
body.prenet table.inner tr th {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  width: 100%;
  margin: 0;
}

body.prenet table.data tr:nth-child(2n) {
  background-color: #f2f2f2;
}

body.prenet table.data tr.active {
  background-color: #ddd;
  border: 3px solid #d6442e;
}

body.prenet table.data th,
body.prenet table.data td {
  height: 60px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding: 8px;
  vertical-align: middle;
  color: #000000;
}

body.prenet table.data th.big,
body.prenet table.data td.big {
  word-break: break-all;
  min-height: 220px;
  max-height: 640px;
  overflow: scroll;
  display: block;
}

body.prenet table.data th {
  font-size: 16px;
  white-space: nowrap;
  vertical-align: top;
  padding-top: 20px;
  color: #000000;
}

body.prenet table.data td.big {
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

body.prenet .ether-value {
  text-align: right;
  font-family: monospace;
}

body.prenet * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.prenet .error,
body.prenet .bad {
  color: red;
  margin-top: 10px;
}

body.prenet .good,
body.prenet .bad {
  font-weight: bold;
}

body.prenet .good {
  color: green;
}

body.prenet .chart-text {
  /*font: 16px/1.4em "Montserrat", Arial, sans-serif;*/
  fill: #000;
  -ms-transform: translateY(0.25em);
  -webkit-transform: translateY(0.25em);
  transform: translateY(0.25em);
}

body.prenet .chart-number {
  font-size: 0.6em;
  line-height: 1;
  text-anchor: middle;
  -ms-transform: translateY(-0.25em);
  -webkit-transform: translateY(-0.25em);
  transform: translateY(-0.25em);
}

body.prenet .chart-label {
  font-size: 0.2em;
  text-transform: uppercase;
  text-anchor: middle;
  -ms-transform: translateY(0.7em);
  -webkit-transform: translateY(0.7em);
  transform: translateY(0.7em);
}

body.prenet figure {
  border: 1px solid #dbdbdb;
  margin: 25px 0px 0px 0px;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  padding: 8px 40px 5px 12px;
}

body.prenet figure h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0px;
  font-size: 1em;
  color: #000000;
}

body.prenet figure figcaption {
  margin-top: 25px;
}

@media (min-width: 768px) {
  body.prenet figure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

body.prenet .figure-title {
  padding-right: 10px;
  float: left;
  text-transform: capitalize;
}

body.prenet .figure-content {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 10px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

body.prenet .ul1,
body.prenet .ul2 {
  float: left;
  padding-right: 10px;
}

body.prenet .figure-content svg {
  height: auto;
}

body.prenet .figure-key {
  min-width: -webkit-calc(8 / 12);
  min-width: calc(8 / 12);
}

body.prenet .figure-key [class*="shape-"] {
  margin-right: 6px;
}

body.prenet .graphs {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

body.prenet .graphs figure {
  width: 50%;
}

body.prenet .graphs figure .donut {
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

body.prenet .graphs figure.left {
  margin-right: 12.5px;
}

body.prenet .graphs figure.right {
  margin-left: 12.5px;
}

body.prenet .graphs .headline {
  margin: 8px 0 0 6px;
}

body.prenet .graphs .figure-legend {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

body.prenet .graphs .figure-legend div {
  margin-right: 5px;
}

body.prenet .graphs .line-chart {
  background: white;
  width: 100%;
  height: 100%;
  padding: 20px 20px 20px 0;
}

body.prenet .graphs .line-chart .labels.x-labels {
  text-anchor: middle;
  font-size: 0.7em;
}

body.prenet .graphs .line-chart .labels.y-labels {
  text-anchor: end;
  font-size: 0.7em;
}

body.prenet .graphs .line-chart .grid {
  stroke: #ccc;
  stroke-dasharray: 0;
  stroke-width: 2;
}

body.prenet .figure-key-list {
  font-size: 13px;
  margin: 0;
  width: 254px;
  padding: 0;
  list-style: none;
}

body.prenet .figure-key-list.long {
  width: 100%;
}

body.prenet .figure-key-list li {
  margin: 0 0 8px;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

body.prenet .shape-square {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 3px;
}

body.prenet .shape-fuschia {
  background-color: #ce4b99;
}

body.prenet .shape-lemon-lime {
  background-color: #b1c94e;
}

body.prenet .shape-blue {
  background-color: #377bbc;
}

body.prenet .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.prenet .list-complete-item {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  /* display: inline-block; */
  margin-right: 10px;
}

body.prenet .list-complete-enter,
body.prenet .list-complete-leave-to {
  opacity: 0;
  -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
          transform: translateX(-30px);
}

body.prenet .list-complete-leave-active {
  position: absolute;
}

body.prenet button {
  height: 35px;
  background: #ffffff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin: 5px 5px 0 0;
  font-weight: normal;
  font-size: 14px;
  padding: 0 8px;
}

body.prenet .button {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  margin-left: 20px;
  line-height: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #F15C2E;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  color: #ffffff;
  border: none;
}

body.prenet .button strong {
  color: inherit;
}

body.prenet .button .icon {
  height: 1.5em;
  width: 1.5em;
}

body.prenet .button .icon.is-small, body.prenet .button .icon.is-medium, body.prenet .button .icon.is-large {
  height: 1.5em;
  width: 1.5em;
}

body.prenet .button .icon:first-child:not(:last-child) {
  margin-left: -webkit-calc(-0.5em - 1px);
  margin-left: calc(-0.5em - 1px);
  margin-right: 0.25em;
}

body.prenet .button .icon:last-child:not(:first-child) {
  margin-left: 0.25em;
  margin-right: -webkit-calc(-0.5em - 1px);
  margin-right: calc(-0.5em - 1px);
}

body.prenet .button .icon:first-child:last-child {
  margin-left: -webkit-calc(-0.5em - 1px);
  margin-left: calc(-0.5em - 1px);
  margin-right: -webkit-calc(-0.5em - 1px);
  margin-right: calc(-0.5em - 1px);
}

body.prenet .button[disabled] {
  background-color: white;
  border-color: #dbdbdb;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: not-allowed;
  color: grey;
}

body.prenet .headtable {
  width: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -webkit-flex-direction: inherit;
      -ms-flex-direction: inherit;
          flex-direction: inherit;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

body.prenet .headtable figure {
  width: 100%;
}

body.prenet .headtable .doclet {
  width: 30%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 25px 25px 0 0;
  padding: 8px 5px 5px 12px;
  background-color: #ffffff;
  border: 1px solid #c0c5cb;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  height: 88px;
}

body.prenet .headtable .doclet h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0px;
  font-size: 1em;
  color: #000000;
}

body.prenet .headtable .doclet div.link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 11px;
}

body.prenet .headtable .doclet div.link a {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1px;
}

body.prenet .full-width {
  width: 100%;
}

body.prenet .padding-right-10 {
  padding-right: 10px;
}

body.prenet .marginized {
  margin: 10px 15px;
  
}

body.prenet .marginized-top {
  margin-top: 15px;
}

body.prenet .marginized-top-2 {
  margin-top: 30px;
}

body.prenet .marginized-bottom {
  margin-bottom: 10px;
  font-weight: 700;
}
.caption-box {
  background-color: lightblue;
}

body.prenet .btn-loading {
  height: 14px;
  margin-right: 5px;
  position: absolute;
  top: 5px;
  left: 40%;
}

body.prenet .network path {
  fill-rule: evenodd;
  fill: wheat;
}

body.prenet .network text {
  font-size: 80%;
}

body.prenet .network circle {
  fill: #8ae234;
  stroke: black;
  stroke-width: 1px;
}

body.prenet .network circle.self {
  fill: #8ae234;
}

body.prenet .network circle.connected {
  fill: #8ae234;
}

body.prenet .network line {
  stroke: none;
  stroke-width: 1px;
}

body.prenet .network line.connected {
  stroke: #8ae234;
  stroke-width: 1px;
}

body.prenet .network circle.notConnected {
  fill: gainsboro;
}

body.prenet .tooltip {
  display: none;
  z-index: 10000;
  font-size: medium;
  min-width: 350px;
  height: 82px;
  position: absolute;
  will-change: transform;
  top: 0px;
  left: 0px;
}

body.prenet .tooltip .tooltip-inner {
  background: white;
  border: 2px solid #F15C2E;
  color: black;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  padding: 5px 8px;
  line-height: 20px;
}

body.prenet .tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: black;
  z-index: 1;
  display: none;
}

body.prenet .tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}

body.prenet .tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: -webkit-calc(50% - 5px);
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

body.prenet .tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}

body.prenet .tooltip[x-placement^="bottom"] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: -webkit-calc(50% - 5px);
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

body.prenet .tooltip[x-placement^="right"] {
  margin-left: 5px;
}

body.prenet .tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: -webkit-calc(50% - 5px);
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

body.prenet .tooltip[x-placement^="left"] {
  margin-right: 5px;
}

body.prenet .tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: -webkit-calc(50% - 5px);
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

body.prenet .tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

body.prenet .tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}

body.prenet .tooltip[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.15s, visibility 0.15s;
  -o-transition: opacity 0.15s, visibility 0.15s;
  transition: opacity 0.15s, visibility 0.15s;
}

body.prenet .tooltip[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

body.prenet .progress {
  position: relative;
  display: flex;
}

body.prenet .progress-track {
  position: absolute;
  top: 5px;
  width: 100%;
  height: 5px;
  background-color: #dfe3e4;
  z-index: -1;
}

body.prenet .progress-step {
  position: relative;
  width: 100%;
  font-size: 12px;
  text-align: center;
}

body.prenet .progress-step:last-child:after {
  display: none;
}

body.prenet .progress-step:before {
  font: 10px/1 FontAwesome;
  content: "\f00c";
  display: flex;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 4px solid #dfe3e4;
  border-radius: 100%;
  color: #fff;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

body.prenet .progress-step:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 0%;
  transition: width 1s ease-in;
  height: 5px;
  background: #dfe3e4;
  z-index: -1;
}

body.prenet .progress-step.is-active {
  color: #2183dd;
}

body.prenet .progress-step.is-active:before {
    border: 4px solid #777;
    animation: pulse 2s infinite;
}

body.prenet .progress-step.is-complete {
  color: #009900;
}

body.prenet .progress-step.is-complete:before {
  color: #fff;
  background: #009900;
  border: 4px solid transparent;
}

body.prenet .progress-step.is-complete:after {
  background: #2183dd;
  animation: nextStep 1s;
  animation-fill-mode: forwards;
}

body.prenet :disabled {
  background-color: darkgray;
}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 94, 166, 0.9); }
  70% { box-shadow: 0 0 0 10px rgba(33,131,221, 0); }
  100% { box-shadow: 0 0 0 0 rgba(33,131,221, 0); }
}

@keyframes nextStep {
  0% { width: 0%; }
  100% { width: 100%; }
}

select {
  width: 132px;
  height: 25px;
  margin-top: 10px;
  background: #f15c2e;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  color: white;
  padding-left: 7px;
  font-size: 14px;
  border-color: #f15c2e;
}

select:focus {
  outline: none;
}

.loading {
  position: fixed;
  top: 45%;
  left: 48%;
  font-size: 1.5em;
}

.align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.not-enabled {
  text-align: center;
}

.not-enabled .message {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  margin-top: 25px;
}

#pie-chart {
  height: 222px;
}

#pie-chart svg {
  width: 100%;
  height: 100%;
}

#pie-chart path.slice {
  stroke-width: 2px;
}

#pie-chart polyline {
  opacity: .3;
  stroke: black;
  stroke-width: 2px;
  fill: none;
}

.text-centered {
  text-align: center;
}

.map {
  display: inline-block;
  position: relative;
  width: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.one-third {
  width: 33%;
}

.one-forth {
  width: 25%;
}

.tran-logs {
  overflow-y: scroll;
  display: revert !important;
  white-space: nowrap;
  vertical-align: top !important;
  max-width: 510px;
}

.side-bordered caption {
  border-bottom: 1px solid #ddd !important;
  padding: 12px !important;
}

.side-bordered td, .side-bordered th {
  border-right: 1px solid #ddd;
}

.no-padding {
  padding: 0 !important;
}

@media screen and (min-width: 1360px) {
  #pie-chart-svg {
    padding-left: 10%;
  }
}

/* @media screen and (min-width: 1440px) {(max-width: 1600px){
    .headtable{
     width:60%;
    }

}
    @media screen and (min-width: 1620px) {(max-width: 1900px){
    .headtable{
     width:85%;
    }

} */



svg {
  .gridline {
      stroke: lightgrey;
      stroke-width: 1;
  }

  .axisline-x {
      stroke: black;
      stroke-width: 2;
      stroke-linecap: round;
  }

  .axisline-y {
      stroke: black;
      stroke-width: 2;
      stroke-linecap: round;
  }

  .axisline-y2 {
      stroke: black;
      stroke-width: 2;
      stroke-linecap: round;
  }

  .axismark-main {
      stroke: black;
      stroke-width: 1;
  }

  .axismark-second {
      stroke: black;
      stroke-width: 1;
  }

  .axistitle-x {
      font-size: 18px;
  }

  .axisnumber-x {
      font-size: 15px;
  }

  .axistitle-y {
      font-size: 18px;
  }

  .axisnumber-y {
      font-size: 15px;
  }

  .series-lines-general {
      stroke-width: 1;
      stroke-linejoin: round;
      stroke-linecap: round;
      fill: none;
  }

  /*-- series 1 --*/
  .series1 {
      stroke: rgb(0, 0, 255);
      stroke-width: 1;
  }

  /*-- series 2 --*/
  .series2 {
      stroke: rgb(0, 192, 0);
      stroke-width: 1;
  }

  .legendbox {
      stroke: black;
      stroke-width: 1;
      fill: white;
  }

  .legendtext {
      font-size: 15px;
      text-anchor: start;
  }
}
.container {
  min-height: 100vh;
  padding: 2rem 1rem;
}

.content {
  max-width: 1200px;
  padding: 30px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}

.card {
  background: #f0f8ff;
  margin-bottom: 30px;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flex {
  display: flex;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.space-y > * + * {
  margin-top: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.text-blue {
  color: #2563eb;
}

.text-gray {
  color: #6b7280;
}

.text-sm {
  font-size: 0.875rem;
}

.font-mono {
  font-family: ui-monospace, monospace;
}

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

.dropdown-button {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: left;
  cursor: pointer;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
}

.dropdown-button option[disabled] {
  color: #6b7280; 
  font-style: italic;
}

select.dropdown-button {
  color: #2d3e50; 
  background-color: white;
}

.dropdown-button:focus {
  border-color: #2d3e50;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.button {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.button-primary {
  background: #2d3e50;
  color: white;
}

.button-primary:hover {
  background: #2d3e50;
}

.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #94a3b8;
  color: white;
}

.button-primary:disabled {
  background-color: #94a3b8;
  color: white;
}

.button-primary:disabled:hover {
  background-color: #94a3b8;
}

.input {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  width: 100%;
  outline: none;
  background: #fff;
}

.input:focus {
  border-color: #2d3e50;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.table th {
  background: #fff !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6b7280;
}

.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-neutral {
  background: #f3f4f6;
  color: #374151;
}

.text-error {
  color: #ef4444;
}

.text-success {
  color: #22c55e;
}

.copy-button {
  opacity: 0;
  margin-left: 0.5rem;
  color: #9ca3af;
  cursor: pointer;
  transition: opacity 0.2s;
}

.account-name:hover .copy-button {
  opacity: 1;
}

.copy-button:hover {
  color: #2d3e50;
}
