@charset "UTF-8";

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Lxand+Deca&family=Montserrat&family=Open+Sans&family=Roboto&display=swap');

:root {
  --bs-font-sans-serif: "Lexend Deca", "Open Sans", "Roboto", "Montserrat", sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

html,
body {
  height: 100%;
  overflow: overlay;
  font-family: var(--bs-font-sans-serif);
  background-color: rgb(255, 255, 255)
  /* background-image: url("");
  background-repeat: repeat; */
}
.alert{
  margin: 0
}
.animated-link{
  color:#000;
  text-decoration: none;
  background-image: linear-gradient(white 50%, #00fff3 50%);
	background-size: auto 175%;
	transition: background .3s ease-in-out;
	&:hover {
		background-position-y: 100%;
    color:#000;
    font-weight: bold;
	}
}
#layoutMain {
  display: flex;
}
#layoutMain #layoutContent {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
  min-height: calc(100vh - 56px);
}
#layoutMain #layoutContent .main-content{
  width: 80%;
  height: 100%;
  margin: 0 auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 3vh 6vh;
  background-color: rgba(255, 255, 255, 1);
}
#layoutMain #layoutContent .post-title{
  width: 70%;
  margin: 0 auto;
  text-align: center;
  text-justify: inter-word;
}
#layoutMain #layoutContent .post-body{
  width: 70%;
  margin: 0 auto;
  margin-bottom: 3vh;
  font-size: 18px;
  text-align: justify;
  text-justify: inter-word;
}
#layoutMain #layoutContent .post-body p{
  line-height: 180%;
  margin-block: 0 2em;
}

/* Navigation */
.nav-fixed .topnav {
  z-index: 1039;
}
.nav-fixed #layoutMain #layoutNav {
  width: 225px;
  height: 100vh;
  z-index: 1038;
}
.topnav {
  height: 56px;
  z-index: 1039;
}
.topnav .navbar-brand {
  padding-left: 1rem;
  padding-top: 2rem;
  width: 225px;
  margin: 0;
}
/*  Scrollbars */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--bs-gray);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bs-gray-500);
}

/* Post Tiles */
.column {
	padding: 0;
}
.column::after {
	content: '';
	clear: both;
	display: block;
}
.column div {
	position: relative;
	float: left;
	width: 300px;
	height: 200px;
	margin: 0 65px 30px 0;
	padding: 0;
}
.column div:first-child {
	margin-left: 0;
}
.column div:last-child {
	margin-right: 0;
}
figure {
  border-radius: 5px;
	width: 300px;
	height: 200px;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}
figure:hover+span {
	bottom: -36px;
	opacity: 1;
}
.cover-zoom figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.cover-zoom figure:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.tile-wrapper {
  margin:0;
  padding:0;
  overflow: hidden;
  position: relative;
}
.tile-wrapper .text-overlay {
  position: absolute;
  width: 100%;
  height: 35%;
  overflow: auto;
  margin: auto;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  pointer-events: none;
  overflow: hidden;
}
.tile-wrapper .text-overlay p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  font-family: "Open Sans";
  padding-left: 20px;
  padding-right: 20px;
}