/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-elementor-child/
 Description:  A child theme of the Hello Elementor theme
 Author:       Elementor
 Author URI:   https://elementor.com/
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Import the parent theme's stylesheet */
@import url("../hello-elementor/style.css");

/* Add your custom styles below */

a{
    outline: none;
}
.booking-form .wpcf7-spinner:last-child {
    visibility: hidden !important;
    display: none !important;
}
#sticky_header {
    transition: 0.3s;
    position: absolute;
    top: 0;
}
#sticky_header.reverse_sticky {
    position: fixed;
    top: 0;
    background-color: #0F2950;
    z-index: 11;
    transition: 0.3s;
}
#sticky_inner_header{
    transition: 0.3s;
}
#sticky_inner_header.reverse_sticky{
    position: fixed;
    top: 0;
    background-color: #0F2950;
    z-index: 11;
    transition: 0.3s;
}
.header_menu .elementor-nav-menu:after{
    display: none;
}
.header_menu ul.elementor-nav-menu {
    gap: 47px !important;
    margin-inline-end: 0;
}
.header_menu ul li a{
    position: relative;
    border: none !important;
}
.header_menu ul li.current-menu-parent > a.has-submenu{
    color: #FFB93F !important;
}
.header_menu ul li.current-menu-parent > a.has-submenu .sub-arrow svg path{
    fill: #FFB93F !important;
}
.header_menu ul li.current-menu-parent > a.has-submenu::after,
.header_menu ul li.current-menu-item a::after {
    width: 100%;
    opacity: 1 !important;
}
.header_menu ul.elementor-nav-menu > li > a::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #FFB93F !important;
    transition: 0.3s;
}
/* .header_menu ul > li a:hover::after{
    width: 100%;
} */
.header_menu ul.elementor-nav-menu > li:hover > a{
    color: #FFB93F !important;
}
.header_menu ul.elementor-nav-menu > li:hover > a .sub-arrow svg path{
    fill: #FFB93F !important;
}
.header_menu ul.elementor-nav-menu > li:hover > a::after{
    width: 100%;
    opacity: 1 !important;
}
.header_menu ul.elementor-nav-menu > li.current_page_item > a::after{
    width: 100%;
}
.header_menu ul.sub-menu li a::after{
    display: none;
}
.header_menu ul.sub-menu li a{
    line-height: 19px;
    /* padding: 10px !important; */
}
.header_menu ul.sub-menu li:not(:last-child) a{
    border-bottom: 0.5px solid rgb(252 236 236) !important;
}
.header_menu .elementor-nav-menu--main ul.sub-menu {
    display: unset !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.2s linear !important;
    transform: translateY(0%);
    overflow: hidden;
    width: max-content;
    max-width: max-content;
}
.header_menu .elementor-nav-menu--main .max-menu ul.sub-menu{
	width: 120px;
    max-width: 120px;
}

.header_menu .elementor-nav-menu--main ul.elementor-nav-menu li:hover > ul.sub-menu{
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    border-radius: 4px;
}
.header_menu li.menu-item-has-children a.has-submenu span.sub-arrow {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    display: unset;
}
.header_menu li.menu-item-has-children a.has-submenu{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-btn a{
    position: relative;
    border-bottom: 1px solid #FFF;
}
.header-btn a:hover,
.header-btn a:focus,
.header-btn.active a{
    border-color: #FFB93F;
}
.header-btn.active a .elementor-button-text{
    color: #FFB93F;
}
.header-btn a .elementor-button-icon,
.header-btn a .elementor-button-icon svg path{
    transition: 0.3s;
}
.header-btn a:hover .elementor-button-icon,
.header-btn a:focus .elementor-button-icon{
    transform: scale(1.3);
}
.header-contact-btn a .elementor-button-icon svg{
    width: 21px;
    height: 14px;
}
.header-contact-btn a:hover .elementor-button-icon svg path,
.header-contact-btn a:focus .elementor-button-icon svg path,
.header-contact-btn.active a .elementor-button-icon svg path{
    fill: #FFB93F;
}
.header-login-btn a:hover .elementor-button-icon svg path,
.header-login-btn a:focus .elementor-button-icon svg path,
.header-login-btn.active a .elementor-button-icon svg path{
    fill: transparent;
    stroke: #FFB93F;
}
#preloader{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#0F2950;
	display:flex;
	justify-content:center;
	align-items:center;
	z-index:9999
}
.bouncing-dots{
	display:flex;
	gap:10px;
}
.bouncing-dots span{
	width:20px;
	height:20px;
	background-color:#FFB93F;
	border-radius:50%;
	animation:.6s ease-in-out infinite alternate bounce
}
.bouncing-dots span:nth-child(2){
	animation-delay:.2s
}
.bouncing-dots span:nth-child(3){
	animation-delay:.4s
}
.bouncing-dots span:nth-child(4){
	animation-delay:.6s
}
.bouncing-dots span:nth-child(5){
	animation-delay:.8s
}
@keyframes bounce{
	from{
		transform:translateY(0)
	}
	to{
		transform:translateY(-20px)
	}
}

/* Home Page CSS */

.home_banner_title span.yellow{
    font-weight: 700;
    text-transform: uppercase;
}
.home_banner_container::after {
    content: '';
    width: 100%;
    height: 327px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(15, 41, 80, 0.00) 0%, #0F2950 43.34%);
    z-index: 0;
}
/* .banner_women_img img {
    filter: drop-shadow(0px 0px 55px #FFF);
} */
.mission_btn a span.elementor-button-icon{
    transition: 0.3s;
}
.mission_btn a:hover span.elementor-button-icon{
    transform: rotate(-45deg);
}
.your_journey_btn a span.elementor-button-icon {
    transition: 0.3s;
}
.your_journey_btn a:hover span.elementor-button-icon {
    transform: rotate(-45deg);
}
/* .your_journey_section.sticky_active{
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
} */
.dropdown-menu li a.active {
    background-color: #187bdcd1 !important;
    color: white !important;
}
.dropdown-menu li a:hover {
    color: black !important;
}
.image-section .elementor-shortcode
 {
  
    height: 400px !important;
 }
 .image-section .elementor-shortcode img{
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 10px;
 }
.join_speaker_box{
    cursor: pointer;
}
.join_speaker_box,
.join_speaker_box_title .elementor-heading-title,
.join_speaker_box_text p {
    transition: 0.3s !important;
}
.join_speaker_box.active {
    background: #187BDC;
    border-radius: 10px;
}
.join_speaker_box .your_journey_btn a{
    opacity: 0.6;
}
.join_speaker_box.active .your_journey_btn a{
    opacity: 1;
}
.join_speaker_box.active .join_speaker_box_title .elementor-heading-title,
.join_speaker_box.active .join_speaker_box_text p {
    color: #FFF !important;
}
.journey_img {
    position: absolute !important;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    transition: 0.3s !important;
    width: 100%;
}
.journey_img.active{
    opacity: 1;
    visibility: visible;
}

span.yellow {
    color: #FFB93F;
}

.title_yellow {
    position: relative;
    color: #FFB93F;
}

