/* @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap'); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: 'Termina Test Regular';
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  color: var(--c1);
  padding: 0;
  margin: 0;
  line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
	font-family: 'Etna';
}

h1,h2 {
	
}

/* Colors Root */

:root {
  --c1: #010101; 	/* Black */
  --c2: #fff; 		/* White */
  --c3: #F5E9DA; 	/* Brown */
  --c4: #1B4435;   /* Background Color */
  --c5: #B68644;   /* Background Color */
}

/* Web Selection */

::selection {
  background: var(--c4);
  color: var(--c2);
}

/* Loader */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c4) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Spacing */

.spacing {
  padding: 100px 0px;
}

/* Wrapper */

.wrapper {
  overflow: hidden;
}

/* Main Btn */


.main-btn a {
    background-color: var(--c5);
    color: var(--c2);
    padding: 14px 30px;
    border-radius: 12px;
    transition: all .5s;
    text-transform: capitalize;
}

.main-btn a:hover {
    background: var(--c1);
    color: var(--c2);
}

/* Bg */

.bg-prop {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.bg-prop:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #1B4435;
    z-index: -1;
    opacity: 0.95;
}

/* Main Header */


.logo a {
    display: block !important;
    width: 200px;
}
.header {
    background-color: var(--c3);
    padding: 14px 0px;
}
.h-items {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}
.nav-bar nav ul {
    display: flex;
    gap: 20px;
}

/* Header Hover Before After Effect */


.nav-bar nav ul li a {
    color: var(--c4);
    font-weight: 500;
    transition: all 0.5s;
    position: relative;
    padding-left: 6px;
    text-transform: capitalize;
}
.nav-bar nav ul li a:hover {
   color: var(--c1);
}
.nav-bar nav ul li a:before {
   content: "";
   position: absolute;
   width: 2px;
   bottom: 15px;
   left: 0px;
   height: 12px;
   transform: scaleX(0);
   background: var(--c1);
   transition: all 0.5s ease;
}
.nav-bar nav ul li a:hover:before {
   transform: scaleX(1);
   bottom: 0;
}
.nav-bar nav ul li a:after {
   content: "";
   position: absolute;
   width: 16px;
   bottom: 0px;
   left: 15px;
   height: 2px;
   transform: scaleX(0);
   background: var(--c1);
   transition: all 0.5s ease;
}
.nav-bar nav ul li a:hover:after {
   transform: scaleX(1);
   left: 0;
}
.header-btn a:hover {
    background: var(--c2);
    color: var(--c1);
}

/* Banner */

section.main-home {
    position: relative;
}

