html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    /* font-family: 'Gabarito', sans-serif; */
    /* font-family: 'Changa', sans-serif; */
    /* font-family: 'Raleway', sans-serif; */
    /* font-family: 'IBM Plex Sans', sans-serif; */
    /* font-family: 'IBM Plex Sans Condensed', sans-serif; */
    /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Lato', sans-serif; */
    /* font-family: 'Maven Pro', sans-serif; */
    font-family: 'Mukta', sans-serif;
}

body::-webkit-scrollbar {
    display: none;
}

main section {
    border-bottom: 1px solid rgba(255,255,255,.5);
}

iframe {
    width: 100%;
    height: auto;
    min-height: 25em;
}

.scrollbar-hidden::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
}

#btn-scroll-top {
    position: fixed;
    display: block;
    right: 1vw;
    top: 8vh;
    z-index: 99999;
    /* color: rgba(255, 255, 255, 0.55); */
    transition: all 0.4s ease 0s;
}

#btn-scroll-top i,
#btn-scroll-top svg {
    color: rgb(86, 61, 124, 0.55);
    background-color: rgba(255, 255, 255, 0.55);
}

#btn-scroll-top:hover i,
#btn-scroll-top:hover svg {
    background-color: rgba(255, 255, 255);
    color: rgb(86, 61, 124);
}

#btn-scroll-top:active {
    border-color: transparent;
}

.crop-text-lines-1 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow : hidden;
    text-overflow: ellipsis;
}

.crop-text-lines-2 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow : hidden;
    text-overflow: ellipsis;
}

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

.crop-text-lines-4 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    overflow : hidden;
    text-overflow: ellipsis;
}

.crop-text-lines-5 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    overflow : hidden;
    text-overflow: ellipsis;
}

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

.btn-bd-primary {
    --bs-btn-font-weight: 600;
    --bs-btn-color: #563d7c;
    --bs-btn-bg: white;
    --bs-btn-border-color: #563d7c;
    --bs-btn-border-radius: .5rem;
    
    --bs-btn-hover-color: white;
    --bs-btn-hover-bg: #563d7c;
    --bs-btn-hover-border-color: #563d7c;
    
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
}

.pagination {
  --bs-pagination-color: #563d7c;
  --bs-pagination-bg: white;
  --bs-pagination-border-color: #563d7c;
  
  --bs-pagination-hover-color: white;
  --bs-pagination-hover-bg: #563d7c;
  --bs-pagination-hover-border-color: #563d7c;
  
  --bs-pagination-active-color: white;
  --bs-pagination-active-bg: #563d7c;
  --bs-pagination-active-border-color: #563d7c;

  --bs-pagination-focus-color: white;
  --bs-pagination-focus-bg: #563d7c;
  --bs-pagination-focus-box-shadow: #5a23c8;
}

.card {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.card:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.15) !important;
}

/* .card .bg-image .date:before { */
/*     background: #563d7c; /\* #fc5356 *\/ */
/*     opacity: 0.6; */
/*     content: ' '; */
/*     display: block; */
/*     position: absolute; */
/*     left: 0; */
/*     top: 0; */
/*     width: 100%; */
/*     height: 100%; */
/*     background-repeat: no-repeat; */
/*     background-position: 50% 0; */
/*     background-size: cover; */
/* } */

.card .bg-image .date {
    position: absolute;
    color: white; /* #ffffff; */
    padding: 8px 15px;
    right: .75em;
    top: .75em;
    border-radius: 4px;
    background: rgba(86, 61, 124, 0.5); /* #fc5356 */
    /* opacity: 0.8; */
}

.card .bg-image .date label {
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
}

.card .bg-image .date span {
    font-size: 22px;
    display: block;
    line-height: 22px;
    font-weight: 700;
}

.card .card-body .card-title {
    line-height: 1.2;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 10px;
    color: #563d7c;
}

.card .card-description .post-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* overflow: hidden; */
    margin-right: 1rem !important;
}

.card .card-description .post-avatar img {
    vertical-align: middle;
    border-style: none;
}

.card .card-description .post-author label {
    font-weight: 600;
    color: #563d7c;
    margin: 0;
}

.card .card-description .post-author span {
    display: block;
    font-size: 12px;
}

.callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-left-width: 0.25rem;
    border-radius: 0.25rem;
}

.callout.callout-info {
    border-left-color: #5bc0de;
}

.callout.callout-warning {
    border-left-color: #f0ad4e;
}

.callout.callout-danger {
    border-left-color: #d9534f;
}

main .post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
}

main .post-content img.full-width {
    width: 100%;
}

main .post-content img.left {
    float: left;
}

main .post-content img.right {
    float: right;
}


