/* =======================================================
*
* 	Template Style
*	CV customization: pill-style sidebar + light/dark mode (default: light)
*
* ======================================================= */

/* Theme tokens (mode toggled via: html[data-theme="dark"]) */
:root {
  --color-primary: #2c98f0;
  --color-primary-hover: #1f7ed0;
  --color-primary-light: rgba(44, 152, 240, 0.12);

  --color-text: rgba(0, 0, 0, 0.75);
  --color-text-strong: #000;
  --color-text-muted: rgba(0, 0, 0, 0.5);

  --color-bg: #ffffff;
  --color-bg-secondary: #f2f3f7;
  --color-border: rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] {
  --color-primary: #4ea3ff;
  --color-primary-hover: #88c2ff;
  --color-primary-light: rgba(78, 163, 255, 0.18);

  --color-text: rgba(255, 255, 255, 0.78);
  --color-text-strong: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.55);

  --color-bg: #0f141b;
  --color-bg-secondary: #151b24;
  --color-border: rgba(255, 255, 255, 0.1);
}
body {
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
}
@media screen and (max-width: 992px) {
  body {
    font-size: 16px;
  }
}

a {
  color: var(--color-primary);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover,
a:active,
a:focus {
  color: var(--color-primary-hover);
  outline: none;
  text-decoration: none !important;
}

p {
  margin-bottom: 1.5em;
}

/* Latest news list: align with section left edge */
.latest-news-list {
  margin: 0 0 1.2em 0.6em;
  padding-left: 0.3em;
  list-style-position: outside;
}

.latest-news-list li {
  margin-bottom: 0.25em;
}

.latest-news-list li:last-child {
  margin-bottom: 0;
}

/* Latest News scroll area (shows N items)
  N is controlled by the JS sizing logic via data-visible-items on .latest-news-wrap. */
.latest-news-wrap {
  position: relative;
  width: 100%;
}

.latest-news-scroll {
  width: 100%;
  max-width: none;

  /* small right padding so text doesn't hug the scrollbar */
  padding: 0 4px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;

  overflow-y: auto;
  overscroll-behavior: contain;

  /* Avoid layout shift when scrollbar appears (supported in modern browsers) */
  scrollbar-gutter: stable;

  /* Hide scrollbar by default; reveal on hover/focus */
  scrollbar-width: none;
  scrollbar-color: color-mix(in srgb, var(--color-text-muted) 45%, transparent)
    transparent;
  -ms-overflow-style: auto;
}

html[data-theme="dark"] .latest-news-scroll {
  box-shadow: none;
}

/* Reset list spacing inside the scroll container */
.latest-news-scroll .latest-news-list {
  margin: 0;
  padding-left: 1.05em;
  list-style-type: disc;
  list-style-position: outside;
}

.latest-news-scroll .latest-news-list li {
  margin-bottom: 0.35em;
}

.latest-news-scroll .latest-news-list li:last-child {
  margin-bottom: 0;
}

/* Mobile: keep bullets visible (overflow scroll can clip outside markers) */
@media screen and (max-width: 768px) {
  /* Full-bleed Latest News frame on mobile
     - #colorlib-main adds 1em side padding
     - Bootstrap gutters are handled by .row/-15px + .col/+15px */
  .page-home .latest-news-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .page-home .latest-news-scroll {
    /* Make the visible box itself flush with the viewport edges */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;

    /* Keep inner content aligned with the rest of the page */
    padding-left: 1em;
    padding-right: 1em;
    /* No need to reserve scrollbar space on mobile (scrollbar is hidden) */
    scrollbar-gutter: auto;
    overflow-x: visible;

    /* Mobile: keep the scrollbox, but hide the scrollbar (handled below) */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-home .latest-news-scroll .latest-news-list {
    /* No extra bottom space inside the scroll box */
    margin: 0;
    list-style-type: disc;
    /* Match normal lists in main content */
    padding-left: 0.3em;
    list-style-position: outside;
  }

  /* Mobile: make the Latest News scrollbar look shorter */
  .page-home .latest-news-scroll::-webkit-scrollbar-track,
  .page-publications .latest-news-scroll::-webkit-scrollbar-track {
    margin: 22px 0;
  }
}

/* WebKit scrollbar: keep a stable gutter; show thumb on hover/focus */
.latest-news-scroll::-webkit-scrollbar {
  width: 6px;
}

.latest-news-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.latest-news-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: content-box;
}

/* Firefox: thinner page scrollbars (no exact px control available) */
.page-home,
.page-publications {
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-text-muted) 45%, transparent)
    transparent;
}

/* Home/Publications polish: thinner + visually shorter scrollbar */
.page-home .latest-news-scroll::-webkit-scrollbar,
.page-publications .latest-news-scroll::-webkit-scrollbar {
  width: 3px;
}

.page-home .latest-news-scroll::-webkit-scrollbar-track,
.page-publications .latest-news-scroll::-webkit-scrollbar-track {
  background: transparent;
  margin: 18px 0;
}

