/*This is main css file*/
@font-face {
  font-family: 'Plain';
  src: url('../fonts/Plain-Regular.woff2') format('woff2'),
    url('../fonts/Plain-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Plain';
  src: url('../fonts/Plain-Light.woff2') format('woff2'),
    url('../fonts/Plain-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Plain';
  src: url('../fonts/Plain-Bold.woff2') format('woff2'),
    url('../fonts/Plain-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary-color: #bb86fc;
  /*#81c9ff;*/
  /*#b8a90d;*/
  /*#f13a11;*/
  /*#0e69b3*/
  --white-color3: #ffffffdb;
  /*#000000cf;*/
  /*#ffffffc9;*/
  --white-color: #ffffff;
  --navbar-color: #1e1e1e;
  --white-color2: #ffffff;
  /* --dark-color:           #15202B;#000000;#171F24; #171819; */
  --about-bg-color: #f9f9f9;

  --gray-color: #909090;
  --link-color: #e4e4e4;
  --p-color: #999999;

  --base-font-family: 'Plain', sans-serif;
  --font-weight-bold: bold;
  --font-weight-normal: normal;
  --font-weight-light: 300;
  --font-weight-thin: 100;
  /* --h1-font-size:         70px; */
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --base-font-size: 16px;
  --menu-font-size: 14px;

  --border-radius-large: 100%;
  --border-radius-small: 2px;
}


body {
  background: #121212;
  font-family: var(--base-font-family);
}

/*==================================================================*/

/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-thin);
  line-height: normal;
}

h1 {
  /* font-size: var(--h1-font-size); */
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: normal;
  line-height: 90%;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  margin: 0;
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--gray-color);
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.5em;
}

