@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: "Bodoni";
    src: url(../fonts/bodoni-72-bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Bodoni book";
    src: url(../fonts/bodoni-72-book.ttf);
    font-weight: 900;
}

@font-face {
    font-family: "Bodoni";
    src: url(../fonts/bodoni-72-book-italic.ttf);
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "Helvetica";
    src: url(../fonts/Helvetica.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url(../fonts/HelveticaNeue.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url(../fonts/Helvetica\ Neue\ Condensed\ Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Motterdam";
    src: url(../fonts/motterdam.ttf);
}

@font-face {
    font-family: "Original Handwriting";
    src: url(../fonts/Original\ Handwriting.ttf);
}

@font-face {
    font-family: "Proxima Nova";
    src: url(../fonts/Proxima\ Nova\ Medium.woff2.otf);
    font-weight: 400;
}

@font-face {
    font-family: "Proxima Nova";
    src: url(../fonts/Proxima\ Nova\ Bold.otf);
    font-weight: 700;
}

.font-bodoni {
    font-family: "Bodoni";
    font-weight: 700;
}

.font-helvetica-neue {
    font-family: "Helvetica Neue";
}

.font-helvetica {
    font-family: "Helvetica";
}

.font-motterdam {
    font-family: "Motterdam";
}

.font-signature {
    font-family: "Original Handwriting";
}

.font-proxima {
    font-family: "Proxima Nova";
}

.font-raleway {
    font-family: "Raleway", sans-serif;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

 :root {
    --primary: #3C154C;
    --secondary: #C85AEA;
    --dark-secondry: #C056E2;
    --white: #fff;
    --dark: #050007;
    --black: #000;
    --gray: #573B35;
    --gray-light: #636260;
    --lightGrid: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(100, 45, 117, 0.14) 150%);
    --transition: 0.3s all ease;
}

.clr-primary {
    color: var(--primary);
}

.clr-secondary-dark {
    color: var(--dark-secondry);
}

.clr-secondary {
    color: var(--secondary);
}

span.clr-secondary-dark {
    letter-spacing: 1.5px;
}

.clr-gray {
    color: var(--gray);
}

.clr-gray-light {
    color: var(--gray-light);
}

.clr-dark {
    color: var(--dark);
}

.clr-white {
    color: var(--white);
}

.background-primary {
    background-color: var(--primary);
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
div,
a {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 73px;
    font-family: "Bodoni";
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 63px;
    font-family: "Bodoni";
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-size: 43px;
    font-family: "Bodoni";
    font-weight: 700;
}

h4 {
    font-size: 30px;
    font-family: "Bodoni";
}

h5 {
    font-size: 25px;
    font-family: "Bodoni";
}

* {
    box-sizing: border-box;
}

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

header .nav-item.menu-item-has-children {
    position: relative;
}

@media (min-width: 992px) {
    header .sub-menu {
        position: absolute;
        z-index: 10;
        transition: 0.5s all ease;
        opacity: 0;
        background-color: var(--primary);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        width: auto;
        top: 18px;
        transform: translate(-9px, 10px);
        border-radius: 10px;
        font-size: 16px;
        padding: 15px 15px;
        min-width: 236px;
        display: none;
        left: -4px;
        list-style-type: none;
    }
    header .nav-item:hover>.sub-menu {
        opacity: 1;
        display: block;
    }
}

header .sub-menu li {
    margin: 0;
}

header .sub-menu a {
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    text-transform: unset;
}

header {
    background-color: var(--primary);
    padding: 30px 30px 17px 92px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 18px;
    margin-left: 10px;
}

.navbar-nav .nav-item:hover>a,
.navbar-nav .current-menu-item>a {
    color: var(--secondary);
    font-weight: 500;
}

li.header-btn {
    margin-left: 45px;
}

.btn-site,
.header-btn a {
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 170px;
    font-size: 20px;
    font-family: "Bodoni book";
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: 2px solid var(--secondary);
    color: var(--white);
    overflow: hidden;
    transition: 0.3s all ease;
    padding: 9px 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 150ms ease-in-out;
}

.header-btn a {
    font-family: "Helvetica Neue";
    font-weight: 400;
    padding: 9px 30px !important;
    border-radius: 25px;
    border-width: 1px !important;
}

.btn-site:hover,
.header-btn a:hover {
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    box-shadow: 0 0 8px 0px var(--primary);
    background-color: var(--white);
}

.btn-site i {
    transition: all 0.3s linear;
    color: var(--secondary);
    max-width: 25px;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes btn {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0px);
    }
}

.btn-site:hover i {
    color: var(--primary) !important;
    animation: btn 0.6s ease-in-out infinite;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: 0.3s all ease;
}


/* header  */

header .social-icons a:hover {
    color: var(--primary);
    border-color: var(--secondary);
    background-color: var(--white);
    transition: 0.3s all ease;
}

header .social-icons {
    margin-bottom: 25px;
    margin-right: 10px;
}

header .social-icons a {
    color: var(--white);
    border: 1px solid var(--white);
}

.full-height {
    height: 100%;
    object-fit: cover;
}

.social-icons a {
    margin-right: 12px;
    text-decoration: none;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* banner  */

.hero_section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    padding: 210px 0px 400px 80px;
    position: relative;
}

.hero_section .video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_section .hero-title h1 {
    margin-bottom: 29px;
}

.hero_section .hero-title {
    max-width: 448px;
}

.hero_section .hero-title h1 span {
    font-size: 65px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.hero_section .hero-title h1 span::before {
    content: "";
    border-bottom: 6px solid var(--secondary);
    position: absolute;
    z-index: -1;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 5px;
}

.padding-small {
    padding: 150px 0 300px 150px;
}

.get-started {
    display: flex;
    justify-content: flex-start;
}

#home .get-started {
    justify-content: flex-end;
}

.get-started a {
    font-size: 23px;
    font-weight: 900;
}

.get-started a i {
    color: var(--secondary);
    font-size: 25px;
}

.get-started a:hover i {
    color: var(--white);
}

section.performance {
    padding-left: 50px;
    padding-right: 50px;
}

section.performance .col-md-6.background-primary {
    position: relative;
}

@media (min-width: 1200px) {
    section.performance .col-md-6.background-primary {
        padding-bottom: 30px;
    }
}

.owl-theme .owl-nav {
    margin-top: 37px;
    margin-bottom: -27px;
    text-align: right;
    padding-right: 40px;
}

.owl-theme .owl-nav button.owl-prev {
    border-right: 3px solid var(--white);
    border-radius: 0;
}

.owl-theme .owl-nav button.owl-prev svg {
    margin-right: 10px;
}

.owl-theme .owl-nav button:hover {
    background: transparent !important;
}

.owl-theme .owl-nav button svg {
    transition: all .3s ease;
}

.owl-theme .owl-nav button:hover svg {
    transform: scale(1.15);
    transition: 0.3s all ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary) !important;
}

p.slider-count {
    color: var(--white);
    position: absolute;
    bottom: 23px;
    left: 35px;
    font-size: 20px;
    z-index: 1;
}

section.performance .col-lg-6.background-primary {
    padding-bottom: 20px !important;
}

section.performance .left-col {
    background-color: var(--primary);
    text-align: center;
    color: #ffffff;
    padding-top: 70px;
    padding-bottom: 0px;
    height: 100%;
}

section.performance .left-col .content {
    max-width: 540px;
    margin: auto;
}

section.performance .left-col .content span.clr-secondary-dark {
    font-size: 20px;
    font-weight: 700;
}

section.performance .left-col h2 {
    margin-bottom: 25px;
}

section.performance .left-col p {
    font-size: 20px;
    font-weight: 300;
    max-width: 345px;
    margin: auto;
}

section.performance .left-col .content span.line {
    background-color: var(--secondary);
    display: flex;
    width: 2px;
    height: 75px;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
}

section.performance .left-col .discover-text {
    margin-top: 10px;
}

section.performance .left-col .discover-text h4 {
    font-style: italic;
}

section.performance .left-col .discover-text h3 {
    font-weight: 900;
}

.free-tips {
    padding-top: 75px;
    padding-bottom: 75px;
}

.free-tips h4 {
    font-family: "Bodoni book";
}

.free-tips .inner-container {
    max-width: 1100px;
    margin: 0 auto 0;
    color: var(--primary);
}

.free-tips .inner-container .email {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 6px solid var(--secondary);
    position: relative;
}

.free-tips .inner-container .email i {
    font-size: 24px;
}

.free-tips .email #input_2_1 {
    border: none;
    box-shadow: none;
    font-family: "Bodoni book";
    font-size: 22px;
    font-weight: 900;
    min-width: 260px;
}

.free-tips .email .gform-footer {
    display: none;
}

.free-tips .inner-container p {
    font-size: 24px;
    margin-left: 20px;
}

.free-tips .inner-container a {
    color: var(--primary);
}

.free-tips .inner-container .social-icons {
    margin-left: 20px;
}

.free-tips .inner-container .social-icons a {
    border: 1px solid var(--primary);
}

.free-tips .inner-container .social-icons a:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: #C85AEA;
    transition: 0.3s all ease;
}

