/*------------------------------------------------------------------ 
Project: The Hormone Program | Sage Naturopathic Clinic
Version: 1.0 
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*[ General ] */
.herobanner .heading img
html {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #080808;
  background-color: #fff;
  min-height: 100%;
  overflow-x: hidden;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat';
  margin-top: 0;
  font-weight: 500;
}

h1,
.h1 {
  font-size: 3.5rem;
}

h2,
.h2 {
  font-size: 3rem;
}

h3,
.h3 {
  font-size: 2.5rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

h5,
.h5 {
  font-size: 1.225rem;
}

h6,
.h6 {
  font-size: 0.75rem;
}

a {
  color: #009FD1;
}

a:hover {
  color: #8DC63F;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

hr {
  border-top: 1px solid #dee2e6;
}

dl,
ol,
ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
}

input,
button,
a {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

input,
input:focus,
button,
button:focus {
  outline: none;
}

input[type="file"] {
  height: auto;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.form-control {
  resize: vertical;
}

label.col-form-label {
  font-weight: 600;
  line-height: 1.2;
}

section {
  padding: 4rem 0;
}

body::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #F5F5F5;
}

body::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #acacac;
}

img {
  height: auto;
  max-width: 100%;
}

.main-wrapper {
  overflow: hidden;
}


/*[ Brand Color ]*/
.text-light-gold, .text-light-gold a {
  color: #e3dfbe;
}
.text-light-gold a {
  text-decoration: none;
  border-bottom: 2px solid #e3dfbe;
}
.text-light-gold a:hover {
  color: #fff;
  border-color: #fff;
}

.bg-light-gold{
  background-color: #e3debe !important;
}
.bg-light {
  background-color: #F7F7F7 !important;
}
.text-green {
  color: #1C562A;
}


/*[ Button Classes ]*/

.btn {
  border-color: transparent;
  outline: none;
  border-radius: 0;
  padding: .8rem 1.5rem;
  font-size: .75rem;
  position: relative;
  color: #fff;
  background-color: #404a58;
  font-weight: bold;
  text-transform: uppercase;
}

.btn.btn-md {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.675rem 1.5rem;
}

.btn.btn-lg {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1rem 2rem;
}
.btn-green {
  background-color: #1C562A;
  color: #fff;
  border: 1px solid #1C562A;
}
.btn-white {
  background-color: #fff;
  color:#080808;
  border: 1px solid #fff;
}
.btn-green:hover,
.btn-white:hover {
  background-color: #9F7A43;
  color: #fff;
  border-color: #9F7A43;
}

/*[ Helper Classes ]*/

.ltr-spacing-1 {
  letter-spacing: 1px;
}
.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.form-control {
  border-color: #e3e3e3;
  box-shadow: none;
  font-size: 0.875rem;
  height: 40px;
  border-radius: 2px;
}

.form-control-sm {
  height: 32px;
}

.iconify {
  font-size: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title h2 {
  line-height: 1.1;
  position: relative;
  letter-spacing: 2px;
}

.section-title .smallheading {
  position: relative;
  font-weight: 600;
}

.section-title .smallheading span {
  padding-right: 1.5rem;
}

.section-title .smallheading:after {
  content: '';
  width: 100%;
  max-width: 150px;
  height: 1px;
  background-color: #ed1c24;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}

.entry-content ul,
.entry-content ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 40px;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content ul li,
.entry-content ol li {
  margin-bottom: .8rem;
}

.entry-content ul.inline-list li,
.entry-content ol.inline-list li {
  float: left;
  margin-right: 3rem;
}

.entry-content ul.lg-text li,
.entry-content ol.lg-text li {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444444;
}
.overlay {
  position: relative;
}
.overlay:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.overlay.green-overlay:before {
  background-color: rgba(28, 86, 42, 0.8);
}
.bannerbg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
/*[ Header ]*/

.header { 
  transition: all 0.5s;
  /*background-color: transparent;*/
  background-color: #fff;
  position: relative;
  min-height: 75px;
  position: fixed;
  z-index: 999;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}

.header.sticky-header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  /*top:-75px;*/
  left: 0;
  right: 0;
  transition:0.4s top cubic-bezier(.3, .73, .3, .74);
  min-height: 75px;
  box-shadow: 0 5px 30px rgb(0 22 84 / 10%);
  -webkit-box-shadow: 0 5px 30px rgb(0 22 84 / 10%);
  visibility: visible;
  opacity: 1;
}

body.down .header.sticky-header{
    top:0;
}

body.down {
  padding-top: 0;
}

#header .logo img {
  padding: 0;
  margin: 5px 0;
  height: 60px;
  transition: all 0.5s;
}

#header.sticky-header .logo img {
  max-height: 60px;
}

