/*
=====================================================================
*   Ceevee v1.0 Layout Stylesheet
*   url: styleshout.com
*   03-18-2014
=====================================================================

   TOC:
   a. General Styles
   b. Header Styles
   c. About Section
   d. Intro Section
   e. Portfolio Section
   f. Call To Action Section
   g. Testimonials Section
   h. Contact Section
   i. Footer

===================================================================== */

:root {
  --primary100: #cfd5e2; 
  --primary200: #9fabc5; 
  --primary300: #7082a8; 
  --primary400: #40588b; 
  --primary500: #102E6E; 
  --primary600: #0D2558;
  --primary700: #0A1C42; 
  --primary800: #06122c;
  --primary900: #030916;

  --secondary100: #cfeeef;
  --secondary200: #a0dddf;
  --secondary300: #70cdd0;
  --secondary400: #41bcc0;
  --secondary500: #11abb0;
  --secondary600: #0e898d;
  --secondary700: #0a676a;
  --secondary800: #074446;
  --secondary900: #032223;
}

/* ------------------------------------------------------------------ */
/* a. General Styles
/* ------------------------------------------------------------------ */

body {
   background: #0f0f0f;
}
body.page { 
   padding-top: var(--navH, 96px);
}

/* ------------------------------------------------------------------ */
/* b. Header Styles
/* ------------------------------------------------------------------ */
header.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  height: 100svh;
  height: 100dvh;
  width: 100%;
  background: #161415 url(../images/header-background.jpg) no-repeat top center;
  background-size: cover !important;
  -webkit-background-size: cover !important;
  text-align: center;
  overflow: hidden;
}


/* vertically center banner section */
header.hero:before {
   content: "";
   display: inline-block;
   vertical-align: middle;
   height: 100%;
}
header.hero .banner {
   display: inline-block;
   vertical-align: middle;
   margin: 0 auto;
   width: 85%;
   padding-bottom: 30px;
   text-align: center;
}

header.hero .banner-text {
   width: 100%;
}
header .banner-text h1 {
   font: 90px/1.1em "-apple-system", sans-serif;
   color: #fff;
   letter-spacing: -2px;
   margin: 0 auto 18px auto;
   text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
}
header .banner-text h3 {
   font: 18px/1.9em "librebaskerville-regular", serif;
   color: #a8a8a8;
   margin: 20px auto;
   width: 70%;
   text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
header .banner-text h3 span,
header .banner-text h3 a {
   color: #fff;
}
header .banner-text hr {
   width: 60%;
   margin: 18px auto 24px auto;
   border-color: #2f2d2e;
   border-color: rgba(150, 150, 150, 0.1);
}

/* header social links */
header .social {
   margin: 24px 0;
   padding: 0;
   font-size: 30px;
   text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
}
header .social li {
   display: inline-block;
   margin: 0 15px;
   padding: 0;
}
header .social li a {
   color: #fff;
}
header .social li a:hover {
   color: var(--secondary500);
}

/* scrolldown link */
header.hero .scrolldown a {
   position: absolute;
   bottom: 30px;
   left: 50%;
   margin-left: -29px;
   color: #fff;
   display: block;
   height: 42px;
   width: 42px;
   font-size: 42px;
   line-height: 42px;
   color: #fff;
   border-radius: 100%;

   -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}
header .scrolldown a:hover {
   color: var(--primary400);
}

/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap ul,
#nav-wrap li,
#nav-wrap a {
   margin: 0;
   padding: 0;
   border: none;
   outline: none;
}

/* nav-wrap */
#nav-wrap {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 20px;
   font: 14px "-apple-system", sans-serif;
   width: 100%;
   text-transform: uppercase;
   letter-spacing: 2.5px;
   margin: 0 auto;
   z-index: 100;
   position: fixed;
   left: 0;
   top: 0;
}
.opaque {
   background-color: #222;
}



/* hide toggle button */
#nav-wrap > a.mobile-btn {
   display: none;
}

#nav-wrap { text-align: center; }          
#nav-wrap .nav-logo {
  display: inline-block;
  height: 80px;
  vertical-align: middle;
  margin: 8px 15px 8px 0; 
  border-radius: 4px; 
}
#nav {
  display: inline-block;
  vertical-align: middle;
}
/* smooth fade for mobile hide/show */
#nav-wrap .nav-logo,
#nav-wrap .lang {
  transition: opacity 0.25s ease;
}


ul#nav {
   min-height: 48px;
   width: auto;

   /* center align the menu */
   text-align: center;
}
ul#nav li {
   position: relative;
   list-style: none;
   height: 48px;
   display: inline-block;
}