.page-home .latest-news-scroll::-webkit-scrollbar-thumb,
.page-publications .latest-news-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: content-box;
}

/* Slim scrollbars across Home/Publications pages (keeps existing thumb-visibility rules) */
.page-home ::-webkit-scrollbar,
.page-publications ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.page-home ::-webkit-scrollbar-track,
.page-publications ::-webkit-scrollbar-track {
  background: transparent;
  margin: 14px 0;
}

/* Reveal scrollbar when user hovers the box (or focuses a link inside) */
.latest-news-wrap:hover .latest-news-scroll,
.latest-news-wrap:focus-within .latest-news-scroll {
  scrollbar-width: thin;
}

/* (WebKit) Show thumb only on hover/focus */
.latest-news-wrap:hover .latest-news-scroll::-webkit-scrollbar-thumb,
.latest-news-wrap:focus-within .latest-news-scroll::-webkit-scrollbar-thumb {
  background-color: color-mix(
    in srgb,
    var(--color-text-muted) 45%,
    transparent
  );
}

/* Extra emphasis when interacting with the thumb */
.latest-news-wrap:hover .latest-news-scroll::-webkit-scrollbar-thumb:hover,
.latest-news-wrap:focus-within
  .latest-news-scroll::-webkit-scrollbar-thumb:hover {
  background-color: color-mix(
    in srgb,
    var(--color-text-muted) 60%,
    transparent
  );
}

.latest-news-wrap:hover .latest-news-scroll::-webkit-scrollbar-thumb:active,
.latest-news-wrap:focus-within
  .latest-news-scroll::-webkit-scrollbar-thumb:active {
  background-color: color-mix(
    in srgb,
    var(--color-text-muted) 75%,
    transparent
  );
}

/* Bottom fade hint (fixed at the bottom of the box; hidden at bottom) */
.latest-news-wrap .latest-news-fade,
.latest-news-scroll .latest-news-fade {
  position: absolute;
  left: 0;
  /* Keep the fade from overlapping the overlay scrollbar */
  right: 10px;
  padding-right: 0;
  box-sizing: border-box;
  background-clip: content-box;
  bottom: 0;
  /* Roughly fade ~2 items to hint scrollability */
  height: clamp(56px, 4.8em, 88px);
  pointer-events: none;
  border-radius: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    color-mix(in srgb, var(--color-bg) 92%, transparent)
  );
  opacity: 1;
  transition: opacity 160ms ease;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  /* Mobile: fade should span the full box width */
  .latest-news-wrap .latest-news-fade,
  .latest-news-scroll .latest-news-fade {
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  /* Mobile: hide the scrollbar entirely */
  .latest-news-scroll {
    scrollbar-width: none;
  }

  .latest-news-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

.latest-news-wrap[data-at-bottom="true"] .latest-news-fade,
.latest-news-scroll[data-at-bottom="true"] .latest-news-fade {
  opacity: 0;
}

/* Content lists: match the Latest News left alignment (do not affect sidebar/nav) */
#colorlib-main ul {
  margin: 0 0 1.2em 0.6em;
  padding-left: 0.3em;
  list-style-position: outside;
}

/* Nested lists should still show hierarchy */
#colorlib-main ul ul {
  margin-top: 0.6em;
  padding-left: 1.5em;
  list-style-position: outside;
}

/* Make main-content text a bit more compact (does not affect the sidebar) */
#colorlib-main p {
  margin-bottom: 1.1em;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* Inline emphasis: nicer font, same size */
#colorlib-main .text-emphasis {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
  color: var(--color-text-strong);
  padding: 0 0.1em;
  border-radius: 0.2em;
  box-shadow: inset 0 -0.35em 0 var(--color-primary-light);
}

/* Muted ranking/meta labels like (SCIE, Q1), (CORE A*) */
#colorlib-main .rank-tag {
  color: #667085;
  opacity: 0.5;
}

html[data-theme="dark"] #colorlib-main .rank-tag {
  color: #9aa4b2;
  opacity: 0.5;
}

/* Award highlight: subtle color + dotted underline */
#colorlib-main .award-highlight {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* Publications list: show [1]. [2]. ... and align close to left edge */
#colorlib-main ol.pub-list {
  list-style: none;
  margin: 0 0 0 0;
  padding-left: 0;
  counter-reset: pub;
}

#colorlib-main ol.pub-list > li {
  counter-increment: pub;
  position: relative;
  padding-left: 2.35em;
  margin-bottom: 0.25em;
}

#colorlib-main ol.pub-list > li::before {
  content: "[" counter(pub) "]";
  position: absolute;
  left: 0;
}

/* Continuous numbering across multiple year lists */
#colorlib-main .pubs-continue {
  counter-reset: pub;
}

#colorlib-main .pubs-continue ol.pub-list {
  counter-reset: none;
}

