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

h3 {font-style: italic;}
body {
    background: url(../images/bg.jpg) repeat;

}


.nav {
  position: relative;
  width: auto;
  display: inline-block;
  border: none;
}

.btn-nav {
  position: fixed;
  top: 30px;
  right: 55px;
  background: transparent;
  border: none;
  padding: 10px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  cursor: pointer;
  z-index: 99999;
}

.btn-nav:focus {
  outline: 0;
}

.icon-bar {
  display: block;
  margin: 6px 0;
  width: 40px;
  height: 2px;
  background-color: #58585b;
}

.btn-nav:hover .icon-bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-color: #252525;
}

.nav-content {
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.8);
  display: block;
  height: 100%;
  z-index: 9;
}

.nav-list {
  list-style: none;
  padding: 0;
  position: relative;
  top: 23%;
}

.item-anchor:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  padding: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.item-anchor:hover,
.item-anchor:focus {
  color: #ffffff;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after{
  width: 100%;
  background: #ffffff;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav-item {
  margin: 30px auto;
  text-align: center;
}

.animated {
  /* display: block; */
  /* margin: 0 auto; */
}

.animated:hover .icon-bar,
.animated:focus .icon-bar{
  background-color: #ffffff;
}

.animated:focus {
  cursor: pointer;
  z-index: 9999;
}

.middle {
  margin: 0 auto;
  width: 25px;
  margin-left: 0px;
}

.icon-bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
  z-index: 999999;
}

.animated .icon-bar {
  z-index: 999999;
  background-color: #ffffff;
}

.animated .top {
  -webkit-transform: translateY(10px) rotateZ(45deg);
  -moz-transform: translateY(10px) rotateZ(45deg);
  -ms-transform: translateY(10px) rotateZ(45deg);
  -o-transform: translateY(10px) rotateZ(45deg);
  transform: translateY(10px) rotateZ(45deg);
}

.animated .bottom {
  -webkit-transform: translateY(-11px) rotateZ(-45deg);
  -moz-transform: translateY(-11px) rotateZ(-45deg);
  -ms-transform: translateY(-11px) rotateZ(-45deg);
  -o-transform: translateY(-11px) rotateZ(-45deg);
  transform: translateY(-7px) rotateZ(-45deg);
}

.animated .middle {
  width: 0;
}

@keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-webkit-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-moz-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-o-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.showNav {
  -webkit-animation: showNav 1s ease forwards;
  -moz-animation: showNav 1s ease forwards;
  -o-animation: showNav 1s ease forwards;
  animation: showNav 1s ease forwards;
}

@keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-webkit-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-moz-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-o-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

.hideNav {
  -webkit-animation: hideNav 1s ease forwards;
  -moz-animation: hideNav 1s ease forwards;
  -o-animation: hideNav 1s ease forwards;
  animation: hideNav 1s ease forwards;
}

.hidden {
  display: none;
}


.logo {
    text-align: center;
    margin-top: 10px;
}

.banner-img {
    text-align: center;
    margin-top: 70px;
    /* margin: 0 auto; */
}

.banner-heading h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #404041;
    text-align: center;
    margin-bottom: 25px;
}

.banner-heading p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: center;
    line-height: 26px;
}

.red-border {
    border: 1px solid #ED1C24;
    width: 300px;
}

.about-vn p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: left;
    line-height: 26px;
    padding-top: 80px;
}

.about-bg {
    background: url(../images/about-bg.png) repeat;
}

.headers h3 {
    font-size: 40px;
    color: #58585B;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    padding: 10px 0px;
}

.underline {
    border-bottom: 1px solid #404041;
    width: 25%;
    margin: 0 auto;
}

.pushitdown {
    margin-top: 50px;
}



.body-copy p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: center;
    line-height: 26px;
}

.link {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: 25px;
    border-bottom: 1px solid #000;
    color: #58585B;
}

.books {
    background: url(../images/books-bg.jpg) no-repeat;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 60px;
    background-size: contain;
}

.books h3 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    text-align: right;
}

.books p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: right;
    line-height: 26px;
}

.shrink h3 {
    font-size: 40px;
    color: #58585B;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;

}

.shrink p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: left;
    line-height: 26px;
}

.consult h3 {
    font-size: 40px;
    color: #58585B;
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
}

.consult p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: left;
    line-height: 26px;
}


.inner-bg {
    background: url(../images/inside-bg.png);
    background-size: contain;
}

.inner-heading h1 {
    text-align: center;
    padding: 60px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-style: italic;
}

.inner-bg {
    margin-top: 40px;
}

.consult {
    margin-top: 30px;
}

.about-copy p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: center;
    line-height: 35px;
}

.footer p {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #58585B;
    font-size: 14px;
}

.education h3 {
    font-size: 40px;
    color: #58585B;
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
}

.education p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: right;
    line-height: 35px;
}


.career h3 {
    font-size: 40px;
    color: #58585B;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;

}

.career p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: left;
    line-height: 35px;
}

.education {
    text-align: right;
}

.books-inner h3 {
    font-size: 40px;
    color: #58585B;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
}

.books-inner p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: left;
    line-height: 35px;
}

.border {

    width: 20%;
    border: 0.5px solid #58585B;
    display: -webkit-inline-box;
    margin-top: 0px;
}


.border-2 {
    width: 50%;
    border: 0.5px solid #58585B;
    display: -webkit-inline-box;
    margin-top: 0px;
}



.book-heading h3 {
    font-size: 25px;
    color: #58585B;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 0px;
}

.book-heading p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #58585B;
    text-align: left;
    line-height: 26px;
    margin-bottom: 0px;
}

.buynow p {
    font-size: 25px;
    color: #58585B;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
}

.other-books-text {
    text-align: center;
}

.other-books-text p {
    font-size: 21px;
    color: #58585B;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    line-height: 24px;
    padding-top: 20px;
}


.other-books h3 {
    font-size: 35px;
    color: #58585B;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 0px;
    margin-bottom: 50px;
}



.couple-therapy h3 {
    font-size: 40px;
    color: #58585B;
    text-align: l;
    font-family: 'Cormorant Garamond', serif;
}

.couple-therapy p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #58585B;
    text-align: left;
    line-height: 35px;
}


.therapy-right h3 {
    font-size: 40px;
    color: #58585B;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;

}

.therapy-right p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    line-height: 35px;
}

.therapy-right {
    background: url(../images/consult-bg.jpg) no-repeat;
    background-size: cover;
    padding: 40px;
}

.squarebox {
    background: #808284;
    width: 100%;
    height: auto;
    padding-top: 80px;
    padding-left: 0px;
}

.squarebox p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #fff;
    text-align: right;
    padding-right: 15px;
}

.pagination {
    text-align: center;
    font-size: 16px;
}


.left-arrow {float:left;font-family: 'Cormorant Garamond', serif;font-size: 23px;}
.right-arrow {float:right;font-family: 'Cormorant Garamond', serif;font-size: 23px;}

.booky {margin-top: 60px;}

.pagination span,a {
    padding: 4px;
}
.shrinky_pad {
    padding: 15px;
	min-height:250px;
}