:root {
    --main-color: #643271;
    --sec-color: #d98b1c;
    --heading-color: #232331;
    --text-color: #1e1e1e;
    --white-color: #fff;
    --black-color: #000;
    --main-font: "EB Garamond", serif;
    --heading-font: "EB Garamond", serif;
    --button-font: "EB Garamond", serif;
    /* --main-font: "Figtree", sans-serif;
    --heading-font: "Figtree", sans-serif;
    --button-font: "Figtree", sans-serif; */
}

html,
body {
    font-family: var(--main-font);
}

a {
    text-decoration: none;
}

.container-fluid {
    padding: 0 4%;
}

@media (min-width: 1450px) {
    .container {
        max-width: 1500px;
    }
}

h1,
h2,
h3,
h5,
h6 {
    font-family: var(--heading-font);
}

p {
    font-family: var(--main-font);
}

.main_menu_hdr {
    background: none;
    z-index: 99;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 10px 0px;
}

.left_top {
    display: flex;
    justify-content: flex-start;
    width: 35%;
}

.right_top {
    width: 50%;
}

.main_menu {
    display: block;
    position: relative;
    background: none;
    padding: 0px;
    border-radius: 0;
}

.main_menu .navigation.navbar {
    padding: 0;
}

.container-menu {
    width: 80%;
    margin: 0 auto;
}

.logo {
    display: block;
    padding: 0 15px;
}

.logo a {
    position: relative;
    z-index: 1;
    width: 200px;
    display: block;
}

.logo a img {
    width: 100%;
}

.login_prf {
    padding: 0 4px;
}

.login_prf.e-store-btn a {
    background-color: var(--main-color);
}

.login_prf.e-store-btn a span {
    background-color: var(--sec-color);
}

.login_prf.e-store-btn a:hover span {
    background-color: var(--main-color);
}

.login_prf.e-store-btn a:hover {
    background-color: var(--sec-color);
}

.login_prf a {
    color: #fff;
    background: var(--sec-color);
    padding: 9px 9px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
}

.login_prf a span {
    /*margin-right: 5px;*/
    background-color: var(--main-color);
    border-radius: 40px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    left: -3%;
    top: 1px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.login_prf a span i {
    font-size: 16px;
}

.login_prf a:hover span {
    background-color: var(--sec-color);
}

.login_prf a:hover {
    background: var(--main-color);
}

.pure-button {
    color: var(--sec-color) !important;
    background: var(--main-color);
    padding: 7px 25px !important;
    border-radius: 30px;
    font-size: 16px !important;
    border: none;
    box-shadow: none;
    text-shadow: none;
    font-weight: 500;
    text-transform: uppercase;
}

.gift_seed_btn {
    position: fixed;
    right: 0;
    top: 20%;
    z-index: 999;
}

.gift_seed_btn a {
    background: var(--sec-color);
    color: #fff;
    padding: 21px 9px;
    border-radius: 15px 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    writing-mode: sideways-lr;
}

.gift_seed_btn a span {
    background-color: var(--main-color);
    border-radius: 40px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.banner_sec {
    width: 100%;
    background-size: cover;
    position: relative;
    top: 0;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    background-position: center;
}

/* .banner_sec:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
} */

.slide .slide__img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgb(0 0 0 / 40%) 0%,
        rgb(0 0 0 / 48%) 32%,
        rgb(0 0 0) 100%
    );
    z-index: 1;
}

.video_part {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slider,
.slide {
    height: 900px;
}

.slide {
    position: relative;
    transition: 1s;
}

.slide .slide__img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (min-width: 992px) {
    .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

.slide .slide__img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
    object-fit: cover;
}

.slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
}

.slide .slide__content.slide__content__left {
    left: 20%;
    transform: translate(-20%, -50%);
}

.slide .slide__content.slide__content__right {
    right: 15%;
    left: auto;
    transform: translate(5%, -50%);
}

.slide .slide__content--headings {
    color: #fff;
}

.slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
    animation: fadeInLeft 0.5s both 1.5s;
    letter-spacing: 2px;
}

.slide .slide__content--headings h5 {
    margin: 10px 0;
}

.slide .slide__content--headings .animated {
    transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
    font-family: var(--main-font);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInLeft 1s both 1.5s;
}

.slide .slide__content--headings .title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sec-color);
}

.slide .slide__content--headings .title span {
    color: var(--main-color);
}

.slide__img {
    position: relative;
}

.slide__img img.overlay-image {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 50%;
    height: 80%;
    object-fit: contain;
    z-index: 1;
}

.slidebottomleft {
    animation: fadeInUp 1.5s both 1.5s;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    top: 50%;
    right: 34px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 50px;
    transform: translate(0px, -50%);
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}

.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 1;
    width: 35px;
    height: 3px;
    padding: 0;
    border-radius: 30px;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
    color: var(--main-color);
    opacity: 1;
    width: 50px;
    background: var(--main-color);
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

.slider .slide.slick-active {
    animation: Slick-FastSwipeIn 1s both;
}

/* ==== Slider Image Transition === */
@keyframes Slick-FastSwipeIn {
    0% {
        transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
    }

    100% {
        transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
    }
}

@-webkit-keyframes ProgressDots {
    from {
        width: 0px;
    }

    to {
        width: 100%;
    }
}

@keyframes ProgressDots {
    from {
        width: 0px;
    }

    to {
        width: 100%;
    }
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }
}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }
}

.zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }

    to {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }

    to {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }
}

.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
    transition: 1s;
}

.slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
    left: 3%;
    transform: scaleX(-1);
    z-index: 1;
}

.slick-nav.next-arrow {
    left: auto;
    right: 3%;
}

.slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--active);
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
}

.slick-nav i:before {
    transform: rotate(-40deg);
}

.slick-nav i:after {
    transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
}

.slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
    animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
    animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
    animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
    animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }

    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }

    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }
}

@keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }

    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }

    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }
}

@-webkit-keyframes arrow {
    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    23% {
        transform: translateX(17px);
        opacity: 1;
    }

    24%,
    80% {
        transform: translateX(-22px);
        opacity: 0;
    }

    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}

@keyframes arrow {
    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    23% {
        transform: translateX(17px);
        opacity: 1;
    }

    24%,
    80% {
        transform: translateX(-22px);
        opacity: 0;
    }

    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}

