/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 5 version
*/

* {
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    margin-block: 0;
    margin-inline: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

}

:root {
    --primary: #e57a85;
    --secondary: #4F3267;
    --tertiary: #ffeaea;
    --body: #fbf8f6;
    --txtDark: #4F3267;
    --txtLight: #4c3f3f;
    --txtWhite: #ffffff;
    --txtWhiteLight: #ffffffd8;

    --header-height: 6rem;
    --siteWidth: 72rem;
}


@font-face {
    font-family: 'cottaregular';
    src: url('https://kcj.furnishingcentre.in/wp-content/themes/webelevate/font/cotta_free-webfont.woff') format('woff'),
        url('https://kcj.furnishingcentre.in/wp-content/themes/webelevate/font/cotta_free-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}



html {
    /* overflow-x: hidden; */
}

body {
    background-color: var(--body);
    font-family: 'Lato', sans-serif;
    max-width: 95rem;
    font-weight: 400;
    margin-inline: auto;
    letter-spacing: 0.05rem;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

main {
    overflow-x: hidden;
    padding-top: var(--header-height);
    margin-top: calc(-1 * var(--header-height));
}


address {
    font-style: normal;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.ab-container {
    width: 100%;
    padding: 0 1rem;
    max-width: var(--siteWidth);
    margin: 0 auto;
    /* position: relative; */
    z-index: 1;
}

/* ----------- Margin And Padding Utilities ------------- */

.p-1 {
    padding: 1rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}


.mb-5 {
    margin-bottom: 5rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}


.mt-n1 {
    margin-top: -1rem;
}

.mt-n2 {
    margin-top: -2rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mt-mb-4 {
    margin-top: 0rem;
}

.py-6 {
    padding-block: 6rem;
}

.py-2 {
    padding-block: 2rem;
}

.py-5 {
    padding-block: 5rem;
}

.my-6 {
    margin-block: 6rem;
}

.my-5 {
    margin-block: 5rem;
}

.my-4 {
    margin-block: 4rem;
}

.py-4 {
    padding-block: 4rem;
}

.py-3 {
    padding-block: 3rem;
}

.py-2 {
    padding-block: 2rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-6 {
    padding-top: 6rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-2 {
    padding-top: 2rem;
}

.my-8 {
    margin-block: 8rem;
}

.py-8 {
    padding-block: 8rem;
}

.pd-3 {
    padding: 3rem;
}

.pd-2 {
    padding: 2rem;
}

.center {
    margin-inline: auto;
}

.pd-flex-3 {
    padding: clamp(1rem, 4vw, 3rem);
}

.pd-flex-2 {
    padding: clamp(1rem, 3vw, 2rem);
}

.corner-flex-2 {
    border-radius: clamp(1rem, 4vw, 2rem);
}

.mt-mb-1 {
    margin-top: 1rem;
}

/* Spacer */
.sp-top {
    margin-top: calc(1rem * var(--spacer));
}

.sp-bottom {
    margin-bottom: calc(1rem * var(--spacer));
}


@media screen and (min-width:700px) {
    .mt-lg-4 {
        margin-top: 4rem;
    }

    .mt-lg-5 {
        margin-top: 5rem;
    }

    .pt-lg-4 {
        padding-top: 4rem;
    }

    .text-lg-center {
        text-align: center;
    }
}

@media screen and (max-width:700px) {
    .mt-mb-2 {
        margin-top: 2rem;
    }

    .py-mb-2 {
        padding-block: 2rem;
    }

    .py-mb-3 {
        padding-block: 3rem;
    }

    .py-mb-4 {
        padding-block: 4rem;
    }

    .px-mb-1 {
        padding-inline: 1rem;
    }
}

/* ---------- Grid Utilities ----------- */

.two-column {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
    gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.three-column {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
    gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.four-column {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.justify-self-left {
    justify-self: flex-start;
}

.justify-self-right {
    justify-self: flex-end;
}

.flex-gap {
    gap: clamp(7rem, 20%, 3rem);
}

.one-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


@media screen and (max-width:700px) {}

/* ----------- Text Utilities ----------- */

.text-body {
    line-height: 2.11rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--txtLight);
    letter-spacing: 0.5px;
}

.text-white {
    color: var(--txtWhite);
}

.text-white-light {
    color: var(--txtWhiteLight);
}

.text-dark {
    color: var(--txtDark);
}

.text-light {
    color: var(--txtLight);
}

.text-heading1 {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0.1rem;
}

.text-heading2 {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 700;
}

.text-heading3 {
    font-size: 1.7rem;
    line-height: 2.2rem;
    font-weight: 400;
}

.text-heading4 {
    font-size: 1.35rem;
    line-height: 2.1rem;
    font-weight: 400;
}

.text-center {
    text-align: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-inline: auto;
}

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

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

.p-max {
    max-width: 33rem;
}

.font-hd {
    font-family: 'cottaregular', serif;
    font-smooth: always;
}


/* ---------- Color Utilities ---------- */

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

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

.color-tertiary {
    color: var(--tertiary);
}

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

.bg-white {
    background-color: #ffffff;
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-tertiary {
    background-color: var(--tertiary);
}

.bg-gradient {
    background: var(--secondary);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--deg)), color-stop(-9%, var(--secondary)), color-stop(35%, var(--body)));
    background: -o-linear-gradient(var(--deg), var(--secondary) -9%, var(--body) 35%);
    background: linear-gradient(var(--deg), var(--secondary) -9%, var(--body) 35%);
}

/* ------ Button Utilities -------- */

.btn {
    text-decoration: none;
    border: none;
    outline: none;
    padding: 1.3rem 2rem;
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    letter-spacing: 0.06rem;
    text-align: center;
}

.btn-primary {
    border-radius: 0.5rem;
    background-color: var(--primary);
    color: var(--txtWhite);
    font-weight: 700;
    -webkit-box-shadow: 0 0.5rem 1rem #664e0b1f;
            box-shadow: 0 0.5rem 1rem #664e0b1f;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.btn-primary:hover {
    -webkit-box-shadow: 0 0.7rem 1.5rem #664e0b34;
            box-shadow: 0 0.7rem 1.5rem #664e0b34;
    -webkit-transform: translateY(-0.2rem);
        -ms-transform: translateY(-0.2rem);
            transform: translateY(-0.2rem);
}

.btn-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
}

.btn-cart img {
    max-width: 1.2rem;
}




/* Button  2-------------------- */

.button-2 {
    --btn-bg: var(--primary);
    --bg: #8d270b;
    font-size: 1rem;
    --width: 11.25rem;
    --height: 3.75rem;
    border: 0;
    position: relative;
    width: var(--width);
    min-height: var(--height);
    border-radius: var(--height);
    color: #fff;
    font-weight: bold;
    background: var(--bg);
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.button-2 .text,
.button-2 .icon-container {
    position: relative;
    z-index: 2;
}

.button-2 .icon-container {
    --icon-size: 25px;
    position: relative;
    width: var(--icon-size);
    height: var(--icon-size);
    margin-left: 15px;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.button-2 .icon-container .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--icon-size);
    height: var(--icon-size);
    -webkit-transition: opacity 250ms ease, -webkit-transform 500ms ease;
    transition: opacity 250ms ease, -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease, opacity 250ms ease;
    transition: transform 500ms ease, opacity 250ms ease;
    transition: transform 500ms ease, opacity 250ms ease, -webkit-transform 500ms ease;
}

.button-2 .icon-container .icon--left {
    -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
            transform: translateX(-200%);
    opacity: 0;
}

.button-2 .icon-container .icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.button-2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--btn-bg);
    border-radius: var(--height);
    z-index: 1;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.submit {
    margin-left: auto;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.button-2:hover::after {
    -webkit-transform: translateX(65%);
        -ms-transform: translateX(65%);
            transform: translateX(65%);
}

.button-2:hover .icon-container {
    -webkit-transform: translateX(125%);
        -ms-transform: translateX(125%);
            transform: translateX(125%);
}

.button-2:hover .icon-container .icon--left {
    -webkit-transform: translateX(-45%);
        -ms-transform: translateX(-45%);
            transform: translateX(-45%);
    opacity: 1;
}

.submit:hover .icon-container .icon--left {
    -webkit-transform: translateX(-35%);
        -ms-transform: translateX(-35%);
            transform: translateX(-35%);
    opacity: 1;
}

.button-2:hover .icon-container .icon--right {
    -webkit-transform: translateX(200%);
        -ms-transform: translateX(200%);
            transform: translateX(200%);
    opacity: 0;
}




.button.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.button.learn-more {
    width: 12rem;
    height: auto;
}

.button.learn-more .circle {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3.7rem;
    height: 3.7rem;
    background: var(--primary);
    border-radius: 1.85rem;
}

.button.learn-more .circle .icon {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.button.learn-more .circle .icon.arrow {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.90rem;
    width: 1.15rem;
    height: 0.15rem;
    background: none;
    z-index: 0;
}

.button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.288rem;
    right: 0.09rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.15rem solid #fff;
    border-right: 0.15rem solid #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    z-index: 1;
}

.button.learn-more .button-text {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0;
    margin: 0 0 0 2rem;
    color: var(--txtLight);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    /* text-transform: uppercase; */
}

.button:hover .circle {
    width: 100%;
}

.button:hover .circle .icon.arrow {
    background: #fff;
    -webkit-transform: translate(1rem, 0);
        -ms-transform: translate(1rem, 0);
            transform: translate(1rem, 0);
}

.button:hover .button-text {
    color: #fff;
}

.sec-title {
    position: relative;
    margin-inline: auto;
}


/* .text-center.sec-title::after{
   left: 50%;
   transform: translateX(-50%);
} */

.sec-title::after {
    position: absolute;
    bottom: 50%;
    left: -5%;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
    width: clamp(4rem, 10vw, 6rem);
    height: clamp(4rem, 10vw, 6rem);
    content: "";
    background-color: var(--tertiary);
    z-index: -1;
    border-radius: 50%;

}

.isolate {
    isolation: isolate;
}







/* --Header------ */
header {
    margin-top: -0.1rem;
}

.header-container {
    padding: 0 1rem;
    margin: 0 auto;
    max-width: var(--siteWidth);
    border-radius: 0 0 1.1rem 1.1rem
}

.ab-header {
    position: relative;
    z-index: 999;
    background-color: #fff;
    /* box-shadow: 0 0 2rem #00000015; */
}

.transparent.ab-header {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}


.ab-header-wrapper {
    min-height: var(--header-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative
}

.ab-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 0.5rem;
}

.ab-brand img {
    display: block;
    max-height: 2.5rem;
    width: auto
}

.brand-line-1 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: var(--txtDark);
    letter-spacing: 0.05rem;
}

.brand-line-2 {
    text-transform: capitalize;
    font-size: 0.81rem;
    font-weight: 400;
    line-height: 1rem;
    color: var(--txtLight);
    letter-spacing: 0.15rem;
}

.ab-nav-menu {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.menu-item,
.page_item {
    line-height: var(--header-height);
}

.menu-item a,
.page_item a,
.menu-item,
.page_item {
    font-size: .9rem;
    letter-spacing: .05rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--txtLight);
    opacity: 1;
}

.menu-item>a:hover,
.page_item>a:hover,
.menu-item:hover,
.page_item:hover {
    color: var(--primary);
}

.menu-item.current_page_item a,
.menu-item.current_page_item,
.page_item.current_page_item a,
.page_item.current_page_item {
    color: var(--primary);
    opacity: 1;
    font-weight: 700
}

.transparent .menu-item.current_page_item a,
.transparent .menu-item.current_page_item,
.transparent .page_item.current_page_item a,
.transparent .page_item.current_page_item {
    color: var(--primary);
    opacity: 1;
    font-weight: 700
}

.menu-item-has-children,
.page_item-has-children {
    position: relative;
    cursor: pointer
}

@media screen and (min-width:700px) {

    .menu-item-has-children:hover .sub-menu,
    .page_item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
    }

}

.sub-menu {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: calc(100% - .5rem);
    right: 0;
    z-index: 1000;
    list-style: none;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    font-weight: 400;
    border-radius: 1.1rem;
    padding: 2rem 0rem;
    -webkit-box-shadow: 0 0 2.5rem #0000001e;
            box-shadow: 0 0 2.5rem #0000001e
}

.sub-menu li {
    display: block;
    padding: 0 1.5rem;
}

.sub-menu .current_page_item,
.current_menu_item a {
    color: var(--primary);
    font-weight: 400;
}

.sub-menu li:not(:first-child) {
    margin-top: 1.5rem
}

.transparent .brand-line-1 {
    color: var(--txtWhite)
}

.transparent .brand-line-2 {
    color: var(--txtWhiteLight)
}

@media screen and (min-width:700px) {

    .transparent .menu-item:hover>a,
    .transparent .menu-item:hover,
    .transparent .page_item:hover>a,
    .transparent .page_item:hover {
        color: var(--primary)
    }

    .transparent .menu-item>a,
    .transparent .menu-item,
    .transparent .page_item>a,
    .transparent .page_item {
        color: var(--txtWhiteLight)
    }
}

.transparent .sub-menu li,
.transparent .sub-menu li a,
.sub-menu li,
.sub-menu li a {
    line-height: 1rem;
    color: var(--txtLight)
}

.sub-menu .menu-item a:hover,
.menu-item li:hover,
.sub-menu .page_item a:hover,
.page_item li:hover {
    color: var(--primary)
}

.sub-menu .current_page_item,
.current_menu_item a {
    color: var(--primary);
    font-weight: 700
}

.menu {
    display: none
}

.ab-header.scroll-down {
    position: sticky;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 999
}

.ab-header.scroll-up,
.ab-header.transparent.scroll-up {
    -webkit-box-shadow: 0 0 2rem #00000015;
            box-shadow: 0 0 2rem #00000015;
    background-color: #fff;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0);
    -webkit-transition: background-color .3s, -webkit-transform .3s ease-in-out;
    transition: background-color .3s, -webkit-transform .3s ease-in-out;
    -o-transition: background-color .3s, transform .3s ease-in-out;
    transition: background-color .3s, transform .3s ease-in-out;
    transition: background-color .3s, transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.ab-header.transparent.scroll-up .menu-item a,
.ab-header.transparent.scroll-up .menu-item,
.ab-header.transparent.scroll-up .page_item a,
.ab-header.transparent.scroll-up .page_item {
    color: var(--txtLight)
}

.ab-header.transparent.scroll-up .current_menu_item a,
.ab-header.transparent.scroll-up .current_menu_item,
.ab-header.transparent.scroll-up .current_page_item a,
.ab-header.transparent.scroll-up .current_page_item {
    color: var(--primary)
}

.ab-header.transparent.scroll-up .brand-line-1 {
    color: var(--txtDark)
}

.ab-header.transparent.scroll-up .brand-line-2 {
    color: var(--txtLight)
}


@media screen and (max-width: 700px) {
    * {
        --header-height: 4rem;
    }

    /* FOR MOBILE HEADER  */

    .ab-nav-menu {
        display: none;
    }

    .menu {
        display: block;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
        position: relative;
        overflow: hidden;
    }

    .ab-header-wrapper {
        min-height: 4rem;
    }

    .line {
        fill: none;
        stroke: var(--txtDark);
        stroke-width: 6;
        -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .transparent .line {
        stroke: var(--txtWhite);
    }

    .transparent.scroll-up .line {
        stroke: var(--txtLight);
    }

    .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }

    .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }

    .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }

    .opened .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }

    .opened .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }

    .opened .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }

    .brand-line-1 {
        font-size: 0.9rem;
    }

    .brand-line-2 {
        font-size: 0.76rem;
    }

    .ab-brand {
        font-size: 1.3rem;
    }

    .ab-brand img {
        max-height: 2rem;
    }

    .ab-nav-menu {
        margin-top: 1rem;
        /* border: 2px solid red; */
        background-color: white;
        -webkit-box-shadow: 0 0.5rem 1rem #00000011;
        box-shadow: 0 0.5rem 1rem #00000011;
        width: 100%;
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        top: var(--header-height);
        right: 0rem;
        z-index: 2;
        padding: 1rem;
        border-radius: 0.5rem;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-3rem);
        -ms-transform: translateY(-3rem);
        transform: translateY(-3rem);
        -webkit-transition: opacity 250ms, visibility 0ms linear 250ms,
            -webkit-transform 250ms ease-out;
        transition: opacity 250ms, visibility 0ms linear 250ms,
            -webkit-transform 250ms ease-out;
        -o-transition: opacity 250ms, transform 250ms ease-out,
            visibility 0ms linear 250ms;
        -webkit-transition: opacity 250ms, visibility 0ms linear 250ms, -webkit-transform 250ms ease-out;
        transition: opacity 250ms, visibility 0ms linear 250ms, -webkit-transform 250ms ease-out;
        transition: opacity 250ms, transform 250ms ease-out,
            visibility 0ms linear 250ms;
        transition: opacity 250ms, transform 250ms ease-out,
            visibility 0ms linear 250ms, -webkit-transform 250ms ease-out;
    }

    .ab-nav-item {
        display: block;
        line-height: 2.5rem;
    }

    .ab-nav-item a {
        font-size: 0.9rem;
        padding: 0;
    }

    .header-container {
        width: 100%;
    }

    .sub-menu {
        max-width: 100%;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        padding: 1rem 0;
        background-color: #00000009;
        position: static;
        display: none;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 250ms linear,
            -webkit-transform 250ms ease-out;
        transition: opacity 250ms linear, -webkit-transform 250ms ease-out;
        -o-transition: transform 250ms ease-out, opacity 250ms linear;
        -webkit-transition: opacity 250ms linear, -webkit-transform 250ms ease-out;
        transition: transform 250ms ease-out, opacity 250ms linear;
        transition: transform 250ms ease-out, opacity 250ms linear, -webkit-transform 250ms ease-out;
        transition: transform 250ms ease-out, opacity 250ms linear,
            -webkit-transform 250ms ease-out;
        -webkit-box-shadow: none;
                box-shadow: none;
    }

    .sub-menu li a {
        font-size: 0.8rem;
    }

    .drop {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .mobile {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }
    .menu-item, .page_item {
        line-height: 1.2rem;
    }

}

