/*====================================================
	Importing less files
====================================================*/
/*====================================================
	COLOR VARIABLE FOR THEME
====================================================*/
/*====================================================
	MIXINS
====================================================*/
/*====================================================
	Common styles
====================================================*/
body {
  font-family: 'Inconsolata';
  font-size: 16px;
  font-weight: 300;
  color: #707070;
  line-height: 2em;
  min-height: calc(100vh);
  display: flex;
  flex-direction: column;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #202020;
  margin-top: 0;
  margin-bottom: 8px;
}
h1 {
  font-size: 40px;
  letter-spacing: 4px;
}
h2 {
  font-size: 32px;
  letter-spacing: 2px;
}
h3 {
  font-size: 24px;
  letter-spacing: 2px;
}
h4 {
  font-size: 18px;
  letter-spacing: 2px;
}
h5 {
  font-size: 16px;
  letter-spacing: 2px;
}
h6 {
  font-size: 14px;
  letter-spacing: 2px;
}
a {
  color: #a3d827;
}
a:hover,
a:focus {
  color: #a3d827;
  text-decoration: none;
  outline: none;
}
iframe {
  display: block;
  border: 0;
}
img.gray {
  -webkit-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
img.gray:hover {
  -webkit-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
img.gray:before {
  content: '';
  width: 100%;
  background: #ffffff;
}
.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  height: 48px;
  line-height: 48px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0 24px;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}
.btn-default {
  border: 1px solid #707070;
  background: none;
  color: #707070;
  position: relative;
}
.btn-default:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #a3d827;
  z-index: -1;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.btn-default:hover,
.btn-default:focus {
  background: none;
  color: #ffffff !important;
  border: 1px solid #a3d827;
}
.btn-default:hover:after,
.btn-default:focus:after {
  height: 520%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.btn-sm {
  padding: 0 10px;
  height: 32px;
  font-size: 12px;
  line-height: 32px;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
.loading .btn,
.loading button,
.loading input[type='submit'] {
  position: relative;
  padding-left: 4.75rem;
}
.loading .btn:before,
.loading button:before,
.loading input[type='submit']:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 24px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  animation: loading 0.6s linear infinite;
}
.btn.loading,
button.loading,
input[type='submit'].loading {
  position: relative;
  padding-left: 4.75rem;
}
.btn.loading:before,
button.loading:before,
input[type='submit'].loading:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 24px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  animation: loading 0.6s linear infinite;
}
input[type='text'],
input[type='email'],
textarea {
  border: 1px solid #202020;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: 48px;
  width: 100%;
  font-size: 1.25em;
  line-height: 48px;
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}
input[type='text']:focus,
input[type='email']:focus,
textarea:focus {
  border: 1px solid #a3d827;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
textarea {
  height: auto;
}
.form-control {
  height: 40px;
}
figure {
  margin-bottom: 16px;
}
figcaption {
  text-align: center;
  font-size: 14px;
}
blockquote {
  padding: 24px 32px;
  line-height: 1.5em;
  font-style: italic;
  background: #979695;
  color: #ffffff;
  margin-bottom: 24px;
  border-left: 4px solid #a3d827;
}
blockquote cite {
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  color: #bbbbbb;
}
blockquote cite:before {
  content: "\2013";
  margin-right: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
table,
th,
td {
  border: none;
}
th,
td {
  padding: 4px 8px;
}
pre {
  font-size: 14px;
  line-height: 24px;
  padding: 0;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.hljs {
  padding: 16px 32px;
}
::-moz-selection {
  color: #ffffff;
  background: #a3d827;
  text-shadow: none;
}
::selection {
  color: #ffffff;
  background: #a3d827;
  text-shadow: none;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
/*====================================================
	Cover style
====================================================*/
.cover {
  color: #ffffff;
  position: relative;
  background-size: cover;
  background-color: #202020;
  background-position: center;
  background-attachment: fixed;
}
.cover h1,
.cover h2,
.cover h3,
.cover h4,
.cover h5,
.cover h6 {
  color: #ffffff;
}
.cover a {
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cover a:hover,
.cover a:focus {
  color: #a3d827;
}
.cover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 32, 32, 0.9);
}
.cover .title {
  color: #ffffff;
}
.cover .description {
  font-size: 18px;
  letter-spacing: 1px;
  padding-top: 16px;
}
.cover .avatar {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 16px;
}
.cover .meta-info {
  font-size: 14px;
  padding: 16px 0;
  position: relative;
}
.cover .meta-info span {
  margin-right: 16px;
}
.cover .meta-info span:last-child {
  margin-right: 0;
}
.cover .meta-info span i {
  margin-right: 8px;
}
.cover .meta-info:before {
  content: '';
  width: 160px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -80px;
  background: #a3d827;
}
.cover .post-count {
  font-size: 14px;
  padding: 16px 0;
}
.cover .tag-description {
  position: relative;
}
.cover .tag-description:before {
  content: '';
  width: 160px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -80px;
  background: #a3d827;
}
/* scroll icon */
.scroll-icon,
.scroll-icon:before {
  position: absolute;
}
.scroll-icon {
  width: 28px;
  height: 44px;
  margin-left: -14px;
  bottom: 40px;
  margin-top: -35px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  opacity: 0.7;
}
.scroll-icon:before {
  content: '';
  width: 4px;
  height: 8px;
  background: #ffffff;
  margin-left: -2px;
  top: 8px;
  border-radius: 4px;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}
/*====================================================
	Header / navbar
====================================================*/

.main-header {
  width: 100%;
  background: #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.main-header.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.main-header .navbar {
  border: none;
  margin-bottom: 0;
}
.main-header .container {
  box-sizing: border-box;
}
.main-header .container .navbar-content-wrap {
  border-bottom: 1px solid #707070;
  padding: 32px 0;
  transition: padding 0.3s;
}
.main-header .btn-menu-toggle {
  padding: 10px;
  z-index: 99;
}
.main-header .btn-menu-toggle span {
  background: #202020;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -ms-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
}
.main-header .btn-menu-toggle:hover span,
.main-header .btn-menu-toggle:focus span {
  background: #ffffff;
}
.main-header .btn-menu-toggle:active {
  background: none;
  box-shadow: none;
}
.main-header .navbar-brand {
  font-size: 48px;
  font-family: 'Montserrat', sans-serif;
  color: #202020;
  height: auto;
  margin-top:-25px;
  margin-bottom:-25px;
  width:300px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.main-header .navbar-brand:hover,
.main-header .navbar-brand:focus {
  color: #202020;
}
.main-header .navbar-brand.image-logo {
  padding: 0px 15px;
}
.main-header .navbar-brand.image-logo img {
  max-height: 56px;
}
.main-header .menu {
  padding: 0;
  margin-top: 5px;
  margin-bottom: 0;
  alignment-baseline:central;
}
.main-header .menu li {
  list-style: none;
  display: inline-block;
  margin: 12px 0 12px 32px;
  font-family: 'Montserrat', sans-serif;
}
.main-header .menu li a {
  position: relative;
  text-transform: uppercase;
  color: #707070;
  font-size: 14px;
  letter-spacing: 2px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-header .menu li a.btn {
  z-index: 0;
}
.main-header .menu li a:hover,
.main-header .menu li a:focus {
  color: #a3d827;
  text-decoration: none;
}
.main-header .menu li.nav-current a {
  color: #a3d827;
}
.search-toggle-wrap {
  line-height: 58px;
  font-size: 20px;
}
.search-toggle-wrap.mobile-search {
  margin-right: 20px;
}
.search-toggle-wrap a {
  color: #707070;
}
.search-toggle-wrap a:hover {
  color: #a3d827;
}
.fixed .navbar-content-wrap {
  padding: 16px 0 !important;
}
/*====================================================
	main content area
====================================================*/
.main-content {
  margin-top: 80px;
  flex-grow: 1;
}
.main-content.nav-fixed {
  margin-top: 201px;
}
.main-content .content-wrap .post .featured-media {
  margin-bottom: 64px;
  position: relative;
  padding-bottom: 53%;
  width: 100%;
}
.main-content .content-wrap .post .featured-media img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-content .content-wrap .post .post-inner-wrap {
  max-width: 80%;
  margin: 0 auto 64px;
}
.main-content .content-wrap .post .post-inner-wrap .post-header {
  position: relative;
  padding-top: 0;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .post-header:before {
  content: '';
  width: 160px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -80px;
  background: #a3d827;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title a {
  color: #202020;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title a:hover,
.main-content .content-wrap .post .post-inner-wrap .post-header .post-title a:focus {
  color: #202020;
  text-decoration: none;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta {
  font-size: 14px;
  color: #bbbbbb;
  padding: 16px 0 0;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta a {
  color: #bbbbbb;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta a:hover,
.main-content .content-wrap .post .post-inner-wrap .post-header .post-meta a:focus {
  text-decoration: none;
  color: #a3d827;
}
.main-content .content-wrap .post .post-inner-wrap .post-header .featured {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -38px;
  padding: 2px 5px 2px 7px;
  background: #a3d827;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: -7px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content {
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content > * {
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content img {
  max-width: 100%;
  height: auto;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-width-full {
  position: relative;
  max-width: 100vw;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-width-full img {
  width: 100%;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-gallery-card {
  margin-top: 32px;
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-gallery-container {
  display: flex;
  flex-direction: column;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-gallery-row:not(:first-of-type) {
  margin: 0.75em 0 0 0;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-gallery-image:not(:first-of-type) {
  margin: 0 0 0 0.75em;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-card {
  margin: 3rem 0;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-container {
  display: flex;
  flex-wrap: wrap;
  color: #707070;
  text-decoration: none;
  background: transparent;
  border: 1px solid #bbbbbb;
  padding: 8px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-content {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 50%;
  padding: 8px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #202020;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-description {
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-description,
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-metadata {
  margin-top: 16px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-metadata {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #202020;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-thumbnail {
  flex-basis: 20rem;
  flex-grow: 1;
  position: relative;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-thumbnail img {
  vertical-align: bottom;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: bottom;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-author:after {
  content: "•";
  margin: 0 6px;
}
.main-content .content-wrap .post .post-inner-wrap .post-content .kg-bookmark-publisher {
  font-weight: 700;
}
.main-content .content-wrap .post .post-inner-wrap .permalink {
  margin-bottom: 32px;
}
.main-content .content-wrap .post .post-inner-wrap .post-footer {
  font-size: 14px;
  color: #bbbbbb;
}
.main-content .content-wrap .post .post-inner-wrap .post-footer a {
  color: #bbbbbb;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.main-content .content-wrap .post .post-inner-wrap .post-footer a:hover,
.main-content .content-wrap .post .post-inner-wrap .post-footer a:focus {
  text-decoration: none;
  color: #a3d827;
}
.medium-zoom--opened .medium-zoom-overlay {
  z-index: 1000;
}
.medium-zoom-image--opened {
  z-index: 1010;
}
.members-upgrade-cta-box {
  position: relative;
  padding: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border: 1px solid #bbbbbb;
}
.members-upgrade-cta-box .title {
  margin-top: 0;
  margin-bottom: 2rem;
}
.members-upgrade-cta-box .description {
  margin-bottom: 2rem;
}
.members-upgrade-cta-box .sign-in-cta {
  margin-top: 1rem;
}
/*====================================================
	pagination style
====================================================*/
.pagination {
  display: block;
  text-align: center;
  margin: 0 0 64px;
}
.pagination .page-number {
  line-height: 48px;
}
.pagination .newer-posts,
.pagination .older-posts {
  position: absolute;
}
.pagination .newer-posts {
  left: 0;
}
.pagination .older-posts {
  right: 0;
}
/*====================================================
	main footer
====================================================*/
.main-footer {
  background: #202020;
  padding: 32px 0;
  margin-top: 32px;
}
.main-footer .copyright {
  line-height: 32px;
}
.main-footer a {
  color: #707070;
}
.main-footer a:hover,
.main-footer a:focus {
  color: #a3d827;
  text-decoration: none;
}
.main-footer .social-links {
  text-align: right;
  padding: 0;
  margin: 0;
  font-size: 0px;
  line-height: 0;
}
.main-footer .social-links li {
  display: inline-block;
  list-style: none;
  line-height: 16px;
  font-size: 16px;
  margin: 0 8px 0 0;
}
.main-footer .social-links li:last-child {
  margin-right: 0;
}
.main-footer .social-links li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid #707070;
  box-sizing: border-box;
}
.main-footer .social-links li a i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #707070;
}
.main-footer .social-links li a i:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ffffff;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.main-footer .social-links li a i:hover,
.main-footer .social-links li a i:focus {
  color: #a3d827;
}
.main-footer .social-links li a i:hover:after,
.main-footer .social-links li a i:focus:after {
  height: 200%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.main-footer .social-links li a:hover,
.main-footer .social-links li a:focus {
  border: 1px solid #ffffff;
}
.secondary-navigation {
  margin: 16px 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #707070;
}
.secondary-navigation a {
  display: inline-flex;
  margin: 8px;
}
/*====================================================
	back to top
====================================================*/
#back-to-top {
  position: fixed;
  right: 0;
  bottom: 35px;
  display: none;
  z-index: 999;
  overflow: hidden;
}
#back-to-top i {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #a3d727;
  background: #707070;
}
#back-to-top i:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #a3d827;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#back-to-top i:hover:after,
#back-to-top i:focus:after {
  height: 200%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
/*====================================================
	single post
====================================================*/
.about-author {
  margin-bottom: 32px;
}
.about-author .avatar {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  float: left;
}
.about-author .details {
  margin-left: 102px;
}
.about-author .details .author a {
  color: #bbbbbb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.about-author .details .author a:hover {
  color: #a3d827;
}
.about-author .details .meta-info {
  color: #707070;
  font-size: 14px;
}
.about-author .details .meta-info span {
  margin-right: 16px;
}
.about-author .details .meta-info span:last-child {
  margin-right: 0;
}
.about-author .details .meta-info i {
  margin-right: 8px;
}
.about-author .details .meta-info a {
  color: #707070;
}
.about-author .details .meta-info a:hover,
.about-author .details .meta-info a:focus {
  color: #a3d827;
}
.share-author-wrap {
  max-width: 80%;
  margin: 0 auto 3rem auto;
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  padding: 32px 32px 16px;
  background: #202020;
  color: #bbbbbb;
}
.share-link-wrap {
  text-align: center;
  padding-top: 24px;
  position: relative;
  border-top: 1px solid #707070;
}
.share-link-wrap .share-text {
  float: left;
}
.share-link-wrap ul {
  font-size: 0;
  line-height: 0;
  padding: 0;
  float: right;
}
.share-link-wrap ul li {
  display: inline-block;
  list-style: none;
  line-height: 16px;
  font-size: 16px;
  margin: 0 4px;
}
.share-link-wrap ul li:last-child {
  margin-right: 0;
}
.share-link-wrap ul li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: 1px solid #707070;
  box-sizing: border-box;
}
.share-link-wrap ul li a i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #707070;
}
.share-link-wrap ul li a i:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  background: #ffffff;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.share-link-wrap ul li a i:hover,
.share-link-wrap ul li a i:focus {
  color: #a3d827;
}
.share-link-wrap ul li a i:hover:after,
.share-link-wrap ul li a i:focus:after {
  height: 200%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.share-link-wrap ul li a:hover,
.share-link-wrap ul li a:focus {
  border: 1px solid #ffffff;
}
.comment-container {
  max-width: 80%;
  margin: 64px auto;
}
.prev-next-wrap {
  max-width: 80%;
  margin: 0 auto;
}
.prev-next-wrap .previous-post {
  width: 48%;
  text-align: left;
}
.prev-next-wrap .next-post {
  width: 48%;
  text-align: right;
}
.prev-next-wrap .btn {
  white-space: inherit;
  height: auto;
  line-height: 1.5;
  padding: 16px 24px;
}
.prev-next-wrap .btn-default:hover:after {
  height: 700%;
}
/*====================================================
	members
====================================================*/
.subscription-expiration-warning {
  max-width: 700px;
  color: #a3d827;
  margin-bottom: 7rem;
}
.subscriber-info {
  display: flex;
  max-width: 754px;
  margin-top: 7rem;
  position: relative;
  padding-top: 6rem;
  flex-wrap: wrap;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
}
.subscriber-avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}
.subscriber-avatar-wrap svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
  position: relative;
  background: #bbbbbb;
  color: #707070;
}
.subscriber-avatar-wrap .avatar-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subscriber-detail-wrap {
  margin: 3.5rem 0 1.5rem;
}
.subscriber-detail {
  flex-basis: 50%;
  margin-bottom: 1.5rem;
  padding: 0 24px;
}
.subscriber-detail .sub-label {
  font-weight: 700;
}
.members-button-wrap {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.members-button-wrap a {
  margin-bottom: 16px;
}
/* Log in */
.members-form .form-field.email::placeholder {
  color: #bbbbbb;
}
.message-container {
  position: relative;
  margin-top: 1rem;
}
form .message-success,
form .message-error {
  display: none;
  color: #ffffff;
  padding: 0 16px;
}
form .message-success {
  background: #1c811d;
}
form .message-error {
  background: #ed002e;
}
form.success .message-success {
  display: inline-block;
}
form.error .message-error {
  display: inline-block;
}
/* pricing table */
.pricing-table-wrap {
  margin: 0rem -24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing-table {
  display: flex;
  border: 1px solid #bbbbbb;
  padding: 3rem;
  flex: 0 1 100%;
  flex-direction: column;
  margin: 0 24px 48px;
}
.pricing-table-title {
  margin-top: 0;
  color: #a3d827;
}
.price {
  font-weight: 700;
  margin: 2rem 0;
  color: #202020;
  font-size: 4rem;
  line-height: 64px;
}
.table-details {
  flex-grow: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}
.table-details li {
  margin: 0 0 8px 0 ;
  position: relative;
}
.table-footer {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .members-container-small {
    margin: 0 auto 7rem;
  }
  .pricing-table {
    flex: 0 1 calc(2%);
  }
}
@media (min-width: 1200px) {
  .pricing-table {
    flex: 0 1 calc(33.33% - 48px);
    margin-bottom: 24px;
  }
}
.notification {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background-color: #1c811d;
  color: #ffffff;
  font-size: 2rem;
  padding: 14px 56px;
  visibility: hidden;
  transform: translateY(-150%);
  transition: all 0.25s ease-in-out 0.3s;
}
.notification.error {
  background-color: #ed002e;
}
.notification a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.notification .close-icon {
  position: absolute;
  top: 14px;
  right: 32px;
  color: #ffffff;
  font-size: 3.2rem;
}
.subscribe-success .notification-subscribe {
  visibility: visible;
  transform: translateY(0);
}
.signup-success .notification-signup {
  visibility: visible;
  transform: translateY(0);
}
.signin-success .notification-signin {
  visibility: visible;
  transform: translateY(0);
}
.signin-failure .notification-signin-failure {
  visibility: visible;
  transform: translateY(0);
}
.checkout-success .notification-checkout {
  visibility: visible;
  transform: translateY(0);
}
.checkout-cancel .notification-checkout-cancel {
  visibility: visible;
  transform: translateY(0);
}
.billing-update-success .notification-billing-success {
  visibility: visible;
  transform: translateY(0);
}
.billing-update-cancel .notification-billing-cancel {
  visibility: visible;
  transform: translateY(0);
}
.notification.closed {
  visibility: hidden;
  transform: translateY(-150%);
  transition: all 0.25s ease-in-out 0s;
}
/*====================================================
	error page
====================================================*/
.main-content-error {
  margin-top: 121px;
}
.main-content-error .error-block-inner h1,
.main-content-error .error-block-inner h4 {
  text-transform: uppercase;
}
/*====================================================
	appointments table
====================================================*/
#apttable {
	border:none;
	margin:0;


}

.formtxt {
	vertical-align:text-top;
	text-align:left;
}

.formbtn {
	float:right;
}
/*====================================================
	media qurey
====================================================*/
@media screen and (max-width: 767px) {
  .main-header .menu li {
    display: block;
    margin: 16px 0;
    text-align: center;
  }
  .pagination .page-number {
    display: block;
  }
  .pagination .newer-posts,
  .pagination .older-posts {
    position: relative;
  }
  .main-footer .copyright {
    text-align: center;
    margin-bottom: 16px;
  }
  .main-footer .social-links {
    text-align: center;
  }
  .share-link-wrap {
    text-align: center;
  }
  .share-link-wrap .share-text {
    float: none;
    margin-bottom: 16px;
    display: block;
  }
  .share-link-wrap ul {
    float: none;
  }
  .share-link-wrap ul li {
    margin-bottom: 4px;
  }
  .share-link-wrap ul li:last-child {
    margin-right: 4px;
  }
  .prev-next-wrap .previous-post,
  .prev-next-wrap .next-post {
    width: 100%;
    float: none;
  }
  .prev-next-wrap .previous-post {
    margin-bottom: 4px;
  }
  .prev-next-wrap .next-post {
    margin-top: 4px;
  }
  .prev-next-wrap .btn-default:hover:after {
    height: 700%;
  }
  .post-content .kg-bookmark-container {
    flex-direction: column-reverse;
  }
  .post-content .kg-bookmark-thumbnail img {
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .about-author {
    text-align: center;
  }
  .about-author .avatar {
    float: none;
    margin-bottom: 16px;
  }
  .about-author .details {
    margin-left: 0px;
  }
  .subscriber-detail {
    flex-basis: 100%;
  }
}
@media screen and (min-width: 768px) {
  .field-group-inline .form-field {
    margin-bottom: 0;
  }
  .field-group-inline .form-field:not(:last-child) {
    border-right: none;
  }
  .field-group-inline {
    display: flex;
    flex-wrap: nowrap;
  }
  .field-group-inline .btn {
    flex-shrink: 0;
  }
  .main-content {
    overflow: hidden;
  }
  .post-content .kg-width-wide {
    position: relative;
    max-width: 90vw;
    left: 50%;
    right: 50%;
    margin-left: -45vw;
    margin-right: -45vw;
  }
  .post-content .kg-width-wide img {
    width: 100%;
  }
  .menu {
    margin-right: 40px;
  }
}
@media screen and (min-width: 875px) {
  .post-content .kg-width-wide {
    position: relative;
    max-width: 80vw;
    left: 50%;
    right: 50%;
    margin-left: -40vw;
    margin-right: -40vw;
  }
  .post-content .kg-width-wide img {
    width: 100%;
  }
  .mobilepic {
	  width:100%;
  }
}
/*# sourceMappingURL=screen.css.map */