.title_yellow::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -5px;
    width: 101px;
    height: 9px;
    background-image: url("./images/title-blue-line.svg");
    background-repeat: no-repeat;
    background-size: auto;
}
.discover_title .title_yellow::after{
    right: -15px;
}
.your_journey_title .title_yellow::after{
    content: "";
    position: absolute;
    width: 63px;
    height: 9px;
    background-image: url(./images/us_vector.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -6px;
    right: -25px;
    display: none;
}
.your_journey_title .last_title_bottom_img{
    position: relative;
}
.your_journey_title .last_title_bottom_img::after{
    content: "";
    position: absolute;
    width: 63px;
    height: 9px;
    background-image: url(./images/us_vector.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -12px;
    right: -10px;
}

a.keynote_different{ 
    text-decoration: underline !important;
}

a.keynote_different:hover{
    color: #FFB93F;
}

.mission_read_btn_arrow a:hover svg path,
.mission_read_btn_arrow a:focus svg path {
    fill: #FFB93F;
}

.mission_read_btn_arrow a span.elementor-button-icon svg,
.mission_read_btn_arrow a span.elementor-button-icon,
.mission_read_btn_arrow a span.elementor-button-icon svg path {
    transition: 0.3s;
}

.mission_read_btn_arrow a:hover span.elementor-button-icon{
    transform: rotate(-45deg);
}

.women-speaker-box .women_speaker_img img{
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.women-speaker-box:hover .women_speaker_img img {
    opacity: 1;
    visibility: visible;
}

.women-speaker-box .women_speaker_counter span,
.women-speaker-box .women_speaker_heading h2,
.women-speaker-box p {
    transition: 0.3s;
}

.women-speaker-box:hover .women_speaker_counter span,
.women-speaker-box:hover .women_speaker_heading h2 {
    color: #FFB93F !important;
}

.title_white{
    position: relative;
    color: #FFB93F;
}

.title_white::after {
    content: "";
    position: absolute;
    bottom: -9px;
    right: -10px;
    width: 63px;
    height: 7px;
    background-image: url("./images/white-line.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.keynote_newsletter .tnp-subscription {
    margin: 0px;
	max-width: 100% !important;
}

.keynote_newsletter .tnp-field label {
    display: none;
}
button#clear_all_filters:hover {
    box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.4);
}
.keynote_newsletter input#tnp-1 {
    border-radius: 0px;
    padding: 18px 16px;
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    outline: none;
    border-radius: 10px;
    border-bottom: 1px solid rgba(3, 3, 2, 0.30);
}
.keynote_newsletter input#tnp-1::placeholder{
    color: rgba(3, 3, 2, 0.50);
}
.tnp-field {
    margin-bottom: 0 !important;
    display: flex;
}

/* .keynote_newsletter::placeholder {
    color: #03030280;      
    font-size: 16px;
    font-weight: 400;
} */

.keynote_newsletter form {
    display: flex;
    gap: 20px;
}

.keynote_newsletter .tnp-field-email {
    width: 100%;
}

.keynote_newsletter .tnp-field-button {
    position: relative;
    display: block;
}

.keynote_newsletter .tnp-field-button::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url("./images/subscribe_arrow.webp");
    background-repeat: no-repeat;
    background-size: contain;
	transition: 0.3s;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.keynote_newsletter .tnp-field.tnp-field-button {
    width: 100%;
    max-width: 150px;
}
.keynote_newsletter .tnp-field-button input.tnp-submit {
    width: 100%;
    text-align: start;
    color: #FFF !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border: none;
    background-color: #FFB93F !important;
    padding: 15px 16px !important;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}
.keynote_newsletter .tnp-field-button input.tnp-submit:hover{
    background-color: #187BDC !important;
}

.keynote_newsletter .tnp-field-button:hover::after {
    transform: translateY(-50%) rotate(-45deg);
}

.logo_slider .swiper-wrapper{
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}

.discover_box_img img{
    transition: transform 0.3s;
}
.discover_voice_box:hover .discover_box_img img{
	transform: scale(1.04);
}
.discover_arrow{
 	transition: transform 0.3s;
}
.discover_voice_box:hover .discover_arrow{
    transform: rotate(-40deg);
}
.discover_voice_box::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 172px;
    background: linear-gradient(180deg, rgba(24, 123, 220, 0.00) 7.05%, #187BDC 66.38%);
    z-index: 0;
}
.stroke_name {
    width: 162px !important;
    position: absolute !important;
    left: 0px;
    top: 0;
    height: 100%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: start !important;
    justify-content: end !important;
}
.stroke_name .elementor-heading-title{
    margin-bottom: 22px;
}
.discover_inpiring_slider .swiper-pagination span.swiper-pagination-bullet{
    background: #030302 !important;
    opacity: 1 !important;
}
.discover_inpiring_slider .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #FFB93F !important;
}
div#map-video video{
    pointer-events: none;
}
/* div#map-video video.elementor-video {
    object-fit: unset !important;
} */

.banner-search-section .search-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
}
#speaker_search_suggestions{
    position: relative;
}
#speaker_search_suggestions ul{
    width: 100%;
    display: block;
    /* opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); */
    transition: all 0.50s ease;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 4px;
    background-color: rgba(255, 255, 255, 0.10);
    border: 0;
    position: absolute;
    z-index: 10;
    /* min-height: 160px;
    overflow-y: scroll;
    height: 100%; */
}
.banner-search-section .dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.banner-search-section .dropdown-menu::-webkit-scrollbar-track {
    background: #FFF;
}

.banner-search-section .dropdown-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}

.banner-search-section .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
/* .banner-search-section .dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
} */

#speaker_search_suggestions ul li a{
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: .3s ease-in-out;
    cursor: pointer;
}
#speaker_search_suggestions ul li a:hover{
    background: rgba(255, 255, 255, 0.30);
    color: #fff;
}

.banner-search-section .search-box label {
    color: #FFB93F;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 8px;
}

.banner-search-section .form-group {
    display: flex;
    flex-direction: column;
    /* min-width: 220px; */
    /* flex: 1; */
}

.banner-search-section .form-group:not(:last-child) {
     width: 300px;
}

.banner-search-section .dropdown {
    position: relative;
    width: 100%;
}

.banner-search-section .dropdown-menu {
    width: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.50s ease;
    padding: 0;
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 10px;
    margin-top: 4px;
    background-color: rgba(255, 255, 255, 0.10);
    border: 0;
    position: absolute;
    z-index: 10;
    max-height: 160px;
    /* height: 100%; */
    list-style: none;
}

.banner-search-section .dropdown-menu a {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: .3s ease-in-out;
}

.banner-search-section .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.30) !important;
    color: #fff;
}

.banner_submit_btn {
    padding: 14px 16px !important;
    background: #FFB93F;
    color: #FFF !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    border-radius: 10px !important;
    max-width: 185px;
    width: 100% !important;
    display: flex !important;
    transition: .5s ease-in-out !important;
    border: none !important;
    align-items: center;
    gap: 14px;
}
.clear_all_btn{
   padding: 14px 16px !important;
    background: #FFB93F;
    color: #FFF !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    border-radius: 10px !important;
    max-width: 100px;
    width: 100% !important;
   
    transition: .5s ease-in-out !important;
    border: none !important;
    align-items: center;
    gap: 14px; 
}
.banner_submit_btn:hover {
    background: #FFB93F;
    color: #FFF;

}

.banner_submit_btn img {
    margin-left: 1px;
    transition: transform .5s ease;
    display: inline-block;
}

.banner_submit_btn:hover img {
    transform: scale(1.3);
}

.banner-search-section .dropdown.open ul.dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Dropdown Items */

.banner-search-section .dropdown-menu a:hover {
    background: #eee;
}

span.select_speaker_dropdown_text {
    background: rgba(255, 255, 255, 0.16) url("./images/dropdown_arrow.svg");
    padding: 16px 20px;
    width: 100%;
    text-align: left;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.80);
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 95% 50%;
    border-radius: 10px;
}

.banner-search-section .submit-btn {
    align-self: flex-end;
    /* max-width: 300px; */
}
.form-group.submit-btn {
    flex-direction: row;
    gap: 18px;
}
.search-box input {
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 10px !important;
    border: none !important;
    color: #FFF;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.80);
}

div#keynote_org_logo_container img{
    transition: 0.3s;
    filter: grayscale(1);
    width: fit-content;
}
div#keynote_org_logo_container img:hover{
    filter: grayscale(0);
}
div#keynote_different_grid_container {
    grid-template-rows: auto !important;
}

/* Home CSS End */

/* Footer CSS */

.footer-area-menu ul li{
    width: fit-content;
}

