body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    direction: rtl;
    font-family: "Lato", sans-serif;
}

* {
    box-sizing: border-box;
}

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.heading_h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
/*     color: #03002E; */
	background: linear-gradient(90deg, #3B82F6 0%, #06B6D4 54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.small_title {
    color: #03002E;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.paragraph {
    color: #E3E4E6;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.main_btn {
    padding: 14px 30px;
    color: #E3E4E6;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    transition: 0.5s ease-in-out;
    border-radius: 50px;
    border: 2px dashed #F38304;
    display: inline-block;
}

.main_btn:hover {
    background: #F9D339;
    border: 2px dashed #F9D339;
    color: #03002E;
}

/*---------------
# Header
-----------------*/
#header {
    background: rgb(227, 228, 230, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 18px 0px;
}

#header.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: #03002E;
    opacity: 1;
}

#header .logo a {
    text-transform: uppercase;
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

#header .navbar {
    gap: 18px 30px;
    padding: 0px;
    justify-content: start;
    max-width: 830px;
    margin: auto;
    margin-left: 0;
}

#header .navbar .nav_content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn_desktop {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: end;
}

#header .navbar .nav_content {
    transition: 0.5s ease-in-out;
}

#header .navbar .nav_content .dropdown {
    position: relative;
    display: flex;
    justify-content: center;
}

#header .navbar .nav_content li a {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.5s ease-in-out;
    color: #E3E4E6;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 7px 20px;
    border: 1px dashed #E3E4E6;
    border-radius: 50px;
    line-height: 18px;
    background: transparent;
}

#header .navbar .nav_content li a:hover {
    color: #03002E;
    background: #F9D339;
    border: 1px dashed #F9D339;
}

#header .navbar ul.nav_content li.current-menu-item a{
    color: #03002E;
    background: #F9D339;
    border: 1px dashed #F9D339;
}

.woo_icon ul {
    display: flex;
    gap: 20px;
}

.woo_icon ul li a img {
    transition: 0.3s ease-in-out;
}

.woo_icon ul li a:hover img {
    transform: scale(0.9);
}

#header .navbar .dropdown .sub_dropdown {
    width: 485px;
    display: block;
    position: absolute;
    top: 72px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    margin: auto;
    padding: 30px 40px;
    background: #FFF;
    display: flex;
    gap: 50px;
}

#header.header-scrolled .navbar .dropdown .sub_dropdown {
    top: 58px;
}

#header .navbar .dropdown .sub_dropdown ul {
    padding-left: 15px;
}

#header .navbar .dropdown .sub_dropdown ul li {
    list-style: disc;
    color: #232323;
}

#header .navbar .dropdown .sub_dropdown li a {
    padding: 12px 0px;
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    color: #232323;
    position: relative;
    transition: 0.5s ease-in-out;
    display: block;
    width: fit-content;
    text-transform: capitalize;
}

#header .navbar .dropdown .sub_dropdown li a:hover {
    color: #E8A839;
}

#header .navbar .dropdown .sub_dropdown a i {
    font-size: 12px;
}

#header .navbar .dropdown:hover>.sub_dropdown {
    opacity: 1;
    visibility: visible;
}

#header .navbar .dropdown:hover>a>i {
    transform: rotate(180deg);
}

#header .navbar .dropdown .dropdown .sub_dropdown {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

#header .navbar .dropdown .dropdown:hover>.sub_dropdown {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

/* Mobile Navigation  */

.mobile-nav-toggle {
    display: none;
    transition: 0.5s ease-in-out;
    font-size: 30px;
    line-height: 0;
    cursor: pointer;
    color: #FFF;
}

.header_contact {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    border-bottom: 1px solid rgb(227, 228, 230, 30%);
    padding-bottom: 15px;
}

.header_contact .header_contact_social ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
}

.header_contact .header_contact_social ul li a img {
    width: 30px;
    transition: 0.3s ease-in-out;
}

.header_contact .header_contact_social ul li a:hover img {
    transform: scale(0.9);
}

.header_contact .header_contact_item a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #E3E4E6;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    unicode-bidi: plaintext;
    transition: 0.3s ease-in-out;
}

.header_contact .header_contact_item a:hover {
    color: #F9D339;
}

.header_contact .header_contact_item a img {
    transition: 0.3s ease-in-out;
}

.header_contact .header_contact_item a:hover img {
    transform: scale(0.9);
}