.top-bar-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-block: 0.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 0.1rem solid #ffffff30;
}

.top-bar-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.7rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.top-bar-item .emergency {
    display: inline-block;
}

.top-bar-item img {
    max-width: 1.1rem;
    height: auto;
}

.top-bar-item:not(:nth-of-type(2)) .text-body {
    font-size: 0.9rem;
}

/* For Glide */

.glide,
.glide2 {
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.glide * {
    -webkit-box-sizing: inherit;
            box-sizing: inherit
}

.glide__track {
    width: 100%;
    overflow: hidden
}

.glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -ms-touch-action: pan-Y;
        touch-action: pan-Y;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    will-change: transform
}

.glide__slides--dragging {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none
}

.glide__slide {
    width: 100%;
    cursor: -webkit-grab;
    cursor: grab;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: normal;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
    -webkit-user-select: none;
            user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none
}


.glide__arrows {
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 2;
    top: 50%;
    translate: 0 -50%;

}

.glide__arrow {
    margin: 0.5rem;
    padding: 0.5rem;
    border: none;
    background-color: var(--tertiary);
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0 0.4rem 1rem #0b416148;
            box-shadow: 0 0.4rem 1rem #0b416148;
}

.glide__arrow svg {
    display: block;
    width: 2rem;
    stroke: white;
    fill: none;
}


.glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    gap: 0.5rem;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    background-color: #00000050;
    padding: 0.5rem;
    border-radius: 5rem;
}

.glide__bullets::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 200%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #00000015;
    z-index: -1;
    border-radius: 3rem;
    -webkit-filter: blur(1rem);
            filter: blur(1rem);
}


.glide__bullet {
    width: max(1vw, 0.6rem);
    height: max(1vw, 0.6rem);
    border-radius: 50%;
    background-color: #ffffff50;
    outline: none;
    border: none;
}

.glide__bullet--active {
    background-color: #ffffff;
}

.glide--rtl {
    direction: rtl
}




/* HOMEPAGE ----------------------- */

.home1 {
    position: relative;
    isolation: isolate;
}


.full-bg {
    position: absolute;
    top: -4%;
    right: 0;
    -o-object-position: center center;
       object-position: center center;
    opacity: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}

.home1>div {
    /* padding-top: var(--header-height); */
    margin-top: calc(-1 * var(--header-height));
    height: 95svh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-shadow: 0 0.5rem 2rem #00000095;
}

.home1 .glide__slide {
    padding-top: 0;
    height: 100%;
    padding-bottom: 0;
}

.home1 .glide__track {
    height: 100%;
}

.home1 .glide__slides {
    height: 100%;
}