.show-button a span.elementor-button-icon{
    transition: 0.3s;
}
.show-button a:hover span.elementor-button-icon{
    transform: rotate(-45deg);
}
.footer_form_container .input_field input,
.footer_form_container .input_field textarea{
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    padding: 14px 16px 14px 0 !important;
    border-bottom: 1px solid #FFF !important;
    background: transparent;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.footer_form_container .input_field input::placeholder,
.footer_form_container .input_field textarea::placeholder{
    color: rgba(255, 255, 255, 0.80)
}
.footer_form_container .input_field {
    width: 100%;
    margin-bottom: 24px;
}
.footer_form_container .dis-flex {
    display: flex;
    column-gap: 16px;
}
.footer_form_container .select_field select{
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    padding: 14px 16px 14px 0px !important;
    border-bottom: 1px solid #FFF !important;
    background-color: transparent;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    appearance: none;
    background-image: url("./images/dropdown_arrow.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto;
}
.footer_form_container .select_field select option{
    color: #030302;
}
.footer_form_container .message_field span.wpcf7-form-control-wrap{
    display: flex;
}
.footer_form_container .submit_container{
    margin-top: 26px;
}
.footer_form_container .submit_container .submit-btn{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 12px 40px;
    transition: 0.3s;
}
.footer_form_container .submit_container .submit-btn svg{
    transition: 0.3s;
}
.footer_form_container .submit_container .submit-btn:hover{
    background-color: #0F2950;
}
.footer_form_container .submit_container .submit-btn:hover svg{
    transform: rotate(-45deg);
}
.footer_form_container .submit_container p{
    display: flex;
    align-items: center;
}
.address-icon-list ul.elementor-icon-list-items li.elementor-icon-list-item{
    width: fit-content;
}
.address-icon-list ul.elementor-icon-list-items li.elementor-icon-list-item:last-child span.elementor-icon-list-icon svg path{
    transition: 0.3s;
}
.address-icon-list ul.elementor-icon-list-items li.elementor-icon-list-item:last-child a:hover span.elementor-icon-list-icon svg path{
    fill: #FFB93F;
}
.footer-menu ul.elementor-nav-menu{
    width: 100%;
    justify-content: space-between;
}
.footer-menu .elementor-nav-menu:after{
    display: none;
}
.footer-menu ul.elementor-nav-menu li{
    width: fit-content;
}
.privacy_list .elementor-nav-menu:after{
    display: none;
}
.privacy_list ul {
    width: 100%;
    /* justify-content: space-between; */
    gap:77px;
}
.footer_form_text strong{
    font-weight: 500;
}
.footer_form_container .wpcf7-not-valid-tip{
    color: #FFFFFF;
}
.footer_form_shortcode .wpcf7-response-output{
    color: #FFFFFF;
}

/* About Us Page CSS Start */

/* .breadcrumb_list ul.elementor-icon-list-items li.elementor-icon-list-item:not(:last-child):after{
    transform: rotate(20deg);
}
.breadcrumb_list ul.elementor-icon-list-items li.elementor-icon-list-item:last-child .elementor-icon-list-text{
    color: #FFB93F;
} */
.breadcrumb p#breadcrumbs a{
    transition: 0.3s;
}
.breadcrumb span.breadcrumb_last{
    color: #FFB93F;
}
div#inner_breadcrumb_list li.elementor-icon-list-item a span.elementor-icon-list-text {
    color: rgba(3, 3, 2, 0.50);
}
div#inner_breadcrumb_list li.elementor-icon-list-item a:hover span.elementor-icon-list-text {
    color: #187BDC;
}
div#inner_breadcrumb_list li.elementor-icon-list-item span.elementor-icon-list-text {
    color: rgba(3, 3, 2, 0.80);
}
div#inner_breadcrumb_list li.elementor-icon-list-item:not(:last-child):after {
    transform: rotate(20deg);
}
.about_keynote_title .title_yellow::after{
    display: none;
}
.about_keynote_title .elementor-heading-title::after{
    content: "";
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 82px;
    height: 10px;
    background-image: url(./images/blue_line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
}
.why_we_exist_text p:not(:last-child){
    margin-bottom: 18px;
}
.why_we_exist_text strong{
    color: #FF5C3F;
}
.why_we_exist_leftimg_container {
    /* position: absolute !important;
    left: 30px;
    top: 47%;
    transform: translateY(-50%); */
    width: fit-content !important;
}
.why_we_exist_rightimg_container{
    /* position: absolute !important;
    right: 20px;
    top: 47%;
    transform: translateY(-50%); */
    width: fit-content !important;
}
.we_exist_images_container {
    position: absolute !important;
    top: 47.2%;
    transform: translateY(-50%);
}
.box_shadow_img {
    position: relative;
    display: inline-block;
    overflow: hidden;
    box-shadow: inset 0 0 10.8px 7px #FFF;
}
.box_shadow_img:before {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 10.8px 7px #FFF;
    pointer-events: none;
    z-index: 1;
}
div#our_belief_container .e-con-inner {
    margin-right: 0;
}
#keynote_woman_speaker_sec{
    background: linear-gradient(183deg, rgba(240, 248, 255, 0.00) 34.59%, rgba(240, 248, 255, 0.50) 55.04%, #F0F8FF 90.91%);
}
.gallery_img_white_shadow{
    position: relative;
    width: fit-content;
}
.gallery_img_white_shadow::after {
    content: '';
    width: 100%;
    height: 90px;
    background: linear-gradient(180deg, rgba(240, 248, 255, 0.00) 0%, #FAFDFF 95.43%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.keynote_woman_speaker_btn, .keynote_woman_speaker_btn a {
    max-width: 233px !important;
    width: 100%;
}
.keynote_woman_speaker_btn span.elementor-button-content-wrapper{
    justify-content: space-between;
}
.keynote_woman_speaker_btn a .elementor-button-icon{
    transition: 0.3s;
}
.keynote_woman_speaker_btn a:hover .elementor-button-icon{
    transform: rotate(-45deg);
}
.yellow_image_title{
    color: #FFB93F;
    position: relative;
}
.yellow_image_title::after{
    content: "";
    position: absolute;
    bottom: -9px;
    right: 0;
    width: 86px;
    height: 8px;
    background-image: url(./images/blue_line.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.impact_no_big_title{
    position: absolute !important;
    top: 0;
    right: 8px;
}
.who_we_are_progressbar .elementor-progress-wrapper{
    position: relative;
    width: 100%;
    height: 4px;
    background: #e6e6e6 !important;
}
.who_we_are_progressbar .elementor-progress-bar {
    height: 4px;
    background: #f5b238 !important;
    position: relative;
}
.who_we_are_progressbar span.elementor-progress-percentage {
    display: none;
}
.who_we_are_progressbar .elementor-progress-text {
    position: relative;
    overflow: visible;
}
.who_we_are_progressbar .elementor-progress-text::after {
    content: '';
    background-image: url(./images/progressbar_dot.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: -8px;
    width: 22px;
    height: 22px;
}
.progress_percentage {
    position: absolute !important;
    right: 0;
}
.who_we_are_progressbar .elementor-title {
    margin-bottom: 22px;
    display: inline-block;
}
div#testimonial_title {
    width: fit-content;
}
#testimonial_quote_img{
    position: absolute;
    right: 25px;
    bottom: 28px;
}
.testimonial_slider .swiper-pagination{
    display: flex;
}
.testimonial_slider .swiper-pagination .swiper-pagination-bullet{
    width: 10px !important;
    height: 3px !important;
    border-radius: 100px;
}
.testimonial_slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 20px !important;
}
.about_keynote_woman_imag_slider .elementor-swiper-button-prev {
    bottom: -20px;
    top: unset !important;
    transform: none !important;
    background: #187BDC;
    border-radius: 50%;
    padding: 5px;
    right: unset;
    left: 43% !important;
    transform: translateX(-50%) !important;
}
.about_keynote_woman_imag_slider .elementor-swiper-button-next {
    bottom: -20px;
    top: unset !important;
    transform: none !important;
    background: #187BDC;
    border-radius: 50%;
    padding: 5px;
    right: 43% !important;
    left: unset;
    transform: translateX(50%) !important;
}
.about_keynote_woman_imag_slider .swiper-slide-inner{
    position: relative;
}
.about_keynote_woman_imag_slider .swiper-slide-inner::after{
    content: '';
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, rgba(240, 248, 255, 0.00) 0%, #FAFDFF 95.43%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.about_keynote_woman_imag_slider img{
    width: 100%;
}
.about_keynote_woman_imag_slider .swiper-wrapper{
    margin-bottom: 15px;
}
/* Smooth continuous carousel */
.about-image-carousel .elementor-image-carousel-wrapper .swiper-wrapper {
    transition-timing-function: linear !important;
}
/* .about-image-carousel .elementor-image-carousel-wrapper .swiper-slide {
    flex-shrink: 0 !important;
} */
.about-image-carousel figure.swiper-slide-inner{
    line-height: 1 !important;
}
.about-image-carousel figure.swiper-slide-inner img {
    width: 100%;
}

.about-image-carousel .elementor-image-carousel-wrapper{
    position: relative !important;
}
/* .about-image-carousel .elementor-image-carousel-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url(./images/about-image-slider-top-stripe.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    z-index: 2;
    pointer-events: none;
}
.about-image-carousel .elementor-image-carousel-wrapper::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url(./images/about-image-slider-bottom-stripe.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: bottom center;
    z-index: 2;
    pointer-events: none;
} */

/* About Us Page CSS End */

/* Speakers Listing Page CSS Start */

.find_motivation_text p:not(:last-child){
    margin-bottom: 18px;
}
.find_motivation_text p:first-child{
    margin-bottom: 14px;
}
.find_motivation_text strong{
    font-weight: 500;
}
.blog_pub_date{
    position: absolute !important;
    top: 20px;
    right: 20px;
    width: fit-content;
    padding: 8px 10px;
    background: #FFB93F;
}
.events_title{
    width: fit-content;
    position: relative;
}
.events_title .elementor-heading-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 86px;
    height: 8px;
    background-image: url(./images/blue_line.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.speaker_month_author_info .elementor-heading-title{
    padding: 10px 20px !important;
    border-radius: 10px;
    border: 1px solid #B4B4B4;
    background: transparent;
    width: fit-content;
}
.speaker_month_text p:not(:last-child){
    margin-bottom: 15px;
}
.speaker_month_checkbox_list .elementor-icon-list-items {
    gap: 10px 15px;
}
.speaker_month_checkbox_list ul li .elementor-icon-list-text{
    position: relative;
}
/* .speaker_month_checkbox_list ul li .elementor-icon-list-text::before {
    content: '';
    width: 9px;
    height: 9px;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFB93F;
    border: 2px solid #FFF;
    border-radius: 50%;
} */
.speaker_month_checkbox_list ul li span.elementor-icon-list-text {
    padding-inline-start: 0 !important;
}
.intro_video_btn a:hover span.elementor-button-icon{
    transform: rotate(-7.37deg);
}
#featured_speakers_sec .e-con-inner{
    margin-right: 0;
}
.featured_speakers_inner_btns_container{
    position: absolute !important;
    bottom: 0;
    left: 0;
}
.featured_speakers_inner_btn {
    max-width: 212px !important;
    width: 100%;
}
.featured_speakers_inner_btn a {
    backdrop-filter: blur(10px);
    width: 100%;
}
.featured_speakers_slider .swiper-pagination {
    display: flex;
    gap: 0;
    width: 100% !important;
    padding-right: 40px;
    align-items: end;
}
.featured_speakers_slider .swiper-pagination span.swiper-pagination-bullet {
    opacity: 0.2;
    background: #030302;
    width: 100% !important;
    height: 1px !important;
    border-radius: 0;
    margin: 0 !important;
}
.featured_speakers_slider .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 6px !important;
    opacity: 1;
    width: 83.2% !important;
    border-radius: 10px;
}
.speakers_listing_search_section .search-box label {
    color: #030302CC;
    font-weight: 500;
}
.speakers_listing_search_section span.select_speaker_dropdown_text {
    background: transparent url("./images/speakers_select_dropdwn_arrow.svg");
    color: #03030299;
    /* font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline-block; */
    border: 1px solid rgba(3, 3, 2, 0.30);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}