@-webkit-keyframes arrowUp {
    0%,
    100% {
        transform: rotate(-40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

@keyframes arrowUp {
    0%,
    100% {
        transform: rotate(-40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

@-webkit-keyframes arrowDown {
    0%,
    100% {
        transform: rotate(40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

@keyframes arrowDown {
    0%,
    100% {
        transform: rotate(40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

/*-------- button Effect-------*/
.red_btn {
    display: inline-block;
    box-sizing: border-box;
    padding: 15px 40px;
    border-radius: 30px;
    position: relative;
    color: var(--white-color);
    background: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    border: none;
}

.red_btn span {
    font-weight: 500;
    position: relative;
    font-family: var(--button-font);
    letter-spacing: 2px;
    color: var(--white-color);
}

.red_btn:before {
    content: "";
    height: 0;
    width: 100%;
    transform: translateX(0%);
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--sec-color);
    border-radius: 30px;
    transition: all ease-in 0.3s;
}

.red_btn:hover:before {
    bottom: 0;
    transition: all ease-in 0.3s;
    height: 100%;
}

.red_btn:hover span {
    color: var(--white-color);
}

.red_btn.white_bg {
    color: var(--black-color);
    background: var(--white-color);
}

.red_btn.white_bg:before {
    background: rgb(255 255 255 / 50%);
}

.red_btn.white_bg span {
    color: var(--black-color);
}

.red_btn.black_bg {
    color: var(--white-color);
    background: var(--black-color);
}

.red_btn.black_bg:before {
    background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
    color: var(--white-color);
}

/*-------- button Effect-------*/
.heading_hp h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--sec-color);
    position: relative;
}

.heading_hp h6 {
    font-weight: 700;
    color: transparent;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 25px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    letter-spacing: 3px;
}

.heading_hp p {
    font-size: 16px;
    color: rgb(0 0 0 / 100%);
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* .heading_hp.text_white p {
    color: var(--white-color);
} */

.heading_hp.text_white h2 {
    color: var(--white-color);
}

.heading_hp.text_white h6 {
    -webkit-text-stroke-color: #fff;
    stroke: #fff;
}

.about_sec {
    padding: 80px 0;
    background: #fff;
    position: relative;
    border-radius: 0 0 30px 30px;
}

.img1 {
    width: 100%;
    position: relative;
    /* border-radius: 300px; */
    overflow: hidden;
    height: 300px;
}

.img1 img {
    /* border-radius: 30px; */
    width: 100%;
}

.img1 video {
    border-radius: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_part {
    position: relative;
    padding: 10px;
}

.img_part:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 100%;
    transform: translate(-50%, 0px);
    border: 2px dashed #434343;
    border-radius: 300px;
}

.after_about {
    /* background: var(--main-color); */
    position: relative;
}

.abt_text_white h4,
.abt_text_white p {
    color: var(--white-color);
}

.abt_text_white p {
    margin-bottom: 0;
}

.img_abt {
    width: 100%;
    margin-top: -80px;
    margin-bottom: 20px;
}

.img_abt img {
    width: 100%;
    -webkit-clip-path: polygon(0 0%, 100% 0, 100% 85%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0, 100% 85%, 0% 100%);
}

/* .first_abt{
  background: #9D2DBA;
  box-shadow: 0 0 45px rgb(0 0 0 / 15%);
} */
.abt_text_white {
    padding: 30px 0;
    height: 300px;
}

.real_solution_sec {
    padding: 100px 0;
    position: relative;
}

.real_solution_sec h4 a {
    font-size: 40px;
    color: #000;
}

.tow_box_j {
    width: 100%;
    border-radius: 0;
    transition: all ease-in 0.3s;
    box-shadow: 0 0 34px rgb(0 0 0 / 10%);
}

.bg_fight {
    width: 260px;
    position: absolute;
    right: 0;
    top: -111px;
}

.bg_fight img {
    width: 100%;
}

.solution_img {
    width: 100%;
    height: 230px;
}

.solution_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.real_solution_sec .text_white h6 {
    color: var(--white-color);
}

.box_solution {
    padding: 30px;
}

.box_solution h4 a {
    font-size: 24px;
    color: var(--black-color);
    transition: all ease-in 0.3s;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.box_solution p {
    transition: all ease-in 0.3s;
    color: var(--black-color);
    opacity: 0.5;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
}

.ellipss {
    padding: 0px 15px;
    background: var(--main-color);
    color: #fff;
    font-size: 23px;
    display: inline-block;
    margin-top: 16px;
}

.ellipss:hover {
    color: var(--white-color);
    background: var(--sec-color);
}

.box_blue {
    background: #fff;
    border: 1px solid rgb(255 255 255 / 50%);
    border-top: 0;
    min-height: 400px;
}

.box_red {
    background: var(--main-color);
}

.key_feature_sec {
    padding: 100px 0;
    position: relative;
}

.clild_box {
    position: relative;
}

.clild_box:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 90%;
    background: #e0e1e2;
    transform: translate(-50%, 14px);
}

.clild_sec {
    -webkit-clip-path: polygon(0 17%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 17%, 100% 0, 100% 100%, 0% 100%);
    background: #f2f2f2;
    padding: 50px 35px 15px;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: end;
}

.clild_sec:before {
    z-index: 1;
    content: "";
    position: absolute;
    background: linear-gradient(0deg, black, transparent);
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
}

.clild_sec img {
    margin: 0 auto 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
}

.ellipss_right {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -15px;
    background: var(--sec-color);
    bottom: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    border: 3px solid var(--white-color);
}

.ellipss_right:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.clild_sec.bg_fir {
    background: var(--main-color);
}

.clild_sec p {
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

/* .clild_sec.bg_fir img{
	filter: brightness(10);
} */

.clild_sec h4 {
    font-size: 18px;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

/* .one_cli {
    transform: rotate(350deg);
    position: relative;
}

.one_cli1 {
    transform: rotate(10deg);
    position: relative;
} */
.card-4 {
    position: sticky;
    top: 100px;
}

.card-img-top {
    border-radius: 16px;
    transition: all ease-in 0.3s;
    overflow: hidden;
    height: 500px;
    width: 100%;
}

.card-img-top img {
    border-radius: 16px;
    transition: all ease-in 0.3s;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.one_cli_nh {
    width: 60px;
    height: 70px;
    margin: 0 auto;
}

.one_cli_nh img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.padding_k {
    padding: 20px;
}

/*
.bounce_1 {
    animation-delay: 1s;
    animation: bounce 15s linear infinite;
}

.bounce_2 {
    animation-delay: 2s;
    animation: bounce1 15s linear infinite;
}

.bounce_3 {
    animation-delay: 3s;
    animation: bounce2 15s linear infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }

    33% {
        transform: translateY(-30px);
    }

    70% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce1 {
    0% {
        transform: translateY(0px);
    }

    33% {
        transform: translateY(20px);
    }

    70% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce2 {
    0% {
        transform: translateY(0px);
    }

    33% {
        transform: translateY(-20px);
    }

    70% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
} */

.key_bg {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
}

.key_bg img {
    width: 100%;
}

/* .key_bg linearGradient>stop {
  animation: move-forever 2s cubic-bezier(.55, .5, .45, .5) infinite;
  stroke: rgb(0 0 0 / 30%);
  stroke-width: .2;
}
.key_bg linearGradient>stop {
  animation-delay: -2s;
  animation-duration: 7s;
}

@keyframes move-forever {
  0% {
      transform: translate3d(-90px, 0, 0);
  }

  100% {
      transform: translate3d(85px, 0, 0);
  }
} */
.feature_v {
    color: rgb(30 30 30 / 10%);
}

.testimonial_sec {
    background: #643271;
    padding: 100px 0;
    position: relative;
    border-radius: 30px;
}

.testimonial_sec {
    position: relative;
    overflow: hidden;
}

.testimonial_sec .slick-slide {
    padding: 60px 0;
}

.testimonial_sec .heading_hp h6 {
    color: var(--text-color);
}

.testimonial_sec .heading_hp h2 {
    color: var(--white-color);
}

.testimonial_slider_wrap {
    background: var(--blue-color);
    border-radius: 115px;
}

.testimonial_slider {
    padding: 30px 0;
}

.testimonial_box {
    width: 100%;
    padding: 40px;
    margin: 0px;
    position: relative;
    background: var(--white-color);
    border: 6px solid #333;
    display: inline-block;
}

.testimonial_box.testimonial_box_1 {
    z-index: 1;
    background-color: #fff;
    position: relative;
    transform: rotate(-5deg);
}

.testimonial_box.testimonial_box_2 {
    background-color: #e1e1e1;
    transform: rotate(-7deg);
    z-index: 2;
}

.testimonial_box.testimonial_box_3 {
    z-index: 3;
    margin-top: 70px;
    position: relative;
    transform: rotate(2deg);
    background: var(--sec-color);
}

.testimonial_box.testimonial_box_4 {
    background: #2a2a2a;
    margin-top: -50px;
    transform: rotate(2deg);
    z-index: 4;
}

/* .testimonial_box:before {
    -webkit-clip-path: polygon(0 0%, 100% 17%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0%, 100% 17%, 100% 100%, 0% 100%);
    background: var(--white-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
} */

/* .testimonial_box.testimonial_box_2:before {
    -webkit-clip-path: polygon(0 17%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 17%, 100% 0, 100% 100%, 0% 100%);
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
} */

.testimonial_box .client_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: 0;
    right: 0;
    flex-shrink: 0;
}

.testimonial_box .client_img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial_box .client-text {
    color: var(--black-color);
    text-align: left;
    position: relative;
}

.testimonial_box .client-text h2 {
    font-size: 24px;
    font-family: var(--main-font);
}

.testimonial_box .client-text h2 span {
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    display: block;
    position: relative;
}

.testimonial_box .client-text ul {
    list-style: none;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 0;
    margin: 19px 0;
}

.testimonial_box .client-text ul li {
    padding: 0 2px;
    color: #ebb415;
}

.testimonial_box p {
    font-size: 16px;
}

.testimonial_box h2 {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--main-font);
    margin-bottom: 10px;
    padding-left: 5px;
}

.testimonial_box h5 {
    color: var(--text-color);
    font-size: 16px;
    color: #3c4252;
    font-weight: 600;
}

.testimonial_slider .slick-nav.prev-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    left: -5%;
    /*transform: translate(-48%, 0);*/
}

.testimonial_slider .slick-nav.next-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translate(-52%, 0);
}

.testimonial_slider .slick-nav {
    position: relative;
}

.testimonial_sec .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
    position: relative;
    margin: 0 auto;
    top: auto;
    left: auto;
    right: auto;
}

.testimonial_sec .slick-dots li {
}

.testimonial_sec .slick-dots button {
    background: #ffffff;
    border-radius: 50%;
    color: transparent;
    width: 5px;
    height: 5px;
    margin-right: 5px;
    border: none;
}

li.slick-active button {
    background: var(--main-color) !important;
}

.testimonial_slider .slick-nav::before {
    border-radius: 50%;
    content: "";
    border: 1px solid #fff;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    border-left: 0;
}

.testimonial_slider .slick-nav i {
    padding: 10px;
    color: var(--white-color);
}

.testimonial_slider .slick-nav.prev-arrow {
    left: 10%;
    transform: scaleX(-1);
    z-index: 999;
}

.testimonial_slider .slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    bottom: calc(8% - 44px);
}

.testimonial_box.testimonial_box_3 h2,
.testimonial_box.testimonial_box_3 p,
.testimonial_box.testimonial_box_4 h2,
.testimonial_box.testimonial_box_4 p {
    color: var(--white-color);
}

.tp-testimonial-bg {
    border-radius: 50px 50px 0 0;
    padding-top: 0px;
    padding-bottom: 0px;
}

.tp-testimonial-global img.global-img {
    text-align: center;
    animation: 30s cubic-bezier(1, 0.99, 0.03, 0.01) infinite animationglob;
    width: 800px;
    margin: 0 auto;
    padding-top: 100px;
    -webkit-animation: 50s cubic-bezier(1, 0.99, 0.03, 0.01) infinite
        animationglob;
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
}

.tp-testimonial-global img.overlay-img {
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
}

@keyframes animationglob {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gallery_sec {
    position: relative;
    width: 100%;
}

.margin_27 {
    margin: -27px 0;
}

.gallery_box {
    padding: 20px 0px;
    width: 100%;
    height: 250px;
}

.gallery_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery_sec .slick-slide.slick-current {
    transition: all ease-in 0.3s;
}

.gallery_sec .slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1.3);
    transition: all ease-in 0.3s;
}

.footer_sec {
    background: #f9f9f9;
    padding: 80px 0 0px;
}

.ftr_logo_sec .ftr_logo_right {
    width: 100%;
    height: 120px;
    display: block;
    margin-bottom: 20px;
    margin-left: 10px;
}

.ftr_logo_sec .ftr_logo_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.read_more_ftr {
    color: var(--sec-color);
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}

.ftr_logo_sec .ftr_logo {
    width: 120px;
    display: block;
    margin-bottom: 20px;
}

.ftr_logo_sec a img {
    width: 100%;
}

.ftr_logo_sec p {
    color: #000;
}

.ftr_logo_sec ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.ftr_logo_sec ul li {
    padding-right: 5px;
}

.ftr_logo_sec ul li a {
    background: rgb(217 139 28 / 18%);
    width: 35px;
    height: 35px;
    display: flex;
    color: var(--sec-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all ease-in 0.3s;
}

.ftr_logo_sec ul li a:hover {
    color: #fff;
    transition: all ease-in 0.3s;
    background: rgb(100 50 113 / 28%);
}

.find-us h4 {
    color: #000;
    margin-bottom: 25px;
}

.add-icon span i {
    color: var(--sec-color);
}

.add-text h4 {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 18px;
    color: var(--white-color);
    font-family: var(--text-font);
    margin-bottom: 5px;
}

.add-text p,
.add-text a {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--white-color);
    text-decoration: none;
    font-family: var(--text-font);
    margin-bottom: 0;
}

.add-icon {
    padding-right: 20px;
}

.add {
    padding-bottom: 20px;
}

.ftr-frm form .form-group .form-control {
    background: rgb(0 0 0 / 10%);
    border-radius: 0px;
    border: none;
    margin-bottom: 10px;
    color: #000;
}

.ftr-frm form .form-group textarea.form-control {
    border-radius: 0px;
    height: 100px;
}

.ftr-frm .form-group .form-control::-webkit-input-placeholder {
    /* Edge */
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--text-font);
    color: rgb(0 0 0 / 50%);
}

.ftr-frm .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer */
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--text-font);
    color: rgb(0 0 0 / 50%);
}

.ftr-frm .form-group .form-control::placeholder {
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--text-font);
    color: rgb(0 0 0 / 50%);
}

.quick_links {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    margin-bottom: 15px;
    padding-bottom: 0;
}

.quick_links h5 {
    color: var(--white-color);
    margin-bottom: 0;
    padding-bottom: 15px;
}

.quick_links_ul ul {
    display: flex;
    /* justify-content: center; */
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.quick_links_ul ul li {
    margin-bottom: 0px;
    padding: 0 20px;
}

.quick_links_ul ul li a {
    color: var(--white-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}

.copy_1 {
    width: 100%;
    display: block;
    padding: 15px 0;
    text-align: center;
    background: var(--sec-color);
    margin-top: 45px;
}

.copy_1 p {
    color: rgb(255 255 255 / 50%);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.copy_1 p a {
    text-decoration: none;
    color: rgb(255 255 255 / 50%);
}

/*------------- Inner Page ----------------- */

.inner_banner_sec {
    padding: 190px 0 130px 0;
    position: relative;
}

.inner_banner_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(6 9 16 / 70%);
}

.inner_banner_ontent {
    position: relative;
    z-index: 9;
}

.inner_banner_ontent h1 {
    font-size: 70px;
    font-family: var(--heading-font);
    color: var(--sec-color);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.inner_banner_ontent h4 {
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-size: 60px;
    font-weight: 300;
}

.inner_banner_ontent p {
    color: var(--white-color);
}

.inr_latest:before {
    content: none;
}

.inner_after_about .after_abt {
    background: var(--main-color);
    padding: 0 50px;
}

.inner_after_about .bg_abt {
    background: var(--main-color);
}

.inner_after_about .abt_text_white {
    height: auto;
}

.inner_after_about .img_abt {
    margin-top: -40px;
}

.inner_after_about .after_abt .abt_text_white p {
    text-align: justify;
}

.our_work_sec {
    background: #e2e2e2;
    padding: 100px 0;
}

.our_text.text_white h2 {
    color: var(--sec-color);
}

.our_text img {
    width: 100%;
}

.project_sec {
    background: var(--sec-color);
    padding: 100px 0;
}

.project_sec .heading_hp h6 {
    color: var(--white-color);
}

.project_sec .heading_hp h2 {
    color: var(--black-color);
}

.project_sec .row .col .project {
    background: var(--main-color);
    border-radius: 10px;
}

.project_sec .row .col:nth-child(even) .project {
    background: var(--white-color);
}

.project_sec .row .col:nth-child(odd) .project h4,
.project_sec .row .col:nth-child(odd) .project ul li {
    color: var(--white-color);
}

.project_sec .row .col .project ul li {
    margin-bottom: 5px;
}

.project {
    padding: 20px;
    min-height: 400px;
}

.contact-us {
    position: relative;
}

.contact-wrap-main {
    margin: 50px 0px;
}

.contact-left h2 {
    font-size: 70px;
    font-weight: 600;
}

.contact-left p {
    font-size: 15px;
    margin-bottom: 0px;
    line-height: 1;
}

.contact-form {
    /* margin: 20px 0px; */
    padding: 60px 60px 60px 60px;
}

.contact-us .form-group-wrap {
    margin: 0 0 14px 0px;
}

.contact-us .contact-form .form-control {
    padding: 15px 10px;
}

.contact-us .contact-form textarea.form-control {
    height: 150px;
}

.contact-us .contact-form .send-msg .btn {
    /* background: var(--sec-color); */
    color: var(--white-color);
    font-size: 16px;
    box-shadow: none;
    outline: none;
    padding: 13px 0px;
    width: 30%;
    border-radius: 40px;
}

/* .contact-us .contact-form .send-msg .btn:hover {
    background: var(--main-color);
    color: var(--white-color);
} */

.contact-right {
    position: relative;
    padding: 27px 40px;
    box-shadow: 10px 25px 50px rgb(0 0 0 / 20%);
    border-radius: 20px;
    margin-top: 0px;
}
.contact-left {
    box-shadow: 10px 25px 50px rgb(0 0 0 / 20%);
    border-radius: 20px;
}
.contact-info {
    margin-bottom: 0px;
    padding: 30px 0px;
    border-bottom: 1px solid rgb(0 0 0 / 50%);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info:last-child {
    border: none;
    margin: 0px;
}

.contact-us .con-icon {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-align: center;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .con-text {
    margin-top: 10px;
}

.contact-us .con-text a {
    color: #161723;
    text-decoration: none;
    font-size: 17px;
}

.contact-us .con-text h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--sec-color);
}

.map-sec iframe {
    filter: grayscale(1);
}

.catagory_sec {
    padding: 100px 0;
}

.form-control {
    font-size: 15px;
    font-weight: 300;
    line-height: 21px;
    padding: 15px;
    color: #282828;
    border-color: transparent;
    border-radius: 0;
    background-color: #f7f7f8;
    box-shadow: none !important;
}

.form-control,
.form-control:focus {
    color: #000;
    border-width: 1px;
    border-style: solid;
    outline: 0 none;
    background-color: #f7f7f8;
    box-shadow: none !important;
}

.wpcf7 form .wpcf7-response-output {
    position: fixed;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: 999;
}

.right_img_single {
    padding-left: 15px;
    padding-bottom: 15px;
    width: 500px;
    float: right;
}

.left_img_single {
    padding-right: 15px;
    padding-bottom: 15px;
    width: 500px;
    float: left;
}

.right_img_single img,
.left_img_single img {
    width: 100%;
}

.after_about_hm .abt_text_white h4,
.after_about_hm .abt_text_white p {
    color: var(--black-color);
}

.abt_text_white {
}

.after_about.after_about_hm {
    padding: 50px 0px;
    background: #f9f9f9;
}

.after_about_hm .first_abt_1 {
    background: transparent;
    box-shadow: none;
}

.flex-fixed {
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.srl {
    width: 100%;
    max-height: 280px;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 10px;
}

#srl_1::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #ccc;
}

#srl_1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--main-color);
}

.after_about_hm .abt-box-1 {
    /* background-image: url(../images/bk_1.png);
    background-repeat: no-repeat;
    background-size: contain; */
    width: 100%;
    height: 700px;
}

.after_about_hm .img_abt {
    margin-top: 50px;
}

.about_four_ii {
    width: 100%;
    border: 1px solid #d7d7d7;
    background: #ffffff;
    border-radius: 10px;
    padding: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 22%);
    height: 225px;
    object-fit: cover;
}

.gallery_page_sec .picture_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.gallery_page_sec {
    padding: 100px 0;
}

.picture_wrapper {
    width: 100%;
    height: 300px;
    display: block;
    position: relative;
    overflow: hidden;
}
.picture_wrapper::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(12, 90, 233, 0.2);
    /* border-radius: 100%; */
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.picture_wrapper:hover::before {
    -webkit-animation: circle 9s;
    animation: circle 0.9s;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.picture_wrapper span {
    position: absolute;
    background-color: var(--main-color);
    transition: 0.3s;
}
.picture_wrapper .one {
    height: 0;
    width: 3px;
    top: 0;
    left: 0;
}
.picture_wrapper .two {
    height: 3px;
    width: 0;
    bottom: 0;
    left: 0;
}
.picture_wrapper .three {
    height: 0;
    width: 3px;
    bottom: 0;
    right: 0;
}
.picture_wrapper .four {
    height: 3px;
    width: 0;
    top: 0;
    right: 0;
}
.picture_wrapper:hover .one,
.picture_wrapper:hover .three {
    height: 100%;
}
.picture_wrapper:hover .two,
.picture_wrapper:hover .four {
    width: 100%;
}
.picture_wrapper:hover img {
    transition-duration: 0.3s;
    transition-delay: 0.3s;
    opacity: 0.5;
}
.picture_wrapper .magni-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: var(--main-color);
    opacity: 0;
    transition: 0.3s;
}
.picture_wrapper:hover .magni-icon {
    opacity: 1;
}

.srlt {
    width: 100%;
    min-height: 150px;
    height: 234px;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 10px;
}

.srlt::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #ccc;
}

.srlt::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--main-color);
}