.home1 .glide__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home1 .banner {
    height: 100%;
    position: relative;
}

.home1 .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(79, 50, 103, 1)), color-stop(81%, rgba(79, 50, 103, 0.17)));
    background: -o-linear-gradient(top, rgba(79, 50, 103, 1) 0%, rgba(79, 50, 103, 0.17) 81%);
    background: linear-gradient(180deg, rgba(79, 50, 103, 1) 0%, rgba(79, 50, 103, 0.17) 81%);
}

.home1 .banner-content .ab-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    text-shadow: 0rem 0.5rem 2rem rgba(59, 39, 76, 0.894);
}

.home1 .banner-content p {
    max-width: 36rem;
}

.home2 .col1,
.home2 .col2 {
    position: relative;
}

.home2 .ab-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.bg-leaf {
    position: absolute;
    width: 70%;
    bottom: -20%;
    left: -40%;
    z-index: -1;
    rotate: 70deg;
    fill: var(--secondary);
    opacity: 100%;
    opacity: 0.7;
    -webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(75%) saturate(483%) hue-rotate(291deg) brightness(102%) contrast(104%);
            filter: brightness(0) saturate(100%) invert(97%) sepia(75%) saturate(483%) hue-rotate(291deg) brightness(102%) contrast(104%);
}

.bg-leaf2 {
    position: absolute;
    width: 70%;
    top: 0%;
    right: 20%;
    z-index: -1;
    rotate: -30deg;
    fill: var(--secondary);
    opacity: 100%;
    -webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(75%) saturate(483%) hue-rotate(291deg) brightness(102%) contrast(104%);
            filter: brightness(0) saturate(100%) invert(97%) sepia(75%) saturate(483%) hue-rotate(291deg) brightness(102%) contrast(104%);
}