/* Publications page helpers: year headers + link chips */
#colorlib-main .pub-year {
  margin-top: 1.6em;
  margin-bottom: 0.75em;
  display: flex;
  align-items: center;
  gap: 12px;
}

#colorlib-main .pub-year .year {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--color-text-strong);
  letter-spacing: 0.5px;
  position: relative;
  top: -2px;
}

#colorlib-main .pub-year::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

#colorlib-main .pub-links {
  margin-left: 0.25em;
  font-size: 0.95em;
}

#colorlib-main .pub-links a {
  color: var(--color-primary);
  text-transform: lowercase;
  letter-spacing: 0.3px;
}

#colorlib-main .pub-links a:hover,
#colorlib-main .pub-links a:focus {
  color: var(--color-primary-hover);
}

/* Justify list text in main content (education/experience/news, etc.) */
#colorlib-main li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  margin: 0 0 30px 0;
}

figure {
  margin-bottom: 2.5em;
  float: left;
  width: 100%;
}
figure figcaption {
  font-size: 16px;
  width: 80%;
  margin: 20px auto 0px auto;
  color: #b3b3b3;
  font-style: italic;
  font-family: "Quicksand", Arial, sans-serif;
}
@media screen and (max-width: 480px) {
  figure figcaption {
    width: 100%;
  }
}

::-webkit-selection {
  color: #fff;
  background: #2c98f0;
}

::-moz-selection {
  color: #fff;
  background: #2c98f0;
}

::selection {
  color: #fff;
  background: #2c98f0;
}

#colorlib-page {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#colorlib-aside {
  padding-top: 3em;
  padding-bottom: 40px;
  float: left;
  width: 300px;
  position: fixed;
  overflow-y: auto;
  z-index: 1001;
  background: var(--color-bg-secondary);
  border-right: 1px solid var(--color-border);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* Hide sidebar scrollbar (keep scrolling) */
#colorlib-aside {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

#colorlib-aside::-webkit-scrollbar {
  width: 0;
  height: 0;
}
@media screen and (max-width: 768px) {
  #colorlib-aside {
    width: 300px;
    -moz-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    transform: translateX(-300px);
    padding-top: 4em;
  }
}
#colorlib-aside .author-img {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  object-fit: cover;
}
#colorlib-aside .position {
  display: block;
  margin-bottom: 0.35em;
  font-size: 12px;
  text-transform: uppercase;
}

/* When multiple positions are stacked, keep them tight */
#colorlib-aside .position + .position {
  margin-top: -0.1em;
}

/* Keep a bit more breathing room after the last position line */
#colorlib-aside .position:last-of-type {
  margin-bottom: 2.25em;
}
#colorlib-aside #colorlib-logo {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 0.5em;
  display: block;
  width: 100%;
}
#colorlib-aside #colorlib-logo a {
  display: block;
  text-align: center;
  color: var(--color-text-strong);
  padding-right: 0;
}
#colorlib-aside #colorlib-main-menu {
  display: block;
  width: 100%;
}
#colorlib-aside #colorlib-main-menu .collapse {
  display: block !important;
}
#colorlib-aside #colorlib-main-menu ul {
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #colorlib-aside #colorlib-main-menu ul {
    margin: 0 0 2em 0;
  }
}
#colorlib-aside #colorlib-main-menu ul li {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#colorlib-aside #colorlib-main-menu ul li a {
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding: 8px 16px;
  font-family: "Quicksand", Arial, sans-serif;
  border-radius: 8px;
  background: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#colorlib-aside #colorlib-main-menu ul li a:hover {
  text-decoration: none;
  color: var(--color-primary);
  background: var(--color-primary-light);
}
#colorlib-aside #colorlib-main-menu ul li.active a {
  color: var(--color-primary);
  background: var(--color-primary-light);
  font-weight: 600;
}

/* Pills spacing override (keep in sync with the menu list item rule above) */
#colorlib-aside #colorlib-main-menu ul li {
  margin: 0 0 14px 0;
}

/* Dark mode: do NOT override the avatar ring stroke.
   Non-hover color is controlled in index.html (solid light-blue),
   and hover uses the SVG gradient. */

/* Theme toggle button (sidebar) */
.theme-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 14px 0 6px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);

  padding: 8px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
}

.theme-toggle:hover {
  background: var(--color-bg-secondary);
}

.theme-toggle:active {
  transform: translateY(1px);
}

.theme-toggle .theme-icon {
  width: 16px;
  height: 16px;
}

/* Default is light => show moon icon (meaning "switch to dark") */
html:not([data-theme="dark"]) .theme-toggle .theme-icon-sun {
  display: none;
}
html:not([data-theme="dark"]) .theme-toggle .theme-icon-moon {
  display: inline-block;
}

/* Dark => show sun icon (meaning "switch to light") */
html[data-theme="dark"] .theme-toggle .theme-icon-sun {
  display: inline-block;
}
html[data-theme="dark"] .theme-toggle .theme-icon-moon {
  display: none;
}

.theme-toggle .theme-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

