@font-face
{
	font-family: "LeagueSpartan";
	src: url(LeagueSpartan-Bold.otf) ;
}

@font-face
{
	font-family: "Josefin";
	src: url(JosefinSans-VariableFont_wght.ttf) ;
}

*
{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}

body{
	background-color: #f8f8ff !important; 
}

/*=========================================================================================*/

/*ScrollBar Start*/

/* width */
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track { 
  background: transparent;
  border-radius: 0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.5); 
}

/*ScrollBar End*/

/*=========================================================================================*/


/*Topbar Start*/

.topbar
{
	width: 100%;
	height: 20px;
	background-color: #74C9F1;
}

.topbar marquee p
{
	margin: 2px 0px;
	color: #130f40;
	font-family: Josefin;  
}

/*Topbar End*/

/*=========================================================================================*/

/*Header Nav Start*/

.header
{
	position: sticky;
	top: 0px;
	width: 100%;
	height: 100px;
	background-color: #fff;
	transition: 0.3s;
	box-shadow: 0px 5px 3px rgba(0,0,0,0.5);
	z-index: 1000;
}

.logo img
{
	float: left;
	width: 200px;
	height: auto;
	margin-top: 15px;
	margin-left: 10px;
	
}
.navi{
	position: relative;
}
.navi ul
{
	list-style-type: none;
	line-height: 100px;
	float: right;
}

.navi ul li
{
	display: inline-block;
	margin-top: 0px;
	margin-right: 30px;
}

.navi ul li a
{
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	font-family: Raleway;
	font-size: 15px;
	letter-spacing: 1px;
	border: none;
	padding: 10px 10px;
	color: black;
	border-radius: 3px;
	font-weight: bold;
	transition: 0.3s;
	background: transparent;
}

.navi ul li a:hover,
.navi ul li a.active
{
	/*background-color: #3d3d3d;*/
	color: #74c9f1;
}

/*Header Nav End*/


/*Back To Top*/

#btt {
  display: block;
  background-color: #3d3d3d;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 10px;
  right: 15px;
  transition: background-color .3s,opacity .5s,visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 100000000;
}
#btt::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #f8f8ff; 
}
#btt:hover{
  cursor: pointer;
  background-color: #F18917;
}
#btt:active {
  background-color: #555;
}
#btt.show {
  opacity: 1;
  visibility: visible;
}

/*Back To Top End*/

.con{
	position: relative;
	top: 0px;
	text-align: center;
	margin-top: 40px;
    font-family: Josefin;
	font-size: 50px;
	font-variant: small-caps;
	font-weight: bold;
}
.con span{
	color: #74C9F1;
	position: relative;
    font-family: Josefin;
	font-size: 50px;
	font-weight: bold;
	font-variant: small-caps;
}
.con::after{
	content: '';
	width: 150px;
	display: block;
	height: 4px;
	background-color: #74C9F1;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 5px;
}

.home{
	position: absolute;
	top: 150px;
	left: 30px;
	background-color: #f8f8ff;
	border:none;
	width: 40px;
	height: 40px;
	border-radius: 30px;
	transition: 0.25s;
	outline: none;
	color: #3d3d3d;
	z-index: 100;
	font-size: 25px;
}	
.home:hover
{
	color: #74C9F1;
	cursor: pointer;
}

.gallery-block.grid-gallery{
  padding-bottom: 60px;
  padding-top: 60px;
}

.gallery-block.grid-gallery a:hover{
  opacity: 0.8;
}

.gallery-block.grid-gallery .item img{
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

.gallery-block.grid-gallery .item{
  margin-bottom: 20px;
}

@media (min-width: 576px) {

  .gallery-block.grid-gallery .scale-on-hover:hover{
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}