.girl1 {
    max-width: 15rem;
    margin-left: auto;
    margin-top: -1rem;
    margin-right: 5rem;
    -webkit-filter: drop-shadow(0.5rem 1rem 3rem #4f326777);
            filter: drop-shadow(0.5rem 1rem 3rem #4f326777);
}



.features {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    translate: 0 0rem;
    background-color: white;
    -webkit-filter: drop-shadow(1rem 2rem 3.5rem #4f326730);
            filter: drop-shadow(1rem 2rem 3.5rem #4f326730);
    margin-bottom: -6rem;
    position: relative;
    gap: 0;
}

.features .item {
    text-align: center;
    width: 100%;
}

.features .item:nth-of-type(2) {
    border-inline: 0.1rem solid var(--tertiary);
}

.home3 .col1 {
    height: 100%;
}

.home3 .col1 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
}

.home3 .col2 {
    position: relative;
    isolation: isolate;
    padding-inline: 1rem;
}

.bg-leaf3 {
    position: absolute;
    width: 70%;
    top: 20%;
    right: -20%;
    z-index: -1;
    rotate: -10deg;
    opacity: 0.5;
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(148deg) brightness(102%) contrast(100%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(148deg) brightness(102%) contrast(100%);
}

.home4 .glide__bullets {
    gap: 0.5rem;
    position: absolute;
    bottom: 0rem;
    padding: 0.5rem;
    border-radius: 5rem;
    background-color: #00000010;
}

.home4 .glide__bullets::before {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 3rem;
    -webkit-filter: none;
            filter: none;
    background-color: transparent;
}

.home4 .glide__bullet {
    width: max(0.5vw, 0.2rem);
    height: max(0.5vw, 0.2rem);
    border-radius: 50%;
    background-color: #00000010;
    outline: none;
    border: none;
}

.home4 .glide__bullet--active {
    background-color: #ffffff;
}


.testi-item {
    margin-top: 3rem;
    position: relative;
    margin-inline: -1px;
    text-align: center;
    background-color: var(--tertiary);
    /* height: 100%; */
    min-height: 15rem;
    /* border-inline: 0.15rem solid #ffffff10 ; */
}

.testi-content .text-body {
    margin-block: -0.5rem;
    min-height: 6.5rem;
}

.testi-content .text-heading4 {
    color: var(--txtWhite);
}

.testi-logo {
    padding: 1rem;
    width: 6rem;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    top: 0;
    position: absolute;
    background-color: white;
    border-radius: 1rem;
    -webkit-filter: drop-shadow(0.2rem 0.5rem 1.5rem #4f326730);
            filter: drop-shadow(0.2rem 0.5rem 1.5rem #4f326730);
}

.testi-logo img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    aspect-ratio: 1;
}

.testi-content {
    margin-top: 3rem;
}



/* .content{
     align-self: flex-end;
 }
  */


.contact1 {
    isolation: isolate;
    position: relative;
    background-color: var(--secondary);
}

.contact1 .two-column {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.contact1 .full-bg {
    mix-blend-mode: multiply;
    opacity: 0.4;
    top: 0;
    -o-object-position: top left;
       object-position: top left;
}

.form-group {
    margin-top: 2rem;
    max-width: 30rem;
}

.form-group:first-of-type {
    margin-top: 0rem;
}


.contact-form label {
    display: block;
    color: var(--txtWhiteLight);
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
}

.contact-form .field {
    border: none;
    padding: 1.1rem;
    border-radius: 1rem;
    width: 100%;
    color: var(--txtWhiteLight);
    border: 0.0625rem solid var(--txtWhiteLight);
    background: none;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.contact-form .field::-webkit-input-placeholder {
    color: #ffffff70;
}

.contact-form .field::-moz-placeholder {
    color: #ffffff70;
}

.contact-form .field:-ms-input-placeholder {
    color: #ffffff70;
}

.contact-form .field::-ms-input-placeholder {
    color: #ffffff70;
}

.contact-form .field::placeholder {
    color: #ffffff70;
}

.contact-form .field:focus {
    outline: none;
}

.contact-form .btn img {
    width: 1.3rem;
    margin-left: 0;
}

.contact-details .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    background-color: #ffffff20;
    padding: 1rem;
    border-radius: 1rem;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.contact-details .item:not(:first-child) {
    margin-top: 1rem;
}

.contact-details .item .img {
    margin-top: 0.2rem;
    max-width: 1.5rem;
}

.contact-wrapper .details {
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 1.1rem;
}

.contact-details .item .text {
    line-height: 1.7rem;
    color: var(--txtWhiteLight);
    max-width: 25rem;
}

.contact-details .item .text b {
    margin-bottom: 1rem;
    color: var(--txtWhite);
}

.map {
    width: 100%;
}

.map iframe {
    width: 100%;
    max-width: 100%;
    height: 40vh;
    /* margin-bottom: -5px; */
}







/* Lite  Youtube----------- */


lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    width: 100%;
}



/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}

lite-youtube>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* play button */
lite-youtube>.lty-playbtn {
    display: block;
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    /* YT's actual play button svg */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    -webkit-transition: -webkit-filter .1s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-filter .1s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1), -webkit-filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: none;
}

lite-youtube:hover>.lty-playbtn,
lite-youtube .lty-playbtn:focus {
    -webkit-filter: none;
            filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
    cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated>.lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}



/* -----------------BLOG ------------------- */

.blog-card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #fff;
    margin-top: 4rem;
    --padding: clamp(1rem, 5vw, 2.5rem);
    padding: var(--padding);
    gap: var(--padding);
    border-radius: var(--padding);
    -webkit-box-shadow: .2rem .5rem 2rem #00000005;
            box-shadow: .2rem .5rem 2rem #00000005;
    -webkit-border-radius: var(--padding);
    -moz-border-radius: var(--padding);
    -ms-border-radius: var(--padding);
    -o-border-radius: var(--padding);
}

.blog-img {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 15rem;
            flex: 1 1 15rem;
}

.blog-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: calc(var(--padding) / 4);
    -webkit-border-radius: calc(var(--padding) / 4);
    -moz-border-radius: calc(var(--padding) / 4);
    -ms-border-radius: calc(var(--padding) / 4);
    -o-border-radius: calc(var(--padding) / 4);
}

.blog-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 25rem;
            flex: 1 1 25rem
}


@media screen and (min-width:700px) {
    .blog-card:nth-of-type(odd) .blog-img {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .blog-card:nth-of-type(odd) .blog-content {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1
    }

}

.btn-blog,
.btn-blog a,
.btn-blog,
.nav-previous a,
.nav-next a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
    color: var(--primary);
    font-weight: 800;
}

.nav-previous a,
.nav-next a {
    display: block;
    text-align: center;
    font-weight: 400;
}

.btn-blog img {
    border-radius: 0 !important;
    height: 1rem;
    width: auto
}








/* ----------------Article--------------- */
article {
    background-color: white;
    max-width: 55rem;
    margin-inline: auto;
}

.entry-content>* {
    margin-block: 1.3rem;
}

.entry-content {
    padding: 1rem clamp(1rem, 10vw, 6rem);
}

article h1,
article h2,
article h3,
article h4 {
    max-width: 58rem;
    margin-inline: auto;
    color: var(--txtDark);
}


article h2 {
    margin-block: unset;
    padding-top: 2rem !important;
}

article p,
.service1-content .content p {
    font-size: 1.1rem;
    line-height: 2.1rem;
    color: var(--txtLight);
}


article ul li,
article ol li,
.service1-content .content ul li,
.service1-content .content ol li {
    line-height: 2.1rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--txtLight);
    margin-left: 1rem;
}