/* Links */
ul#nav li a {
   /* 8px padding top + 8px padding bottom + 32px line-height = 48px */

   display: inline-block;
   padding: 8px 13px;
   line-height: 32px;
   text-decoration: none;
   text-align: left;
   color: #fff;

   -webkit-transition: color 0.2s ease-in-out;
   -moz-transition: color 0.2s ease-in-out;
   -o-transition: color 0.2s ease-in-out;
   -ms-transition: color 0.2s ease-in-out;
   transition: color 0.2s ease-in-out;
}

ul#nav li a:active {
   background-color: transparent !important;
}
/* highlight only the top-level link */
#nav > li.current > a {
  color: var(--primary300);
}
/* highlight only the active submenu item */
#nav li ul li.current > a {
  color: var(--primary200);
}

/* Dropdown base */
#nav li.has-dropdown { position: relative; }  /* li is already relative in theme; safe repeat */
#nav li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(51,51,51,0.96);
  border-radius: 6px;
  padding: 8px 0;
  display: none;
  z-index: 200;               /* above #nav-wrap (z-index:100) */
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Show on hover or keyboard focus */
#nav li.has-dropdown:hover .dropdown,
#nav li.has-dropdown:focus-within .dropdown {
  display: block;
}

/* Dropdown items */
#nav li .dropdown li { 
  display: block; 
  height: auto; 
}
#nav li .dropdown a {
  display: block;
  padding: 10px 14px;
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
}
#nav li .dropdown a:hover { 
  background: #012e72; 
  color: #fff; 
}
/* Mobile: dropdown closed by default, opened via .open class */


/* Language switcher */
/* --------------------------------------------------
   Custom language dropdown
   -------------------------------------------------- */
.lang {
  position: relative;
  display: inline-block;
}

/* Trigger button */
.lang__btn {
  background: none;
  color: #fff !important;
  padding: 4px 30px 4px 10px;
  height: 32px;
  cursor: pointer;
  font: 14px "-apple-system", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: flex;   
  align-items: center;              
  line-height: normal;
  margin: 0; 
  position: relative; 
  display: flex;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.lang__btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
}

/* Dropdown menu */
/* Language dropdown menu */
.lang__menu {
  position: absolute;
  right: 0;
  min-width: 220px;
  padding: 6px;
  margin: 0;
  list-style: none;
  display: none; /* default closed */
  /* Use flex column + gap for consistent spacing between options */
  flex-direction: column;
  z-index: 250;

  background: rgba(51,51,51,0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  border-radius: 4px;
}
.lang.lang--open .lang__menu {
  display: flex;
}
/* enforce option padding (in case of cascade overrides) */
.lang .lang__menu > .lang__option {
  padding: 12px 16px !important; /* only keep !important if needed */
  box-sizing: border-box;
}

/* Options */
.lang__option {
  background: transparent;     /* no grey fill */
  color: #fff;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}


.lang__option:hover,
.lang__option[aria-selected="true"]:hover {
  background: #012e72;
}

/* Current-language indicator ✓ */
.lang__check {
  opacity: 0;
  margin-left: 10px;
}
.lang__option[aria-selected="true"] .lang__check {
  opacity: 1;
}
.opaque .lang__check {
  color: #000;
}

/* Light mode when nav becomes opaque */
.opaque .lang__btn {
  color: #fff;
  border-color: rgba(0,0,0,0.5);
  background: none;
}
.opaque .lang__btn::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.opaque .lang__menu {
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.15);
}
.opaque .lang__option {
  color: #000;
}
.opaque .lang__option:hover {
  background: rgba(0,0,0,0.08);
}

/* ------------------------------------------------------------------ */
/* c. About Section
/* ------------------------------------------------------------------ */

#about {
   background: #2b2b2b;
   padding-top: 36px;
   padding-bottom: 66px;
   min-height: 100vh;
}

#about a,
#about a:visited {
   color: #fff;
}
#about a:hover,
#about a:focus {
   color: var(--secondary500);
}

#about h2 {
   font: 30px/36px "-apple-system", sans-serif;
   color: #fff;
   margin-bottom: 12px;
}
#about h3 {
   font: 24px/30px "-apple-system", sans-serif;
   color: #fff;
   margin-bottom: 12px;
}
#about p {
   font-size: 18px;
   line-height: 28px;
   color: #7a7a7a;
}
#about span {
   font-weight: bold;
   color: #8a8a8a;
}
#about a.button {
   margin-top: 40px;
   background-color: var(--primary400);
   color: #fff
}
#about a.button:hover {
   background-color: var(--primary600);
   color: #fff
}
/* #about .profile-pic {
   position: relative;
   width: 120px;
   height: 120px;
   border-radius: 100%;
}
#about .contact-details {
   width: 41.66667%;
}
#about .download {
   width: 58.33333%;
   padding-top: 6px;
}
#about .main-col {
   margin-top: 48px;
   padding-right: 5%;
}
#about .download .button {
   margin-top: 6px;
   background: #444;
}
#about .download .button:hover {
   background: #fff;
   color: #2b2b2b;
}
#about .download .button i {
   margin-right: 15px;
   font-size: 20px;
} */