#colorlib-aside .colorlib-footer {
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  color: var(--color-text-muted);
  padding: 0 20px;
  width: 100%;
}

/* Ensure copyright text and any nested <small> inherits the themed color */
#colorlib-aside .colorlib-footer small {
  color: var(--color-text-muted);
}

#colorlib-aside .colorlib-footer a {
  color: var(--color-primary);
}

html[data-theme="dark"] #colorlib-aside .colorlib-footer {
  color: var(--color-text-muted);
}
@media screen and (max-width: 768px) {
  #colorlib-aside .colorlib-footer {
    position: relative;
    bottom: 0;
  }
}
#colorlib-aside .colorlib-footer span {
  display: block;
}
#colorlib-aside .colorlib-footer ul {
  padding: 0;
  margin: 0;
}
#colorlib-aside .colorlib-footer ul li {
  padding: 0;
  margin: 0;
  display: inline;
  list-style: none;
}
#colorlib-aside .colorlib-footer ul li a {
  color: rgba(255, 255, 255, 0.3);
  padding: 4px;
}
#colorlib-aside .colorlib-footer ul li a:hover,
#colorlib-aside .colorlib-footer ul li a:active,
#colorlib-aside .colorlib-footer ul li a:focus {
  text-decoration: none;
  outline: none;
  color: #2c98f0;
}

.container-wrap {
  max-width: 1170px;
  margin: 0 auto;
}

#colorlib-main {
  width: calc(100% - 300px);
  float: right;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #colorlib-main {
    width: 100%;
    padding: 0 1em;
  }
}

#colorlib-hero {
  min-height: 500px;
  background: #fff;
  width: 100%;
  float: left;
  margin-bottom: 10em;
  clear: both;
}
#colorlib-hero .flexslider {
  border: none;
  z-index: 1;
  margin-bottom: 0;
}
#colorlib-hero .flexslider .slides {
  position: relative;
  overflow: visible;
}
#colorlib-hero .flexslider .slides li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  min-height: 400px;
  position: relative;
}
#colorlib-hero .flexslider .flex-control-nav {
  bottom: 20px;
  z-index: 1000;
  left: 20px;
  float: left;
  width: auto;
}
@media screen and (max-width: 768px) {
  #colorlib-hero .flexslider .flex-control-nav {
    right: 20px;
    top: 100px;
  }
}
#colorlib-hero .flexslider .flex-control-nav li {
  display: block;
  margin-bottom: 10px;
}
#colorlib-hero .flexslider .flex-control-nav li a {
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
#colorlib-hero .flexslider .flex-control-nav li a.flex-active {
  cursor: pointer;
  background: transparent;
  border: 2px solid #2c98f0;
}
#colorlib-hero .flexslider .flex-direction-nav {
  display: none;
}
#colorlib-hero .flexslider .slider-text {
  display: table;
  opacity: 0;
  min-height: 500px;
  z-index: 9;
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner {
  display: table-cell;
  vertical-align: middle;
  min-height: 700px;
  padding: 2.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #colorlib-hero .flexslider .slider-text > .slider-text-inner {
    text-align: center;
  }
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner h1,
#colorlib-hero .flexslider .slider-text > .slider-text-inner h2 {
  margin: 0;
  padding: 0;
  color: black;
  font-family: "Playfair Display", Georgia, serif;
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner h1 {
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #colorlib-hero .flexslider .slider-text > .slider-text-inner h1 {
    font-size: 28px;
  }
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner h2 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 300;
  font-family: "Quicksand", Arial, sans-serif;
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner h2 a {
  color: rgba(44, 152, 240, 0.8);
  border-bottom: 1px solid rgba(44, 152, 240, 0.7);
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner .heading-section {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  #colorlib-hero
    .flexslider
    .slider-text
    > .slider-text-inner
    .heading-section {
    font-size: 30px;
  }
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner s .colorlib-lead {
  font-size: 20px;
  color: #fff;
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner p {
  margin-bottom: 0;
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner .btn {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  padding: 10px 15px !important;
  border: none;
  font-weight: 400;
}
#colorlib-hero .flexslider .slider-text > .slider-text-inner .btn.btn-learn {
  color: #000;
  border: 1px solid #000;
  background: transparent !important;
}
#colorlib-hero
  .flexslider
  .slider-text
  > .slider-text-inner
  .btn.btn-learn:hover {
  background: transparent !important;
  border: 1px solid #000 !important;
}
@media screen and (max-width: 768px) {
  #colorlib-hero .flexslider .slider-text > .slider-text-inner .btn {
    width: 100%;
  }
}

body.offcanvas {
  overflow-x: hidden;
}
body.offcanvas #colorlib-aside {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  width: 300px;
  background: var(--color-bg-secondary);
  z-index: 999;
  position: fixed;
}

/* Mobile: keep sidebar scrollable like a normal menu (toggle stays in-flow, never overlays content) */
@media screen and (max-width: 768px) {
  body.offcanvas #colorlib-aside {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.offcanvas #colorlib-aside .colorlib-footer {
    background: transparent;
    border-top: 0;
  }

  body.offcanvas #colorlib-aside .theme-toggle-wrapper {
    z-index: auto;
  }
}

