/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

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

.custom-title span{
 	color:#000000;	
}

.custom_title_vivid span{
 	color:#ee2626;
}

.custom-title.banner-title span{
 	color:#40A8AD;	
}

.header-cta .elementor-button{
    box-shadow:none !important;
}

.header-cta .elementor-button-icon svg{
    width:15px;
}

.stats-grid{
    fill: linear-gradient(113deg, rgba(255, 255, 255, 0.40) 10.29%, rgba(255, 255, 255, 0.00) 100.35%);
	stroke-width: 2px;
	stroke: #FFF;
	filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
	backdrop-filter: blur(37.5px);
}

.hvr-zoom img{
    transition: 0.3s all ease;
}

.hvr-zoom:hover img,
.diff-list-item:hover .elementor-widget-image img{
    transform: scale(1.1);
}

/* Custom animations */
@keyframes smooth-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1; 
  }
  50% {
    transform: scale(1.01);
    opacity: 0.7; 
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes move {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 220px 220px;
  }
}

/* Glass hover effect for anchor links */
.glass-hover-btn {
  position: relative;
  overflow: hidden;
}

.glass-hover-btn .glass-effect {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-hover-btn:hover .glass-effect {
  transform: scaleX(1);
}

/* Zoom effect for social media icons */
.zoom-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-hover:hover {
  transform: scale(1.2);
}

/* Animation classes */
.animate-smooth-pulse img{
  /* animation: smooth-pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; */
  animation: smooth-pulse 3s ease-in-out infinite; 
}

.animate-float img{
  animation: float 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
  
.tab-img {
  display: none !important;
}

.desk-img {
  display: block !important;
}

.custom-title i{
    white-space: nowrap;
}

.custom-title .mob-brk{
    display: block !important;
}

.custom-title i{
    font-style: normal !important;
}

.contact-form .elementor-message:before{
	display:none;
}

.contact-form .elementor-message{
	padding-top:15px;
}

.abt-ellipse-grain{
    position: relative;
    display: inline-block;
    border-radius: 100% !important;
    overflow: hidden;
}

.abt-ellipse-grain::after {
    content: "";
    position: absolute;
    inset: 0;  opacity:0.3;
    pointer-events: none; 
    background:
        radial-gradient(circle, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 90%) 80%),
        url('/wp-content/uploads/2026/01/grain-overlay.svg') center/contain repeat;
}

.header-wrapper.is-sticky {
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-animation: slideDown 0.35s ease-out;
    animation: slideDown 0.35s ease-out;
}

.header-wrapper.is-sticky .header-menu{
    background:none !important;
	padding:0px !important;
}

.header-wrapper.is-sticky .header-cta a{
    border-radius: 35px 35px 35px 35px;
    padding: 7px 20px 7px 20px !important;
}

.header-wrapper.is-sticky .header-cta .elementor-button-content-wrapper{
  gap:10px !important;
}

.header-wrapper.is-sticky .header-cta .elementor-button-icon svg {
    width: 12px;
}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{
	font-family:inherit;
}


/** BTN Hover **/

.elliot-button .elementor-button,
.header-menu .elementor-nav-menu li > a{
  position: relative;
  display: inline-flex;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.elliot-button .elementor-button-content-wrapper,
.header-menu .elementor-nav-menu li > a{
  position: relative;
  z-index: 2;
  width: 100%; 	
}

.elliot-button .elementor-button::before,
.header-menu .elementor-nav-menu li > a:has(.menu-text)::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  aspect-ratio: 1;
  background-color: #40A8AD;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1),
              opacity 0.6s ease;
}

.xl_btn .elliot-button .elementor-button:hover::before{
  transform: translate(-50%, -50%) scale(50); 
}

.elliot-button .elementor-button:hover::before,
.header-menu .elementor-nav-menu li > a:hover::before{
  transform: translate(-50%, -50%) scale(20);
  opacity: 1;
}

.elliot-button .elementor-button:active,
.header-menu .elementor-nav-menu li > a:active{
  transform: scale(0.95);
}

.header-menu .elementor-nav-menu li > a{
	border-radius:25px !important;
}

.header-menu .elementor-nav-menu li:hover > a > span{
	position:relative;
	z-index:5; 
	transition: color 0.6s ease; 
}

.header-menu .elementor-nav-menu > li > a > span{
	position:relative;
	z-index:3; 
	color:#FFF !important;
	transition: color 0.5s ease;
}

.header-menu .elementor-nav-menu li > a::before{ 
  background-color: #40A8AD !important;
}

.header-menu .elementor-nav-menu > li > a,
.header-menu .elementor-nav-menu > li > a > span{
	color:#FFF !important;
	fill:#FFF !important;
}

.header-wrapper.is-sticky .elementor-nav-menu > li  > a,
.header-wrapper.is-sticky .elementor-nav-menu > li  > a > span{
	color:#3b3b3b !important;
	fill:#3b3b3b !important;
}

.header-menu .elementor-nav-menu li > a:has(.menu-text):hover,
.header-menu .elementor-nav-menu li > a:hover > span,
.header-menu .elementor-nav-menu li:hover > a > span{
  color:#FFF !important;  
}

.elliot-button.btn-hvr-blue .elementor-button::before { 
  background-color: #40A8AD;
}

.elliot-button.btn-hvr-vivid .elementor-button::before { 
  background-color: #EE2626;
}
 
.elliot-button.btn-hvr-black .elementor-button::before {  
  background-color: #000000;
}

.header-menu .elementor-nav-menu li > a.elementor-item-active{
	color:inherit !important;
}

.banner_section{
	background-color:#D9D9D980;
}

.benefits-listing .e-con-inner{
    position: relative;
}


.ft-newsletter .elementor-form-fields-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 8px;
    display: flex; 
    margin: 0px !important;
}
 
