@import url('https://fonts.googleapis.com/css2?family=Maven+Pro&family=Quicksand&family=Roboto&display=swap');

@font-face {
  font-family: 'SFProText';
  src: url('../fonts/SFProText-Bold.woff2') format('woff2'),
      url('../fonts/SFProText-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SFProText';
  src: url('../fonts/SFProText-Regular.woff2') format('woff2'),
      url('../fonts/SFProText-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SFProText';
  src: url('../fonts/SFProText-Medium.woff2') format('woff2'),
      url('../fonts/SFProText-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SFProText';
  src: url('../fonts/SFProText-Light.woff2') format('woff2'),
      url('../fonts/SFProText-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root{
  --black:#000;
  --white:#fff;
  --text:#1d1d1f;
  --heading:#1d1d1f;
  --body:#f5f5f7;
  --gray:#737373;
  --light-gray:#d4d4d4;
  --dark-gray:#6e6e73;
  --accent-color:#ec0247;


  --dark-theme-text:#1d1d1f;
  --dark-theme-heading:#1d1d1f;
  --dark-theme-body:#18181b;
  --dark-theme-gray:#737373;
  --dark-theme-light-gray:#d4d4d4;
  --dark-theme-dark-gray:#6e6e73;

  --font-roboto: 'Roboto', sans-serif;
  --font-quicksand: 'Quicksand', sans-serif;
}
::selection {
  text-shadow: none;
  color: #fff;
  background-color: var(--ghost-accent-color);
  /* background: rgba(113,113,122,.3); */
  /* background: rgba(229,231,233,.6); */
  /* background: #fff9d6;   */
  /* background: #373b43; */
  /* background: #19ddc4; */    
    /* background: #2c3e50; */
}
main{
  min-height: 100vh;
  margin-top: 20px;
}
.gap-top-sticky{
  margin-top: 130px;
}
h1, h2, h3, h4, h5, h6{
  color: var(--heading);
  position: relative;
}
a{
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.4s;
}
a:hover{
  color: var(--ghost-accent-color);
}
body {
  font-size: 16px;
  line-height: 22PX;
  font-weight: 400;
  letter-spacing: .015em;
  font-family: "SFProText";
  color: var(--text);
  background-color: var(--body);
}
/* custom font */
.has-roboto-body {
  font-size: 16px;
  line-height: 22PX;
  font-weight: 400;
  letter-spacing: .015em;
  font-family: var(--font-roboto) !important;
  color: var(--text);
  background-color: var(--body);
}

.has-quicksand-body {
  font-size: 16px;
  line-height: 22PX;
  font-weight: 400;
  letter-spacing: .015em;
  font-family: var(--font-quicksand) !important;
  color: var(--text);
  background-color: var(--body);
}

/* end */


p{
  font-size: 18px;
  line-height: 30px;
  margin: 16px 0;
}
.sec-head{
  margin: 50px 0;
}
.sec-head h1{
  font-weight: 600;
  font-size: 30px;
}
.sec-head h1::after{
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: var(--ghost-accent-color);
  bottom: -5px;
  left: 0;
}
.sec-head-related{
  border-left: 3px solid var(--ghost-accent-color);
  padding: 15px 12px;
  color: var(--dark-gray);
  margin-top: 85px;
}
.button-box{
  text-align: center;
  padding: 35px 0;
}
.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.23536;
  /* padding: 0.8em 2.5em; */
  padding: 10px 24px;
  position: relative;
  text-decoration: none;
  /* text-transform: uppercase; */
  transition: background-color .25s, border-color .25s, color .25s, opacity .25s;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 30px;
}
.button-white-outline{
  border-color: var(--black);
  color: var(--black);
  background-color: transparent;
}
.button-white-outline:hover{
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.pagination-box{
  display: flex;
  justify-content: center;
  margin: 35px 0;
  align-items: center;
}
.pagination-box span{
  margin: 0 25px;
  font-size: 14px;
  color: var(--dark-gray);
}
.pagination-box a{
  background-color: var(--heading);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: var(--white);
}
.pagination-box a i{
 font-size: 22px;
}
.pagination-box a:hover{
  background-color: var(--ghost-accent-color);
}


/* ----------------------------------------------------------------------
## Navbar
------------------------------------------------------------------------ */
.navbar{
  padding-bottom: 8px;
  padding-top: 8px;
  text-align: center;
  transition: all 0.5s;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(8px);
}
.navbar-brand img{
  max-width: 250px;
  height: auto;
  object-fit: cover;
}
.navbar ul li a{
  font-size: 0.8rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: all 0.4s;
}
.navbar ul li a.active, .navbar ul li a:hover{
  color: var(--ghost-accent-color) !important;
}
.navbar .sub-nav-sec a{
  font-size: 0.875rem;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-gray) !important;
  border-bottom: 1px solid var(--ghost-accent-color);
}
.navbar .sub-nav-sec a:hover{
  border: none;
  color: var(--ghost-accent-color) !important;
}
.sticky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 2px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.navbar .search-btn{
  margin-left: 16px;
  color: var(--ghost-accent-color);
}
.navbar .dark-btn a{
  font-size: 19px;
}


.navbar-toggler.x {
  border: none;
}
.navbar-toggler.x:focus {
  outline: 0;
  box-shadow: none;
}
.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}
.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}
.navbar-toggler.x .icon-bar {
  width: 22px;
  display: block;
  height: 2px;
  background-color: var(--ghost-accent-color);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-toggler.x .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-toggler.x .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggler.x .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggler.x .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

/* ----------------------------------------------------------------------
## Latest Posts
------------------------------------------------------------------------ */

.feature-post-box{
  background-color: var(--white);
  padding: 58px 25px;
  border-radius: 16px;
  
}
.feature-post-img{
  text-align: center;
  /* overflow: hidden; */
}
.feature-post-img img{
  width:100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
  transition: all 0.8s;
}
.post-tag a{
  font-size: 14px;
    line-height: 1.33337;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-left: 5px;
}
.post-head{
  margin: 15px 0;
}
.post-head h2 a{
  color: var(--heading);
  text-underline-position: from-font;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  font-weight: 600;
}
.post-head h2 a:hover{
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
}
.post-meta{
  font-size: 14px;
    line-height: 1.33337;
    letter-spacing: -.01em;
    margin-left: 5px;
}
.post-meta a{
  font-weight: 600;
}
.feature-post-box:hover .feature-post-img img{
  transform: scale(1.03);
}
.post-box-main{
  background-color: var(--white);
  margin-top: 45px;
  padding: 25px 35px;
  border-radius: 16px;
  min-height: 510px;
}
.post-box-main .post-box-img{
  width: 100%;
  height: 266px;
  min-height: auto;
  flex-basis: auto;
  flex-shrink: 1;
  border-radius: 17px;
}
.post-box-main .post-box-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s;
  border-radius: 17px;
}
.post-box-content{  
  padding: 32px 32px 0;
  justify-content: space-between;
  flex-basis: auto;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
}
.post-box-main .post-head h2{
  font-size: 24px;
}
.post-box-main:hover .post-box-img img{
  transform: scale(1.03);
}
.li-3{
  padding: 0;
  min-height: 445px;
}
.li-3 .post-box-img{
  overflow: hidden;
  border-radius: 17px 17px 0 0;
}
.li-3 .post-box-img img{
  border-radius: 17px 17px 0 0;
  object-fit: cover;
}
.li-3 .post-head h2 {
  font-size: 19px;
}
.li-3 .post-box-content{
  padding: 15px 15px 0;
}

/* ----------------------------------------------------------------------
## Latest Posts
------------------------------------------------------------------------ */
.all-post-box-main{
  border-bottom: 1px solid #d2d2d7;
  padding: 32px 0;
  max-width: 980px;
  margin: 0 auto;
}
.all-post-box-main .post-box-img{
  /* width: 295px; */
  text-align: center;
  border-radius: 17px;
}
.all-post-box-main .post-box-img img{
  width: 255px;
  border-radius: 17px;
}
.all-post-box-main .post-box-content{
  padding: 0;
}
.all-post-box-main .post-box-content .post-head {
  margin: 7px 0;
  
}
.all-post-box-main .post-box-content .post-head h2{
  font-size: 22px;
}

/* ----------------------------------------------------------------------
## Single Posts
------------------------------------------------------------------------ */
.single-post-box-main{
  max-width: 900px;
  margin: 0 auto;
}
.single-post-box-cover-img{
  margin: 45px 0;
}
.single-post-box-conetnt a{
  color: var(--ghost-accent-color);
}
.single-post-box-conetnt a:hover{
  color: var(--black);
}
.single-post-box-conetnt blockquote{
  background-color: #2784900d;
  /* background-color: var(--); */
  border-left: 4px solid var(--ghost-accent-color);
  color: var(--text);
  line-height: 30px;
  padding: 18px 16px;
  font-style: italic;
  font-size: 1.16rem;
  margin: 0 0 1.9rem;
}
.single-post-box-conetnt h4{
  color: var(--heading);
  font-weight: 600;
  font-style: italic;
}
.single-post-box-conetnt img{
  margin: 35px 0;
}
/* .single-post-box-conetnt figure img{
  width: 100%;
  height: auto;
} */
.single-post-box-conetnt ul{
  margin: 48px 0 48px 44px;
  padding: 0;
}
.single-post-box-conetnt li, .single-post-box-conetnt ol{
  line-height: 35px;
  max-width: 660px;
  margin-bottom: 18px;
  padding-left: 24px;
  font-size: 18px;
}

.post-author-box{
  border: 1px solid var(--light-gray);
    margin: 3.5rem 0;
    padding: 0 0.9375rem;
    position: relative;
}
.post-author-box-title {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  font-size: 0.75rem;
  font-weight: bold;
  left: 50%;
  letter-spacing: 0.075em;
  line-height: 1.25;
  padding: 0.375em 0.5em;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transform: translate(-50%,-50%);
}
.post-author-box .post-author {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  padding: 2.8125rem 0;
  padding-left: 2.8125rem;
  padding-right: 2.8125rem;

  text-align: left;
}
.post-author-box .post-author-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  height: 70px;
  margin-bottom: 1.25rem;
  width: 70px;
  margin-bottom: 0;
  margin-right: 1.25rem;
}
.post-author-box .post-author-name{
  font-size: 1.125rem;
  margin: 0;
  font-weight: 800;
  color: var(--black);
}
.post-author-box .post-author-description {
  font-size: 0.9375rem;
  margin: 0.625rem 0 0;
  line-height:  1.8rem;
}
.post-author-box .post-author-links {
  font-size: 0.80rem;
  letter-spacing: 0.075em;
    margin: 0;
    text-transform: uppercase;
    
}
.post-author-box .post-author-links a{
  color: var(--gray);
  border-bottom: 1px solid var(--ghost-accent-color);
}
.post-author-box .post-author-links a:hover{
  color: var(--ghost-accent-color);
}
.releated-post-sec{
  margin: 2rem 0 5rem;
}
.kg-width-full img, .kg-width-wide img{
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: auto;
}
.kg-product-card-image {
  max-width: 100%;
  height:auto;
}
.kg-image-card img{
  max-width: 100%;
  height:auto;
}

