  @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:        #13c4f9;
    --white-color:          #ffffff;
	--black-color:          #000000;  
    --dark-color:           #171819;
    --about-bg-color:       #f9f9f9;

    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #ffffff;

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


  /*---------------------------------------
     HEADERS             
  -----------------------------------------*/

  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;
    margin: 20px 0;
	  text-transform: uppercase;
  }

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

  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);
	    font-weight: var(--font-weight-bold);
	    letter-spacing: -1px;
	  text-transform: uppercase;
  }

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

  h6 {
    color: var(--white-color);
    font-size: var(--h6-font-size);
    line-height: inherit;
    margin: 0;
  }
li {display:inline-block;width:auto}

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

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

  .section {
    padding: 7rem 0;
  }
li {display:inline-block;width:auto}


  /* BUTTON */

  .custom-btn {
      background-color: var(--primary-color);
    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-btn:hover {
    color: var(--primary-color);
  }

  .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: var(--white-color);
    border-color: transparent;
    color: var(--white-color);
  }

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

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



  /*---------------------------------------
     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(--white-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;
  }


  /*---------------------------------------
     MODAL              
  -----------------------------------------*/

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

  .modal-header,
  .modal-body,
  .modal-footer {
    border: 0;
    padding: 0;
  }

  .membership-form a {
    color: var(--primary-color);
  }


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

  .feature {
    background: var(--dark-color);
    padding: 5rem 0;
  }


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

  .navbar {
    background: var(--dark-color);
    padding: 1rem;
  }

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

  .nav-brand {
    color: var(--primary-color);
	  font-family: 'Anton';
    font-size: var(--h2-font-size);
    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;
	  text-align:center;
  }

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

  .modal-text {
    color: var(--primary-color);
	  font-family: 'Anton';
    font-size: var(--h2-font-size);
    line-height: normal;
    padding-top: 0;
  }
  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .home {
    background-image: url("../images/cover.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }
  .demand {
    background-image: url('../Images/demand.jpeg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }
  .massage {
    background-image: url('../Images/massage.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }

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

  .class-info {
    background: var(--black-color);
	color: 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 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;
  }

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
    background-color: var(--primary-color);
		color: var(--white-color);
}


/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: var(--primary-color);
		color: var(--white-color);
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--white-color);
	color: var(--primary-color);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--white-color);
	color: var(--primary-color);
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
  /*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

  .schedule {
    background: var(--dark-color);
  }

  .schedule-table {
    display: table;
    border: 0;
    text-align: center;
  }

  .schedule-table strong,
  .schedule-table span {
    display: block;
    text-align: center;
  }

  .schedule-table strong {
    color: var(--white-color);
  }

  .schedule-table span {
    color: var(--gray-color);
  }

  .schedule-table span,
  .schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
  }

  .schedule-table small {
    position: relative;
    top: 10px;
  }

  .table .thead-light th,
  .schedule-table tr td:first-child {
    background: var(--primary-color);
    border: 1px solid #212122;
    color: var(--white-color);
  }

  .schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
  }

  .table-bordered td, 
  .table-bordered th {
    border: 1px solid #212122;
  }

  .table-bordered td {
    padding-bottom: 22px;
  }

  .table td, .table th {
    padding: 1rem;
  }


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

  .about {
    background: var(--about-bg-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;
  }

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

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


  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

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

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
  }

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

  button#submit-button:hover {
    background: var(--primary-color);
  }

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

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

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


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

  .site-footer {
    border-top: 1px solid #efebeb;
    padding: 3rem 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);
  }


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

  .social-icon {
	color: var(--primary-color);  
    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);
  }


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

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

    .section {
      padding: 5rem 0;
    }

    .nav-item .nav-link {
	text-align: center;
      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;
    }
  }
.badge {
    background: radial-gradient( 5px -9px, circle, white 8%, red 26px );
    background-color: red;
    border: 2px solid white;
    border-radius: 12px; /* one half of ( (border * 2) + height + padding ) */
    box-shadow: 1px 1px 1px black;
    color: white;
    font: bold 15px/13px Helvetica, Verdana, Tahoma;
    height: 16px; 
    min-width: 14px;
    padding: 4px 3px 0 3px;
    text-align: center;
}
html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}
audio,canvas,progress,video{display:inline-block}progress{vertical-align:baseline}
audio:not([controls]){display:none;height:0}[hidden],template{display:none}
a{background-color:transparent;-webkit-text-decoration-skip:objects}
a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}svg:not(:root){overflow:hidden}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-input-placeholder{color:inherit;opacity:0.54}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
/* End extract */
hr{border:0;border-top:1px solid #eee;margin:20px 0}
.ht-image{max-width:100%;height:auto}img{margin-bottom:-5px}a{color:inherit}
.ht-table,.ht-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.ht-table-all{border:1px solid #ccc}
.ht-bordered tr,.ht-table-all tr{border-bottom:1px solid #ddd}.ht-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.ht-table-all tr:nth-child(odd){background-color:#fff}.ht-table-all tr:nth-child(even){background-color:#f1f1f1}
.ht-hoverable tbody tr:hover,.ht-ul.ht-hoverable li:hover{background-color:#ccc}.ht-centered tr th,.ht-centered tr td{text-align:center}
.ht-table td,.ht-table th,.ht-table-all td,.ht-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.ht-table th:first-child,.ht-table td:first-child,.ht-table-all th:first-child,.ht-table-all td:first-child{padding-left:16px}
.ht-btn,.ht-button{border:none;display:inline-block;outline:0;padding:8px 16px;vertical-align:middle;overflow:hidden;text-decoration:none;color:inherit;background-color:inherit;text-align:center;cursor:pointer;white-space:nowrap}
.ht-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}
.ht-btn,.ht-button{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}   
.ht-disabled,.ht-btn:disabled,.ht-button:disabled{cursor:not-allowed;opacity:0.3}.ht-disabled *,:disabled *{pointer-events:none}
.ht-btn.ht-disabled:hover,.ht-btn:disabled:hover{box-shadow:none}
.ht-badge,.ht-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.ht-badge{border-radius:50%}
.ht-ul{list-style-type:none;padding:0;margin:0}.ht-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.ht-ul li:last-child{border-bottom:none}
.ht-tooltip,.ht-display-container{position:relative}.ht-tooltip .ht-text{display:none}.ht-tooltip:hover .ht-text{display:inline-block}
.ht-ripple:active{opacity:0.5}.ht-ripple{transition:opacity 0s}
.ht-input{padding:8px;display:block;border:none;border-bottom:1px solid #ccc;width:100%}
.ht-select{padding:9px 0;width:100%;border:none;border-bottom:1px solid #ccc}
.ht-dropdown-click,.ht-dropdown-hover{position:relative;display:inline-block;cursor:pointer}
.ht-dropdown-hover:hover .ht-dropdown-content{display:block;z-index:1}
.ht-dropdown-hover:first-child,.ht-dropdown-click:hover{background-color:#ccc;color:#000}
.ht-dropdown-hover:hover > .ht-button:first-child,.ht-dropdown-click:hover > .ht-button:first-child{background-color:#ccc;color:#000}
.ht-dropdown-content{cursor:auto;color:#000;background-color:#fff;display:none;position:absolute;min-width:160px;margin:0;padding:0}
.ht-check,.ht-radio{width:24px;height:24px;position:relative;top:6px}
.ht-sidebar{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}
.ht-bar-block .ht-dropdown-hover,.ht-bar-block .ht-dropdown-click{width:100%}
.ht-bar-block .ht-dropdown-hover .ht-dropdown-content,.ht-bar-block .ht-dropdown-click .ht-dropdown-content{min-width:100%}
.ht-bar-block .ht-dropdown-hover .ht-button,.ht-bar-block .ht-dropdown-click .ht-button{width:100%;text-align:left;padding:8px 16px; font-weight: bold;}
.ht-main,#main{transition:margin-left .4s}
.ht-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.ht-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}
.ht-bar{width:100%;overflow:hidden}.ht-center .ht-bar{display:inline-block;width:auto}
.ht-bar .ht-bar-item{padding:8px 16px;float:left;width:auto;border:none;outline:none;display:block}
.ht-bar .ht-dropdown-hover,.ht-bar .ht-dropdown-click{position:static;float:left}
.ht-bar .ht-button{white-space:normal}
.ht-bar-block .ht-bar-item{width:100%;display:block;padding:8px 16px;text-align:left;border:none;outline:none;white-space:normal;float:none}
.ht-bar-block.ht-center .ht-bar-item{text-align:center}.ht-block{display:block;width:100%}
.ht-responsive{overflow-x:auto}
.ht-container:after,.ht-container:before,.ht-panel:after,.ht-panel:before,.ht-row:after,.ht-row:before,.ht-row-padding:after,.ht-row-padding:before,
.ht-cell-row:before,.ht-cell-row:after,.ht-clear:after,.ht-clear:before,.ht-bar:before,.ht-bar:after{content:"";display:table;clear:both}
.ht-col,.ht-half,.ht-third,.ht-twothird,.ht-threequarter,.ht-quarter{float:left; height: 100%; width:100%}
.ht-col.s1{width:8.33333%}.ht-col.s2{width:16.66666%}.ht-col.s3{width:24.99999%}.ht-col.s4{width:33.33333%}
.ht-col.s5{width:41.66666%}.ht-col.s6{width:49.99999%}.ht-col.s7{width:58.33333%}.ht-col.s8{width:66.66666%}
.ht-col.s9{width:74.99999%}.ht-col.s10{width:83.33333%}.ht-col.s11{width:91.66666%}.ht-col.s12{width:99.99999%}
@media (min-width:601px){.ht-col.m1{width:8.33333%}.ht-col.m2{width:16.66666%}.ht-col.m3,.ht-quarter{width:24.99999%}.ht-col.m4,.ht-third{width:33.33333%}
.ht-col.m5{width:41.66666%}.ht-col.m6,.ht-half{width:49.99999%; height: 49.99999%}.ht-col.m7{width:58.33333%}.ht-col.m8,.ht-twothird{width:66.66666%}
.ht-col.m9,.ht-threequarter{width:74.99999%}.ht-col.m10{width:83.33333%}.ht-col.m11{width:91.66666%}.ht-col.m12{width:99.99999%}}
@media (min-width:993px){.ht-col.l1{width:8.33333%}.ht-col.l2{width:16.66666%}.ht-col.l3{width:24.99999%}.ht-col.l4{width:33.33333%}
.ht-col.l5{width:41.66666%}.ht-col.l6{width:49.99999%}.ht-col.l7{width:58.33333%}.ht-col.l8{width:66.66666%}
.ht-col.l9{width:74.99999%}.ht-col.l10{width:83.33333%}.ht-col.l11{width:91.66666%}.ht-col.l12{width:99.99999%}}
.ht-content{margin:auto}.ht-rest{overflow:hidden}
.ht-cell-row{display:table;width:100%}.ht-cell{display:table-cell}
.ht-cell-top{vertical-align:top}.ht-cell-middle{vertical-align:middle}.ht-cell-bottom{vertical-align:bottom}
.ht-hide{display:none!important}.ht-show-block,.ht-show{display:block!important}.ht-show-inline-block{display:inline-block!important}
@media (max-width:600px){.ht-modal-content{margin:0 10px;width:auto!important}.ht-modal{padding-top:30px}
.ht-dropdown-hover.ht-mobile .ht-dropdown-content,.ht-dropdown-click.ht-mobile .ht-dropdown-content{position:relative}	
.ht-hide-small{display:none!important}.ht-mobile{display:block;width:100%!important}.ht-bar-item.ht-mobile,.ht-dropdown-hover.ht-mobile,.ht-dropdown-click.ht-mobile{text-align:center}
.ht-dropdown-hover.ht-mobile,.ht-dropdown-hover.ht-mobile .ht-btn,.ht-dropdown-hover.ht-mobile .ht-button,.ht-dropdown-click.ht-mobile,.ht-dropdown-click.ht-mobile .ht-btn,.ht-dropdown-click.ht-mobile .ht-button{width:100%}}
@media (max-width:768px){.ht-modal-content{width:500px}.ht-modal{padding-top:50px}}
@media (min-width:993px){.ht-modal-content{width:900px}.ht-hide-large{display:none!important}.ht-sidebar.ht-collapse{display:block!important}}
@media (max-width:992px) and (min-width:601px){.ht-hide-medium{display:none!important}}
@media (max-width:992px){.ht-sidebar.ht-collapse{display:none}.ht-main{margin-left:0!important;margin-right:0!important}}
.ht-top,.ht-bottom{position:fixed;width:100%;z-index:1}.ht-top{top:0}.ht-bottom{bottom:0}
.ht-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:2}
.ht-display-topleft{position:absolute;left:0;top:0}.ht-display-topright{position:absolute;right:0;top:0}
.ht-display-bottomleft{position:absolute;left:0;bottom:0}.ht-display-bottomright{position:absolute;right:0;bottom:0}
.ht-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}
.ht-display-left{position:absolute;top:50%;left:0%;transform:translate(0%,-50%);-ms-transform:translate(-0%,-50%)}
.ht-display-right{position:absolute;top:50%;right:0%;transform:translate(0%,-50%);-ms-transform:translate(0%,-50%)}
.ht-display-topmiddle{position:absolute;left:50%;top:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.ht-display-bottommiddle{position:absolute;left:50%;bottom:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.ht-display-container:hover .ht-display-hover{display:block}.ht-display-container:hover span.ht-display-hover{display:inline-block}.ht-display-hover{display:none}
.ht-display-position{position:absolute}
.ht-circle{border-radius:50%}
.ht-round-small{border-radius:2px}.ht-round,.ht-round-medium{border-radius:4px}.ht-round-large{border-radius:8px}.ht-round-xlarge{border-radius:16px}.ht-round-xxlarge{border-radius:32px}
.ht-row-padding,.ht-row-padding>.ht-half,.ht-row-padding>.ht-third,.ht-row-padding>.ht-twothird,.ht-row-padding>.ht-threequarter,.ht-row-padding>.ht-quarter,.ht-row-padding>.ht-col{padding:0 8px}
.ht-container,.ht-panel{padding:0.01em 16px}.ht-panel{margin-top:16px;margin-bottom:16px}
.ht-code,.ht-codespan{font-family:Consolas,"courier new";font-size:16px}
.ht-code{width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #4CAF50;word-wrap:break-word}
.ht-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}
.ht-card,.ht-card-2{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}
.ht-card-4,.ht-hover-shadow:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)}
.ht-spin{animation:ht-spin 2s infinite linear}@keyframes ht-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.ht-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.ht-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.ht-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.ht-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.ht-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.ht-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.ht-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.ht-animate-input{transition:width 0.4s ease-in-out}.ht-animate-input:focus{width:100%!important}
.ht-opacity,.ht-hover-opacity:hover{opacity:0.60}.ht-opacity-off,.ht-hover-opacity-off:hover{opacity:1}
.ht-opacity-max{opacity:0.25}.ht-opacity-min{opacity:0.75}
.ht-greyscale-max,.ht-grayscale-max,.ht-hover-greyscale:hover,.ht-hover-grayscale:hover{filter:grayscale(100%)}
.ht-greyscale,.ht-grayscale{filter:grayscale(75%)}.ht-greyscale-min,.ht-grayscale-min{filter:grayscale(50%)}
.ht-sepia{filter:sepia(75%)}.ht-sepia-max,.ht-hover-sepia:hover{filter:sepia(100%)}.ht-sepia-min{filter:sepia(50%)}
.ht-tiny{font-size:10px!important}.ht-small{font-size:12px!important}.ht-medium{font-size:15px!important}.ht-large{font-size:18px!important}
.ht-xlarge{font-size:24px!important}.ht-xxlarge{font-size:36px!important}.ht-xxxlarge{font-size:48px!important}.ht-jumbo{font-size:64px!important}
.ht-left-align{text-align:left!important}.ht-right-align{text-align:right!important}.ht-justify{text-align:justify!important}.ht-center{text-align:center!important}
.ht-border-0{border:0!important}.ht-border{border:1px solid #ccc!important}
.ht-border-top{border-top:1px solid #ccc!important}.ht-border-bottom{border-bottom:1px solid #ccc!important}
.ht-border-left{border-left:1px solid #ccc!important}.ht-border-right{border-right:1px solid #ccc!important}
.ht-topbar{border-top:6px solid #ccc!important}.ht-bottombar{border-bottom:6px solid #ccc!important}
.ht-leftbar{border-left:6px solid #ccc!important}.ht-rightbar{border-right:6px solid #ccc!important}
.ht-section,.ht-code{margin-top:16px!important;margin-bottom:16px!important}
.ht-margin{margin:16px!important}.ht-margin-top{margin-top:16px!important}.ht-margin-bottom{margin-bottom:16px!important}
.ht-margin-left{margin-left:16px!important}.ht-margin-right{margin-right:16px!important}
.ht-padding-small{padding:4px 8px!important}.ht-padding{padding:8px 16px!important}.ht-padding-large{padding:12px 24px!important}
.ht-padding-16{padding-top:16px!important;padding-bottom:16px!important}.ht-padding-24{padding-top:24px!important;padding-bottom:24px!important}
.ht-padding-32{padding-top:32px!important;padding-bottom:32px!important}.ht-padding-48{padding-top:48px!important;padding-bottom:48px!important}
.ht-padding-64{padding-top:64px!important;padding-bottom:64px!important}
.ht-left{float:left!important}.ht-right{float:right!important}
.ht-button:hover{color:#000!important;background-color:#ccc!important}
.ht-transparent,.ht-hover-none:hover{background-color:transparent!important}
.ht-hover-none:hover{box-shadow:none!important}
/* Colors */
.ht-paragraph{text-align: left; width: 75%; margin: auto;}
.ht-blue,.ht-hover-blue:hover{color:#fff!important;background-color:#13c4f9!important}
.ht-white,.ht-hover-white:hover{color:#13c4f9!important;background-color:#fff!important}
.ht-black,.ht-hover-black:hover{color:#fff!important;background-color:#000!important}
.ht-navbar{<img alt="logo"src="Images/navbar.png">}
.ht-text-blue,.ht-hover-text-blue:hover{color:#13c4f9!important}
.ht-text-white,.ht-hover-text-white:hover{color:#fff!important}
.ht-text-black,.ht-hover-text-black:hover{color:#000!important}
.ht-feature, {margin: auto; max-width: 75%; text-align: left;}
.ht-navbar {
    background: var(--dark-color);
    padding: 1rem;
  }

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

  .ht-nav-brand {
    color: var(--primary-color);
	  font-family: 'Anton';
    font-size: var(--h2-font-size);
    line-height: normal;
    padding-top: 0;
  }

  .ht-nav-item .ht-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;
	  text-align:center;
  }

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

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

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

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

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

  .ht-navbar-toggler[aria-expanded="true"] .ht-navbar-toggler-icon::before,
  .ht-navbar-toggler[aria-expanded="true"] .ht-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;
  }

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

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

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

  .ht-navbar-toggler .ht-navbar-toggler-icon::before,
  .ht-navbar-toggler .ht-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: '';
  }

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

  .ht-navbar-toggler .ht-navbar-toggler-icon::after {
    top: 8px;
  }
.titlebar{
    color: var(--primary-color);
	  font-family: 'Anton';
    font-size: var(--h2-font-size);
    line-height: normal;
    padding-top: 0;
  }