.speakers_listing_search_section .dropdown-menu {
    /* width: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.50s ease;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    margin-top: 4px; */
    /* background-color: rgba(255, 255, 255, 0.10); */
    background-color: #F0F8FF;
    /* border: 0;
    position: absolute;
    z-index: 10; */
}
.speakers_listing_search_section .dropdown-menu a {
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    background-color: #FFFFFF;
    transition: 0.3s;
}
.speakers_listing_search_section .dropdown-menu a:hover{
    color: #000 !important;
    background-color: #F0F8FF;
}
.speakers_listing_search_section .search-box{
    gap: 24px;
}
/* .speakers_listing_search_section .form-group {
    min-width: 334px;
} */
/* .speaker_month_btn_container .show-button a:hover{
    transform: none;
} */
.speaker_month_btn_container .show-button a:hover span.elementor-button-text{
    transform: none;
}
.speaker_listing_main_container::after{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 9.73%, rgba(0, 0, 0, 0.00) 62.04%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #FFB93F;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    transition: 0.5s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.blog_info_content_container {
    height: 100% !important;
}
div#post_title_btn_container {
    height: 100%;
    justify-content: space-between;
}

#speakers_listing_grid .elementor-pagination .page-numbers:not(.prev):not(.next) {
    display: none;
}

#speakers_listing_grid .elementor-pagination {
    display: flex;
    align-items: center;
    justify-content: end;
    /* gap: 12px; */
    gap: 100px;
    position: relative;
}

#speakers_listing_grid .elementor-pagination .prev, #speakers_listing_grid .elementor-pagination .next {
    border: 1px solid #030302;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    margin: 0 !important;
    transition: 0.3s;
}
#speakers_listing_grid .elementor-pagination .prev:hover, #speakers_listing_grid .elementor-pagination .next:hover{
    background-color: #030302;
    color: #FFB93F;
}
#speakers_listing_grid .elementor-pagination span.page-numbers.prev,
#speakers_listing_grid .elementor-pagination span.page-numbers.next{
    opacity: 0.5;
}

#speakers_listing_grid .elementor-pagination::before {
    content: attr(data-page-counter);
    color: #030302;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    right: 44px;
}
a#speaker_read_more_btn .elementor-button-icon{
    transition: 0.3s;
}
a#speaker_read_more_btn:hover .elementor-button-icon{
    transform: rotate(-45deg);
}
a#speaker_read_more_btn .elementor-button-icon svg path{
    transition: 0.3s;
}
a#speaker_read_more_btn:hover .elementor-button-icon svg path,
a#speaker_read_more_btn:focus .elementor-button-icon svg path{
    stroke: #FFB93F;
}
div#speaker-title-cate-container {
    min-height: 75px;
}
/* #testimonial_excerpt_container,#testimonial_content_container{
    height: fit-content;
    height: 100%;
    min-height: 100%;
} */
div#testimonial_text_container {
    height: 100%;
    min-height: 100%;
}
div#speaker-inner-container {
    height: 40%;
}
/* div#speaker-info-container {
    min-height: 100%;
} */
 