/* Hamburger icon should be white/visible on dark theme */
html[data-theme="dark"] .colorlib-nav-toggle i,
html[data-theme="dark"] .colorlib-nav-toggle i::before,
html[data-theme="dark"] .colorlib-nav-toggle i::after {
  background: rgba(255, 255, 255, 0.95) !important;
}
body.offcanvas #colorlib-main,
body.offcanvas .colorlib-nav-toggle {
  top: 0;
  -moz-transform: translateX(300px);
  -webkit-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transform: translateX(300px);
}

.colorlib-narrow-content {
  /* Keep left gutter as-is; add a small right gutter for readability */
  padding: 0 clamp(0.75em, 2vw, 1.25em) 0 2.5em;
}
@media screen and (max-width: 768px) {
  .colorlib-narrow-content {
    padding: 0;
  }
}

.no-gutters {
  margin: 0;
  padding: 0;
}

.colorlib-experience,
.colorlib-skills,
.colorlib-education,
.colorlib-blog,
.colorlib-work,
.colorlib-about,
.colorlib-services,
.colorlib-contact {
  padding-top: 3em;
  padding-bottom: 5em;
  clear: both;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .colorlib-experience,
  .colorlib-skills,
  .colorlib-education,
  .colorlib-blog,
  .colorlib-work,
  .colorlib-about,
  .colorlib-services,
  .colorlib-contact {
    padding-top: 3.5em;
    padding-bottom: 4em;
  }
}

.author-img {
  position: relative;
}

.colorlib-heading {
  font-size: 16px;
  margin-bottom: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.8;
  position: relative;
}
.colorlib-heading span {
  display: block;
}
@media screen and (max-width: 768px) {
  .colorlib-heading {
    margin-bottom: 3em;
  }
}

.heading-meta {
  margin-bottom: 15px;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 500;
  letter-spacing: 5px;
}

.about-img {
  width: 100%;
  height: 600px;
  margin-bottom: 30px;
}

.about-desc h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 500;
}

.hire {
  padding: 2em;
  background: #f9bf3f;
}
.hire h2 {
  line-height: 1.5;
}
.hire .btn-hire {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #000;
  padding: 2px 10px;
}

.fancy-collapse-panel .panel-default > .panel-heading {
  padding: 0;
}

.panel-heading a {
  padding: 20px 25px;
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Quicksand", Arial, sans-serif;
  background-color: #2c98f0;
  color: #fff;
  position: relative;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
}

.panel {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
}

.panel-heading a:after {
  content: "−";
  position: absolute;
  right: 20px;
  font-size: 18px;
  font-weight: 700;
  top: 50%;
  line-height: 1;
  margin-top: -9px;
}

.panel-heading a.collapsed:after {
  content: "+";
}

.panel-heading a.collapsed {
  background: #f2f3f7;
  border: 1px solid #e6e6e6 !important;
  color: #333333;
}

.panel-body {
  padding: 1.5em;
  margin-top: 5px;
  border: 1px solid #e6e6e6 !important;
}

.timeline-centered {
  position: relative;
  margin-bottom: 30px;
}

.timeline-centered:before,
.timeline-centered:after {
  content: " ";
  display: table;
}

.timeline-centered:after {
  clear: both;
}

.timeline-centered:before,
.timeline-centered:after {
  content: " ";
  display: table;
}

.timeline-centered:after {
  clear: both;
}

.timeline-centered:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  background: #f2f3f7;
  top: 20px;
  bottom: 20px;
  margin-left: 29px;
}

.timeline-centered .timeline-entry {
  position: relative;
  margin-top: 5px;
  margin-left: 30px;
  margin-bottom: 10px;
  clear: both;
}

