/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size:16px;
}
/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  font-family:var(--font-primary);
  color:var(--color-black);
  background-color: var(--color-white);
  font-size:1rem;
  line-height: 1.5;
  overflow: hidden;
}

/*
      5. Improve media defaults
    */
img,
picture,
video,
canvas,
svg,
a {
  display: block;
  max-width: 100%;
}

/*
      6. Remove built-in form typography styles
    */
input,
button,
textarea,
select {
  font: inherit;
}
::selection {
  background-color:var(--color-secondary);
  color:var(--color-white);
}
::-moz-selection {
  background-color:var(--color-secondary);
  color:var(--color-white);
}
::-moz-placeholder {
  color: var(--color-black);
  font-style: normal;
  opacity: 1;
}
::placeholder {
  color: var(--color-black);
  font-style: normal;
  opacity: 1;
}

input:-o-input-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder,
input:-webkit-input-placeholder {
  color: var(--color-black);
  font-style: normal;
  opacity: 1;
}

/*
      7. Avoid text overflows
    */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0 0 1.111rem 0;
}

/*
      8. Create a root stacking context
    */
#root,
#__next {
  isolation: isolate;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

ol,
ul,
li > ol, li > ul  {
  list-style: none;
  margin: 0;
  padding: 0;
}
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
       ========================================================================== */
/**
     * Remove the gray background on active links in IE 10.
     */
a {
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color:var(--color-orange);
  -webkit-tap-highlight-color: transparent;
  display:inline-block;
}
a:hover,
a:focus {
  border: 0;
  outline: 0;
  color:var(--color-orange-light);
}

/**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
       ========================================================================== */
/**
     * Remove the border on images inside links in IE 10.
     */
img {
  border-style: none;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     width:100%;
}

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.5;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  outline: 0;
}

/**
     * Correct the inability to style clickable types in iOS and Safari.
     */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance:button;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/**
     * Remove the inner border and padding in Firefox.
     */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
     * Restore the focus styles unset by the previous rule.
     */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0.063rem dotted ButtonText;
}

/**
     * Correct the padding in Firefox.
     */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  vertical-align: baseline;
}

/**
     * Remove the default vertical scrollbar in IE 10+.
     */
textarea {
  overflow: auto;
}

/**
     * 1. Add the correct box sizing in IE 10.
     * 2. Remove the padding in IE 10.
     */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type=search] {
  -webkit-appearance: textfield;
  appearance:textfield;
  /* 1 */
  outline-offset: -0.125rem;
  /* 2 */
}

/**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */
details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}

/* Misc
       ========================================================================== */
/**
     * Add the correct display in IE 10+.
     */
template {
  display: none;
}

/**
     * Add the correct display in IE 10.
     */
[hidden] {
  display: none;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  margin: 0 0 1rem;
  line-height: 1.2;
  color:var(--color-secondary);
  font-weight:700;
  font-family: "Zalando Sans", sans-serif;
  text-transform:capitalize;
}
h1, .h1 {
  font-size: 2.5rem; /* ~40px */
}

h2, .h2 {
  font-size: 2.1875rem; /* ~35px */
}

h3, .h3 {
  font-size: 1.875rem; /* ~30px */
}

h4, .h4 {
  font-size: 1.5625rem; /* ~25px */
}

h5, .h5 {
  font-size: 1.25rem; /* ~20px */
}

h6, .h6 {
  font-size: 1rem; /* ~16px */
}

p {
  margin: 0 0 1rem;
  font-size:18px;
}
@media only screen and (max-width:768px){
  p{
    font-size:16px;
  }
  ul.wp-block-list li {
    font-size: 16px;
}
}
[data-toggle] {
  cursor: pointer;
}

input,
.form-control,
input[type=text],
input[type=textarea],
input[type=email],
input[type=date],
input[type=datetime],
input[type=color],
input[type=time],
input[type=month],
input[type=week],
input[type=radio],
input[type=number],
input[type=select],
textarea {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-bottom: 0.125rem solid var(--color-charcoal);
  padding:15px;
  margin: 0 0 2.5rem 0;
  height:auto;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 575.99px) {
  input,
  .form-control,
  input[type=text],
  input[type=textarea],
  input[type=email],
  input[type=date],
  input[type=datetime],
  input[type=color],
  input[type=time],
  input[type=month],
  input[type=week],
  input[type=radio],
  input[type=number],
  input[type=select],
  textarea {
    max-width: 100%;
  }
}

input:focus,
.form-control:focus,
input[type=text]:focus,
input[type=textarea]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=color]:focus,
input[type=time]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=radio]:focus,
input[type=number]:focus,
textarea:focus {
  outline: none;
  border:0;
}

input[type=button],
input[type=submit],
.button {
  background-color:#8b2dab;
  color:var(--color-white);
  font-size: 1.111rem;
  text-transform: uppercase;
  padding: 0.9rem 3.5rem 0.9rem 2rem;
  line-height: 1.4;
  border-radius: 1.875rem;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  display: inline-block;
  font-weight: 500;
  font-size: 1.333rem;
  width: 100%;
  min-width: auto;
  padding: 1.2rem 3rem;
  border-radius: 2.222rem;
  -webkit-tap-highlight-color: transparent;
}
input[type=button]:focus,
input[type=submit]:focus,
.button:focus {
  background-color: var(--color-purple-1);
  color: var(--color-white);
}
.theme__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size:var(--spacing-16);
  line-height: 1;
  font-weight:var(--font-weight-700);
  color:var(--color-for-text);
  background-color:var(--color-white);
  padding:var(--spacing-5);
  border-radius:var(--spacing-50);
  position: relative;
  z-index: 1;
}
.valley__btn:hover,
.valley__btn:focus {
  color:var(--color-white);
}
.valley__btn:hover i {
  transform: translateY(-5px);
}
.btn--outline {
  border: 1px solid #fff;
  background-color: transparent;
  background: transparent;
}
.btn--outline:hover{
  border: 1px solid #fff;
}
.logo--purple {
  filter: brightness(0) saturate(100%) invert(13%) sepia(88%) saturate(3239%) hue-rotate(273deg) brightness(88%) contrast(98%);
}
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Header Style Start*/
.header__logo a img{
  max-width:150px;
}
.header__main .custom-logo-link .custom-logo {
    max-width: 150px;
    width: 100%;
}
/* Hide Astra’s mobile toggle button if it still appears */
.ast-header-navigation-arrow { display: none !important; }
/* Hamburger animation */