.ft-newsletter .elementor-field-group-email {
    flex-grow: 1;  
}

.ft-newsletter .elementor-col-50{
	width:auto;
	margin: 0px !important;
}

.ft-newsletter .elementor-field-type-email input {
    border: none !important;
    padding: 0px 10px !important;
}
 
.ft-newsletter .elementor-field-type-email input:focus {
    outline: none !important;
    box-shadow: none !important;
}
 
.ft-newsletter .elementor-field-type-submit {
    flex-basis: auto !important; 
}

.ft-newsletter .elementor-button {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: background 0.3s ease;
    width: auto !important;
    min-height: auto !important;
    padding: 8px 20px;
	box-shadow:none !important;
}

.ft-newsletter .elementor-button:hover {
    background-color: #ef3939 !important;
}

.ft-newsletter .elementor-field-type-email input::placeholder {
    color: #000000 !important;
    opacity: 1; 
}

.elementor-editor-active .ft-newsletter .elementor-col-50{
	width: 50% !important;
}

.cta-bg{
    background: linear-gradient(113deg, rgba(154, 154, 154, 0.20) 10.29%, rgba(255, 255, 255, 0.00) 100.35%);
backdrop-filter: blur(10px);
}

.full-img, .full-img *{
    width: 100%;
    height: 100%;
}

.contact_form .elementor-form .elementor-field-type-acceptance{
   padding-top:30px; 
}

.contact_form .elementor-form .elementor-field-type-acceptance ~ .elementor-field-type-acceptance{
   padding-top:5px;
}

/* .contact_form .elementor-field-group-message{
   padding-bottom:30px;
} */

.contact_form .e-form__buttons{
   padding-top:30px;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder{
   opacity:0.9 !important;  
}

.contact_form .elementor-field-type-textarea textarea{
    border-radius:25px !important;
}

.contact_form #form-field-submitted_information,
.contact_form #form-field-latest_updates{
    appearance: none;
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border: 1px solid #ee2626;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px; 
}

.contact_form #form-field-submitted_information:checked,
.contact_form #form-field-latest_updates:checked{
    background: #ee2626;
    border-color: #ee2626;
}

.contact_form #form-field-submitted_information:checked::after,
.contact_form #form-field-latest_updates:checked::after{
    content: "✓";
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact_form .elementor-field-option:has(input[type="checkbox"]){ 
	display:flex; 
	gap:15px;
}

.contact_form .elementor-field-option:has(input[type="checkbox"]) label{
	margin-top:-10px;
	width:calc(100% - 30px);
}

.normal-content .elementor-widget-text-editor h1,
.normal-content .elementor-widget-text-editor h2,
.normal-content .elementor-widget-text-editor h3,
.normal-content .elementor-widget-text-editor h4,
.normal-content .elementor-widget-text-editor h5{
	line-height:1.3em;
	padding:10px 0px;
} 

.normal-content .elementor-widget-text-editor h1,
.normal-content .elementor-widget-text-editor h2,
.normal-content .elementor-widget-text-editor h3{
	color:#ee2626;
}