.lion_aducation img {
    width: 100%;
    border-radius: 12px;
}

.map-location {
    position: absolute;
}

.map-location-details {
    display: none;
    background: url(../../assets/images/back_tooltrip.jpg);
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 250px;
    overflow: hidden;
    overflow-y: auto;
    height: 250px;
    z-index: 999;
}

.map-location-details::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #ccc;
}

.map-location-details::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--main-color);
}

.map-point {
    display: flex;
    position: absolute;
    top: -10px;
    left: -10px;
    width: 150px;
    height: 150px;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.nyc1 {
    top: 38%;
    right: 37%;
    transform: translate(33%, -39%);
}

.nyc2 {
    top: 66%;
    right: 44%;
    transform: translate(44%, -66%);
}

.nyc3 {
    top: 66%;
    right: 33%;
    transform: translate(33%, -66%);
}

.governance_sec {
    padding: 100px 0;
}

.single_img_lion {
    width: 100%;
}

.single_img_lion img {
    width: 100%;
}

.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 8px 6px !important;
}

.gt_float_switcher {
    font-size: 14px !important;
}

.gt_float_switcher img {
    width: 20px !important;
}

.right_tran {
    position: relative;
    height: auto;
}

.gt_float_switcher .gt_options {
    position: absolute !important;
    background: #fff !important;
}

