@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");

html {
    scroll-padding-top: 150px;
}

html, body {
    margin: 0;
    height: 100%;
}

h1 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 36px;
    color: black;
    margin: 0;
}

h2 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 22px;
    color: black;
    margin: 0;
}

h3 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 18px;
    color: black;
    margin: 0;
}

p {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: black;
    margin: 0;
}

@media screen and (min-width: 550px) {
    .tg td{font-size:14px;}
    .tg th{font-size:14px;}
}

.id {
    margin-top: -50px;
    padding-bottom: 50px;
    display: block;
}

/* Contact Details begin */

.contactDetails {
    display: inline-block;
    width: 95%;
    max-width: 500px;
    height: 500px;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    background-color: #eee;
    border-radius: 5px;
    z-index: 2;
}

.contactDetails h1 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 20px;
}

.contactDetails p {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 15px;
    font-weight: normal;
}

.bottom_container {
    bottom: 20px;
    width: 100%;
    position: absolute;
}

/* Contact Details end */

.divider {
    display: inline-block;
    background-color: #666;

    margin: 0;
    padding: 0;
    height: 1px;
    width: 100%;
}

.white {
    color: white;
}

.white-bg {
    background-color: white;
    width: 100%;
}

.toggle-text-button {
    color: gray;
    border: none;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 12px;
    margin: 0;
}

.toggle-text {
    display: none;
}

.home-logo {
    margin-top: 30px;
    width: 25%;
    max-width: 6em;
}

.zumba-gold-logo {
    background-image: url("../img/brand/zumba-gold.svg");
    background-size: cover;
    width: 125px;
    height: 51px;
    display: inline-block;
}

.barrebelles-logo {
    background-image: url("../img/brand/barrebelles.png");
    background-size: cover;
    width: 153px;
    height: 70px;
    display: inline-block;
}

.purely-barre-logo {
    background-image: url("../img/brand/purelybarre.png");
    background-size: cover;
    width: 153px;
    height:82px;
    display: inline-block;
}

.callanetics-logo {
    background-image: url("../img/brand/callanetics.png");
    background-size: cover;
    height: 25px;
    width: 180px;
    display: inline-block;
    margin: 10px 0;
}

.kate-face {
    background-image: url("../img/pictures/IMG_5586.JPG");
    background-size: cover;
    width: 150px;
    height: 150px;
    display: inline-block;
    border-radius: 75px;
}

.nav-holder-mobile {
    background: none;
    padding: 30px;
    position: fixed;
    left: 0;
    right: 0;
    transition: ease all 0.25s;
    z-index: 99;
    box-shadow: none;
    display: none;
}

/* hamburger nav */
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 */


#menuToggle a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
}

#menuToggle a:hover {
  color: #155799;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 15px;
  left: calc(100% - 42px);
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#hamburger-toggle {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0 0;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 100%;
  margin: -100px 0 0 -100%;
  padding: 50px;
  padding-top: 125px;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0 0;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    height: 4098px;
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul {
  transform: none;
}

.nav-holder {
    background: none;
    padding: 30px;
    position: fixed;
    left: 0;
    right: 0;
    transition: ease all 0.25s;
    z-index: 99;
    box-shadow: none;
}

.nav-holder-onscroll {
    background-color: white;
    transition: ease all 0.25s;
    padding-top: 17px;
    padding-bottom: 17px;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 4px 4px 0 rgba(0,0,0,.2);
}

.nav-link {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 15px;
    color: white;
    opacity: 0.8;
    margin: 0;
    float: right;
    transition: none;
    padding: 15px;
}

.nav-link-onscroll {
    color: black;
    opacity: 1;
}

.nav-logo {
    background-image: url("../img/brand/logo_white.svg");
    background-size: cover;
    height: 44px;
    width: 100px;
    display: inline-block;
    margin-top: 3px;
    margin-left: 5px;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    float: left;
}

.nav-logo-onscroll {
    background-image: url("../img/brand/logo_black.svg");
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.front-holder {
    position: absolute;
   top: calc(50% - 100px);
   height: 150px;
   text-align: center;
    left: 0;
    right:0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.front-word {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 11vw;
    color: white;
    margin: 0;
}

.front-description {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 4.13vw;
    color: white;
    opacity: 0.5;
    margin: 0;
}

.text-container {
    display: inline-block;
    text-align: center;
    width: 80vw;
    max-width: 100em;

}

@media screen and (min-width: 727px) {
    h1 {
        font-size: 80px;
    }

    .front-word {
        font-size: 80px;
    }

    .front-description {
        font-size: 30px;
    }
}

.scroll-holder {
    position: absolute;
   bottom: 15px;
   text-align: center;
    left: 0;
    right:0;
    animation: bounce 1.3s infinite;
}

.scroll-image {
    margin-top: 10px;
    height: 19px;
    width: 30px;
    display: inline-block;
    background-image: url("../img/arrow-down.svg");
    background-size: cover;
}

.scroll-text {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 12px;
    color: white;
    opacity: 0.5;
    margin: 0;
}

.block {
    position: relative;
    background-color: white;
    text-align: center;
}

.image-block {
    line-height: 0;
}

.image-block img {
    width: 50%;
    height: 100%;
}

@media screen and (min-width: 727px) {
    .image-block img {
    width: 25%;
    }
}

.gradient-blue {
    background: linear-gradient(270deg, #155799, #159957);
    background-size: 400% 400%;

    -webkit-animation: AnimatedGradient 10s ease infinite;
    -moz-animation: AnimatedGradient 10s ease infinite;
    animation: AnimatedGradient 10s ease infinite;
}

@-webkit-keyframes AnimatedGradient {
    0%{background-position:0 50%}
    50%{background-position:100% 50%}
    100%{background-position:0 50%}
}
@-moz-keyframes AnimatedGradient {
    0%{background-position:0 50%}
    50%{background-position:100% 50%}
    100%{background-position:0 50%}
}
@keyframes AnimatedGradient {
    0%{background-position:0 50%}
    50%{background-position:100% 50%}
    100%{background-position:0 50%}
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}


.full {
    height: 100%;
    width: 100%;
}

.brand_holder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.brand_holder h1 {
    line-height: 60px;
    font-weight: 700;
    color: #eee;
    font-size: 24px;
    margin-left: 16px;
}

.vertical-line {
    display: block;
    width: 1px;
    height: 100%;
    background-color: #999;
}

.brand_holder .vertical-line {
    margin-left: 16px;
    height: 35px;
}

.brand {
    display: inline-block;
    height: 60px;
    width: 60px;
    background-image: url('../img/logo-180.png');
    background-size: cover;
}