@media (max-width: 1200px) {
    #header .navbar {
        gap: 18px 20px;
    }

    #header .navbar .nav_content {
        gap: 10px;
    }

    #header .navbar .nav_content li a {
        font-size: 16px;
    }

}

@media (max-width: 1023px) {
    #header .logo img {
        width: 90px;
    }

    .mobile-nav-toggle {
        display: block;
        color: #FFF;
    }

    #navbar {
        position: fixed;
        left: -100%;
        top: 115px;
        z-index: 9999;
        overflow-y: auto;
        background: #000000;
        padding: 20px !important;
        width: 100%;
    }

    #header .navbar .nav_content li a:hover svg path {
        stroke: #E8A839;
    }

    #header .navbar .nav_content li a:hover svg {
        transform: unset;
    }

    #navbar.navbar-mobile {
        left: 0;
        transition: 0.3s ease-in;
        max-width: 100%;
        flex-direction: column-reverse;
        align-items: start;
    }

    #header .navbar.navbar-mobile .nav_content {
        order: 1;
    }

    .navbar .nav_content {
        display: none;
    }

    #header .navbar .nav_content li a.link-hover svg {
        transform: rotate(180deg) !important;
    }

    .navbar .nav_content li:last-child a {
        margin-bottom: 0px;
    }

    #header .navbar .nav_content li {
        display: block;
        position: unset;
        padding: 0px;
        padding-bottom: 20px;
    }

    #header .navbar .nav_content li:last-child {
        padding-bottom: 0px;
    }

    #header .navbar .nav_content li.dropdown {
        display: block;
        padding: 0px;
        padding-bottom: 20px;
    }

    .navbar .dropdown ul li a {
        color: #FFF;
    }

}

@media (max-width: 767px) {
    .header_contact {
        flex-direction: column;
        align-items: start;
    }

}

#header .navbar.navbar-mobile .nav_content {
    display: block;
    margin-top: 0;
}

#header .navbar.navbar-mobile .nav_content .dropdown .sub_dropdown,
#header .navbar.navbar-mobile .nav_content .dropdown .dropdown .sub_dropdown {
    position: unset;
    top: 0rem;
    left: 15rem;
    padding: 10px 0 20px;
    display: none;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: transparent;
    transition: all 0.5S;
    width: 266px;
}

#header .navbar.navbar-mobile .nav_content .dropdown .sub_dropdown li,
#header .navbar.navbar-mobile .nav_content .dropdown .dropdown .sub_dropdown li {
    min-width: 200px;
    padding-bottom: 0px;
}

#header .navbar.navbar-mobile .nav_content .dropdown .sub_dropdown a i,
#header .navbar.navbar-mobile .nav_content .dropdown .dropdown .sub_dropdown a i {
    font-size: 12px;
}

#header .navbar.navbar-mobile .nav_content .dropdown>.dropdown-active,
#header .navbar.navbar-mobile .nav_content .dropdown .dropdown>.dropdown-active {
    display: block;
    margin: unset;
    padding-bottom: 0px;
}

#header .navbar.navbar-mobile .nav_content .dropdown>.header-scrolled .mobile-nav-toggle {
    color: #FFF;
}

.header-scrolled .mobile-nav-toggle.bi-x {
    color: #FFF;
}

/*---------------
  # End Header
  -----------------*/