.normal-content .elementor-widget-text-editor a{
	
}
 
.normal-content .elementor-widget-text-editor h1{
   font-size:60px;
}

.normal-content .elementor-widget-text-editor h2{
   font-size:44px;
}

.normal-content .elementor-widget-text-editor h3{
   font-size:34px;
}

.normal-content .elementor-widget-text-editor h4{
   font-size:26px;
}

.normal-content .elementor-widget-text-editor h5{
   font-size:24px;
}

.normal-content .elementor-widget-text-editor a{	
    color: #ee2626;
}

.normal-content .elementor-widget-text-editor a:hover{	
    color: #40A8AD;
}

.insight-custom-content h1 {
    font-size: 38px; 
    line-height: 1.3em;
}

.insight-custom-content h2 {
    font-size: 34px; 
}

.insight-custom-content h3 {
    font-size: 30px; 
}

.insight-custom-content h4 {
    font-size: 26px; 
}

.insight-custom-content h5 {
    font-size: 22px; 
}

.insight-custom-content h6 {
    font-size: 20px; 
}

.insight-custom-content ul li,
.insight-custom-content ol li { 
    margin-bottom: 10px;
}

.insight-custom-content img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
}

.insight-custom-content hr {
    border-color: #DDD;
    border-width: 1px;
    margin-top: 30px;
    margin-bottom: 30px;
	opacity:0.2;
}
 
.insight-custom-content h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
	font-weight: 600;
}

.insight-custom-content ul,
.insight-custom-content ol,
.insight-custom-content img{
    margin-bottom: 40px;
} 

.pt-copy-link {
    position: relative; 
}

.copy-tooltip {
    position: absolute;
    background-color: #ee2626;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 5px;
    visibility: hidden;
    z-index: 1000;
    opacity: 1;
    top: -60px !important;
    left: 170px !important;
    white-space: nowrap;
    line-height: 1.2em;
    font-size: 18px;
}

.copy-tooltip[style*="visibility: visible"] {
    opacity: 1;  
}

footer .disable_nolink li:not(:has(a)) *,
.disable_nolink li:not(:has(a[href]:not([href="#"]))),
.disable_nolink li a[href="#"] span {
  color: #FFF !important;
  pointer-events: none;
}


.text_break{
	word-break: break-word;
	overflow-wrap: break-word;
}


.recent-insights .elementor-post__text{
	display:flex !important;
}

.recent-insights .elementor-post__meta-data{
	order: 1;
}

.recent-insights .elementor-post__title{
	order:2;
}

.recent-insights .elementor-post__excerpt{
	order:3;
}

.recent-insights .elementor-post__read-more{
	order:4;
}

.recent-insights .elementor-post__title a,
.recent-insights .elementor-post__read-more{
	transition:0.3s all ease;
}

.recent-insights .elementor-post__title:hover a,
.recent-insights .elementor-post__read-more:hover{
	color:#ee2626 !important;
}

.cart-wrapper .shipping-calculator-button{ 
    font-family: "KonstantGrotesk", Sans-serif !important;
}

.cart-wrapper .woocommerce table.shop_table td,
.cart-wrapper .cart-collaterals .shipping-calculator-form label,
body.woocommerce-page .e-woo-select2-wrapper .select2-results__option{
    font-family: "Manrope", Sans-serif;
}

.cart-wrapper .product-remove a{
	margin-right:15px !important;
}

.cart-wrapper .shop_table .product-thumbnail > a{
	border: 1px #000000 solid;
	width: 70px;
	height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

.woocommerce-message {
    border-top-color: #40A8AD;
}

.woocommerce-message::before { 
    color: #40A8AD;
}

.cart-wrapper .wc-proceed-to-checkout a{
	width:100% !important;
}
 
.cart-wrapper .product-quantity .input-text.qty{
	min-height: 35px;
	max-height: 35px;
	padding-left: 8px;
}

.cart-wrapper .shop_table .product-remove{ 
	display:none;
}

.checkout-wrapper #order_comments{
	border-radius:30px !important;
}

.checkout-wrapper .woocommerce-validated *,
.checkout-wrapper #wc-stripe-payment-method-instructions-card a,
.checkout-wrapper .woocommerce-privacy-policy-text a{
	font-size:inherit;
}

.checkout-wrapper .payment_box #wc-stripe-new-payment-method{
	margin:0px 5px 0px 0px !important
}