/* Introduction */
/* #intro { */
/*     --bg-overlay-color: transparent; */
/*     --bg-gradient: none; */
/*     min-width: 980px; */
/*     left: 0; */
/*     margin-left: 0; */
/*     width: 100%; */
/*     position: relative; */
/*     margin: 0px 0px 0 calc((100% - 980px) * 0.5); */
/*     grid-area: 1 / 1 / 2 / 2; */
/*     justify-self: start; */
/*     align-self: start; */
/*     overflow: visible; */
/* } */

#intro .row .slide:hover {
    /* background: #fff; */
    background-color: rgba(57, 62, 93, 0.7);
    box-shadow: 15px 15px 26px rgba(0, 0, 0, 0.50);
}

#intro .row .slide {
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#intro .row .slide img {
    -webkit-transition: all 4s ease;
    -moz-transition: all 4s ease;
    -o-transition: all 4s ease;
    -ms-transition: all 4s ease;
    transition: all 4s ease;
}

#intro .row .slide:hover img {
    opacity: 0.2;
    -webkit-transform:scale(1.5);
    -moz-transform:scale(1.5);
    -ms-transform:scale(1.5);
    -o-transform:scale(1.5);
    transform:scale(1.5);
}

#intro .row .slide .button {
    transition: inherit;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.05em;
    font-size: 48px;
    color: #563d7c;
    text-shadow: 5px 5px 20px #6d6d6d;
}

#intro .row .slide:hover .button {
    color: #FFFFFF;
    text-shadow: 5px 5px 20px #563d7c;
}


.post-diaries {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  padding: 15px;
  margin: 15px 0 30px;
}

.post-diaries .post-img img {
    object-fit:cover;
    height:400px;
    width:100%;
}

/* .post-diaries .post-title { */
/*   padding: 15px 0 20px; */
/* } */

.post-diaries .post-title h1 {
  color: #563d7c;
  font-weight: 600;
}
.post-diaries .post-title .media {
  padding-top: 15px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}
.post-diaries .post-title .media .media-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 1rem !important;
}

.post-diaries .post-title .media .media-avatar img {
    vertical-align: middle;
    border-style: none;
}

.post-diaries .post-title .media .media-body label {
    font-weight: 600;
    color: #563d7c;
    margin: 0;
}

.post-diaries .post-title .media .media-body span {
    display: block;
    font-size: 12px;
}

.section-title {
    color: #563d7c;
    font-size: 200%;
}

.section-intro {
    color: black;
}

.stack-circle {
    display: inline-block;
    border-style: solid;
    border-radius: 50%;
    padding: 0.3em; /* adjust padding */
    line-height: initial !important; /* reset line-height */
    height: 1em;
    width: 1em;
    text-align:center;
}

.hover-shadow:hover {
    box-shadow: 0 2px 15px -3px rgba(0,0,0,0.16),0 10px 20px -2px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.hover-zoom:hover {
    transition: all 0.3s linear;
    transform: scale(1.1);
}

#fp-nav.fp-right {
    right: 17px;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translate3d(0,-50%,0);
}

#fp-nav ul, .fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li, .fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

#fp-nav ul li a, .fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    /* background: #333; */
    background: #563d7c;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.fp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

#fp-nav ul li .fp-tooltip.fp-right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -5px;
    /* color: #fff; */
    /* font-family: arial,helvetica,sans-serif; */
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: none;
    opacity: 0;
    width: 0;
    cursor: pointer;    
    transition: inherit;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.05em;
    font-size: 16px;
    color: #563d7c;
    text-shadow: 1px 1px 5px #6d6d6d;
}

#fp-nav ul li:hover .fp-tooltip, #fp-nav.fp-show-active a.active+.fp-tooltip {
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    width: auto;
    opacity: 1;
    display: block;
}

.hover-link:after {
    content: "";
    position: absolute;
    width: 0px;
    left: auto;
    right: 0;
    bottom: 0;
    height: .2em;
    transition: ease all 0.35s;
    /* background: #F84E77; */
    background: #563d7c;
}

.hover-link:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.badge-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-top: 100px solid #888;
    border-top-color: rgba(0, 0, 0, 0.5);
    border-left: 100px solid transparent;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.badge-corner img,
.badge-corner span,
.badge-corner svg {
    position: absolute;
    right: 0em;
    width: 3em;
    top: 0.5em;
    margin-top: 0.25em;
    margin-right: 0.25em;
    color: #fff;
    transform: translateY(-225%);
}

.badge-corner svg {
    top: -15px;
    margin: auto;
    right: -20px;
    font-size: 2em;
}


.widget .widget-item:first-child {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;
}

.widget .widget-item:last-child {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;
}
