/* 
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 */

.button {
    display: inline-flex; justify-content: center; align-items: center; text-align: center;
    text-decoration: none; border-radius: 10px;
    padding: 8px 17px;
    background: linear-gradient(to bottom, #FFE492, #FFE8AE 50%);
    color: #000000; border: 1px solid transparent;
    font-size: 14px; font-weight: 500; cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    letter-spacing: 0.06em;
    border: unset;
}
.button:hover {
    background: linear-gradient(to bottom, #ffffff, #ffffff); border-color: #FFE492;
}

.button.small{
    height: 35px;
    font-size: 14px;
}

.button.purple{
    background: linear-gradient(90deg, #6F37DB -36.5%, #BDACF0 100%);
    color: white;
    border-color: transparent;
    font-weight: 500;
}

.button.purple:hover{
    background: unset;
    background-color: #6F37DB;
    color: white;

}

.button.purple.light{
    background: white;
    color: #6F37DB;
    border-color: #6F37DB;
}

.button.purple.light:hover{
    background: linear-gradient(90deg, #6F37DB -36.5%, #BDACF0 100%);
    color: white;
    border-color: transparent;
}

/* Hero */
.generalHero {
     height: 883px;
}

@media (max-width: 767px) {
  .generalHero {
    height: 600px;
  }
}

@media (min-width: 768px) {
  .generalHero {
    height: clamp(630px, 85vh, 730px);
  }
}

/* smoothPlayCarousel */

.smoothPlayCarousel .swiper-wrapper {
      -webkit-transition-timing-function: linear !important;
      -moz-transition-timing-function: linear !important;
      -o-transition-timing-function: linear !important;
      transition-timing-function: linear !important; 
}


.smoothPlayCarousel .swiper-slide  img{
    max-width: 120px;
}
/* Acordion */

.homeAccordion details {
    padding-bottom: 16px;
    border-bottom: 1px solid #DEDEF9;
}

/* color Text */

span.sub-color {
    color: var(--e-global-color-primary);
}

/* BreadCrumbs  */

#breadcrumbs {
    display: inline-block;
        margin-right: 5px;
}

.breadSeperator {
    display: inline-block;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    top: 1px;
    margin-right: 5px;
}

/* Text Editor Generals */

.basicContent strong {
    font-weight: 700;
}

.basicContent ul {
    list-style-type: none;
}


.basicContent ul li:last-child {
    margin-bottom: unset;
}

.basicContent ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 20px;
}

.basicContent ul li::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #DEDEF9;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 10px;
    margin-left: -37px;
}

/* Basic Page */


.basicPage h2 {
    font-family: "Overused Grotesk";
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 24px;
}

/* Purple Bullets */
.styledBullets ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 30px;
}

.styledBullets.small ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 30px;
}
.styledBullets ul li {
    position: relative;
}

.styledBullets ul li::after {
    content: '';
    background-color: #DEDEF9;
    height: 10px;
    width: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    margin-top: -5px;
    margin-left: -32px;
}


/* Bacgkround PopUp payment blue */
#elementor-popup-modal-1662 {
    backdrop-filter: blur(30px);
    background-color: unset;
}

/* ============================================= */
/* HubSpot Form Styling */
/* ============================================= */



.hs-form fieldset.form-columns-2 {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
}


.hs-form fieldset.form-columns-2 .hs-form-field {
    flex: 1 1 calc(50% - 10px);
}


.hs-form .hs-form-field {
    margin-bottom: 30px; 
}