/* ------------------------------------------------------------------ */
/* d. Intro Section
/* ------------------------------------------------------------------ */

#intro {
   background: #2b2b2b;
   padding-top: 66px;
   padding-bottom: 46px;
   overflow: hidden;
}

#intro a,
#intro a:visited {
   color: #fff;
}
#intro a:hover,
#intro a:focus {
   color: #11abb0;
}

#intro h2 {
   font: 30px/36px "-apple-system", sans-serif;
   color: #fff;
   margin-bottom: 12px;
}
#intro p {
   font-size: 22px;
   line-height: 36px;
   color: #bebebe;
}
#intro .profile-pic {
   position: relative;
   width: 120px;
   height: 120px;
   border-radius: 100%;
}
#intro .contact-details {
   width: 41.66667%;
}
#intro .download {
   width: 58.33333%;
   padding-top: 6px;
}
#intro .main-col {
   padding-right: 5%;
}
#intro .download .button {
   margin-top: 6px;
   background: #444;
}
#intro .download .button:hover {
   background: #fff;
   color: #2b2b2b;
}
#intro .download .button i {
   margin-right: 15px;
   font-size: 20px;
}

/*----------------------------------------------*/
/*	Stats
/*----------------------------------------------*/
#stats {
   background-color: #444;
}

.stat-count,
.stat-title {
   color: white;
   text-align: center;
}

.icon-part {
   margin-top: 30px;
   text-align: center;
}

.stat-count {
   margin-top: 10px;
   font-size: 4rem;
   font-family: "poppins-medium", sans-serif;
}

.stat-title {
   margin-bottom: 30px;
   text-transform: uppercase;
   font-size: 1.3rem;
   line-height: 1.4;
}

/*----------------------------------------------*/
/*	End stats 
/*----------------------------------------------*/

/*----------------------------------------------*/
/*	Skill Bars
/*----------------------------------------------*/

.bars {
   width: 95%;
   float: left;
   padding: 0;
   text-align: left;
}
.bars .skills {
   margin-top: 36px;
   list-style: none;
}
.bars li {
   position: relative;
   margin-bottom: 60px;
   background: #ccc;
   height: 42px;
   border-radius: 3px;
}
.bars li em {
   font: 15px "-apple-system", sans-serif;
   color: #313131;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-weight: normal;
   position: relative;
   top: -36px;
}
.bar-expand {
   position: absolute;
   left: 0;
   top: 0;

   margin: 0;
   padding-right: 24px;
   background: #313131;
   display: inline-block;
   height: 42px;
   line-height: 42px;
   border-radius: 3px 0 0 3px;
}

.photoshop {
   width: 60%;
   -moz-animation: photoshop 2s ease;
   -webkit-animation: photoshop 2s ease;
}
.illustrator {
   width: 55%;
   -moz-animation: illustrator 2s ease;
   -webkit-animation: illustrator 2s ease;
}
.wordpress {
   width: 50%;
   -moz-animation: wordpress 2s ease;
   -webkit-animation: wordpress 2s ease;
}
.css {
   width: 90%;
   -moz-animation: css 2s ease;
   -webkit-animation: css 2s ease;
}
.html5 {
   width: 80%;
   -moz-animation: html5 2s ease;
   -webkit-animation: html5 2s ease;
}
.jquery {
   width: 50%;
   -moz-animation: jquery 2s ease;
   -webkit-animation: jquery 2s ease;
}

@-moz-keyframes photoshop {
   0% {
      width: 0px;
   }
   100% {
      width: 60%;
   }
}
@-moz-keyframes illustrator {
   0% {
      width: 0px;
   }
   100% {
      width: 55%;
   }
}
@-moz-keyframes wordpress {
   0% {
      width: 0px;
   }
   100% {
      width: 50%;
   }
}
@-moz-keyframes css {
   0% {
      width: 0px;
   }
   100% {
      width: 90%;
   }
}
@-moz-keyframes html5 {
   0% {
      width: 0px;
   }
   100% {
      width: 80%;
   }
}
@-moz-keyframes jquery {
   0% {
      width: 0px;
   }
   100% {
      width: 50%;
   }
}