/* Banner Section */
.banner_section {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-image: url('../images/banner-video.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner_section .banner_content {
    padding: 280px 0px 92px;
    position: relative;
}

.banner_text {
    max-width: 500px;
}

.banner_text h2 {
    color: #E3E4E6;
}

.banner_text p {
    margin-top: 25px;
    font-weight: 600;
}

.banner_text .main_btn {
    margin-top: 50px;
}

.banner_text small {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #F38304;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

.banner_img {
    position: relative;
    text-align: center;
    z-index: 1;
}

.banner_img img {
    max-width: 100%;
}

.banner_img::after {
    content: "";
    position: absolute;
    background-image: url(../images/bg_moving_effect.webp);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    top: -50px;
    z-index: -1;
    transform-origin: center center;
    animation: rotateInPlace 15s linear infinite;
}

@keyframes rotateInPlace {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* banner End  */


/* Whatsapp */
.Whatsapp_icon {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 99;
}

/* Custom Prediction */

.custom_prediction {
    padding-top: 100px;
}

.prediction_content {
    max-width: 1290px;
    margin: auto;
}

.prediction_image img {
    max-width: 100%;
}

.prediction_text {
    padding: 0px 42px;
}

.prediction_text small {
    margin-bottom: 20px;
}

.prediction_text p {
    color: #03002E;
    padding-top: 25px;
    opacity: 0.6;
}

.prediction_text .main_btn {
    margin-top: 50px;
    color: #03002E;
}


/* Selected Chapter */
.selected_chapter {
    padding-top: 100px;
}

.chapter_title {
    margin-bottom: 50px;
}

.chapter_image {
    position: relative;
}

.chapter_image img {
    width: 10%;
    border-radius: 10px;
}

.chapter_text {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.chapter_text h3 {
    color: #03002E;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /*max-width: 250px;*/
}

.chapter_text p {
    white-space: nowrap;
    color: #03002E;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.chapter_text p span {
    /*color: rgba(3, 0, 46, 0.50);
    font-size: 16px;
    text-decoration-line: line-through;*/
}

.chapter_btn {
    margin-top: 50px;
}

.chapter_btn .main_btn {
    color: #03002E;
}

.chapter_carousel button.owl-prev,
.chapter_carousel button.owl-next {
    position: absolute;
    top: 0px;
    right: -20px;
    bottom: 70px;
    margin: auto;
    width: 42px;
    height: 42px;
    background: #E3E4E6 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapter_carousel button.owl-next {
    right: unset;
    left: -20px;
}


.chapter_carousel button.owl-prev:hover,
.chapter_carousel button.owl-next:hover {
    background: #f38304 !important; 
}

.chapter_carousel .owl-nav button:hover i {
    color: #FFF;
}


/* Workshop Section */

.workshop_section {
    padding-top: 100px;
    position: relative;
    margin-bottom: -210px;
    z-index: 1;
}

.workshop_box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.70);
    transition: 0.7s ease-in-out;
}

.workshop_image img {
    width: 100%;
    border-radius: 10px;
}

.workshop_text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    gap: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
    opacity: 0;
    transition: 0.7s ease-in-out;
}

.workshop_text h3 {
    color: #E3E4E6;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 55px;
    max-width: 380px;
    position: relative;
    bottom: -320px;
    transition: 0.7s ease-in-out;
}

.workshop_box:hover .workshop_text {
    opacity: 1;
}

.workshop_box:hover .workshop_text h3 {
    bottom: 0px;
}

/* The Mysteries */

.the_mysteries {
    position: relative;
    background-color: #03002E;
    padding: 270px 0px 100px;
    /* padding: 270px 0px 190px; */
}

.the_mysteries::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background-image: url(../images/banner-video.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.the_mysteries .container {
    position: relative;
    z-index: 1;
}

.mysteries_title {
    margin-bottom: 50px;
}

.mysteries_title h2,
.mysteries_title small {
    color: #E3E4E6;
}

.mysteries_image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 16px;
}

.mysteries_image::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.mysteries_image:hover::after {
    opacity: 1;
}

.mysteries_image img {
    border-radius: 10px;
}

.add_cart {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    margin: auto;
    text-align: center;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.mysteries_image:hover .add_cart {
    bottom: 20px;
}

.add_cart a {
    border-radius: 50px;
    background: #03002E;
    padding: 13px 30px;
    text-align: center;
    color: #E3E4E6;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    display: inline-block;
    transition: 0.4s ease-in-out;
}
.add_cart a.added_to_cart {
    display: none;
}

.add_cart a:hover {
    background: #F9D339;
    color: #03002E;
}

.mysteries_text h4 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    color: #E3E4E6;
    margin-bottom: 20px;
}

.mysteries_text p {
    color: #E3E4E6;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 5px;
}
.mysteries_text p del span bdi::after{
    content: "\\";
}

/* .mysteries_text p span {
    color: rgba(227, 228, 230, 0.70);
    font-size: 16px;
    text-decoration-line: line-through;
} */

.steries_carousel {
    margin-bottom: 50px;
}

.steries_carousel button.owl-prev,
.steries_carousel button.owl-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F38304 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 38%;
    left: -20px;
}

.steries_carousel button.owl-prev {
    top: 38%;
    right: -20px;
}

.steries_carousel button.owl-prev i,
.steries_carousel button.owl-next i {
    color: #FFFFFF;
}

/* Ready for clarity */
.ready_for_clarity {
    position: relative;
    margin-top: -110px;
}

