body {
    margin: 0;
    padding: 0;
    background-color:#fffceb;
    overflow-x:hidden;
    font-family: sans-serif;
    color:#534966;
}

h1,h2,h3 {
    color:#534966;
}

.responsive_home {
    width:100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:20px;
    padding-top:90px;
}

.homenav {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 365px; 
    height: 60px; 
    margin: 0 auto;
    margin-bottom:90px;
    padding-bottom:90px;
}

.homenav a {
    float: left;
    color:#fffceb;
    text-align: center;
    padding: 20px 20px;
    text-decoration: none;
    font-size: 17px;
}

.homenav a:hover {
    color: #E0C737;
    transition: color 0.3s ease, color 0.3s ease;
}

#navbar {
  background: #ADA8B6;
  color: rgb(13, 26, 38);
  position: fixed;
  top: 0;
  height: 60px;
  line-height: 60px;
  width: 100vw;
  z-index: 10;
}

.nav-wrapper {
  margin: auto;
  text-align: center;
  width: 70%;
} @media(max-width: 768px) {
    .nav-wrapper {
      width: 90%;
    }
  } @media(max-width: 638px) {
      .nav-wrapper {
        width: 100%;
      }
    } 


.logo {
  float: left;
  margin-left: 28px;
  font-size: 1.5em;
  height: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
} @media(max-width: 768px) {
    .logo {
/*       margin-left: 5px; */
    }
  }

#navbar ul {
  display: inline-block;
  float: right;
  list-style: none;
  /* margin-right: 14px; */
  margin-top: -2px;
  text-align: right;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
} @media(max-width: 640px) {
    #navbar ul {
      display: none;
    }
  } @media(orientation: landscape) {
      #navbar ul {
        display: inline-block;
      }
    }

#navbar li {
  display: inline-block;
}

#navbar li a {
  color: rgb(13, 26, 38);
  display: block;
  font-size: 0.7em;
  height: 50px;
  letter-spacing: 1px;
  margin: 0 20px;
  padding: 0 4px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

#navbar li a:hover {
  color: #270531;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

#navbar li a:before, #navbar li a:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -1px;
  background: rgb(13, 26, 38);
}

#navbar li a:before {
  left: 0;
  transition: 0.5s;
}

#navbar li a:after {
  background: rgb(13, 26, 38);
  right: 0;
}

#navbar li a:hover:before {
  background: rgb(13, 26, 38);
  width: 100%;
  transition: width 0.5s cubic-bezier((0.22, 0.61, 0.36, 1));
}

#navbar li a:hover:after {
  background: transparent;
  width: 100%;
  /* transition: 0s; */
}