.gt_float_switcher .gt_options a {
    padding: 4px 8px !important;
    width: 117px !important;
}

.inner_faq_sec {
    padding: 100px 0;
}

.inner_faq_sec .accordion-button {
    font-size: 22px;
    font-family: var(--heading-font);
}

.inner_faq_sec .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--main-color);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    font-weight: 600;
}
.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.login-sec {
    padding: 100px 0;
}

.login_bg_sec {
    background: #fff;
    box-shadow: 0 0 38px rgb(0 0 0 / 10%);
    padding: 15px;
    border-radius: 15px;
    border-top: 7px solid #643271;
}

.login_bg_sec .login-username .input,
.login_bg_sec .login-password .input {
    width: 100%;
    max-width: 100% !important;
    border: 1px solid rgb(0 0 0 / 29%);
    padding: 8px;
    border-radius: 6px;
}

.login_bg_sec .login-submit .button {
    background: #643271;
    color: #fff;
    border: none;
    padding: 8px 40px;
    border-radius: 30px;
}

.login-sec .pmpro_member_log_out a {
    background: #643271;
    color: #fff;
    border: none;
    padding: 8px 40px;
    border-radius: 30px;
    margin-top: 15px;
    display: inline-block;
}

.pmpro_table.pmpro_checkout {
    width: 100%;
}

