/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. global styles
03. header
04. banner
05. sessions
06. gallery
07. testimonials
08. footer
09. about
10. product
11. contact
12. responsive
--------------------------------------------- */


/* 
---------------------------------------------
01. font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:100,200,300,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Zen+Kaku+Gothic+New:wght@100..900&family=Zen+Kurenaido&family=Zen+Maru+Gothic:wght@100..900&display=swap");

@font-face {
  font-family: "Sneak Medium";
  src: url("../fonts/Sneak-Medium.woff")format("woff")
  }
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Sneak Medium', 'Noto Sans', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 25px;
  color: #2a2a2a;
}

/* 
---------------------------------------------
0.2 global styles
--------------------------------------------- 
*/
html,
body:lang(en) {
  background: #fff;
  font-family: 'Sneak Medium', 'Noto Sans', sans-serif;
}

html,
body:lang(jp) {
  background: #fff;
  font-family: 'Noto Sans Japanese', sans-serif;
}

::selection {
  background: #2a2a2a;
  color: #fff;
}

::-moz-selection {
  background: #2a2a2a;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-border-button a {
  font-size: 15px;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 25px;
  display: inline-block;
  font-weight: 500;
  transition: all .3s;
}

.main-border-button a:hover {
  background-color: #fff;
  color: #2a2a2a;
}

.dark-border-button a {
  font-size: 15px;
  color: #000;
  border: 1px solid #000;
  padding: 12px 25px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 500;
  transition: all .3s;
}

.dark-border-button a:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.main-white-button a {
  font-size: 15px;
  color: #2a2a2a;
  background-color: #fff;
  padding: 12px 25px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  transition: all .3s;
}

.main-white-button a:hover {
  opacity: 0.9;
}

.main-black-button a {
  font-size: 15px;
  color: #fff;
  background-color: #2a2a2a;
  padding: 12px 25px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  transition: all .3s;
}

.main-black-button a:hover {
  opacity: 0.9;
}

.main-text-button a {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  transition: all .3s;
}

.main-text-button a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2a2a2a;
}

.section-heading span {
  font-size: 15px;
  color: #585858; /* #a1a1a1; */
  font-style: italic;
  font-weight: 400;
}

.centered {
  text-align: center;
  padding: 30px;
}
/* 
---------------------------------------------
0.3 header
--------------------------------------------- 

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

	.dropdown-menu li{
		position: relative;
	}
  
	.dropdown-menu .ul{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}

	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}
}	
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {

.dropdown-menu .dropdown-menu{
		margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
}

}	

@media (min-width: 767px) {
  .header-area .nav {
    display: flex !important;
  }
}
/* ============ small devices .end// ============ */

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

/*
Source - https://stackoverflow.com/a/37622958
Posted by DMort, modified by community. See post 'Timeline' for change history
Retrieved 2026-06-05, License - CC BY-SA 3.0
*/

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-light .navbar-toggler-icon {
  /*background-image: url("../images/wiggles/wiggle_05_50.gif");*/
  background-image: "/2261";
}

.navbar-light .navbar-brand {
  color: #585858;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: #21c911; /*#21c911;*/ 
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #2a2a2a;
}

.navbar-light .navbar-nav .nav-link {
  color: #585858;
}

.navbar-toggler {
  background: transparent;
  border-color: transparent;
  /*background: #fff;
  border-color:#aaa;
  border-width: 0.5px;
  border-style: solid;*/
}

.navbar-toggler:focus {
  background: #f1f1f1;
}

.navbar{
  background: #fafafa;
}

.navbar-nav {
  text-align: center;
  background-color: transparent;
}

.nav-link {
  padding: .2rem 1rem;
}

.nav-link.active,.nav-link:focus{
  color: #aaaaaa;
}

.navbar-toggler {
  padding: 1px 5px;
  font-size: 18px;
  line-height: 0.3;
}


nav button {
  background-color: #fff;
  border-radius: 5px;
  font-size: 15px;
}

nav button:hover {
  background-color: #f1f1f1;
}

/* 
---------------------------------------------
0.4 banner
--------------------------------------------- 
*/

.main-banner {
  padding-top: 10%;
  padding-bottom: 10%;
  height: 100vh; 
  /* border-bottom: 0.5px solid #eee; */ 
}

