@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
/**
 * Reset some basic elements
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
dl,
dd,
ol,
ul,
figure {
  margin: 0 !important;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

/**
 * Basic styling
 */
body {
  font: 400 1em/1.5 "Inter", sans-serif;
  color: #393E46;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  background-image: linear-gradient(-5deg, #f8f4f1 60%, #fefeff 98%);
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
ul,
ol,
dl,
figure,
.highlight {
  margin-bottom: 1em;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 0.875em;
}

/**
 * Lists
 */
ul,
ol {
  margin-left: 2em;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400 !important;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

hr {
  background-color: #E3E8EA;
  border: none;
  display: block;
  height: 1px;
  margin-bottom: 2.5em !important;
}

p {
  color: #393E46;
}

/**
 * Links
 */
a {
  color: #FF8632 !important;
  text-decoration: none;
}
a:hover {
  color: #FFB26D !important;
  text-decoration: none;
}

/**
 * ! Navbar
 **/
.has-border-bottom {
  border-bottom: 1px solid #E3E8EA;
}

.button.is-ghost {
  color: #FF8632;
  padding: 0px;
  height: 2em;
  transition-duration: 0.4s;
}
.button.is-ghost a:hover {
  color: #FF8632 !important;
}
.button.is-ghost:hover {
  color: #FF8632 !important;
  text-decoration: none;
}

/* Button underline animation */
.underline-animation {
  position: relative;
}

.underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FF8632;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.underline-animation:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

/**
 * Blockquotes
 */
blockquote {
  color: #5C6D7E;
  border-left: 4px solid #A4B1BC;
  padding-left: 1em;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre code {
  font-size: 15px;
  color: #FF640A !important;
  border: none;
  background-color: #FFEBD3 !important;
  border-radius: 8px;
}

code {
  color: #FF640A !important;
  background-color: #FFEBD3 !important;
  padding: 2px 4px;
  border-radius: 4px;
}

pre {
  height: auto;
  max-height: 200px;
  max-width: 800px;
  overflow: scroll;
  overflow-x: auto;
  overflow-y: auto;
  padding: 8px 12px;
  word-break: normal !important;
  word-wrap: normal !important;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

.wrapper {
  display: flex;
  gap: 24px;
  flex-flow: row;
  max-width: 1080px;
  margin: auto;
}
.wrapper .sidebar {
  font-size: 0.8rem;
  gap: 16px;
}
.wrapper .sidebar ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #5C6D7E;
}
.wrapper .sidebar ::-moz-input-placeholder {
  /* Mozilla */
  color: #5C6D7E;
}
.wrapper .sidebar :-ms-input-placeholder {
  /* Internet Explorer */
  color: #5C6D7E;
}
.wrapper .sidebar ::placeholder {
  color: #5C6D7E;
}

@media only screen and (max-width: 400px) {
  .wrapper {
    flex-flow: column;
  }
}
/**
 * Clearfix
 */
/**
 * Icons
 */
.icon > svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  /*
  path {
    fill: $grey-color;
  }
  */
}

.has-border-radius {
  border-radius: 24px;
}

.has-shadow {
  box-shadow: 0 4px 40px 0 rgba(6, 7, 37, 0.05) !important;
}

.hero.has-background {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.hero-background.is-transparent {
  opacity: 0.3;
}

.cover-image {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.content p {
  margin-bottom: 0 !important;
}
.content a {
  font-weight: 500;
}
.content ul {
  margin-left: 1em !important;
  margin-top: 1em !important;
}

.has-border {
  border: 1px solid #FFB26D;
  border-radius: 100%;
  padding: 4px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.read-more {
  color: #FF8632 !important;
  font-size: 14px;
  padding: 8px 0;
}
.read-more .material-icons {
  font-size: 1.25em;
}

.read-more:hover {
  color: #FFB26D !important;
}

/*
.post-container {
  article {
    padding-top: 40px;
  }
}
*/
.post-content h1,
.post-content h2,
.post-content h3 {
  margin-bottom: 16px !important;
}
.post-content img {
  margin: 20px 0 !important;
}

.post-content > * {
  color: #393E46;
}

.max-text-lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.max-text-lines-10 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}

.fa-link {
  margin: 0 0 0 8px;
}

.post-tags {
  margin: 0;
}
.post-tags .tag {
  background: rgba(239, 239, 239, 0.6);
  border: 1px solid #efefef;
  color: #5C6D7E;
  margin: 0 0.25em 0.25em 0;
}
.post-tags .tag:last-child {
  margin-bottom: 0;
}

.tag-cloud a {
  margin-right: 1em;
  font-size: 12px;
  color: #A4B1BC !important;
}
.tag-cloud a:hover {
  color: #FF8632 !important;
}

#tag-cloud h2 {
  font-weight: 400;
}

.btn_wrap {
  float: right;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  width: 100px;
  height: 40px;
  background-color: #eeeeed;
  border-radius: 80px;
  padding: 0 16px;
  will-change: transform;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn_wrap span {
  position: absolute;
  z-index: 99;
  width: 120px;
  height: 40px;
  border-radius: 80px;
  font-size: 16px;
  text-align: center;
  line-height: 2.5;
  letter-spacing: 2px;
  color: #FEFEFE;
  background-color: #FF8632;
  padding: 0 16px;
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.btn_wrap:hover {
  /* transition-delay: .4s; */
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 40px;
  border-radius: 80px;
}
.button-container i {
  opacity: 0;
  font-size: 16px;
  color: #FF8632;
  will-change: transform;
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button-container i:nth-of-type(1) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.button-container i:nth-of-type(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.button-container i:nth-of-type(3) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.button-container i:nth-of-type(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.btn_wrap:hover span {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transform: translateX(-280px);
  transform: translateX(-280px);
}

.btn_wrap:hover i {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.dr {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 100px;
}

.pagination {
  margin: 24px 0;
  justify-content: center !important;
}

.previous {
  margin: 0 40px 0 0;
}

.next {
  margin: 0 0 0 40px;
}

.current_page_number {
  color: #FF8632;
  word-spacing: 8px;
}

.page_number {
  color: #A4B1BC;
  word-spacing: 8px;
}

/* Bulma Override*/
.block:not(:last-child),
.content blockquote:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content p:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child),
.content ul:not(:last-child) {
  margin-bottom: 16px !important;
}

.box {
  background: #fffefe;
  border-radius: 1em;
  padding: 1.5em;
  box-shadow: 0 64px 50px -32px rgba(6, 7, 37, 0.03) !important;
  transition: all 0.5s ease !important; /* back to normal */
}
.box:hover {
  transform: translate3D(0, -1px, 0) scale(1.03);
}

.card-header {
  box-shadow: none;
}

.card-footer-item {
  justify-content: flex-start;
  padding: 0.75em 0;
}

.footer-logo {
  height: 20px;
}

.gap {
  gap: 16px;
}

.has-border-top {
  border-top: 1px solid #E3E8EA;
}

.has-text-grey {
  color: #5C6D7E !important;
}

.has-text-primary {
  color: #FF8632 !important;
}

.hero-background {
  background-repeat: no-repeat;
  background-size: contain;
}

.has-background-transparent {
  background-color: transparent !important;
}

.is-primary {
  background-color: #FFEBD3 !important;
  color: #393E46 !important;
}
.is-primary h1,
.is-primary h2 {
  color: #393E46 !important;
}

.is-rounded {
  border-radius: 9999px;
}

input[type=text] {
  border-radius: 0.5em;
}

.input {
  box-shadow: none !important;
}

.input:active,
.input:focus {
  border-color: #FF8632 !important;
  box-shadow: 0 0 0 0.125em rgba(255, 134, 50, 0.25) !important;
}

.input:focus ~ .icon,
.control.has-icons-right .select:focus ~ .icon {
  color: #FF8632 !important;
}

.title,
.subtitle {
  color: #393E46 !important;
}

.title > a:hover {
  color: #FFB26D !important;
}

.L-grid {
  display: grid;
  gap: 16px 16px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (max-width: 768px) {
  /* Your CSS styles for mobile here */
  .L-grid {
    grid-template-columns: 1fr;
  }
}
.default-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 3fr 1fr;
}

@media only screen and (max-width: 768px) {
  /* Your CSS styles for mobile here */
  .default-grid {
    grid-template-columns: 1fr;
  }
  .section.post-section {
    padding-right: 0;
    padding-left: 0;
  }
  .footer-logo .image {
    margin-left: auto;
    margin-right: auto;
  }
  .navbar-brand .navbar-item {
    padding-left: 0;
  }
}
/**
 * Site header
 */
.site-header {
  position: relative;
}

.site-border {
  border: 0;
  height: 1px;
  background: #E3E8EA;
}

.site-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -1px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.site-title img {
  width: 264px;
}
.site-title, .site-title:visited {
  color: rgb(38.1926605505, 45.25, 52.3073394495);
}

.site-nav {
  margin: auto 0 auto auto;
}
.site-nav .page-link {
  color: #393E46;
  line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}

/**
 * Site footer
 */
.site-footer {
  padding: 2em 0;
}

.footer {
  background-color: transparent !important;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

/**
 * Page content
 */
/*
.page-content {
  padding: $spacing-unit 0;
}*/
.page-heading {
  font-size: 20px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 2em;
}
.post-list article h1,
.post-list article h2,
.post-list article h3 {
  font-size: 16px;
  font-weight: 600 !important;
}

.post-meta {
  font-size: 0.875em;
  color: #5C6D7E;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.post-link {
  display: block;
  font-size: 24px;
}

/**
 * Posts
 */
.post-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2em;
}
.post-header .level {
  margin-bottom: 0;
}
.post-header .image img {
  border-radius: 16px;
}

.post-content {
  margin-bottom: 2em;
}
.post-content h2 {
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .post-content h2 {
    font-size: 28px;
  }
}
.post-content h3 {
  font-size: 26px;
}
@media screen and (max-width: 1024px) {
  .post-content h3 {
    font-size: 22px;
  }
}
.post-content h4 {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .post-content h4 {
    font-size: 18px;
  }
}

.highlight_yellow {
  background: yellow;
}

@media only screen and (max-width: 1023px) {
  /* Your CSS styles for screens up to 1023px width here */
  .px-6-touch {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .section {
    padding: 1.5rem;
  }
  .navbar-item img {
    max-height: 1.25rem;
  }
  .columns.is-variable > .column {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* Your CSS styles for tablets here */
  .hero-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  /* Your CSS styles for mobile here */
  .hero-body {
    padding-left: 0;
    padding-right: 0;
  }
  .columns.is-variable > .column {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  #section2 {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  /* Your CSS styles for mobile here */
  .hero-body {
    padding-left: 0;
    padding-right: 0;
  }
  .columns.is-variable > .column {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  /* Your CSS styles for desktop and above devices go here */
  .default2-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 3fr 1fr;
  }
}
/**
 * Syntax highlighting styles
 */
.highlight {
  background: #FFEBD3;
}
.highlighter-rouge .highlight {
  background: #FFEBD3;
  border-radius: 8px;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

/*# sourceMappingURL=main.css.map */