.pmpro_table.pmpro_checkout thead {
    background: #643271;
    color: #fff;
}

.pmpro_table.pmpro_checkout thead tr th {
    padding: 10px;
}

.pmpro_table.pmpro_checkout tbody tr td {
    padding: 10px;
}

.pmpro_table.pmpro_checkout tbody tr,
.pmpro_table.pmpro_checkout thead tr {
    border-width: 0.2px;
}

.pmpro_actions_nav a {
    background: #643271;
    color: #fff;
    padding: 9px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 15px;
}

.pmpro_actions_nav a:hover {
    background: var(--sec-color);
    color: #fff;
}

.pmpro_btn,
.pmpro_btn:link {
    background-color: #643271 !important;
    color: #fff !important;
    padding: 13px 20px !important;
    border-radius: 30px !important;
}

.checkout-cancel {
    position: absolute;
    bottom: 36px;
    left: 15%;
    background: var(--sec-color);
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 30px;
}

.checkout-cancel:hover {
    background: var(--main-color);
    color: #fff;
}

.member-ship-sec {
    padding: 100px 0;
}

.member-ship-sec .pmpro_table thead {
    background: #643271;
    color: #fff;
}

.member-ship-sec .pmpro_table thead tr th {
    padding: 10px;
}

.member-ship-sec .pmpro_table tbody tr td {
    padding: 10px;
}

.member-ship-sec .pmpro_table tbody tr,
.member-ship-sec .pmpro_table thead tr {
    border-width: 0.2px;
}

.member-ship-sec .pmpro_account-membership-levelname .pmpro_actionlinks a {
    background-color: #643271 !important;
    color: #fff !important;
    padding: 5px 20px !important;
    border-radius: 30px !important;
}

.member-ship-sec
    .pmpro_account-membership-levelname
    .pmpro_actionlinks
    a:hover {
    background-color: var(--sec-color) !important;
    color: #fff !important;
}

.pmpro_actionlinks a {
    background-color: #643271 !important;
    color: #fff !important;
    padding: 6px 20px !important;
    border-radius: 30px !important;
    margin-top: 10px;
}

.pmpro_actionlinks a:hover {
    background-color: var(--sec-color) !important;
    color: #fff !important;
}

#pmpro_account .pmpro_box ul {
    list-style: none;
    padding-left: 0;
}

.member-ship-sec .heading_hp h2 {
    font-size: 30px;
    margin-bottom: 5px !important;
}

.member-ship-sec #pmpro_account #pmpro_account-profile {
    background: #e6e6e6;
    padding: 20px;
    border: 0;
}

.profile-sec {
    padding: 100px 0;
}

.profile_page_inr {
    background: #fff;
    box-shadow: 0 0 38px rgb(0 0 0 / 10%);
    padding: 15px;
    border-radius: 15px;
    border-top: 7px solid #643271;
}

.profile_page_inr .pmpro_member_profile_edit-fields input {
    width: 100%;
    max-width: 100% !important;
    border: 1px solid rgb(0 0 0 / 29%);
    padding: 8px;
    border-radius: 6px;
}

.profile_page_inr .pmpro_checkout_box-password input {
    width: 100%;
    max-width: 95% !important;
    border: 1px solid rgb(0 0 0 / 29%);
    padding: 8px;
    border-radius: 6px;
}

.profile_page_inr form.pmpro_form .pmpro_asterisk abbr {
    color: #ff0000;
}

.profile_page_inr .pmpro_btn.pmpro_btn-cancel {
    text-decoration: none;
}

.pmpro_member_display_name a {
    color: #643271;
}

.modal_code .modal-content {
    background: none;
}

.modal_code .pmpro_login_wrap h2 {
    display: none;
}

.modal_code .pmpro_actions_nav a {
    background: none;
    color: #643271;
    padding: 0px 0px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 0;
}

.modal_code .pmpro_actions_nav {
    text-align: left !important;
}

.modal_code .login_bg_sec .login-username .input,
.modal_code .login_bg_sec .login-password .input {
    border: none;
    border-bottom: 1px solid rgb(0 0 0 / 29%);
    border-radius: 0px;
}

.modal_code .login_bg_sec .login-username .input:focus-visible,
.modal_code .login_bg_sec .login-password .input:focus-visible {
    outline: none;
}

.modal_code .pmpro_actions_nav {
    margin-bottom: 0;
}

.login_privacy {
    color: #000;
}

.login_privacy:hover {
    color: #643271;
}

.donate_bg_sec .modal-dialog {
    max-width: 685px;
}

.donate_bg_sec .asp_product_buy_btn.blue {
    color: var(--sec-color) !important;
    background: var(--main-color);
    padding: 7px 25px !important;
    border-radius: 30px;
    font-size: 16px !important;
    border: none;
    box-shadow: none;
    text-shadow: none;
    font-weight: 500;
    text-transform: uppercase;
}

.donate_bg_sec .asp_product_buy_btn.blue:hover {
    color: var(--main-color) !important;
    background: var(--sec-color);
    text-shadow: none !important;
}

#pmpro_user_fields .pmpro_checkout-h2-msg a {
    display: none;
}

.asp-thank-you-page-msg2,
.asp-thank-you-page-product-name,
.asp-thank-you-page-qty,
.asp-thank-you-page-item-price {
    display: none !important;
}

.asp-thank-you-page-msg1 {
    position: relative;
    font-size: 0 !important;
    color: #dff0d8 !important;
}

.asp-thank-you-page-msg1:before {
    content: "Thank you for your donation";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50px;
    color: #858585;
    font-size: 30px !important;
}

.modal_checkbox {
    width: 100%;
    text-align: center;
}

.modal_checkbox .form-group {
    display: block;
    margin-bottom: 15px;
}

.modal_checkbox .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.modal_checkbox .form-group label {
    position: relative;
    cursor: pointer;
}

.modal_checkbox .form-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid var(--main-color);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.modal_checkbox .form-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 22px;
    width: 6px;
    height: 14px;
    border: solid var(--main-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.continue-btn {
    background: var(--main-color);
    color: var(--sec-color);
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
    pointer-events: none;
}

#myButton.changed {
    opacity: 1;
    pointer-events: auto;
}

