/* Default Css */
@font-face {
  font-family: Tahoma;
  font-weight: 300;
  src: url(../font/TahomaRegular.ttf);
}
@font-face {
  font-family: Tahoma Bold;
  font-weight: 500;
  src: url(../font/TahomaBold.ttf);
}
@font-face {
  font-family: HandOfSeanDemo;
  font-weight: 400;
  src: url(../font/Hand_Of_Sean_Demo.ttf);
}
.fontFamilyTohamaR
{
	font-family: 'Tahoma';
	font-weight: 300;
	color: #0084cc;
}
.fontFamilyTohamaB
{
	font-family: 'Tahoma Bold';
	font-weight: 500;
	color: #0084cc;
}
.fontHandOfSeanDemo
{
  font-family: HandOfSeanDemo;
  font-weight: 400;
	color: #0084cc;
}

.kt-container {
    width: 100%;
    margin: 0;
}
@media (max-width: 1024px)
{
  .kt-container {
    padding: 0 15px;
  }
}
@media (min-width: 1025px)
{
  .kt-container {
    padding: 0 30px;
  }
}
@media (min-width: 1439px)
{
  .kt-container {
    width: 1380px;
    margin: 0 auto;
  }
}

/* Social Media Css */
.linkDeco a
{
	  text-decoration: none;
    color: #0084cc;
    cursor: pointer;
}
.socialMediaBg
{
	background-color: #f8f8f8;
	padding: 10px 0;
}
.homeIconText
{
	font-size: 14px;
    height: auto;
    margin: auto 0 auto 2px;
}

/* Menu Css */
.positionAbsolute
{
  position: absolute;
  z-index: 1;
  background: transparent;
}
.positionRelative
{
  position: relative;
  padding-bottom: 15px;
}
.menuBg
{
	padding-top: 15px;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 16;
  top: 0;
  right: 0;
  background-color: #f8f8f8;
  overflow-x: hidden;
  transition: 0.5s;
}
.sidenav a {
  padding: 8px 0 10px 16px;
  text-decoration: none;
  font-size: 21px;
  color: #0084cc;
  display: block;
  transition: 0.3s;
}
.threeSlashStyle
{
  color: #0084cc;
  cursor: pointer;
}

.overlay {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

/* Footer Css */
.footerBg
{
  background-color: #263238;
  padding: 30px 0;
}
.footerCopyRight
{
  cursor: pointer;
  font-size: 16px;
  color: #FFF !important;
}
.footerCopyRight a
{
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
}