article ul li:not(:last-of-type),
article ol li:not(:last-of-type),
.service1-content .content ul li:not(:last-of-type),
.service1-content .content ol li:not(:last-of-type) {
    margin-bottom: 1.5rem;
}


@media screen and (max-width:700px) {

    article p,
    .service1-content .content p {
        font-size: 1rem;
        line-height: 2rem;
    }

    article ul li,
    article ol li,
    .service1-content .content ul li,
    .service1-content .content ol li {
        font-size: 1rem;
    }
}



article ul li::marker,
article ol li::marker,
.service1-content .content ul li::marker,
.service1-content .content ol li::marker {
    color: var(--txtDark);
    font-weight: 800;
}

.wp-block-embed iframe {
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
}

figcaption {
    margin-inline: auto;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    color: var(--txtLight);
}

.attachment-post-thumbnail,
.size-post-thumbnail,
.wp-post-image {
    position: relative;
    width: 100%;
    height: auto;
}

.entry-content img {
    border-radius: 0.8rem;
}

.posts-navigation,
.post-navigation {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-inline: auto;
    margin-top: 2rem;
}

.posts-navigation .nav-links,
.post-navigation .nav-links {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

@media screen and (max-width:700px) {

    .posts-navigation .nav-links,
    .post-navigation .nav-links {
        font-size: 0.8rem;
    }

}




/* Style the comments section container */
.comments-area {
    margin-top: 3rem;
    font-family: "Roboto", sans-serif;
    max-width: 55rem;
    margin-inline: auto;
    background-color: white;
    padding: 2rem clamp(1rem, 10vw, 6rem);
    margin-bottom: 4rem;
}

.comments-area footer {
    background-color: unset;
    z-index: 0;
}

/* Style the comments title */
.comments-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--txtDark);
}

/* Style the comment list */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Style each individual comment */

.comment {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.vcard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.vcard img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    max-width: 2rem;
    margin-right: 1rem;
}

/* Style the comment author's name */
.comment .comment-author {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--txtLight);
}

/* Style the comment metadata (date and time) */
.comment .comment-metadata {
    color: #777;
    margin-top: 0.5rem;
}

.comment .comment-metadata * {
    color: #777;
}

/* Style the comment content */
.comment .comment-content {
    margin-top: 1rem;
    color: var(--txtLight);
}

.comment .comment {
    margin-top: 2rem;
}

.comment ol {
    list-style: none;
}

/* Style the comment reply link */
.comment .comment-reply-link {
    margin-top: 10px;
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
}

.comment .comment-reply-link:hover {
    background-color: #005bb9;
}

/* Style the comment form */
.comment-respond {
    margin-top: 2rem;
}

.comment-reply-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--txtLight);
}

.logged-in-as {
    margin-bottom: 1rem;
    color: var(--txtLight);
}

.comment-form-comment {
    margin-top: 2rem;
}

.comment-form-comment label {
    font-weight: bold;
    color: var(--txtLight);
}

.comment-form-comment textarea {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    resize: vertical;
    color: var(--txtLight);
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-top: 2rem;
}

.comment-form-cookies-consent {
    margin-top: 2rem;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    resize: vertical;
    color: var(--txtLight);
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    font-weight: bold;
    color: var(--txtLight);
}

.form-submit {
    margin-top: 20px;
}

.comments-area .submit {
    border: none;
    outline: none;
    padding: 1.3rem 2rem;
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    letter-spacing: 0.06rem;
    text-align: center;
    border-radius: 1rem;
    background-color: var(--primary);
    color: var(--txtWhite);
    font-weight: 800;
    -webkit-box-shadow: 0 0.5rem 1rem #664e0b1f;
            box-shadow: 0 0.5rem 1rem #664e0b1f;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.comments-area .submit:hover {
    -webkit-box-shadow: 0 0.7rem 1.5rem #664e0b34;
            box-shadow: 0 0.7rem 1.5rem #664e0b34;
    -webkit-transform: translateY(-0.2rem);
        -ms-transform: translateY(-0.2rem);
            transform: translateY(-0.2rem);
}





