/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import "/assets/css/theme.css";


body {
  font-family: "Open Sans", sans-serif;
  background-color: #040404;
  color: #fff;
  position: relative;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  background: #040404 url("/assets/img/backgrounds/slate-background.jpg") top right no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

hr {
  color: var(--theme-color3);
  height:1px;
  border-width:0;
  background-color: var(--theme-color3);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

a {
  color: var(--theme-color);
}

/* All other links (not header) 
a:not(#header a):hover {
  text-decoration: none;
  font-weight: bold;
}
*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow: visible;
}

#header * {
  transition: ease-in-out 0.3s;
}

#livinglogical:hover {
  text-decoration: none;
}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header h1 a, #header h1 a:hover {
  color: #fff;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

#header h2 span {
  color: #fff;
  border-bottom: 2px solid var(--theme-color);
  padding-bottom: 6px;
}

#header img {
  padding: 0;
  margin: 0;
  max-height: 85px;
}


@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }
  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }
  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #header.header-top img {
    padding: 0;
    margin: 0;
    max-width: 80px;  
  }
  #header.header-top a:not(#livinglogical) {
    top: -15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  margin-top: 35px;
}

.nav-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li + li {
  margin-left: 30px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* The underline of the nav-menu links */
.nav-menu a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--theme-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  text-decoration: none;
}


/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
}

#header.header-top .social-links, #header.header-top h2 {
  display: none;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .nav-menu {
  margin: 0;
}

/* iPhone X Max */
@media (max-width: 768px) {
  #header.header-top {
    height: 65px;
  }
  #header.header-top h1 {
    font-size: 26px;
  }
  #header.header-top img {
    padding: 0;
    margin: 0;
    padding-top: 5px;
    max-height: 65px;  
  }
  #header.header-top a:not(#livinglogical) {
    top: -15px;
  }
  
}

@media (max-height: 768px) 
and (orientation : landscape) {
  #header.header-top h1 {
    font-size: 26px;
  }
  #header.header-top img {
    padding: 0;
    margin: 0;
    padding-top: 5px;
    max-width: 80px;  
  }
  #header.header-top a:not(#livinglogical) {
    top: -20px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: relative;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 1;
  transition: ease-in-out 0.4s;
  z-index: 2;
}

section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 45px;
}

section .container {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px;
}


@media (max-width: 768px) {
  section {
    top: 120px;
  }
  section.section-show {
    top: 80px;
  }  
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--theme-color2);
  font-family: "Poppins", sans-serif;
}

.section-title h2::after{
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--theme-color3);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--theme-color1);
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.article.content {
  background: #fff!important;
  position: relative;
  top: 80px;
}
.article.content.noheader {
  top: 0px;
}

.content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--theme-color);
}

 .content ul {
  list-style: none;
  padding: 0;
}

 .content ul li {
  padding-bottom: 10px;
}

 .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: var(--theme-color);
}

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

.stats-icon {
  color:var(--theme-color);
}

.stats-item {
  margin: 5px;
  margin-top: 10px;
}

.stats-item p {
  text-align: center;
}

/*--------------------------------------------------------------
# Interests
--------------------------------------------------------------*/
.interests .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: ease-in-out 0.3s;
}

.interests .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.interests .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: #fff;
}

.interests .icon-box:hover {
  background: rgba(255, 255, 255, 0.12);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio h4 {
  color: var(--theme-color);
}


#contenthub .portfolio-item {
  padding: 15px;
  /*width: 325px;*/
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
#products .icon-box {
  padding: 15px;
  text-align: center;
  transition: all ease-in-out 0.3s;
  width: 100%;
}

.products a {
  padding: 10px;
}

.icon-box h4 a:hover {
  color: var(--theme-color1);
  text-decoration: none;
}

#products h4 {
  line-height: 25px;
  font-size: 26px;
  font-weight: 500;
  color: var(--theme-color3);
  padding-bottom: 10px;
}

#products p:last-child {
  margin-bottom: 16;
}
#products .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--theme-color);
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transform-style: preserve-3d;
}

/* Puts offset background box behind the icon */
.products .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.products .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.products .icon-box:hover {
  background: rgba(255, 255, 255, 0.12);
}


/*--------------------------------------------------------------
# Nutrition
--------------------------------------------------------------*/
.nutrition .icon-box {
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.08);
  transition: ease-in-out 0.3s;
}

.nutrition .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.nutrition .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: #fff;
}

.nutrition .icon-box:hover {
  background: rgba(255, 255, 255, 0.12);
}

/*--------------------------------------------------------------
    Lists and Checklists
--------------------------------------------------------------*/
ul {
  padding-inline-start: 20px;
}

.list ul {
  list-style-type: none;
  position: relative;
  padding-left: 25px;
  counter-increment: list;
}

li.checklist, .steps li {
  padding-left: 10px;
}

li.checklist::marker {
    content: "\2610";
    margin-right:5px;
    font-size: 18px;
    color: var(--theme-color);
}

li.dashlist, .steps li {
  padding-left: 10px;
}
li.dashlist::marker {
  content: "\2606";
    margin-right:5px;
    font-size: 18px;
    color: var(--theme-color);
}

.steps ol li {
  counter-increment: list;
}

.steps ol {
  padding-inline-start: 20px;
  padding-left: 25px;
  counter-reset: list 0;
}

.steps li::marker {
  color: var(--theme-color);
  content: counter(list) ". ";
  margin-right:5px;
}

/*--------------------------------------------------------------
    Flat files and Mobile Apps
--------------------------------------------------------------*/
.article.footer {
  background: rgba(0, 0, 0, 0.9);
  position: relative;
  top: 80px!important;
  height: 55px!important;
}


#livinglogical.mobile:hover {
  text-decoration: none!important;
}