b,
strong {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.section {
  padding: 4rem 0;
}

li {
  color: #999999;
}

/* BUTTON */

.btn-firstbtn {
  background: transparent;
  border-radius: var(--border-radius-small);
  padding: 14px 24px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-firstbtn:hover {
  color: rgba(255, 255, 255, 0.808);
}

.btn-firstbtn:focus {
  box-shadow: none;
}

.btn-firstbtn.bordered:hover,
.btn-firstbtn.bordered:focus,

.btn-firstbtn.bg-color:hover,
.btn-firstbtn.bg-color:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}


.custom-btn {
  border-radius: 40px;
  padding: 14px 24px;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  animation: bounce1 2s infinite;
  -webkit-animation: bounce1 2s infinite;
  -moz-animation: bounce1 2s infinite;
  -o-animation: bounce1 2s infinite;
}


.custom-btn:focus {
  box-shadow: none;
}

.custom-btn.bordered:hover,
.custom-btn.bordered:focus,

.custom-btn.bg-color:hover,
.custom-btn.bg-color:focus {
  background: transparent;
  color: var(--primary-color);
}

@-webkit-keyframes bounce1 {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce1 {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce1 {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-o-keyframes bounce1 {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

.custom-btn2 {
  border-radius: var(--border-radius-small);
  padding: 14px 24px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.custom-btn2:hover {
  color: var(--primary-color);
}

.custom-btn2:focus {
  box-shadow: none;
}

.custom-btn2.bordered:hover,
.custom-btn2.bordered:focus,

.custom-btn2.bg-color:hover,
.custom-btn2.bg-color:focus {
  opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;

  border-color: transparent;
  color: var(--white-color);
}

.custom-btn4 {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 1px solid rgba(114, 18, 106, 0.18);
  color: white;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

@media screen and (min-width:451) {
  .custom-btn4 {
    padding: 10px 24px;
  }
}

@media screen and (max-width:450) {
  .custom-btn4 {
    padding: 6px 8px;
  }
}

.custom-btn4:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.151);
}

.custom-btn4:focus {
  box-shadow: none;
}

.custom-btn4.bordered:hover,
.custom-btn4.bordered:focus,

.custom-btn4.bg-color:hover,
.custom-btn4.bg-color:focus {
  background: var(--white-color);
  border-color: transparent;
  /* color: var(--primary-color); */
}

.bordered {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.bg-color {
  color: var(--white-color);
}


.facebookbtn {
  box-shadow: 1px 1px 0px -5px #f0f7fa;
  border-radius: 10%;
  border: 1px solid #4268b2;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding-left: 2px;
  padding-right: 4px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
}

.facebookbtn:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}

.facebookbtn:active {
  position: relative;
  top: 1px;
}

.photos-fb {
  padding-left: 7px;
  padding-right: 7px;
  padding-bottom: 3px;
  padding-top: 3px;
  border-radius: 50%;
  color: #FFFFFF;
}


/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
  color: var(--primary-color);
  outline: none;
  text-decoration: none;
}


/* BG OVERLAY */

.bg-overlay {
  background: var(--dark-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  -khtml-opacity: 0.85;
  -moz-opacity: 0.85;
}


/*---------------------------------------
    FEATURE          
  -----------------------------------------*/

.feature {
  background: #1e1e1e;
  padding: 5rem 0;
}

/*---------------------------------------
     MENU             
  -----------------------------------------*/

.navbar {
  background: var(--navbar-color);
  padding: 0.1rem;
  /*background: rgba( 255, 255, 255, 0.25 );*/
  box-shadow: 0 8px 32px 0 #0000006b;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-brand {
  color: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  padding-top: 0;
  padding-left: 0.5rem;
}

.nav-item .nav-link {
  display: block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  padding: 2px 6px;
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover {
  color: var(--primary-color);
}

.navbar .social-icon li a {
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--primary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
     HERO              
  -----------------------------------------*/

.hero-home {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  vertical-align: middle;
  min-height: 100vh;
  position: relative;
}

@media screen and (min-width: 940px) {
  .hero-home {
    background-image: url('../images/xxx.webp');
  }
}

@media screen and (min-width: 750px) and (max-width: 939px) {
  .hero-home {
    background-image: url('../images/xxx.webp');
  }
}

@media screen and (min-width: 460px) and (max-width: 750px) {
  .hero-home {
    background-image: url('../images/xxx.webp');
  }
}

@media screen and (min-width: 351px) and (max-width: 460px) {
  .hero-home {
    background-image: url('../images/xxx.webp');
  }
}

@media screen and (max-width: 350px) {
  .hero-home {
    background-image: url('../images/xxx.webp');
  }
}

.oneline {
  white-space: nowrap;
}

/*---------------------------------------
     CLASS               
  -----------------------------------------*/
#class {
  background: #121212;
}

.class-info {
  /*background: var(--white-color);*/
  /*box-shadow: 6px 0 38px rgba(20,20,20,0.10);*/
  box-shadow: 0 8px 32px 0 #0000006b;
  backdrop-filter: blur(6.0px);
  -webkit-backdrop-filter: blur(6.0px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* border-radius: 0 0 2px 2px;*/
  padding: 1rem 2rem;
  position: relative;
  text-align: center;

}

.class-info img {
  border-radius: 2px 2px 0 0;
}

.class-info strong {
  color: var(--gray-color);
}

.class-price {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
}

/*---------------------------------------
     YOUTUBE           
  -----------------------------------------*/

.youtube {
  /*background:#171819;*/
  padding-bottom: 5rem;
  padding-top: 2rem;

}

/*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

.schedule {
  background: #202020;
}


/*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

.about {
  background: #121212;
}

.about-working-hours {
  border-left: 2px solid;
  padding-left: 3.5rem;
}

.about-working-hours strong {
  color: var(--white-color);
  opacity: 0.85;
  -khtml-opacity: 0.85;
  -moz-opacity: 0.85;
}

.team-thumb {
  position: relative;
}

.team-info {
  background: var(--white-color);
  border-radius: 0 0 2px 2px;
  box-shadow: 6px 0 38px rgba(20, 20, 20, 0.10);
  padding: 20px;
  position: relative;
}

.team-info span {
  font-weight: var(--font-weight-light);
  opacity: 0.85;
  -khtml-opacity: 0.8.5;
  -moz-opacity: 0.85;
}

.team-info .social-icon {
  position: absolute;
  top: 10px;
  right: 20px;
}

.team-info .social-icon li {
  display: block;
}

#mainlogo {
  width: auto;
  height: 36px;
  margin-left: 10px;
}

#out-mainlogo {
  text-align: center;
}

/*---------------------------------------
     CONTACT              
  -----------------------------------------*/
.contact {
  background: #202020;
}

.webform input,
button#submit-button {
  height: calc(2.25rem + 20px);
}

.form-control {
  border-radius: var(--border-radius-small);
  margin: 1.3rem 0;
  background-color: #121212;
  border-color: #999999;
}

.form-control:focus {
  box-shadow: none;
  background-color: #151515;
  color: #b8b8b8;
}

button#submit-button {
  box-shadow: none;
  border-color: transparent;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

button#submit-button:hover {
  opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
}

.contact h2+p {
  max-width: 90%;
}

.google-map {
  border-top: 1px solid #efebeb;
  margin-top: 0.2rem;
  padding-top: 0.5rem;
}

.google-map iframe {
  width: 100%;
}


/*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.site-footer {
  /*border-top: 1px solid #efebeb;*/
  padding: 3rem 0;
}

/* .site-footer h6 {
    color:#233f6e; I added dark-md color

  } */

.site-footer a {
  color: gray;
  font-weight: var(--font-weight-light);
}

.site-footer p {
  font-size: var(--base-font-size);
}


.contact .fa,
.site-footer .fa {
  color: var(--p-color);
}

.fth {
  border-bottom: 1px dotted #999999;
}



/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 5px 0 0 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  text-decoration: none;
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  margin: 5px 10px;
  text-align: center;
}

.social-icon li a:hover {
  color: var(--primary-color);
}

/*added for footer start*/
.social-icon2 {
  position: relative;
  padding: 0;
}

.social-icon2 li {
  display: inline-block;
  list-style: none;
}

.social-icon2 li a {
  text-decoration: none;
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  margin: 5px 10px;
  text-align: center;
}

.social-icon2 li a:hover {
  color: var(--primary-color);
}

/*added for footer end*/
/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media screen and (max-width: 992px) {

  .section {
    padding: 5rem 0;
  }

  .nav-item .nav-link {
    padding: 6px;
  }

  .navbar .social-icon {
    margin-top: 22px;
  }

  .navbar-collapse,
  .site-footer {
    text-align: center;
  }

  .schedule-table {
    display: block;
  }

  .modal-content {
    padding: 2rem;
  }
}

@media screen and (max-width: 767px) {

  h1 {
    font-size: 38px;
  }

  .about-working-hours {
    border-left: 0;
    padding: 22px 0 0 0;
  }

  .contact h2 span {
    display: block;
  }
}

/*Scroll-Bar*/
/* Firefox */
html {
  scrollbar-color: #4e4e4e;
  scrollbar-width: thin;

}

/* WebKit and Chromiums */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: #4e4e4e;
  border-radius: 5px;
}