.ready_for_clarity_content {
    background-color: #000;
    background-image: url(../images/clarity-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    border: 1px solid #FFF;
    border-radius: 100px 100px 0px 0px;
    padding: 0px 80px;
    position: relative;
    overflow: hidden;
}

.ready_for_clarity_content::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 70%;
    background-image: url(../images/clarity-dot-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.clarity_text {
    padding: 20px 0px;
    max-width: 610px;
}

.clarity_image {
    position: relative;
}

.clarity_image .clarity_image_main {
    position: relative;
    z-index: 1;
}

.clarity_image_bg {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 0;
    padding-right: 50px;
}

.clarity_image_bg img {
    transform-origin: center center;
    animation: rotateImage 15s linear infinite;
}

@keyframes rotateImage {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clarity_text h2 {
    color: #E3E4E6;
    margin-bottom: 25px;
    font-size: 50px;
}

.clarity_text p {
    color: #E3E4E6;
    margin-bottom: 50px;
    opacity: 70%;
}

.clarity_list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.clarity_list ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.clarity_list ul li {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #E3E4E6;
}

/* Testimonial */

.testimonial {
    padding-top: 100px;
}

.testimonial_title {
    margin-bottom: 50px;
}

.testimonial_carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial_carousel .item,  .testimonial_carousel .testimonial_box {
    height: 100%;
}

.testimonial_carousel .testimonial_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial_carousel .owl-item {
    /* background-color: #03002E;
    position: relative;
    padding: 37px 50px; */
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
}

.testimonial_box::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url(../images/banner-video.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 50%;
}

.testimonial_box {
 background-color: #03002E;
    position: relative;
    padding: 37px 50px;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
}

.testimonial_image {
    width: 108px;
    height: 108px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 1;
}

.testimonial_image img {
    width: 73px !important;
    height: 73px !important;
    border-radius: 50%;
}

.testimonial_image::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_moving_effect.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform-origin: center center;
    animation: testimonial 15s linear infinite;
}


@keyframes testimonial {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.testimonial_text {
    position: relative;
    z-index: 1;
}

.testimonial_text p {
    padding: 20px 0px 30px;
}

.testimonial_text h4 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 24px;
    color: #F9D339;
    position: relative;
}

.testimonial_text h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 50px;
    height: 2px;
    background: #F38304;
}

.testimonial_carousel .owl-dots {
    text-align: center;
    padding-top: 12px;
}

.testimonial_carousel .owl-dots button {
    width: 22px;
    height: 10px;
    border-radius: 50px;
    opacity: 0.2;
    background: #03002E;
    margin: 0px 4px;
    transition: 0.4s ease-in-out;
}

.testimonial_carousel .owl-dots button.active {
    width: 44px;
    opacity: 1;
}

.testimonial_carousel button.owl-prev,
.testimonial_carousel button.owl-next {
    position: absolute;
    top: 0px;
    right: -20px;
    bottom: 20px;
    margin: auto;
    width: 42px;
    height: 42px;
    background: #E3E4E6 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial_carousel button.owl-prev:hover,
.testimonial_carousel button.owl-next:hover {
    background: #f38304 !important; 
} 


.testimonial_carousel button.owl-prev:hover svg path,
.testimonial_carousel button.owl-next:hover svg path {
    stroke: #fff;
} 

.testimonial_carousel button.owl-next {
    right: unset;
    left: -20px;
}

.reviews_btn {
    margin-top: 40px;
}

.reviews_btn a {
    color: #03002E;
}

/* Want to talk about */

.want_to_talk {
    padding: 100px 0px;
}

.talk_content {
    padding: 69px 90px;
    background: #000000;
    position: relative;
    border-radius: 0px 0px 100px 100px;
}

.talk_content::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 70%;
    background-image: url(../images/clarity-dot-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.talk_content .row {
    position: relative;
    z-index: 1;
    --bs-gutter-x: 60px;
}

.talk_text h2 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 50px;
    color: #E3E4E6;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #3B82F6 0%, #06B6D4 54%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.talk_text img {
    width: 100%;
    border-radius: 20px;
}

.talk_form .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.talk_form .talk_input input,
.talk_form .talk_input textarea {
    width: 100%;
    background: rgb(227, 228, 230, 30%);
    border: 0px;
    outline: none;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #E3E4E6;
    padding: 14px 20px;
    border-radius: 5px;
    resize: unset;
    direction: rtl;
}

.talk_form .talk_input input::placeholder,
.talk_form .talk_input textarea::placeholder {
    color: #E3E4E6;
}

.talk_button .main_btn {
    background: transparent;
    color: #E3E4E6;
    margin-top: 20px;
}

.talk_button .main_btn:hover {
    color: #03002E;
    background: #F9D339;
}

.footer_section {
    background: #03002E;
    padding-top: 70px;
    position: relative;
}

.footer_section::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background-image: url(../images/banner-video.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer_content {
    position: relative;
    z-index: 1;
}

.newsletter {
    padding-bottom: 70px;
    border-bottom: 1px solid rgb(227, 228, 230, 30%);
}

.newsletter_title small {
    color: #E3E4E6;
}

.newsletter_title h2 {
    color: #E3E4E6;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
}

.newsletter_form form {
    display: flex;
    align-items: center;
    gap: 12px;
}
.newsletter_form .tnp-field label{
    display: none !important;
}
.newsletter_form .tnp-field {
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
}
.newsletter_form .tnp-subscription{
    margin: 0;
    max-width: 100%;
}
.newsletter_form .tnp-field-button{
    width: fit-content;
}

.newsletter_form form input.tnp-email {
    background: #E3E4E6;
    border-radius: 5px;
    border: 0px !important;
    outline: none;
    font-style: normal;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 18px !important;
    color: #03002E !important;
    padding: 20px !important;
    width: 100% !important;
    direction: rtl;
}

.newsletter_form form input.tnp-email::placeholder {
    color: rgb(3, 0, 46, 40%) !important;
}

.newsletter_form form .tnp-submit {
    width: 200px !important;
    border-radius: 5px !important;
    padding: 20px 20px !important;
    background: #F38304 !important;
    color: #E3E4E6 !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 18px !important;
    border: 0px !important;
    transition: 0.4s ease-in-out !important;
    outline: none !important;
}

.newsletter_form form .tnp-submit:hover {
    background: #F9D339 !important;
    color: #03002E !important;
}

.newsletter_form p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #E3E4E6;
    opacity: 0.7;
    max-width: 490px;
    margin-top: 16px;
}

.footer_list_grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 70px 0px 60px;
    border-bottom: 1px solid rgb(227, 228, 230, 30%);
}

.ft_address h4,
.ft_information h4 {
    color: #F9D339;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 30px;
}

.ft_address p {
    color: #E3E4E6;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 20px;
}
.ft_information ul li,
.ft_information ul li a {
    color: #E3E4E6;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    transition: 0.4s ease-in-out;
}
ul.footer_contact_info li:last-child{
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    justify-content: start;
}

.ft_information ul li a:hover {
    color: #F9D339;
}

.ft_information ul li:not(:last-child) {
    padding-bottom: 20px;
}

.ft_logo {
    text-align: center;
}
.ft_logo .logo{
    margin-bottom: 30px;
}

.ft_logo p {
    color: #E3E4E6;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 18px;
    max-width: 530px;
}

.ft_logo ul {
    display: inline-flex;
    gap: 15px;
    flex-direction: row-reverse;
}

.ft_logo ul li a img {
    width: 40px;
    transition: 0.3s ease-in-out;
}

.ft_logo ul li a:hover img {
    transform: scale(0.9);
}

.ft_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0px 20px;
}