.checkout-wrapper #wc-stripe-upe-form{
	border-bottom:0px;
}

.checkout-wrapper .wc_payment_methods label {  
  font-family: "KonstantGrotesk", Sans-serif !important;
}

.checkout-wrapper .payment_box label{ 
	font-family: inherit !important;
	font-size:16px !important;
}

.checkout-wrapper .wc_payment_methods .input-radio {
  width: 20px;
  height: 20px; 
  accent-color: rgb(65 146 149);  
  cursor: pointer;
}

.wc_payment_methods .input-radio {
  width: 20px;
  height: 20px; 
  cursor: pointer;
  accent-color: rgb(65 146 149); 
}

.checkout-wrapper .wc_payment_methods .input-radio::before {
  border: 2px solid #ffffff;
}

.checkout-wrapper #place_order{
    text-transform: capitalize;	
	width: 100% !important;
}


.cart-wrapper .woocommerce .coupon-col-start{
	justify-content: center;
}

.cart-wrapper .woocommerce-cart-form .coupon-col input,
.cart-wrapper .shipping-calculator-form input,
.cart-wrapper .shipping-calculator-form .select2-selection{
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.8em !important;
    background-color: #f9fafa !important;
    border-radius: 50px !important;
    padding: 14px 15px !important;
}

body.woocommerce-page .select2-selection__arrow{
	height: 65px !important;
    width: 20px !important;
    font-size: 25px !important;
    transform: scale(1.5);
}

body.woocommerce-page .cart-wrapper .select2-selection__arrow{ 
    width: 35px !important;
}

.cart-wrapper .woocommerce-shipping-calculator button[type="submit"]{
	width:100% !important;
	border:none;
	margin-top:20px;
}

.cart-wrapper .coupon-error-notice{
	position: relative;
	display: block;
	margin: 15px 0px 0px;
	line-height: 1.6em;
}

.cart-wrapper .woocommerce-cart-form .shop_table thead th{
	font-weight:500 !important;
}

.cart-wrapper .cart-collaterals .shipping-calculator-form label{
	color:#ee2626;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8em;
}

body.woocommerce-cart .select2-container .select2-dropdown{
	border:none !important;	
}

body.woocommerce-page .e-woo-select2-wrapper .select2-results__option{
	padding:5px 15px !important;
	font-size:16px !important;
	font-weight:500;  
}

body.woocommerce-page .select2-container--default .select2-results__option--highlighted[aria-selected], 
body.woocommerce-page .select2-container--default .select2-results__option--highlighted[data-selected]{
	background-color: #40A8AD;
	color:#FFF;
}

/*
.woocommerce-page .checkout-wrapper #ship-to-different-address:has(input[type="checkbox"]){
	display:flex;
	gap:15px;
	width: 100%;
}

.woocommerce-page .checkout-wrapper #ship-to-different-address:has(input[type="checkbox"]) label{
	display: flex;
	gap: 10px;
	width: 100%;
}

.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border: 2px solid #40A8AD;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    transition: all 0.2s ease;
    margin-bottom: -10px !important;
}
 
.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox:hover {
    border-color: #40A8AD;
}
 
.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox:checked {
    background: #40A8AD;
    border-color: #40A8AD;
}
 
.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox:checked::after {
    content: "✔";
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
*/

.woocommerce-shipping-fields #ship-to-different-address{
	padding-left: 0px;
}

.woocommerce-shipping-fields #ship-to-different-address,
.woocommerce-terms-and-conditions-wrapper .form-row.validate-required,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew {
    padding-left: 0;
}

.woocommerce-page .checkout-wrapper #ship-to-different-address:has(input[type="checkbox"]) label,
.woocommerce-terms-and-conditions-wrapper .form-row.validate-required label,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew label {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: flex-start; 
}

.woocommerce-page .checkout-wrapper #ship-to-different-address:has(input[type="checkbox"]) {
    display: flex;
    gap: 15px;
    width: 100%;
}

.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox,
.woocommerce-terms-and-conditions-wrapper #terms,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid #40A8AD;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    transition: all 0.2s ease;
    margin-top: 2px;  
}

.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox:hover,
.woocommerce-terms-and-conditions-wrapper #terms:hover,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"]:hover {
    border-color: #40A8AD;
}

.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox:checked,
.woocommerce-terms-and-conditions-wrapper #terms:checked,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"]:checked {
    background: #40A8AD;
    border-color: #40A8AD;
}