.service1-wrapper {
    margin-top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service1-sidebar {
    justify-self: flex-end;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 14rem;
    flex: 1 1 14rem;
}

.emergency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.emergency .col1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 2 4rem;
    flex: 1 2 4rem;
}

.emergency .col2 {
    -webkit-box-flex: 8;
    -ms-flex: 8 1 8rem;
    flex: 8 1 8rem;
}

.emergency img {
    max-width: 5rem;
}

.svem {
    border-radius: 1rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.svem .emergency .col1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 2 2.5rem;
    flex: 1 2 2.5rem;
}

.svem .emergency .col2 {
    -webkit-box-flex: 8;
    -ms-flex: 8 1 8rem;
    flex: 8 1 8rem;
}

.svem .emergency img {
    max-width: 4rem;
}

.svem-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: -1;
    mix-blend-mode: soft-light;
}

.service-list {
    /* position: sticky; */
    /* top: 2.5rem; */
    background-color: var(--tertiary);
    list-style: none;
    padding: clamp(1rem, 10vw, 2.5rem);
    border-radius: 1rem;
}

.service-list li {
    font-size: 0.94rem;
    color: var(--txtLight);
    line-height: 1.4rem;
    text-transform: capitalize;
}

.service-list li a {
    color: var(--txtLight);
    text-decoration: none;
}

.service-list li a:hover {
    color: var(--txtDark);
}

.service-list li.active>a {

    color: var(--primary);
    font-weight: 700;
}

.service-list li.active {

    color: var(--primary);
    font-weight: 700;
}

.service-list li:not(:first-of-type) {
    margin-top: 1rem;
}

.service1-content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1.7;
    -ms-flex: 1.7 1 30rem;
    flex: 1.7 1 30rem;
}

.service1-img {
    margin-bottom: 2rem;
}

.service1-img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    aspect-ratio: 16/9;
    border-radius: 1rem;
}

.service1-content strong {
    color: var(--txtLight);
}


.service1-content strong {
    color: var(--txtDark);
    font-weight: 700;
    letter-spacing: 0.02rem;
}

.service1-content .content>* {
    margin-block: 2rem;
}












footer {
    position: relative;
    z-index: 5;
    background-color: var(--body);
}

.footer-logo {
    max-width: 4.5rem;
}

.footer-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer-brand .text-heading2 {
    font-size: 1.5rem;
    line-height: 2rem;
}

.footer-nav ul {
    width: 100%;
    list-style: none;
    text-decoration: none;
    gap: 0.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2rem;
}

.footer-nav .menu-item,
.footer-nav .page_item {
    line-height: 1.2rem;
}

.footer-nav ul li {
    margin-inline: auto;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    display: block;
    font-size: 1rem;
    color: var(--txtLight);
    padding: 0 !important;
}

.footer-nav ul li a {
    font-size: 1rem !important;
    padding: 0 !important;
}

.footer-nav ul li:not(:first-of-type) {
    margin-top: 1.5rem;
}

footer .ab-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}


.social-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.1rem;
    list-style: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.social-wrapper .icon-link svg {
    width: 1.7rem;
    fill: white;
    stroke: none;
}

.social-wrapper .icon-link:hover svg {
    fill: white;
    stroke: none;
}

footer address {
    justify-self: flex-end;
    max-width: 30rem;
}

.footer-contact-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.1fr 1rem 1fr;
    grid-template-columns: 0.1fr 1fr;
    gap: 1rem;
}

.footer-contact-item a {
    margin-top: -0.5rem;
    /* vertical-align: middle; */
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.footer-contact-item:not(:last-of-type) {
    margin-bottom: 1rem;
}

.icon-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.5rem;
    text-decoration: none;
    color: #ffffffaa;
    width: 3rem;
    height: 3rem;
    -webkit-transition: .5s linear;
    -o-transition: .5s linear;
    transition: .5s linear;
    position: relative;
    z-index: 1;
    margin: auto;
    background-color: var(--secondary);
    border-radius: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.icon-link svg {
    width: 1.5rem;
    stroke: var(--txtWhite);
}

.icon-link:hover svg {
    stroke: white;
}

.icon-link i {
    margin: auto;
}

.icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 3rem;
    height: 3rem;
    background: #000000;
    border-radius: 50%;
    z-index: -1;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 0.3s cubic-bezier(.95, .32, .37, 1.21);
    -o-transition: 0.3s cubic-bezier(.95, .32, .37, 1.21);
    transition: 0.3s cubic-bezier(.95, .32, .37, 1.21);
}

.icon-link:hover::before {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.icon-item a:hover:before {
    background: var(--primary);
}

.icon-item.facebook a:hover:before {
    background: #3b5999;
}

.icon-item.insta a:hover:before {
    background: #e4405f;
}

.icon-item.linkedin a:hover:before {
    background: #0077B5;
}
.icon-item.youtube a:hover:before {
    background: #ff0000;
}


/* For Floating button  */
/* // Floating button */
.float-wrapper {
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 0rem;
    right: 0rem;
    z-index: 100;
    height: 100dvh;
    padding-bottom: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0.5rem;
}

.float-group {
    pointer-events: all;
    position: relative;
}

.float-form {
    padding: clamp(1rem, 5vw, 2rem);
    width: 25rem;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--secondary);
    z-index: 999;
    border-radius: 1rem;
}

