/* Reset box-sizing and ensure pseudo-elements are included in the box model */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 100%; /* Default 16px */
}
body {
    height: auto;
    background: #ffffff;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    color: #696687;
    width: 100%;
    overflow-x: hidden!important;

}
.kit-7 {
    color: #696687;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
/* Fluid Typography (clamp) */
h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}
h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}
h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}
p {
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    
}

/* Utility Classes */
.text-center {
    text-align: center;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background-color 0.3s ease, padding 0.3s ease;
      z-index: 999;
    }

    header.scrolled {
      position: fixed;
      background-color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #333;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #007bff;
    }

    .login-btn {
      padding: 0.5rem 1.2rem;
      border: 1px solid #7A288A;
      background-color: transparent;
      color: #7A288A;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      max-width: 5.5rem;
    }

    .login-btn:hover {
      background-image: linear-gradient(to right, #7A288A, #5C0011);
      color: white;
    }

    /* Hamburger menu for small screens */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background-color: #333;
      border-radius: 3px;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      position: absolute;
      top: 100%;
      right: 0;
      padding: 1rem;
      z-index: 998;
      -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        border-radius: 5px;
        background: #fff;
        box-shadow: 0 50px 100px rgba(0, 0, 0, .05), 0 15px 35px rgba(0, 0, 0, .1), 0 5px 15px rgba(0, 0, 0, .05);
        width: calc(100% - 24px);
        height: auto;
        margin: 12px;
        text-align: left;
        overflow-x: hidden;
        overflow-y: auto;
        transition: all .2s;
        padding: 55px 25px 25px;
    
    }
    .mobile-navigation-toggle {
        position: fixed;
        z-index: 999999;
        right: 37px;
        top: 37px;
        width: 22px;
        height: 22px;
        vertical-align: middle;
        overflow: visible;
    line-height: 22px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    }
    .wpda-toggle-box {
        display: inline-block;
        position: relative;
        width: 22px;
        height: 22px;
        vertical-align: middle;

    }
    .wpda-toggle-inner:after {
    width: 20px;
    transition-delay: .14s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

    .mobile-menu a {
      color: #333;
    }

    .logo_container {
    font-size: inherit;
    position: relative;
    display: inline-block;
    }
    .logo_container a {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    color: #3B3663;
    box-shadow: none;
    text-decoration: none;
}
.logo_container img {
    height: 48px;
    width: auto;
    opacity: 1;
    transition: opacity .3s;
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
    max-width: 100%;
    max-height: inherit !important;
    vertical-align: middle;
    will-change: opacity;
}
img{
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: top;
}
.active_link{
    color: #F47514;
}
.mobile-menu a.active_link {
  color: #F47514;
  transition: color 0.2s ease-in-out;
}
.widget-container{
    text-align: right;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
    position: absolute;
    width: 100%;
}
.widget-img{
    width: 85%;
    isplay: inline-block;
    vertical-align: middle;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}
.widget-section{
    z-index: 5;
    width: 100%;
    position: relative;

}

.widget-element-text{
    max-width: 760px
}
.widget-element-text>div{
    width: 100%;
}
.element-f0f3c44 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3B3663;
    position: relative;
    margin: 0px 0px 3px 0px;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}
.element-f0f3c45 {
    color: #3B3663;
    position: relative;
    padding: 0% 10% 0% 0%;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}
.element-f0f3c46 {
    color: #3B3663;
    position: relative;
    width: 100%;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}
.elementor-heading-title {
        font-size: 60px;
        font-weight: 800;
        line-height: 63px;
        letter-spacing: -0.2px;
        color: #3B3663;
    }