#speakers_listing_form{
scroll-margin-top: 100px;
}
div#speaker-join-btn-container {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    right: -100px;
    width: fit-content;
    z-index: 9;
}
.featured_speaker_bio{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.featured_speaker_cate {
    display: flex;
    gap: 16px !important;
    flex-wrap: wrap !important;
}
.featured_speaker_cate span{
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid #FFF;
    border-radius: 50px;
    padding: 13px 26px;
}
ul.speaker-month-featured-title-list,ul.speaker-month-expertise-list{
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}
ul.speaker-month-expertise-list li,
ul.speaker-month-featured-title-list li{
    color: #030302;
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 18px;
    letter-spacing: 0.18px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}
span.speaker_month_list_icon {
    font-size: 11px;
    line-height: 11px;
    height: 11px;
    margin-top: 4px;
}

/* Speakers Listing Page CSS End */

/* Speakers Detail Page CSS Start */

#speaker_detail_breadcrumb_list li.elementor-icon-list-item a span.elementor-icon-list-text {
    color: rgba(3, 3, 2, 0.50);
}
#speaker_detail_breadcrumb_list li.elementor-icon-list-item a:hover span.elementor-icon-list-text {
    color: #187BDC;
}
#speaker_detail_breadcrumb_list li.elementor-icon-list-item span.elementor-icon-list-text {
    color: rgba(3, 3, 2, 0.80);
}
#speaker_detail_breadcrumb_list li.elementor-icon-list-item:not(:last-child):after {
    transform: rotate(20deg);
}
#speaker-social-icons .elementor-grid-item svg path{
    transition: 0.3s;
}
#speaker-social-icons .elementor-grid-item:hover svg path{
    fill: #FFB93F;
}
div#speaker-category-list .elementor-icon-list-text{
    display: flex;
    flex-wrap: wrap;
    gap: 14px 8px;
}
div#speaker-category-list .elementor-icon-list-text span{
    border-radius: 100px;
    border: 1px solid #FF5B1B;
    background: #FF5B1B;
    padding: 10px 16px;
}
.speaker_bio p:not(:last-child){
    margin-bottom: 18px;
}
.speaker_bio ul,.speaker_bio ol{
    padding: 0;
    padding-left: 20px;
    margin-bottom: 18px;
}
.speaker_bio h1,
.speaker_bio h2,
.speaker_bio h3,
.speaker_bio h4,
.speaker_bio h5,
.speaker_bio h6,
.speaker_blurb_keynote h1,
.speaker_blurb_keynote h2,
.speaker_blurb_keynote h3,
.speaker_blurb_keynote h4,
.speaker_blurb_keynote h5,
.speaker_blurb_keynote h6{
    color: #187BDC;
    font-family: Rubik;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0,0.2);
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
    margin-bottom: 26px;
}
.speaker_blurb_keynote h6 b{
    font-weight: 500;
}
.speaker_blurb_keynote ul,.speaker_blurb_keynote ol{
    padding: 0;
    padding-left: 20px;
    margin-bottom: 18px;
}
.speaker_blurb_keynote{
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0.18px;
    color: #555555;
}
.editable-image {
    display: flex;
    flex-direction: column;
    position: relative;
}
.speaker_deatil_featured_img img {
    width: 341px;
    height: 346px !important;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px !important;
}

.speaker_blurb_keynote p:not(:last-child) {
    margin-bottom: 18px;
}
.image-btn-container{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.image-btn-container button.change-image,.image-btn-container button.save-image {
    border: none;
    border-radius: 10px;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.3s;
}
.image-btn-container button.change-image:hover,.image-btn-container button.save-image{
    background-color: #187BDC;
}
.image-btn-container button.cancel-image {
    background-color: #187BDC;
    color: #FFF;
    border: none;
    padding: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -10px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1;
}
.image-btn-container button.cancel-image:hover,.image-btn-container button.cancel-image:focus{
    background-color: #187BDC;
    color: #FFF;
}
.field-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.field-buttons button.edit-btn,.field-buttons button.save-btn {
    border: none;
    border-radius: 10px;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.3s;
}
.field-buttons button.edit-btn:hover,.field-buttons button.save-btn:hover{
    background-color: #187BDC;
}
.view-mode p{
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0.18px;
    color: #555555;
}
.view-mode-social-icons a {
    transition: 0.3s;
    line-height: 1;
    height: 26px;
}
.view-mode-social-icons a:hover {
    transform: scale(1.1);
}
.view-mode-social-icons a svg path{
    transition: 0.3s;
}
.view-mode-social-icons a:hover svg path{
    fill: #FFB93F;
}
.view-mode-social-icons{
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.social-buttons button.edit-social,.social-buttons button.save-social{
    border: none;
    border-radius: 10px;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.3s;
}
.social-buttons button.edit-social:hover,.social-buttons button.save-social:hover{
    background-color: #187BDC;
}
.tax-buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.tax-buttons button.edit-tax,.tax-buttons button.save-tax{
    border: none;
    border-radius: 10px;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.3s;
}
.tax-buttons button.edit-tax:hover,.tax-buttons button.save-tax:hover{
    background-color: #187BDC;
}

.editable-taxonomy .view-mode,.selected-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 14px 8px;
}
.advanced-tax .tax-tag {
    border-radius: 100px;
    border: 1px solid #FF5B1B;
    background: #FF5B1B;
    padding: 10px 16px;
    font-family: "Lato", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0px;
    color: #FFF;
    width: fit-content;
    display: inline-block;
}

.selected-tags {
    margin-bottom:10px;
}

.remove-tag {
    margin-left:6px;
    cursor:pointer;
    color:#FFF;
}

.tax-search {
    width:100%;
    padding:8px;
    margin-bottom:10px;
}

.tax-dropdown {
    max-height:150px;
    overflow-y:auto;
    border:1px solid #ddd;
    padding:5px;
}

.tax-option {
    padding:6px;
    cursor:pointer;
}

.tax-option:hover {
    background:#f0f0f0;
}

.no_expertise{
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0.18px;
    color: #555555;
}


/* Speakers Detail Page CSS End */

/* Blog & Blog Detail Page CSS Start */

a#load-more-btn span.elementor-button-text{
    position: relative;
    transition: 0.3s;
}
a#load-more-btn span.elementor-button-text::after{
    content: '';
    width: 0%;
    height: 1px;
    background-color: #030302;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}
a#load-more-btn:hover span.elementor-button-text::after{
    width: 100%;
}
a#load-more-btn .elementor-button-icon{
    background-color: #FF5B1B;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
a#load-more-btn:hover .elementor-button-icon{
    transform: rotate(180deg);
}
a#load-more-btn .elementor-button-icon svg path{
    fill: #FFFFFF;
}
div#blog-loop-grid .elementor-grid{
    grid-template-rows: auto !important;
}
.blog_detail_content p:not(:last-child){
    margin-bottom: 18px;
}
.blog_detail_content a{
    color: #555;
    font-weight: 700;
    text-decoration: underline !important;
    transition: 0.3s;
}
.blog_detail_content ol,.blog_detail_content ul{
    padding-left: 20px;
    margin-bottom: 18px;
}
.blog_detail_content a:hover{
    color: #f5b238;
}
.share_btn_container .addtoany_list {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: start;
    width: fit-content;
}
.share_btn_container .addtoany_list a {
    padding: 0;
    transition: 0.3s;
    line-height: 1;
    display: flex;
}
.share_btn_container .addtoany_list a:hover span,.share_btn_container .addtoany_list a:hover img{
    opacity: 1;
}
.share_btn_container .addtoany_share{
    margin-right: 12px;
}

/* Blog & Blog Detail Page CSS End */

/* Podcast Page CSS Start */

div#whats_new_breadcrumb_list li.elementor-icon-list-item a span.elementor-icon-list-text {
    color: rgba(3, 3, 2, 0.50);
}
div#whats_new_breadcrumb_list li.elementor-icon-list-item:nth-child(2) span.elementor-icon-list-text{
    color: rgba(3, 3, 2, 0.50);
}
div#whats_new_breadcrumb_list li.elementor-icon-list-item a:hover span.elementor-icon-list-text {
    color: #187BDC;
}
div#whats_new_breadcrumb_list li.elementor-icon-list-item span.elementor-icon-list-text {
    color: rgba(3, 3, 2, 0.80);
}
div#whats_new_breadcrumb_list li.elementor-icon-list-item:not(:last-child):after {
    transform: rotate(20deg);
}

