@font-face {
  font-family: 'HK Grotesk';
  src: url('/fonts/HKGrotesk-Bold.woff2') format('woff2'), url('/fonts/HKGrotesk-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HK Grotesk';
  src: url('/fonts/HKGrotesk-Regular.woff2') format('woff2'), url('/fonts/HKGrotesk-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: 'HK Grotesk';
  --font-bold: bold;
  --font-normal: normal;

  --main-heading-color: #1C1919;
  --sub-heading-color: #1C1919;
  --auth-main-heading-color: #1C1919;
  --auth-sub-heading-color: #808080;
  --input-color: #808080;
  --paragraph-color: #000000;
  --subs-heading-color: #0B0B0B;
  --base-color: #25A450;
  --btn-bg-color: #60CA9C;
  --btn-color: #fff;
  --social-links-bg: #E4E4E4;

  --font-main-heading: 64px;
  --font-sub-heading: 20px;
  --font-auth-main-heading: 16px;
  --font-auth-sub-heading: 14px;
  --font-paragraph: 18px;
  --font-subs-heading: 36px;
  --font-input: 18px;

  --height-main-heading: 72px;
  --height-sub-heading: 30px;
  --height-auth-main-heading: 24px;
  --height-auth-sub-heading: 20px;
  --height-paragraph: 30px;
  --height-subs-heading: 42px;
  --height-input: 30px;

  --margin-main-heading: 24px;
  --margin-sub-heading: 32px;
  --margin-subs-heading: 48px;
  --letter-spacing-sub-heading: -0.75px;

  --auth-padding: 24px;
  --para-padding: 32px;

  --main-container-width: 960px;
  --content-width: 100%;
  --input-width: 376px;

  --input-border: 8px;
  --input-border-color: 1px solid rgba(96, 202, 156, 0.24);
  --btn-border-radius: 8px;
  --btn-box-shadow: 0px 10px 20px rgba(96, 202, 156, 0.18), 0px 2px 6px rgba(96, 202, 156, 0.12), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

body {
  background-color: #fff;
}

a,
b,
span,
small,
ul {
  font-family: var(--font-family);
}

.post-content .ccont {
  margin: 0;
}

.post-header .ccont,
.post-content .ccont,
.subs-sec .ccont {
  max-width: var(--main-container-width);
  margin: auto;
}

.post-header .col-sm-12 {
  max-width: 990px;
  margin: auto;
}

.post-header .ccont {
  position: relative;
}

.social-border {
  position: fixed;
  right: 389px;
  overflow: hidden;
  height: 158px;
}

.social-links {
  position: fixed;
  right: 317px;
  left: auto;
  width: 50px;
}

.social-links a {
  margin-bottom: 16px;
  display: inline-block;
}

.social-links-line {
  position: relative;
  border-radius: 2px;
  height: 158px;
  width: 4px;
  background: var(--social-links-bg);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.line-colored {
  position: absolute;
  top: 0;
  border-radius: 2px;
  height: 5px;
  width: 4px;
  background: var(--btn-bg-color);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.post-header:before {
  position: absolute;
}

.post-header .s-title {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  font-size: var(--font-auth-main-heading);
  line-height: var(--height-auth-main-heading);
  color: var(--base-color);
}

.mt1 {
  font-family: var(--font-family);
  font-weight: var(--font-bold);
  font-size: var(--font-main-heading);
  line-height: var(--height-main-heading);
  color: var(--main-heading-color);
  margin-top: var(--margin-main-heading);
  margin-bottom: var(--margin-main-heading);
}

.mt2 {
  font-family: var(--font-family);
  font-weight: var(--font-bold);
  font-size: var(--font-sub-heading);
  line-height: var(--height-sub-heading);
  color: var(--paragraph-color);
  letter-spacing: var(--letter-spacing-sub-heading);
  margin-bottom: var(--margin-sub-heading);
}

.post-header {
  padding-top: 128px;
}

.author .name {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  font-size: var(--font-auth-main-heading);
  line-height: var(--height-auth-main-heading);
  color: var(--main-heading-color);
  margin-bottom: 0px;
}

.author .dt {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  font-size: var(--font-auth-sub-heading);
  line-height: var(--height-auth-sub-heading);
  color: var(--auth-sub-heading-color);
  display: block;
}

.round-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.round-image img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.author {
  position: relative;
  padding-left: 70px;
  margin-bottom: 48px;
}

.rel {
  position: absolute;
  left: 0px;
}

.noselect {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.post-content .ccont img.noselect {
  -webkit-border-radius: 8.064px;
  -moz-border-radius: 8.064px;
  border-radius: 8.064px;
  margin-bottom: 64px;
  height: auto !important;
}

.post-content .caption {
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  text-align: center;
  display: block;
  margin-bottom: 60px;
  margin-top: 10px;
  max-width: var(--content-width);
}

.post-content .ccont p {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  font-size: var(--font-paragraph);
  line-height: var(--height-paragraph);
  color: var(--paragraph-color);
  margin-bottom: var(--margin-sub-heading);
  max-width: var(--content-width);
  width: 100%;
}

.post-content .ccont p svg {
  position: relative;
  top: -3px;
}

.post-content .ccont p .highlighted {
  background-color: #e2edff;
}

.post-content .ccont p a,
.post-content ul a {
  color: #000000 !important;
  text-decoration: underline !important;
}

.post-content .ccont p a:hover,
.post-content .ccont p a:hover:focus,
.post-content .ccont p a:focus,
.post-content .ccont p a:visited,
.post-content ul a:hover,
.post-content ul a:hover:focus,
.post-content ul a:focus,
.post-content ul a:visited {
  opacity: 0.8;
  color: #000000 !important;
}

.post-content .ccont ul {
  color: #000000;
  max-width: var(--content-width);
  margin-bottom: var(--margin-sub-heading);
  ;
  padding-left: 20px;
}

.post-content .ccont ul li,
.post-content .ccont ol li {
  font-size: var(--font-paragraph);
  line-height: var(--height-paragraph);
  margin-bottom: 16px;
  color: #000000;
  font-weight: var(--font-normal);
  font-family: var(--font-family);
}

.dis-sec {
  color: grey;
  padding-top: 32px;
}

code {
  background-color: #f2f2f2;
  color: #000;
  padding: 2px 10px;
}

code.full {
  width: 100%;
  display: block;
  font-size: 17px;
  padding: 17px 24px;
  margin-bottom: 32px;
  line-height: 30px;
}

pre {
  background-color: #f2f2f2;
  width: 100%;
  display: block;
  font-size: 17px;
  padding: 27px 24px;
  margin-bottom: 32px;
  line-height: 30px;
  color: #000;
}

pre .st {
  margin-top: 24px;
  display: block;
}

pre .rs {
  margin-bottom: -0.09em;
  white-space: pre-wrap;

}

.social-links a {
  padding-bottom: 0px;
  display: inline-block;
}

.post-content .ccont p a.green {
  color: var(--btn-bg-color) !important;
  font-weight: var(--font-bold);
}

pre span,
.mt2 code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 400;
}

@media(max-width: 1131px) {
  .mt1 {
    font-size: 50px;
    line-height: 61px;
    max-width: 756px;
  }

}

@media(max-width: 991px) {
  .mt1 {
    font-size: 43px;
    line-height: 54px;
    max-width: 650px;
  }
}

@media(max-width: 767px) {
  .post-header {
    padding-top: 19px;
  }

  .mt1 {
    font-size: 37px;
    line-height: 46px;
    max-width: 552px;
  }

  .author {
    margin-bottom: 39px;
  }
}

@media(max-width: 450px) {
  .mt1 {
    font-size: 23px;
    line-height: 32px;
    max-width: 342px;
  }

  .post-content .ccont p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 26px;
  }
}

@media(max-width:620px) {
  .post-content ul a {
    word-break: break-word;
  }
}

/* }
@media(max-width:1240px){
  .social-links {
    right: -60px;
  }
  .post-header .ccont:before {
    right: 0;
  }
}
@media(max-width:890px){
  .social-links {
    right: -20px;
  }
  .post-header .ccont:before{
    right: 40px;
  } */
@media(max-width:1850px) {
  .social-border {
    right: 300px;
  }

  .social-links {
    right: 237px;
  }
}

@media(max-width:1650px) {
  .social-border {
    right: 270px;
  }

  .social-links {
    right: 207px;
  }
}

@media(max-width:1550px) {
  .social-border {
    right: 230px;
  }

  .social-links {
    right: 167px;
  }
}

@media(max-width:1500px) {
  .social-border {
    right: 200px;
  }

  .social-links {
    right: 127px;
  }
}

@media(max-width:1450px) {
  .social-border {
    right: 160px;
  }

  .social-links {
    right: 97px;
  }
}

@media(max-width:1350px) {
  .social-border {
    right: 100px;
  }

  .social-links {
    right: 27px;
  }
}

@media(max-width:1200px) {
  .social-border {
    right: 70px;
  }

  .social-links {
    right: 7px;
  }
}

@media(max-width:1000px) {
  .social-border {
    position: fixed;
    overflow: hidden;
    height: 158px;
    bottom: -60px;
    transform: rotate(270deg);
    right: 50% !important;
  }

  .social-links a {
    padding-bottom: 0px;
  }

  .social-links {
    position: fixed;
    overflow: hidden;
    bottom: 30px;
    transform: rotate(360deg);
    display: flex;
    background: #fff;
    width: 67px;
    left: 0px;
    right: 0px;
    margin: auto;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .social-links a {
    margin-bottom: 0px;
  }

  .links-sec {
    display: inline-block;
    padding: 39px 80px;
    background-color: #ffff;
    opacity: 1;
    z-index: 1111;
    position: fixed;
    bottom: 0px;
    width: 100%;

  }
}

@media (max-width: 767px) {
  .footer .title {
    line-height: 28px;
    margin-bottom: 24px;
    max-width: 490px;
  }

  .footer .link {
    font-size: 17px;
  }

  :root {
    --font-subs-heading: 22px;
    --height-subs-heading: 23px;
  }
}