@-webkit-keyframes photoshop {
   0% {
      width: 0px;
   }
   100% {
      width: 60%;
   }
}
@-webkit-keyframes illustrator {
   0% {
      width: 0px;
   }
   100% {
      width: 55%;
   }
}
@-webkit-keyframes wordpress {
   0% {
      width: 0px;
   }
   100% {
      width: 50%;
   }
}
@-webkit-keyframes css {
   0% {
      width: 0px;
   }
   100% {
      width: 90%;
   }
}
@-webkit-keyframes html5 {
   0% {
      width: 0px;
   }
   100% {
      width: 80%;
   }
}
@-webkit-keyframes jquery {
   0% {
      width: 0px;
   }
   100% {
      width: 50%;
   }
}

/* ------------------------------------------------------------------ */
/* e. Portfolio Section
/* ------------------------------------------------------------------ */

#portfolio {
   background: #ebeeee;
   padding-top: 90px;
   padding-bottom: 60px;
}
#portfolio h1 {
   font: 15px/24px "opensans-semibold", sans-serif;
   text-transform: uppercase;
   letter-spacing: 1px;
   text-align: center;
   margin-bottom: 48px;
   color: #95a3a3;
}

/* Portfolio Content */
#portfolio-wrapper .columns {
   margin-bottom: 36px;
}
.portfolio-item .item-wrap {
   background: #fff;
   overflow: hidden;
   position: relative;

   -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}
.portfolio-item .item-wrap a {
   display: block;
   cursor: pointer;
}

/* overlay */
.portfolio-item .item-wrap .overlay {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;

   opacity: 0;
   -moz-opacity: 0;
   filter: alpha(opacity=0);

   -webkit-transition: opacity 0.3s ease-in-out;
   -moz-transition: opacity 0.3s ease-in-out;
   -o-transition: opacity 0.3s ease-in-out;
   transition: opacity 0.3s ease-in-out;

   background: url(../images/overlay-bg.png) repeat;
}
.portfolio-item .item-wrap .link-icon {
   display: block;
   color: #fff;
   height: 30px;
   width: 30px;
   font-size: 18px;
   line-height: 30px;
   text-align: center;

   opacity: 0;
   -moz-opacity: 0;
   filter: alpha(opacity=0);

   -webkit-transition: opacity 0.3s ease-in-out;
   -moz-transition: opacity 0.3s ease-in-out;
   -o-transition: opacity 0.3s ease-in-out;
   transition: opacity 0.3s ease-in-out;

   position: absolute;
   top: 50%;
   left: 50%;
   margin-left: -15px;
   margin-top: -15px;
}
.portfolio-item .item-wrap img {
   vertical-align: bottom;
}
.portfolio-item .portfolio-item-meta {
   padding: 18px;
}
.portfolio-item .portfolio-item-meta h5 {
   font: 14px/21px "-apple-system", sans-serif;
   color: #fff;
}
.portfolio-item .portfolio-item-meta p {
   font: 12px/18px "-apple-system", sans-serif;
   color: #c6c7c7;
   margin-bottom: 0;
}

/* on hover */
.portfolio-item:hover .overlay {
   opacity: 1;
   -moz-opacity: 1;
   filter: alpha(opacity=100);
}
.portfolio-item:hover .link-icon {
   opacity: 1;
   -moz-opacity: 1;
   filter: alpha(opacity=100);
}

/* popup modal */
.popup-modal {
   max-width: 550px;
   background: #fff;
   position: relative;
   margin: 0 auto;
}
.popup-modal .description-box {
   padding: 12px 36px 18px 36px;
}
.popup-modal .description-box h4 {
   font: 18px/28px "-apple-system", sans-serif;
   margin-bottom: 12px;
   color: #111;
}
.popup-modal .description-box p {
   font: 14px/24px "-apple-system", sans-serif;
   color: #a1a1a1;
   margin-bottom: 12px;
}
.popup-modal .description-box .categories {
   font: 11px/21px "-apple-system", sans-serif;
   color: #a1a1a1;
   text-transform: uppercase;
   letter-spacing: 2px;
   display: block;
   text-align: left;
}
.popup-modal .description-box .categories i {
   margin-right: 8px;
}
.popup-modal .link-box {
   padding: 18px 36px;
   background: #111;
   text-align: left;
}
.popup-modal .link-box a {
   color: #fff;
   font: 11px/21px "-apple-system", sans-serif;
   text-transform: uppercase;
   letter-spacing: 3px;
   cursor: pointer;
}
.popup-modal a:hover {
   color: var(--secondary500);
}
.popup-modal a.popup-modal-dismiss {
   margin-left: 24px;
}

/* fadein/fadeout effect for modal popup
/* ------------------------------------------------------------------ */

