@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
body {
  background-color: #f8f8f8;
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
  margin: 0;
}

.cg-bg-primary {
  background-color: #fff;
}

.cg-bg-secondary {
  background-color: #f8f8f8;
}

.cg-bg-dark {
  background-color: #333;
  color: #fff;
}

.cg-spacer {
  --cg-spacer-padding: 12px;
  display: block;
  padding-top: var(--cg-spacer-padding);
}
.cg-spacer--sm {
  --cg-spacer-padding: 12px;
}
.cg-spacer--lg {
  --cg-spacer-padding: 24px;
}
.cg-spacer--xl {
  --cg-spacer-padding: 48px;
}
.cg-spacer--2xl {
  --cg-spacer-padding: 56px;
}

.cg-section {
  scroll-margin-top: 100px;
  --cg-section-padding: 24px;
  padding: var(--cg-section-padding) 0 var(--cg-section-padding);
}
.cg-section h2 {
  font-size: 36px;
  margin-bottom: 48px;
  display: inline-block;
  text-transform: uppercase;
}
.cg-section h2:after {
  background: none repeat scroll 0 0 #e6e6e6;
  bottom: -10px;
  margin: auto;
  width: 50%;
  content: "";
  display: block;
  height: 4px;
  position: relative;
  width: 100px;
  text-align: center;
}
.cg-section--none {
  --cg-section-padding: 0px;
}
.cg-section--sm {
  --cg-section-padding: 12px;
}
.cg-section--lg {
  --cg-section-padding: 48px;
}
.cg-section--xl {
  --cg-section-padding: 64px;
}
.cg-section--2xl {
  --cg-section-padding: 128px;
}

.c-cover {
  display: flex;
  flex-direction: column;
  min-block-size: 100vh;
  padding: 1rem;
}

.c-cover > * {
  margin-block: 1rem;
}

.c-cover > .c-cover__body, .c-cover > .c-cover__header {
  margin-block-start: 0;
}

.c-cover > .c-cover__footer {
  margin-block-end: 0;
}

.c-cover > div {
  margin-block: auto;
}

#particles-js {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.c-hero {
  background-image: url(/assets/img/bkg/blackboard.jpg);
}
.c-hero h1 {
  margin-bottom: 10px;
}
.c-hero .arrow-down {
  bottom: 0;
  left: 50%;
  position: absolute;
  text-align: center;
}
.c-hero .arrow-down a {
  border: 2px solid #ffffff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  bottom: 50px;
  display: inline-block;
  font-size: 34px;
  height: 45px;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  width: 25px;
}
.c-hero .arrow-down a span {
  background: #ffffff none repeat scroll 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  height: 5px;
  width: 5px;
}
.c-hero .arrow-down a span.dot {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrow-down;
  animation-timing-function: linear;
  display: inline-block;
  transform-style: preserve-3d;
}

.c-hero::after {
  background: #000000 none repeat scroll 0 0;
  opacity: 0.8;
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
}

.cg-avatar--lg {
  display: inline-block;
  position: relative;
  background-image: url("/assets/img/cg-avatar.jpeg");
  /* make a square container */
  width: 150px;
  height: 150px;
  /* fill the container, preserving aspect ratio, and cropping to fit */
  background-size: cover;
  /* center the image vertically and horizontally */
  background-position: top center;
  /* round the edges to a circle with border radius 1/2 container size */
  border-radius: 50%;
  z-index: 12;
}

@keyframes arrow-down {
  0% {
    opacity: 0;
    transform: translate3d(0px, 0px, 0px);
  }
  10% {
    opacity: 1;
    transform: translate3d(0px, 5px, 0px);
  }
  100% {
    opacity: 0;
    transform: translate3d(0px, 30px, 0px);
  }
}
.cg-card-group {
  display: flex;
  flex-wrap: wrap;
}

.cg-card-case :hover, .cg-card-case__media :hover, .cg-card-case__body :hover, .cg-card-case__footer :hover, .cg-card-case__link :hover {
  cursor: pointer;
}

.cg-lead {
  font-family: "Roboto Slab", serif;
  color: #666;
  padding: 24px 0px;
}

blockquote {
  border: medium none;
  font-size: 26px;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

blockquote::before {
  content: "\f10d";
  font-family: "FontAwesome";
  font-weight: 100;
  left: 0;
  position: absolute;
}

.cg-card-case {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: var(--bs-box-shadow-sm);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid #e1dfdf;
  margin-right: 12px;
  margin-left: 12px;
}
.cg-card-case__media {
  flex-grow: 1;
}
.cg-card-case__media img {
  width: 100%;
}
.cg-card-case__body {
  padding: 24px;
  flex-grow: 1;
}
.cg-card-case__body h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  color: #4C6CA2;
}
.cg-card-case__footer {
  display: flex;
  padding: 0px 24px 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.cg-card-case__footer img {
  height: 50px;
}
.cg-card-case__link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* ============================================================== 
    # Experiance 
=================================================================== */
.timeline {
  position: relative;
}

.timeline::before {
  background: #ccd1d9 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: calc(33% + 15px);
  position: absolute;
  top: 0;
  width: 2px;
}

.timeline:after {
  content: "";
  display: table;
  clear: both;
}

.entry {
  clear: both;
  text-align: left;
  position: relative;
}

.entry .title {
  margin-bottom: 0.5em;
  float: left;
  width: 33%;
  padding-right: 30px;
  text-align: right;
  position: relative;
}
.entry .title h4 {
  font-size: 18px;
}
.entry .title p {
  font-size: 16px;
  color: #888;
}

.entry .title::before {
  background: #ffffff none repeat scroll 0 0;
  border: 5px solid #298ef6;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  content: "";
  height: 20px;
  position: absolute;
  right: -22px;
  top: 0;
  width: 20px;
  z-index: 1;
}

.contact-area button {
  font-weight: 500;
  text-transform: uppercase;
}

.entry .content {
  margin: 0 0 3em;
  float: right;
  width: 66%;
  padding-left: 30px;
  font-size: 14px;
}
.entry .content p {
  max-width: 80ch;
  margin: 0;
}
.entry .content li {
  max-width: 60ch;
}

.entry .title p {
  margin-top: 0;
}

.entry .content ul li:before {
  margin-right: 0.5em;
}

.timeline .entry .title h1,
.timeline .entry .title h2,
.timeline .entry .title h3,
.timeline .entry .title h4,
.timeline .entry .title h5,
.timeline .entry .title h6 {
  margin: 0;
  line-height: inherit;
}

.cg-link-external::after {
  content: "";
  width: 11px;
  height: 11px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

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