/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@100;200;300;400;500;600;700;800&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Source+Serif+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');





/* Body Types */
* {
  box-sizing: border-box;
}

a {
	color: 	#2F65A7;
	text-decoration: none;
}

h1 {
	font-family: Fira Sans, sans-serif;
	font-size: 32px;
	font-weight: normal;
	margin-bottom: 0;
	text-align: center;
}

h2 {
	font-family: Fira Sans, sans-serif;
	font-weight: normal;
	font-size: 24px;
	margin-top: 10px;
	text-align: center;
}

h3 {
	color: #00274C;
	font-family: Source Serif Pro, serif;
	font-size: 26px;
}

ol, p, ul {
	font-family: Fira Sans, sans-serif;
	font-size: 20px;
}





/* Body Types */
.album {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.code-w {
	background-color: #1E1E1E; 
	border: 1px solid black; 
	border-radius: 0 0 10px 10px; 
	color: white; 
	font-family: IBM Plex Mono, mono; 
	font-size: 12px; 
	margin-top: 0;
	padding: 10px; 
}

.code-wc-green {
	background-color: #61C554;
}

.code-wc-prompt {
	color: #A8A5F9;
}

.code-wc-red {
	background-color: #ED6A5E;
}

.code-wc-vim {
	color: #585858;
}

.code-wc-vimedit {
	background-color: #2B2B2B;
}


.code-wc-yellow {
	background-color: #F5BF4F;
}

.code-wh {
	background-color: #2B2E30; 
	border: 1px solid black;
	border-color: black;
	border-radius: 10px 10px 0 0; 
	color: white; 
	font-family: Fira Sans, sans-serif; 
	margin-bottom: 0; 
	padding: 10px;
}

.code-whb {
	border: 1px solid black; 
	border-radius: 50%; 
	display: inline-block;
	height: 15px; 
	margin-right: 5px; 
	padding: 5px; 
	width: 15px; 
}

.emph {
	color: #00274C;
	font-family: Source Serif Pro, serif;
	font-weight: bold;
}

.flex-contained {
	display: block;
	margin-top: auto;
	margin-bottom: auto;
}

.flex-container {
	display: flex;
	flex-direction: row;
	font-family: Fira Sans, sans-serif;
	font-size: 24px;
	margin-top: 100px;
	margin-bottom: 30px;
	text-align: center;
}

.flex-container-ar {
	display: flex;
	flex-direction: row;
}

.model_viewer {
	display: block;
	height: 300px;
	margin-top: 40px;
	vertical-align: middle;
	width: 100%;
}

.pub {
	border: 1px solid;
	box-shadow: 2px 4px;
	color: black;
	font-family: Fira Sans, sans-serif;
	margin-bottom: 30px;
	padding: 10px;
}

.pub_title {
	font-family: Source Serif Pro, serif;
	font-weight: bold;
}

.pub_name {
	color: #800000;
}

.row {
	width: 1000px;
}

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

.sub {
	font-family: Source Serif Pro, serif; 
	font-weight: bold;
}

.tamil {
	font-family: Anek Tamil, sans-serif;
}

.title_text {
	color: #00274C;
	font-family: Source Serif Pro, serif;
	font-weight: bold;
}	

.tricols {
	float: left;
	width: 33.3333%;
	padding-bottom: 0%;
}




/* On Hover */
a:hover { 
	color:gray;
}

.album:hover {
	-webkit-filter: grayscale(0%);
        filter: grayscale(0%);
}

.pub:hover {
	color:gray;
}
* {box-sizing:border-box}













.notFirstSlide {
	display: none;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: black;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 2px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}





/* Responsive Layout */
@media (max-width: 1200px) {
	  .disappear {
		    display: none;
	  }
	  .flex-container {
		    flex-direction: column;
	  }
	  .flex-container > div {
		    margin-bottom: 30px; 
	  }
	  .flex-container-ar {
		    flex-direction: column;
	  }
	  .flex-container-ar > div {
		    margin-bottom: 30px; 
	  }
}