.elementor-widget-container {
    margin: 0px 0px 10px 0px;
    padding: 0% 0% 0% 0%;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.typing-effect-strings {
        font-size: 32px;
        line-height: 1.5em;
        font-weight: 800;
        display: inline-block;
        min-height: 48px; /* adjust the height to fit your needs */
        vertical-align: top;
}
.widget-element-text {
    margin-left: 45px;
}

.spacer{
    position: relative;
    height: 220px;
    width: 100%;
}
.widget-container-element{
    margin: 0% 30% 0% 0%;

}
p {
    line-height: 1.5;
}
.spacer-2{
    height: 22px;
}
.widget-button-container{
    margin: 0px 22px 20px 0px;
}
.rounded-button{
    border-radius: 5px;
    border-style: solid;
    border-color: #6254e7;
    border-width: 0 !important;
    font-size: .714em;
    line-height: 1.5;
    letter-spacing: .2px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 5;
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
}
.rounded-button>span{
    padding: 13px 27px 13px 27px;
    position: relative;
    overflow: hidden;
    display: block;
    line-height: inherit;
    cursor: pointer;
    background-image: linear-gradient(to right, #7A288A, #5C0011);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #ffffff;
    border-radius: 5px;
}
.rounded-button>span:hover{
    background-image: linear-gradient(to right, #964DA1, #7A1A2B);
}
.element-dda32d3 {
    left: 0px;
    bottom: -10%;
    z-index: 1;
    text-align: left;
    position: absolute;
    width: 100%;
}
.image-3435{
    width: 45%;
    display: inline-block;
    vertical-align: middle;
    max-width: 10%;
}
#icon-container {
  position: absolute;
  top: 40px;
  left: 20px;
  width: 600px;
  height: 600px;
}

.icon {
  position: absolute;
  width: 25px;
  height: 25px;
  transition: top 0.5s, left 0.5s;
}

#triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border: 2px solid transparent;
  background: linear-gradient(to bottom right, #ff69b4, #ffe6cc) border-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

#square {
  border: 2px solid transparent;
  background: linear-gradient(to bottom right, #00bfff, #ccffff) border-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

#plus {
  clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
  -webkit-clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
  border: 2px solid transparent;
  background: linear-gradient(to bottom right, #33cc33, #99ff99) border-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.video-popup-wrapper{
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
}
.video-popup__link {
    background-color: #f0ac0e;
    border-color: #ffffff;
    color: #f47514;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-image: linear-gradient(90deg, #f0ac0e 0%, #f56616 100%);
}
.video-popup__link {
    transition: all .3s;
}
.video-popup__link {
    position: relative;
    z-index: 1;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    border-radius: 50%;
}
polygon {
    fill: #ffffff;
    stroke: #ffffff;
}
.video-popup__link>svg {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%,-50%);
    transform: translate(-40%, -50%);
}
.video-popup__title {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.2px;
    color: #f47514;
}
.video-popup__title {
    margin-left: 10px;
}
.element-container{

}
.elementor-container {
    flex-wrap: wrap;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 1200px;
}
.elementor-column {
    min-height: 1px;
    position: relative;
}
.elementor-widget-wrap {
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    display: flex;
}
.elementor-element-337{
    z-index: 5;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.elementor-heading-title {
    line-height: 38px;
}
 h2.elementor-heading-title{
    font-size: 30px;
    margin-bottom: 15px;
    padding: 0;
    font-family: Nunito;
    font-weight: 800;
    color: #3b3663;
 }
 .elementor-element-303ac15 {
    padding: 0px 0px 35px 0px;
    z-index: 5;
    width: 100%;
    position: relative;

}
.mt-top{
    margin-top: 210px;
}
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.box {
  width: calc(25% - 10px);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 12px 19px 62px 0px rgba(13, 52, 79, 0.07);
  margin: 5px;
  text-align: center;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  transition: all 0.4s;
}

.inner-div {
  padding: 36px 30px 36px 38px;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.box:hover {
  background-color: #3B3663;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  box-shadow: 14px 24px 43px 0px rgba(33, 41, 48, 0.42);
  transform: scale(1.05); /* Grow by 5% */
}
.gt3-core-imagebox-title{
    position: relative;
    width: 100%;
    color: #252A3F;
    font-size: 22px;
    line-height: 1.36em;
    letter-spacing: -1px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.gt3-core-imagebox-img {
    margin: 22px 0px 22px -15px !important;
    max-width: 76px;
    width: 76px;
    left: 0;
    bottom: 0;
    display: inline-block;
}
.gt3-core-imagebox-img_hover {
    position: relative;
}
.gt3-core-imagebox-title figure {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}
.gt3-core-imagebox-title figure {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}
.gt3-core-imagebox-img a {
    display: inline-block;
    max-width: 100%;
}
.gt3-core-imagebox-title .gt3-core-imagebox-title{
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}
.gt3-core-imagebox-description {
    color: #252A3F;
    font-family: "Nunito", Sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    padding-top: 27px;
    margin-bottom: 0;
}
.gt3-core-imagebox-description:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 2px;
    background: currentColor;
    content: "";
    opacity: .5;
}
.gt3-core-imagebox-img_hover img+img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}
.gt3-core-imagebox-title a {
    color: inherit !important;
    box-shadow: none;
    text-decoration: none;
}
.box:hover .gt3-core-imagebox-title {
  color: #FFFFFF;
}
.gt3-core-imagebox-title {
  transition: color 0.3s;
}
.box:hover .gt3-core-imagebox-description {
  color: #FFFFFF;
}
.gt3-core-imagebox-img img{
    max-width: 100%;
    height: auto;
}
.box:hover .gt3-core-imagebox-img_hover img {
  opacity: 0;
}

.box:hover .gt3-core-imagebox-img_hover img+img {
  opacity: 1;
}
.elementor-absolute {
    position: absolute;
    bottom: -8px;
    text-align: left;
}
.elementor-absolute>img {
    max-width: 285px;
    display: inline-block;
    vertical-align: middle;
}
.element-cont {
   /* adjust according to your needs */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 20;
}

.child-cont {
  width: calc(50% - 10px); /* adjust according to your needs */
  margin: 5px;
  padding: 10px
}
.h5-child{
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #696687;
    font-family: "Nunito", Sans-serif;
}
.h2-heading-title{
    line-height: 38px;
    font-size: 30px;
    font-family: Nunito;
    font-weight: 800;
    color: #3b3663;
    word-wrap: break-word;
    padding-bottom: 22px;

}
.p-child{
    font-size: 16px;
    margin: 0% 8% 0% 0%;
    padding: 0px 0px 35px 0px;
    line-height: 1.5em;
}
.button_size_elementor_custom{
    padding: 13px 27px 13px 27px;
    border-radius: 5px;
    border-style: solid;
    border-color: #6254e7;
    border-width: 1px !important;
    font-size: .714em;
    line-height: 1.5;
    letter-spacing: .2px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 20;
    transition: all .4s;
    box-shadow: none;
    text-decoration: none;
    color: #3b3663;
}
.button_size_elementor_custom:hover{
    background-image: linear-gradient(to right, #7A288A, #5C0011);
    color: #ffffff;
    border-width: 0px !important;
}
.element-c9cced7 {
    margin-top: 0px;
    margin-bottom: 38px;
}
.elementor-container-567 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    flex-wrap: wrap;
}
.elementor-element-048e3f8 { 
    width: 37%;
    display: flex;
    min-height: 1px;
    position: relative;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.elementor-counter {
    align-items: stretch;
    display: flex
;
    flex-direction: column-reverse;
    justify-content: center;
}
.elementor-counter-title {
    color: #696687;
    font-family: "Nunito", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    align-items: center;
    display: flex
;
    flex: 1;
    justify-content: center;
    line-height: 2.5;
    margin: 0;
    padding: 0;
}
.elementor-counter-number-wrapper {
    color: #3B3663;
    font-family: "Nunito", Sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}
.elementor-counter-number-suffix {
    font-size: 24px;
    line-height: 1;
    color: #e64828;
    font-weight: 400;
    padding-top: 1px;
    text-align: start;
    white-space: pre-wrap;
    top: -20px;
    left: -10px;
    position: relative;
}
.elementor-element-968839c {
        width: 63%;
}
.elementor-element-populated {
    border-style: solid;
    border-width: 0px 0px 0px 1px;
    border-color: #DCDDE4;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 30px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    display: flex;
    font-size: 16px;
    line-height: 1.5em;
}
.elementor-absolute-2{
    width: auto;
    max-width: 100%;
    text-align: right;
    position: absolute;
    right: -100px;

}
.elementor-absolute-3{
    max-width: 100%;
    width: auto;
    text-align: left;
    position: absolute;
    left: -150px;
}
.elementor-absolute-4{
    max-width: 100%;
    width: auto;
    text-align: right;
    position: absolute;
    right: -10px;
}
.elementor-absolute-5{
    width: auto;
    max-width: 100%;
    text-align: right;
    position: absolute;
    bottom: -110px;

}
.elementor-absolute-2>img {
    max-width: 215px;
    display: inline-block;
    vertical-align: middle;
    height: auto;
}
.elementor-absolute-3>img {
    max-width: 130%;
    display: inline-block;
    vertical-align: middle;
    height: auto;
}
.elementor-absolute-4>img {
    max-width: 123%;
    display: inline-block;
    vertical-align: middle;
    height: auto;
}
.elementor-absolute-5>img {
    max-width: 215px;
    display: inline-block;
    vertical-align: middle;
    height: auto;
}
.wp-image-3738{
    max-width: 40px;
    display: inline-block;
    vertical-align: middle;

}
.gt3_meta_value {
    font-family: "Nunito", Sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: -1.1px;
    color: #FFFFFF;
    display: inline-block;
    width: 100%;
    text-align: left;
}
.type_custom{
    font-family: "Nunito", Sans-serif;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
    line-height: 1.75em;
    text-align: left;

}
.button_size_custom{
    border-style: none;
    color: #fff;
    font-size: .714em;
    line-height: 1.5;
    letter-spacing: .2px;
    font-weight: 500;
    text-transform: uppercase;
}
.elementor_btn_icon_container{
    padding-left: 10px;
}
.elementor_gt3_btn_icon {
    font-size: 1em;
    line-height: 1em;
    color: #ffffff;
}
.progress-bar-div{
    margin-bottom: 21px;

}
.element-title {
    color: #3B3663;
    font-size: 18px;
    line-height: 1.9em;
}
.elementor-progress-wrapper {
    background-color: #E6E6E7;
    border-radius: 6px !important;
    color: #fff;
    height: auto;
    position: relative;
}
.elementor-progress-bar {
    background-color: #FFAD4F;
    color: #FFAD4F;
    height: 5px;
    line-height: 5px;
    font-size: 15px;
    border-radius: 6px !important;
    position: relative;
}
.elementor-progress-bar:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 6px;
    box-shadow: 11px 11px 24px 0 currentColor;
    opacity: .5;
}
.elementor-progress-bar:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 6px;
    opacity: .5;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .4));
}
.elementor-progress-percentage {
    color: #3B3663;
    position: absolute;
    right: 0;
    bottom: 100%;
    padding: 0 !important;
    line-height: 2em;
}
.ml-80{
    margin-left: 80px;
}
.question-p{
    padding: 15px 0px 12px 0px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    outline: none;
    color: #f47514;
    font-family: "Nunito", Sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    letter-spacing: 0px;
}
.mid-section-spacer{
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px;
}
#bulb-img{
    position: relative;
    right: -120px;
}
.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 30vw; /* Match image height */
}
.slider-container.no-slider {
    height: auto;
}
.no-content {
    text-align: center;   /* Centers the text horizontally */
    width: 100%;          /* Ensures it spans full width */
    padding: 20px 0;      /* Optional: some breathing room */
}