.main-banner h1 {
  color: #000; 
  font-size: 4vw;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.main-banner h2 {
  color: #000; 
  font-size: vw;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

.main-banner .left-content{
  width: 100%; 
  overflow: hidden;
  justify-content: center;
}

.main-banner .left-content .inner-content {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .left-content .inner-content h4 {
  color: #000; 
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

/*
[lang="jp"] .main-banner .left-content .inner-content h4 {
  color: #000; 
  font-size: 30px;
  font-weight: 900;
  font-style: bold;
  text-align: center;
  margin-bottom: 20px;
}
*/

.main-banner .left-content .inner-content span {
  color: #000; 
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.main-banner .right-content .thumb{
  margin-top:  -5%;
  position: relative;
  align-content: center;
}

/* 
---------------------------------------------
0.5 overview
--------------------------------------------- 
*/

.overview {
  padding-top: 10%; /*10%;*/
  padding-bottom: 10%;
  /* height: 100%;
  width: 100%; */
}

/*
.overview h1 {
  color: #000; 
  font-size: 5vw;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.overview h2 {
  color: #000; 
  font-size: 2vw;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}
*/
.overview .section-heading h1{
  font-size: 4em; /*56px;*/
  font-weight: 700;
  color: #2a2a2a;
}

.overview .section-heading h2{
  font-size: 1.3em; /* 24px; */
  font-weight: 700;
  font-style: italic;
  color: #2a2a2a;
}

.overview .overview-content .overview-first-image {
  margin-bottom: 28.5px;
}

.overview .overview-content .overview-first-image .thumb {
  position: relative;
  text-align: center;
}

.overview .overview-content .overview-first-image .thumb img {
  width: 100%;
  overflow: hidden;
}

.overview .overview-content .overview-first-image .thumb .inner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.overview .overview-content .overview-first-image .thumb .inner-content h4 {
  color: #fafafa; /* #fff; */
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.overview .overview-content .overview-first-image .thumb .inner-content span {
  font-size: 15px;
  color: #000; /* #fff; */
  font-style: italic;
}

.overview .overview-content .overview-first-image .thumb .hover-content {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  text-align: center;
  background-color: rgba(42,42,42,.97);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.overview .overview-content .overview-first-image .thumb:hover .hover-content {
  opacity: 0.85;
  visibility: visible;
}

.overview .overview-content .overview-first-image .thumb .hover-content .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.overview .overview-content .overview-first-image .thumb .hover-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.overview .overview-content .overview-first-image .thumb .hover-content p {
  color: #fff;
  padding: 0px 20px;
  margin-bottom: 20px;
}

/*
---------------------------------------------
0.6 gallery
---------------------------------------------
*/

#gallery .section-heading h2{
  font-size: 34px;
  font-weight: 700;
  color: #2a2a2a;
}

#gallery {
  padding-top: 100px; /*10%;*/
  /*padding-bottom: 10%;*/
  /* border-bottom: 0.5px solid #eee; */
}

#gallery .section-heading {
  margin-bottom: 60px;
}

#gallery .item .down-content {
  padding-top: 30px;
  position: relative;
  z-index: 3;
  background-color: #fff;
}

#gallery .item .down-content h4 {
  font-size: 22px;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 8px;
}

#gallery .item .down-content span {
  font-size: 18px;
  color: #585858; /* #a1a1a1; */
  font-weight: 500;
  display: block;
}

#gallery .item .down-content ul.stars {
  position: absolute;
  right: 0;
  top: 30px;
}

#gallery .item .down-content ul.stars li {
  display: inline;
  font-size: 13px;
}

#gallery .item .thumb .hover-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  bottom: -60px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

#gallery .item .thumb:hover .hover-content {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

#gallery .item .thumb {
  position: relative;
}

#gallery .item .thumb .hover-content ul li {
  display: inline;
  margin: 0px 10px;
}

#gallery .item .thumb .hover-content ul li a {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  color: #2a2a2a;
  background-color: #fff;
}

#gallery .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 40%;
  transform: translateY(-25px);
}

#gallery .owl-dots {
  display: none;
}
    
#gallery .owl-nav .owl-prev{
  position: absolute;
  left: 0px;
  outline: none;
}

#gallery .owl-nav .owl-prev span,
#gallery .owl-nav .owl-next span {
  opacity: 0;
}

#gallery .owl-nav .owl-prev:before {
  margin-top: 50%;
  display: inline-block;
  font-family: 'FontAwesome';
  color: #fff; /*#2a2a2a;*/
  font-size: 100px;
  font-weight: 700;
  content: '\f104';
  width: 50px;
  height: 50px;
  background-color: transparent;
  line-height: 48px;
  border: none; /* 1px solid #2a2a2a; */
}