.free-tips .inner-container .social-icons a:first-of-type {
    margin-left: 20px;
}

section.intro .container {
    padding: 0;
}

section.intro .wrapper {
    background-color: #424348;
}

section.intro h2 {
    font-size: 55px;
}

.intro .left-col {
    background-color: #fff;
    position: relative;
    right: -80px;
    padding: 50px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro .white-text-box {
    color: var(--dark);
    text-align: center;
}

.intro .white-text-box p {
    max-width: 432px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro .white-text-box span.clr-secondary {
    display: block;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.intro img {
    min-height: 700px;
}

.learn-btn {
    border-bottom: 5px solid var(--secondary);
    text-decoration: none;
    font-family: "Bodoni book";
}

.intro .white-text-box h5 {
    font-weight: 900 !important;
    font-size: 18px;
}

.intro .white-text-box h5 a {
    color: #575654 !important;
    text-decoration: none;
}

section.effective-strategies {
    margin-top: 90px;
    margin-bottom: 90px;
}

section.effective-strategies .row {
    max-width: 1521px;
    margin-left: auto;
    margin-right: auto;
}

section.effective-strategies .left-col {
    background-color: var(--white);
    text-align: center;
    color: #ffffff;
    padding-top: 0;
    padding-bottom: 42px;
    height: 100%;
}

section.effective-strategies .left-col .content {
    max-width: 540px;
    margin: auto;
}

section.effective-strategies .left-col .content span.clr-secondary-dark,
.subtitle {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

section.effective-strategies .left-col h2 {
    color: var(--gray);
    line-height: 1.1;
}

section.effective-strategies .left-col p {
    font-size: 24px;
    font-weight: 300;
    max-width: 345px;
    margin: auto;
}

span.line {
    background-color: var(--secondary);
    display: flex;
    width: 2px;
    height: 100px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
}

.effective-strategies span.line {
    margin-top: 0;
}

section.effective-strategies .left-col .discover-text {
    margin-top: 30px;
}

section.effective-strategies .left-col .discover-text h4 {
    font-style: italic;
    color: var(--gray-light);
}

section.effective-strategies .left-col .discover-text h3 {
    font-family: "Bodoni book"
}

section.effective-strategies .img-col .text span.clr-secondary-dark {
    font-size: 19px;
    letter-spacing: 0.17rem;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

section.effective-strategies .img-col .text h3.clr-dark {
    font-size: 55px;
}

section.divine-lifestyle .text-col {
    background-color: rgba(60, 21, 76, 0.89);
    color: var(--white);
    padding: 150px 0 50px;
}

section.divine-lifestyle .text-col h2 {
    font-size: 130px;
    font-weight: 900 !important;
    margin-left: -9px;
    line-height: 0.1em;
}

section.divine-lifestyle .text-col h3 {
    font-size: 45px;
    font-weight: 900 !important;
    font-weight: 600;
    margin-bottom: 35px;
    max-width: 532px;
    font-family: "Bodoni book";
}

section.divine-lifestyle .text-col span.font-motterdam {
    font-size: 40px;
}

section.divine-lifestyle .col-img {
    background-size: cover;
    background-position: center center;
    height: 100%;
}

section.divine-lifestyle .col-img .overlay {
    background-color: rgba(60, 21, 76, 0.88);
    height: 100%;
}


/* insta feed sectiuon  */

section.insta-feed {
    background-color: var(--gray-light);
    color: var(--white);
    padding-bottom: 20px;
}

section.insta-feed .inner {
    max-width: 1522px;
    margin: 0 auto;
    padding: 120px 0 90px;
}

section.insta-feed h2 {
    display: inline-block;
    font-size: 58px;
}

.insta-feed .col-md-4 {
    padding: 7px 15px;
}


/*  services page */

body.page-id-66 .hero_section .hero-title h1 span {
    font-size: 58px;
    margin-top: 21px;
    display: inline-block;
    padding-bottom: 30px;
    border-bottom: 5px solid var(--secondary);
}

body.page-id-66 .hero_section .hero-title h1 span::before {
    display: none;
}

body.page-id-66 .hero_section .hero-title {
    max-width: 514px;
}

h1.small-font {
    font-size: 56px;
}

.clr-black {
    color: #000;
}

section.performance.top_overlap {
    position: relative;
    z-index: 1;
    margin-top: -70px;
}

body.page-id-66 section.performance:last-of-type {
    margin-bottom: 50px;
}

body.page-id-66 .performance .left-col .discover-text h5 {
    margin-top: 30px;
    font-weight: 900;
}

body.page-id-66 .learn-btn,
#products .learn-btn {
    font-family: "Bodoni book";
}

.row-reverse {
    flex-direction: row-reverse;
}

.same-services .get-started {
    justify-content: flex-start;
}

.same-services .text {
    z-index: 1;
    position: relative;
    padding: 50px 0;
}

.same-services h2 {
    margin-bottom: 30px;
}

.same-services .text p {
    margin-bottom: 20px;
    font-size: 20px;
    max-width: 1180px;
    font-family: "Lato";
    font-weight: 300;
}

.same-services .text p:last-of-type {
    margin-bottom: 40px;
}

.same-services .btn-site {
    border-radius: 15px;
}

.same-services .btn-site.font-lato {
    font-weight: 300;
}

.same-services .hero_section .btn-site.font-lato {
    text-align: left;
    padding-right: 25px;
    padding-left: 25px;
}

.right-span {
    display: flex;
    margin-left: auto;
}


/* performance-coaching  page  */

body.page-id-135 .hero_section .btn-site {
    border-color: transparent;
    border-radius: 25px;
    font-family: "Lato";
    font-weight: 300;
    padding: 12px 20px;
    padding-right: 50px;
    line-height: 1.2;
    text-align: left;
}

body.page-id-135 .padding-small {
    padding: 200px 0 500px 50px;
}

body.page-id-135 h1.small-width {
    max-width: 480px;
}

body.page-id-135 .hero_section h1 {
    margin-bottom: 50px;
}

body.page-id-135 .font-signature {
    width: 322px;
    display: flex;
    margin-left: auto;
}

body.page-id-135 .font-signature::before {
    bottom: 0px;
}


/* speaking page  */

body.page-id-145 h1 {
    max-width: 368px;
}

body.page-id-145 .font-signature {
    width: 150px;
    border-bottom: 4px solid var(--secondary);
    display: flex;
    margin-left: auto;
}

body.page-id-145 .font-signature::before {
    display: none;
}

body.page-id-145 .hero_section .hero-title {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

body.page-id-145 .hero_section .btn-site,
body.page-id-150 .hero_section .btn-site,
body.page-id-154 .hero_section .btn-site {
    border-color: transparent;
    border-radius: 25px;
    font-family: "Lato";
    font-weight: 300;
    font-size: 20px;
    text-align: left;
}

body.page-id-145 .text p {
    max-width: 1280px;
    font-size: 19px;
}

body.page-id-145 .text p:first-of-type {
    margin-bottom: 0;
}


/* meditation page  */

body.page-id-150 .font-signature {
    display: inline-block;
}

body.page-id-150 .font-signature::before {
    display: none;
}

body.page-id-150 .font-signature {
    border-bottom: 5px solid var(--secondary);
}

body.page-id-150 .text p {
    max-width: 1280px;
}


/* personal-training page */

body.page-id-154 .hero_section {
    padding: 200px 0 700px 50px;
}

body.page-id-154 .font-signature {
    width: 268px;
    display: block;
    margin-left: auto;
}

.same-services .small-width {
    max-width: 436px;
}

body.page-id-154 h1 {
    max-width: 380px;
}

body.page-id-154 .hero_section .hero-title {
    max-width: 485px;
}

body.page-id-135 .hero_section .btn-site span {
    display: block;
}

body.page-id-135 .hero_section .btn-site span i {
    margin: 0 10px;
    vertical-align: middle;
}

body.page-id-135 .linear_grad::before {
    height: 13%;
}

body.page-id-154 .text p {
    max-width: 1288px !important;
}

.linear_grad {
    position: relative;
}

.white_grad {
    position: relative;
}

.linear_grad::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 16%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    z-index: 1;
}

.white_grad::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
}

.underline_span span::before {
    content: "";
    position: absolute;
    background: #f59e0b;
    width: 60px;
    height: 3px;
    border-radius: 30px;
    bottom: -5px;
    right: 12px;
}

header .logo-link {
    max-width: 320px;
    transition: var(--transition);
}

.header-logo:hover {
    scale: 1.05;
    transition: 0.3s all ease;
}

section.performance .left-col {
    padding-top: 50px;
    padding-bottom: 10px;
}

section.performance .left-col h2 {
    margin-bottom: 19px;
}

section.performance .left-col .discover-text {
    margin-top: 10px;
}

section.performance .left-col .content span.line {
    height: 82px;
}

section.performance .left-col p {
    font-size: 22px;
}

section.performance .left-col .content span.clr-secondary-dark {
    font-size: 22px;
}

.owl-theme .owl-nav {
    margin-top: 28px;
}

section.insta-feed .inner {
    max-width: 1266px;
}

.bio section.intro {
    background-color: #424348;
    padding-left: 0px;
    padding-right: 0px;
}

.bio section.intro h1 {
    font-size: 64px;
}

.bio section.intro .left-col {
    background-color: #424348;
    right: 0;
    margin-left: 0;
    justify-content: end;
    padding: 100px 20px;
}

.bio-hero .img-colm {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.bio-hero .img-colm .right-img-col {
    height: 100%;
    right: 0 !important;
}

.bio-hero .img-colm img {
    height: 100%;
    min-height: unset;
    object-fit: cover;
    object-position: top center;
}

.bio section.intro .white-text-box h2 {
    font-size: 200px;
    margin-top: 122px;
    font-weight: 900 !important;
    margin-left: -9px;
    line-height: 0.1em;
}

.bio section.intro h3 {
    margin-bottom: 40px;
    font-family: "Bodoni Book";
    max-width: 539px
}

.bio section.intro .white-text-box {
    background-color: transparent;
    color: var(--white);
    text-align: left;
}

.bio section.intro .white-text-box span.font-motterdam {
    font-size: 40px;
}

.bio section.intro .right-img-col {
    right: -105px;
    position: relative;
}


/* gallery page */

.gallery {
    margin-top: 50px;
}

.gallery .wrapper {
    max-width: 1000px;
    margin: auto;
}

.gallery .container>div {
    margin-bottom: 35px;
}

.gallery .col-img img {
    width: 95%;
}

.gallery .text-col {
    align-content: center;
    height: 100%;
}

.gallery .text-col h3 {
    margin-bottom: 30px;
}

.gallery .text-col p {
    font-size: 20px;
    font-weight: 300;
    max-width: 474px;
}

.gallery .right-text-col {
    padding-left: 0px;
    padding-right: 110px;
}

.gallery .left-text-col {
    padding-left: 60px;
    padding-right: 90px;
}

.gallery .row4 .left-text-col {
    padding-right: 50px;
}

.gallery .row4 .left-text-col p {
    padding-right: 33px;
}


/* book page  */

.product-hero {
    padding-bottom: 50px;
    background-size: cover;
    background-position: center center;
}

.product-hero .wrapper {
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    color: var(--white);
}

.product-hero .hero-title h1 {
    margin-bottom: 0px;
    font-size: 60px;
}

.product-hero .hero-title span {
    font-size: 17px;
    letter-spacing: 0.1rem;
}


/* product page  */

.product-hero .hero-title span {
    border-bottom: 3px solid var(--secondary);
}

.gallery .text-col ul {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gallery .text-col ul li {
    font-size: 19px;
    font-weight: 300;
}

.rignt-width {
    max-width: 400px;
}

.rignt-width2 ul {
    max-width: 400px;
}

.gallery .text-col ul li::marker {
    color: var(--secondary);
}

.gallery .text-col h5 {
    margin-top: 30px;
    font-weight: 900;
}

@media (min-width: 1050px) {
    body.page-id-169 .gallery>.container {
        max-width: 1030px;
    }
}

body.page-id-169 .text-col h3 {
    margin-bottom: 15px;
}

body.page-id-169 .text-col h4 {
    margin-bottom: 30px;
    font-family: "Bodoni book";
}

@media (min-width: 768px) {
    body.page-id-169 .product-hero {
        margin-bottom: 100px;
    }
    body.page-id-169 header+main {
        padding-bottom: 80px;
    }
}


/* From Uiverse.io by Yaya12085 */

.form-section {
    padding: 30px 0 50px;
}

.form-section .wrapper {
    max-width: 825px;
    margin: 30px auto 0;
}

.form-section input:not(input[type="checkbox"],
input[type="radio"],
input[type="submit"]),
.form-section textarea {
    border-radius: 0 !important;
    min-height: 60px !important;
    border-color: #B0B4B5 !important;
    color: #2D2C2C;
    font-size: 20px !important;
    font-family: "Raleway", sans-serif !important;
}

.form-section .gform-footer {
    justify-content: center !important;
}

.form-section input[type="submit"] {
    border: 2px solid var(--secondary) !important;
    background: #3C154C !important;
    height: 60px !important;
    text-align: center !important;
    border-radius: 35px !important;
    min-width: 190px !important;
    font-family: "Helvetica Neue" !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    text-transform: uppercase !important;
}

.form-section textarea {
    min-height: 200px !important;
}

.form-btn {
    border-radius: 30px;
    margin-top: 20px;
}

.title {
    font-size: 28px;
    color: royalblue;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.title::before,
.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: royalblue;
}

.title::before {
    width: 18px;
    height: 18px;
    background-color: royalblue;
}

.title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.message,
.signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
}

.signin {
    text-align: center;
}

.signin a {
    color: royalblue;
}

.signin a:hover {
    text-decoration: underline royalblue;
}

.flex {
    display: flex;
    width: 100%;
    gap: 6px;
}

.form label {
    position: relative;
    width: 49%;
}

label.full-width {
    width: 100%;
}

.form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
}

.form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.2s ease all;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    color: green;
}

.submit {
    border: 3px solid var(--secondary);
    outline: none;
    max-width: 200px;
    background-color: var(--primary);
    padding: 10px;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }
    to {
        transform: scale(1.8);
        opacity: 0;
    }
}


/* Testimonials Sec */

.testimonial-sec {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 8%, rgba(100, 45, 117, 0.14) 50%);
}