.slider {
    display: flex;
    gap: 15px; /* Space between images */
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.slide {
    flex: 0 0 30vw; /* Fixed width */
    height: 30vw;
    position: relative;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slide .title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    padding: 4px 8px;
    font-size: 16px;
    border-radius: 4px;
}

.prev-arrow, .next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 2;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}
.slider-dots {
    text-align: center;
    margin-top: 10px;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dots .dot.active {
    background-color: #333;
}
.mg-bottom{
    margin-bottom: 40px;
}
.prev-arrow:disabled,
.next-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}


.advanced_tabs_nav_wrapper {
    display: block;
    width: 100%;
    margin: 0 auto 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    text-align: center;
}
.advanced_tabs_nav {
    border-radius: 50px;
    background-color: #f0f0f0;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    margin: 0 auto;
}
.advanced_tabs_nav>li{
padding: 0;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    list-style: none;
}
.advanced_tabs_nav > li > a {
    border-radius: 50px;
    padding: 19px 30px;
    background-color: #f0f0f0;
    color: inherit;
    width: 100%;
    text-decoration: none;
    box-shadow: none !important;
    outline: none;
    position: relative;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .2s ease-in-out;
    text-decoration: none;
}
.gt3_tabs_nav__title {
    font-size: 12px;
    line-height: 1;
    letter-spacing: .2px;
    font-weight: 500;
    display: block;
}
.advanced_tabs_nav > li.ui-tabs-active > a{
    color: #FFFFFF;
    background-image: linear-gradient(96deg, #f0ac0e 0%, #ff7426 100%);
}
.tabs-dropdown {
    display: none;
    margin-bottom: 15px;
    padding: 8px;
    font-size: 1rem;
}
.tab-element-populated {
    padding: 10px 35px;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;

}
.element-79342cc {
    padding: 42px 0px 63px 0px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    flex-wrap: wrap;
    width: 100%;
}
.elementor-col-33{
    width: 33.333%;
    background-color: #FFFFFF;
    box-shadow: 0px 23px 60px 0px rgba(13, 0, 0, 0.2);
    padding: 0;
    text-align: center;
    border: none;
}
.b-5{
    border-radius: 5px;
}
.b-10{
    border-radius: 10px;
}
.gt3_price_item_wrapper-elementor {
    padding-left: 25px;
    padding-right: 25px;
    padding: 46px 40px 52px;
    border-radius: 5px;
}
.price_item_title-elementor h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 26px;
    position: relative;
    padding-bottom: 0;
    color: #696687;
    font-family: Nunito;
}
.gt3_price_item-cost-elementor{
    color: #F47A14;
    font-size: 66px;
    font-weight: bold;
    line-height: 1.2em;
    position: relative;
    font-family: Nunito;
    padding-top: 0;
}
.gt3_price_item-cost-elementor.white{
    color: #fff;
}
.price_item_prefix-elementor{
    vertical-align: super;
    font-weight: bold;
    font-size: .5em;
    line-height: 1.2;
    padding: 1px;
    color: #F47A14;
    font-family: Nunito;
}
.price_item_suffix-elementor {
    font-weight: bold;
    vertical-align: text-top;
    font-size: .5em;
    line-height: 1.8;
    padding: 1px;
    color: #F47A14;
    font-family: Nunito;
}
.items_text-price {
    padding: 28px 0 6px;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
}
.price_button-elementor {
    margin-top: 25px;
}
.items_text-price p{
    margin-bottom: 13px;
    line-height: inherit;
}
a.shortcode_button {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.2px;
    background-color: #F47A14;
    background-image: none;
    border-color: #F47A14;
    border-radius: 5px;
    border-style: solid;
    padding: 14px 25px;
    display: inline-block;
    position: relative;
}
a.shortcode_button_2{
    color: #3B3564;
    font-size: 12px;
    letter-spacing: 0.2px;
    background-color: #fff;
    background-image: none;
    border-color: #3B3564;
    border-radius: 5px;
    border-style: solid ;
    padding: 14px 25px;
    display: inline-block;
    position: relative;
}
.price_button-elementor span{
    display: inline-block;
    vertical-align: top;
    line-height: inherit;
}
.gt3_price_button__text {
    padding: 0;
    position: relative;
    z-index: 4;
}
a.shortcode_button:hover {
    color: #F47A14;
    background-color:#fff;
}
a.shortcode_button_2:hover {
    color: #fff;
    background-color:#3B3564;
    border-color: #fff;
}
.b-purple{
    margin: -22px 0px 0px 0px;
    box-shadow: 0px 23px 60px 0px rgba(13, 52, 79, 0.09)!important;
    background-color: #3B3564!important;
    background-image: none;
    border-color: #3B3564;
    color: #FFFFFF!important;
}