#gallery .owl-nav .owl-prev {
  opacity: 0.50;
  transition: all .5s;
}

#gallery .owl-nav .owl-prev:hover {
  opacity: 0.75;
}

#gallery .owl-nav .owl-next {
  opacity: 0.50;
  transition: all .5s;
}

#gallery .owl-nav .owl-next:hover {
  opacity: 0.75;
}

#gallery .owl-nav .owl-next{
  outline: none;
  position: absolute;
  right: -5px;
}

#gallery .owl-nav .owl-next:before {
  margin-top: 50%;
  display: inline-block;
  font-family: 'FontAwesome';
  color: #fff; /* #2a2a2a;*/
  font-size: 100px;
  font-weight: 700;
  content: '\f105';
  width: 50px;
  height: 50px;
  background-color: transparent;
  line-height: 48px;
  border: none; /* 1px solid #2a2a2a;*/
}

/*
---------------------------------------------
0.7 testimonials
---------------------------------------------
*/

#testimonials {
  margin-right: 0px;
  padding-top: 100px;
  /*padding-bottom: 10%; */
}

#testimonials .section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #2a2a2a;
}

#testimonials span {
  font-size: 15px;
  color: #aaa;
  font-weight: 100;
  display: block;
  margin-top: 25px;
}

#testimonials .quote {
  margin-top: 25px;
}

#testimonials .quote i {
  float: left;
  font-size: 16px;
  margin-right: 15px;
  margin-top: 10px;
}

#testimonials .quote p {
  font-style: italic;
  font-size: 15px;
  text-align:justify;
  color: #2a2a2a;
  font-weight: 200;
  margin-left: 15px;
}

#testimonials p {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 200;
  display: block;
  margin-top: 15px;
}

/* 
---------------------------------------------
0.8 footer
--------------------------------------------- 
*/

footer {
  margin-top: 60px;
  padding: 60px 0px 30px 0px;
  background-color: #2a2a2a;
}

footer .logo {
  margin-bottom: 20px;
}

footer ul li {
  display: block;
  margin-bottom: 10px;
}

footer ul li a {
  font-size: 15px;
  color: #fff;
  transition: all .3s;
}

footer ul li a:hover {
  color: #aaa;
}

footer h4 {
  letter-spacing: 0.5px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

footer .under-footer {
  margin-top: 30px;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(250,250,250,0.3);
}

footer .under-footer ul {
  margin-top: 20px;
}

footer .under-footer ul li {
  display: inline-block;
  margin: 0px 10px;
}

footer .under-footer ul li a {
  font-size: 22px;
}

footer .under-footer p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

footer .under-footer a {
  color: #21c911;
}

footer .under-footer a:hover {
  color: #9dd497;
}

/* 
---------------------------------------------
09. instructors
--------------------------------------------- 
*/

.instructors-page-heading {
  margin-top: 160px;
  margin-bottom: 30px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.instructors {
  margin-top: 80px;
  text-align: justify;
}

.instructors .left-image img {
  width: 75%;
  overflow: hidden;
}

.instructors .image-center img {
  width: 75%;
  overflow: hidden;
  text-align: center;
}

.instructors .right-content {
  margin-left: 30px;
}

.instructors .right-content h4 {
  font-size: 34px;
  font-weight: 700;
  color: #2a2a2a;
}

.instructors .right-content span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.instructors .right-content .quote {
  margin-top: 25px;
}

.instructors .right-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 10px;
}

.instructors .right-content .quote p {
  font-style: italic;
  color: #2a2a2a;
  font-weight: 500;
}

.instructors .right-content p {
  font-size: 15px;
  color: #585858; /* #aaaaaa; */
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.instructors .right-content ul {
  /* border-top: 3px dotted #eee; */
  margin-top: 30px;
  padding-top: 30px;
}

.instructors .right-content ul li {
  display: inline-block;
  margin-right: 5px;
}

.instructors .right-content ul li a {
  width: 44px;
  height: 44px;
  background-color: #2a2a2a;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: all .5s;
}

.instructors .right-content ul li a:hover {
  background-color: #eee;
  color: #2a2a2a;
}

/* 
---------------------------------------------
10. prices (sessions, events, workshops, etc.) 
--------------------------------------------- 
*/

#prices {
  margin-top: 80px;
}

#prices .images img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

#prices .content {
  position: relative;
  z-index: 3;
  background-color: #fff;
  padding: 10px;
}