.ftr-frm .main-btn .red_btn:hover {
    background: var(--sec-color);
}

.join_member_box h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--sec-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.join_member_box ul {
    list-style: auto;
}
.card-text-box p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    word-break: break-word;
    overflow-wrap: break-word;
}
.word-litmit {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Suscription */
.pricing-div-box {
    text-align: center;
    padding: 30px 30px;
    background: rgb(251 234 255);
    position: relative;
    border-radius: 0px 0px 30px 30px;
    overflow: hidden;
    border: 2px solid #633170;
}

.pricing-div-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(153deg, #643271 35%, rgb(37 0 47) 90%);
    z-index: 0;
    border-radius: 0px 0px 30px 30px;
}

.pricing-div-box h4 {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 40px;
}

.pricing-div-box p {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    min-height: 190px;
}

.pricing-rate h3 {
    font-weight: 600;
    color: #000;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #fff;
    margin-top: -85px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 20px 0;
    font-size: 35px;
}

/* .active-plan-div {
    background: var(--main-color);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}
.active-plan-div h4{
  color: var(--white-color);
  font-size: 35px;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
} */
.active-g {
    padding: 10px;
    transform: rotate(330deg);
    position: absolute;
    top: 3px;
    left: 3px;
}

.active-g::before {
    position: absolute;
    content: "";
    background: #e6e9ff;
    width: 238px;
    height: 28px;
    top: 6px;
    left: -65px;
    z-index: -1;
    overflow: hidden;
}

.active-g h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--main-color);
    margin-bottom: 0;
}

.pricing-rate h5 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-top: 10px;
}

/*---- Profile -----*/
/* login form */
.logo-admin {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.logo-admin img {
    width: 100%;
    height: 100%;
}

.modal-header {
    background-color: #643271;
    color: #fff;
}

.admin-srl {
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 10px;
}

#admin-srl_1::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #ccc;
}

#admin-srl_1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--main-color);
}

.login-submit .button {
    background: #643271;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#sign-in-form label {
    font-size: 16px;
    color: rgb(0 0 0 / 100%);
    font-weight: 600;
}

#login-submit {
    width: 100%;
}

.join_member a {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    padding: 0px 10px;
}

/* loader */

.loading {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

.loading-content {
    position: absolute;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #e51d2a;
    border-radius: 50%;
    width: 74px;
    height: 74px;
    top: 40%;
    left: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* end loader */
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    position: relative !important;
}

.main_menu_hdr {
    position: absolute;
}

/*.banner_sec{*/
/*    margin-top: -3rem;*/
/*}*/
/*.inner_banner_sec*/
/*{*/
/*    margin-top: -3rem;*/
/*}*/

/* .right-site-btns {
    align-items: center;
    justify-content: space-between;
    width: 100%;
} */

.goog-te-gadget img {
    display: none;
}

.goog-te-gadget {
    font-size: 0px !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    font-size: 0px !important;
}

/* .goog-te-gadget .goog-te-combo {
    padding: 9px 15px;
    border-radius: 20px;
    border: none;
} */
.goog-te-gadget .goog-te-combo {
    /* Force padding behavior */
    padding: 9px 15px !important;

    /* Safari requires explicit height */
    height: 40px;
    line-height: 22px;

    /* Box model fix */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    /* Appearance reset (CRITICAL for Safari) */
    -webkit-appearance: none;
    appearance: none;

    /* Border radius */
    -webkit-border-radius: 20px;
    border-radius: 20px;

    /* Remove default border/background quirks */
    border: none;
    outline: none;
    background-color: #fff;
    background-clip: padding-box;

    cursor: pointer;
}

.goog-te-gadget .goog-te-combo {
    height: 36px;
    line-height: 14px;
    padding: 9px 22px 7px 7px !important;
    text-indent: 0px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border: none;
    background-color: #fff;
    box-sizing: border-box;
    min-width: 120px;
}

/* .project p{
    white-space: normal;
    word-wrap: break-word;
    color: #fff;
} */
.project_sec .row .col .project p {
    color: #fff;
    white-space: normal;
    word-wrap: break-word;
}

.project_sec .row .col:nth-child(even) .project p {
    color: #000;
    white-space: normal;
    word-wrap: break-word;
}

.project_sec .row .col .project .text-box {
    width: 100%;
    height: 300px;
    overflow: auto;
    padding-right: 20px;

    /* Optional smooth look */
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: #888 #f1f1f1;
    /* thumb color | track color */
}

/* For Chrome, Edge, Safari */
.project_sec .row .col .project .text-box::-webkit-scrollbar {
    width: 2px;
    /* Thin scrollbar */
}

.project_sec .row .col .project .text-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Scrollbar track color */
    border-radius: 10px;
}

.project_sec .row .col .project .text-box::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Scrollbar thumb color */
    border-radius: 10px;
}

.project_sec .row .col .project .text-box::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Darker on hover */
}

/* ======================Country flags css========================================= */
/* Overlay background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.flag-areas {
    width: 100%;
    height: 500px;
    overflow: auto;
    margin: 20px 0px;
}
/* Popup box */
.popup-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: popupScale 0.3s ease;
    height: 350px;
    position: relative;
}
.country-name {
    font-weight: 600;
    font-size: 16px;
}
.xmark_btn {
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    top: 10px;
}
/* Animation */
@keyframes popupScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* .popup-btn {
    margin-top: 15px;
    background-color:;
} */

/* Flag grid */
.flag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.flag-grid .flag-box {
    width: 100%;
    height: 100px;
}
.flag-grid .flag-main-box {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    border: 1px solid #ccc;
}

.flag-grid .flag-main-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/*======================popup search css==========================*/
.form-box {
    width: 80%;
}
.popup-logo {
    width: 100px;
    height: 100px;
    overflow: hidden;
    /*margin: 0 auto;*/
}
.popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.popup-text-box h2 {
    color: #643271;
    font-weight: 900;
    margin-bottom: 0px;
}
.top-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.popup_countrySwitcher {
    width: 100%;
}
.popup_countrySwitcher div:first-child {
    display: block !important;
}

.popup_countrySwitcher select {
    padding: 15px;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border: 2px solid #643271;
    border-right: none;
    padding: 10px;
    /*height: 20px;*/
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #643271;
}

.searchTerm:focus {
    color: #643271;
}

.searchButton {
    width: 50px;
    /*height: 36px;*/
    border: 1px solid #643271;
    background: #643271;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap {
    width: 80%;
    float: right;
}
.wrap h4 {
    text-align: left !important;
    font-size: 18px;
}

.post-link {
    display: grid;
    position: relative;
}