.b-purple_light{
    margin: -22px 0px 0px 0px;
    box-shadow: 0px 23px 60px 0px rgba(13, 52, 79, 0.09)!important;
    background-color: transparent;
    background-image: linear-gradient(90deg, #877DEF 0%, #6557E8 100%);
    border-color: #6557E8;
    color: #FFFFFF!important;
}
.elementor-col-25{
    width: 25%;
}
.align-center{
    align-content: center;
    align-items: center;
}
.justify-content-center{
    justify-content: center;
    justify-items: center;
}
.p-10{
    padding: 10px;
}
section{
    position: relative;
}
.blog-section {
    padding: 40px 20px;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.blog-post {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease-in-out;
}
.blog-post img:hover {
    transform: scale(1.05);
}

.blog-title {
    color:rgba(105, 102, 135);
    text-align: left;
    padding-bottom: 13px;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 20px;
    line-height: 26px;
    text-decoration: none;
}
a {
    text-decoration: none;
}
.wp-image-968{
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}
.listing_meta{
    color: rgba(105, 102, 135);
    line-height: 21px;
    font-size: .714em;
    display: block;
    font-weight: 700;
    margin-top: 15px;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.row [class*=span] {
    display: block;
    float: left;
    box-sizing: border-box;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.wpcf7-form-control {
    color: #fff;
    max-width: 100%;
    font-size: .78em;
    line-height: 1.5;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
    box-sizing: border-box;
    outline: none;
    margin: 0 0 15px;
    font-weight: 400;
    width: 100%;
    padding: 8px 0;
    transition: all .3s;
    height: 41px;
    background: rgba(0, 0, 0, 0);
}
input.wpcf7-form-control::placeholder {
  color: white;
}
input.wpcf7-form-control::-webkit-input-placeholder {
  color: white;
}
input.wpcf7-form-control::-moz-placeholder {
  color: white;
}
input.wpcf7-form-control:-ms-input-placeholder {
  color: white;
}
.text-center {
    text-align: center;
}
.wpcf7-submit{
    background-image: linear-gradient(96deg, #f0ac0e 0%, #ff7426 51%, #f0ac0e 100%);
    background-color: #ff7426;
    display: inline-block;
    transition: all .3s;
    outline: none;
    width: auto;
    height: 50px;
    cursor: pointer;
    padding: 10px 30px;
    line-height: 23px;
    margin: 35px 0 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2px;
    border: none;
    color: #fff;
    border-radius: 5px;
}
.section-bg-email{
    background-image: url(/img/home5_bg_01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.element-7e5e8234{
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
}
.read_more{
    padding-top: 10px;
    text-align: left;
    float: left;
    display: inline-block;
    vertical-align: top;
    line-height: 21px;
    padding-bottom: 10px;
    font-size: 0.9rem;
}
.email-elementor-element-populated {
    padding: 10px;
    justify-content: space-between;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 760px;
    margin: 0 auto;
}
.element-09216fc{
    width: auto;
}
.element-09216fc > .elementor-widget-container {
    margin: 0px 40px 13px 0px;
}
.gt3-core-imagebox-wrapper{
    display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
}
.gt3-core-imagebox-img {
    margin: 0px 17px 0px 0px !important;
    max-width: 38px;
    width: 38px;
    display: inline-block;
}
.gt3-core-imagebox-img img{
    max-width: 100%;
    height: auto;
}
.gt3-core-imagebox-content {
    width: 100%;
}
.gt3-core-imagebox-title {
    color: #3B3663;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.gt3-core-imagebox-description {
    color: #3B3663;
    font-family: "Rubik", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.footer {
    background-color: #fff;
    color: #3B3663;
    padding: 63px 5px 15px 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
.elementor-divider {
    padding-block-start: 15px;
    padding-block-end: 15px;
    display: flex;
    width: 90%;
    margin: 0 auto;
}
.elementor-divider-separator {
    width: 100%;
    direction: ltr;
    display: flex;
    margin: 0;
    border-style: solid;
    border-color: #EBEBEF;
    border-width: 1px;
}
.footer-column {
    flex-basis: 25%;
    margin-bottom: 20px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link {
    cursor: pointer;
    margin-bottom: 10px;
    padding-top: 5px !important;
    padding-bottom: 10px !important;
    color: #3B3663!important;
    font-size: 16px!important;
}
.footer-column > h3{
    margin: 0px 0px 37px 0px;
}
.back_to_top_container {
    position: fixed;
    z-index: 999;
    right: 40px;
    bottom: 40px;
    cursor: pointer;  
}
#back_to_top {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all .3s;
    text-align: center;
    opacity: 0.7;
    border: 2px solid;
    border-radius: 5px;
    background: #fff;
    color: #ff7426;
    text-decoration: none;
    font-size: 18px;
}
#back_to_top:hover {
    opacity: 1;
}
.logo-login {
    width: 200px;
    height: 70px;
    object-fit: cover;
    float: left;
}
.form-group .form-control {
    border-radius: 20px;
    padding: 9px 20px;
    border: 0;
    background-color: #F7F7F7;
    color: #000;
}
.img-holder {
    z-index: 0;
    width: 100%;
    overflow: hidden;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 700px;
    height: 100%;
    padding: 60px;
    text-align: center;
}
.bg {
    position: absolute;
    opacity: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/doodle-art.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.blog-section.no-content {
    padding: 40px 20px;
    width: 100%;
}

/* ======================================
   Responsive Media Queries
   ====================================== */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Add styles for extra small devices */
    .box {
    width: 100%;
  }
  .child-cont {
    width: 100%;
    margin: 5px 0;
    max-width: 760px;
  }
  .ml-80 {
  margin-left: 0px!important;
}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Add styles for small devices */
    .box {
    width: calc(50% - 10px);
  }
  .mt-top{
    margin-top: 120px;
    }
    .child-cont {
    width: 100%;
    margin: 5px 0;
    max-width: 760px;
  }
  .ml-80 {
  margin-left: 0px!important;
}
.gt3_meta_value {
        color: #3B3663;
    }
.wp-image-3738{
    display: none;
}
.type_custom{
        color: #3B3663;
    }
.tabs-dropdown {
        display: block;
    }

    .advanced_tabs_nav {
        display: none;
    }
    .blog-post {
        flex: 1 1 100%;
    }
    .element-7e5e8234 {
        width: 60%;
    }
    
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Add styles for tablets */
    nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu.show {
        display: flex;
      }
      .elementor-column{
        width: 100%;
      }
      .mt-top{
    margin-top: 120px;
    }
    .box {
    width: calc(50% - 10px);
  }
  .elementor-absolute-3>img {
    max-width: 90%;
}
.elementor-absolute-3{
    left: -150px;
}
.ml-80 {
  margin-left: 0px!important;
}
.child-cont {
    width: 100%;
    margin: 5px 0;
    max-width: 760px;
  }
  .gt3_meta_value {
        color: #3B3663;
    }
.type_custom{
        color: #3B3663;
    }
  .element-7e5e8234 {
        width: 80%;
    }
    .row .span12 {
        width: 100%;
    }
    .row .span6 {
        width: 50%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Add styles for desktops */
    .elementor-container {
        max-width: 760px;
    }
}
@media (max-width:1023px){
    
}
@media (max-width: 1024px) {
    .widget-container {
        right: -100px;
    }
    .widget-element-text{
    max-width: 760px;
    flex-wrap: wrap;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    }
    .element-populated {
        margin: 0px 0px 0px 0px;
        --e-column-margin-right: 0px;
        --e-column-margin-left: 0px;
        padding: 0% 20% 0% 8%;
        align-content: flex-start;
        flex-wrap: wrap;
        position: relative;
    }
    .elementor-heading-title {
        font-size: 32px;
        line-height: 1.5em;
        font-weight: 800;
        letter-spacing: -0.2px;
        color: #3B3663;
    }
    .spacer{
    height: 120px;
    width: 100%;
    }
    .elementor-container {
        max-width: 1024px;
    }
    .row .span6 {
        width: 50%;
    }
    
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Add styles for extra large screens */
    .elementor-container {
        max-width: 1200px;
    }
    .row .span6 {
        width: 50%;
    }
}

/* Landscape orientation */
@media (orientation: landscape) {
    /* Optional styles for landscape mode */
}

/* Portrait orientation */
@media (orientation: portrait) {
    /* Optional styles for portrait mode */
}