#prices .content h4 {
  font-size: 22px;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
  padding-bottom: 10px;
}

#prices .content span.price {
  font-size: 18px;
  color: #585858; /* #a1a1a1; */
  font-weight: 500;
  text-align: center;
  display: block;
  margin-top: 5px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

#prices .content ul.stars {
  position: absolute;
  right: 0;
  top: 0;
}

#prices .content ul.stars li {
  display: inline;
  font-size: 13px;
}

#prices .content span {
  font-size: 15px;
  color: #585858; /* #aaaaaa; */
  font-weight: 500;
  display: block;
  margin-top: 25px;
  text-align: justify;
  padding-bottom: 15px;
}

#prices .content .quote {
  margin-top: 25px;
}

#prices .content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 10px;
}

#prices .content .quote p {
  font-style: italic;
  color: #2a2a2a;
  font-weight: 500;
}

#prices .content p {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.prices {
  padding-top: 70px;
  padding-bottom: 10px;
}

.prices .section-heading {
  margin-bottom: 60px;
}

.prices .section-heading span{
  text-align: justify;
}

.prices .section-heading h2 {
  margin-bottom: 10px;
  text-align: center;
}

.prices .class-item {
  padding: 30px;
  /*box-shadow: 0px 0px 15px rgba(0,0,0,0.10);*/
  box-shadow: none;
  border:#aaaaaa;
  border-radius: 15px;
  border-width: 0.2px;
  border-style:solid;
  text-align: center;
}

.prices .class-item img {
  width: 50%;
  overflow: hidden;
}

.prices .class-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.prices .class-item p {
  margin-bottom: 25px;
}

/* 
---------------------------------------------
11. access 
--------------------------------------------- 
*/

.access {
  margin-top: 90px;
  /* border-bottom: 3px dotted #eee; */
  padding-bottom: 90px;
}

.access .section-heading {
  margin-bottom: 40px;
}

.access #map {
  margin-right: 30px;
}

.access ul li {
  margin-bottom: 30px;
  display: block;
}

.access ul li {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
}

.access ul li span,
.access ul li span a {
  font-size: 14px;
  font-weight: 400;
  color: #585858; /* #aaa; */
}

.access ul li span a:hover {
  color: #2a2a2a;
}

/*---------------------------------------
   Global settings for collapsible panels
-----------------------------------------*/
.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top: none;
  padding-top: 22px;
  padding-left: 32px;
  padding-bottom: 22px;
}

.panel-heading .panel-title a[data-toggle="collapse"] {
  color: #585858;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
}

.panel-heading .panel-title a[data-toggle="collapse"]:hover {
  color: #000;
}

.panel-heading .panel-title a[data-toggle="collapse"]::after {
  font-family:FontAwesome;
  content:'\f066';
  display: block;
  position: absolute;
  line-height: 1;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.panel-heading .panel-title a[data-toggle="collapse"].collapsed::after {
  font-family:FontAwesome;
  content:'\f065';
}

/* 
---------------------------------------------
12. responsive
--------------------------------------------- 
*/

@media (max-width: 1200px) {
  .main-banner .overview .right-content .right-first-image .thumb .hover-content p {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner .overview .right-content .right-first-image .thumb .hover-content p {
    display: block;
  }
  .header-area .nav li.submenu:after {
    right: 3px;
  }
  .header-area .nav li.submenu {
    padding-right: 15px;
  }
  .header-area .nav li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .header-area .nav li a {
    font-size: 15px;
    letter-spacing: 0px;
  }
  .main-banner .left-content {
    margin-bottom: 30px;
  }
  #testimonials .left-content {
    margin-bottom: 30px;
  }
  #testimonials .right-content .types {
    margin-top: 30px;
  }
  .about-hs .right-content {
    margin-left: 0px;
    margin-top: 30px;
  }
  .prices .class-item {
    margin-bottom: 30px;
  }
  .access #map {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .main-banner .overview .left-content .thumb .inner-content {
    left: 50%;
    top: 47.5%;
    transform: translate(-50%,-50%);
    text-align: center;
    height: 100%; 
  }
  footer {
    text-align: center;
  }
  footer h4 {
    margin-top: 30px;
  }
}

#preloader {
  overflow: hidden;
  background-color: #2a2a2a;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