.float-form .contact-form .btn img {
    width: 1.3rem;
    margin-left: 0;
}

.float-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.7rem;
    max-width: 16rem;
    background-color: var(--secondary);
    padding: 1rem;
    border-radius: 1rem;
    z-index: 998;
    cursor: pointer;
    position: relative;
}

.float-btn#whatsapp:hover {}

.float-btn .text-body {
    line-height: 1.2rem;
}

.float-btn img {
    max-width: 1.7rem;
}

.form-hide {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* .float-group:hover .form-hide{
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events:all;
} */

.btn-float-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}


.btn-float-close img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

/* .float-btn::before{
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: var(--secondary);
border-radius: 1rem;
z-index: -2;
} */

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

.float-btn#float-whatsapp:hover {
    background-color: #28D146;
}

.float-wrapper.scroll-down {
    -webkit-transform: translateX(110%);
        -ms-transform: translateX(110%);
            transform: translateX(110%);
    z-index: 999;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.float-wrapper.scroll-up {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
}


@media screen and (max-width:700px) {
    .float-wrapper {
        display: -ms-grid;
        display: grid;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        gap: 0;
        -ms-grid-columns: 1fr 0 1fr 0 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
        height: 100lvh;
        padding: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .float-btn {
        border-radius: 0;
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .float-group:nth-of-type(2) .float-btn {
        border-inline: 0.1rem solid #ffffff50;
    }

    .float-form {
        bottom: 1rem;
        /* right: 1rem; */
    }

    .float-btn img {
        max-width: 1.1rem;
    }

    .float-btn .text-body {
        line-height: 0.8rem;
        font-size: 0.6rem;
    }

    .float-wrapper.scroll-down {
        -webkit-transform: translateY(110%);
            -ms-transform: translateY(110%);
                transform: translateY(110%);
        z-index: 999;
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -o-transition: transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    }

    .float-wrapper.scroll-up {
        -webkit-transform: translateY(0%);
            -ms-transform: translateY(0%);
                transform: translateY(0%);
    }
}







@media screen and (max-width:700px) {

    .text-heading1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .text-heading2 {
        font-size: 1.8rem;
        line-height: 2.5rem;
    }

    .text-heading3 {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }

    .text-heading4 {
        font-size: 1.14rem;
    }

    .text-body {
        font-size: 0.9rem;
        line-height: 1.8rem;
    }

    .sec-title {
        text-align: center;
    }

    .text-mb-center {
        text-align: center;
        margin-inline: auto;
    }

    .mb-center {
        margin-inline: auto;
    }

    .mt-mb-4 {
        margin-top: 3rem;
    }

    .img-extra {
        max-width: 100vw;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .two-column {
        gap: 2.5rem;
    }

    .pb-mb-0 {
        -webkit-padding-after: 0;
                padding-block-end: 0;
    }

    .pt-6 {
        padding-top: 4rem;
    }

    .py-5 {
        padding-block: 4rem;
    }

    .my-6 {
        margin-block: 4rem;
    }

    .my-5 {
        margin-block: 4rem;
    }

    .mt-5 {
        margin-top: 4rem;
    }
    .mt-4{
        margin-top: 3rem;
    }
    .mb-3 {
        margin-bottom: 1.5rem;
    }

    .my-8 {
        margin-block: 6rem;
    }

    .top-bar-item {
        gap: 0.45rem;
    }

    .top-bar-item img {
        max-width: 0.85rem;
        height: auto;
    }

    .top-bar-item .text-body {
        font-size: 0.72rem;
    }

    .top-bar-item:not(:nth-of-type(2)) .text-body {
        font-size: 0.65rem;
    }

    .top-bar-item:nth-of-type(2) {
        display: none;
    }

    .top-bar-item .emergency {
        display: none;
    }


    .home1>div {
        height: 85lvh;
    }

    .home1 .text-heading1 {
        margin-top: 2.5rem;
        font-size: 1.7rem;
    }

    .features {
        margin-bottom: -3rem;
    }

    .glide__arrows {
        position: static;
    }

    .text-heading2.font-hd {
        letter-spacing: 0.2rem;
    }
    .blog-card{
        margin-top: 3rem;
    }
    .service1-wrapper{
        margin-top: 0;
    }
    .service1-img img{
        border-radius: 0;
    }
    .footer-nav ul {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        list-style: none;
        text-decoration: none;
        row-gap: 1rem;
        -webkit-column-gap: 1rem;
           -moz-column-gap: 1rem;
                column-gap: 1rem;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .footer-nav ul li {
        max-width: 100%;
        margin-inline: 0;
    }

    footer .col1 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .footer-nav ul li:not(:first-of-type) {
        margin-top: 0;
    }

    .features .item:nth-of-type(2) {
        border-block: 0.1rem solid var(--tertiary);
        border-inline: none;
    }

    .girl1 {
        margin-right: auto;
        max-width: 65%;
    }

}

.ti-review-item.source-Google .ti-inner {
    /* background-color: white !important; */
    border-radius: 1rem !important;
    font-family: 'Lato', sans-serif;
    color: var(--txtLight);
}

.bpa-front-tabs--panel-body .bpa-front-dc--body {
    min-height: 32rem !important;
    max-height: 64rem !important;
}


.pop-up{
    position: fixed;
    width: 90%;
    max-width: 30rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 2rem;
    border-radius: 1rem;
}

.btn-pop-up-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    filter: invert(100%);
}
.pop-up-hide{
    display: none;
    visibility: hidden;
    opacity: 0;
}
@media screen and (max-width:700px) {
    .pop-up .btn-primary{
        font-size: 0.95rem;
    }
}

.page-template article{
max-width: unset;
background-color: transparent;
}
.page-template article .entry-content{
max-width: unset;
padding: 0;
}