.two-col-title {
    display: flex;
    /* justify-content: space-between; */
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.title-wrap {
    padding-right: 25px;
}

.desc-wrap {
    padding-left: 30px;
    border-left: 2px solid var(--secondary);
    align-content: end;
}

.desc-wrap p {
    color: #5B6371;
}

@media (min-width: 1600px) {
    .testimonial-sec h2 {
        font-size: 52px;
    }
}

.testimonial-sec .section-cards {
    background: #fff;
    border: 1px solid var(--secondary);
    border-radius: 7px;
    padding: 55px 40px 30px;
    position: relative;
    z-index: 1;
}

.testimonial-sec .stars i {
    color: var(--secondary);
    font-size: 14px;
}

.testimonial-sec .commas {
    position: absolute;
    width: 30%;
    top: 13%;
    right: 75px;
    z-index: -1;
}

.testimonial-sec .qoute-text {
    margin-top: 20px;
    min-height: 180px;
}

.testimonial-sec .qoute-text p {
    font-size: 15px;
    font-family: "Proxima Nova";
    font-style: italic;
    font-weight: 500;
    line-height: 1.7;
}

.testimonial-sec .section-cards hr {
    color: var(--secondary);
    opacity: 1;
}

.testimonial-sec .team {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-sec .team h4 {
    font-size: 16px;
    font-family: "Proxima Nova";
}

.testimonial-sec .team h5 {
    font-weight: 400;
    font-family: "Proxima Nova";
    font-style: italic;
    font-size: 14px;
}

.testimonial-sec .team img {
    max-width: 65px;
}

.testimonial-sec .owl-dots {
    text-align: right;
}

.owl-dots .owl-dot.active span {
    background: var(--color-pink) !important;
}

.testimonial-sec .owl-item .item {
    padding-bottom: 2px;
}


/* footer */

.footer {
    background: var(--primary);
    padding: 60px 0 40px;
}

.footer .logo {
    max-width: 400px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .footer .col-lg-2 {
        width: 12%;
    }
    .footer .col-lg-2.serv {
        width: 16%;
    }
}

.footer .email-signup {
    width: 23%;
    background: #070000;
    padding: 30px 30px 40px;
    height: max-content;
}

.footer .email-signup .subtitle {
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: "Lato", sans-serif;
    font-size: 14px;
}

.footer .email-signup p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer .email-signup input {
    background: #2B2929 !important;
    border: 1px solid #707070 !important;
    color: #fff !important;
    height: 50px !important;
    font-family: "Lato", sans-serif;
}

.footer .email-signup input::placeholder {
    color: #fff !important;
    text-transform: uppercase;
}

.footer .email-signup input[type="submit"] {
    width: 100% !important;
    text-align: left !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    transition: .3s all ease;
    font-family: "Bodoni" !important;
    font-weight: 700;
}

.footer .email-signup .gform_footer {
    margin-top: 8px !important;
}

.footer .email-signup input[type="submit"]:hover {
    color: var(--white) !important;
    background: var(--primary) !important;
    transition: .3s all ease;
}

.footer_list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    transition: .3s all ease;
}

.footer_list a:hover {
    color: var(--secondary);
    transition: .3s all ease;
}

.footer_list a img {
    width: 18px;
}

.footer_list h5 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer_list h5.socail-title {
    margin-top: 60px;
}

.social_icons {
    display: flex;
    gap: 16px;
}

.social_icons a img {
    width: 33px;
}

.email-signup input::placeholder {
    color: #fff;
}

.email-signup input {
    background-color: #2B2929;
    border: 1px solid #707070;
    outline: none;
    color: #fff;
    font-size: 13px;
    width: 100%;
}

.copyright {
    margin-top: 50px;
}

.copyright p {
    font-family: "Helvetica Neue";
    color: #FFFFFF;
    font-size: 14px;
}

.copyright a {
    color: inherit;
    text-decoration: none;
}


/* Main Content page */

main.content-page {
    padding: 90px 0 60px;
    position: relative;
    z-index: 1;
}

main.content-page ul {
    padding-left: 20px;
}

main.content-page>.container>* {
    margin-bottom: 20px;
}

main.content-page .black-grass.custom-w img {
    z-index: -1;
}

main.content-page h1 {
    margin-bottom: 50px !important;
}

main.content-page h3 {
    font-size: 16px;
    font-family: "HelveticaNeue";
    font-weight: 700;
}

.content-page p a,
.content-page li a {
    color: inherit;
}

.right-col .colmSlideImg:not(:first-of-type) {
    display: none;
}


/* media query  */

@media (max-width:1399px) {
    .same-services .text p {
        font-size: 17px;
    }
    body.page-id-150 .text p {
        max-width: 1096px;
    }
    body.page-id-135 .text p {
        max-width: 1007px;
    }
    body.page-id-135 .padding-small {
        padding: 200px 0 300px 50px;
    }
    body.page-id-154 .text p {
        max-width: 1095px !important;
    }
    body.page-id-145 .text p {
        font-size: 16px;
        max-width: 1063px;
    }
    .intro img {
        min-height: 604px;
    }
    .gallery .text-col p {
        font-size: 17px;
    }
    body.page-id-169 .text-col p {
        max-width: 267px;
    }
    .gallery .row1 .text-col p,
    .gallery .row3 .text-col p {
        max-width: 400px;
    }
    .gallery .row4 .text-col p {
        max-width: 421px;
    }
    .gallery .row5 .text-col p,
    .gallery .row9 .text-col p {
        max-width: 413px;
    }
    .gallery .row8 .text-col p {
        max-width: 385px;
    }
    .gallery .text-col h3 {
        font-size: 37px;
    }
    .header-btn a {
        white-space: nowrap;
    }
    .testimonial-sec .qoute-text p br {
        display: none;
    }
    .testimonial-sec .desc-wrap p br {
        display: block;
    }
    .testimonial-sec .qoute-text {
        min-height: 170px;
    }
}

@media (max-width:1199px) {
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link {
        font-size: 14px;
    }
    header {
        padding-left: 30px;
        padding-top: 26px;
    }
    .social-icons a {
        margin-right: 7px;
    }
    header .social-icons {
        margin-right: 6px;
    }
    header .logo-link {
        max-width: 240px;
    }
    li.header-btn {
        margin-left: 30px;
    }
    .header-btn a {
        font-size: 16px;
        width: max-content;
        padding: 12px 20px;
    }
    .hero_section .hero-title h1 {
        font-size: 73px;
    }
    .hero_section .hero-title h1 span {
        font-size: 46px;
    }
    .hero_section {
        padding: 150px 0 150px 80px;
    }
    .hero_section .get-started a {
        font-size: 20px;
    }
    section.performance .left-col .content span.clr-secondary-dark {
        font-size: 17px;
    }
    section.performance .left-col h2 {
        margin-bottom: 15px;
    }
    section.performance .left-col h5 {
        font-size: 18px;
    }
    p.slider-count {
        bottom: 19px;
    }
    h2 {
        font-size: 38px;
    }
    section.performance .left-col p {
        font-size: 20px;
    }
    section.performance .left-col .content span.line {
        height: 66px;
        margin-top: 15px;
    }
    .colm-carousel {
        padding-bottom: 21px;
    }
    .owl-theme .owl-nav {
        margin-top: 0;
    }
    .owl-theme .owl-nav button.owl-prev {
        border-right: 2px solid var(--white);
        border-radius: 0;
    }
    h3 {
        font-size: 34px;
    }
    h4 {
        font-size: 30px;
    }
    .free-tips h4 {
        font-size: 22px;
    }
    .free-tips .inner-container p {
        font-size: 18px;
    }
    .free-tips .inner-container .email {
        border-bottom: 4px solid var(--secondary);
    }
    .learn-btn {
        border-bottom: 3px solid var(--secondary);
    }
    section.intro h2 {
        font-size: 45px;
    }
    .intro .white-text-box {
        padding-bottom: 20px;
        padding-top: 25px;
        right: -40px;
        top: 30px;
        left: 30px;
        bottom: 30px;
    }
    .intro .white-text-box span.clr-secondary {
        font-size: 16px;
    }
    .intro .white-text-box p {
        font-size: 14px;
        max-width: 360px;
        margin-bottom: 22px;
    }
    .intro .white-text-box h5 {
        font-size: 14px;
    }
    .intro .left-col {
        padding-top: 15px;
        padding-bottom: 0;
    }
    section.effective-strategies {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    section.effective-strategies .left-col h2 {
        margin-bottom: 14px;
    }
    section.effective-strategies .left-col .content span.clr-secondary-dark,
    .solution_text .subtitle {
        font-size: 17px;
    }
    section.effective-strategies .left-col .content span.line {
        height: 60px;
        margin-top: 0;
    }
    section.effective-strategies .left-col .discover-text {
        margin-top: 17px;
    }
    section.effective-strategies .img-col .text span.clr-secondary-dark {
        font-size: 16px;
    }
    section.divine-lifestyle .text-col {
        padding-top: 90px;
        padding-bottom: 30px;
        padding-right: 22px;
    }
    section.divine-lifestyle .text-col h2 {
        font-size: 150px;
    }
    section.divine-lifestyle .text-col h3 {
        font-size: 43px;
    }
    section.insta-feed h2 {
        font-size: 40px;
    }
    section.insta-feed .inner {
        padding: 57px 0 62px;
    }
    .get-started a {
        font-size: 19px;
    }
    body.page-id-135 .font-signature {
        width: 226px;
    }
    body.page-id-135 h1.small-width {
        max-width: 438px;
    }
    .same-services .text p {
        padding-right: 0px;
        font-size: 16px;
    }
    body.page-id-145 .small-width {
        max-width: 370px;
    }
    body.page-id-145 .font-signature {
        width: 111px;
    }
    .same-services .small-width {
        max-width: 392px;
    }
    body.page-id-150 .font-signature {
        width: 246px;
    }
    body.page-id-154 .small-width {
        max-width: 380px;
    }
    body.page-id-154 .font-signature {
        width: 190px;
    }
    body.page-id-154 .hero_section .hero-title {
        max-width: 552px;
    }
    /* bio page responsive */
    .bio section.intro h1 {
        font-size: 44px;
    }
    .intro img {
        min-height: 511px;
    }
    .testimonial-sec .qoute-text p,
    .service-col_inner p {
        font-size: 14px;
    }
    .footer_list a {
        font-size: 15px;
    }
    .footer .email-signup {
        width: 50%;
        margin: 40px auto 0;
    }
    .footer .col-lg-2 {
        width: 16%;
    }
    .footer .col-lg-2.serv {
        width: 22%;
    }
    .footer_list {
        width: 30%;
    }
}


/* 991  */

@media (max-width:991px) {
    .navbar-toggler {
        box-shadow: none !important;
        outline: none !important;
        border: none;
        color: var(--white);
    }
    .navbar-toggler span {
        width: 30px;
        height: 3px;
        background: #fff;
        border-radius: 5px;
        display: inline-block;
        position: relative;
        transition: .4s all ease;
    }
    .navbar-toggler[aria-expanded="true"] span {
        transform: rotate(45deg);
        transition: .4s all ease;
    }
    .navbar-toggler span::before,
    .navbar-toggler span::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        left: 0;
        background: #fff;
        border-radius: 5px;
        bottom: -10px;
        transition: .4s all ease;
    }
    .navbar-toggler span::before {
        top: -10px;
        bottom: unset;
        transition: .4s all ease;
    }
    .navbar-toggler[aria-expanded="true"] span::after {
        transform: rotate(-94deg) translate(10px, 1px);
        transition: .4s all ease;
    }
    .navbar-toggler[aria-expanded="true"] span::before {
        opacity: 0;
    }
    .header-logo {
        width: 34%;
    }
    .header-logo img {
        width: 100%;
        max-width: 190px;
    }
    header {
        padding: 5px 0;
        position: relative;
        z-index: 1;
    }
    .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
    }
    .navbar-toggler.collapsed~.header-right {
        display: none;
    }
    .header-right {
        display: flex;
        align-items: center;
    }
    .header-right .social-icons {
        justify-content: space-around;
        margin-bottom: 0;
    }
    .navbar-collapse {
        position: absolute;
        left: 0px;
        width: 100%;
        background: var(--primary);
        z-index: 1060;
        top: 100px;
        padding: 15px 0;
    }
    li.header-btn {
        margin-left: 10px;
    }
    header .nav-item.menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
    }
    header .nav-item.menu-item-has-children>a {
        order: 0;
    }
    header .nav-item.menu-item-has-children>.drop-toggler {
        order: 1;
        color: #fff;
        border: none;
        box-shadow: none;
    }
    header .nav-item.menu-item-has-children .sub-menu {
        order: 2;
        width: 100%;
    }
    .hero_section .hero-title {
        max-width: 524px;
    }
    #home .get-started {
        justify-content: flex-start;
    }
    section.performance {
        padding-left: 0;
        padding-right: 0;
    }
    section.performance .left-col {
        padding: 30px 10px 40px;
    }
    h2 {
        font-size: 31px;
    }
    .direction-column {
        flex-direction: column;
    }
    .free-tips {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .free-tips .inner-container {
        text-align: center;
        max-width: 566px;
    }
    .free-tips .inner-container .right-col {
        margin-top: 12px;
    }
    section.intro {
        padding-left: 10px;
        padding-right: 10px;
    }
    .intro .left-col {
        background-color: #fff;
        position: relative;
        right: 0px;
        padding: 40px 0;
        max-width: 770px;
    }
    .intro .white-text-box {
        box-shadow: none;
        padding: 10px 15px 45px;
    }
    .intro .white-text-box p {
        max-width: 482px;
    }
    .intro .left-col {
        padding: 0;
    }
    .intro img {
        min-height: 427px;
    }
    h3 {
        font-size: 25px;
    }
    section.divine-lifestyle .text-col h3 {
        font-size: 31px;
    }
    section.divine-lifestyle .text-col span.font-motterdam {
        font-size: 34px;
    }
    section.insta-feed h2 {
        font-size: 40px;
    }
    .get-started a {
        font-size: 16px;
        padding: 8px 30px;
    }
    section.insta-feed .inner {
        padding: 40px 0;
    }
    .gallery .right-text-col {
        padding-right: 0px;
    }
    .gallery .left-text-col {
        padding-left: 0px;
        padding-right: 0px;
    }
    .gallery .row4 .left-text-col p {
        padding-right: 0px;
    }
    .gallery .text-col h3 {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .gallery .text-col p {
        font-size: 16px;
    }
    .gallery .col-img img {
        width: 100%;
    }
    .bio .intro .white-text-box {
        box-shadow: none;
    }
    .bio section.intro .right-img-col {
        right: 0;
    }
    .bio section.intro .left-col {
        justify-content: start;
    }
    .bio section.intro .row {
        flex-direction: column-reverse;
    }
    .bio section.intro img {
        box-shadow: 3px 3px 20px 2px rgb(176, 176, 176);
        margin: 30px 0;
        display: none;
    }
    .bio section.intro .white-text-box h2 {
        font-size: 100px;
        margin-top: 70px;
    }
    .insta-feed .col-md-4 {
        padding: 5px;
    }
    .header-right .social-icons {
        margin: 10px 0 0;
    }
    .hero_section .hero-title h1 span::before {
        border-width: 4px;
        bottom: 0;
    }
    .hero_section .hero-title h1 {
        font-size: 50px;
    }
    body.page-id-150 .font-signature {
        width: 172px;
        font-size: 30px;
    }
    body.page-id-145 .hero_section .btn-site,
    body.page-id-150 .hero_section .btn-site,
    body.page-id-154 .hero_section .btn-site {
        font-size: 12px;
    }
    body.page-id-135 h1.small-width {
        max-width: 303px;
    }
    body.page-id-145 .small-width {
        max-width: 257px;
    }
    .footer .col-lg-2 {
        width: 22%;
    }
    .footer .col-lg-2.serv {
        width: 33%;
    }
    .footer_list {
        width: 42%;
    }
    p.slider-count {
        left: 15px;
    }
    .owl-theme .owl-nav {
        padding-right: 12px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px !important;
    }
    h2 {
        font-size: 30px !important;
    }
    h3 {
        font-size: 27px;
    }
    h4 {
        font-size: 20px;
    }
    /* header  */
    header .container-fluid {
        flex-wrap: nowrap !important;
    }
    header .logo-link {
        max-width: 150px;
    }
    header .social-icons {
        display: none;
    }
    .social-icons a {
        margin-right: 5px;
        width: 25px;
        height: 25px;
    }
    .social-icons a i {
        font-size: 12px;
    }
    .navbar-collapse {
        top: 85px;
    }
    .header-right {
        flex-direction: column-reverse;
        align-items: end;
        gap: 5px;
    }
    .header-logo {
        width: 41%;
    }
    .hero_section {
        background-size: cover;
        padding-left: 0;
    }
    .hero_section {
        padding: 100px 0 !important;
    }
    .hero_section .hero-title h1 {
        font-size: 45px;
    }
    .hero_section .hero-title h1 span {
        font-size: 28px;
        display: block;
        margin: 8px 0 0;
        width: max-content;
    }
    body.page-id-145 .hero_section .btn-site,
    body.page-id-150 .hero_section .btn-site,
    body.page-id-154 .hero_section .btn-site,
    body.page-id-135 .hero_section .btn-site {
        font-size: 14px;
        max-width: 340px;
    }
    .get-started {
        justify-content: flex-start;
        margin-right: 0;
    }
    /* performance sec  */
    .owl-theme .owl-dots .owl-dot span {
        margin: 5px 4px;
    }
    .hero_section .get-started a {
        margin-right: 0;
        font-size: 18px;
    }
    section.effective-strategies {
        margin-top: 40px;
        margin-bottom: 0px;
    }
    section.effective-strategies .img-col {
        margin-bottom: 40px;
    }
    section.effective-strategies .img-col .text span.clr-secondary-dark {
        margin-top: 10px;
    }
    .mob-column {
        flex-direction: column;
        align-items: flex-start !important;
    }
    section.insta-feed h2 {
        margin-bottom: 10px;
    }
    /* start services page */
    body.page-id-66 .performance .blue-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    body.page-id-66 section.performance {
        padding-left: 0px;
        padding-right: 0px;
    }
    body.page-id-135 .font-signature {
        width: 122px;
    }
    body.page-id-135 h1.small-width {
        max-width: 273px;
    }
    body.page-id-145 .small-width {
        max-width: 227px;
    }
    body.page-id-145 .font-signature {
        width: 56px;
    }
    body.page-id-150 .font-signature {
        width: 119px;
        font-size: 20px;
    }
    .same-services .text p:last-of-type {
        margin-bottom: 22px;
    }
    .same-services h2 {
        margin-bottom: 15px;
    }
    .same-services .small-width {
        max-width: 242px;
    }
    body.page-id-154 .small-width {
        max-width: 234px;
    }
    body.page-id-154 .font-signature {
        width: 109px;
    }
    /* bi0 oage  */
    .bio section.intro img {
        min-height: unset;
    }
    .bio section.intro .white-text-box h2 {
        font-size: 70px !important;
        margin-top: 50px;
    }
    .gallery .text-col h3 {
        font-size: 28px;
    }
    .gallery .text-col p {
        font-size: 14px;
    }
    .bio section.intro img {
        margin-top: 0;
        box-shadow: unset;
    }
    /* book page  */
    .product-hero .wrapper {
        min-height: 250px;
    }
    body.page-id-169 .text-col h4 {
        margin-bottom: 10px;
    }
    .gallery .text-col h5 {
        margin-top: 15px;
    }
    /* contact page  */
    .form .flex.w-100 {
        width: 100%;
        flex-direction: column;
    }
    .form .flex label {
        width: 100%;
    }
    .form .flex {
        flex-direction: column;
    }
    .form .flex label input {
        padding: 6px 10px 20px;
    }
    .right-span {
        margin-left: unset;
    }
    .hero_section .get-started a {
        margin-right: 0;
        font-size: 14px;
    }
    body.page-id-135 .hero_section h1 {
        margin-bottom: 30px;
    }
    .same-services .text p {
        font-size: 14px;
    }
    .gallery .text-col ul {
        gap: 10px;
    }
    .gallery .text-col ul li {
        font-size: 16px;
    }
    section.performance .left-col p {
        font-size: 16px;
    }
    body.page-id-66 .performance .left-col .discover-text h5 {
        margin-top: 15px;
    }
    section.performance .left-col .discover-text h3 {
        font-size: 20px;
    }
    body.page-id-66 .hero_section .hero-title h1 span {
        font-size: 30px;
        padding-bottom: 10px;
    }
    body.page-id-145 .hero_section .hero-title {
        min-height: unset;
    }
    .navbar-toggler span {
        width: 25px;
    }
    .navbar-toggler span::after {
        bottom: -8px;
    }
    .navbar-toggler span::before {
        top: -8px;
    }
    .navbar-toggler[aria-expanded="true"] span::after {
        transform: rotate(-94deg) translate(8px, 0px);
    }
    section.divine-lifestyle .col-img {
        min-height: 250px;
    }
    section.divine-lifestyle .text-col {
        padding: 34px 15px;
    }
    section.divine-lifestyle .text-col h2 {
        font-size: 50px !important;
    }
    section.insta-feed .inner {
        padding: 30px 0 10px;
    }
    .testimonial-sec {
        padding: 50px 0;
    }
    .footer {
        padding: 50px 0 20px;
    }
    .footer .col-lg-2,
    .footer .col-lg-2.serv {
        width: 50%;
    }
    .footer_list {
        margin-top: 29px;
        width: 100%;
    }
    .footer .email-signup {
        width: 95%;
        padding: 30px 20px 50px;
    }
    .footer .email-signup p {
        font-size: 14px;
    }
    .footer_form {
        margin-bottom: 22px;
    }
    .footer .header-logo {
        max-width: 170px;
        margin-bottom: 10px;
    }
    .desc-wrap {
        border-left: none;
        padding-left: 0;
        margin-top: 12px;
    }
    .testimonial-sec .section-cards {
        padding: 35px 25px 30px;
    }
    .testimonial-sec .qoute-text {
        min-height: 150px;
    }
    .footer .logo {
        max-width: 190px;
        margin-bottom: 10px;
    }
    .contact-banner img {
        height: 220px;
        object-fit: cover;
    }
    .gform-theme--foundation {
        --gf-form-gap-y: 15px !important;
    }
    .form-section input:not(input[type="checkbox"],
    input[type="radio"],
    input[type="submit"]),
    .form-section textarea {
        min-height: 50px !important;
        font-size: 16px !important;
    }
    .form-section input[type="submit"] {
        font-size: 18px !important;
    }
    main.content-page h1 {
        margin-bottom: 30px !important;
    }
    main.content-page {
        padding-top: 45px;
    }
}

body.page-id-312 main.content-page h3{
	font-family: "Lato", sans-serif;
	margin-bottom: 8px !important;
}