/* ----------------------------------------------------------------------
## Author Page
------------------------------------------------------------------------ */
.author-sec{
  margin-bottom: 3em;
}
.archive-section {
  width: 100%;
  margin: 27vh auto 10vh;
  text-align: center;
}
.archive-image img {
  width: 200px;
  height: 200px;
  /* object-fit: cover; */
  margin-bottom: 2vh;
  padding: 10px;
  border: 1px dotted var(--gray);
  border-radius: 100%;
}
.archive-title {
  font-size: 40px;
  margin: 0;
}
.archive-details {
  font-size: 13px;
  font-weight: 500;
}
.archive-icons {
  margin-top: 1.5vh;
}
.archive-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 680px;
  margin: 1.5vh auto 0;
  color: var(--dark-gray);
}





















/* ----------------------------------------------------------------------
## Post Section
------------------------------------------------------------------------ */
footer{
  background-color: var(--heading);
  padding: 45px 0;
  text-align: center;
}

.foot-social-box ul{
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
}
.foot-social-box ul li{
  list-style: none;
  margin: 0 15px;
}
.foot-social-box ul li a {
  font-size: 18px;
  color: var(--body);
}
.foot-social-box ul li a:hover{color: var(--ghost-accent-color);}
.foot-copy-box p{
margin: 0;
color: var(--body);
font-size: 14px;
}
.foot-link a, .foot-copy-box a{
color:var(--body);
font-weight: 600;
letter-spacing: 1px;
}
.foot-link a{
font-size: 13px;
font-weight: 600;
margin-left: 8px;
}
.foot-link a:hover, .foot-copy-box a:hover{
color: var(--ghost-accent-color);
}






