<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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;
}

.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}


:root {
  --primary-color: #dd1b71;
  --white-color: #ffffff;
  --dark-color: #474745;
  --about-bg-color: #f9f9f9;
  --timetable-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  --gray-color: #909090;
  --link-color: #404040;
  --p-color: #666262;

  --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: 48px;
  --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: var(--white-color);
  font-family: var(--base-font-family);
}


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

h1,
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;
  margin: 20px 0;
}

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: 7rem 0;
}


/* BUTTON */
.social-icon {
  color: var(--white-color);
  list-style: none;
  padding: 10px 20px;
  margin-top: 5px;
}

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

.custom-btn {
  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) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.navbar {
  padding: 0;
}

@media(max-width:991px) {
  .small {
    background: transparent;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    color: var(--white-color) !important;
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .small:hover {
    color: var(--white-color) !important;
    background: var(--primary-color);
    border: transparent;
    cursor: pointer;
  }

  .navbar {
    padding: 1rem;
  }
}

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

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

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

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

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




/*---------------------------------------
     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: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}




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

.navbar {
  background: var(--dark-color);

}

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

.navbar-brand {
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  padding-top: 0;
}

.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-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 {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  vertical-align: middle;
  min-height: 100vh;
  position: relative;
}

.hero .btn {
  color: var(--white-color) !important;
  padding: 15px 35px;
}

.hero .btn:hover {
  color: var(--about-bg-color) !important;
  background-color: var(--primary-color) !important;
}

.hero h6 {
  color: var(--white-color);margin-bottom: 1rem;
}


.hero .hero-heading {
  color: var(--primary-color);
  font-family: 'Pacifico';
  font-weight: 700;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 1rem;
}

@media(max-width: 767px){
  .hero .hero-heading{
    font-size: 2rem;
  }
}

/*---------------------------------------
     CLASS               
  -----------------------------------------*/

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

.class-info h4 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  margin: 0;
}

.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;
}

.class-price:hover {
  background-color: var(--dark-color);
}

.class-price:hover i {
  color: var(--primary-color);
}

@media(min-width:992px) {
  .class-info {
    height: 150px !important;
  }
}

@media(max-width: 991px) {
  .class-info {
    height: 140px !important;
  }
}

@media(max-width:1100px) {
  .class-price {
    top: 2.7rem;
    right: .7rem;
  }
}

/*=================Timetable==================*/
.schedule {
  background: var(--dark-color);
  padding: 5rem;
}

.timetable {
  position: relative;
  font-size: 45px;
  display: inline-block;
  font-family: "Plain", cursive;
  font-weight: 300;
  margin-top: 1rem;
}


@media only screen and (max-width: 300px) {
  .timetable {
    font-size: 25px;
  }
}

@media (max-width: 430px) {
  .timetable {
    font-size: 25px;
  }
}

.timetable-table {
  background-color: #fff;
  display: block;
  margin-top: 20px;
}

table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0%;
  padding: 0.6em;
  border-bottom: var(--dark-color);
  background-color: var(--primary-color);
  color: var(--white-color);
}


table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {
  border: 1px solid var(--primary-color);
}

table.amrt-timetable-table td.amrt-label-td {
  color: var(--primary-color);
}

/*---------------------------------------
      ABOUT &amp; TEAM            
  -----------------------------------------*/

.about {
  background: var(--about-bg-color);
  padding: 4rem !important;
}

@media (max-width:991px) {
  .about {
    padding: 2rem 0 !important;
  }
}

.about .custom-btn {
  background-color: var(--primary-color);
  padding: auto 40rem;
  color: var(--white-color) !important;
  font-weight: bold;
}

.about .custom-btn:hover {
  color: var(--primary-color) !important;
  background-color: var(--dark-color);

}

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

.about-working-hours strong {
  color: var(--white-color);
  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;
}



/*---------------------------------------
     CONTACT              
  -----------------------------------------*/
.contact {
  padding: 4rem;
}

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

.google-map {
  border-top: 1px solid var(--about-bg-color);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

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


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

.site-footer {
  border-top: 1px solid var(--about-bg-color);
  padding: 2rem 0;
}

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

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

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

.copyright-text span {
  color: var(--primary-color);
  font-style: italic;
}

.copyright-text span:hover {
  text-decoration: underline;
}


/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

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

  .section {
    padding: 5rem 0;
  }


  .navbar-nav .nav-link {
    padding-top: 1rem !important;
  }


  .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;
  }
}</pre></body></html>