.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox:checked::after,
.woocommerce-terms-and-conditions-wrapper #terms:checked::after,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"]:checked::after {
    content: "✔";
    color: #fff;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text {
    line-height: 1.4;
    font-size: 14px;
    color: #333;
}

.woocommerce-page .checkout-wrapper .shop_table .product-name{
	padding-right:0px;
	padding-inline-end: 5px !important;
}

.woocommerce-checkout .e-coupon-box .e-checkout-secondary-title a{
	display:block;
}

.woocommerce-terms-and-conditions-wrapper #terms,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px !important;
    height: 18px !important; 	
    outline: none;
}

.woocommerce-page .checkout-wrapper #ship-to-different-address-checkbox:checked::after,
.woocommerce-terms-and-conditions-wrapper #terms:checked::after,
.woocommerce-checkout-payment .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"]:checked::after {
    font-size: 12px;
}

.woocommerce-terms-and-conditions-checkbox-text, 
.woocommerce-terms-and-conditions-checkbox-text *{
	font-size:18px !important;
}

.woocommerce-terms-and-conditions-wrapper a{ 
    color: #40a8ad;
}

.woocommerce-terms-and-conditions-wrapper a:hover{ 
    color: #ee2626 !important;
}

.woocommerce-terms-and-conditions-wrapper{ 
	padding-bottom:25px;
}


.elementor-widget-woocommerce-checkout-page a:hover {
    color: #ee2626;
}

.elementor-widget-woocommerce-checkout-page .woocommerce button.woocommerce-button,
.elementor-widget-woocommerce-checkout-page .woocommerce-button.button.e-apply-coupon{
	padding: 12px 35px 12px 35px;
	background: #ee2626;
	color: #FFF !important;
	border-radius: 50px;
	border: none;
	font-family: "Manrope", Sans-serif;
	font-size: 25px;
	font-weight: 400;
	line-height: 1.6em;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.elementor-widget-woocommerce-checkout-page .woocommerce button.woocommerce-button:hover{
	background: #40a8ad;
}

.single-post .elementor-author-box .elementor-author-box__avatar img{
	border:1px #DDD solid;
}

.single-post .elementor-author-box  .elementor-author-box__name{
	margin-top: 0px;
}

.woocommerce-checkout-payment .payment_box.payment_method_stripe{
	padding: 0px !important;
}

.woocommerce-checkout-payment #wc-stripe-payment-method-instructions-card{
	padding-bottom:25px;
}

.woocommerce-checkout #payment .payment_methods .payment_box{
	background:none !important;
}

.woocommerce-checkout #payment .payment_box.payment_method_stripe{ 
	margin-bottom: 0px;
}

.woocommerce-checkout #payment .payment_methods fieldset,
.woocommerce-checkout #payment .wc-payment-form{
	border:none !important;
	padding:0px !important; 
}

.woocommerce-checkout label[for="payment_method_stripe"] {
    font-size: 0px !important; 
}

.woocommerce-checkout label[for="payment_method_stripe"]::before {
    content: "Payment"; 
    font-family: "KonstantGrotesk", Sans-serif;
	font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}

.woocommerce-checkout-payment .woocommerce-terms-and-conditions{
    display: none !important;
}

.woocommerce-checkout-payment .woocommerce-terms-and-conditions-checkbox-text a{
    pointer-events: auto;  
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a,
.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-checkbox-text a{
	color:#ee2727;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a:hover,
.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-checkbox-text a:hover{
	color:#40A8AD !important;
}

#elementor-popup-modal-425 .elementor-message-svg:before{
	display:none;
}

#elementor-popup-modal-425:has(.elementor-message-success) .contact_form_heading,
#elementor-popup-modal-425:has(.elementor-message-success) .elementor-form-fields-wrapper{
	background:#F00;
	display:none;
}

.download_brochure_content{
	z-index: 99;
	position: relative;
}

.download_brochure_content .elementor-heading-title{
	font-size:24px !important;
}

.download_brochure_content .elementor-widget-button{
	padding-top:30px;
	display:flex;
	flex-direction:column;
	gap:25px;
}

.download_brochure_content .elementor-widget-button .elementor-button:nth-child(1){
	background:#000;
}

.download_brochure_content .elementor-widget-button .elementor-button:nth-child(1):hover{
	background:#40A8AD;
}

.normal-content ul, .normal-content ol{
	padding-bottom:25px;
}