.timeline-centered .timeline-entry .timeline-entry-inner {
  position: relative;
  margin-left: -20px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
  display: block;
  width: 40px;
  height: 40px;
  background: #2c98f0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  -moz-box-shadow: 0 0 0 5px #f2f3f7;
  -webkit-box-shadow: 0 0 0 5px #f2f3f7;
  box-shadow: 0 0 0 5px #f2f3f7;
  line-height: 40px;
  float: left;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon i {
  color: #fff;
}
.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-icon.color-2 {
  background: #ec5453;
}
.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-icon.color-3 {
  background: #f9bf3f;
}
.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-icon.color-4 {
  background: #a84cb8;
}
.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-icon.color-5 {
  background: #2fa499;
}
.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-icon.color-none {
  background: #fff;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
  position: relative;
  background: #f2f3f7;
  padding: 1.5em;
  margin-left: 60px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #f2f3f7 transparent transparent;
  left: 0;
  top: 10px;
  margin-left: -9px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p {
  margin-top: 15px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 {
  font-size: 20px;
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 500;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 a {
  color: #000;
}

.timeline-centered
  .timeline-entry
  .timeline-entry-inner
  .timeline-label
  h2
  span {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: alpha(opacity=40);
  filter: alpha(opacity=40);
  font-size: 16px;
}

.services {
  margin-bottom: 30px;
  padding: 1.5em;
  -webkit-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
  -ms-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
  -o-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
  border-bottom: 2px solid #2c98f0;
}
.services .icon2 {
  display: block;
  margin-bottom: 20px;
}
.services .icon2 i {
  font-size: 30px;
  color: #2c98f0;
}
.services h3 {
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.services.color-2 {
  border-bottom: 2px solid #ec5453;
}
.services.color-2 .icon2 i {
  color: #ec5453;
}
.services.color-3 {
  border-bottom: 2px solid #f9bf3f;
}
.services.color-3 .icon2 i {
  color: #f9bf3f;
}
.services.color-4 {
  border-bottom: 2px solid #a84cb8;
}
.services.color-4 .icon2 i {
  color: #a84cb8;
}
.services.color-5 {
  border-bottom: 2px solid #2fa499;
}
.services.color-6 {
  border-bottom: 2px solid #4054b2;
}

.services {
  margin-bottom: 80px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .services {
    margin-bottom: 4em;
  }
}
.services .icon {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  width: 100px;
  height: 50px;
  display: table;
  margin: 0 auto;
  background: #2c98f0;
}
.services .icon:before,
.services .icon:after {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
}
.services .icon:before {
  top: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 30px 50px;
  border-color: transparent transparent #2c98f0 transparent;
}
.services .icon:after {
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #2c98f0 transparent transparent transparent;
}
.services .icon i {
  font-size: 30px;
  color: #fff;
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
}
.services .desc {
  margin-top: 60px;
}
.services .desc h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.services.color-2 .icon {
  background: #ec5453;
}
.services.color-2 .icon:before {
  border-color: transparent transparent #ec5453 transparent;
}
.services.color-2 .icon:after {
  border-color: #ec5453 transparent transparent transparent;
}
.services.color-3 .icon {
  background: #f9bf3f;
}
.services.color-3 .icon:before {
  border-color: transparent transparent #f9bf3f transparent;
}
.services.color-3 .icon:after {
  border-color: #f9bf3f transparent transparent transparent;
}
.services.color-4 .icon {
  background: #a84cb8;
}
.services.color-4 .icon:before {
  border-color: transparent transparent #a84cb8 transparent;
}
.services.color-4 .icon:after {
  border-color: #a84cb8 transparent transparent transparent;
}
.services.color-5 .icon {
  background: #2fa499;
}
.services.color-5 .icon:before {
  border-color: transparent transparent #2fa499 transparent;
}
.services.color-5 .icon:after {
  border-color: #2fa499 transparent transparent transparent;
}
.services.color-6 .icon {
  background: #4054b2;
}
.services.color-6 .icon:before {
  border-color: transparent transparent #4054b2 transparent;
}
.services.color-6 .icon:after {
  border-color: #4054b2 transparent transparent transparent;
}

.progress-wrap h3 {
  font-size: 16px;
  font-family: "Quicksand", Arial, sans-serif;
  margin-bottom: 10px;
}

.progress {
  height: 6px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #f2f3f7;
  overflow: visible;
}

.progress-bar {
  background: #2c98f0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
  text-align: right;
  position: relative;
  overflow: visible;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.progress-bar:after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: #2c98f0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.progress-bar span {
  position: absolute;
  top: -22px;
  right: 0;
}
.progress-bar.color-1 {
  background: #2c98f0;
}
.progress-bar.color-1:after {
  background: #2c98f0;
}
.progress-bar.color-1 span {
  color: #2c98f0;
}
.progress-bar.color-2 {
  background: #ec5453;
}
.progress-bar.color-2:after {
  background: #ec5453;
}
.progress-bar.color-2 span {
  color: #ec5453;
}
.progress-bar.color-3 {
  background: #f9bf3f;
}
.progress-bar.color-3:after {
  background: #f9bf3f;
}
.progress-bar.color-3 span {
  color: #f9bf3f;
}
.progress-bar.color-4 {
  background: #a84cb8;
}
.progress-bar.color-4:after {
  background: #a84cb8;
}
.progress-bar.color-4 span {
  color: #a84cb8;
}
.progress-bar.color-5 {
  background: #2fa499;
}
.progress-bar.color-5:after {
  background: #2fa499;
}
.progress-bar.color-5 span {
  color: #2fa499;
}
.progress-bar.color-6 {
  background: #4054b2;
}
.progress-bar.color-6:after {
  background: #4054b2;
}
.progress-bar.color-6 span {
  color: #4054b2;
}

.colorlib-feature {
  text-align: left;
  width: 100%;
  float: left;
  margin-bottom: 40px;
  position: relative;
}
.colorlib-feature .colorlib-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  display: table;
  text-align: center;
  background: #f2f3f7;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.colorlib-feature .colorlib-icon i {
  display: table-cell;
  vertical-align: middle;
  color: #2c98f0;
  font-size: 60px;
  height: 100px;
}
@media screen and (max-width: 1200px) {
  .colorlib-feature .colorlib-icon i {
    font-size: 40px;
  }
}
.colorlib-feature .colorlib-text {
  padding-left: 120px;
  width: 100%;
}
.colorlib-feature .colorlib-text h2,
.colorlib-feature .colorlib-text h3 {
  margin: 0;
  padding: 0;
}
.colorlib-feature .colorlib-text h3 {
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.colorlib-feature.colorlib-feature-sm .colorlib-text {
  margin-top: 30px;
}
.colorlib-feature.colorlib-feature-sm .colorlib-icon i {
  color: #2c98f0;
  font-size: 40px;
}
@media screen and (max-width: 1200px) {
  .colorlib-feature.colorlib-feature-sm .colorlib-icon i {
    font-size: 28px;
  }
}

.blog-entry {
  width: 100%;
  float: left;
  background: #fff;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .blog-entry {
    margin-bottom: 3em;
  }
}
.blog-entry .blog-img {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.blog-entry .blog-img img {
  position: relative;
  max-width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.blog-entry .desc h3 {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: auto;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Quicksand", Arial, sans-serif;
}
.blog-entry .desc h3 a {
  color: #000;
  text-decoration: none;
}
.blog-entry .desc span {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.blog-entry .desc span small i {
  color: #999999;
}
.blog-entry .desc .lead {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
}
.blog-entry:hover .blog-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.work-menu span {
  margin-left: 10px;
}
.work-menu span:first-child {
  margin-left: 0;
}
.work-menu span a {
  color: #000;
}
.work-menu span a.active {
  color: #2c98f0;
}

.project {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 300px;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.project .desc {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c98f0;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.project .desc .con {
  padding: 20px;
  display: block;
  position: relative;
  height: 300px;
}
.project .desc .con .icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.project .desc .con .icon span {
  display: inline;
  padding-right: 5px;
}
.project .desc .con .icon span a {
  color: #333333;
  padding: 5px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.project .desc .con .icon i {
  font-size: 16px;
  color: #333333;
}
.project .desc h3 {
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition:
    -webkit-transform 0.3s,
    opacity 0.3s;
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  -o-transition:
    transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
  margin-bottom: 15px;
}
.project .desc h3 a {
  color: #fff;
}
.project .desc span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  -webkit-transition:
    -webkit-transform 0.3s,
    opacity 0.3s;
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  -o-transition:
    transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}
.project .desc span a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .project .desc {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
  }
  .project .desc h3 {
    font-style: 28px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #000;
  }
  .project .desc span {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.project:hover .desc {
  opacity: 1;
}
.project:hover .desc h3 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.project:hover .desc span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-load-more {
  width: 100%;
}

#colorlib-counter {
  position: relative;
  clear: both;
  margin-bottom: 5em;
}

.colorlib-counters {
  padding: 3em 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
.colorlib-counters .overlay {
  z-index: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}
.colorlib-counters .icon {
  width: 100px;
  height: 100px;
  display: table;
  margin: 0 auto;
  margin-bottom: 20px;
}
.colorlib-counters .icon i {
  display: table-cell;
  vertical-align: middle;
  width: 100px;
  height: 100px;
  font-size: 50px;
  color: #2c98f0;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.colorlib-counters .counter-wrap {
  border: 1px solid red !important;
}
.colorlib-counters .colorlib-counter {
  font-size: 40px;
  display: block;
  color: white;
  font-family: "Quicksand", Arial, sans-serif;
  width: 100%;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.colorlib-counters .colorlib-counter-label {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 5px;
  margin-bottom: 2em;
  display: block;
}

.colorlib-social {
  padding: 0;
  margin: 0;
  text-align: center;
}
.colorlib-social li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.colorlib-social li a {
  font-size: 22px;
  color: #000;
  padding: 10px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
@media screen and (max-width: 768px) {
  .colorlib-social li a {
    padding: 10px 8px;
  }
}
.colorlib-social li a:hover {
  color: #2c98f0;
}
.colorlib-social li a:hover,
.colorlib-social li a:active,
.colorlib-social li a:focus {
  outline: none;
  text-decoration: none;
  color: #2c98f0;
}

#map {
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 768px) {
  #map {
    height: 200px;
  }
}

.colorlib-bg-color {
  background: #fafafa;
  position: relative;
}

.pagination {
  padding: 0;
}
.pagination li {
  margin: 2px;
}
.pagination li a {
  color: #000;
  background: transparent;
  color: #000;
  margin: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.pagination li a:first-child {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.pagination li a:hover,
.pagination li a:focus {
  background: #2c98f0;
  color: #fff;
  border: 1px solid #2c98f0;
}
@media screen and (max-width: 768px) {
  .pagination li a {
    padding: 7px 15px;
  }
}
.pagination li.active a {
  background: #2c98f0;
  border: 1px solid #2c98f0 !important;
}
.pagination li.active a:hover,
.pagination li.active a:focus {
  background: #2c98f0;
  color: #fff;
  border: 1px solid #2c98f0 !important;
}

.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 15px !important;
}
.btn.btn-sm {
  padding: 4px 15px !important;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover,
.btn:active,
.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background: #2c98f0;
  color: #fff;
  border: 2px solid #2c98f0;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #44a4f2 !important;
  border-color: #44a4f2 !important;
}
.btn-primary.btn-outline {
  background: transparent;
  color: #2c98f0;
  border: 2px solid #2c98f0;
}
.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus,
.btn-primary.btn-outline:active {
  background: #2c98f0;
  color: #fff;
}

.btn-success {
  background: #5cb85c;
  color: #fff;
  border: 2px solid #5cb85c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background: #4cae4c !important;
  border-color: #4cae4c !important;
}
.btn-success.btn-outline {
  background: transparent;
  color: #5cb85c;
  border: 2px solid #5cb85c;
}
.btn-success.btn-outline:hover,
.btn-success.btn-outline:focus,
.btn-success.btn-outline:active {
  background: #5cb85c;
  color: #fff;
}

.btn-info {
  background: #5bc0de;
  color: #fff;
  border: 2px solid #5bc0de;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important;
}
.btn-info.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 2px solid #5bc0de;
}
.btn-info.btn-outline:hover,
.btn-info.btn-outline:focus,
.btn-info.btn-outline:active {
  background: #5bc0de;
  color: #fff;
}

.btn-warning {
  background: #f0ad4e;
  color: #fff;
  border: 2px solid #f0ad4e;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background: #eea236 !important;
  border-color: #eea236 !important;
}
.btn-warning.btn-outline {
  background: transparent;
  color: #f0ad4e;
  border: 2px solid #f0ad4e;
}
.btn-warning.btn-outline:hover,
.btn-warning.btn-outline:focus,
.btn-warning.btn-outline:active {
  background: #f0ad4e;
  color: #fff;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
  border: 2px solid #d9534f;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background: #d43f3a !important;
  border-color: #d43f3a !important;
}
.btn-danger.btn-outline {
  background: transparent;
  color: #d9534f;
  border: 2px solid #d9534f;
}
.btn-danger.btn-outline:hover,
.btn-danger.btn-outline:focus,
.btn-danger.btn-outline:active {
  background: #d9534f;
  color: #fff;
}

.btn-outline {
  background: none;
  border: 2px solid gray;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border: transparent;
  background: #f2f3f7;
  height: 54px;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  background: #f0f0f0;
}

#message {
  height: 130px;
}

.colorlib-nav-toggle {
  cursor: pointer;
  text-decoration: none;
}
.colorlib-nav-toggle.active i::before,
.colorlib-nav-toggle.active i::after {
  background: currentColor;
}
.colorlib-nav-toggle.dark.active i::before,
.colorlib-nav-toggle.dark.active i::after {
  background: currentColor;
}
.colorlib-nav-toggle:hover,
.colorlib-nav-toggle:focus,
.colorlib-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}
.colorlib-nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  width: 30px;
  height: 2px;
  color: #000;
  font: bold 14px/0.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: currentColor;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.colorlib-nav-toggle i::before,
.colorlib-nav-toggle i::after {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.colorlib-nav-toggle.dark i {
  position: relative;
  color: #000;
  background: currentColor;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.colorlib-nav-toggle.dark i::before,
.colorlib-nav-toggle.dark i::after {
  background: currentColor;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.colorlib-nav-toggle i::before {
  top: -7px;
}

.colorlib-nav-toggle i::after {
  bottom: -7px;
}

.colorlib-nav-toggle:hover i::before {
  top: -10px;
}

.colorlib-nav-toggle:hover i::after {
  bottom: -10px;
}

.colorlib-nav-toggle.active i {
  background: transparent !important;
}

html[data-theme="dark"] .colorlib-nav-toggle.active i {
  background: transparent !important;
}

.colorlib-nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.colorlib-nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.colorlib-nav-toggle {
  position: fixed;
  left: -5px;
  top: 0px;
  z-index: 9999;
  cursor: pointer;
  opacity: 1;
  visibility: hidden;
  padding: 20px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .colorlib-nav-toggle {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile: push content down a bit under the fixed hamburger/X */
  #colorlib-main {
    padding-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

.row-bottom-padded-lg {
  padding-bottom: 7em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-lg {
    padding-bottom: 1em;
  }
}

.row-bottom-padded-md {
  padding-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-md {
    padding-bottom: 1em;
  }
}

.row-bottom-padded-sm {
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-sm {
    padding-bottom: 1em;
  }
}

.row-pt-md {
  padding-top: 3em;
}

.col-padding {
  padding: 10px !important;
}

.js .animate-box {
  opacity: 0;
}