a#subscribe_btn .elementor-button-icon svg{
    width: 37px;
}
.podcast-play-btn{
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.podcat-episodes-title .elementor-heading-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
div#fit-with{
    width: fit-content;
}
.testimonial_slider .elementor-widget-theme-post-content p {
    margin-bottom: 12px !important;
}
.iti__selected-flag {
    border-radius: 5px 0px 0px 5px;
}
.pledge_form span.wpcf7-form-control.wpcf7-acceptance input, .pledge_form span.wpcf7-form-control.wpcf7-acceptance span  {
    cursor: pointer;
}
div#upload-photo-preview img {
    height: 200px !important;
    width: 100%;
    object-fit: cover;
}

/* Podcast Page CSS End */

/* Contact Us Page CSS Start */

.location_title .elementor-heading-title{
    width: fit-content;
    position: relative;
}
.location_title .global_title{
    position: relative;
}
.location_title .global_title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -8px;
    width: 82px;
    height: 10px;
    background-image: url(./images/blue_line.svg);
    background-repeat: no-repeat;
    background-size: auto;
}
.only_line {
    position: relative;
}
.only_line::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -5px;
    width: 101px;
    height: 9px;
    background-image: url("./images/title-blue-line.svg");
    background-repeat: no-repeat;
    background-size: auto;
}
.contact_field .input-text{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #0303021A;
    border-radius: 0;
    outline: 0;
    color: #030302;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    padding: 0;
    padding-bottom: 19px;
}
.contact_field .input-text::placeholder{
    color: #030302B2;
}
.send_message_contact_form .contact_field:not(:first-child) {
    margin-top: 22px;
}
.contact_field select.input-text {
    appearance: none;
    background-image: url(./images/contact-form-dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: auto;
    padding-left: 5px;
}
.message_submit_container {
    margin-top: 40px;
}
.message_submit_container p{
    display: flex;
    align-items: center;
}
.message_submit_container .submit-btn{
    display: flex;
    gap: 14px;
    align-items: center;
    border-radius: 10px;
    background-color: #187BDC;
    padding: 12px 40px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.18px;
    border: none;
    outline: none;
    transition: 0.3s;
}
.message_submit_container .submit-btn svg{
    transition: 0.3s;
}
.message_submit_container .submit-btn:hover svg{
    transform: rotate(-45deg);
}
.wpcf7 form .wpcf7-response-output,.wpcf7-not-valid-tip{
    font-family: Lato;
}
.contact_global_text p:not(:last-of-type){
    margin-bottom: 18px;
}

/* Contact Us Page CSS End */

/* Training Page CSS Start */

div#work-first-step {
    width: fit-content;
}
#work-first-icon {
    position: absolute;
    top: 37%;
    left: 15%;
}
div#work-secoond-icon {
    position: absolute;
    top: -13%;
    left: 50%;
}
div#work-third-icon {
    position: absolute;
    top: 64%;
    left: 75%;
}
div#work-step-two {
    position: absolute;
    top: 63%;
    left: 45%;
    width: fit-content;
}
div#two-num {
    top: -90px;
    left: -40px;
    width: 85%;
}
div#work-step-three {
    width: fit-content;
    position: absolute;
    right: 10%;
    bottom: -27%;
}
div#three-num {
    width: 64%;
    left: 20px;
}

/* Training Page CSS End */

/* Pledge Page CSS Start */

.pledge_counter {
    height: fit-content;
}
.pledge_counter .elementor-counter{
    align-items: center;
}
div#pledge-icon-url .elementor-icon-wrapper {
    height: 24px;
    line-height: 1;
    transition: 0.3s;
}
.pledge_info_main_container:hover div#pledge-icon-url .elementor-icon-wrapper{
    transform: rotate(45deg);
}
.pledge_form .pledge_contact_field .input-field{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #0303021A;
    border-radius: 0;
    outline: 0;
    color: #030302;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 0;
    padding-bottom: 19.5px;
}
p.field-label {
    color: #030302CC;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-bottom: 20px;
}
span.req-star {
    color: #d63637;
}
.pledge_form .pledge_contact_field .input-field::placeholder{
    color: #030302CC;
}
.pledge_form .pledge_contact_field:not(:first-child) {
    margin-top: 30.5px;
}
.pledge_form .message_submit_container .submit-btn{
    background-color: #187BDC;
}
.pledge_form .message_submit_container .submit-btn:hover{
    background-color: #FFB93F;
}
.pledge_checkbox_field .the_pledge_title{
    color: #FF5B1B;
    font-family: "Lato", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    line-height: 28px;
    margin: 0;
    margin-bottom: 10px;
}
.pledge_form .pledge_checkbox_field .wpcf7-list-item{
    margin: 0;
}
.pledge_form .pledge_checkbox_field .wpcf7-list-item-label{
    color: #030302CC;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.pledge_form .pledge_checkbox_field input.pledge_checkbox {
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid #03030280;
    position: relative;
    transition: 0.3s;
    min-width: 26px;
}
.pledge_form .pledge_checkbox_field .wpcf7-list-item label{
    display: flex;
    gap: 10px;
}

input.pledge_checkbox:checked{
    background-color: #187BDC;
    border-color: #187BDC;
}
.pledge_form .pledge_checkbox_field input.pledge_checkbox:checked::after{
    content: "✓";
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.pledge_upload_photo_field span.wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
}

/* input#photo-upload {
    color: #030302;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 0;
    font-family: "Lato", Sans-serif;
    width: 100%;
}
input#photo-upload::-webkit-file-upload-button{
    border-radius: 10px;
    background-color: #FF5B1B;
    padding: 6px 15px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.18px;
    border: none;
    outline: none;
    transition: 0.3s;
    cursor: pointer;
}
input#photo-upload::-webkit-file-upload-button:hover{
    background-color: #033D94;
} */
input#photo-upload {
    display: none;
}
.custom-file-upload {
    display: inline-block;
    border-radius: 10px;
    background-color: #FF5B1B;
    padding: 6px 15px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.18px;
    border: none;
    outline: none;
    transition: 0.3s;
    cursor: pointer;
}
.custom-file-upload:hover {
    background-color: #033D94;
}
#file-name {
    display: block;
    color: #030302CC;
    font-family: Lato;
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
}

div#upload-photo-preview {
    width: 250px;
    margin-top: 20px;
}
/* .pledge_form .message_submit_container p{
    justify-content: center;
} */

/* Pledge Page CSS End */

/* Privacy Policy & Terms and Services Page CSS Start */

.terms_content p:not(:last-of-type){
    margin-bottom: 18px;
}
.terms_content ul,.terms_content ol{
    padding: 0;
    padding-left: 20px;
    margin-bottom: 18px;
}

/* Privacy Policy & Terms and Services Page CSS End */

/* My Account Page CSS Start */