#newsletter_form{
    position:relative !important;
}

#newsletter_form .elementor-message{
    position: absolute !important;
    background: #FFF !important;
    top: 0px !important;
    margin: 0px !important;
    width: 100% !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:12px !important;
}

#newsletter_form .elementor-message-svg:before{
    display:none;
}

#newsletter_form .elementor-message {
  animation: hideMessage 0.5s ease 5s forwards; 
  opacity: 1;
}

@keyframes hideMessage {
  to {
    opacity: 0;
    display: none;  
  }
}

@media (min-width: 1275px) {	
	.nav_wrapper{ 
		padding-left:70px;
	}
}

@media (min-width: 1025px) and (max-width: 1275px) {
	.nav_wrapper{ 
		padding-left:40px;
	}

	.nav_wrapper .elementor-nav-menu li a{
		padding-left:10px  !important;
		padding-right:10px !important; 
	}

	.nav_wrapper .elementor-nav-menu li a,
	.nav_wrapper .header-cta a{
		font-size:18px !important;
	}
	
}

@media(min-width: 767px) {
    .menu-cta-xl {
        display: none !important;
    }
}

@media(min-width:1920px){
	.full_t_cnt_lrg, div.e-con[data-element_type="container"] >.e-con-inner { 
	    max-width: 1600px;  
	}

	.full_t_cnt_lrg{ 
	    margin: 0 auto;
	    text-align: center;
	    left: 0;
	    right: 0; 
	}
	
	.lg_nowrap{
		white-space:nowrap;
	}
	
	.hm_cta_img img {
	    max-height: 600px;
    }
	
}


@media(max-width:1100px){
	.header-wrapper .header-logo img{
		width:200px !important;
	}
}