.card-corner {
    z-index: 2;
    background-color: #fff;
    border-top-left-radius: 2em;
    width: 58px;
    height: 58px;
    position: absolute;
    inset: auto 0% 0% auto;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.article.card-5 .badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.article .badge {
    display: inline-flex;
    padding: 7px 14px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border-radius: 25px;
    background: #fff;
    color: #000;
}

.card-corner::before {
    content: "";
    position: absolute;
    border-top-left-radius: 2.5em;
    width: 120%;
    height: 120%;
    z-index: 1;
    background-color: #fff;
}

.arrow-box {
    z-index: 4;
    display: flex;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: #fff;
    position: absolute;
    inset: 8px 0% 0% 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ccc;
}

.curve-one {
    position: absolute;
    content: "";
    top: -16px;
    right: -1px;
    background: transparent;
    width: 16px;
    height: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.card-corner.no-border .curve-one {
    top: -16px;
    right: 0px;
    border: none;
}

.curve-two {
    position: absolute;
    content: "";
    bottom: -1px;
    left: -16px;
    background: transparent;
    width: 16px;
    height: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.card-corner.no-border .curve-two {
    bottom: 0px;
    left: -16px;
    border: none;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    margin-top: 0px;
}

.article.card-4 .card-body {
    border: 1px solid #ccc;
    background-color: #fff;
    backdrop-filter: blur(15px);
    padding: 40px 34px 25px 34px;
    border-radius: 20px;
}

.page {
    width: 30vw;
    height: 44vw;
    background-color: #111111;
    float: left;
    margin-bottom: 0.5em;
    background: left top no-repeat;
    background-size: cover;
}

.page:nth-child(even) {
    clear: both;
}

.book {
    perspective: 250vw;
    position: relative;
    display: flex;
    align-items: center;
}

.book .pages {
    width: 76vw;
    height: 44vw;
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-radius: 4px;
    /*box-shadow: 0 0 0 1px #e3dfd8;*/
    margin: 0 auto;
}

.page_logo {
    width: 350px;
    margin: 30px auto 50px;
    object-fit: contain !important;
}

.book .page.first_page {
    padding: 20px 40px;
    overflow-y: hidden;
}

.book .page {
    float: none;
    clear: none;
    margin: 0;
    position: absolute;
    top: 0;
    width: 38vw;
    height: 44vw;
    transform-origin: 0 0;
    transition: transform 1.4s;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
    user-select: none;
    background-color: #f0f0f0;
    padding: 20px;
    overflow: hidden;
}

.book .page img {
    max-width: 300px;
    margin-bottom: 20px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
}

.book .page:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.7s;
    z-index: 2;
}

.book .page:nth-child(odd) {
    pointer-events: all;
    transform: rotateY(0deg);
    right: 0;
    border-bottom: 20px solid #d98b1c;
    border-radius: 0 4px 4px 0;
    background-image: linear-gradient(
        to right,
        rgb(217 139 28 / 37%) 0%,
        rgb(100 50 113 / 11%) 10%
    );
}

.book .page:nth-child(odd):hover {
    /* transform: rotateY(-15deg); */
}

.book .page:nth-child(odd):hover:before {
    background: rgba(0, 0, 0, 0.03);
}

.book .page:nth-child(odd):before {
    background: rgba(0, 0, 0, 0);
}

.book .page:nth-child(even) {
    pointer-events: none;
    transform: rotateY(180deg);
    transform-origin: 100% 0;
    left: 0;
    border-radius: 4px 0 0 4px;
    border-color: black;
    background-image: linear-gradient(
        to left,
        rgb(217 139 28 / 37%) 0%,
        rgb(100 50 113 / 11%) 10%
    );
}

.book .page:nth-child(even):before {
    background: rgba(0, 0, 0, 0.2);
}

.book .page.grabbing {
    transition: none;
}

.book .page.flipped:nth-child(odd) {
    pointer-events: none;
    transform: rotateY(-180deg);
}

.book .page.flipped:nth-child(odd):before {
    background: rgba(0, 0, 0, 0.2);
}

.book .page.flipped:nth-child(even) {
    pointer-events: all;
    transform: rotateY(0deg);
}

.book .page.flipped:nth-child(even):hover {
    /* transform: rotateY(15deg); */
}

.book .page.flipped:nth-child(even):hover:before {
    background: rgba(0, 0, 0, 0.03);
}

.book .page.flipped:nth-child(even):before {
    background: rgba(0, 0, 0, 0);
}

.design_page {
    position: absolute;
    bottom: 0;
    background: #643271;
    width: 100%;
    height: 20px;
    left: 0;
}

.design_page_right {
    position: absolute;
    bottom: 0;
    background: #d98b1c;
    width: 100%;
    height: 20px;
    left: 0;
}

.promo-box-container {
    position: relative;
    margin: auto;
    display: block;
    margin-top: 3%;
    max-width: 1000px;
    width: 100%;
    min-height: 225px;
    background:
        linear-gradient(rgb(217 139 28), rgb(217 139 28)),
        url(https://placeimg.com/940/300/any) no-repeat 100%;
    z-index: 1;
    -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 21px;
    overflow: hidden;
}

.promo-box-container .right-triangle {
    position: absolute;
    bottom: 0%;
    right: 0%;
    height: 100%;
    width: 50%;
    background:
        linear-gradient(rgb(100 50 113), rgb(100 50 113)),
        url(https://placeimg.com/940/300/any) no-repeat 100%;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.promo-box-container .linkspanner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.promo-box-container .title {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 40px;
    position: absolute;
    top: 50%;
    left: 36%;
    margin-right: 8%;
    margin-top: 0;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.promo-box-container .title a {
    text-decoration: none;
    color: #fff;
}

.promo-box-container .title span.lighter {
    font-weight: 300;
}

.promo-box-container .cta-button {
    background: rgba(241, 143, 1, 1);
    position: absolute;
    bottom: 30px;
    right: 30px;
    float: right;
    text-decoration: none;
    font-weight: 600;
    z-index: 99;
    -o-transition:
        color 0.5s,
        background-color 0.5s;
    -ms-transition:
        color 0.5s,
        background-color 0.5s;
    -moz-transition:
        color 0.5s,
        background-color 0.5s;
    -webkit-transition:
        color 0.5s,
        background-color 0.5s;
    transition:
        color 0.5s,
        background-color 0.5s;
}

.promo-box-container .cta-button:hover {
    color: #000;
    background-color: #f3a32f;
}

.book-text-mobile-slider {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    border-bottom: 10px solid #643271;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0px 15px #ccc;
}
.book-text-mobile-slider .img-box {
    width: 170px;
    height: 170px;
    overflow: hidden;
    margin-bottom: 20px;
}
.book-text-mobile-slider .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.client-reviews {
    width: 100%;
    height: 300px;
    overflow-y: scroll;
    padding-right: 10px;
}

/* Chrome / Safari smooth scrolling on mobile */
.client-reviews {
    -webkit-overflow-scrolling: touch; /* for smooth momentum scroll */
}

/* Optional: custom scrollbar for desktop */
.client-reviews::-webkit-scrollbar {
    width: 4px;
}

.client-reviews::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.client-reviews::-webkit-scrollbar-thumb {
    background: var(--sec-color);
    border-radius: 4px;
}

.reviews_slider .slick-slide {
    margin: 20px 10px; /* left + right margin */
}
.after_about_for_mobile {
    display: none;
}

.right_top .input-group {
    width: auto !important;
}

.header-flag-box {
    border-radius: 40px !important;
    background-color: #fff !important;
    /* overflow: hidden !important; */
}
.header-flag-box span {
    font-size: 14px !important;
}
.header-flag-box .input-group div:nth-child(2) {
    border: none !important;
    min-width: auto !important;
    background-color: #fff !important;
    border-radius: 40px !important;
    min-width: 200px !important;
}

/* =======================mobile menu css========================= */
.for-mobile-use {
    width: 50%;
}

/* ===========================inner page css ================================== */
.about_text_new_p p {
    font-size: 24px;
    color: #000;
    line-height: 1.2;
}
.about_text_new_p h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--sec-color);
}
.about_text_new_p ol li {
    font-size: 20px;
}
.about_text_new_p ol li strong,
.about_text_new_p ol li b {
    color: var(--main-color);
}

.lion_aducation {
    /* margin-bottom: 15px; */
    background-color: #ccc;
    padding: 10px;
    border-radius: 20px;
}
.contact-form .iti {
    width: 100%;
}
/* =====================subscription page design css============================ */
:root {
    --theme: #643271;
    --theme-dark: #4b254f;
    --theme-50: rgba(100, 50, 113, 0.06);
    --theme-25: rgba(100, 50, 113, 0.02);
}

.tier-card {
    position: relative;
    border-radius: 0.8rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    /* overflow: hidden; */
    /* border-bottom-left-radius: .8rem; */
    /* border-bottom-right-radius: .8rem; */
    border: 1px solid #ccc !important;
}

.tier-card::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 15px;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    background: linear-gradient(90deg, var(--theme), var(--theme-dark));
}

.tier-card::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    background: linear-gradient(
        90deg,
        var(--theme-25),
        rgba(100, 50, 113, 0.02)
    );
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(100, 50, 113, 0.14);
}
.tier-card.active-card {
    transform: scale(1.1) !important;
}
.ribbon {
    /* position: absolute; */
    top: 0px;
    right: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    background: var(--theme);
    color: #fff;
    padding: 6px 40px;
    /* transform: rotate(45deg); */
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(100, 50, 113, 0.12);
    /* margin-bottom:20px; */
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
    font-size: 20px;
}

.badge-price {
    background: linear-gradient(90deg, var(--theme-50), var(--theme-25));
    border: 1px solid rgba(100, 50, 113, 0.12);
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
}

.btn-upgrade {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
    padding: 0.6rem 1rem;
    font-weight: 700;
}

.btn-upgrade:hover {
    background: var(--theme-dark);
    border-color: var(--theme-dark);
    box-shadow: 0 10px 30px rgba(100, 50, 113, 0.12);
}
.card-content-body {
    padding: 30px;
}

.left-book-sec {
    position: absolute;
    padding: 25px 50px 25px 200px;
}
.left-book-sec .left-sec-img {
    width: 500px;
    height: 600px;
    /* background-color: #222; */
}
.left-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}
@media all and (max-width: 600px) {
    .promo-box-container {
        position: relative;
        margin: auto;
        display: block;
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
        /* width: 300px; */
        /* height: 200px; */
        z-index: 1;
        color: #000;
        /* background: linear-gradient(rgba(241, 143, 1, 0.9), rgba(241, 143, 1, 0.9)),
            url("https://placeimg.com/300/300/any") no-repeat 90%; */
    }

    .promo-box-container .title {
        font-size: 24px;
        line-height: 28px;
    }

    /* .promo-box-container .title span.lighter {
        font-size: 19px;
        display: block;
        line-height: 24px;
        margin-top: 10px;
    } */

    .promo-box-container .cta-button {
        font-size: 12px;
        top: auto;
    }

    .promo-box-container .right-triangle {
        width: 39%;
        /* background: linear-gradient(rgba(128, 0, 128, 0.6), rgba(128, 0, 128, 0.6)),
            url("https://placeimg.com/300/300/any") no-repeat 90%; */
    }
}