div#message {
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 700;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302;
    text-align: center;
    border: 1px solid green;
    padding: 5px 25px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
}
.acf-fields>.acf-field {
    margin-bottom: 15px !important;
    padding: 0 0px 0 20px !important;
}
input.acf-button.button.button-primary.button-large {
    border: none;
    border-radius: 10px;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.3s;
    background-color: #187BDC;
}
input.acf-button.button.button-primary.button-large:hover{
    background-color: #033D94;
}
.acf-label label {
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0.18px;
    color: #030302;
    margin: 0 !important;
    text-transform: capitalize;
}
span.acf-required {
    color: #030302;
    margin: 0;
}
.acf-input-wrap input {
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302;
    padding: 5px 10px !important;
    border-radius: 10px !important;
    /* outline: 0; */
    outline-color: #030302;
    border-color: #D9DBE9 !important;
}
.acf-input select{
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302;
    padding: 5px 10px !important;
    border-radius: 10px !important;
    /* outline: 0; */
    outline-color: #030302;
    border-color: #D9DBE9 !important;
    appearance: none;
    background-image: url(./images/contact-form-dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position: 99% center;
    background-size: auto;
}
.acf-input textarea{
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302;
    padding: 5px 10px !important;
    border-radius: 10px !important;
    /* outline: 0; */
    outline-color: #030302;
    border-color: #D9DBE9 !important;
}
.select2-container .select2-selection--single{
    height: 100% !important;
    border-radius: 10px !important;
    /* outline: 0; */
    outline-color: #030302;
    border-color: #D9DBE9 !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302 !important;
    padding: 5px 10px !important;
    border-radius: 10px !important;
    /* outline: 0; */
    outline-color: #030302;
    border-color: #D9DBE9 !important;
}
.select2-dropdown .select2-results__option{
    font-size: 18px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(./images/contact-form-dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: auto;
    border: none !important;
    height: 100% !important;
    width: auto !important;
    display: flex;
    position: unset !important;
    margin-right: 8px !important;
    margin-top: 0 !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302 !important;
    padding: 5px 10px !important;
    border-radius: 10px !important;
    outline: 0;
    border-color: #D9DBE9 !important;
}
.acf-checkbox-list span{
    font-family: "Lato", Sans-serif;
    font-size: 16px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    color: #030302 !important;
}
.acf-taxonomy-field .categorychecklist-holder{
    border-radius: 10px !important;
    border-color: #D9DBE9 !important;
}
.acf-fields>.acf-field{
    border: none !important;
}
.acf-fields>.acf-tab-wrap {
    background: transparent;
}
.acf-fields>.acf-tab-wrap {
    background: transparent !important;
}
.acf-fields>.acf-tab-wrap .acf-tab-group {
    margin: 0 !important;
    border: none !important;
    padding: 0;
    display: grid;
    gap: 10px;
    z-index: 0 !important;
}
.acf-fields>.acf-tab-wrap .acf-tab-group li a {
    border: none !important;
    color: #FFF !important;
    background-color: #187BDC !important;
    margin: 0 !important;
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 26px !important;
    letter-spacing: 0.18px;
    transition: 0.3s;
    border-radius: 10px !important;
}
.acf-fields>.acf-tab-wrap .acf-tab-group li a:hover,
.acf-fields>.acf-tab-wrap .acf-tab-group li.active a{
    background-color: #033D94 !important;
}
.acf-tab-group li{
    margin: 0 !important;
    float: none !important;
}
.acf-hl:before, .acf-hl:after, .acf-bl:before, .acf-bl:after, .acf-cf:before, .acf-cf:after,.acf-fields.-sidebar:before{
    display: none !important;
}
.acf-form-submit {
    margin-top: 20px;
    padding-left: 20%;
    margin-left: 20px;
}
.select2-container.-acf {
    z-index: 1 !important;
}
.acf-url i{
    top: 50% !important;
    transform: translateY(-50%);
}
.speaker_profile_form_container .elementor-shortcode{
    position: relative;
}
.my-account-form-btn-container{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.my-account-form-btn-container a.logout-btn, .my-account-form-btn-container a.account-change-pswd-btn{
    color: #FFF;
    border: none;
    border-radius: 10px;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.3s;
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0.18px;
    background-color: #187BDC;
}
.my-account-form-btn-container a.logout-btn:hover, .my-account-form-btn-container a.account-change-pswd-btn:hover{
    background-color: #033D94;
}
.account-login-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
p.edit_profile_text {
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0.18px;
    color: #030302;
    text-align: center;
}
a.account_login_link {
    color: #FFF;
    border: none;
    border-radius: 10px;
    width: fit-content;
    padding: 10px 20px;
    transition: 0.3s;
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 26px;
    letter-spacing: 0.18px;
    background-color: #FFB93F;
    display: inline-block;
    margin: 0 auto;
}
a.account_login_link:hover{
    background-color: #187BDC;
    color: #FFF;
}
span.select2-selection__clear {
    display: none;
}
div[data-name="image_gallery"] .acf-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-right: 20px;
    padding-top: 15px;
    border-radius: 10px;
    border-color: #D9DBE9 !important;
}
div[data-name="image_gallery"] .acf-fields .acf-field{
    width: fit-content;
}
.wp-switch-editor {
    margin-top: 0 !important;
    padding: 10px !important;
}

/* My Account Page CSS End */

/* 404 Page CSS Start */

.error_container {
    position: relative;
}
h2.first-404, h2.second-404 {
    font-size: 250px;
    margin: 0;
    font-family: "Lato", Sans-serif;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 1;
    padding: 0;
    width: fit-content;
    overflow: hidden;
}
h2.first-404 {
    color: transparent;
    -webkit-text-stroke: 2px #FFF;
    position: relative;
}
h2.second-404 {
    color: #FFF;
    -webkit-text-stroke: 2px #FFF;
    animation: waves 4s ease-in-out infinite;
    position: absolute;
    top: 0;
}

@keyframes waves{
  0%, 100% {
    clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}

/* 404 Page CSS End */


ul.dropdown-menu a.selected {
    background: #187bdc !important;
    color: #FFFFFF !important;
}

/* Blog Page Css */

/* .blog_page_feature_img  .elementor-widget-theme-post-featured-image.elementor-widget-image {
    overflow: hidden;
} */
.blog_page_feature_img .elementor-widget-theme-post-featured-image{
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.blog_inner_container .blog_page_feature_img img {
    transition: 0.4s ease-in-out;
}

.blog_inner_container:hover .blog_page_feature_img img {
    transform: scale(1.1);
}


/* Blog Page Css End */

/* Sitemap Page Css Start */

.sitemap_contaner .elementor-sitemap-title{
	margin: 0;
	margin-bottom: 20px;
}
.sitemap_contaner ul.elementor-sitemap-list{
	padding-left: 20px;
}

/* Sitemap Page Css End */

/* Responsive CSS start */

@media (min-width:1025px) and (max-width:1400px){
    .header_menu ul.elementor-nav-menu {
        gap: 35px !important;
        margin-inline-end: unset;
    }
    .header-btn span.elementor-button-text{
        display: none;
    }
    .header-btn a {
        padding: 10px !important;
        border: 1px solid #FFF;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
    }
}

@media (min-width:1441px) and (max-width:1680px){
    .privacy_list ul{
        gap:20px;
    }
    /* .why_we_exist_leftimg_container{
        left: 0;
    }
    .why_we_exist_rightimg_container{
        right: 0;
    } */
}
@media (min-width:1501px) and (max-width:1800px){
    .about-image-carousel .elementor-image-carousel-wrapper::before {
        top: -6px;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after {
        bottom: -4px;
    }
}

@media (min-width: 1025px) {
    .banner-search-section .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width:1500px){
    .privacy_list ul{
        gap: 10px;
    }
    /* .why_we_exist_leftimg_container{
        left: 0;
    }
    .why_we_exist_rightimg_container{
        right: 0;
    } */
    .about-image-carousel .elementor-image-carousel-wrapper::before {
        top: -6px;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after {
        bottom: -4px;
    }
    div#two-num {
        width: 45%;
        left: -60px;
        top: -60px;
    }
    div#work-step-two {
        left: 40%;
        top: 68%;
    }
    div#three-num {
        width: 45%;
        left: 0px;
        top: -40px;
    }
    div#work-step-three{
        right: 6%;
        bottom: -35%;
    }
    div#header-social-icons {
        --grid-column-gap: 10px;
    }
    .header_menu ul.elementor-nav-menu {
        gap: 40px !important;
        margin-inline-end: auto;
    }
}

@media (min-width:1201px) and (max-width:1300px){
    .footer_form_container .dis-flex{
        flex-direction: column;
    }
    div#footer_region_menu_grid_container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    div#copyright_container {
        flex-direction: column;
        gap: 20px;
    }
    .privacy_list ul{
        gap: 40px;
    }
    .banner-search-section .form-group{
        flex: 1 0 auto;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::before {
        top: -8px;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after {
        bottom: -5px;
    }
    div#work-step-three {
        right: 3%;
        bottom: -35%;
    }
    div#header-social-icons .elementor-social-icons-wrapper{
        word-spacing: 5px;
    }
    .header_menu ul.elementor-nav-menu {
        gap: 30px !important;
    }
    div#header-social-icons {
        --icon-size: 11px;
    }
    div#speakers_listing_grid .elementor-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:1200px){
    .speakers_listing_search_section .search-box {
        gap: 16px;
    }
    .banner_submit_btn{
        gap: 5px;
        padding: 14px 26px !important;
    }
    /* #speaker_month_container {
        background-image: none;
    } */
    .header_menu ul.elementor-nav-menu {
        gap: 25px !important;
    }
    /* .header_menu .elementor-nav-menu--main ul.sub-menu{
        width: 120px;
    } */
    .about-image-carousel .elementor-image-carousel-wrapper::before {
        top: -10px;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after {
        bottom: -9px;
    }
    .header_menu ul.sub-menu .elementor-sub-item{
        padding-top: 10px !important;
    }
    ul.sub-menu {
        margin-left: 10px !important;
    }
    div[data-name="image_gallery"] .acf-fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:1024px){
    .clear_all_btn{
        max-width: 185px;
    }
    #speaker_month_container {
        background-image: none;
    }
	.women-speaker-box .women_speaker_img img{
        opacity: 1;
        visibility: visible;
    }
    .banner-search-section .dropdown:hover .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
    }
    .banner-search-section .dropdown-menu{
        background-color: #FFF;
    }
    .banner-search-section .dropdown-menu a,.banner-search-section .dropdown-menu a:hover{
        color: #030302;
    }
    .elementor-nav-menu--dropdown .elementor-item:focus,
    .elementor-nav-menu--dropdown .elementor-item:hover,
    .header_menu .sub-menu.elementor-nav-menu--dropdown,
    .header_menu ul li a.highlighted{
        background-color: transparent !important;
    }
    .header_menu nav.elementor-nav-menu__container{
        background-color: #187BDC !important;
    }
    .elementor-nav-menu li:not(:last-child) a{
        padding-bottom: 0 !important;
    }
    li.menu-item-has-children .sub-arrow svg path{
        fill: #FFF;
    }
    li.menu-item-has-children a.highlighted .sub-arrow svg path,
    li.menu-item-has-children a:hover .sub-arrow svg path{
        fill: #FFB93F;
    }
    /* .elementor-nav-menu li:last-child a{
        padding-top: 0 !important;
    } */
    .header_menu ul > li > a::after{
        display: none;
    }
    .header_menu ul.sub-menu li:not(:last-child) a {
        border-bottom: none !important;
    }
    .header_menu a.elementor-item-active{
        background-color: transparent !important;
    }
    /* .elementor-nav-menu .sub-arrow{
        padding: 0 !important;
    }
    .header_menu ul li a.has-submenu{
        align-items: center;
        gap: 10px;
    } */
    .home_banner_container::after{
        height: 230px;
    }
    .privacy_list ul{
        gap: 20px;
    }
    .banner-search-section .form-group {
        min-width: 40%;
    }
    /* .why_we_exist_leftimg_container,
    .why_we_exist_rightimg_container{
        position: static !important;
        transform: none;
    } */
    .we_exist_images_container {
        position: static !important;
        transform: none;
    }
    #back_image_none{
        background-image: none;
    }
    /* #speaker_month_container {
        background-image: none;
    } */
    .featured_speakers_slider .swiper-pagination{
        padding-right: 0px;
    }
    .featured_speakers_slider .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active{
        width: 100% !important;
    }
    .banner-search-section .submit-btn {
        max-width: 100%;
    }
    div#keynote_org_logo_container img{
        filter: grayscale(0);
    }
    div[data-name="image_gallery"] .acf-fields {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:880px){
    .home_banner_container::after{
        height: 320px;
    }
    .footer_social_icon .elementor-grid-item {
        margin: 0 !important;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::before {
        top: -12px;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after {
        bottom: -11px;
    }
    h2.first-404, h2.second-404{
        font-size: 180px;
    }
}


@media (max-width:767px){
    .discover_title .title_yellow::after {
        right: -50%;
        transform: translate(-50%, -50%);
    }
 
	.keynote_newsletter form {
        display: block;
    }
	
	.keynote_newsletter .tnp-field-email {
        width: 100%;
        margin-bottom: 20px !important;
    }
	
	.keynote_newsletter .tnp-field-button::after {
        bottom: 14px;
        left: 95px;
    }
    .home_banner_container::after{
        height: 0;
    }
    .banner-search-section .form-group {
        min-width: 100%;
    }
    #testimonial_quote_img {
        right: 10px;
        bottom: 10px;
        top: unset;
        z-index: 0;
        opacity: 0.5;
        width: 25px;
    }
    .speaker_month_author_info .elementor-heading-title{
        padding: 10px !important;
        border-radius: 10px;
    }
    div#bg-none{
        background-image: none;
    }
    /* .about-image-carousel .elementor-image-carousel-wrapper::before {
        display: none;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after {
        display: none;
    } */
    div#speaker-title-cate-container {
        min-height: fit-content;
    }
    div#speaker-inner-container {
        height: fit-content;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::before{
        background-size: 100% 90%;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after{
        background-size: 100% 90%;
    }
    .pledge_form .pledge_checkbox_field input.pledge_checkbox{
        margin-top: 5px;
    }
    h2.first-404, h2.second-404{
        font-size: 140px;
    }
    .acf-fields>.acf-tab-wrap .acf-tab-group {
        position: unset !important;
        width: fit-content !important;
        display: flex;
        flex-wrap: wrap;
    }
    .acf-fields.-sidebar {
        padding: 0 !important;
        margin-left: -20%;
    }
    .acf-fields>.acf-field{
        padding: 0 !important;
        margin-top: 15px !important;
    }
    .acf-form-submit {
        padding-left: 0;
        margin-left: 0;
    }
    div[data-name="image_gallery"] .acf-fields{
        grid-template-columns: repeat(1, 1fr);
        padding-top: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }
	.blog_inner_container {
		height: fit-content !important;
	}
	div#post_title_btn_container{
		height: fit-content;
	}
	div#blog-loop-grid .elementor-grid {
		grid-auto-rows: auto;
	}
}