@media(max-width:1024px){
	
    .custom-title br{
        display: none;
    }
	
    .sm_disable_absolute{
        position: relative !important; 
    }

  	.desk-img {
    	display: none !important;
  	}
	
  	.tab-img {
    	display: block !important;
  	}
	
	.contact-form .elementor-form .elementor-size-lg { 
		min-height: 52px !important;
	}

	.contact-form .elementor-form .elementor-button.elementor-size-xl {
		min-height: 58px;
	}
	
	.header-wrapper .header-menu{
		background:none !important;
	}
	
	.elementor-widget-heading .elementor-heading-title br{
		display:none;
	}
	
	.header-wrapper .elementor-nav-menu > li  > a,
	.header-wrapper .elementor-nav-menu > li  > a > span{
		color:#3b3b3b !important;
		fill:#3b3b3b !important;
	}	
	
	.header-wrapper .elementor-nav-menu{
		padding: 10px 0px 5px;
	}
	
	.header-menu .elementor-nav-menu li > a::before,
	.header-menu .elementor-nav-menu li > a:hover::before{
		display:none !important;
	}
	
	.header-wrapper .elementor-nav-menu > li > a,
	.header-menu .elementor-nav-menu li > a.elementor-item-active,
	.header-wrapper .elementor-nav-menu > li > a *{
	    color: #3b3b3b !important;
	    fill: #3b3b3b !important;
		background: none !important;
	}
	
	.header-wrapper.is-sticky .menu-cta-xl a .menu-text{
	    color: #FFF !important;
	    fill: #FFF !important;
	}
	
	.header-menu .elementor-nav-menu li > a:has(.menu-text):hover, 
	.header-menu .elementor-nav-menu li > a:hover > span, 
	.header-menu .elementor-nav-menu li:hover > a > span{
		color: #ee2727 !important;
	    fill: #ee2727 !important;
		background:none !important;
	}
	
	.header-wrapper .elementor-nav-menu > li {
		padding: 10px 15px !important;
		border-radius:0px !important;
		text-align:center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.header-wrapper.is-sticky .elementor-nav-menu__container{
		top:37px !important;
	}

	.header-wrapper .elementor-nav-menu > li > a{
		padding:0px !important;
		text-align:center !important; 
	}

	.header-wrapper .elementor-nav-menu > li.menu-cta-xl{
		padding-top: 5px !important;
	}
	
	.header-wrapper .menu-cta-xl a .menu-text{
		background:#ee2727 !important;
		padding: 14px 20px !important;
		color: #FFF !important;
		border-radius:20px !important;
		width:100%;
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	}
	
	.header-wrapper .menu-cta-xl:hover a .menu-text{
		background:#40A8AD !important;
		color:#FFF !important;
	}

	.insight-custom-content h1 {
		font-size: 38px;
	}

	.insight-custom-content h2 {
		font-size: 34px;
	}

	.insight-custom-content h3 {
		font-size: 30px;
	}

	.insight-custom-content h4 {
		font-size: 26px;
	}

	.insight-custom-content h5 {
		font-size: 22px;
	}

	.insight-custom-content h6 {
		font-size: 20px;
	} 
	
	.header-wrapper .elementor-nav-menu{
		background:#ee2727;
	}

	.header-wrapper .elementor-nav-menu > li > a, 
	.header-wrapper .elementor-nav-menu > li > a > span,
	.header-wrapper.is-sticky .elementor-nav-menu > li > a, 
	.header-wrapper.is-sticky .elementor-nav-menu > li > a > span{
		color: #FFF !important;
		fill: #FFF !important;
		text-align:center;
		justify-content:center;
	}

	.header-wrapper .menu-cta-xl a{
		border:1px #ffffff5c solid;
	}
	
	.header-menu .elementor-nav-menu li > a:hover, 
	.header-menu .elementor-nav-menu li > a:hover > span, 
	.header-menu .elementor-nav-menu li:hover > a > span,
	.header-wrapper .elementor-nav-menu > li.current-menu-item > a, 
	.header-wrapper .elementor-nav-menu > li.current-menu-item > a > span,
	.header-wrapper.is-sticky .elementor-nav-menu > li.current-menu-item > a, 
	.header-wrapper.is-sticky .elementor-nav-menu > li.current-menu-item > a > span{ 
		color: #000000 !important;
		fill: #000000 !important;		
	}
	
	.header-wrapper .elementor-nav-menu > li.menu-cta-xl.current-menu-item .menu-text{
		background: #40A8AD !important;
		color: #FFF !important;
	}
	
	.sm_no_br br{
		display:none !important;
	}
	
	body.woocommerce-page .cart-wrapper .shop_table.cart .actions .button{
		width:100%; !important;
	} 

	.elementor-widget-woocommerce-checkout-page .woocommerce button.woocommerce-button{
		font-size: 18px;
		width: 100%;
	}
	
}


@media(max-width: 767px) {
    .header-cta {
        display: none !important;
    }
	
	.ft-newsletter .elementor-form-fields-wrapper{
		gap:5px;
	}
	
	.md_disable_absolute{
        position: relative !important; 
	}
	
	.normal-content .elementor-widget-text-editor h1{
	   font-size:36px;
	}

	.normal-content .elementor-widget-text-editor h2{
	   font-size:28px;
	}

	.normal-content .elementor-widget-text-editor h3{
	   font-size:22px;
	}

	.normal-content .elementor-widget-text-editor h4{
	   font-size:20px;
	}

	.normal-content .elementor-widget-text-editor h5{
	   font-size:18px;
	}
	
	.contact_form .elementor-field-textual.elementor-size-xl {
		min-height: 65px;
	}
	
	#ship-to-different-address-checkbox,
	.contact_form #form-field-submitted_information,
	.contact_form #form-field-latest_updates{ 
		width: 24px;
		height: 24px;
	}	
	
	.insight-custom-content h1 {
		font-size: 28px;
	}

	.insight-custom-content h2 {
		font-size: 26px;
	}

	.insight-custom-content h3 {
		font-size: 24px;
	}

	.insight-custom-content h4 {
		font-size: 22px;
	}

	.insight-custom-content h5 {
		font-size: 20px;
	}

	.insight-custom-content h6 {
		font-size: 18px;
	} 

	.cart-wrapper .shop_table .cart_item{
		padding:0px !important;
	} 
	
	.copy-tooltip{		
		left: 135px !important;
		font-size: 16px;
		padding: 5px 5px;
		top: -50px !important;
	}
	
	#elementor-popup-modal-425 .elementor-message.elementor-message-success.elementor-message-svg{
		padding:0px !important;	
	}
	
}

@media (min-width: 450px) and (max-width: 1023px) {
	.header-wrapper .elementor-nav-menu--dropdown{
		width: 275px !important;
		right: 0px !important;
		left: inherit !important;
	}
}

@media(max-width:500px){
	.ft-newsletter .elementor-form-fields-wrapper{ 
		flex-direction: column;
	}
}

@media(max-width:375px){
	.custom-title.banner-title .elementor-heading-title {
		font-size:40px !important;
	}
}


 