.nav__hamburger span {
  width: 1.5625rem;
  height: .1875rem;
  background:var(--color-secondary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  -ms-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}
.search__box {
  opacity: 0;
  width:0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility:hidden;
}
.search__box.active {
  opacity: 1;
  width:100%;
  visibility:visible;
}
.search__box input {
  margin: 0;
  padding: 0 var(--spacing-10);
}
@media only screen and (min-width:1199.99px) {
  .header__nav > ul {
    padding:10px 0 0 0;
  }
  .header__nav > ul > li {
    position: relative;
    z-index: 10;
    padding: 0 5px;
  }
  .header__nav > ul > li > a {
  position: relative;
    font-size:1.125rem;
    color:var(--color-secondary);
    display: block;
    font-weight: 600;
    padding:0;
  }
  .header__nav > ul > li > .menu__toggle {
    cursor: pointer;
    position: absolute;
    top:10px;
    right:7px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='6 7 12 13 18 7 20 9 12 17 4 9'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size:16px;
    background-color:var(--color-secondary);
    width: 14px;
    height: 14px;
  }
  .header__nav > ul > li:hover > .menu__toggle{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='4 15 12 7 20 15 18 17 12 11 6 17'/%3E%3C/svg%3E");
    background-color:var(--color-white);
  }
  .header__nav ul > li > .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    width: 346px;
    text-align: start;
    background-color:#fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    border-radius:0px 0px 10px 10px;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    gap: 0;
    padding: 10px 0;
    pointer-events: none;
    transition: 0.4s;
  }
  .header__nav ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: all 0.5s ease;
    pointer-events: inherit;
  }
  .header__nav ul > li > .sub-menu > li {
    display: block;
    width: 100%;
  }
  .header__nav ul > li > .sub-menu > li > a {
    position: relative;
    padding: 12px 20px;
    display: block;
    line-height: 1.5;
    color: #31245b;
    font-weight: 600;
    border-bottom: 1px solid #d7d8db;
    font-size:16px;
  }
  
  .header__nav ul > li > .sub-menu > li > a:before {
    content:"\F135";
    position: absolute;
    font-weight: bold;
    top:14px;
    left: 0;
    visibility: hidden;
    opacity:0;
    font-family: bootstrap-icons !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .header__nav ul > li > .sub-menu > li > a:hover{
    color:#fd6649;
    padding-left: 25px;
  }
  .header__nav ul > li > .sub-menu > li > a:hover:before{
    visibility:visible;
    opacity:1;
    left: 7px;
  }
  .header__nav > ul > li > .sub-menu > li.current-menu-item > a{
    color:#fd6649;
    padding-left: 25px;
  }
  .header__nav > ul > li > .sub-menu > li.current-menu-item > a:before{
    visibility:visible;
    opacity:1;
    left: 7px;
  }
  .header__nav ul > li > .sub-menu > li:last-child {
    padding-bottom: 0;
  }
  .header__nav ul > li > .sub-menu > li:last-child a{
  border-bottom: none;
  padding-bottom:0;
  }
}
@media only screen and (max-width:1199.99px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -450px;
    background:var(--color-secondary);
    z-index: 9999;
    width: 450px;
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    height:100vh;
    overflow:scroll;
  }
  .show__menu {
    right: 0;
  }
  .header__nav > ul {
    flex-direction:column;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    width:100%;
    padding:0px 30px 30px 30px;
  }
  .header__nav > ul > li {
    width:100%;
    display:block;
    margin-bottom: 1rem;
    position: relative;
  }
  .header__nav > ul > li > .menu__toggle {
    cursor: pointer;
    position: absolute;
    top: 7px;
    right: .4375rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%2347005f' points='6 7 12 13 18 7 20 9 12 17 4 9'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    background-color: var(--color-white);
    width: 2.1875rem;
    height: 2.1875rem;
    border: 1px solid var(--color-white);
  }
  .header__nav > ul > li.menu-item-has-children.open > .menu__toggle{
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%2347005f' points='4 15 12 7 20 15 18 17 12 11 6 17'/%3E%3C/svg%3E");
    background-color:var(--color-white);
  }
  .header__nav > ul > li > a {
    position: relative;
    display: block;
    padding: 15px;
    font-weight: 600;
    line-height: 1;
    box-shadow: rgb(83 0 118 / 25%) 0px 30px 60px -12px inset, rgb(43 0 78 / 30%) 0px 18px 36px -18px inset;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 20px;
  }
  .header__nav > ul > li.current_page_item > a,
  .header__nav > ul > li.menu-item-has-children.open > a{
    color: var(--color-white);
    background-color:var(--color-for-theme);
  }
  .header__nav ul > li > .sub-menu{
    display:none;
  }
  .header__nav ul > li > .sub-menu > li {
    display: block;
    width: 100%;
  }
  .header__nav ul > li > .sub-menu > li > a {
    position: relative;
    padding: 12px 20px;
    display: block;
    line-height: 1.5;
    color:var(--color-white);
    font-weight: 600;
    border-bottom: 1px solid var(--color-white);
  }
  
  .header__nav ul > li > .sub-menu > li > a:before {
    content:"\F135";
    position: absolute;
    font-weight: bold;
    top:14px;
    left: 0;
    font-family: bootstrap-icons !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .header__nav ul > li > .sub-menu > li:last-child {
    padding-bottom: 0;
  }
   .header__nav ul > li > .sub-menu > li:last-child a{
    border-bottom: none;
    padding-bottom:0;
   }
  .header__nav .open > a {
    font-weight: bold;
  }
  .nav__hamburger  {
    display:flex;
  }
  span.close__menu i {
    font-size: 30px;
    color: #fff;
}
  span.close__menu {
      padding: 20px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }
  .mobile__container span {
    font-size: 1.25rem;
    box-shadow: rgb(83 0 118 / 25%) 0px 30px 60px -12px inset, rgb(43 0 78 / 30%) 0px 18px 36px -18px inset;
  }
}
/* Header Style End*/
/* Hero CSS Start*/
@media only screen and (min-width:991px){
  .hero__section h1 {
    font-size: 70px;
  }
  .hero__section p {
    font-size: 1.5rem;
  }
}
.hero__section {
  height: 100vh;
  padding:6rem 0;
  z-index:2;
}
@media only screen and (max-width:991px){
  .hero__section h1 {
    font-size:55px;
  }
  .hero__section {
    height: 80vh;
  }
}
@media only screen and (max-width:768px){
  .hero__section {
    height:70vh;
  }
  .hero__section h1 {
    font-size: 45px;
  }
}
@media only screen and (max-width:768px){
  .hero__section h1 {
    font-size:35px;
  }
}
video#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
  z-index: 1;
}
.hero__section h1 {
  color:#fff;
  max-width:800px;
}
.hero__section h1 span {
  color:#fd6649;
}

/* !END: Hero CSS */

/* START: About CSS */
.about__feature-item .about-us__feature__col:last-child {
  border-right:0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__feature-item .about-button {
    margin-top: 1.875rem;
  }
}
@media only screen and (max-width:992px){
.about__feature-item {
  max-width:100%;
}  
.about__feature-item {
  justify-content:center;
}  
}
@media (max-width: 575px) {
  .about__feature-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__feature-item .feature__col:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .about__feature-item .feature__col .client__experience .funfact__item-one .number {
    font-size: 40px;
  }
  .about__feature-item .feature__col .client__experience .funfact__item-one .sub-title {
    font-size: 14px;
  }
}
.feature__list ul li:last-child {
  margin-bottom: 0;
}
.feature__list ul li i {
  font-size: 1.375rem;
  margin-top: .125rem;
  color:var(--color-orange);
}

.client__experience .images__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.client__experience .images__thumb li {
  position: relative;
  max-width: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  -webkit-margin-start: -1rem;
          margin-inline-start: -1rem;
  z-index: 2;
}
.client__experience .images__thumb li:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.client__experience .images__thumb li img {
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  padding: 3px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.client__experience .images__thumb li.plus {
  background-color: #fff;
  padding: 3px;
  max-width: 50px;
  width: 100%;
}
.client__experience .images__thumb li.plus i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  font-size:25px;
  line-height: 1;
  color: #fff;
  background:var(--color-secondary);
  border-radius: 50%;
}