.ft_bottom_left p {
    color: #A3A3A3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ft_bottom_left p a {
    color: #E3E4E6;
    text-decoration-line: underline;
    transition: 0.3s ease-in-out;
}

.ft_bottom_left p a:hover {
    color: #F9D339;
}

.ft_bottom_right {
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    align-items: center;
}

.ft_bottom_right p {
    color: #A3A3A3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-right: 1px solid;
    padding-right: 10px;
    unicode-bidi: plaintext;
}

.ft_bottom_right ul li,
.ft_bottom_right ul li a {
    display: inline-block;
    color: #A3A3A3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.4s ease-in-out;
}

.ft_bottom_right ul li a:hover {
    color: #F9D339;
}

/* PRELOADER CSS */
.page-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #03002E;
    z-index: 1000;
}

.dbl-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid transparent;
    border-top: 4px solid #F38304;
    border-left: 4px solid #F38304;
    -webkit-animation: 2s spin linear infinite;
    animation: 2s spin linear infinite;
}

.dbl-spinner--2 {
    border: 4px solid transparent;
    border-right: 4px solid #FFF;
    border-bottom: 4px solid #FFF;
    -webkit-animation: 1s spin linear infinite;
    animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* About Us Page */
.breadcrumb_section {
    width: 100%;
    background: #03002E;
    height: 400px;
    /* height: 550px; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.breadcrumb_section::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background-image: url('../images/banner-video.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb_text {
    position: relative;
    z-index: 1;
}

.breadcrumb_text h2 {
    color: #FFFFFF;
}

.election_astrologer {
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.astrologer_content {
    max-width: 1540px;
    margin: auto;
    margin-left: 5%;
    display: flex;
    gap: 30px;
}

.astrologer_right {
    position: relative;
    display: flex;
    align-items: center;
    width: 920px;
}

.astrologer_image {
    position: relative;
    z-index: 1;
}

.astrologer_image img {
    width: 100%;
}

.astrologer_circle {
    position: relative;
    animation: 7s identifier linear infinite;
    margin-right: -16rem;
}

.astrologer_circle img {
    width: 100%;
}

@keyframes identifier {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.astrologer_left {
    width: 533px;
}

.astrologer_left small {
    margin-bottom: 20px;
}

.astrologer_left p {
    /* margin-top: 25px; */
    margin-top: 15px;
    color: #03002E;
    opacity: 60%;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 30px; */
    line-height: 27px;
}

.astrologer_signature {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px 0px 50px;
}

.astrologer_signature img {
    border-right: 1px solid;
    padding-right: 33px;
}

.astrologer_signature span {
    font-family: "Ibarra Real Nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    color: #03002E;
}

.astrologer_left a {
    color: #03002E;
}

.counter_section {
    padding: 100px 0px;
    position: relative;
}

#counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: space-between;
    max-width: 1215px;
    margin: auto;
}