/* content at start */
.mfp-fade.mfp-wrap .mfp-content .popup-modal {
   opacity: 0;
   -webkit-transition: all 200ms ease-in-out;
   -moz-transition: all 200ms ease-in-out;
   -o-transition: all 200ms ease-in-out;
   -ms-transition: all 200ms ease-in-out;
   transition: all 200ms ease-in-out;
}
/* content fadein */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content .popup-modal {
   opacity: 1;
}
/* content fadeout */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content .popup-modal {
   opacity: 0;
}

/* ------------------------------------------------------------------
/* g. Blog
/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------- 
 * ## section intro - (_common-styles.scss)
 * ------------------------------------------------------------------- */

.section-intro {
   text-align: center;
   position: relative;
}

.section-intro h1 {
   font-family: "librebaskerville-bold", serif;
   font-size: 4.8rem;
   line-height: 1.375;
   margin-top: 0;
}

.section-intro h3 {
   font-family: "montserrat-semibold", sans-serif;
   font-size: 2rem;
   color: #862121;
   text-transform: uppercase;
   letter-spacing: 0.15rem;
   margin-top: 0;
   margin-bottom: 0;
}

.section-intro.has-bottom-sep {
   padding-bottom: 1.5rem;
   position: relative;
}

.section-intro.has-bottom-sep::after {
   display: inline-block;
   height: 1px;
   width: 240px;
   background-color: rgba(0, 0, 0, 0.1);
   text-align: center;
}

/* ------------------------------------------------------------------- 
 * ## blog-list - (_common-styles.scss)
 * ------------------------------------------------------------------- */

.blog-list {
   margin-top: 6rem;
   margin-left: 0;
}

.blog-list article {
   margin-bottom: 7.2rem;
}

.blog-list h2 {
   font-family: "montserrat-medium", sans-serif;
   font-size: 3rem;
   line-height: 1.2;
   margin-top: 0.3rem;
   margin-bottom: 2.1rem;
   padding-bottom: 2.4rem;
   color: #0d0a0b;
   position: relative;
}

.blog-list h2 a {
   color: #0d0a0b;
}

.blog-list h2::after {
   display: block;
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   height: 1px;
   width: 80px;
   background-color: rgba(0, 0, 0, 0.15);
}

.blog-list .blog-date {
   font-family: "montserrat-regular", sans-serif;
   font-size: 1.5rem;
   color: #862121;
}

.blog-list .blog-date a {
   color: #862121;
}

.blog-list .blog-date a:hover,
.blog-list .blog-date a:focus,
.blog-list .blog-date a:active {
   color: #000000;
}

.blog-list .blog-cat {
   font-family: "montserrat-medium", sans-serif;
   font-size: 1.3rem;
   text-transform: uppercase;
   letter-spacing: 0.2rem;
   color: #000000;
   margin-top: -0.9rem;
}

.blog-list .blog-cat a {
   color: #000000;
}

.blog-list .blog-cat a:hover,
.blog-list .blog-cat a:focus,
.blog-list .blog-cat a:active {
   color: #862121;
}

.blog-list .blog-cat a::after {
   content: ", ";
}

.blog-list .blog-cat a:last-child::after {
   display: none;
}

/* ===================================================================
 * # blog - (_site-layout.scss)
 *
 * ------------------------------------------------------------------- */

.s-blog {
   padding-top: 8rem;
   padding-bottom: 1rem;
   background-color: #ffffff;
   position: relative;
}

/* ===================================================================
 * # blog styles - (_blog.scss)
 *
 * ------------------------------------------------------------------- */

article.blog-single {
   background-color: #ffffff;
}

article.blog-single .blog-content {
   padding-top: 7.2rem;
   padding-bottom: 12rem;
}

/* -------------------------------------------------------------------
* ## blog page header
* ------------------------------------------------------------------- */

.page-header {
   background-color: #0d0a0b;
   background-repeat: no-repeat;
   background-position: center, center;
   padding-top: 20.4rem;
   padding-bottom: 7.2rem;
   position: relative;
   color: rgba(255, 255, 255, 0.5);
   min-height: 50.4rem;
}

.page-header--single {
   padding-top: 22.8rem;
   padding-bottom: 7.2rem;
   text-align: center;
}

.page-header::before {
   display: block;
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0.75;
   background-color: #0d0a0b;
}

.page-header::after {
   display: block;
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0.5;
   background: -moz-linear-gradient(
      top,
      transparent 0%,
      rgba(0, 0, 0, 0.65) 100%
   );
   /* FF3.6-15 */
   background: -webkit-linear-gradient(
      top,
      transparent 0%,
      rgba(0, 0, 0, 0.65) 100%
   );
   /* Chrome10-25,Safari5.1-6 */
   background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.65) 100%
   );
   /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#a6000000", GradientType=0);
   /* IE6-9 */
}

.page-header__content {
   font-family: "montserrat-regular", sans-serif;
   font-size: 2rem;
   line-height: 1.8;
   position: relative;
   max-width: 900px;
   z-index: 2;
}