.copy_text-bottom {
    width: 100%;
    height: auto;
    background-color: #2a2a2a;
}
.copy_text-bottom p {
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    margin-bottom: 0px;
}
.footer_sec .input-group {
    justify-content: end;
}
.footer_sec .input-group span {
    text-align: left;
}
/* =====================09-12-2026============================ */
.red_btn.flag-btn {
    padding: 8px 40px;
}
.popup_countrySwitcher img {
    margin-right: 5px;
}

.project_sec.project_sec_second {
    background-color: #cacaca;
}
.heading_hp.heading_hp_modal h2 {
    font-size: 30px;
}
.heading_hp.heading_hp_modal h4 {
    font-size: 18px;
    margin-bottom: 30px;
}
.login_bg_sec.login_bg_sec_modal {
    background: #fff;
    box-shadow: 0 0 38px rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: 15px;
}
.join_member.join_member_modal a {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    padding: 0px 10px;
}

.bank-details-box h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
}

.bank-details-box h3 {
    font-size: 16px;
    color: #4b254f;
}
.bank-details-box p {
    font-size: 14px;
}
.bank-details-box {
    border: 1px solid #643271;
    padding: 20px;
    border-radius: 10px;
}
.payment-option-form {
    border: 1px solid #643271;
    padding: 20px;
    border-radius: 10px;
}
.modal-body.modal-body-inter-code {
    padding: 3rem;
}
.pure-u-1 legend {
    border-bottom: 1px solid #643271;
}

.for-mobile-use .desktop-use-menu {
    display: none;
}
.view-only-mobile {
    display: none;
}

/* =======================book css================================ */
.page:first-child:hover {
    transform: rotateY(0deg);
}

.book .page {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.book .page {
    overflow: hidden;
}

/* .book .page p {
  height: 30%;
  overflow-y: auto;
  padding: 1.2vw;
  margin: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
} */

.book .page {
    overflow-x: hidden;
    overflow-y: auto;
}

/* macOS Safari hard reset for native select */

select {
    -webkit-appearance: none;
    appearance: none;

    /* remove Safari bevel */
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    outline: none;

    /* underline style */
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;

    padding: 6px 28px 6px 0;
    font-size: inherit;
    line-height: 1.4;
}

/* remove focus glow */
select:focus {
    outline: none;
    box-shadow: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 12px;
}

select {
    -webkit-appearance: none !important;
}

/* ======================css by p 30-12-2025============================ */
.book-sec {
    background: #f9f9f9;
    width: 100%;
    padding: 80px 0px 0px 0px;
}
.book-section {
    height: 100vh;
    width: 100%;
    text-align: center;
}

.main-book-box {
    height: 800px;
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    perspective: 2000px;
}

.main-book-box .right {
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    transform-origin: left;
    transition: 0.7s ease-in-out;
    transform-style: preserve-3d;
}

.main-book-box .right.flip {
    transform: rotateY(-180deg);
}

.main-book-box .right .front,
.main-book-box .right .back {
    position: absolute;
    inset: 0;
    background: white;
    backface-visibility: hidden;
    padding: 30px;
    text-align: left;
    overflow: hidden;
    border-bottom: 20px solid #643271;
}

.main-book-box .right .front {
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
}

.main-book-box .right .back {
    transform: rotateY(180deg);
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 2px 15px rgba(0, 0, 0, 0.2);
}

/* 🔥 MOST IMPORTANT FIX */
.main-book-box .back .back-inner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;

    /* counter rotate */
    /* transform:rotateY(180deg); */
}

/* SCROLL AREA */
.about-person-text {
    margin-top: 15px;
    /* height:calc(100% - 120px); */
    height: 410px;
    overflow-y: auto;
    padding-right: 10px;
    font-size: 16px;
}

/* BUTTONS */
button.book-button {
    margin: 30px 10px 0px 10px;
    padding: 6px 20px;
    border: 2px solid var(--sec-color);
    background: transparent;
    color: var(--sec-color);
    cursor: pointer;
    border-radius: 5px;
}

button.book-button:hover {
    background: var(--sec-color);
    color: #fff;
}

.outhor-img {
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 20px;
    border-radius: 10px;
}

.outhor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Chrome / Safari smooth scrolling on mobile */
.about-person-text {
    -webkit-overflow-scrolling: touch; /* for smooth momentum scroll */
}

/* Optional: custom scrollbar for desktop */
.about-person-text::-webkit-scrollbar {
    width: 4px;
}

.about-person-text::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.about-person-text::-webkit-scrollbar-thumb {
    background: var(--sec-color);
    border-radius: 4px;
}

.slid_bh .slick-nav {
    --active: #643271;
    --border: #643271;
    /* border: var(--main-color); */
    /* color: var(--main-color); */
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}
.slid_bh .slick-nav.prev-arrow {
    left: 0%;
    transform: scaleX(-1);
    z-index: 1;
}
.slid_bh .slick-nav.next-arrow {
    left: auto;
    right: 0%;
}