/* ----------------------------------------------------------------------
## Dark Theme
------------------------------------------------------------------------ */
.theme-dark{
  background-color: var(--dark-theme-body);
  /* background-color: #18181b; */
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark h5, .theme-dark h6{
  color: var(--dark-theme-light-gray);
  position: relative;
}
.theme-dark .navbar{
  background-color: rgba(0, 0, 0, 0.8);
}
.theme-dark .navbar-brand{
  color: var(--body);
}
.theme-dark .navbar ul li a{
  color: var(--dark-theme-light-gray) !important;
}
.theme-dark .navbar ul li a.active, .theme-dark .navbar ul li a:hover{
  color: var(--ghost-accent-color) !important;
}
.theme-dark .navbar .sub-nav-sec a{
  color: var(--dark-theme-light-gray) !important;
}
.theme-dark .navbar .sub-nav-sec a:hover{
  color: var(--ghost-accent-color) !important;
}
.theme-dark .feature-post-box{
  background-color: #242424;
  /* background-color: var(--black); */
}
.theme-dark .post-head h2 a{
  color: var(--white);
}
.theme-dark .post-head h2 a:hover{
  text-decoration-color: var(--ghost-accent-color);
}
.theme-dark .post-tag a {
  color: var(--ghost-accent-color);
}
.theme-dark .post-tag a:hover {
  color: var(--white);
}
.theme-dark .post-meta {
  color: var(--dark-theme-light-gray);
}
.theme-dark .post-meta a{
  color: var(--body);
}
.theme-dark .post-meta a:hover{
  color: var(--ghost-accent-color);
}
.theme-dark .post-box-main{
  /* background-color: var(--black); */
  background-color: #242424;
}
.theme-dark .button-white-outline {
  border-color: #27272a;
  background: #27272a;
  color: #f4f4f5;
}
.theme-dark .button-white-outline:hover{
  border-color: var(--black);
  background: var(--black);
  color: #f4f4f5;
}
.theme-dark .sec-head h1{
  color: var(--dark-theme-light-gray);
}
.theme-dark .single-post-box-conetnt{
  color: var(--body);
}
.theme-dark .post-author-box .post-author-name{
  color: var(--body);
}
.theme-dark .post-author-box .post-author-description{
  color: var(--body);
}
.theme-dark iframe .bg-white {    
    background-color: var(--dark-theme-gray) !important;
}
.theme-dark .single-post-box-conetnt blockquote {
  color: var(--dark-theme-light-gray);
}