.funfact__item-one .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  line-height: 1;
  color: var(--color-secondary);
}
.funfact__item-one .number .odometer {
  line-height: 1;
}
/* !END: About CSS */
/**----------------------------------------
START: Solution CSS
----------------------------------------*/
.solution__sec {
  background-color:#f5f5f5;
}
.solution__item {
  height: 100%;
  padding: 15px;
  padding-bottom: 0;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.solution__item .item__thumb {
  min-height: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.solution__item .item__thumb img {
  width: 100%;
  min-height: 280px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
          transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
  border-radius: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .solution__item .item__thumb {
    min-height: 240px;
  }
  .solution__item .item__thumb img {
    min-height: 240px;
  }
}
.solution__item .item__content {
  padding: 25px 15px 30px;
  height: 100%;
}
.solution__item .item__content .item__title {
  margin: 0;
  text-transform:capitalize;
}
.solution__item .item__content .item__title a:hover {
  color:#fd6649;
}
.solution__item:hover .item__thumb img {
  -webkit-transform: perspective(400px) rotateX(0.09deg) rotateY(0) scale(1.1);
          transform: perspective(400px) rotateX(0.09deg) rotateY(0) scale(1.1);
}
.item__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  justify-content:space-between;
}
.item__title-wrap h4 a,
.service-card h3 a{
  color:var(--color-secondary);
}
.item__title-wrap h4 a:hover,
.service-card h3 a:hover{
  color:#fd6649;
}
.item__btn {
  background-color:#fd6649;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item__btn:hover{
  background-color:#fd6649;
}
.item__btn .btn__icon {
  transition: all ease 0.3s;
  transform: rotate(-45deg);
  display: block;
}
.item__btn:hover .btn__icon {
  transform: rotate(0);
}
.item__btn .btn__icon i {
  color: #fff;
  font-size: 30px;
}
/* !END: Solution CSS */
/* START: Project CSS */
.project__sec {
  background-color:#f5f5f5;
  overflow: hidden;
  z-index: 1;
  position: relative;n;
}
.project__item {
  position: relative;
  z-index: 1;
  overflow: hidden;
transition:all ease 0.3s;
border-radius:10px;
}
.project__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: linear-gradient(180deg, rgba(5, 18, 41, 0) 0%, #2f06588a 84%);
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.project__item .item__image a {
  display:block;
  width: 100%;
}
.project__item .item__image a img {
  width: 100%;
  transition:all ease 0.3s;
  border-radius:10px;
}
.project__item .item__content {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  padding: 15px 30px 40px 30px;
  z-index: 5;
}
.project__item .item__content .item__title {
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}
.project__item .item__content .item__title a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
  -webkit-padding-end: 30px;
          padding-inline-end: 30px;
  color:var(--color-white);
}
.project__item .item__content .title:hover {
  letter-spacing: 0;
}
.project__item .item__content .item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  margin-top: 15px;
}
.project__item .item__content .item__list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  background:#fd6649;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 40px;
}
.project__item .item__content .item__list a:hover {
  color: #fff;
  background-color:#fd6649;
}
.project__item:hover .item__image img{
    transition:all ease 0.3s;
}
.project__item:hover .item__image img {
  -webkit-transform: scale(1.12);
      -ms-transform: scale(1.12);
          transform: scale(1.12);
          transition:all ease 0.3s;
}
.project__item .item__content i {
  color: #fff;
  font-size: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .project__item .item__content {
    padding: 15px 15px 35px 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project__item .item__content {
    padding: 15px 15px 35px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project__item .item__content {
    padding: 15px 15px 35px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project__item .item__content {
    padding: 15px 15px 30px 15px;
  }
}

.youtube-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.youtube-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.youtube-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}


/* !END: Project CSS */

.why__sec {
  position: relative;
  z-index:1;
  /* overflow:hidden; */
}
.why__sec:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cpath fill='%238832bd' d='M6.5,13C2.9,13,0,10.1,0,6.5S2.9,0,6.5,0S13,2.9,13,6.5S10.1,13,6.5,13z M6.5,4C5.1,4,4,5.1,4,6.5 C4,7.9,5.1,9,6.5,9C7.9,9,9,7.9,9,6.5C9,5.1,7.9,4,6.5,4z'/%3E%3C/svg%3E");
    opacity: .2;
    position: absolute;
    left: -430px;
    top: 0;
    width: 880px;
    height: 880px;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.why__sec .sec-heading {
    margin: 0 0 20px 0;
}
.why__sec .sec-heading .sub-title {
    margin: 0 0 10px 0;
}
 .custom-card {
  /* background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  padding: 3rem;
}
.list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.list-item .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

.list-item .icon svg {
  width: 100%;
  height: 100%;
  fill:#fd6649;
}

.list-item p {
  margin-bottom: 0;
  font-weight: 500;
  color: #495057;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height:490px;
}
@media only screen and (max-width:576px){
  .image-card {
    height:auto;
  } 
}
/* .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
  120deg,
  rgba(139, 45, 171, 0.6) 0%,
  rgba(253, 102, 73, 0.6) 100%
);
} */
.cultr__sec .sec-heading {
  position: relative;
  z-index:1;
}
.image-text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: #fff;
  background:linear-gradient(120deg, var(--color-purple) 0%, var(--color-orange) 100%);;
  background: linear-gradient( 120deg, rgba(139, 45, 171, 0.6) 0%, rgba(253, 102, 73, 0.6) 100% );
}

.image-text-container p {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.highlight {
 background-color:#fd6649;
  border-radius: 0.5rem;
  padding: 0.1rem 0.5rem;
  font-weight: 700;
  color:#fff;
}
@media only screen and (max-width: 1200px) {
  .image-text-container {
    padding: 1rem;
  }
  .image-text-container p {
    font-size: 27px;
  }
  .custom-card {
    padding: 0rem 3rem 3rem 3rem;
  }
  .highlight {
    display: inline-block;
  }
}
@media only screen and (max-width: 767.98px) {
  .custom-card {
    padding: 0 0 2rem 0;
  }
  .image-text-container p {
    font-size:25px;
  }
}
.award-image img {
  border-radius: 16px;
  max-height: 320px;
}
.award-item {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 16px;
}
.ast-plain-container.ast-no-sidebar #primary {
  margin:0 !important;
}
.service-card {
  background-color:var(--color-for-bg-3);
  transition: all ease .3s;
  transform: translateY(0);
  padding:24px;
  height:100%;
  text-align:center;
  border-radius:1rem;
  box-shadow: 0 4px 6px -2px #9c9c9c, 0 4px 6px -2px #9c9c9c, 0 12px 16px -4px #9c9c9c;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon img {
  max-height: 4rem;
  margin: 0 auto;
  max-width: 4rem;
}
.service-card .tj-primary-btn {
  padding: 10px;
}
.service-card .tj-primary-btn .btn_inner .btn_text {
  font-size: 14px;
}
.service-card .tj-primary-btn .btn_inner {
  padding: 7px 10px 7px 40px;
}
.service-card .tj-primary-btn .btn_inner::before {
  width: 30px;
  height: 30px;
}
.service-card .tj-primary-btn .btn_inner .btn_icon{
  font-size: 20px;
  line-height: 1;
  min-width: 30px;
  top:2px;
}
/**----------------------------------------
START: Client CSS
----------------------------------------*/
.client__sec {
  background-color:#f3eaf8;
}
.client-section-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.client-title-box {
  border-right: 1px solid #bdbec0;
  padding: 50px;
  width: 30rem;
}
.client-title-text {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.1;
}
@media only screen and(max-width:576px){
.client-title-box { 
  padding: 50px 20px;
}
.client-title-text {
  font-size: 20px;
}  
}
.client-title-text span{
  color:#8b2dab;
}
.client-slider {
  padding-left: 50px;
  overflow: hidden;
  margin: 0;
}
.client-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.client-slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.client-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-end: 50px;
          padding-inline-end: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .client-item {
    -webkit-padding-end: 20px;
            padding-inline-end: 20px;
  }
}
.client-logo {
  /* background-color:var(--color-for-bg4);
  position: relative;
  z-index: 5;
  border-radius:5px;
  padding:.5rem; */
}
.client-logo img {
  max-width:4rem;
  transition: all ease 0.3s;
}
.client-logo img:hover {
  box-shadow: none;
}

/* !END: Client CSS */
.call-to-action-section .main{
    border-radius:80px 0;
    padding:95px 79px 74px 73px;
    background-image: url(../img/home/faq/h4-hero-img.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.call-to-action-section .main::before {
  content: "";
  background-color: var(--color-secondary);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 80px 0;
  opacity: .6;
  z-index: -1;
}
.call-to-action-section .main .title{
    color:#fff;
    font-size:36px;
    font-style:normal;
    font-weight:700;
    line-height:136%;
    max-width:39%;
}
.call-to-action-section .main .cta-short-info{
    max-width:48%;
}
.call-to-action-section .main .cta-short-info p{
  color: #fff;
  margin-bottom: 33px;
  font-size: 22px;
  line-height: 1.5;
}
@media (max-width:1199.98px){
    .call-to-action-section .main{
        padding:60px 40px 60px 40px
    }
}
@media (max-width:991.98px){
    .call-to-action-section .main{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column;
        text-align:center
    }
    .call-to-action-section .main .cta-short-info,
    .call-to-action-section .main .title{
        max-width:100%
    }
}
@media (max-width:767.98px){
    .call-to-action-section .main .title{
        font-size:32px
    }
}
@media (max-width:575.98px){
    .call-to-action-section .main{
        padding:30px 24px
    }
    .call-to-action-section .main .title{
        font-size:26px;
        line-height:130%;
        margin-bottom:12px
    }
}
.cta-short-info a {
  background-color: #8b2dab;
  color: var(--color-secondary);
}
.cta-short-info a .btn_text {
    color:var(--color-secondary);
}
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.tj-testimonial-section {
  background-color: #8b2dab;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
}
.tj-testimonial-section .sec-heading-wrap {
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section .sec-heading-wrap {
    padding-top: 100px;
  }
}

.testimonial-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 575px) {
  .testimonial-wrapper {
    -webkit-margin-end: -12px;
            margin-inline-end: -12px;
  }
}

.testimonial-slider .testimonial-item {
  background-color: #f3eaf8;
  border: 2px solid #ced7e0;
  padding: 0 26px 35px;
  height: 100%;
  border-radius: 12px;
}
.testimonial-slider .testimonial-item .quote-icon {
  color: #8b2dab;
  font-size: 46px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.testimonial-slider .testimonial-item .rating-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.testimonial-slider .testimonial-item .rating-wrap .rating-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #8b2dab;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-slider .testimonial-item .rating-wrap .rating-img img {
  width: 33px;
  height: 33px;
}
.testimonial-slider .testimonial-item .rating-wrap .rating-text {
  color: var(--color-for-text);
  font-size: 14px;
}
.testimonial-slider .testimonial-item .rating-wrap .rating-text strong {
  font-size: 16px;
  font-weight:700;
  color: --color-for-text;
}
.testimonial-slider .testimonial-item .desc {
  font-size: 1rem;
  line-height: 1.444;
  padding-top: 23px;
  padding-bottom: 22px;
}
.testimonial-slider .testimonial-item .desc p {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider .testimonial-item .desc {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-slider .testimonial-item .desc {
    font-size: 16px;
  }
}
.testimonial-slider .testimonial-item .testimonial-author .title {
  line-height: 1;
  font-weight: 500;
  margin-bottom: 2px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider .testimonial-item {
    padding: 35px 23px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-slider .testimonial-item {
    padding: 30px 20px;
  }
}
.testimonial-slider .swiper-slide-active .testimonial-item {
  border-color: #8b2dab;
}

.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  border-top: 1px dashed var(--color-for-bg4);
}
.testimonial-author .author-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.testimonial-author .author-img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-author .author-img {
    width: 50px;
    height: 50px;
  }
}
.testimonial-author .title {
  margin-bottom: 0;
  line-height: 1;
}
.testimonial-author .designation {
  font-size: 14px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.testimonial-author .quote-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: #8b2dab;
  font-size: 43px;
}
.testimonial-author .quote-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-author .quote-icon {
    font-size: 30px;
  }
}

.tj-testimonial-section-2 {
  overflow: hidden;
}
@media (max-width: 575px) {
  .tj-testimonial-section-2 .testimonial-wrapper {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.testimonial-img-area {
  position: relative;
}
.testimonial-img-area .testimonial-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.testimonial-img-area .testimonial-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-img-area .testimonial-img img {
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.testimonial-img-area .testimonial-img .sec-heading {
  position: absolute;
  top: 40px;
  inset-inline-start: 30px;
  width: 60%;
  z-index: 2;
}
.testimonial-img-area .testimonial-img .sec-heading .sec-title {
  color: var(--color-white);
}
.testimonial-img-area .testimonial-img .sec-heading .sec-title span {
  color: var(--color-for-text-3);
}
.testimonial-img-area .testimonial-img::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-for-text);
  opacity: 0.25;
}
.testimonial-img-area .box-area {
  max-width: 239px;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: inherit;
  padding: 15px 0 0 15px;
  border-start-start-radius: 12px;
  border-start-end-radius: 0;
}
.testimonial-img-area .box-area::before {
  inset-inline-start: inherit;
  inset-inline-end: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.testimonial-img-area .box-area::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  inset-inline-start: -12px;
  inset-inline-end: inherit;
}
@media (max-width: 575px) {
  .testimonial-img-area .box-area {
    max-width: 215px;
  }
}

.rating-box {
  background-color: #8b2dab;
  border-radius: 10px;
  padding: 1rem 25px 25px;
}
.rating-box .rating-area {
  margin-bottom: 8px;
}
.rating-box .star-ratings {
  -webkit-text-stroke: 1px var(--color-white);
}
.rating-box .star-ratings .fill-ratings {
  color: var(--color-white);
}
.rating-box .rating-text {
  color: var(--color-white);
}
.rating-box .title {
  font-size: 74px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 58px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .rating-box .title {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
.rating-box .number {
  color: var(--color-white);
  font-size: 20px;
  font-weight:500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.1;
  border-bottom: 1px solid currentColor;
}
@media (max-width: 575px) {
  .rating-box .number {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .rating-box {
    padding: 20px 1rem 25px;
  }
}
.slider-navigation {
  gap: 13px;
}

.slider-next,
.slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  background-color: transparent;
  border: 1px solid var(--color-for-bg4);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next .anim-icon,
.slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.slider-next .anim-icon i,
.slider-prev .anim-icon i {
  position: relative;
  top: 0;
  color: --color-for-text;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next .anim-icon i:last-child,
.slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--color-white);
}
.slider-next:hover,
.slider-prev:hover {
  color: var(--color-white);
  background-color: #8b2dab;
  border-color: #8b2dab;
}
.slider-next:hover .anim-icon i:first-child,
.slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.slider-next:hover .anim-icon i:last-child,
.slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-next,
  .slider-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.slider-next:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}

.swiper-pagination-area {
  text-align: center;
  line-height: 0;
  margin-top: 55px;
}
.swiper-pagination-area.white-pagination .swiper-pagination-bullet {
  background-color: var(--color-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .swiper-pagination-area {
    margin-top: 30px;
  }
}
.swiper-pagination-bullet {
  width: 12px;
  height: 8px;
  background-color:var(--color-purple);
  border-radius: 30px;
  opacity: 0.15;
  position: relative;
  margin: 5px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.swiper-pagination-bullet-active {
  width: 64px;
  opacity: 1;
}

/* !END: Testimonial CSS */
.counter .container-fluid {
    padding: 0;
}
.counter__wrapper {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  justify-content:flex-start;
}
.counter-item {
  position: relative;
  padding: 20px;
  z-index: 1;
  background-color:#f3eaf8;
  border: 1px solid #bdbec0;
}
.counter-item svg {
  max-width: 3rem;
  fill: var(--color-secondary);
  margin:0 auto;
}
.counter-item svg path {
  fill: var(--color-secondary);
}
.counter-item .counter-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content:center;
  font-size:40px;
  line-height: 1;
  font-weight:bold;
  padding-top:10px;
  color: var(--color-secondary);
}
.counter-item .counter-label {
  line-height: 1.3;
  display: block;
  margin-top: 10px;
  text-transform: capitalize;
  color: var(--color-secondary);
  text-align: center;
}

/* START: Brand CSS */
.brand__sec{
  overflow: hidden;
  background-color: var(--color-secondary);
  background-image:url(../img/home/partners/h7-brand-bg.png);
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  z-index:1;
  position:relative;
}
.brand__sec .section__title{
  color:var(--color-white);
}
.brand__inner {
  background:linear-gradient(267.43deg,#8b2dab 4.95%, #fd6649 97.92%);
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      border-radius: 10px;
}
.brand__inner .brand__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border:1px solid #ced7e0;
  -webkit-border-start: 0;
          border-inline-start: 0;
  border-top: 0;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.brand__inner .brand__logo:nth-child(3) {
    border-right: 0;
}
.brand__inner .brand__logo:nth-child(4),
.brand__inner .brand__logo:nth-child(5) {
    border-bottom: 0;
}
.brand__inner .brand__logo:last-child {
	border-right: 0;border-bottom: 0;
}
.brand__inner .brand__logo:hover a {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}
.brand__logo a img {
  max-width: 9rem;
  filter: brightness(0) invert(1);
}
@media only screen and (max-width:568px){
  .brand__inner .brand__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .brand__inner .brand__logo:nth-child(2) {
    border-right: 0;
  }
  .brand__inner .brand__logo:nth-child(3) {
      border-right: 1px solid #ced7e0;
  }
  .brand__inner .brand__logo:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid #ced7e0;
  }
}


/* START: Process CSS */
.h7-process {
  background-color: #fff;
  padding-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-process {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-process {
    padding-bottom: 0;
  }
}
.h7-process .sec-heading {
  margin-bottom: 20px;
}
.h7-process .sec-heading .sub-title {
  background: #fff;
}
.h7-process .process-left {
  position: relative;
  z-index: 0;
  height: 100%;
}
.h7-process .process-banner {
  position: relative;
  width: 100%;
  margin-top: 20px;
  max-width: 526px;
  z-index: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-process .process-banner {
    margin-top: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-process .process-banner {
    width: auto;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}
.h7-process .process-banner-bg {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  background-color: #8832bd;
  z-index: -1;
}
.h7-process .process-banner-bg::before, .h7-process .process-banner-bg::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 70px;
  -webkit-mask-image: url(../images/shapes/h7-process-banner-shape-1.svg);
          mask-image: url(../images/shapes/h7-process-banner-shape-1.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-secondary);
  z-index: 1;
}
.h7-process .process-banner-bg::before {
  -webkit-mask-image: url(../images/shapes/h7-process-banner-shape-2.svg);
          mask-image: url(../images/shapes/h7-process-banner-shape-2.svg);
  background-color: #fff;
  z-index: 0;
}
.h7-process .process-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  max-width: 612px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  position: relative;
  z-index: 0;
  margin-bottom: 120px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-process .process-inner {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h7-process .process-inner {
    margin-bottom: 60px;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .h7-process .process-inner {
    margin-bottom: 40px;
    max-width: 100%;
  }
}
.h7-process .process-inner .process-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: var(--tj-color-border-2);
  top: 0;
  inset-inline-start: 48px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
.h7-process .process-inner .process-line-active {
  position: absolute;
  width: 100%;
  height: 33.333%;
  background-color: var(--tj-color-border-1);
  top: 0;
  inset-inline-start: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1;
}
.h7-process .process-item.style-4 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
@media (max-width: 575px) {
  .h7-process .process-item.style-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.h7-process .process-item.style-4::before {
  display: none;
}
.h7-process .process-item.style-4 .process-index {
  margin: 0;
  max-width: 112px;
  width: 100%;
  height: 98px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-mask-image: url(../images/shapes/h7-process.svg);
          mask-image: url(../images/shapes/h7-process.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-process .process-item.style-4 .process-index {
    max-width: 91px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .h7-process .process-item.style-4 .process-index {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-bottom: 5px;
  }
}
.h7-process .process-item.style-4 .process-index span {
  width: 68px;
  height: 68px;
  background-color: #fff;
  color: var(--tj-color-heading-primary);
  border-radius: 100%;
  font-size: 20px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.025em;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 14px;
          margin-inline-end: 14px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 575px) {
  .h7-process .process-item.style-4 .process-index span {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 62px;
    height: 62px;
    font-size: 17px;
  }
}
.h7-process .process-item.style-4 .process-content {
  padding: 0;
  background-color: #fff;
  padding: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-process .process-item.style-4 .process-content {
    padding: 20px;
    padding: 30px 20px;
  }
}
.h7-process .process-item.style-4 .process-content .title {
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.h7-process .process-item.style-4 .process-content .desc {
  line-height: 1.5;
}
.h7-process .process-item.active .process-index span {
  background-color: #8832bd;
  color: #fff;
}
.h7-process-circle {
  max-width: inherit;
  width: auto;
  height: auto;
  top: 50%;
  inset-inline-start: auto;
  inset-inline-end: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: none;
          mask-image: none;
  background-color: transparent;
  z-index: 1;
}
.h7-process-circle .circle-wrap {
  background-color: var(--color-secondary);
}
.h7-process-circle .circle-wrap .logo-icon {
  background: #8832bd;
  border-radius: 100%;
  width: 80px;
  height: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-process-circle .circle-wrap .logo-icon {
    width: 65px;
    height: 65px;
  }
}

/* !END: Process CSS */


/* !END: Brand CSS */
/**----------------------------------------
START: Faq CSS
----------------------------------------*/
.faq__sec .flex__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width:991px){
  .faq__sec .flex__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.faq-img-area {
  max-width: 585px;
  position: relative;
}
.faq-img-area:before {
    content: "";
    background-color: var(--color-tertiary);
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 1;
    opacity: .4;
}
.faq-img-area .section__title {
    position: absolute;
    top: 0;
    padding: 1rem;
    color: #fff;
    z-index: 5;
}
.faq-img-area .faq-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px 12px 0px 0px;
  overflow: hidden;
}
.faq-img-area .faq-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq-img-area .faq-img .title {
  position: absolute;
  top: 40px;
  inset-inline-start: 30px;
  max-width: 400px;
  color: var(--color-white);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-img-area .faq-img .title {
    max-width: 280px;
  }
}
.faq-img-area .faq-img::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-for-text);
  opacity: 0.25;
}
.faq-img-area .box-area {
  max-width: 239px;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: inherit;
  padding: 15px 0 0 15px;
  border-start-start-radius: 12px;
  border-start-end-radius: 0;
  background-color: var(--color-white);
  position: absolute;
  right: 0;
  z-index: 9;
  bottom: 0;
}
@media (max-width: 575px) {
  .faq-img-area .box-area {
    max-width: 215px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-img-area {
    max-width: 100%;
  }
}

.call-box {
  background-color: #8b2dab;
  border-radius: 10px 10px 0 0;
  padding: 25px 20px 30px;
}
.call-box .call-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color:#fd6649;
  color: var(--color-white);
  font-size: 20px;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  margin-bottom: 9px;
}
@media (max-width: 575px) {
  .call-box .call-icon {
    font-size: 1rem;
    height: 45px;
    width: 45px;
  }
}
.call-box .title {
  color: var(--color-white);
  font-weight:500;
  max-width: 145px;
  margin-bottom: 29px;
}
@media (max-width: 575px) {
  .call-box .title {
    margin-bottom: 1rem;
  }
}
.call-box .number {
  color: var(--color-white);
  font-size: 20px;
  font-weight:500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.call-box .number span {
  position: relative;
}
.call-box .number span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-end: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.call-box .number:hover span::after {
  -webkit-animation: linehover 0.8s linear;
  animation: linehover 0.8s linear;
}
@media (max-width: 575px) {
  .call-box .number {
    font-size: 1rem;
  }
}
.call-box:hover .call-icon {
  -webkit-animation: bellshake 0.5s linear;
          animation: bellshake 0.5s linear;
}
@media (max-width: 575px) {
  .call-box {
    padding: 20px 1rem 25px;
  }
}

.faq__accordion .accordion-item {
  margin-bottom: 20px;
  padding: 0 30px;
  border-radius: 8px;
  border: 0;
  position: relative;
  background-color:#f3eaf8;
}
.faq__accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq__accordion .accordion-item .faq-title {
  font-size: 1rem;
  text-align: start;
  color: var(--color-for-text);
  font-weight: 500;
  padding: 27px 60px 27px 0;
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-transition: none;
  transition: none;
  background-color:#f3eaf8;
}
.faq__accordion .accordion-item .faq-title::after {
  content: "\F4FE";
  color: #8b2dab;
  font-size: 20px;
  line-height:31px;
  font-weight: normal;
  text-align: center;
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #8b2dab;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: bootstrap-icons !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq__accordion .accordion-item .faq-title {
    padding: 20px 40px 20px 0;
  }
}
.faq__accordion .accordion-item .accordion-body {
  padding: 0;
  padding-bottom: 25px;
  margin-top: 15px;
  color: var(--color-for-text);
}
.faq__accordion .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}
.faq__accordion .accordion-item.active .faq-title {
  border-bottom: 1px solid #fff;
}
.faq__accordion .accordion-item.active .faq-title::after {
  content: "\F2EA";
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq__accordion .accordion-item {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq__accordion {
    padding-top: 40px;
  }
}
.faq__accordion.style-2 .accordion-item.active {
  background-color: #8b2dab;
}
.faq__accordion.style-2 .accordion-item.active .faq-title {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.15);
  background-color: #8b2dab;
}
.faq__accordion.style-2 .accordion-item.active .faq-title::after {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.1);
}
.faq__accordion.style-2 .accordion-item.active .accordion-body p {
  color: var(--color-white);
}

/* !END: Faq CSS */
.partner-logos {
  padding: 30px 0;
}
.partner-logos img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.partner-logos img:hover {
  filter: grayscale(0%);
}

/* Case Study Listing */
.case-study-item {
  margin-bottom: 40px;
}

.case-card {
  display: flex;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.case-thumb img {
  width: 350px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.case-content {
  flex: 1;
}

.case-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.case-excerpt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.case-btn {
  display: inline-block;
  padding: 10px 1rem;
  background: #8b2dab;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.case-btn:hover {
  background:var(--color-purple-1);
  color:var(--color-white);
}

/* About Page Style */
.wp-block-uagb-container.page-header,
.page-header{
	position: relative;
	background: url(https://staging.vallect.com/wp-content/uploads/2025/10/banner.avif) no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	padding:140px 0;
	margin-top: 0;
}
@media only screen and (max-width:991px){
  .page-header,
  .wp-block-uagb-container.page-header{
    	padding:80px 0;
  }
}
@media only screen and (max-width:767px){
  .page-header,
  .wp-block-uagb-container.page-header{
    	padding:50px 0;
  }
}
.page-header:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(90deg, rgb(87 10 134) 0%, rgb(71 0 94 / 50%) 100%);
	z-index: 0;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
	color:#fff;
	font-size: 70px;
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 10px;
  font-weight: 700;
}
.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color:#fff;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
  color:var(--color-orange-light);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}
@media only screen and (max-width:991px) {
  .page-header-box h1{
    font-size:55px;
  }
}
@media only screen and (max-width:767px) {
  .page-header-box h1{
    font-size:45px;
  }
}
@media only screen and (max-width:576px) {
  .page-header-box h1{
    font-size:35px;
  }
}
/************************************/
/***       05. About Us css	      ***/
/************************************/
.our-approach .sec-heading,
.about-us .sec-heading {
    margin-bottom: 20px;
}
@media only screen and (max-width:480px){
  .about-us-content {
    padding-top: 2rem;
}
}
.about-us-images{
    position: relative;
    padding: 0 70px 70px 80px;
}

.about-us-img-1 figure{
    display: block;
    mask-image: url(../img/home/about/about-image-bg-shape.svg);
    background-image: url(../img/home/about/about-image-bg-shape.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
	border-radius: 30px;
    width: 100%;
    height: 100%;
}
.image-anime {
  overflow: hidden;
  position: relative;
  display: block;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.about-us-img-1 img{
    width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.about-us-img-2{
	position: absolute;
    bottom: 0;
    right: 35px;
	overflow: hidden;
}

.about-us-img-2 figure{
	display: block;
}

.about-us-img-2 img{
	width: 100%;
  border-radius: 14px;
}

.about-experience-box{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(70%);
	background:linear-gradient(267.43deg,#8b2dab 4.95%, #fd6649 97.92%);
	border-radius: 10px;
	padding: 20px;
	max-width: 178px;
	animation: experiencemoveobject 2s infinite linear alternate;
}

@keyframes experiencemoveobject{
	50%{
		left: 30px;
	}
}

.about-experience-box .icon-box{
	margin-bottom: 10px;
}

.about-experience-box .icon-box img{
	max-width: 45px;
}

.about-experience-box .about-experience-content h3{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.company-review{
	position: absolute;
    left: 0;
    bottom: 0;
    transform: rotate(-180deg) translate(-100%, 50%);
    writing-mode: vertical-rl;
}

.company-review h3{
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #8b2dab;
}

.about-us-list{
	margin-bottom: 40px;
}

.about-us-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-us-list ul li{
	position: relative;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
    color:var(--color-secondary);
	padding-left: 30px;
    margin-bottom: 20px;
}

.about-us-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-list ul li::before{
	  content: '\F272';
    font-family:bootstrap-icons !important;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    background-image: linear-gradient(267.43deg, #fd6649 4.95%, var(--color-secondary) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-body{
	border-bottom: 1px solid #d7d8db;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.about-comapny-client{
	width: calc(50% - 15px);
}

.company-client-images{
	margin-bottom: 10px;
}

.company-client-images .client-image{
    display: inline-block;
    margin-left: -1rem;
    /* border: 1px solid #ced7e0;
    border-radius: 50%; */
    overflow: hidden;
}

.company-client-images .client-image:first-child{
    margin: 0;
}

.company-client-images .client-image figure{
	display: block;
  margin: 0;
}

.company-client-images .client-image img{
    width: 50px;
    border-radius: 100%;
}

.company-client-counter p{
	font-weight: 500;
	margin: 0;
}

.company-client-counter p span{
	color:#fd6649;
}

.about-company-result{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.about-company-result .icon-box{
	width: 50px;
	height: 50px;
	background: linear-gradient(267.43deg, #8b2dab 4.95%, var(--color-secondary) 97.92%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-company-result .icon-box img{
	max-width: 30px;
}

.company-result-content{
	width: calc(100% - 70px);
}

.company-result-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.company-result-content p{
	text-transform: capitalize;
	margin: 0;
}

.our-approach{
	background:#f2f1ed;
}

.mission-vision-item{
	position: relative;
	margin-bottom: 40px;
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item:after{
	content: '';
	position: absolute;
	background: #d7d8db;
	width: 1px;
	height: 90%;
	top: 50%;
	right: -15px;
	transform: translateY(-50%);
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item{
	padding-right: 45px;
}

.mission-vision-list .col-md-6:nth-child(even) .mission-vision-item{
	padding-left: 45px;
}
@media only screen and (max-width:992px){
.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item{
	padding-right: 0;
}
.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item:after{
  content:none;
}
.mission-vision-list .col-md-6:nth-child(even) .mission-vision-item{
	padding-left: 0;
}  
}
.mission-vision-item .icon-box{
	background-image: linear-gradient(267.43deg,#8b2dab 4.95%, #fd6649 97.92%);
    background-size: 200% auto;
	border-radius: 999px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .icon-box{
	background-position: right center;
}

.mission-vision-item .icon-box img{
	max-width: 24px;
}

.mission-vision-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.mission-vision-content p{
	margin: 0;
}

.mission-vision-item.our-value-item{
	display: flex;
	border-top: 1px solid #d7d8db;
	padding-top: 40px;
}

.mission-vision-item.our-value-item .icon-box{
	margin-right: 20px;
}

.mission-vision-item.our-value-item .mission-vision-content{
	width: calc(100% - 70px);
}

.our-approach-content-footer a{
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	width: 100%;
	padding: 16px 20px;
	border-radius: 10px;
  background-image: linear-gradient(to right, var(--color-secondary) 0%, #fd6649 50%, var(--color-secondary) 100%);
  background-size: 200% auto;
  color:#fff;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  }
.our-approach-content-footer a:hover {
    background-position: right center;
}
.our-approach-content-footer a:before{ 
	display: none;
}

.our-approach-content-footer a span{
	transition: all 0.3s ease-in-out;
  display:inline-block;
  border-bottom: 2px solid #fff;
}

.our-approach-content-footer a:hover span{
	border-bottom: 2px solid transparent;
}

.our-approach-image{
	padding-left: 30px;
}
@media only screen and (max-width:992px){
.our-approach-image{
	padding-left: 0;
  padding-top:30px;
}  
}
.our-approach-image figure{
	display: block;
	border-radius: 20px;
}

.our-approach-image img{
	aspect-ratio: 1 / 0.99;
    object-fit: cover;
	border-radius: 20px;
}
.process-item img {
    max-width: 545px;
    max-height: 360px;
}
.progress__sec {
  position: relative;
  z-index: 1;
}
.progress__sec::before {
  content: "";
  background-image:url(../img/home/about/strokeprocss.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-tabs-content {
  border: 1px solid #d7d8db;
  background-color:#f2f1ed;
  box-shadow: 0 4px 6px -2px #ced7e0, 0 4px 6px -2px #ced7e0, 0 12px 16px -4px #ced7e0;
  border-radius: 16px;
  padding: 20px;
}
.wokrflow-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  display: grid;
  grid-auto-columns: 1fr;
}
.about-description-tabs {
  max-width: 486px;
}
.intro-history-item {
  grid-column-gap: 30px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  flex-direction: column;
  display: flex;
}
.timline {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  flex-direction: column;
  display: flex;
}
.progress-icon {
  background-color: #8b2dab;
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  height: 50px;
  padding: 11px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: clip;
  box-shadow: 0 1px 2px #1018280d, inset 0 0 #0a0d121f, inset 0 -2px #0a0d120d;
  background-image: linear-gradient(120deg, #8b2dab 0%, #fd6649 100%);
}
.light-ov {
  background-image: linear-gradient(#ffffff1f, #fff0);
  position: absolute;
  inset: 0%;
}
.primary-gradient {
  background-image:linear-gradient(120deg, #8b2dab 0%, #fd6649 100%);
  border-radius: 10px;
  position: absolute;
  inset: 2px;
}
.hover-gradient {
  background-image: linear-gradient(120deg,  #fd6649, #8b2dab);
  opacity: 0;
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}
.relative {
  z-index: 20;
  position: relative;
}
.progressbar-con-vertical-copy {
  height: 100%;
  position: relative;
}
.progressbar-gray-line-vertical {
  background-color: #d7d8db;
  width: 2px;
  height: 100%;
  position: absolute;
}
.progress-bar-100-vertical-timeline {
  background-color:#8b2dab;
  background-image: linear-gradient(0deg, #fd6649, #8b2dab);
  border-radius: 0 0 50px 50px;
  justify-content: center;
  align-items: flex-start;
  width: 2px;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}
.image-workflow-item {
  padding-top: 20px;
  padding-bottom: 20px;
}
.image-workflow-item img{
  max-width: 540px;
  max-height: 350px;
}
@media screen and (max-width: 991px) {
  .intro-history-item {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  .progress-icon {
    display: block;
  }
  .image-workflow-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .wokrflow-grid {
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    grid-template-columns: auto 1fr;
  }
  .timline {
    grid-area: 1 / 1 / 3 / 2;
  }
   .image-workflow-item {
    grid-area: 1 / 2 / 2 / 3;
  }
}
@media screen and (max-width: 479px) {
  .wokrflow-grid {
    grid-row-gap: 20px;
    grid-template-columns: auto;
    margin-bottom: 36px;
  }
  .image-workflow-item {
    grid-area: span 1 / span 1 / span 1 / span 1;
    padding: 0;
  }
  .timline {
    grid-row-end: 2;
    justify-self: start;
  }
  .progressbar-con-vertical-copy {
    display: none;
  }
}
.cultr__sec .sec-heading .sec-title {
  margin-bottom:20px;
}
.cultr-logo img {
  height: 450px;
}
@media only screen and (max-width:1200px){
.cultr-logo img {
  height: 400px;
}  
}
.cultr-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 30px;
}
.cultr-logo img {
  border-radius: 16px;
}
/* Section creates vertical scroll length; sticky pins the scene */
.hs-wrap { position: relative; }

.hs-scroller{
  --gap: 2rem;
  display: flex;
  gap: var(--gap);
  padding: 0 6vw 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain; /* prevent whole-page fling */
}

.hs-card{
  flex: 0 0 auto;
  width: min(38rem, 70vw);
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  scroll-snap-align: start;
}

.hs-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional: thin scrollbar styling */
.hs-scroller::-webkit-scrollbar{ height: 8px; }
.hs-scroller::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.25); border-radius: 8px; }
.hs-scroller{ scrollbar-width: thin; }
/* Blog Grid */

/* Sidebar */
.nav-links {
  display: flex;
  justify-content: start;
  gap: 10px;
  align-items: center;
  padding: 1rem;
}
.ast-separate-container {
  background-color: #f5f5f5;
}
.valley__footer{
  background-color:#8b2dab;
  background-image: url(../img/home/footer/h7-footer-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__form {
  margin-top: -30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top:5rem;
  position: relative;
  z-index:1;
  background-color: var(--color-tertiary);
}
.footer__bottom {
  background-color: var(--color-secondary);  
}
.footer__col--menu h5 {
    color: #fff;
}
.footer__form::before{
  content:"";
  background-image:url(../img/home/footer/pttern-2.png);
  background-position: bottom left;
  background-size: 98% auto;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
}
.footer__form .form-control {
  margin: 0 0 1rem 0;
}
.footer__form textarea.form-control {
  min-height: 150px;
}
.footer__col--wrap {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding-bottom:1rem;
  padding-top:5rem;
}
.footer__col--wrap ul li a {
  position: relative;
  padding:4px 10px 4px 25px;
  font-weight: 600;
  transform: translateY(0);
  -moz-transform:translateY(0);
  -webkit-transform:translateY(0);
  -o-transform:translateY(0);
  transition: all ease 0.3s;
  -webkit-transition:all ease 0.3s;
  -moz-transition:all ease 0.3s;
  color: #fff;
}
.footer__col--wrap ul li a:hover{
  color:#ff8c56;
  transform: translateY(-5px);
    -moz-transform:translateY(-5px);
  -webkit-transform:translateY(-5px);
  -o-transform:translateY(-5px);
}
.footer__col--wrap ul li a:before {
  content: "\F269";
  font-family: bootstrap-icons !important;
  position: absolute;
  top:4px;
  left: 0px;
}
.footer__info--wrap {
  padding-left:2rem;
  padding-top: 2rem;
}
.footer__info--wrap a{
  color:#fff;
}
.footer__info--wrap a:hover{
  color:#ff8c56;
}
  .footer__info--wrap i,
  .address__bar i {
    color:#fff;
  }
.footer__form .wpforms-field-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__form .wpforms-container input.wpforms-field-medium, 
.footer__form .wpforms-container select.wpforms-field-medium, 
.footer__form .wpforms-container .wpforms-field-row.wpforms-field-medium, 
.footer__form div.wpforms-container input.wpforms-field-medium, 
.footer__form div.wpforms-container select.wpforms-field-medium, 
.footer__form div.wpforms-container .wpforms-field-row.wpforms-field-medium
.footer__form .wpforms-field-container input {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.footer__form .wpforms-field-container .wpforms-field-number,
.footer__form  .wpforms-container .wpforms-field,
.footer__form .wpforms-field-container .wpforms-field.wpforms-one-half {
  margin: 0;
  padding: 0 0 20px 0;
}
.footer__form .wpforms-container .wpforms-field-textarea {
  width: 100%;
  max-width: 100%;
}
.footer__form div.wpforms-container-full .wpforms-field-label, 
.footer__form .wp-core-ui div.wpforms-container-full .wpforms-field-label {
  color:#fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer__form div.wpforms-container-full input[type="email"], 
.footer__form div.wpforms-container-full input[type="number"], 
.footer__form div.wpforms-container-full input[type="tel"],
.footer__form div.wpforms-container-full input[type="text"],
.footer__form div.wpforms-container-full select, 
.footer__form div.wpforms-container-full textarea{
  background: transparent;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid  #fff;
  color:#fff;
}
.footer__form div.wpforms-container-full input[type="email"]:focus, 
.footer__form div.wpforms-container-full input[type="email"]:focus:invalid,
.footer__form div.wpforms-container-full input[type="number"]:focus, 
.footer__form div.wpforms-container-full input[type="number"]:focus:invalid,
.footer__form div.wpforms-container-full input[type="tel"]:focus,
.footer__form div.wpforms-container-full input[type="tel"]:focus:invalid,
.footer__form div.wpforms-container-full input[type="text"]:focus,
.footer__form div.wpforms-container-full input[type="text"]:focus:invalid,
.footer__form div.wpforms-container-full select:focus, 
.footer__form div.wpforms-container-full select:focus:focus:invalid,
.footer__form div.wpforms-container-full textarea:focus:invalid,
.footer__form div.wpforms-container-full textarea:focus{
  outline:0;
  box-shadow: none;
  color:#fff;
  border-color: #fff;
}
.footer__form div.wpforms-container-full .wpforms-form textarea:focus {
  color:#fff;
}
/* Modern browsers */
.footer__form div.wpforms-container-full input[type="email"]::placeholder,
.footer__form div.wpforms-container-full input[type="number"]::placeholder,
.footer__form div.wpforms-container-full input[type="tel"]::placeholder,
.footer__form div.wpforms-container-full input[type="text"]::placeholder,
.footer__form div.wpforms-container-full select::placeholder,
.footer__form div.wpforms-container-full textarea::placeholder {
  color:#fff;
  opacity: 1;
  font-style: normal;
}

/* Chrome, Safari, Edge (WebKit) */
.footer__form div.wpforms-container-full input[type="email"]::-webkit-input-placeholder,
.footer__form div.wpforms-container-full input[type="number"]::-webkit-input-placeholder,
.footer__form div.wpforms-container-full input[type="tel"]::-webkit-input-placeholder,
.footer__form div.wpforms-container-full input[type="text"]::-webkit-input-placeholder,
.footer__form div.wpforms-container-full select::-webkit-input-placeholder,
.footer__form div.wpforms-container-full textarea::-webkit-input-placeholder {
  color:#fff;
  opacity: 1;
  font-style: normal;
}

/* Internet Explorer 10–11 */
.footer__form div.wpforms-container-full input[type="email"]:-ms-input-placeholder,
.footer__form div.wpforms-container-full input[type="number"]:-ms-input-placeholder,
.footer__form div.wpforms-container-full input[type="tel"]:-ms-input-placeholder,
.footer__form div.wpforms-container-full input[type="text"]:-ms-input-placeholder,
.footer__form div.wpforms-container-full select:-ms-input-placeholder,
.footer__form div.wpforms-container-full textarea:-ms-input-placeholder {
  color:#fff;
  opacity: 1;
  font-style: normal;
}

/* Microsoft Edge Legacy */
.footer__form div.wpforms-container-full input[type="email"]::-ms-input-placeholder,
.footer__form div.wpforms-container-full input[type="number"]::-ms-input-placeholder,
.footer__form div.wpforms-container-full input[type="tel"]::-ms-input-placeholder,
.footer__form div.wpforms-container-full input[type="text"]::-ms-input-placeholder,
.footer__form div.wpforms-container-full select::-ms-input-placeholder,
.footer__form div.wpforms-container-full textarea::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-style: normal;
}
.footer__form div.wpforms-container-full button[type="submit"],
.footer__form div.wpforms-container-full input[type="submit"],
.footer__form div.wpforms-container-full button,
.footer__form div.wpforms-container-full input[type="submit"]:not(:hover):not(:active), 
.footer__form div.wpforms-container-full button[type="submit"]:not(:hover):not(:active), 
.footer__form div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
  background-color:var(--color-orange);
  color:#fff;
  border: none;
  border-radius:5px;
  padding:8px 20px;
  cursor: pointer;
  font-weight:600;
}
.footer__form div.wpforms-container-full button[type="submit"]:hover,
.footer__form div.wpforms-container-full input[type="submit"]:hover,
.footer__form div.wpforms-container-full button:hover,
.footer__form div.wpforms-container-full button[type="submit"]:focus,
.footer__form div.wpforms-container-full input[type="submit"]:focus,
.footer__form div.wpforms-container-full button:focus,
div.wpforms-container-full button[type="submit"]:active,
div.wpforms-container-full input[type="submit"]:active,
div.wpforms-container-full button:active {
  background-color:var(--color-orange-light);
  color: var(--color-white);
  border: none;
  box-shadow:none;
  outline:0;
}
.footer__form div.wpforms-container-full button[type="submit"]:focus:after,
.footer__form div.wpforms-container-full input[type="submit"]:focus:after,
.footer__form div.wpforms-container-full button:focus:after{
  content:none;
}
.footer__form .wpforms-recaptcha-container.wpforms-is-hcaptcha {
  position: absolute;
  bottom: 0;
  right: 15px;
  z-index: 10;
}
.footer__signup--form {
  padding-left: 2rem;
  padding-top:2rem;
}
.footer__signup--form h5 {
  font-size: 20px;
  color:#fff;
}
.footer__signup--form #wpforms-26894 {
  margin: 0;
}
.footer__signup--form #wpforms-26894 form{
  display: flex;
}
/* Standard pseudo-element for modern browsers */
.footer__signup--form #wpforms-26894 form input::placeholder {
  color: #fff !important;
  font-style: normal;
  opacity: 1;
}

/* For WebKit-based browsers (Chrome, Safari, newer Edge) */
.footer__signup--form #wpforms-26894 form input::-webkit-input-placeholder {
  color: #fff !important;
  font-style: normal;
  opacity: 1;
}

/* For Firefox (older versions) */
.footer__signup--form #wpforms-26894 form input::-moz-placeholder {
  color: #fff !important;
  font-style: normal;
  opacity: 1;
}

/* For Internet Explorer 10 and 11 */
.footer__signup--form #wpforms-26894 form input:-ms-input-placeholder {
  color: #fff !important;
  font-style: normal;
  opacity: 1;
}
.footer__signup--form #wpforms-26894 form input {
  background: transparent;
  background-color: transparent;
  border: 0;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff !important;
  margin-bottom:0;
  padding: 0;
}
.footer__signup--form #wpforms-26894 form input:focus {
  background: transparent;
  border-bottom: 1px solid #fff;
  box-shadow: none;
  color: #fff !important;
}
.footer__signup--form #wpforms-26894 form {
  width: 100%;
  max-width: 75%;
  padding-bottom:1rem;
}

.footer__signup--form #wpforms-26894 form button {
  padding: 0.7rem;
  margin: 0;
  color:#fff;
  width: auto;
  height: auto;
  min-width: 7rem;
  border: 1px solid #fff;
  line-height: 1;
  position: relative;
  border-radius: 0;
  border-top-right-radius: 20px;
  background-color:#fd6649;
  text-align:left;
  margin: 2px 0px 0px -1px;
}
.footer__signup--form #wpforms-26894 form button:hover{
  background-color:var(--color-orange-light);
  color: var(--color-white);
}
.footer__signup--form #wpforms-26894 form button:focus, 
.footer__signup--form #wpforms-26894 form button:active {
  background-color:var(--color-orange-light);
  color: var(--color-white);
  outline: 0;
  box-shadow: none;
  /* border: 0; */
}
.footer__signup--form #wpforms-26894 form button::after {
  content: "\F8D3";
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
  left: auto;
}
.footer__signup--form #wpforms-26894 form button:focus::after,
.footer__signup--form #wpforms-26894 form button:active::after {
  border:0;
}
.footer__signup--form #wpforms-26894 .wpforms-submit-container, 
.footer__signup--form #wpforms-26894 .wpforms-field {
  margin: 0;
  padding: 0;
  width: 20rem;
}
.footer__social__icons a:hover{
  color: #fd6649;
}
/**----------------------------------------
/* Mobile menu base styles */

@media only screen and (max-width:767px){
  .footer__links {
    padding: 3rem 0 0 0;
  }
  .footer__col--wrap {
    flex-wrap:wrap;
  }
  .footer__col--menu {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .footer-nav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  }
  .footer__info--wrap {
    padding-left: 0;
    padding-top: 1rem;
  }
  .footer__signup--form h5 {
    margin-bottom: 20px;
  }
  .footer__signup--form,
  .address__bar {
    padding-left: 0;
  }
  .footer__social__icons {
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }
  .footer__signup--form #wpforms-26894 form {
    padding-bottom: 0;
  }
  .counter-item .counter-number,
  .counter__wrapper {
    align-items: center;
    justify-content: center;
  }
  .counter-item,
  .counter-number{
    text-align:center;
    padding: 20px 10px;
  }
  .counter-item .counter-number{
    font-size:30px;
    padding-bottom:0;
  }
  .counter__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width:576px){
  .header__nav{
    width:350px;
    right:-350px;
  }
  .show__menu {
    right: 0;
  }
  .footer__col--wrap {
    padding: 0 15px;
  }
  .address__bar,
  .footer__info--wrap {
    padding: 15px 15px 0 15px;
  }
  .footer__signup--form {
    padding: 2rem 15px;
  }
  .header__main {
    padding: 15px 0;
  }
  .nav--cta {
  display: none;
  }
  .counter__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}