@media (max-width:520px){
    .footer-menu ul.elementor-nav-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer_form_container .dis-flex {
        flex-direction: column;
        gap: 0;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::before{
        background-size: 100% 80%;
    }
    .about-image-carousel .elementor-image-carousel-wrapper::after{
        background-size: 100% 80%;
    }
    .speaker_applicationform_page_title .elementor-heading-title br{
        display: none;
    }
    div[data-name="image_gallery"] .acf-fields{
        grid-template-columns: repeat(1, 1fr);
        padding-top: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }
    .acf-fields>.acf-tab-wrap .acf-tab-group li a{
        font-size: 16px !important;
        line-height: 20px !important;
        padding: 8px !important;
    }
}
/* @media screen and (min-width:1301px) and (max-width:1640px){
    .banner_submit_btn {
    padding: 14px 27px !important;
    }
} */
@media screen and (max-width:430px){
    #speakers_listing_grid .elementor-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .Recent-view-section .elementor-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .pledge-page-grid .elementor-loop-container.elementor-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .pledge-page-grid .elementor-element-98214f2 img{
        height: 400px !important;
    }
}
    div#testimonial_text_container {
        min-height: 400px;
        height: 100%;
    }
@media (max-width: 480px) {
    .cf7sr-g-recaptcha iframe {
        transform: scale(.8);
        -webkit-transform: scale(.8);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
        .cf7sr-g-recaptcha {
        width: 100%; 
         overflow: hidden;
    }
}