.page-header__content p {
   padding-right: 3rem;
}

.page-header__info {
   margin-bottom: 1.2rem;
}

.page-header__info .div:last-child {
   margin-right: 0;
}

.page-header__cat,
.page-header__date {
   display: inline-block;
   margin-right: 2rem;
   margin-bottom: 0.3rem;
}

.page-header__cat {
   font-size: 1.4rem;
   line-height: 1.5;
   text-transform: uppercase;
   letter-spacing: 0.16rem;
   color: rgba(255, 255, 255, 0.8);
   font-family: "montserrat-bold", sans-serif;
}

.page-header__cat a {
   color: rgba(255, 255, 255, 0.8);
}

.page-header__cat a:hover,
.page-header__cat a:focus,
.page-header__cat a:active {
   color: white;
}

.page-header__cat a::after {
   content: ", ";
}

.page-header__cat a:last-child::after {
   display: none;
}

.page-header__date {
   font-family: "montserrat-light", sans-serif;
   font-size: 1.5rem;
   color: rgba(255, 255, 255, 0.4);
}

.page-header__date a {
   color: rgba(255, 255, 255, 0.4);
}

.page-header__date a:hover,
.page-header__date a:focus,
.page-header__date a:active {
   color: white;
}

.page-header__title {
   color: #ffffff;
   position: relative;
   font-family: "librebaskerville-bold", serif;
   font-size: 6.6rem;
   line-height: 1.227;
   margin-top: 0;
   margin-bottom: 3.6rem;
}

.page-header__title a {
   color: #ffffff;
}

.page-header__meta {
   list-style: none;
   margin-left: 0;
   padding-top: 2.4rem;
   font-size: 1.6rem;
   position: relative;
}

.page-header__meta::before {
   display: block;
   content: "";
   height: 1px;
   width: 100px;
   background-color: rgba(255, 255, 255, 0.1);
   position: absolute;
   top: 0;
   left: 50%;
   margin-left: -50px;
}

.page-header__meta li {
   display: inline-block;
   padding-left: 0;
   margin-right: 2rem;
}

.page-header__meta li::last-child {
   margin-right: 0;
}

.page-header__meta span,
.page-header__meta a {
   color: #ffffff;
}

.page-header__btn {
   border-color: #ffffff !important;
   color: #ffffff;
   letter-spacing: 0.25rem;
}

.page-header__btn:hover,
.page-header__btn:focus {
   background: #ffffff !important;
   color: #000000;
}

/* ------------------------------------------------------------------- 
* responsive:
* blog page header
* ------------------------------------------------------------------- */













/* -------------------------------------------------------------------
* ## blog content - _blog.scss
* ------------------------------------------------------------------- */