.hs-form .hs-form-field label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Footer Form Labels */
.footerForm .hs-form .hs-form-field label {
    color: #FFE8AE;
    font-family: 'Overused Grotesk';
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.hs-form .hs-input {
    width: 100% !important;
    padding: 12px 16px;
    border: 1px solid #e0d9f5; /* Light purple border */
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footerForm .hs-form .hs-input {
    border: 2px solid #DDDFEB;
    background-color: transparent;
    padding: unset;
    min-height: 40px;
    border-radius: 5px;
    padding-left: 12px;
    color: white;
}

.footerForm .submitted-message {
    color: white !important;
}

.hs-form .hs-input::placeholder {
    color: #b0b0b0;
    opacity: 1;
}

.hs-form .hs-input:focus {
    outline: none;
    border-color: #9f7aea; 
    box-shadow: 0 0 0 3px rgba(159, 122, 234, 0.2);
}



.hs-form .hs-button.primary {
    width: 100%;
    background-color: #fbeeb9; 
    color: #2d3748; 
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid var(--e-global-color-5c41141);
    max-width: 500px;
}

/* HomePage Colors */
.home .footerForm .hs-form .hs-form-field label {
    color: #DEDEF9;
}

.home .hs-form .hs-button.primary {
    background: linear-gradient(270deg, #DEDEF9 0%, #F0F0F5 100%);
    border: unset;
}

.home .deepDiveWrap span.elementor-heading-title {
color: #DEDEF9 !important;
}

/* Submit Button Hover Effect */
.hs-form .hs-button.primary:hover {
    background-color: #f9e5a8; /* Slightly darker yellow on hover */
}

ul.no-list.hs-error-msgs.inputs-list {
    list-style: none;
    padding: unset;
    padding-top: 5px;
}

ul.no-list.hs-error-msgs.inputs-list label {
    color: red;
}

.hs_error_rollup {
    display: none;
}

/* Parterns Forms */
.footerForm.partners .hs-form .hs-input {
    background-color: #FFFFFF;
    color: black !important;
}
.footerForm.partners .hs-form select.hs-input {
    color: black;
}
.footerForm.partners fieldset {
    max-width: 100%;
}

.footerForm.partners .hs-form .hs-button.primary {
    max-width: 100%;
}
/* Career Page */



.comeet-outer-wrapper * {
    font-family: 'Overused Grotesk';
}


.comeet-g-r {
  display: block;
  margin-bottom: 50px;
}

.comeet-u-1-2 {
  width: 100%;
}

.comeet-groups-list .comeet-group-name {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #DEDEF933;
    margin-top: 0;
    font-weight: 700;
}
.comeet-group-name a {
    display: block;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #302B38 !important;
    letter-spacing: 0.06em;
}

li a.comeet-position {
    width: 100% !important;
    padding-top: unset !important;
    margin-bottom: 0 !important;
    border-bottom: 2px solid #DEDEF933 !important;
}

.comeet-positions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comeet-position {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 24px 10px;
  border-bottom: 1px solid #f0f0f0; 
  text-decoration: none;
  color: inherit; 
  transition: background-color 0.2s ease; 
}

.comeet-position-name {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.03em;
}




.comeet-position-meta {
    color: #00000066 !important;
    font-size: 20px !important;
    text-align: right;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.comeet-position::after {
    content: '';
    background-image: url(https://stg-adclaritystaging-adclaritystg.kinsta.cloud/wp-content/uploads/2025/08/Vector-2-3.svg);
    margin-left: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 16px;
    width: 14px;
}

.comeet-list li {
    margin-bottom: 25px !important;
}

.single-career{
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.single-career * {
    font-family: 'FAIRE Sprig Sans';
}

.all-jobs-link {
    border: unset;
}

.single-career .brandColoredButton{
    background: var(--e-global-color-primary) !important;
}

/* About Page */

.reachItem {
    background-image: url(/wp-content/uploads/2025/08/Cards-1.svg);
    background-position: center center;
    background-size: cover;
}

.reachItem:hover {
      background-image: url(/wp-content/uploads/2025/08/Cards-2.svg);
}

.reachItem:hover .elementor-counter-number,
.reachItem:hover .elementor-counter-number-suffix,
.reachItem:hover .elementor-widget-text-editor,
.reachItem:hover .elementor-counter-number-prefix
{
    color: white !important;
}

/* Linkedin Hovers */

.teamSocialIcon svg:hover circle,
.teamSocialIcon svg:hover rect,
.teamSocialIcon svg:hover path
 {
  transition: fill 0.3s ease;
}
.teamSocialIcon svg:hover circle {
    fill: #2B7AED;
    stroke: #2B7AED;
}

.teamSocialIcon svg:hover rect {
    fill: #2B7AED;
}

.teamSocialIcon svg:hover path {
    fill: white;
}

/* Hide Get Started */

.getStartedLp {
    display: none;
}

 .postid-1754 .getStartedLp {
    display: block;
 }
@media (max-width: 768px) {

    .single-lp .button.purple {
        padding: 8px 10px;
    }
.comeet-position {
    flex-direction: column;
    gap: 10px;
}
.smoothPlayCarousel .swiper-slide  img{
    max-width: 100px;
}
.comeet-g-r {
    margin-bottom: 30px;
}

.comeet-position::after {
    content: none;
}

.comeet-group-name {
    text-align: center;
    margin-top: unset !important;
}

.comeet-group-name a {
    font-size: 24px !important;
}
    .hs-form fieldset.form-columns-2 {
        flex-direction: column;
        gap: 0; 
    }
    
    .hs-form fieldset.form-columns-2 .hs-form-field {
        flex-basis: 100%; /* Ensure they take full width */
    }

    .hs-form .hs-form-field {
        margin-bottom: 20px;
    }
}


@media (min-width: 788px) {



    .productSlide .elementor-heading-title,
    .productSlide svg
    {
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

  .productSlide:hover .elementor-heading-title {
    opacity: 0.5;
  }

    .productSlide:hover svg {
    opacity: 0.5;
    transform: translateX(10px);
  }

  
}

@media only screen and (max-width: 1100px) {
div#purchaseFlowMobile {
    position: fixed;
    bottom: 0;
}
    .summeryFlow #purchaseHideOnMobile {
        display: none;
    }
        .noBr br {
        display: none !important;
    }

}

@media only screen and (max-width: 787px) {
    .testimonialsWrap {
        background: linear-gradient(180deg, rgba(222, 222, 249, 0.3) 0%, #DEDEF9 100%);

    }
        .homeAccordion .e-n-accordion-item-title-text {
        font-weight: 700;
    }

        .styledBullets ul li::after {
        top: 0;
        margin-top: 10px;
    }
    .basicContent ul li {
        font-size: 16px;
    }

    .basicPage h2 {
        font-size: 18px;
    }
}

.mega-menu-footer-strip {
    background-color: #F8F8FD !important; /* A slightly darker shade than your request for visibility */

}