.count_number {
    background: url(../images/counter_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 130px;
    margin: auto;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.count_up.text-center {
    max-width: 229px;
}

.count_number span {
    color: #03002E;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}

.count_up p {
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}

.Why_choose {
    background: #03002E;
    padding: 70px 0px;
    position: relative;
}

.Why_choose::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background-image: url(../images/banner-video.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.Why_choose .container {
    position: relative;
    z-index: 1;
}

.Why_choose_content {
    max-width: 1280px;
    margin: auto;
    margin-top: 40px;
}

.Why_choose_content .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.Why_choose_top {
    max-width: 690px;
    margin: auto;
}

.Why_choose_top small {
    color: #E3E4E6;
}

.Why_choose_top h2 {
    color: #E3E4E6;
    line-height: 60px;
}

.Why_choose_top p {
    color: rgb(227, 228, 230, 0.7);
    margin-top: 20px;
}

.choose_box {
    background-image: url(../images/choose-image.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 28px;
    text-align: center;
    border-radius: 10px;
    min-height: 100%;
}

.why_me_icon {
    margin-bottom: 50px;
}

.why_me_text h3 {
    color: #03002E;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
}

.why_me_text p {
    color: rgba(3, 0, 46, 0.6);
}

.constant_influence {
    position: relative;
    padding-top: 100px;
}

.influence_top {
    max-width: 830px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.influence_top h2 {
    line-height: 60px;
}

.influence_top h3 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    color: #03002E;
    margin-top: 40px;
}

.influence_top p {
    color: rgba(3, 0, 46, 0.6);
    margin-top: 30px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.influence {
    position: absolute;
    top: 35%;
    right: 8%;
    margin: auto;
}

#about_workshop {
    margin-bottom: 0px;
    padding-bottom: 100px;
    padding-top: 30px;
}

#about_testimonial {
    padding-bottom: 100px;
}

/* Podcast Page */

#podcast_clarity {
    margin-top: 100px;
}

.thought_refreshment {
    position: relative;
    padding-top: 100px;
}

.refreshment_item {
    position: relative;
}
.refreshment_image {
    position: relative;
}

.refreshment_image img {
    width: 100%;
    border-radius: 10px;
}

.thought_tabs .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 50px;
}

.thought_text {
    position: absolute;
    top: 20px;
    right: 20px;
}

.thought_text span {
    display: inline-block;
    padding: 8px 16px;
    text-align: center;
    border-radius: 50px;
    background: #03002E;
    color: #E3E4E6;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}

.refreshment_price {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
}

.refreshment_price small {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    color: #03002E;
}

.refreshment_price small span {
    font-size: 16px;
    text-decoration-line: line-through;
    color: rgba(3, 0, 46, 0.50);
}

.refreshment_price li {
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    opacity: 0.3;
    list-style: disc;
    direction: ltr;
}

.refreshment_text h3 {
    font-family: "Ibarra Real Nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    color: #03002E;
    margin-bottom: 18px;
}

.refreshment_text p {
    color: rgba(3, 0, 46, 0.6);
    max-width: 350px;
}

.podcast_row .refreshment_text a {
    margin-top: 20px;
}

.thought_tabs .nav {
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 30%);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.thought_tabs .nav .nav-item .nav-link {
    background: transparent;
    display: inline-block;
    border: 2px dotted #F38304;
    padding: 8px 20px;
    outline: none;
    border-radius: 50px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #03002E;
    transition: 0.4s ease-in-out;
}

.thought_tabs .nav .nav-item .nav-link:hover,
.thought_tabs .nav .nav-item .nav-link.active {
    background: #F9D339;
    border: 2px dotted #F9D339;
}

.thought_btn {
    margin-top: 40px;
}

.thought_btn button {
    color: #03002E;
    padding: 8px 20px;
    background-color: transparent;
}

/* Contact Us Page Start Here */
section.contact_form_section {
    padding-bottom: 100px;
}
.social_icons_main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social_icons_main h3 {
    padding: 25px 0 32px 0;
    color: #03002E;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.28px;
}
h3.contact_social_media_title {
    padding-bottom: 25px;
}
h3.contact_phone_title {
    padding-bottom: 30px;
}

.social_icons_main a {
    color: #03002E;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    transition: .3s ease all;
}

.social_icons_main a:hover {
    color: #F9D339;
}

.contact_number {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social_media_section {
    padding: 54px 0 77px 0;
}

.contact_form_main {
    background-image: url(../images/contact_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 52px 48px 50px;
    border-radius: 20px;
    height: 100%;
}

.contact_form_main .talk_form .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.map_main {
    padding: 100px 0;
}

.louis_rivera_main {
    padding: 30px 30px 47px 30px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.louis_rivera_main h3 {
    color: #03002E;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    padding: 30px 0 24px 0;
}

.louis_rivera_main p {
    color: #03002E;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.6;
    padding: 0 15px 40px;
}

.louis_rivera_main a.contact_fill_btn {
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    padding: 12px 36px;
    border-radius: 60px;
    background: #1B1464;
    display: inline-block;
    transition: 0.5s ease-in-out;
}

.louis_rivera_main a.contact_fill_btn:hover {
    background-color: #1876D2;
}

.louis_rivera_main img {
    max-width: 100%;
    width: 100%;
}

.contact_phone_img {
    transition: all 0.2s ease-in-out;
    display: inline-flex;
}

.contact_phone_img a img {
    transition: all 0.2s ease-in-out;
}

.contact_phone_img a:hover img {
    transform: scale(0.95);
}

.contact_form_main .talk_form .talk_input input {
    height: 56px;
}

.contact_form_main .talk_form h2 {
    color: #E3E4E6;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

.contact_form_main .talk_form p.contact_form_para {
    color: #E3E4E6;
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.2px;
    text-align: center;
    padding: 17px 0 50px 0;
}

.map_main iframe {
    max-width: 100%;
    width: 100%;
    height: 580px;
}


/* Testimonial Page Start */
.god_says_section {
    padding-top: 100px;
}

.testimonial_page_card .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.rating_img {
    position: relative;
    z-index: 1;
}

/* .god_says_title {
    padding-bottom: 50px;
} */

/*  Products Page Start here  */

.digital_products_main {
    padding: 100px 0;
}

.digital_products_main h2 {
    padding-bottom: 50px;
}

.refreshment_product__item p {
    max-width: 379px;
}

.refreshment_product__item a {
    color: #03002E;
}

.refreshment_product__item .refreshment_text {
    padding-top: 20px;
}

.thought_carousel button.owl-prev,
.thought_carousel button.owl-next {
    position: absolute;
    top: 0px;
    right: -16px;
    bottom: 47%;
    margin: auto;
    width: 42px;
    height: 42px;
    background: #E3E4E6 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thought_carousel button.owl-next {
    right: unset;
    left: -16px;
}

.know_carousel .refreshment_text p {
    max-width: 500px;
}

.know_carousel button.owl-prev,
.know_carousel button.owl-next {
    position: absolute;
    top: 0px;
    right: -16px;
    bottom: 210px;
    margin: auto;
    width: 42px;
    height: 42px;
    background: #E3E4E6 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.know_carousel button.owl-next {
    right: unset;
    left: -16px;
}

.know_life_section h2 {
    padding-bottom: 50px;
}

/* .know_life_section  .refreshment_image img{
	width:unset;
} */
section.know_life_section {
    padding-top: 100px;
}

.online_course_row .refreshment_text a {
    margin-top: 20px;
}

.clarity_main_section {
    padding-top: 100px;
}

.online_course_row .refreshment_image img {
    max-width: 100%;
    width: auto;
    margin: auto;
    border-radius: unset;
}

.online_course_row .refreshment_image {
    padding: 25px 0;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    position: relative;
    text-align: center;
}

.refreshment_price {
    align-items: center;
}

.clarity_btn_top {
    position: absolute;
    top: 20px;
    right: 20px;
}

.clarity_btn_top span {
    color: #E3E4E6;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    padding: 8px 16px;
    border-radius: 42px;
    background: #03002E;
}
.refreshment_price del .woocommerce-Price-amount bdi {
    color: rgba(3, 0, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-decoration-line: line-through;
    direction: rtl;
}
.refreshment_price ins .woocommerce-Price-amount bdi,
.refreshment_price ins .woocommerce-Price-amount bdi span.woocommerce-Price-currencySymbol {
    color: #03002E;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-decoration: none;
    direction: rtl;
}
span.woocommerce-Price-amount.amount{
    text-decoration: none;
}
.refreshment_price ins{
    position: relative;
}
.refreshment_price ins::before{
    content: '/';
    color: #03002E;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}
.no-more-products {
    color: #03002E;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    margin-top: 20px;
}
.product-item{
    margin-top: 20px;
}

/* Product Page CSS End */


/* Form CSS Start */

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    color: #FFF;
    margin: 0;
}
.talk_button p{
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.talk_button .main_btn{
    width: fit-content;
}

/* Form CSS End */

/* Product Detail Page CSS Start */

.product_single_content{
    padding-top: 100px;
}
.single_product_gallery span.onsale {
    display: none;
}
.single_product_gallery a.woocommerce-product-gallery__trigger {
    display: none;
}
.single_product_gallery img {
/*     width: 100%; */
/*     height: 100%; */
	    border-radius: 90% 90% 0px 0px;
}
.product_title_container .product_title{
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 45px;
    color: #03002E;
}
.product_title_container p {
    color: #03002E;
    margin-top: 10px;
}
.price_container {
    margin-top: 20px;
}
.quantity_box {
    width: fit-content;
    background-color: #F38304;
    border-radius: 5px;
}
input.quantity_input {
    appearance: none;
    outline: none;
    border: none;
    text-align: center;
    width: 40px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    background-color: transparent;
    color: #E3E4E6;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity_btn{
    border: none;
    color: #E3E4E6;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    transition: 0.5s ease-in-out;
    background-color: transparent;
    width: 50px;
    height: 50px;
}
.venue_container {
   /* margin: 20px 0;*/
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0 35px 0;
}
.venue_container ul li{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}
.venue_container ul li:last-child{
    margin-bottom: 0;
}
.venue_container p{
    color: #03002E;
}
.venue_container ul li i{
    font-size: 25px;
	    color: #f38304;
}
.price_container ins[aria-hidden="true"]{
    font-size: 30px;
    margin-right:5px;
}
form.cart {
    display: flex;
    align-items: center;
    gap:20px;
}
.adc_button_conatiner button.add_to_cart_btn {
    padding: 18px 40px;
    color: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    transition: 0.5s ease-in-out;
    border-radius: 50px;
    background: #1B1464;
    border: none;
    outline: none;
}
button.add_to_cart_btn:hover{
    background: #1876D2;
}
.quantity_container .qnt_title{
    font-family: "Ibarra Real Nova", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    color: #03002E;
    margin: 15px 0;
}
.product_description_container{
    padding-top: 50px;
}
.product_description p{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color: #03002E;
}
.product_description p:not(:last-child){
    margin-bottom: 15px;
}
.product_single_podcasts{
    padding-bottom: 100px;
}
section.bottom_map {
    margin-top: 100px;
}

/* Product Detail Page CSS End */

.testimonial_text p {
    min-height: 225px;
}
.testimonial_image {
       display: none;
}
.wp-video {
    display: inline-block;
    width: 33.33% !important;
}
.wp-video {
    width: 33% !important;
    display: inline-block;
}
.single_product_gallery {
    text-align: center;
}
.product_description_container{
    padding-bottom: 50px;
}

.single_product_gallery img {
    max-width: 100%;
}


section#only_podcast {
    padding-bottom: 100px;
}



.wpcf7 form.sent .wpcf7-response-output {
    border-color: #F9D339 !important;
    color: #fff !important; 
    border: 1px solid #F9D339 !important;
}