.blog-post-item {
   display: inline-block;
   padding: 20px;
   border: 1px solid black;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

.blog-content-wrap {
   background-color: #ffffff;
   padding-top: 4.2rem;
   padding-bottom: 12rem;
}

.blog-content {
   max-width: 1000px;
}

.blog-content__main {
   padding-left: 6rem;
   padding-right: 6rem;
}

.blog-content__main img {
   max-width: 1000px;
   margin: 3rem 0 3rem -6rem;
}

/* post tags
* ------------------------------------------------- */

.blog-content__tags {
   margin-top: 6rem;
   font-family: "montserrat-regular", sans-serif;
}

.blog-content__tags span {
   font-family: "montserrat-bold", sans-serif;
   color: #0d0a0b;
   position: relative;
   padding-right: 55px;
   margin-right: 1.5rem;
   margin-top: 1.2rem;
}

.blog-content__tags span::after {
   display: inline-block;
   content: "";
   height: 1px;
   width: 40px;
   background-color: rgba(0, 0, 0, 0.2);
   position: absolute;
   top: 50%;
   right: 0;
}

.blog-content__tags .blog-content__tag-list {
   display: inline-block;
   padding-right: 0;
   margin-right: 0;
}

.blog-content__tags .blog-content__tag-list::after {
   display: none;
}

.blog-content__tags .blog-content__tag-list a {
   display: inline-block;
   font-family: "montserrat-regular", sans-serif;
   font-size: 1.3rem;
   line-height: inherit;
   color: #797979;
   border: 1px solid rgba(0, 0, 0, 0.3);
   border-radius: 3px;
   margin-right: 6px;
   margin-bottom: 6px;
   padding: 0 10px;
}

.blog-content__tags .blog-content__tag-list a:hover,
.blog-content__tags .blog-content__tag-list a:focus {
   background-color: #0d0a0b;
   border-color: #0d0a0b;
   color: #ffffff;
}

.blog-content__tags .blog-content__tag-list a:last-child {
   margin-right: 0;
}

/* blog single page navigation
* ------------------------------------------------- */

.blog-content__pagenav {
   margin-top: 7.8rem;
   padding-top: 1.8rem;
   border-top: 1px solid rgba(0, 0, 0, 0.1);
   position: relative;
}

.blog-content__nav {
   padding-right: 220px;
}

.blog-content__nav:after {
   content: "";
   display: table;
   clear: both;
}

.blog-content__nav span {
   display: block;
   font-family: "montserrat-regular", sans-serif;
   font-size: 1.6rem;
   color: #797979;
   margin-bottom: 1.2rem;
   -webkit-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}

.blog-content__nav a {
   font-family: "montserrat-bold", sans-serif;
   font-size: 2.2rem;
   line-height: 1.5;
   color: #0d0a0b;
}

.blog-content__nav a:hover span,
.blog-content__nav a:focus span {
   color: #0d0a0b;
}

.blog-content__prev,
.blog-content__next {
   width: 50%;
   float: left;
   padding-right: 2rem;
}

.blog-content__all {
   text-align: right;
   width: 210px;
   position: absolute;
   top: 2.1rem;
   right: 0;
}

.blog-content__all .im {
   font-size: 1.4rem;
   line-height: 1;
   margin-right: 8px;
   position: relative;
   top: 2px;
}

/* blog entries navigation
* ------------------------------------------------- */

.blog-entries-nav {
   text-align: center;
   max-width: 600px;
   padding-top: 3.6rem;
}

.blog-entries-nav .btn {
   margin-right: 3rem;
   min-width: 150px;
}

.blog-entries-nav .btn:last-child {
   margin-right: 0;
}

.blog-entries-nav .im {
   font-size: 1.3rem;
   line-height: 1;
   position: relative;
   top: 2px;
}

.load {
   width: 100%;
   font-size: 2.5rem;
   font: -apple-system;
}

.load-all {
   background-color: #2b2b2b;
   text-align: center;
}

.load-all:hover {
   background-color: #777;
}

.load-all a {
   color: white;
}

/* ------------------------------------------------------------------- 
* responsive:
* blog content
* ------------------------------------------------------------------- */















/* -------------------------------------------------------------------
 * ## comments - _blog.scss
 * ------------------------------------------------------------------- */

.comments-wrap {
   background-color: #f0f0f0;
   padding: 8.4rem 0 9rem;
}

/* comments
* -------------------------------------------------- */

#comments {
   padding-top: 1.2rem;
   padding-bottom: 1.2rem;
   max-width: 940px;
}

#comments h3 {
   margin-top: 0;
   margin-bottom: 1.5rem;
}

#comments ol,
#comments ul {
   list-style: none;
}

.commentlist {
   margin: 3rem 0 5.4rem;
   padding: 0;
}

.commentlist > .comment {
   position: relative;
   list-style: none;
   margin: 0;
   padding: 1.8rem 0;
   padding-left: 14%;
}

.comment__avatar {
   position: absolute;
   left: 0;
   display: block;
   height: 6rem;
   width: 6rem;
}

.comment__avatar img {
   margin-top: 0.6rem;
   height: 6rem;
   width: 6rem;
   border-radius: 100%;
}

.comment__info cite {
   font-family: "montserrat-bold", sans-serif;
   font-size: 1.8rem;
   font-style: normal;
   color: #0d0a0b;
}

.comment__meta {
   font-family: "montserrat-regular", sans-serif;
   font-size: 1.45rem;
   line-height: 3rem;
   font-style: normal;
   display: block;
   color: rgba(0, 0, 0, 0.7);
}

.comment__meta .reply {
   font-family: "montserrat-bold", sans-serif;
}

.comment__meta .sep {
   margin: 0 5px;
}

.comment__text {
   clear: both;
   margin: 1.8rem 0 0 0;
   padding: 0;
}

.comment ul.children {
   margin: 0;
   padding: 1.8rem 0 0 0;
}

.comment ul.children li {
   padding-left: 5%;
   padding-top: 1.8rem;
}

/* comments form
* ---------------------------- */

#comments .respond {
   padding-top: 4.2rem;
}

#comments form {
   padding-top: 3rem;
}

#comments form .form-field {
   margin-bottom: 3.9rem;
}

/* ------------------------------------------------------------------- 
* pre-contact info
* ------------------------------------------------------------------- */

.pre-contact-info {
   margin-top: 40px;
}

.pre-contact-info h3{
   color: #fff;
}

.pre-contact-info a{
   color: var(--primary400);
}
.pre-contact-info a:visited{
   color: var(--primary400);
}

.pre-contact-icon {
   display: block;
   margin: 0 auto 12px auto; 
   width: 72px;
   height: auto;
}