/*#header .bookbtn {*/
/*  display: none;*/
/*}*/

#header.sticky-header .bookbtn {
  display: block;
}


/*Hero Banner*/
.herobanner {
  width: 100%;
  /*height: 100vh;
  min-height: 768px;*/
  height: 700px;
  background-image: url(../images/herobanner-bg.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
.herobanner .heading img{
  width: 100%;
  /*max-width: 900px;*/
} 
.hero-text {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: start;  
}
.hero-text .tagline {
  background-image: url(../images/herobanner-tagline-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  padding: 5rem 4rem;
  max-width: 450px;
  font-size: 1.2rem;
}

/*Content*/
.intro-text {
  background-image: url(../images/introtext-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.intro-text p {
  font-size: 1.5rem;
}

ul.points {
  border-left: 2px solid #e3dfbe;
  padding-left: 3rem;
}
ul.points li {
  margin: 1.2rem 0;
  position: relative;  
}
ul.points.checker li {
  padding-left: 3.5rem;
}
ul.points.checker li:before {
  content: url('../images/check-square-solid.svg');  
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
}

.howitworks-blocks .single-block {
  padding: 2rem 0;
}
.howitworks-blocks .single-block .block {
  text-align: right;
  
}
.block.added-top {
    padding-left: 80px;
}
.block.added-right{
  padding-right:80px;}
.howitworks-blocks .single-block:nth-child(even) .block {
  text-align: left;
}
.howitworks-blocks .single-block:nth-child(even) .block:first-child {
  order: 2;  
}
.howitworks-blocks .single-block .block .img {
  position: relative;
  padding: 2.5rem 0 0 2.5rem;
  text-align: left;
}
.howitworks-blocks .single-block:nth-child(even) .block .img {
  padding: 2.5rem 2.5rem 0 0;
  text-align: right;
}

.howitworks-blocks .single-block .block .img img {
  border-radius: 10px;
  max-width: 350px;
}
.howitworks-blocks .single-block .block .img:before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid #e3dfbe;
  border-radius: 5px;
  left: 0;
  top: 0;
  z-index: -1;
}
.howitworks-blocks .single-block:nth-child(even) .block .img:before {
  right: 0;
  left: auto;
}
.components-blocks .single-block {
  text-align: center;
  border: 2px solid #1C562A;  
  padding: 1rem 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.components-blocks .single-block h4 {
  color: #1C562A;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  text-transform:  uppercase;
  margin-bottom: 0;
}
.components-img{
  max-width:  250px;
}

/*Social Icons*/

.social-icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 1.2rem;
  row-gap: 0;
}

.social-icons a .iconify {
  color: #080808;
  font-size: 1.5rem;
}

.social-icons a:hover {
  opacity: 0.8;
  border-bottom: 0;
}


/*Footer*/
.footer {
  padding: 3rem 0; 
}
.footerlinks li {
  display: inline-block;
  margin: .5rem;
}
.copyright {
  text-align: center;
  padding: 1.5rem 0 .5rem;
}

.copyright p {
  margin-bottom: 0;
  font-size: 1rem;
}
.copyright p a{
  color:  #080808;
  border-bottom: 2px solid #000;
}
.copyright p a:hover{
    color:#9F7A43;
    border-color: #9F7A43;
}