.banner-image img {
    height: 100dvh;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.banner-content-main h3 {
    color: var(--c2);
    font-weight: 400;
    font-size: 34px;
}

.banner-content-main h1 {
    color: var(--c2);
    text-transform: uppercase;
    font-size: 50px;
    padding: 20px 0px 10px 0px;
    font-weight: 600;
}

.banner-content-main p {
    color: var(--c2);
    margin-bottom: 30px;
}

/* About Us */

section.about-us {
    background: var(--c3);
    padding: 100px 0px 200px 0px;
}

.main-title h4 {
    color: var(--c4);
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 26px;
}

.main-title h2 {
    color: var(--c4);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 40px;
}

.about-content p {
    color: #686868;
    margin-top: 20px;
}

.about-images {
    position: relative;
}

.about-image-one {
    overflow: hidden;
    border-top-right-radius: 40%;
    position: absolute;
    width: 80%;
}

.about-image-one img {
    height: 500px;
    object-fit: cover;
}

.about-image-two {
    position: absolute;
    overflow: hidden;
    border-top-left-radius: 80%;
    width: 45%;
    right: 0;
    top: 170px;
    border: 15px solid var(--c5);
}

.about-image-two img {
    height: 300px;
    object-fit: cover;
}

.about-content {
    padding-left: 30px;
    padding-top: 60px;
}

/* Services */

.service-title {
    text-align: center;
    margin-bottom: 40px;
}

.service-title h2 {
    color: var(--c2);
}

.service-content {
	padding: 30px;
	text-align: center;
}

.service-box {
    height: 500px;
    background: var(--c2);
}

.service-image img {
    height: 250px;
    object-fit: cover;
    transition: all .5s;
}

.service-image {
    overflow: hidden;
}
.service-box:hover .service-image img {
    transform: scale(1.1);
}
.service-content p {
    color: #686868;
    padding: 10px 0px;
}

.service-content a {
    color: var(--c5);
    font-weight: 600;
    transition: all .5s;
}

.service-content a i {
    margin-left: 6px;
    font-weight: 500;
    font-size: 15px;
}

.service-content a:hover {
    color: var(--c4);
}
.service-content h3 {
    color: var(--c1);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 26px;
}

/* Unique */

section.unique {
    background: var(--c3);
}

.unique-content p {
    color: #686868;
    margin-top: 20px;
}

.unique-btn {
    margin-top: 30px;
}

.unique-image {
    overflow: hidden;
    border-top-left-radius: 270px;
    box-shadow: -20px -20px 0px 0px var(--c5);
    margin-left: 50px;
}

.unique-image img {
    height: 500px;
    object-fit: cover;
}

/* Ebook */

.ebook-image-one {
    overflow: hidden;
    border-top-right-radius: 40%;
    position: absolute;
    width: 80%;
    box-shadow: 20px -20px 0px 0px var(--c5);
}

.ebook-images {
    position: relative;
}

.ebook-image-one img {
    height: 500px;
    object-fit: cover;
}

.ebook-image-two {
    position: absolute;
    overflow: hidden;
    border-top-left-radius: 80%;
    width: 45%;
    right: 0;
    top: 100px;
    border: 15px solid var(--c4);
}

.ebook-image-two img {
    height: 300px;
    object-fit: cover;
}

.ebook-content h2 , .ebook-content h4 , .ebook-content p {
    color: var(--c2);
}

.ebook-content p {
    margin-top: 20px;
}

.ebook-btn {
    margin-top: 30px;
}

/* Benefits */

.benefits-content h2, .benefits-content h4, .benefits-content ul {
    color: var(--c2);
}

.benefits-content ul {
    margin: 20px 0px;
    padding-left: 20px;
}

.benefits-content ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.benefits-content ul li:last-child {
}

.benefits-btn {
    margin-top: 30px;
}

.benefits-image {
    overflow: hidden;
    border-top-left-radius: 270px;
    box-shadow: -20px -20px 0px 0px var(--c5);
    margin-left: 50px;
}

.benefits-image img {
    height: 500px;
    object-fit: cover;
}

/* Journey */

section.journey {
    background-color: var(--c3);
    text-align: center;
}

.journey-title h2 {
    color: var(--c1);
}

.journey-title p {
    padding: 20px 0px;
    color: #686868;
    width: 80%;
    margin: 0 auto;
}

.journey-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.journey-two a {
    background: var(--c4);
}

/* Client */

section.client {
    /* background: var(--c3); */
}
.client-content {
    margin-bottom: 40px;
}
.client-title h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--c1);
}

.client-box {
    background: var(--c3);
    padding: 40px;
    margin: 0px 10px;
}

.client-content ul {
    display: flex;
    color: #F2C230;
    gap: 4px;
}

.client-content p {
    color: #4D4D4D;
    padding: 0px 20px 40px 0px;
    height: 420px;
    overflow-y: scroll;
}
.client-content p::-webkit-scrollbar {
  width: 3px;
}
.client-content p::-webkit-scrollbar-track {
  background: var(--c2);
}
.client-content p::-webkit-scrollbar-thumb {
  background: var(--c4);
}

.client-desc {
    border-top: 1px solid var(--c1);
    opacity: 0.95;
}
.custom-arrow {
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c4);
    font-size: 60px;
    width: 40px;
    cursor: pointer;
}

.slick-prev {
    left: -80px;
}

.slick-next {
    right: -60px;
}
.client-icon img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: top;
}

.client-desc {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 30px;
}

.client-about h5 {
    color: var(--c4);
}