/*-------
/* End blog
/*-------

/* ------------------------------------------------------------------ */
/* h. Contact Section
/* ------------------------------------------------------------------ */

#contact {
   background: #191919;
   padding-top: 96px;
   padding-bottom: 102px;
   color: #636363;
   min-height: 90vh;
}
#contact .section-head {
   margin-bottom: 42px;
}

#contact a,
#contact a:visited {
   color: var(--secondary500);
}
#contact a:hover,
#contact a:focus {
   color: #fff;
}

#contact h1 {
   font: 18px/24px "opensans-bold", sans-serif;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: #ebeeee;
   margin-bottom: 6px;
}
#contact h1 span {
   display: none;
}
#contact h1:before {
   font-family: "FontAwesome";
   content: "";
   padding-right: 10px;
   font-size: 72px;
   line-height: 72px;
   text-align: left;
   float: left;
   color: #ebeeee;
}

#contact h4 {
   font: 16px/24px "opensans-bold", sans-serif;
   color: #ebeeee;
   margin-bottom: 6px;
}
#contact p.lead {
   font: 18px/36px "opensans-light", sans-serif;
   padding-right: 3%;
   color: #ebeeee;
}
#contact .header-col {
   padding-top: 6px;
}

/* contact form */
#contact form {
   margin-bottom: 30px;
}
#contact label {
   font: 15px/24px "opensans-bold", sans-serif;
   margin: 12px 0;
   color: #ebeeee;
   display: inline-block;
   float: left;
   width: 26%;
}
#contact input,
#contact textarea,
#contact select {
   padding: 18px 20px;
   color: #eee;
   background: #373233;
   margin-bottom: 42px;
   border: 0;
   outline: none;
   font-size: 15px;
   line-height: 24px;
   width: 65%;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus {
   color: #fff;
   background-color: #cc4902;
}
#contact button.submit {
   text-transform: uppercase;
   letter-spacing: 3px;
   color: #fff;
   background: var(--primary400);
   border: none;
   cursor: pointer;
   height: auto;
   display: inline-block;
   border-radius: 3px;
   margin-left: 26%;
}
#contact button.submit:hover {
   color: #fff;
   background: var(--primary600);
}
#contact span.required {
   color: var(--primary300);
   font-size: 13px;
}
#message-warning,
#message-success {
   display: none;
   background: #0f0f0f;
   padding: 24px 24px;
   margin-bottom: 36px;
   width: 65%;
   
}
#message-warning {
   color: #d72828;
}
#message-success {
   color: var(--primary300);
}

#message-warning i,
#message-success i {
   margin-right: 10px;
}
#image-loader {
   display: none;
   position: relative;
   left: 18px;
   top: 17px;
}

/* Twitter Feed */
#twitter {
   margin-top: 12px;
   padding: 0;
}
#twitter li {
   margin: 6px 0px 12px 0;
   line-height: 30px;
}
#twitter li span {
   display: block;
}
#twitter li b a {
   font: 13px/36px "opensans-regular", Sans-serif;
   color: #474747 !important;
   border: none;
}

/* ------------------------------------------------------------------ */
/* i. Footer
/* ------------------------------------------------------------------ */

footer {
   padding-top: 48px;
   margin-bottom: 48px;
   color: #303030;
   font-size: 12px;
   text-align: center;
   position: relative;
}

footer a,
footer a:visited {
   color: #525252;
}
footer a:hover,
footer a:focus {
   color: #fff;
}

/* copyright */
footer .copyright {
   margin: 0;
   padding: 0;
}
footer .copyright li {
   display: inline-block;
   margin: 0;
   padding: 0;
   line-height: 24px;
}
.ie footer .copyright li {
   display: inline;
}
footer .copyright li:before {
   content: "•";
   padding-left: 10px;
   padding-right: 10px;
   color: var(--primary300);
}
footer .copyright li:first-child:before {
   display: none;
}

/* social links */
footer .social-links {
   margin: 18px 0 30px 0;
   padding: 0;
   font-size: 30px;
}
footer .social-links li {
   display: inline-block;
   margin: 0;
   padding: 0;
   margin-left: 42px;
   color: var(--secondary500);
}

footer .social-links li:first-child {
   margin-left: 0;
}



/* Go To Top Button */
#go-top {
   position: absolute;
   top: -24px;
   left: 50%;
   margin-left: -30px;
}
#go-top a {
   text-decoration: none;
   border: 0 none;
   display: block;
   width: 42px;
   height: 42px;
   background-color: #525252;

   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;

   color: #fff;
   font-size: 21px;
   line-height: 42px;
   border-radius: 100%;
}
#go-top a:hover {
   background-color: var(--primary400);
}