@media(max-width: 640px) {
  .menuIcon {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 15px;
    top: 20px;
    height: 23px;
    width: 27px;
    z-index: 12;
  }

  /* Icon Bars */
  .icon-bars {
    background: rgb(13, 26, 38);
    position: absolute;
    left: 1px;
    top: 45%;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  } 

  .icon-bars::before {
    background: rgb(13, 26, 38);
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    height: 2px;
    width: 20px;
/*     -webkit-transition: top 0.2s ease 0.3s;
    transition: top 0.2s ease 0.3s; */
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  .icon-bars::after {
    margin-top: 0px;
    background: rgb(13, 26, 38);
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

 

  .menuIcon.toggle .icon-bars {
    top: 5px;
    transform: translate3d(0, 5px, 0) rotate(135deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars::before {
    top: 0;
    transition-delay: 0.1s;
    opacity: 0;
  }

  .menuIcon.toggle .icon-bars::after {
    top: 10px;
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars.overlay {
    width: 20px;
    opacity: 0;
    -webkit-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
  }
}


/*======================================================
                   Responsive Mobile Menu 
  ======================================================*/
.overlay-menu {
  background: #ECECEC;
  color: #534966;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  padding-right: 15px;
  transform: translateX(-100%);
  width: 100vw;
  height: 100vh;
  -webkit-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}

.overlay-menu ul, .overlay-menu li {
  display: block;
  position: relative;
}

.overlay-menu li a {
  display: block;
  font-size: 1.8em;
  letter-spacing: 4px;
/*   opacity: 0; */
  padding: 10px 0;
  text-align: right;
  text-decoration: none;
  color: #534966;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.overlay-menu li a:hover,
.overlay-menu li a:active {
  color: rgb(28, 121, 184);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}


.welcome p,h1 {
    margin-top: 90px;
    margin-bottom:90px;
    margin-left: 12vw;
    margin-right: 12vw;
    text-align:center;
}

.welcome h1 {
    font-size:25px;
    color:#270531;
}

.welcome p {
    color: #474544;
    font-size:17px;
}

.new1 {
    border: 1px solid #E0C737;
    margin-bottom:80px;
    margin-left:30vw;
    margin-right:30vw;
    
}

.testimonies-container {
    background: #ADA8B6;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align:center;
}

/* (A) FORCE ALL SLIDES INTO SINGLE ROW */
.hmove { display: flex; }
.hslide { width: 100%; flex-shrink: 0; }
.hwrap { overflow: hidden; }

/* (B) SHIFT SLIDES WITH CSS ANIMATION */
/* (B1) SLIDES POSITION */
.hmove { position: relative; top: 0; right: 0; }
@keyframes slideh {
  0% { right: 0; } 24.9% { right: 0; }
  25% { right: 100%; } 49.9% { right: 100%; }
  50% { right: 200%; } 74.9% { right: 200%; }
  75% { right: 300%; } 99.9% { right: 300%; }
  100% { right: 0; }
}
 
/* (B2) MOVE SLIDES */
.hmove { animation: slideh 40s infinite; }
.hmove:hover { animation-play-state: paused; }

.testimonies p,q {
    color:#ECECEC;
    font-style: italic;
}

.new2 {
    border: 1px solid #E0C737;
    margin-top:60px;
    margin-bottom:60px;
    margin-left:10vw;
    margin-right:10vw;
}

body > div:nth-child(4) {
  margin-left: 40px;
  margin-right: 40px;
}

.page-container {
    margin-top: 160px;
}

.student1 {
    vertical-align: middle;
    max-width: 300px;
    width: 100%;
    float: left;
    margin-left:7px;
    margin-right:7px;
    margin-bottom:20px;
}

.student2 {
    vertical-align: middle;
    max-width: 300px;
    width: 100%;
    float: right;
    margin-left:7px;
    margin-right:7px;
    margin-bottom:20px;
}

.student3 {
    vertical-align: middle;
    max-width: 300px;
    width: 100%;
    float: left;
    margin-left:7px;
    margin-right:7px;
    margin-bottom:20px;
}

.student4 {
    vertical-align: middle;
    max-width: 300px;
    width: 100%;
    float: right;
    margin-left:7px;
    margin-right:7px;
    margin-bottom:20px;
}

.lessons-container {
    display: flex;
    flex-direction: row;
    width:90%;
    margin-top: 160px;
}

.lessons-container h2,h3 {
    color:#534966;
    text-align:center;
}

.lessons-container p {
    text-align:left;
}

.pricing {
    color: #270531;
    text-align:center;
}

.about-container {
    margin-top:160px;
    margin-left:40px;
    margin-right:40px;
}

.portrait {
    max-width: 200px;
    width: 100%;
    float: left;
    margin-left:7px;
    margin-right:7px;
    margin-bottom:10px;
}

.sharon p {
    color: #534966;
    text-align:left;
}

.contact-container {
    margin-top: 160px;
}

.contact p,h2 {
    text-align:center;
    color: #534966;
}

.new4 {
    border: 1px solid #E0C737;
    margin-top:60px;
    margin-bottom:80px;
    margin-left:30vw;
    margin-right:30vw;
    
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto; 
    margin-top: 45px;
}

label, input, textarea {
    background: none;
    border: none;
	border-bottom: solid 2px #534966;
	color: #534966;
	font-size: 1.000em;
    font-weight: 400;
    letter-spacing: 1px;
	margin: 0em 0 1.875em 0;
	padding: 0 0 0.875em 0;
    text-transform: uppercase; 
}

textarea {
    resize: vertical; 
}

button{
    background: none;
    border: solid 2px #534966;
    color: #534966;
    cursor: pointer;
    display: inline-block;
    font-size: 0.875em;
    font-weight: bold;
    outline: none;
    padding: 20px 35px;
    text-transform: uppercase;    
}

button:hover {
    background: #534966;
    color: #ECECEC;
}

.footer {
    margin-top:100px;
}

.footer p {
    font-size:8px;
    color: #534966;
    text-align: center;
}