/* Contact */

.contact-image {
    width: 70%;
    margin: 0 auto;
}
.contact-title h2 {
    color: var(--c2);
    margin-bottom: 20px;
}

.input-field input, .input-field textarea , .input-field select {
    width: 100%;
    border: 1px solid var(--c2);
    background: transparent;
    outline: 0;
    padding: 10px 20px;
    border-radius: 6px;
    text-transform: capitalize;
    color: var(--c3);
}

.input-field {
    margin-bottom: 20px;
}

.submit-btn input {
    background: var(--c5);
    color: var(--c2);
    border: 0;
    padding: 12px 30px;
    border-radius: 12px;
    width: 100%;
}

/* Footer */

.main-footer {
    background: var(--c3);
    padding: 60px 0px;
}

.f-logo a {
    display: block !important;
    width: 30%;
    margin: 0 auto;
}

.f-links ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 0px;
}

.f-links ul li a {
    color: var(--c4);
    font-weight: 500;
    transition: all 0.5s;
    position: relative;
    padding-left: 6px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.f-links {
    border-bottom: 1px solid #686868;
}
.f-socials {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}
.f-links ul li a:hover {
    border-color: var(--c1);
    color: var(--c1);
}
.f-socials a {
    color: var(--c4);
    transition: all .5s;
    /* border-right: 1px solid var(--c4); */
    padding: 0px 10px 0px 0px;
}

.f-socials a:hover {
    color: var(--c1);
}
.f-copyright {
    background-color: var(--c4);
    text-align: center;
    padding: 10px 0px;
}

.copyright p {
    color: var(--c2);
}


/*Meet the Founder*/

.founder-intro {
}

.founder-img img {
    object-fit: cover;
    aspect-ratio: 1;
}

/*minor changes*/

.modal-content {
    background-color: var(--c4) !important; 
}

.modal-header h1 {
    font-size: 18px !important;
    text-transform: capitalize;
}
section.benefits.bg-prop:before {
    background: var(--c3);
}

.benefits-content h4 , .benefits-content h2 , .benefits-content ul {color: var(--c1);}

/*inner_header*/

.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 57%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
.inner-header {
    height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background: var(--c4);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-id-8 .founder-intro {
    padding-top: 50px;
}

.page-id-38 .founder-intro {
	padding-top: 100px;
}
.page-id-38  .client {
	padding-bottom: 100px;
}
.meet-content span {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--c4);
}

.meet-content span i:first-of-type {
    margin-right: 10px;
}

.meet-content span i:last-of-type {
    margin-left: 10px;
}
.meet-content {
    padding-left: 30px;
}

.meet-content p {margin: 30px 0px;}

.single-inner-img {
}

.single-inner-img img {
  object-fit: cover;
  transition: all 0.5s;
}
.single-content-main h2 {
}

.single-inner-img img:hover {
    transform: scale(1.1);
}
.single-cont-inner {margin-left: 40px;}
.service-content.main-btn a {
    color: #fff;
}


.page-template-contact-us .inner-header {
	display: none;
}


/* Service Single Page */

.single-content-img img {
  height: 500px;
  object-fit: cover;
}
.single-content-img {
  margin-bottom: 30px;
}

.single-content-main h2 {
  margin-bottom: 15px;
}

.single-content-main p {
  margin-bottom: 15px;
}

.single-content-img img {
  transition: all 0.5s;
}

.single-inner-img:hover img,
.single-content-img:hover img {
  transform: scale(1.1);
}

.single-content-img {
  overflow: hidden;
  border-radius: 8px;
}

.side-links-main h2 {
  margin-bottom: 20px;
}

.single-inner-img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 10px 10px 10px -4px var(--c4);
  padding: 10px;
}
.content-service h1 {
    margin-bottom: 15px;
    color: var(--c4);
    font-size: 44px;
    font-weight: 700;
}
.single-inner-img img {
  object-fit: cover;
  transition: all 0.5s;
}

.packages-cards {
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    box-shadow: -10px 15px var(--c1);
    background: var(
    --c4);
    color: var(--c2);
}
.packages-card-content h3 {
    font-size: 34px;
    padding-bottom: 16px;
}
.packages-card-content ul {padding-left: 20px;padding-bottom: 20px;}
.packages-card-content ul li {
    list-style-type: disc;
    padding: 7px 0px;
    font-size: 17px;
}
.single-inner-list strong {
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
}
.page-template-childbirth-education .single-cont-inner {
    margin-left: 0px;
}

.input-field input::placeholder, .input-field textarea::placeholder {
    color: var(--c3);
	
}

/* Hypnobirthin Class */

/* .page-template-join-hypnobirthin-class .inner-header:first-of-type {
    display: none;
} */
.inner-header-title p {
    color: var(--c2);
    font-size: 28px;
    font-family: 'Libre Baskerville';
    line-height: 60px;
}
.hypnobirthing-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0px 100px;
}

.end-note {
    text-align: center;
    margin-top: 40px;
    color: var(--c2);
}

.end-note strong {
    font-size: 20px;
}
.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title p {
    font-size: 20px;
    color: var(--c2);
}

.page-template-submit-your-application .contact-form {
    margin: 0px 120px;
}
.end-note p {
    padding: 10px 0px 40px 0px;
}
.page-template-join-hypnobirthin-class .single-inner-img img {
    height: 340px;
}

.page-template-submit-your-application .wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
    color: var(--c2);
    font-size: 20px;
    text-align: center;
    margin: 0;
}
.after-submit-btn , .after-submit-btn-final {
    text-align: center;
    margin-top: 40px;
}
.after-submit-btn-final a {
    background: var(--c3) !important;
    margin-top: 60px;
}

.after-submit-btn a , .after-submit-btn-final a {
    background: var(--c2);
    color: var(--c4);
    font-size: 20px;
    padding: 30px 40px;
    font-weight: 600;
}
section.hypnobirthing-class {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

section.hypnobirthing-class:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000ba;
    z-index: -1;
}

.hypnobirthing-title h2 , .hypnobirthing-title p {
    color: var(--c2);
}

.hypnobirthing-class .single-inner-list h2 , .hypnobirthing-class .single-inner-list p {
    color: var(--c2);
}

.hypnobirthing-class .single-inner-list {
    background: var(--c4);
    height: 300px;
    padding: 30px;
    border-radius: 10px;
    transition: all .5s;
}

.hypnobirthing-class .single-inner-list:hover {
    background: var(--c5);
    transform: scale(105%);
}
/* Responsive Menu */

.responsive-btn a {
  display: block !important;
}
.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  z-index: 9999;
  transition: all 0.5s;
}
.responsive-links ul li ul {
  display: none;
}
.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
}
.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}
.responsive-menu-main {
  height: 100%;
  padding: 30px;
  position: relative;
  background: var(--c2);
}
.responsive-logo {
  width: 203px;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 13px;
}
.responsive-links ul li a {
  color: var(--c1);
  padding: 17px 0px;
  display: block !important;
  font-weight: 500;
}
.responsive-links ul li {
  border-bottom: 1px solid #8080803d;
  position: relative;
}
.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c5);
  padding: 6px 0px;
}
.responsive-icon a i {
  display: block;
}
.responsive-icon {
  position: absolute;
  top: 50px;
  right: 30px;
}
.responsive-icon a {
  color: var(--c4);
  font-size: 30px;
}
.responsive-links ul li:last-child {
  border: 0;
}
body.scroll-stop {
  overflow: hidden;
}
.resp-social ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.resp-social ul li a i {
  display: block;
}
.resp-social ul li a {
  padding: 10px;
  color: var(--c2);
  font-size: 24px;
}
.responsive-links ul li i {
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--c3);
}
.responsive-links ul li ul {
  padding-left: 30px;
  border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
  content: "\f068";
}
.responsive-btn a {
    color: var(--c4);
    font-size: 35px;
    text-align: end;
}

/* ___ */

.end-note p {
    color: var(--c2);
}
.content-service {
    padding-bottom: 50px;
}
