/*replace blob url*/


/* -- The Creator-03  */
@import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary: #272727;
  --primary-hover: #1c1c1c;
  --secondary: #FED766;
  --secondary-hover: #fc8e0b;
  --tertiary-color: #009FB7;
  --tertiary-hover: #07657c;
  --body-bg-default:#FFFFFF;
  --body-tc:#352D2D;
  --border-c: #E6E6E6;
  --heading-c: #161301;
  --light-bg: #EEEEEE;
  --menu-overlay:rgba(0, 0, 0, 0.5);
  --body-font-family:"Urbanist", sans-serif;
  --heading-font-family:"Urbanist", sans-serif;
  --alternative-heading-font-family:"Monoton", sans-serif;
  --body-fs: 16px;
  --overlay-bg-color: rgba( 39, 39, 39, 0.5);
  --box-shadow: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
  /* background gradient */
  --bg-backdrop:rgba(3, 3, 1, 0.53);
  --bg-backdrop-01:rgba(21, 21, 21, 0.78);
  --bg-backdrop-02:rgba(21, 21, 21, 0);
  --background-gradient-overlay-section-4: linear-gradient(180deg, var(--primary) 51.63%, var(--bg-backdrop-01) 69.28%, var(--bg-backdrop-02) 88.25%);
  --background-gradient-overlay-section-1: linear-gradient(270deg, var(--bg-backdrop) 0%, var(--primary) 99.54%);
  --banner-bg-color: #272727;
  --banner-text-color:#FFFFFF;
  /* rgb gradient */
  --primary-rgb: 39, 39, 39;
  --secondary-rgb: 254, 215, 102;
  --tertiary-rgb: 0, 159, 183;
  /* Text color */
  --text-primary:#FFFFFF;
  --text-primary-hover:#FFFFFF;
  --text-secondary:#000000;
  --text-secondary-hover:#000000;
  --text-tertiary:#FFFFFF;
  --text-tertiary-hover:#FFFFFF;
  --heading-light-color:#000000;
  --heading-medium-color:#000000;
  --heading-dark-color:#000000;
  --heading-extra-dark-color:#000000;
  --body-light-color:#352D2D;
  --body-medium-color:#352D2D;
  --body-dark-color:#352D2D;
  --body-extra-dark-color:#352D2D;
  --header-menu-active:#272727;
}

/* -- The Creator-03 end */
.global-light-section .light-button {
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
}
.global-light-section .light-button:hover {
  color: var(--white) !important;
  background-color: var(--primary) !important;
}/*# sourceMappingURL=theme-creator-3.css.map */


@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
:root {
  --grey-100: #eee;
  --gray: #787878;
  --white: #FFFFFF;
  --black:#000;
  --black-100: #747474;
  --black-200: #4b4b4b;
  --black-300: #3e3e3e;
  --black-400: #313131;
  --black-500: #242424;
  --black-600: #111010;
  --black-opacity-90: rgb(0, 0, 0,0.9);
  --black-opacity-80: rgb(0, 0, 0,0.8);
  --black-opacity-70: rgb(0, 0, 0,0.7);
  --black-opacity-30: rgb(0, 0, 0,0.3);
  --size-base: 0.25rem;
  --size-0: 0;
  --size-1: var(--size-base);
  --size-2: calc(2 * var(--size-base));
  --size-3: calc(3 * var(--size-base));
  --size-4: calc(4 * var(--size-base));
  --size-5: calc(5 * var(--size-base));
  --size-6: calc(6 * var(--size-base));
  --size-7: calc(7 * var(--size-base));
  --size-8: calc(8 * var(--size-base));
  --size-9: calc(9 * var(--size-base));
  --size-10: calc(10 * var(--size-base));
  --size-11: calc(11 * var(--size-base));
  --size-12: calc(12 * var(--size-base));
  --size-14: calc(14 * var(--size-base));
  --size-16: calc(16 * var(--size-base));
  --size-18: calc(18 * var(--size-base));
  --size-20: calc(20 * var(--size-base));
  --gradient-primary-alpha-1: linear-gradient( 90deg, var(--primary) 40%, transparent 87%);
  --gradient-primary-alpha-2: linear-gradient( 90deg, transparent 13%, var(--primary) 60%);
  --gradient-dark-alpha-1: linear-gradient( 90deg, var(--black) 40%, transparent 87%);
  --gradient-dark-alpha-2: linear-gradient( 90deg, transparent 13%, var(--black) 60%);
}

/* -- Begin Common Section Styles --*/
.global-section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .global-section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.global-section-bg-white {
  background-color: var(--white);
}

.global-section-bg-light {
  background-color: var(--light-bg);
}

.global-section-bg-primary {
  background-color: var(--primary);
}

.global-section-bg-secondary {
  background-color: var(--secondary);
}

.global-section-bg-tertiary {
  background-color: var(--tertiary-color);
}

.tertiary-bg-30 {
  background-color: rgba(var(--tertiary-rgb), 0.3);
}

.tertiary-bg-20 {
  background-color: rgba(var(--tertiary-rgb), 0.2);
}

.tertiary-bg-10 {
  background-color: rgba(var(--tertiary-rgb), 0.1);
}

.primary-bg-30 {
  background-color: rgba(var(--primary-rgb), 0.3);
}

.primary-bg-20 {
  background-color: rgba(var(--primary-rgb), 0.2);
}

.primary-bg-10 {
  background-color: rgba(var(--primary-rgb), 0.1);
}

.secondary-bg-30 {
  background-color: rgba(var(--secondary-rgb), 0.3);
}

.secondary-bg-20 {
  background-color: rgba(var(--secondary-rgb), 0.2);
}

.secondary-bg-10 {
  background-color: rgba(var(--secondary-rgb), 0.1);
}

.global-overlay {
  position: relative;
  z-index: 1;
}
.global-overlay::before {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
}
.global-overlay.black-overlay-90::before {
  background-color: var(--black-opacity-90);
}
.global-overlay.black-overlay-80::before {
  background-color: var(--black-opacity-80);
}
.global-overlay.black-overlay-70::before {
  background-color: var(--black-opacity-70);
}
.global-overlay.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.global-bg-img {
  background-repeat: no-repeat;
  background-size: cover;
}

.remove-padding-bottom {
  padding-bottom: 0px;
}

.remove-padding-top {
  padding-top: 0px;
}

.remove-padding-y {
  padding-top: 0px;
  padding-bottom: 0px;
}

.heading-1 {
  font-size: var(--size-12);
  font-weight: bold;
  margin: 0px;
  font-family: var(--heading-font-family);
  line-height: var(--size-12);
}
@media screen and (min-width: 1280px) {
  .heading-1 {
    font-size: var(--size-16);
    line-height: var(--size-18);
  }
}

.heading-2 {
  font-size: var(--size-10);
  font-weight: bold;
  margin: 0px;
  font-family: var(--heading-font-family);
  line-height: var(--size-12);
}
@media screen and (min-width: 1280px) {
  .heading-2 {
    font-size: var(--size-14);
    line-height: var(--size-16);
  }
}

.heading-3 {
  font-size: var(--size-10);
  line-height: var(--size-10);
}
@media screen and (min-width: 1280px) {
  .heading-3 {
    font-size: var(--size-12);
    line-height: var(--size-14);
  }
}

.heading-4 {
  font-size: var(--size-6);
  line-height: var(--size-6);
}
@media screen and (min-width: 1280px) {
  .heading-4 {
    font-size: var(--size-8);
    line-height: var(--size-8);
  }
}

.heading-5 {
  font-size: var(--size-6);
}

.heading-6 {
  font-size: var(--size-4);
}

.heading-badge {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 10px 20px;
  font-size: var(--size-4);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: var(--body-font-family);
}

.w-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1280px) {
  .w-container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .w-container {
    max-width: 1320px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* -- End Common Section Styles --*/
.fs-base {
  font-size: 4px;
}

.fs-xxs {
  font-size: 10px;
}

.fs-xs {
  font-size: 12px;
}

.fs-sm {
  font-size: 14px;
}

.fs-sm1 {
  font-size: 15px;
}

.fs-md {
  font-size: 16px;
}

.fs-lg {
  font-size: 18px;
}

.fs-xl {
  font-size: 20px;
}

.fs-2xl {
  font-size: 24px;
}

.fs-3xl {
  font-size: 28px;
}

.fs-4xl {
  font-size: 32px;
}

.fs-5xl {
  font-size: 36px;
}

.fs-6xl {
  font-size: 48px;
}

.fs-7xl {
  font-size: 52px;
}

.fs-8xl {
  font-size: 56px;
}

.fs-9xl {
  font-size: 60px;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

@media (min-width: 0) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
  .d-xs-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
}
body {
  padding: 0px;
  margin: 0px;
  font-family: var(--body-font-family);
  line-height: 1.5;
}

.body-background {
  background-color: var(--body-bg-default);
}

*,
::after,
::before {
  box-sizing: border-box;
}

button, a {
  font-family: var(--body-font-family);
}

.form-control {
  display: block;
  width: 100%;
  border: 1px var(--border-c) solid;
  padding: 12px;
  font-family: var(--body-font-family);
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

@media (min-width: 576px) {
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .text-md-start {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-end {
    text-align: right !important;
  }
}
@media (min-width: 992px) {
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-start {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
}
.spildy-container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.spildy-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 576px) {
  .spildy-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .spildy-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .spildy-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .spildy-container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.flex-grow-1 {
  flex-grow: 1;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 0) {
  .col-1 {
    width: 8.3333333333%;
  }
  .col-2 {
    width: 16.6666666667%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.3333333333%;
  }
  .col-5 {
    width: 41.6666666667%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.3333333333%;
  }
  .col-8 {
    width: 66.6666666667%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.3333333333%;
  }
  .col-11 {
    width: 91.6666666667%;
  }
  .col-12 {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }
  .col-xl-2 {
    width: 16.6666666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.3333333333%;
  }
  .col-xl-5 {
    width: 41.6666666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.3333333333%;
  }
  .col-xl-8 {
    width: 66.6666666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.3333333333%;
  }
  .col-xl-11 {
    width: 91.6666666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}
.primary-background {
  background-color: var(--primary);
  color: white;
}

.primary-text {
  color: var(--primary);
}

.primary-border {
  border: 1px solid var(--primary);
}

.primary-hover-background {
  background-color: var(--primary-hover);
  color: white;
}

.primary-hover-text {
  color: var(--primary-hover);
}

.primary-hover-border {
  border: 1px solid var(--primary-hover);
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

@media (min-width: 576px) {
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
}
@media (min-width: 576px) {
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
}
@media (min-width: 576px) {
  .justify-content-sm-center {
    justify-content: center !important;
  }
}
@media (min-width: 576px) {
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 576px) {
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 576px) {
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-center {
    justify-content: center !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 992px) {
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
}
@media (min-width: 992px) {
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
}
@media (min-width: 992px) {
  .justify-content-lg-center {
    justify-content: center !important;
  }
}
@media (min-width: 992px) {
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 992px) {
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 992px) {
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 1200px) {
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
}
@media (min-width: 1200px) {
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
}
@media (min-width: 1200px) {
  .justify-content-xl-center {
    justify-content: center !important;
  }
}
@media (min-width: 1200px) {
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 1200px) {
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 1200px) {
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
}
.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

@media (min-width: 576px) {
  .align-items-sm-start {
    align-items: flex-start !important;
  }
}
@media (min-width: 576px) {
  .align-items-sm-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 576px) {
  .align-items-sm-center {
    align-items: center !important;
  }
}
@media (min-width: 576px) {
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
}
@media (min-width: 576px) {
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 768px) {
  .align-items-md-start {
    align-items: flex-start !important;
  }
}
@media (min-width: 768px) {
  .align-items-md-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 768px) {
  .align-items-md-center {
    align-items: center !important;
  }
}
@media (min-width: 768px) {
  .align-items-md-baseline {
    align-items: baseline !important;
  }
}
@media (min-width: 768px) {
  .align-items-md-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 992px) {
  .align-items-lg-start {
    align-items: flex-start !important;
  }
}
@media (min-width: 992px) {
  .align-items-lg-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 992px) {
  .align-items-lg-center {
    align-items: center !important;
  }
}
@media (min-width: 992px) {
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
}
@media (min-width: 992px) {
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 1200px) {
  .align-items-xl-start {
    align-items: flex-start !important;
  }
}
@media (min-width: 1200px) {
  .align-items-xl-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 1200px) {
  .align-items-xl-center {
    align-items: center !important;
  }
}
@media (min-width: 1200px) {
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
}
@media (min-width: 1200px) {
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

@media (min-width: 0) {
  .m-xs-0 {
    margin: 0 !important;
  }
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .me-xs-0 {
    margin-right: 0 !important;
  }
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }
  .ms-xs-0 {
    margin-left: 0 !important;
  }
  .mx-xs-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-xs-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  .mt-xs-1 {
    margin-top: 0.25rem !important;
  }
  .me-xs-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-xs-1 {
    margin-left: 0.25rem !important;
  }
  .mx-xs-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-xs-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  .mt-xs-2 {
    margin-top: 0.5rem !important;
  }
  .me-xs-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-xs-2 {
    margin-left: 0.5rem !important;
  }
  .mx-xs-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-xs-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-xs-3 {
    margin: 1rem !important;
  }
  .mt-xs-3 {
    margin-top: 1rem !important;
  }
  .me-xs-3 {
    margin-right: 1rem !important;
  }
  .mb-xs-3 {
    margin-bottom: 1rem !important;
  }
  .ms-xs-3 {
    margin-left: 1rem !important;
  }
  .mx-xs-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-xs-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  .mt-xs-4 {
    margin-top: 1.5rem !important;
  }
  .me-xs-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-xs-4 {
    margin-left: 1.5rem !important;
  }
  .mx-xs-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-xs-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-xs-5 {
    margin: 3rem !important;
  }
  .mt-xs-5 {
    margin-top: 3rem !important;
  }
  .me-xs-5 {
    margin-right: 3rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 3rem !important;
  }
  .ms-xs-5 {
    margin-left: 3rem !important;
  }
  .mx-xs-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-xs-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .mx-sm-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .mx-sm-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .mx-sm-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .mx-md-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .mx-md-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .mx-lg-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .mx-lg-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .mx-lg-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .mx-lg-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .mx-xl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .mx-xl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .mx-xl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .mx-xl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .mx-xl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .mx-xxl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .mx-xxl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .mx-xxl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 0) {
  .p-xs-0 {
    padding: 0 !important;
  }
  .pt-xs-0 {
    padding-top: 0 !important;
  }
  .pe-xs-0 {
    padding-right: 0 !important;
  }
  .pb-xs-0 {
    padding-bottom: 0 !important;
  }
  .ps-xs-0 {
    padding-left: 0 !important;
  }
  .px-xs-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-xs-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  .pt-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pe-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-xs-1 {
    padding-left: 0.25rem !important;
  }
  .px-xs-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-xs-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  .pt-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pe-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-xs-2 {
    padding-left: 0.5rem !important;
  }
  .px-xs-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-xs-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .p-xs-3 {
    padding: 1rem !important;
  }
  .pt-xs-3 {
    padding-top: 1rem !important;
  }
  .pe-xs-3 {
    padding-right: 1rem !important;
  }
  .pb-xs-3 {
    padding-bottom: 1rem !important;
  }
  .ps-xs-3 {
    padding-left: 1rem !important;
  }
  .px-xs-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-xs-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  .pt-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pe-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-xs-4 {
    padding-left: 1.5rem !important;
  }
  .px-xs-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-xs-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .p-xs-5 {
    padding: 3rem !important;
  }
  .pt-xs-5 {
    padding-top: 3rem !important;
  }
  .pe-xs-5 {
    padding-right: 3rem !important;
  }
  .pb-xs-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xs-5 {
    padding-left: 3rem !important;
  }
  .px-xs-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-xs-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 576px) {
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .px-sm-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .px-sm-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .px-sm-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .px-md-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .px-md-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 992px) {
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .px-lg-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .px-lg-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .px-lg-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .px-xl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .px-xl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .px-xl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .px-xl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .px-xl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .px-xxl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .px-xxl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .px-xxl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .px-xxl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .px-xxl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .px-xxl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
.flex-grow-1 {
  flex-grow: 1;
}

.flex-lg-grow-0 {
  flex-grow: 0 !important;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

p {
  font-size: var(--body-fs);
  font-family: var(--heading-font-family);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-c);
  font-family: var(--heading-font-family);
}

img, svg {
  max-width: 100%;
  max-height: 100%;
}

ul li {
  font-family: var(--body-font-family);
}
ul li a {
  font-family: var(--body-font-family);
}

table {
  width: 100%;
}
table th {
  color: var(--heading-c);
}
table th, table td {
  font-family: var(--body-font-family);
  border: 1px var(--border-c) solid;
  padding: 10px;
}

.bold {
  font-weight: bold;
}

.swiper-wrapper {
  height: auto !important;
}

.g-overlay-80 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.g-overlay-90 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.position-relative {
  position: relative;
}

.g-section-padding-sm {
  padding: 15px 0px;
}

.powered-by-ai {
  background: #082233;
  background: url(https://spaidy.blob.core.windows.net/assets/images/powered-by-ai.png) center no-repeat, linear-gradient(120deg, #35B425 0%, #082233 100%);
  color: #FFFFFF;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  font-size: 16px;
  line-height: 18px;
  font-family: var(--body-font-family);
}
@media screen and (max-width: 1024px) {
  .powered-by-ai {
    font-size: 14px;
  }
}
.powered-by-ai a {
  color: #35B425;
}
.powered-by-ai a:hover {
  text-decoration: underline;
}

.horizontal-child-container {
  display: block;
  flex-wrap: wrap;
}
.horizontal-child-container.container-main {
  display: block;
  flex-wrap: nowrap;
  overflow: auto;
}
@media screen and (min-width: 1024px) {
  .horizontal-child-container {
    display: flex !important;
  }
}

.horizontal-child {
  margin: 20px 5px 5px 5px;
  justify-content: center;
  min-width: 100%;
}
@media screen and (min-width: 1024px) {
  .horizontal-child {
    min-width: 725px;
  }
}

.spaidy-visibility {
  visibility: visible !important;
  opacity: 1 !important;
}

.spaidy-dropdown {
  position: relative;
  display: inline-block;
}
.spaidy-dropdown .spaidy-dropdown-button {
  background: var(--primary);
  color: var(--text-primary);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: var(--size-1);
  display: inline-block;
  position: relative;
  font-size: var(--size-4);
  height: 46px;
}
.spaidy-dropdown .spaidy-dropdown-button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-left: 8px;
  position: relative;
  top: -2.5px;
}
.spaidy-dropdown .spaidy-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-c);
  display: none;
  min-width: 200px;
  box-shadow: 2px 2px 5px var(--black-opacity-30);
  border-radius: var(--size-1);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  list-style: none;
  padding: 0;
}
.spaidy-dropdown .spaidy-dropdown-menu .spaidy-dropdown-menu-item {
  border-bottom: 1px solid var(--border-c);
}
.spaidy-dropdown .spaidy-dropdown-menu .spaidy-dropdown-menu-item:last-child {
  border-bottom: none;
}
.spaidy-dropdown .spaidy-dropdown-menu .spaidy-dropdown-menu-item .anchor-menu-item {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--body-tc);
}
.spaidy-dropdown .spaidy-dropdown-menu .spaidy-dropdown-menu-item .anchor-menu-item:hover {
  background-color: var(--light-bg);
}

.spaidy-dropdown.is-open .spaidy-dropdown-button::after {
  transform: rotate(135deg);
  top: 0px;
}

.spaidy-dropdown.is-open .spaidy-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.spaidy-submenu-parent {
  position: relative;
  cursor: pointer;
}
.spaidy-submenu-parent .spaidy-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  border: 1px solid var(--border-c);
  min-width: 180px;
  display: none;
  box-shadow: 2px 2px 5px var(--black-opacity-30);
  border-radius: var(--size-1);
  list-style: none;
  padding: 0;
  z-index: 1000;
}
.spaidy-submenu-parent .spaidy-submenu .is-open {
  display: block;
}
.spaidy-submenu-parent .spaidy-submenu .spaidy-submenu-item {
  padding: 0px;
  border-bottom: 1px solid var(--border-c);
}
.spaidy-submenu-parent .spaidy-submenu .spaidy-submenu-item:last-child {
  border-bottom: none;
}
.spaidy-submenu-parent .spaidy-submenu-parent > .submenu-anchor {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--body-tc);
}

.spaidy-dropdown.is-open .spaidy-mega-menu {
  display: flex;
  transform: translateY(0);
}

.spaidy-mega-dropdown {
  position: relative;
}

.spaidy-mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 80%;
  background: var(--white);
  border: 1px solid var(--border-c);
  box-shadow: 2px 2px 5px var(--black-opacity-30);
  border-radius: 5px;
  padding: 20px;
  z-index: 1000;
  gap: 20px;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.spaidy-mega-menu .mega-category {
  display: block;
}
.spaidy-mega-menu .cat-name {
  font-size: var(--size-4);
  color: var(--heading-c);
  font-weight: 600;
  margin: 0 0 10px 0;
}
.spaidy-mega-menu .anchor-menu-item {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--body-tc);
  font-weight: 500;
}
.spaidy-mega-menu .anchor-menu-item:hover {
  background-color: var(--light-bg);
}

.spaidy-mega-menu.active {
  display: grid;
  transform: translateY(0);
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 991px) {
  .spaidy-mega-menu.active {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .spaidy-mega-menu.active {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 450px) {
  .spaidy-mega-menu.active {
    grid-template-columns: 1fr;
  }
}

.spaidy-nav {
  position: relative;
  background: var(--white);
  padding: 10px;
  display: flex;
  gap: 10px;
}

[data-toggle=mega-menu] {
  position: relative;
}
[data-toggle=mega-menu]::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-left: 8px;
  top: -2.5px;
}

[data-toggle=mega-menu].rotated::after {
  transform: rotate(135deg);
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}/*# sourceMappingURL=common.css.map */

/*sections css*/


 .header-v1 {
  background-color: var(--white);
  display: flex;
  align-items: stretch;
  min-height: 80px;
  padding: 20px 0px;
}
.header-v1 .logo {
  max-height: 40px;
  width: auto;
  min-width: 45px;
}
.header-v1 .logo img,
.header-v1 .logo svg {
  max-width: 100%;
  max-height: 100%;
}
.header-v1 .logo .logo-img {
  width: auto;
  height: 100%;
  max-height: 45px;
}
.header-v1 .menus-list-v1 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header-v1 .menus-list-v1 {
    display: block;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    padding: 15px;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 6;
  }
  .header-v1 .menus-list-v1.show-v1 {
    transform: translateX(0);
  }
}
.header-v1 .menus-list-v1 .mobile-menu-close-icon-v1 {
  display: none;
  border: 1px var(--border-c) solid;
  margin: 0px 0px 0px auto;
  justify-content: end;
  position: sticky;
  top: 0px;
  background-color: var(--white);
  border-radius: var(--size-8);
  padding: var(--size-2);
  cursor: pointer;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .header-v1 .menus-list-v1 .mobile-menu-close-icon-v1 {
    display: flex;
  }
}
.header-v1 .menus-list-v1 .menu-ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  .header-v1 .menus-list-v1 .menu-ul {
    display: block;
    flex-direction: column;
  }
}
.header-v1 .menus-list-v1 .menu-item {
  padding: 0.15rem 0;
  margin: 0 3px;
}
@media screen and (max-width: 1024px) {
  .header-v1 .menus-list-v1 .menu-item {
    margin: 0px 0px 5px 0px;
  }
}
.header-v1 .menus-list-v1 .menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  color: var(--body-tc);
}
.header-v1 .menus-list-v1 .menu-item .menu-link:hover, .header-v1 .menus-list-v1 .menu-item .menu-link.active {
  transition: color 0.2s ease;
  background-color: var(--header-menu-active);
}
.header-v1 .menus-list-v1 .menu-item .menu-link:hover .menu-title, .header-v1 .menus-list-v1 .menu-item .menu-link.active .menu-title {
  color: var(--white);
}
.header-v1 .menus-list-v1 .menu-item .menu-link .menu-title {
  color: var(--body-tc);
  font-family: var(--body-font-family);
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-v1 .hamburger-wrapper-v1 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-v1 .hamburger-wrapper-v1 {
    background: var(--light-bg);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
  }
  .header-v1 .hamburger-wrapper-v1:hover {
    background: var(--grey-100);
  }
  .header-v1 .hamburger-wrapper-v1 svg {
    fill: var(--body-tc);
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}

.header-v2 {
  background-color: var(--white);
  display: flex;
  align-items: stretch;
  min-height: 80px;
  padding: 20px 0px;
}
.header-v2 .logo {
  max-height: 40px;
  min-width: 45px;
}
@media only screen and (max-width: 1024px) {
  .header-v2 .logo {
    display: flex;
  }
}
.header-v2 .logo .logo-link {
  text-decoration: none;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .header-v2 .logo .logo-link {
    margin-left: 15px;
  }
}
.header-v2 .logo .logo-img {
  width: auto;
  height: 100%;
  max-height: 45px;
}
.header-v2 .logo img,
.header-v2 .logo svg {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1024px) {
  .header-v2 .menus-list-v2 {
    display: block;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    padding: 15px;
    z-index: 100;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 6;
  }
  .header-v2 .menus-list-v2.show-v2 {
    transform: translateX(0);
  }
}
.header-v2 .menus-list-v2 .mobile-menu-close-icon-v2 {
  display: none;
  border: 1px var(--border-c) solid;
  margin: 0px 0px 0px auto;
  justify-content: end;
  position: sticky;
  top: 0px;
  background-color: var(--white);
  border-radius: var(--size-8);
  padding: var(--size-2);
  cursor: pointer;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .header-v2 .menus-list-v2 .mobile-menu-close-icon-v2 {
    display: flex;
  }
}
.header-v2 .menus-list-v2 .menu-ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .header-v2 .menus-list-v2 .menu-ul {
    display: block;
    flex-direction: column;
  }
}
.header-v2 .menus-list-v2 .menu-item {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0px;
  margin: 0px;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  .header-v2 .menus-list-v2 .menu-item {
    display: block;
  }
}
.header-v2 .menus-list-v2 .menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  flex: 0 0 100%;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .header-v2 .menus-list-v2 .menu-item .menu-link {
    padding: 10px 0px;
  }
}
.header-v2 .menus-list-v2 .menu-item .menu-link:hover, .header-v2 .menus-list-v2 .menu-item .menu-link.active {
  transition: color 0.2s ease;
  color: var(--header-menu-active);
  text-decoration: underline;
}
.header-v2 .menus-list-v2 .menu-item .menu-link:hover .menu-title, .header-v2 .menus-list-v2 .menu-item .menu-link.active .menu-title {
  color: var(--header-menu-active);
}
.header-v2 .menus-list-v2 .menu-item .menu-link .menu-title {
  color: var(--body-tc);
  font-family: var(--body-font-family);
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-v2 .hamburger-wrapper-v2 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-v2 .hamburger-wrapper-v2 {
    background: var(--light-bg);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
  }
  .header-v2 .hamburger-wrapper-v2:hover {
    background: var(--grey-100);
  }
  .header-v2 .hamburger-wrapper-v2 svg {
    fill: var(--body-tc);
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}
.header-v2 .v2-button {
  height: 40px;
  font-size: 16px;
  border-radius: 4px;
  display: flex;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
  align-items: center;
  line-height: normal;
  justify-content: center;
}
.header-v2 .v2-button.primary {
  background-color: var(--header-menu-active);
  border: 1px solid var(--header-menu-active);
  color: var(--white);
  font-family: var(--body-font-family);
}
.header-v2 .v2-button.primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border: 1px solid var(--primary-hover);
}

.header-v3 {
  background-color: var(--white);
  display: flex;
  align-items: stretch;
  min-height: 80px;
  padding: 20px 0px;
}
.header-v3 .logo {
  min-width: 45px;
}
@media only screen and (max-width: 1024px) {
  .header-v3 .logo {
    display: flex;
    max-height: 40px;
  }
}
.header-v3 .logo .logo-link {
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .header-v3 .logo .logo-link {
    margin-left: 15px;
  }
}
.header-v3 .logo .logo-img {
  width: auto;
  height: 100%;
  max-height: 45px;
}
.header-v3 .logo img,
.header-v3 .logo svg {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1024px) {
  .header-v3 .menus-list-v3 {
    display: block;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    padding: 15px;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 6;
  }
  .header-v3 .menus-list-v3.show-v3 {
    transform: translateX(0);
  }
}
.header-v3 .menus-list-v3 .mobile-menu-close-icon-v3 {
  display: none;
  border: 1px var(--border-c) solid;
  margin: 0px 0px 0px auto;
  justify-content: end;
  position: sticky;
  top: 0px;
  background-color: var(--white);
  border-radius: var(--size-8);
  padding: var(--size-2);
  cursor: pointer;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .header-v3 .menus-list-v3 .mobile-menu-close-icon-v3 {
    display: flex;
  }
}
.header-v3 .menus-list-v3 .menu-ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .header-v3 .menus-list-v3 .menu-ul {
    display: block;
    flex-direction: column;
  }
}
.header-v3 .menus-list-v3 .menu-item {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0px;
  margin: 0px;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  .header-v3 .menus-list-v3 .menu-item {
    display: block;
  }
}
.header-v3 .menus-list-v3 .menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  flex: 0 0 100%;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .header-v3 .menus-list-v3 .menu-item .menu-link {
    padding: 10px 0px;
  }
}
.header-v3 .menus-list-v3 .menu-item .menu-link:hover, .header-v3 .menus-list-v3 .menu-item .menu-link.active {
  transition: color 0.2s ease;
  color: var(--header-menu-active);
  text-decoration: underline;
}
.header-v3 .menus-list-v3 .menu-item .menu-link:hover .menu-title, .header-v3 .menus-list-v3 .menu-item .menu-link.active .menu-title {
  color: var(--header-menu-active);
  font-family: var(--body-font-family);
}
.header-v3 .menus-list-v3 .menu-item .menu-link .menu-title {
  color: var(--body-tc);
  font-family: var(--body-font-family);
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-v3 .hamburger-wrapper-v3 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-v3 .hamburger-wrapper-v3 {
    background: var(--light-bg);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
  }
  .header-v3 .hamburger-wrapper-v3:hover {
    background: var(--grey-100);
  }
  .header-v3 .hamburger-wrapper-v3 svg {
    fill: var(--body-tc);
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}
.header-v3 .v3-button {
  height: var(--size-10);
  width: var(--size-10);
  font-size: var(--size-4);
  border-radius: var(--size-8);
  display: inline-flex;
  padding: 0 var(--size-2);
  text-decoration: none;
  line-height: 0;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-v3 .v3-button img,
.header-v3 .v3-button svg {
  max-width: 20px;
  max-height: 20px;
}
.header-v3 .v3-button.secondary {
  background-color: var(--body-tc);
  color: var(--white);
}
.header-v3 .v3-button.secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.header-v4 .header-top-border-box {
  background: var(--primary);
  height: 25px;
  width: 100%;
}
.header-v4 .header-top-border-box .svg-wrapper {
  display: flex;
  align-items: flex-end;
}
.header-v4 .header-top-border-box .svg-wrapper .svg-repeat-bg {
  margin-top: 20px;
  width: 100%;
  height: 6px;
  background-size: contain;
  background-repeat: repeat-x;
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/header-v4-bg-repeat-border.svg);
}
.header-v4 .header-inner-box {
  position: relative;
  width: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .header-v4 .header-inner-box {
    width: 100%;
    display: block;
  }
}
.header-v4 .header-inner-box .logo {
  max-height: 45px;
  min-width: 70px;
}
.header-v4 .header-inner-box .logo .logo-link {
  text-decoration: none;
  display: inline-block;
}
.header-v4 .header-inner-box .logo .logo-img {
  width: auto;
  max-height: 45px;
}
@media screen and (max-width: 1024px) {
  .header-v4 .header-inner-box .logo .logo-img {
    margin-top: 5px;
  }
}
.header-v4 .header-inner-box .logo img,
.header-v4 .header-inner-box .logo svg {
  max-width: 100%;
  max-height: 100%;
}
.header-v4 .header-inner-box .v4-button {
  height: 40px;
  font-size: var(--size-4);
  display: flex;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
  align-items: center;
  line-height: normal;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header-v4 .header-inner-box .v4-button {
    margin-top: 20px;
  }
}
.header-v4 .header-inner-box .v4-button.primary {
  background-color: var(--header-menu-active);
  border: 1px solid var(--header-menu-active);
  color: var(--white);
  font-family: var(--body-font-family);
}
.header-v4 .header-inner-box .v4-button.primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border: 1px solid var(--primary-hover);
}
.header-v4 .header-inner-box .menu-toggle {
  position: absolute;
  right: 0rem;
  top: 42px;
  transform: translate(0, -50%);
  height: 24px;
  width: 24px;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .header-v4 .header-inner-box .menu-toggle {
    display: none;
  }
}
.header-v4 .header-inner-box .menu-toggle:hover {
  color: var(--text-primary);
}
.header-v4 .header-inner-box .menu-toggle .menu-toggle-bar {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 9px;
  width: 58%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--text-primary);
  transition: all 0.4s ease;
}
.header-v4 .header-inner-box .menu-toggle .menu-toggle-bar--top {
  transform: translate(0, -8px);
}
.header-v4 .header-inner-box .menu-toggle .menu-toggle-bar--middle {
  opacity: 1;
}
.header-v4 .header-inner-box .menu-toggle .menu-toggle-bar--bottom {
  transform: translate(0, 8px);
}
.header-v4 .header-inner-box .menu-toggle.nav-open-v4 .menu-toggle-bar--top {
  transform: translate(0, 0) rotate(45deg);
}
.header-v4 .header-inner-box .menu-toggle.nav-open-v4 .menu-toggle-bar--middle {
  opacity: 0;
}
.header-v4 .header-inner-box .menu-toggle.nav-open-v4 .menu-toggle-bar--bottom {
  transform: translate(0, 0) rotate(-45deg);
}
.header-v4 .header-inner-box .navbar-v4 {
  background: var(--white);
  position: absolute;
  float: none;
  max-height: 0;
  opacity: 0;
  top: 100%;
  transition: max-height 0.4s ease;
  transform: translateY(0px) translateX(0px);
}
@media only screen and (min-width: 1024px) {
  .header-v4 .header-inner-box .navbar-v4 {
    display: block;
    float: right;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .header-v4 .header-inner-box .navbar-v4 {
    overflow: hidden;
  }
}
.header-v4 .header-inner-box .navbar-v4.expand-v4 {
  z-index: 5;
  width: 100%;
  padding: 20px;
  max-height: calc(100vh - 135px);
  opacity: 1;
  visibility: visible;
  transition: max-height 0.4s ease;
}
.header-v4 .header-inner-box .navbar-v4 .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (min-width: 1024px) {
  .header-v4 .header-inner-box .navbar-v4 .menu {
    margin: 0px auto;
  }
}
.header-v4 .header-inner-box .navbar-v4 .menu li {
  list-style-type: none;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .header-v4 .header-inner-box .navbar-v4 .menu li {
    display: inline-block;
    text-align: center;
  }
}
.header-v4 .header-inner-box .navbar-v4 .menu li .menu-link {
  display: block;
  text-decoration: none;
  color: var(--secondary);
  padding: 10px 0px;
  transition: all 0.2s ease;
  font-weight: 600;
}
.header-v4 .header-inner-box .navbar-v4 .menu li .menu-link.active {
  color: var(--primary);
  font-weight: bold;
}
.header-v4 .header-inner-box .navbar-v4 .menu li .menu-link:hover {
  color: var(--primary);
}
@media only screen and (min-width: 1024px) {
  .header-v4 .header-inner-box .navbar-v4 .menu li .menu-link {
    padding: 10px 16px;
  }
}

.header-v5 {
  position: relative;
  width: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 10px 20px;
  border-radius: 40px;
  z-index: 4;
  position: relative;
  box-shadow: 1px 1px 14px var(--black-opacity-30);
}
@media screen and (max-width: 1024px) {
  .header-v5 {
    width: 100%;
    display: block;
    box-shadow: none;
    border: 1px solid var(--border-c);
    z-index: 4;
    position: relative;
  }
}
.header-v5 .logo {
  max-height: 45px;
  min-width: 70px;
}
.header-v5 .logo .logo-link {
  text-decoration: none;
  display: inline-block;
}
.header-v5 .logo .logo-img {
  width: auto;
  max-height: 45px;
}
@media screen and (max-width: 1024px) {
  .header-v5 .logo .logo-img {
    margin-top: 5px;
  }
}
.header-v5 .logo img,
.header-v5 .logo svg {
  max-width: 100%;
  max-height: 100%;
}
.header-v5 .v5-button {
  height: 40px;
  font-size: var(--size-4);
  display: flex;
  padding: 4px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
  align-items: center;
  line-height: normal;
  justify-content: center;
  border-radius: 24px;
}
@media screen and (max-width: 1024px) {
  .header-v5 .v5-button {
    margin: 0px 20px 20px 20px;
  }
}
.header-v5 .v5-button.primary {
  background-color: var(--header-menu-active);
  border: 1px solid var(--header-menu-active);
  color: var(--white);
  font-family: var(--body-font-family);
}
.header-v5 .v5-button.primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border: 1px solid var(--primary-hover);
}
.header-v5 .menu-toggle {
  position: absolute;
  right: 20px;
  top: 42px;
  transform: translate(0, -50%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .header-v5 .menu-toggle {
    display: none;
  }
}
.header-v5 .menu-toggle:hover {
  color: var(--text-primary);
}
.header-v5 .menu-toggle .menu-toggle-bar {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 9px;
  width: 58%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--primary);
  transition: all 0.4s ease;
}
.header-v5 .menu-toggle .menu-toggle-bar--top {
  transform: translate(0, -8px);
}
.header-v5 .menu-toggle .menu-toggle-bar--middle {
  opacity: 1;
}
.header-v5 .menu-toggle .menu-toggle-bar--bottom {
  transform: translate(0, 8px);
}
.header-v5 .menu-toggle.nav-open-v5 .menu-toggle-bar--top {
  transform: translate(0, 0) rotate(45deg);
}
.header-v5 .menu-toggle.nav-open-v5 .menu-toggle-bar--middle {
  opacity: 0;
}
.header-v5 .menu-toggle.nav-open-v5 .menu-toggle-bar--bottom {
  transform: translate(0, 0) rotate(-45deg);
}
.header-v5 .navbar-v5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .header-v5 .navbar-v5 {
    float: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in;
    transform: translateY(0px) translateX(0px);
    position: relative;
    z-index: 6;
    position: absolute;
    width: 100%;
    background: var(--white);
    left: 0px;
    top: 88px;
    display: block;
    border-radius: 8px;
  }
}
.header-v5 .navbar-v5.expand-v5 {
  max-height: calc(100vh - 100px);
  border: 1px solid var(--border-c);
}
.header-v5 .navbar-v5 .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (min-width: 1024px) {
  .header-v5 .navbar-v5 .menu {
    margin: 0px auto;
  }
}
.header-v5 .navbar-v5 .menu li {
  list-style-type: none;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .header-v5 .navbar-v5 .menu li {
    display: inline-block;
    text-align: center;
  }
}
.header-v5 .navbar-v5 .menu li .menu-link {
  display: block;
  text-decoration: none;
  color: var(--heading-c);
  padding: 10px 20px;
  transition: all 0.2s ease;
  font-weight: 600;
}
.header-v5 .navbar-v5 .menu li .menu-link.active {
  color: var(--primary);
  font-weight: bold;
}
.header-v5 .navbar-v5 .menu li .menu-link:hover {
  color: var(--primary);
}
@media only screen and (min-width: 1024px) {
  .header-v5 .navbar-v5 .menu li .menu-link {
    padding: 10px 16px;
  }
}

.header-v6 {
  position: relative;
  width: 100%;
  background-color: var(--white);
  padding: 15px 0;
  display: block;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header-v6 {
    width: 100%;
    display: block;
  }
}
.header-v6 .logo {
  max-height: 45px;
  min-width: 70px;
  margin: 0px auto 10px auto;
}
@media screen and (max-width: 1024px) {
  .header-v6 .logo {
    margin: 0px auto 0px auto;
    text-align: left;
  }
}
.header-v6 .logo .logo-link {
  text-decoration: none;
  display: inline-block;
}
.header-v6 .logo .logo-img {
  width: auto;
  max-height: 45px;
}
@media screen and (max-width: 1024px) {
  .header-v6 .logo .logo-img {
    margin-top: 5px;
  }
}
.header-v6 .logo img,
.header-v6 .logo svg {
  max-width: 100%;
  max-height: 100%;
}
.header-v6 .v6-button {
  height: 40px;
  font-size: var(--size-4);
  display: flex;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
  align-items: center;
  line-height: normal;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header-v6 .v6-button {
    margin-top: 20px;
  }
}
.header-v6 .v6-button.primary {
  background-color: var(--header-menu-active);
  border: 1px solid var(--header-menu-active);
  color: var(--white);
  font-family: var(--body-font-family);
}
.header-v6 .v6-button.primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border: 1px solid var(--primary-hover);
}
.header-v6 .menu-toggle {
  position: absolute;
  right: 0rem;
  top: 36px;
  transform: translate(0, -50%);
  height: 24px;
  width: 24px;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .header-v6 .menu-toggle {
    display: none;
  }
}
.header-v6 .menu-toggle:hover {
  color: var(--text-primary);
}
.header-v6 .menu-toggle .menu-toggle-bar {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 9px;
  width: 58%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--text-primary);
  transition: all 0.4s ease;
}
.header-v6 .menu-toggle .menu-toggle-bar--top {
  transform: translate(0, -8px);
}
.header-v6 .menu-toggle .menu-toggle-bar--middle {
  opacity: 1;
}
.header-v6 .menu-toggle .menu-toggle-bar--bottom {
  transform: translate(0, 8px);
}
.header-v6 .menu-toggle.nav-open-v6 .menu-toggle-bar--top {
  transform: translate(0, 0) rotate(45deg);
}
.header-v6 .menu-toggle.nav-open-v6 .menu-toggle-bar--middle {
  opacity: 0;
}
.header-v6 .menu-toggle.nav-open-v6 .menu-toggle-bar--bottom {
  transform: translate(0, 0) rotate(-45deg);
}
.header-v6 .navbar-v6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .header-v6 .navbar-v6 {
    overflow: hidden;
    transition: max-height 0.4s ease-in;
    position: absolute;
    right: 0px;
    width: 100%;
    top: 88px;
    background: var(--primary);
    max-width: 250px;
    border-radius: 4px;
    max-height: 0px;
  }
}
.header-v6 .navbar-v6.expand-v6 {
  max-height: calc(100vh - 100px);
}
.header-v6 .navbar-v6 .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .header-v6 .navbar-v6 .menu {
    padding: 10px 0px;
    margin: 0px auto;
    border-top: 1px solid var(--heading-c);
    border-bottom: 1px solid var(--heading-c);
    width: 100%;
    display: block;
    text-align: center;
  }
}
.header-v6 .navbar-v6 .menu li {
  list-style-type: none;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .header-v6 .navbar-v6 .menu li {
    display: inline-block;
    text-align: center;
  }
}
.header-v6 .navbar-v6 .menu li .menu-link {
  display: block;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.2s ease;
}
.header-v6 .navbar-v6 .menu li .menu-link .menu-title {
  color: var(--primary);
  font-family: var(--heading-font-family);
}
@media screen and (max-width: 1024px) {
  .header-v6 .navbar-v6 .menu li .menu-link .menu-title {
    color: var(--text-primary);
  }
}
.header-v6 .navbar-v6 .menu li .menu-link.active {
  color: var(--primary);
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .header-v6 .navbar-v6 .menu li .menu-link.active {
    color: var(--text-primary);
    opacity: 0.8;
  }
}
.header-v6 .navbar-v6 .menu li .menu-link:hover {
  color: var(--primary-hover);
}
@media screen and (max-width: 1024px) {
  .header-v6 .navbar-v6 .menu li .menu-link:hover {
    color: var(--text-primary);
    opacity: 0.8;
  }
}
@media only screen and (min-width: 1024px) {
  .header-v6 .navbar-v6 .menu li .menu-link {
    padding: 10px 16px;
  }
}

.header-v7 {
  background-color: var(--white);
  display: flex;
  align-items: stretch;
  min-height: 80px;
  padding: 20px 0px;
}
.header-v7 .logo {
  max-height: 40px;
  width: auto;
  min-width: 45px;
  display: inline-block;
}
.header-v7 .logo img,
.header-v7 .logo svg {
  max-width: 100%;
  max-height: 100%;
}
.header-v7 .logo .logo-img {
  width: auto;
  max-height: 45px;
}
.header-v7 .menus-list-v7 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header-v7 .menus-list-v7 {
    display: block;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    padding: 15px;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 60;
  }
  .header-v7 .menus-list-v7.show-v7 {
    transform: translateX(0);
  }
}
.header-v7 .menus-list-v7 .mobile-menu-close-icon-v7 {
  display: none;
  border: 1px var(--border-c) solid;
  margin: 0px 0px 0px auto;
  justify-content: end;
  position: sticky;
  top: 0px;
  background-color: var(--white);
  border-radius: var(--size-8);
  padding: var(--size-2);
  cursor: pointer;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .header-v7 .menus-list-v7 .mobile-menu-close-icon-v7 {
    display: flex;
  }
}
.header-v7 .menus-list-v7 .menu-ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  .header-v7 .menus-list-v7 .menu-ul {
    display: block;
    flex-direction: column;
  }
}
.header-v7 .menus-list-v7 .menu-item {
  padding: 0.15rem 0;
  margin: 0 3px;
}
@media screen and (max-width: 1024px) {
  .header-v7 .menus-list-v7 .menu-item {
    margin: 0px 0px 5px 0px;
  }
}
.header-v7 .menus-list-v7 .menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 24px;
  border: 2px solid var(--primary);
  color: var(--body-tc);
}
.header-v7 .menus-list-v7 .menu-item .menu-link:hover, .header-v7 .menus-list-v7 .menu-item .menu-link.active {
  transition: color 0.2s ease;
  background-color: var(--header-menu-active);
}
.header-v7 .menus-list-v7 .menu-item .menu-link:hover .menu-title, .header-v7 .menus-list-v7 .menu-item .menu-link.active .menu-title {
  color: var(--white);
}
.header-v7 .menus-list-v7 .menu-item .menu-link .menu-title {
  color: var(--primary);
  font-family: var(--body-font-family);
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .header-v7 .menus-list-v7 .menu-item .menu-link .menu-title {
    justify-content: center;
  }
}

.hamburger-wrapper-v7 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger-wrapper-v7 {
    background: var(--light-bg);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
  }
  .hamburger-wrapper-v7:hover {
    background: var(--grey-100);
  }
  .hamburger-wrapper-v7 svg {
    fill: var(--body-tc);
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}/*# sourceMappingURL=header.css.map */ /*Banner v1 starts */
.banner-v1 {
  font-family: var(--body-font-family);
  width: 100%;
}
.banner-v1 .swiper-pagination {
  bottom: 30px;
}
.banner-v1 .swiper-pagination-bullet:hover {
  background-color: var(-primary) !important;
  opacity: 0.8;
}
.banner-v1 .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}
.banner-v1 .banner-image {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 991px) {
  .banner-v1 .banner-image {
    height: 100%;
    min-height: 100vh;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) and (orientation: landscape) {
  .banner-v1 .banner-image {
    height: 100%;
    min-height: 100vh;
  }
}
.banner-v1 .banner-slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 120px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .banner-v1 .banner-slide-wrapper {
    padding: 60px 0px;
  }
}
.banner-v1 .banner-slide-wrapper .banner-v1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-gradient-overlay-section-1);
  z-index: 1;
}
.banner-v1 .banner-slide-wrapper .banner-content {
  color: var(--text-primary);
  width: 100%;
  z-index: 2;
  position: relative;
}
.banner-v1 .banner-slide-wrapper .banner-content .title {
  max-width: 800px;
  text-align: center;
  margin: auto;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: var(--size-18);
}
@media screen and (max-width: 1024px) {
  .banner-v1 .banner-slide-wrapper .banner-content .title {
    max-width: 80%;
    line-height: var(--size-14);
    line-height: var(--size-16);
  }
}
@media screen and (max-width: 767px) {
  .banner-v1 .banner-slide-wrapper .banner-content .title {
    max-width: 100%;
  }
}
.banner-v1 .banner-slide-wrapper .banner-content .description {
  font-family: var(--body-font-family);
  font-size: var(--size-5);
  text-align: center;
  margin: auto;
  max-width: 620px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .banner-v1 .banner-slide-wrapper .banner-content .description {
    max-width: 100%;
    font-size: var(--size-4);
  }
}
.banner-v1 .banner-slide-wrapper .banner-content .banner-button {
  font-family: var(--body-font-family);
  cursor: pointer;
  font-size: var(--size-4);
  padding: 12px 25px;
  min-height: 45px;
  color: var(--text-secondary);
  background-color: var(--secondary);
  border-radius: 35px;
  display: inline-block;
  text-decoration: none;
  border: 2px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .banner-v1 .banner-slide-wrapper .banner-content .banner-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.banner-v1 .banner-slide-wrapper .banner-content .banner-button:hover {
  background: var(--secondary-hover);
  border: 2px solid var(--secondary-hover);
}

/*Banner v1 ends */
/*Banner v2 starts */
.banner-v2 {
  font-family: var(--body-font-family);
  width: 100%;
  text-align: center;
  background-color: var(--primary);
  padding: 100px 0px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .banner-v2 {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .banner-v2 {
    min-height: auto;
  }
}
.banner-v2 .title {
  color: var(--text-primary);
  z-index: 3;
  background-color: var(--primary);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .banner-v2 .title {
    max-width: 80%;
    font-size: var(--size-12);
    line-height: var(--size-14);
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .banner-v2 .title {
    max-width: 100%;
    font-size: var(--size-10);
    line-height: var(--size-12);
  }
}
@media screen and (max-width: 470px) {
  .banner-v2 .title {
    max-width: 100%;
    font-size: var(--size-8);
    line-height: var(--size-10);
  }
}
.banner-v2 .title .slider-text {
  display: inline;
  color: var(--secondary);
  font-family: var(--alternative-heading-font-family);
}
.banner-v2 .description {
  font-family: var(--body-font-family);
  font-size: var(--size-5);
  text-align: center;
  margin: auto;
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--text-primary);
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner-v2 .description {
    max-width: 100%;
    font-size: var(--size-4);
  }
}
.banner-v2 .icon-container {
  position: absolute;
  height: 40px;
  width: 40px;
  opacity: 0.8;
  z-index: 1;
}
.banner-v2 .icon-container.icon1-svg {
  right: 25%;
  top: 18%;
}
.banner-v2 .icon-container.icon2-svg {
  bottom: 25%;
  left: 23%;
}
.banner-v2 .icon-container.icon3-svg {
  right: 11%;
  top: 31%;
}
.banner-v2 .icon-container.icon4-svg {
  left: 15%;
  bottom: 10%;
  transform: scale(1.2);
}
.banner-v2 .icon-container.icon5-svg {
  left: 70%;
  bottom: 10%;
}
.banner-v2 .icon-container.icon6-svg {
  left: 10%;
  top: 22%;
  transform: scale(1.5);
}
.banner-v2 .icon-container.icon7-svg {
  right: 10%;
  bottom: 19%;
  transform: scale(1.2);
}
.banner-v2 .banner-button {
  font-family: var(--body-font-family);
  cursor: pointer;
  color: var(--text-secondary);
  background-color: var(--secondary);
  font-size: var(--size-4);
  padding: 12px 25px;
  min-height: 45px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--secondary);
  transition: 0.2s all ease-in;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner-v2 .banner-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.banner-v2 .banner-button:hover {
  background: var(--secondary-hover);
  border: 2px solid var(--secondary-hover);
}
@keyframes animateWords {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
  200% {
    transform: translateY(-200%);
  }
}
.banner-v2 .scroll-container {
  height: 80px;
  overflow: hidden;
  display: block;
  /* for Firefox */
  /* for Chrome */
}
.banner-v2 .scroll-container .scroll-text {
  height: 100%;
  text-align: center;
  display: inline-block;
  color: var(--secondary);
  /* animation properties */
  transform: translateY(100%);
  animation: bv2-text-scroll 5s linear infinite;
}
.banner-v2 .scroll-container .scroll-text:hover {
  animation-play-state: paused;
}
.banner-v2 .scroll-container .animation-text {
  display: block;
}
@keyframes bv2-text-scroll {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}

/*Banner v2 ends */
/*Banner v3 starts */
.banner-v3 {
  font-family: var(--body-font-family);
  width: 100%;
  background: var(--primary);
  padding: 100px 0px;
  min-height: 600px;
}
@media screen and (max-width: 767px) {
  .banner-v3 {
    padding: 60px 0px;
  }
}
.banner-v3 .banner-content .title {
  line-height: var(--size-18);
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--text-primary);
}
@media screen and (max-width: 1024px) {
  .banner-v3 .banner-content .title {
    max-width: 80%;
    font-size: var(--size-10);
    line-height: var(--size-12);
  }
}
@media screen and (max-width: 767px) {
  .banner-v3 .banner-content .title {
    max-width: 100%;
    font-size: var(--size-8);
    line-height: var(--size-10);
  }
}
.banner-v3 .banner-content .description {
  font-family: var(--body-font-family);
  font-size: var(--size-5);
  margin-bottom: 10px;
  color: var(--text-primary);
}
@media screen and (max-width: 767px) {
  .banner-v3 .banner-content .description {
    max-width: 100%;
    font-size: var(--size-4);
  }
}
.banner-v3 .banner-content .primary-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-secondary);
  background-color: var(--secondary);
  border-radius: 35px;
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
.banner-v3 .banner-content .primary-button:before {
  content: "*";
  position: absolute;
  left: 15px;
  top: 10px;
}
.banner-v3 .banner-content .primary-button:after {
  content: "*";
  position: absolute;
  right: 15px;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .banner-v3 .banner-content .primary-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.banner-v3 .banner-content .primary-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}
.banner-v3 .hero-img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .banner-v3 .hero-img {
    margin-top: 30px;
  }
}
.banner-v3 .up-down-animation {
  animation: updown-animation 1s infinite alternate;
}
@keyframes updown-animation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*Banner v3 ends */
/*Banner v4 starts */
.banner-v4 {
  font-family: var(--body-font-family);
  width: 100%;
  background: var(--primary);
  padding: 100px 0px;
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 0;
  position: relative;
}
.banner-v4:before {
  position: absolute;
  z-index: 2;
  content: "";
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--background-gradient-overlay-section-4);
  pointer-events: none;
}
.banner-v4 .banner-content {
  position: relative;
  z-index: 4;
}
.banner-v4 .banner-content .title {
  line-height: var(--size-18);
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--text-primary);
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .banner-v4 .banner-content .title {
    max-width: 80%;
    font-size: var(--size-10);
    line-height: var(--size-12);
  }
}
@media screen and (max-width: 767px) {
  .banner-v4 .banner-content .title {
    max-width: 100%;
    font-size: var(--size-8);
    line-height: var(--size-10);
  }
}
.banner-v4 .banner-content .description {
  font-family: var(--body-font-family);
  font-size: var(--size-5);
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: normal;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .banner-v4 .banner-content .description {
    max-width: 100%;
    font-size: var(--size-4);
  }
}
.banner-v4 .banner-content .primary-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 15px 30px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--body-tc);
  background-color: var(--secondary);
  color: var(--text-secondary);
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: 0.3s all ease;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .banner-v4 .banner-content .primary-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.banner-v4 .banner-content .primary-button:hover {
  background-color: var(--secondary-hover);
  border: 2px solid var(--secondary-hover);
}

/*Banner v4 ends */
/*Banner v5 starts */
.banner-v5 {
  font-family: var(--body-font-family);
  width: 100%;
  background: var(--primary);
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/outlined-circle-bg.png);
  min-height: 600px;
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .banner-v5 {
    padding-bottom: 50px;
  }
}
.banner-v5 .banner-content {
  padding: 100px 0px;
}
@media screen and (max-width: 991px) {
  .banner-v5 .banner-content {
    padding: 50px 0px;
  }
}
.banner-v5 .banner-content .title {
  line-height: var(--size-18);
  margin-bottom: 20px;
  color: var(--text-primary);
}
@media screen and (max-width: 1024px) {
  .banner-v5 .banner-content .title {
    max-width: 80%;
    font-size: var(--size-10);
    line-height: var(--size-12);
  }
}
@media screen and (max-width: 767px) {
  .banner-v5 .banner-content .title {
    max-width: 100%;
    font-size: var(--size-8);
    line-height: var(--size-10);
  }
}
.banner-v5 .banner-content .description {
  font-family: var(--body-font-family);
  font-size: var(--size-5);
  margin-bottom: 20px;
  color: var(--text-primary);
}
@media screen and (max-width: 767px) {
  .banner-v5 .banner-content .description {
    max-width: 100%;
    font-size: var(--size-4);
  }
}
.banner-v5 .banner-content .primary-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--secondary);
  color: var(--text-secondary);
  border-radius: 35px;
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .banner-v5 .banner-content .primary-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.banner-v5 .banner-content .primary-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}
.banner-v5 .hero-img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .banner-v5 .hero-img {
    margin-bottom: 50px;
  }
}

/*Banner v5 ends */
.banner-v6 {
  font-family: var(--body-font-family);
  width: 100%;
  background: var(--primary);
  padding: 100px 0px;
  min-height: 600px;
}
.banner-v6 .banner-content .title {
  line-height: var(--size-18);
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--text-primary);
}
@media screen and (max-width: 1024px) {
  .banner-v6 .banner-content .title {
    max-width: 80%;
    font-size: var(--size-10);
    line-height: var(--size-12);
  }
}
@media screen and (max-width: 767px) {
  .banner-v6 .banner-content .title {
    max-width: 100%;
    font-size: var(--size-8);
    line-height: var(--size-10);
  }
}
.banner-v6 .banner-content .description {
  font-family: var(--body-font-family);
  font-size: var(--size-5);
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--text-primary);
}
@media screen and (max-width: 767px) {
  .banner-v6 .banner-content .description {
    max-width: 100%;
    font-size: var(--size-4);
  }
}
.banner-v6 .banner-content .primary-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  background-color: var(--secondary);
  border-radius: 35px;
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .banner-v6 .banner-content .primary-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.banner-v6 .banner-content .primary-button:hover {
  background: var(--secondary-hover);
  color: var(--text-secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}
.banner-v6 .position-relative {
  position: relative;
}
.banner-v6 .inner-images-wrapper1 {
  position: absolute;
  top: 68%;
  z-index: 3;
  left: 4%;
  max-width: 30%;
}
.banner-v6 .inner-images-wrapper1 img {
  background-color: var(--light-bg);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 10px solid var(--white);
}
.banner-v6 .inner-images-wrapper2 {
  position: absolute;
  top: 44%;
  z-index: 3;
  left: 0%;
  max-width: 19%;
}
.banner-v6 .inner-images-wrapper2 img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 10px solid var(--white);
  background-color: var(--light-bg);
}
.banner-v6 .bordered-circle {
  position: relative;
  z-index: 1;
  padding: 30px;
}
@media screen and (max-width: 1100px) {
  .banner-v6 .bordered-circle {
    margin: 30px;
  }
}
@media screen and (max-width: 575px) {
  .banner-v6 .bordered-circle {
    margin: 20px;
    padding: 20px;
  }
}
.banner-v6 .bordered-circle:before {
  content: "";
  border: 1.5px solid var(--tertiary-color);
  padding: 20px;
  border-radius: 100%;
  margin-left: 20px;
  position: absolute;
  top: 15px;
  left: 8px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .banner-v6 .bordered-circle:before {
    top: 12px;
    left: 0px;
  }
}
.banner-v6 .bordered-circle .outer-circle-wrapper {
  position: relative;
  z-index: 1;
}
.banner-v6 .bordered-circle .outer-circle-wrapper:before {
  content: "";
  background: var(--secondary);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 14px;
  top: 15px;
}
.banner-v6 .bordered-circle .outer-circle-wrapper .image-circle-wrapper {
  background: var(--tertiary-color);
  border-radius: 100%;
  margin: 10px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.banner-v6 .bordered-circle .outer-circle-wrapper .image-circle-wrapper .hero-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-v6 .up-down-animation {
  animation: updown-animation 1s infinite alternate;
}
@keyframes updown-animation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.banner-v14 {
  min-height: 60vh;
  padding: 60px 0px;
}
.banner-v14 .hero-btn {
  height: 46px;
  font-size: 16px;
  border-radius: 0px;
  display: flex;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  line-height: normal;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .banner-v14 .hero-btn {
    margin: auto;
  }
}
.banner-v14 .hero-btn.primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--text-primary);
  font-family: var(--body-font-family);
}
.banner-v14 .hero-btn.primary:hover {
  background-color: var(--primary-hover);
  border: 1px solid var(--primary-hover);
  color: var(--text-primary);
}
.banner-v14 .heading-3 {
  color: var(--heading-c);
  margin-bottom: 10px;
  margin-top: 30px;
  font-family: var(--heading-font-family);
}
@media screen and (max-width: 991px) {
  .banner-v14 .heading-3 {
    text-align: center;
  }
}
.banner-v14 .counter-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  word-break: break-all;
}
.banner-v14 .img-wrapper {
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 2%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1320px) {
  .banner-v14 .img-wrapper {
    transform: scale(0.85);
  }
}
.banner-v14 .img-wrapper:after {
  position: absolute;
  left: 35%;
  z-index: 1;
  content: "";
  min-width: 75%;
  aspect-ratio: 1/1;
  bottom: 5%;
  background-color: transparent;
  border-radius: 50%;
  border: 10px solid var(--tertiary-color);
}
.banner-v14 .img-wrapper .img1-wrapper {
  margin-top: 100px;
  z-index: 2;
  margin: 0px 15px 0px 15px;
  position: relative;
}
.banner-v14 .img-wrapper .img1-wrapper .svg-triangle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 20px auto;
  max-width: 63px;
  flex-direction: column;
}
.banner-v14 .img-wrapper .img1-wrapper .svg-triangle-wrapper .svg-traingle-svg path {
  fill: var(--primary);
}
.banner-v14 .img-wrapper .img1-wrapper .svg-triangle-wrapper .secondary {
  margin-top: -63px;
  transform: rotate(-45deg);
}
.banner-v14 .img-wrapper .img1-wrapper .svg-triangle-wrapper .secondary path {
  fill: var(--secondary);
}
.banner-v14 .img-wrapper .img1-wrapper .skeleton-wrapper {
  background-color: var(--secondary-hover);
  padding: 9px 16px;
  border-radius: 70px;
  max-width: 104px;
  position: absolute;
  width: 100%;
  right: -57px;
  bottom: 106px;
  z-index: 3;
}
.banner-v14 .img-wrapper .img1-wrapper .skeleton-wrapper .line1 {
  height: 3px;
  background-color: var(--white);
  border-radius: 20px;
  margin-bottom: 3px;
  max-width: 100%;
}
.banner-v14 .img-wrapper .img1-wrapper .skeleton-wrapper .line2 {
  height: 3px;
  background-color: var(--white);
  border-radius: 20px;
  max-width: 60%;
}
.banner-v14 .img-wrapper .img2-wrapper {
  z-index: 3;
  margin: 0px 0px 0px 10px;
  position: relative;
  z-index: 2;
}
.banner-v14 .img-wrapper .img2-wrapper:after {
  position: absolute;
  right: -13%;
  z-index: 1;
  content: "";
  min-width: 30%;
  aspect-ratio: 1/1;
  top: 7%;
  background-color: transparent;
  border-radius: 50%;
  border: 17px solid var(--secondary);
  animation: leftright 1s infinite alternate;
}
.banner-v14 .img-wrapper .hero-img {
  height: 480px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 230px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 991px) {
  .banner-v14 .img-wrapper .hero-img {
    height: 550px;
  }
}
@media screen and (max-width: 767px) {
  .banner-v14 .img-wrapper .hero-img {
    height: 350px;
  }
}
@keyframes clockwiseSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes antiClockwiseSpin {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.banner-v14 .clockwise-spin {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: clockwiseSpin;
  animation-timing-function: cubic-bezier(0, 0, 1, 1);
}
.banner-v14 .anti-clockwise-spin {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: antiClockwiseSpin;
  animation-timing-function: linear;
}
.banner-v14 .up-down-hero-icon {
  animation: updown 1s infinite alternate;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.banner-v14 .left-right-hero-icon {
  animation: leftright 1s infinite alternate;
}
@keyframes leftright {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10px);
  }
}

.banner-v15 {
  position: relative;
  min-height: 60vh;
  padding: 70px 0px;
  display: flex;
  align-items: center;
}
.banner-v15:after {
  content: " ";
  position: absolute;
  background-color: var(--secondary);
  right: 0px;
  top: 0px;
  width: 45%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .banner-v15:after {
    bottom: 0px;
    right: 0px;
    top: unset;
    width: 100%;
    height: 35%;
  }
}
.banner-v15 .arrow-pointer {
  min-width: 90px;
}
.banner-v15 .arrow-pointer svg {
  margin-left: 20px;
  width: 90px;
  height: 90px;
}
.banner-v15 .arrow-pointer svg path {
  fill: var(--heading-c);
}
.banner-v15 .hero-btn {
  height: 46px;
  font-size: 16px;
  border-radius: 0px;
  display: flex;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  line-height: normal;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .banner-v15 .hero-btn {
    margin: auto;
  }
}
.banner-v15 .hero-btn.primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--text-primary);
  font-family: var(--body-font-family);
}
.banner-v15 .hero-btn.primary:hover {
  background-color: transparent;
  background-color: var(--primary-hover);
}
.banner-v15 .hero-img {
  height: 100%;
  width: 100%;
  min-height: 450px;
  max-height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .banner-v15 .hero-img {
    margin-top: 40px;
  }
}
.banner-v15 .up-down-hero-icon {
  animation: updown 1s infinite alternate;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.banner-v15 .left-right-hero-icon {
  animation: leftright 1s infinite alternate;
}
@keyframes leftright {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10px);
  }
}

.banner-v16 {
  background-color: var(--white);
  padding: 40px;
  box-shadow: 1px 1px 26px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 575px) {
  .banner-v16 {
    padding: 0px;
    box-shadow: none;
  }
}
.banner-v16 .global-section-bg-secondary {
  border-radius: var(--size-5);
}
@media screen and (max-width: 575px) {
  .banner-v16 .global-section-bg-secondary {
    border-radius: 0;
  }
}
.banner-v16 .heading-1,
.banner-v16 .description {
  color: var(--text-secondary);
}
.banner-v16 .img-wrapper {
  position: relative;
  z-index: 1;
}
.banner-v16 .hero-btn {
  height: 46px;
  font-size: 16px;
  border-radius: 0px;
  display: flex;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 100px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  line-height: normal;
  justify-content: center;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .banner-v16 .hero-btn {
    margin: auto;
  }
}
.banner-v16 .hero-btn.primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--text-primary);
  font-family: var(--body-font-family);
}
.banner-v16 .hero-btn.primary:hover {
  background-color: var(--primary-hover);
}
.banner-v16 .hero-content {
  padding: 120px 60px 40px 60px;
}
@media screen and (max-width: 991px) {
  .banner-v16 .hero-content {
    padding: 60px 20px 60px 20px;
    max-width: 85%;
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 575px) {
  .banner-v16 .hero-content {
    max-width: 100%;
    padding: 40px 0px 40px 0px;
  }
}
.banner-v16 .hero-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 18px 0px 180px;
  z-index: 3;
  max-height: 520px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .banner-v16 .hero-img {
    border-radius: 0px 0px 0px 130px;
  }
}
.banner-v16 .hero-img:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black-opacity-30);
}
@media screen and (max-width: 991px) {
  .banner-v16 .hero-img {
    height: 350px;
  }
}
.banner-v16 .hero-scroll-down-svg {
  width: auto;
  height: 73px;
  margin: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .banner-v16 .hero-scroll-down-svg {
    height: 50px;
  }
}
.banner-v16 .svg-shape-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-v16 .svg-shape-wrapper .svg-star {
  width: 35px;
  margin-top: -50px;
  height: 50px;
}
@media screen and (max-width: 575px) {
  .banner-v16 .svg-shape-wrapper .svg-star {
    width: 22px;
    margin-top: -31px;
    height: 30px;
  }
}
.banner-v16 .svg-shape-wrapper .svg-star path {
  fill: var(--secondary);
}
.banner-v16 .up-down-hero-icon {
  animation: updown 1s infinite alternate;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.banner-v16 .down-up-hero-icon {
  animation: downup 1s infinite alternate;
}
@keyframes downup {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.banner-v16 .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  z-index: 3;
}
.banner-v16 .dot.dot-1-position {
  bottom: 10px;
  left: 43px;
}
.banner-v16 .dot.dot-2-position {
  bottom: 88px;
  left: 12px;
  width: 20px;
  height: 20px;
}
.banner-v16 .dot.dot-3-position {
  bottom: 72px;
  left: 59px;
  width: 8px;
  height: 8px;
}
.banner-v16 .dot.dot-4-position {
  bottom: 0px;
  left: 75%;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 991px) {
  .banner-v16 .flex-mob-reverse {
    flex-direction: column-reverse;
  }
}
.banner-v16 .left-right-hero-icon {
  animation: leftright 1s infinite alternate;
}
@keyframes rightleft {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.banner-v16 .right-left-hero-icon {
  animation: rightleft 1s infinite alternate;
}
@keyframes rightleft {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}

.banner-v17 .banner-v17-bg {
  font-family: var(--body-font-family);
  width: 100%;
  background: var(--secondary);
  padding: 120px 0px 220px 0px;
  min-height: 65vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner-v17 .banner-v17-bg {
    padding: 60px 0px 220px 0px;
  }
}
.banner-v17 .banner-v17-bg:before {
  content: "";
  position: absolute;
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/bg-hero-section-17-1.svg);
  bottom: 0px;
  right: 0;
  background-size: cover;
  height: 340px;
  width: 345px;
}
@media screen and (max-width: 991px) {
  .banner-v17 .banner-v17-bg:before {
    height: 217px;
    width: 245px;
  }
}
.banner-v17 .banner-v17-bg:after {
  content: "";
  position: absolute;
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/bg-hero-section-17-2.svg);
  top: 0px;
  left: 0;
  background-size: cover;
  height: 390px;
  width: 285px;
}
@media screen and (max-width: 991px) {
  .banner-v17 .banner-v17-bg:after {
    height: 180px;
    width: 120px;
  }
}
.banner-v17 .banner-content {
  position: relative;
}
.banner-v17 .banner-content .heading-1, .banner-v17 .banner-content .description {
  color: var(--text-secondary);
}
.banner-v17 .banner-content .primary-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 15px 30px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  font-weight: normal;
  margin-bottom: 10px;
  background-color: var(--primary);
  color: var(--text-primary);
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: 0.3s all ease;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .banner-v17 .banner-content .primary-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.banner-v17 .banner-content .primary-button:hover {
  background-color: var(--primary-hover);
  border: 2px solid var(--primary-hover);
}
.banner-v17 .image-wrapper {
  margin-top: -180px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}
.banner-v17 .image-wrapper .hero-img {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 60px;
}
.banner-v17 .up-down-animation {
  animation: updown-animation 1s infinite alternate;
}
@keyframes updown-animation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}/*# sourceMappingURL=banner.css.map */ .spildy-services .service-tb-space {
  padding: 52px 0px;
}
@media screen and (max-width: 576px) {
  .spildy-services .service-tb-space {
    padding: 24px 0px;
  }
}
.spildy-services img,
.spildy-services svg {
  max-width: 100%;
  max-height: 100%;
}

.service-v1 {
  font-family: var(--body-font-family);
}
.service-v1 .secondary-bg-20 {
  background-color: rgba(var(--secondary-rgb), 0.2);
}
.service-v1 .heading-title {
  color: var(--heading-light-color);
}
.service-v1 .heading-description {
  font-size: var(--size-6);
  line-height: initial;
  font-family: var(--body-font-family);
  margin-bottom: 20px;
  color: var(--body-light-color);
}
@media screen and (max-width: 991px) {
  .service-v1 .heading-description {
    font-size: var(--size-4);
  }
}
.service-v1 .service-box {
  transition: all 0.3s;
}
.service-v1 .service-box:hover .icons-bg {
  transform: scale(1.2);
}
.service-v1 .service-box:hover .icons-content .title {
  color: var(--heading-light-color);
  font-family: var(--body-font-family);
}
.service-v1 .service-box .icons-bg {
  width: 60px;
  height: 60px;
  margin: 0px auto;
  transition: 0.3s all ease-in-out;
}
.service-v1 .service-box .icons-bg svg,
.service-v1 .service-box .icons-bg img {
  max-width: 60px;
  max-height: 60px;
}
.service-v1 .service-box .icons-content {
  padding-top: var(--size-5);
}
.service-v1 .service-box .title {
  color: var(--heading-c);
  font-family: var(--body-font-family);
  font-size: var(--size-6);
  font-weight: bold;
  text-transform: capitalize;
}
.service-v1 .service-box .description {
  font-size: var(--size-4);
  color: var(--heading-light-color);
  font-family: var(--body-font-family);
}
@media screen and (max-width: 991px) {
  .service-v1 .service-box .description {
    font-size: var(--size-4);
  }
}
.service-v1 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .service-v1 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
    margin-top: 15px;
  }
}
.service-v1 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.service-v2 {
  font-family: var(--body-font-family);
}
.service-v2 .secondary-bg-20 {
  background-color: rgba(var(--secondary-rgb), 0.2);
}
.service-v2 .services-ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.service-v2 .services-ul li {
  padding: 20px 0px;
  border-bottom: 1px solid var(--white);
}
.service-v2 .services-ul li:last-child {
  border-bottom: 0px;
  padding-bottom: 0;
}
.service-v2 .services-ul .arrow-link svg {
  transition: 300ms ease all;
  transition: 300ms ease all;
  width: 50px;
  height: auto;
}
@media screen and (max-width: 991px) {
  .service-v2 .services-ul .arrow-link svg {
    margin-top: 20px;
    width: 30px;
  }
}
.service-v2 .services-ul .arrow-link svg:hover {
  transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
}
.service-v2 .services-ul .arrow-link svg .icon-c {
  fill: var(--heading-light-color);
}
.service-v2 .heading-title {
  color: var(--heading-light-color);
}
.service-v2 .title {
  color: var(--heading-light-color);
  font-family: var(--heading-font-family);
  font-size: var(--size-6);
  font-weight: bold;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .service-v2 .title {
    font-size: var(--size-5);
  }
}
.service-v2 .description {
  font-size: var(--size-5);
  color: var(--heading-light-color);
  font-family: var(--body-font-family);
}
@media screen and (max-width: 991px) {
  .service-v2 .description {
    font-size: var(--size-4);
  }
}
.service-v2 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .service-v2 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
    margin-top: 15px;
  }
}
.service-v2 .cta-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}

.service-v3 {
  font-family: var(--body-font-family);
}
.service-v3 .secondary-bg-20 {
  background-color: rgba(var(--secondary-rgb), 0.1);
}
.service-v3 .services-box {
  padding: 50px 30px 30px 30px;
  background: rgba(var(--secondary-rgb), 0.2);
  border-radius: 18px;
  margin-bottom: 35px;
  min-height: 450px;
}
@media screen and (max-width: 991px) {
  .service-v3 .services-box {
    min-height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .service-v3 .services-box {
    min-height: auto;
    padding: 30px 30px 30px 30px;
  }
}
.service-v3 .heading-title {
  max-width: 800px;
  color: var(--heading-light-color);
}
@media screen and (max-width: 991px) {
  .service-v3 .heading-title {
    max-width: 100%;
  }
}
.service-v3 .title {
  color: var(--heading-light-color);
  font-family: var(--heading-font-family);
  font-size: var(--size-6);
  font-weight: 500;
  max-width: 65%;
  margin-bottom: 10px;
  text-transform: capitalize;
  margin-top: 24px;
}
@media screen and (max-width: 991px) {
  .service-v3 .title {
    font-size: var(--size-5);
    max-width: 100%;
    margin-top: 12px;
  }
}
.service-v3 .description {
  font-size: var(--size-4);
  color: var(--body-light-color);
  font-family: var(--body-font-family);
  min-height: 185px;
}
@media screen and (max-width: 991px) {
  .service-v3 .description {
    min-height: auto;
  }
}
.service-v3 .numbered-text {
  width: 80px;
  height: 80px;
  color: var(--white);
  background: var(--heading-c);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-6);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .service-v3 .numbered-text {
    width: 60px;
    height: 60px;
    font-size: var(--size-4);
  }
}
.service-v3 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .service-v3 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.service-v3 .cta-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}

.service-v4 {
  font-family: var(--body-font-family);
}
.service-v4 .primary-bg-20 {
  background-color: rgba(var(--primary-rgb), 0.2);
}
.service-v4 .services-box-bg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/services-v4-5.jpg);
}
.service-v4 .services-margin {
  margin-top: 30px;
}
.service-v4 .services-box {
  padding: 50px 30px 30px 30px;
  background: var(--white);
  border-radius: 18px;
  height: 100%;
}
.service-v4 .heading-title {
  max-width: 800px;
  color: var(--heading-light-color);
}
@media screen and (max-width: 991px) {
  .service-v4 .heading-title {
    max-width: 100%;
  }
}
.service-v4 .title {
  color: var(--heading-c);
  font-family: var(--heading-font-family);
  font-size: var(--size-5);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: var(--heading-light-color);
  margin-top: 24px;
}
@media screen and (max-width: 991px) {
  .service-v4 .title {
    font-size: var(--size-5);
    margin-top: 12px;
  }
}
.service-v4 .description {
  font-size: var(--size-4);
  color: var(--body-light-color);
  font-family: var(--body-font-family);
  min-height: 185px;
}
@media only screen and (max-width: 991px) {
  .service-v4 .description {
    font-size: var(--size-4);
    min-height: auto;
  }
}
.service-v4 .icons-wrapper {
  width: 55px;
  height: 55px;
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.2);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-6);
  font-weight: 600;
}
.service-v4 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  border-radius: 8px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .service-v4 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.service-v4 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.service-v5 {
  font-family: var(--body-font-family);
}
.service-v5 .primary-bg {
  background-color: var(--primary);
}
.service-v5 .heading-title {
  text-align: center;
  color: var(--heading-light-color);
}
.service-v5 .heading-description {
  font-size: var(--size-6);
  line-height: initial;
  font-family: var(--body-font-family);
  color: var(--body-tc);
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .service-v5 .heading-description {
    font-size: var(--size-4);
  }
}
.service-v5 .content-main-wrapper {
  border-radius: 20px;
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .service-v5 .content-main-wrapper .column-reverse {
    flex-direction: column-reverse;
  }
}
.service-v5 .content-main-wrapper .services-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.service-v5 .content-main-wrapper .services-img.s5-left-img {
  border-radius: 20px 0px 0px 20px;
}
@media screen and (max-width: 991px) {
  .service-v5 .content-main-wrapper .services-img.s5-left-img {
    border-radius: 0px 0px 20px 20px;
  }
}
.service-v5 .content-main-wrapper .services-img.s5-right-img {
  border-radius: 0px 20px 20px 0px;
}
@media screen and (max-width: 991px) {
  .service-v5 .content-main-wrapper .services-img.s5-right-img {
    border-radius: 20px 20px 0px 0px;
  }
}
@media screen and (max-width: 991px) {
  .service-v5 .content-main-wrapper .services-img {
    max-height: 300px;
  }
}
.service-v5 .content-main-wrapper .service-content {
  padding: 50px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .service-v5 .content-main-wrapper .service-content {
    padding: 30px 30px 20px 30px;
  }
}
.service-v5 .content-col-wrapper {
  border-radius: 20px;
  background-color: var(--primary);
  border: 1px solid var(--border-c);
  height: 100%;
}
.service-v5 .content-col-wrapper .service-content {
  padding: 25px;
  display: flex;
  align-items: center;
}
.service-v5 .content-col-wrapper .services-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 280px;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px 20px 0px 0px;
}
.service-v5 .service-margin {
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .service-v5 .service-margin {
    margin-bottom: 30px;
  }
}
.service-v5 .top-text {
  margin-top: 0;
  color: var(--text-primary);
  font-size: var(--size-3);
  text-transform: uppercase;
  font-family: var(--body-font-family);
  font-weight: normal;
  letter-spacing: 3px;
}
.service-v5 .title {
  color: var(--text-primary);
  font-family: var(--heading-font-family);
  font-size: var(--size-8);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .service-v5 .title {
    font-size: var(--size-6);
  }
}
.service-v5 .description {
  font-size: var(--size-4);
  color: var(--text-primary);
  font-family: var(--body-font-family);
  min-height: 185px;
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .service-v5 .description {
    font-size: var(--size-4);
    min-height: auto;
  }
}
.service-v5 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  border-radius: 8px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .service-v5 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.service-v5 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}
.service-v5 .line-ht-0 {
  line-height: 0;
}

.service-v6 {
  font-family: var(--body-font-family);
}
.service-v6 .service-margin {
  margin-bottom: 35px;
}
.service-v6 .services-badge {
  margin: auto;
  background-color: var(--tertiary-color);
  color: var(--text-tertiary);
}
.service-v6 .services-box {
  padding: 35px 30px 45px 30px;
  background: var(--primary);
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 12px 12px 0px rgba(var(--primary-rgb), 0.2);
}
.service-v6 .heading-title {
  max-width: 700px;
  text-align: center;
  color: var(--text-secondary);
  margin: 10px auto 40px auto;
}
@media screen and (max-width: 991px) {
  .service-v6 .heading-title {
    max-width: 100%;
  }
}
.service-v6 .text-secondary {
  color: var(--text-secondary);
}
.service-v6 .title {
  color: var(--text-primary);
  font-family: var(--heading-font-family);
  font-size: var(--size-6);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .service-v6 .title {
    font-size: var(--size-5);
    max-width: 100%;
  }
}
.service-v6 .description {
  font-size: var(--size-4);
  color: var(--text-primary);
  font-family: var(--body-font-family);
  font-weight: 500;
}
.service-v6 .icons-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-6);
  font-weight: 600;
  margin: 20px auto;
}
.service-v6 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  border-radius: 34px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .service-v6 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.service-v6 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}/*# sourceMappingURL=services.css.map */ .spildy-why-us .why-us-bg {
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 575px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .spildy-why-us .why-us-bg {
    position: unset;
    height: auto;
  }
}
.spildy-why-us .why-us-bg .overlay {
  width: 100%;
  background-color: var(--black-opacity-70);
}
@media screen and (max-width: 991px) {
  .spildy-why-us .why-us-bg .overlay {
    position: unset;
    height: auto;
  }
}
.spildy-why-us .why-us-tb-space {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .spildy-why-us .why-us-tb-space {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.spildy-why-us img,
.spildy-why-us svg {
  max-width: 100%;
  max-height: 100%;
}
.spildy-why-us .why-us-border {
  border: 1px var(--border-c) solid;
}

.why-us-v1 .title {
  color: var(--heading-c);
}
.why-us-v1 .title.primary {
  color: var(--primary);
}
.why-us-v1 .description {
  font-family: var(--body-font-family);
}
.why-us-v1 .description.body-c {
  color: var(--body-tc);
}
.why-us-v1 .why-us-box {
  margin-top: 40px;
}
.why-us-v1 .why-us-box .number {
  color: var(--heading-c);
  margin-top: 24px;
  font-family: var(--body-font-family);
}
.why-us-v1 .why-us-box .heading {
  font-family: var(--heading-font-family);
}
.why-us-v1 .why-us-box .description {
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.why-us-v1 .why-us-box .outer-icon-wrapper {
  border-radius: 50%;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
}
.why-us-v1 .why-us-box .outer-icon-wrapper .why-us-icon-img {
  height: 30px;
  width: auto;
}
.why-us-v1 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .why-us-v1 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.why-us-v1 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.why-us-v2 .title {
  color: var(--heading-light-color);
}
.why-us-v2 .title.primary {
  color: var(--primary);
}
.why-us-v2 .description {
  font-family: var(--body-font-family);
}
.why-us-v2 .description.body-c {
  color: var(--heading-light-color);
}
.why-us-v2 .why-us-box {
  padding: 25px;
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
  height: 100%;
}
.why-us-v2 .why-us-box.mid {
  background: var(--primary);
}
.why-us-v2 .why-us-box.mid .number,
.why-us-v2 .why-us-box.mid .description,
.why-us-v2 .why-us-box.mid .heading {
  color: var(--text-primary);
}
.why-us-v2 .why-us-box.mid .outer-icon-wrapper img {
  transform: scale(1.05);
}
.why-us-v2 .why-us-box .number {
  color: var(--heading-c);
  margin-top: 24px;
  font-family: var(--body-font-family);
}
.why-us-v2 .why-us-box .heading {
  font-family: var(--heading-font-family);
}
.why-us-v2 .why-us-box .description {
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.why-us-v2 .why-us-box .outer-icon-wrapper {
  border-radius: 50%;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
.why-us-v2 .why-us-box .outer-icon-wrapper .why-us-icon-img {
  height: 40px;
  width: auto;
}
.why-us-v2 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .why-us-v2 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.why-us-v2 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.why-us-v3 .title {
  color: var(--heading-c);
}
.why-us-v3 .title.primary {
  color: var(--primary);
}
.why-us-v3 .description {
  font-family: var(--body-font-family);
}
.why-us-v3 .description.body-c {
  color: var(--body-tc);
}
.why-us-v3 .why-us-box {
  margin-top: 40px;
  text-align: center;
}
.why-us-v3 .why-us-box .description {
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.why-us-v3 .why-us-box .outer-icon-wrapper {
  margin: 0px auto 40px auto;
  border-radius: 100%;
  display: flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.why-us-v3 .why-us-box .outer-icon-wrapper .why-us-icon-img {
  border-radius: 100%;
}
.why-us-v3 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .why-us-v3 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.why-us-v3 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.why-us-v4 {
  background-color: var(--white);
}
.why-us-v4 .title {
  color: var(--heading-light-color);
}
.why-us-v4 .title.primary {
  color: var(--primary);
}
.why-us-v4 .description {
  font-family: var(--body-font-family);
}
.why-us-v4 .description.body-c {
  color: var(--body-tc);
}
.why-us-v4 .description .why-info-text {
  font-family: var(--body-font-family);
  max-width: 70%;
}
@media screen and (max-width: 575px) {
  .why-us-v4 .description .why-info-text {
    max-width: 100%;
  }
}
.why-us-v4 .text-white {
  color: var(--text-primary);
}
.why-us-v4 .icon-image-size {
  height: 45px;
  width: auto;
}
.why-us-v4 .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: minmax(250px, auto);
  grid-template-areas: "box1 box1  box4 box4 box5" "box2 box3 box4 box4 box6";
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .why-us-v4 .grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "box1 box4 box4" "box3 box4 box4" "box2 box5 box6";
  }
}
@media screen and (max-width: 767px) {
  .why-us-v4 .grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "box1 box1 box3" "box4 box4 box4" "box2 box6 box5";
  }
}
@media screen and (max-width: 575px) {
  .why-us-v4 .grid-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "box1" "box2" "box3" "box4" "box5" "box6";
  }
}
.why-us-v4 .box1 {
  border: 1px solid var(--border-c);
  padding: 30px;
  grid-area: box1;
  background: rgba(var(--primary-rgb), 0.2);
}
.why-us-v4 .box2 {
  border: 1px solid var(--border-c);
  padding: 30px;
  grid-area: box2;
  background: rgba(var(--primary-rgb), 0.2);
}
.why-us-v4 .box3 {
  border: 1px solid var(--border-c);
  padding: 30px;
  grid-area: box3;
  background: var(--primary);
  color: var(--text-primary);
}
.why-us-v4 .box3 .heading {
  color: var(--text-primary);
}
.why-us-v4 .box4 {
  padding: 0;
  grid-area: box4;
  background: var(--gray);
}
.why-us-v4 .box4 .why-us-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.why-us-v4 .box5 {
  border: 1px solid var(--border-c);
  padding: 30px;
  grid-area: box5;
  background: var(--primary);
  color: var(--text-primary);
}
.why-us-v4 .box5 .heading {
  color: var(--text-primary);
}
.why-us-v4 .box6 {
  border: 1px solid var(--border-c);
  padding: 30px;
  grid-area: box6;
  background: rgba(var(--primary-rgb), 0.2);
}
.why-us-v4 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .why-us-v4 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.why-us-v4 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}/*# sourceMappingURL=why-us.css.map */ .spildy-case-studie .case-studie-bg {
  background-color: var(--white);
}
.spildy-case-studie .case-studie-bg-alt {
  background-color: var(--light-bg);
}
.spildy-case-studie .case-studie-tb-space {
  padding: 100px 0px;
}
@media (max-width: 991px) {
  .spildy-case-studie .case-studie-tb-space {
    padding: 50px 0px;
  }
}
.spildy-case-studie img,
.spildy-case-studie svg {
  max-width: 100%;
  max-height: 100%;
}
.spildy-case-studie .case-studie-border {
  border: 1px var(--border-c) solid;
}
.spildy-case-studie .title {
  cursor: pointer;
  display: block;
  font-family: var(--heading-font-family);
  overflow-wrap: anywhere;
}
.spildy-case-studie .sub-heading {
  display: block;
  overflow-wrap: anywhere;
}
.spildy-case-studie .study-type {
  display: block;
  overflow-wrap: anywhere;
}

.case-studie-v1 .section-option-edit-image {
  right: 22px;
}
.case-studie-v1 .case-studie-box {
  border-right: 1px rgba(var(--secondary-rgb), 0.2) solid;
}
.case-studie-v1 .case-studie-box:last-child {
  border-right: none;
}
@media (max-width: 991px) {
  .case-studie-v1 .case-studie-box {
    border-right: none;
  }
}
.case-studie-v1 .case-studie-box a {
  text-decoration: none;
}
@media (max-width: 991px) {
  .case-studie-v1 .case-studie-box a {
    margin: 1px;
  }
}
@media (max-width: 576px) {
  .case-studie-v1 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v1 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v1 .case-studie-box:hover .case-studie-info {
  background-color: var(--secondary);
}
.case-studie-v1 .case-studie-box:hover .case-studie-info::after {
  border-bottom-color: var(--secondary);
}
.case-studie-v1 .case-studie-box:hover .case-studie-info .title {
  color: var(--white);
  font-family: var(--body-font-family);
}
.case-studie-v1 .case-studie-box:hover .case-studie-info .sub-heading {
  color: var(--white);
  font-family: var(--body-font-family);
}
.case-studie-v1 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v1 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v1 .case-studie-box .case-studie-info {
  background-color: var(--white);
  padding: 24px;
  position: relative;
}
@media (max-width: 991px) {
  .case-studie-v1 .case-studie-box .case-studie-info {
    padding: 12px;
    background-color: var(--secondary);
  }
}
.case-studie-v1 .case-studie-box .case-studie-info::after {
  bottom: 100%;
  left: 34px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: var(--white);
  border-width: 10px;
  margin-left: -10px;
}
@media (max-width: 991px) {
  .case-studie-v1 .case-studie-box .case-studie-info::after:after {
    border-bottom-color: var(--secondary);
  }
}
.case-studie-v1 .case-studie-box .case-studie-info .title {
  color: var(--heading-c);
  font-weight: bold;
  font-family: var(--body-font-family);
}
@media (max-width: 991px) {
  .case-studie-v1 .case-studie-box .case-studie-info .title {
    color: var(--text-secondary);
  }
}
.case-studie-v1 .case-studie-box .case-studie-info .sub-heading {
  color: var(--heading-c);
  font-family: var(--body-font-family);
}
@media (max-width: 991px) {
  .case-studie-v1 .case-studie-box .case-studie-info .sub-heading {
    color: var(--text-secondary);
  }
}
.case-studie-v1 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  border-radius: 6px;
  margin-top: 30px;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .case-studie-v1 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v1 .cta-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}

.case-studie-v2 .section-option-edit-image {
  right: 22px !important;
}
.case-studie-v2 .case-studie-box {
  position: relative;
}
@media (max-width: 576px) {
  .case-studie-v2 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v2 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v2 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v2 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v2 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v2 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v2 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v2 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v2 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v2 .case-studie-box .overlay .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.case-studie-v2 .case-studie-box .overlay .icon-wrapper .inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
}
.case-studie-v2 .case-studie-box .overlay .icon-wrapper .inner-box .link-img {
  height: 30px;
  width: auto;
}
.case-studie-v2 .case-studie-box .case-studie-info {
  background-color: var(--white);
  padding: 24px;
  position: relative;
}
@media (max-width: 991px) {
  .case-studie-v2 .case-studie-box .case-studie-info {
    padding: 12px;
  }
}
.case-studie-v2 .case-studie-box .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--heading-c);
  font-weight: bold;
  font-family: var(--body-font-family);
}
.case-studie-v2 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  margin-top: 30px;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v2 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v2 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v3 .section-option-edit-image {
  right: 22px;
}
.case-studie-v3 .case-studie-border {
  border: 1px rgba(var(--tertiary-rgb), 0.2) solid;
}
.case-studie-v3 .case-studie-box {
  padding: 0px;
  position: relative;
}
@media (max-width: 576px) {
  .case-studie-v3 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v3 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v3 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v3 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v3 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v3 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
.case-studie-v3 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v3 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v3 .case-studie-box .overlay .case-studie-info {
  background-color: var(--black-opacity-70);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.case-studie-v3 .case-studie-box .overlay .case-studie-info .text-overflow-y {
  overflow-y: auto;
  max-height: 100%;
}
.case-studie-v3 .case-studie-box .overlay .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--white);
  font-weight: bold;
  display: block;
  font-family: var(--body-font-family);
}
.case-studie-v3 .case-studie-box .overlay .case-studie-info .study-type {
  color: var(--white);
  font-family: var(--body-font-family);
}
.case-studie-v3 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  margin-top: 30px;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .case-studie-v3 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v3 .cta-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}

.case-studie-v4 .case-studie-box {
  position: relative;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .case-studie-v4 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v4 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v4 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v4 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v4 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v4 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v4 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v4 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v4 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v4 .case-studie-box .overlay .icon-wrapper {
  left: 50%;
  top: 38%;
  transform: translate(-38%, -50%);
  position: absolute;
}
.case-studie-v4 .case-studie-box .overlay .icon-wrapper .inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
}
.case-studie-v4 .case-studie-box .overlay .icon-wrapper .inner-box .link-img {
  height: 30px;
  width: auto;
}
.case-studie-v4 .case-studie-box .case-studie-info {
  background-color: var(--white);
  padding: 12px 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 68px;
  overflow-y: auto;
}
.case-studie-v4 .case-studie-box .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--heading-c);
  font-weight: bold;
  font-family: var(--body-font-family);
}
.case-studie-v4 .case-studie-box .case-studie-info .sub-heading {
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.case-studie-v4 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v4 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v4 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v5 .case-studie-box {
  position: relative;
  margin-bottom: 0px;
  border: 1px solid transparent;
}
@media (max-width: 576px) {
  .case-studie-v5 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v5 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v5 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v5 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v5 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v5 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v5 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v5 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v5 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v5 .case-studie-box .overlay .icon-wrapper {
  z-index: 1;
  right: 20px;
  bottom: 18px;
  transform: translate(-38%, -50%);
  position: absolute;
}
.case-studie-v5 .case-studie-box .overlay .icon-wrapper .inner-box {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border: 3px solid var(--white);
}
.case-studie-v5 .case-studie-box .overlay .icon-wrapper .inner-box .link-img {
  height: 30px;
  width: auto;
}
.case-studie-v5 .case-studie-box .case-studie-info {
  background-color: var(--white);
  padding: 12px 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 68px;
  overflow-y: auto;
}
.case-studie-v5 .case-studie-box .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--heading-c);
  font-weight: bold;
  font-family: var(--body-font-family);
}
.case-studie-v5 .case-studie-box .case-studie-info .sub-heading {
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.case-studie-v5 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v5 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v5 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v6 .case-studie-box {
  position: relative;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .case-studie-v6 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v6 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v6 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v6 .case-studie-box .case-studie-img {
  position: relative;
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v6 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v6 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v6 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v6 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v6 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info {
  background-color: var(--black-opacity-70);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info .text-overflow-y {
  overflow-y: auto;
  max-height: 100%;
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--white);
  font-weight: bold;
  display: block;
  font-family: var(--body-font-family);
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info .study-type {
  color: var(--white);
  font-family: var(--body-font-family);
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info .text-position {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  padding: 20px 20px 0;
  bottom: 75px;
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info .icon-wrapper {
  z-index: 1;
  right: 20px;
  bottom: 18px;
  position: absolute;
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info .icon-wrapper .inner-box {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--white);
  border: 1.5px solid var(--white);
  transition: 0.3s all ease-in-out;
}
.case-studie-v6 .case-studie-box .overlay .case-studie-info .icon-wrapper .inner-box .icon-ticker {
  width: 25px;
  height: auto;
}
.case-studie-v6 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v6 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v6 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v7 .case-studie-box {
  position: relative;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .case-studie-v7 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v7 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v7 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v7 .case-studie-box .case-studie-img {
  position: relative;
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v7 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v7 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v7 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v7 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  transform: translate(15px, 15px);
}
@media only screen and (max-width: 991px) {
  .case-studie-v7 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v7 .case-studie-box .overlay .case-studie-info {
  background-color: var(--black-opacity-30);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  text-align: center;
  overflow-y: auto;
}
.case-studie-v7 .case-studie-box .overlay .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--white);
  font-weight: bold;
  display: block;
  font-family: var(--body-font-family);
}
.case-studie-v7 .case-studie-box .overlay .case-studie-info .study-type {
  color: var(--white);
  font-family: var(--body-font-family);
}
.case-studie-v7 .case-studie-box .overlay .case-studie-info .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.case-studie-v7 .case-studie-box .overlay .case-studie-info .icon-wrapper .inner-box {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--black-opacity-70);
  color: var(--white);
  border: 1.5px solid var(--white);
  transition: 0.3s all ease-in-out;
}
.case-studie-v7 .case-studie-box .overlay .case-studie-info .icon-wrapper .inner-box .icon-ticker {
  width: 25px;
  height: auto;
}
.case-studie-v7 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v7 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v7 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v8 .case-studie-box {
  position: relative;
}
@media (max-width: 576px) {
  .case-studie-v8 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v8 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v8 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v8 .case-studie-box .section-option-edit-image {
  right: 21px !important;
  top: 2px !important;
}
.case-studie-v8 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v8 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v8 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v8 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v8 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-70);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v8 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v8 .case-studie-box .overlay .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.case-studie-v8 .case-studie-box .overlay .icon-wrapper .inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--white);
}
.case-studie-v8 .case-studie-box .overlay .icon-wrapper .inner-box .link-img {
  height: 30px;
  width: auto;
}
.case-studie-v8 .case-studie-box .case-studie-info {
  padding: 15px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .case-studie-v8 .case-studie-box .case-studie-info {
    padding: 12px;
  }
}
.case-studie-v8 .case-studie-box .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--heading-c);
  font-weight: bold;
  font-family: var(--body-font-family);
}
.case-studie-v8 .case-studie-box .case-studie-info .study-type {
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.case-studie-v8 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 20px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v8 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v8 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v10 .case-studie-box {
  padding: 0px;
  position: relative;
}
@media (max-width: 576px) {
  .case-studie-v10 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v10 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v10 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v10 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v10 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v10 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v10 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v10 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v10 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v10 .case-studie-box .overlay .case-studie-info {
  background-color: var(--black-opacity-70);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
.case-studie-v10 .case-studie-box .overlay .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--white);
  font-weight: bold;
  display: block;
  font-family: var(--body-font-family);
}
.case-studie-v10 .case-studie-box .overlay .case-studie-info .study-type {
  color: var(--white);
  font-family: var(--body-font-family);
}
.case-studie-v10 .case-studie-box .overlay .case-studie-info .view-btn {
  cursor: pointer;
  margin-top: 20px;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 5px 20px;
  font-size: var(--size-4);
  text-decoration: none;
  display: inline-block;
}
.case-studie-v10 .case-studie-box .overlay .case-studie-info .view-btn:hover {
  color: var(--white);
  text-decoration: none;
}
.case-studie-v10 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v10 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v10 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v11 .case-studie-box {
  position: relative;
  margin-bottom: 0px;
  border: 1px solid var(--light-bg);
}
@media (max-width: 576px) {
  .case-studie-v11 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v11 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v11 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v11 .case-studie-box .case-studie-img {
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v11 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v11 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v11 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v11 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 240px;
  left: 0;
  top: 0;
  background: var(--black-opacity-30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v11 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v11 .case-studie-box .overlay .icon-wrapper {
  z-index: 1;
  right: 20px;
  bottom: 18px;
  transform: translate(-38%, -50%);
  position: absolute;
}
.case-studie-v11 .case-studie-box .overlay .icon-wrapper .inner-box {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border: 3px solid var(--white);
}
.case-studie-v11 .case-studie-box .overlay .icon-wrapper .inner-box .link-img {
  height: 30px;
  width: auto;
}
.case-studie-v11 .case-studie-box .case-studie-info {
  background-color: var(--white);
  padding: 12px 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 68px;
  overflow-y: auto;
}
.case-studie-v11 .case-studie-box .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--heading-c);
  font-weight: bold;
  font-family: var(--body-font-family);
}
.case-studie-v11 .case-studie-box .case-studie-info .sub-heading {
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.case-studie-v11 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v11 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v11 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v12 .section-option-edit-image {
  right: 22px !important;
}
.case-studie-v12 .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}
@media screen and (max-width: 1200px) {
  .case-studie-v12 .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .case-studie-v12 .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .case-studie-v12 .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .case-studie-v12 .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.case-studie-v12 .case-studie-box {
  position: relative;
}
@media (max-width: 576px) {
  .case-studie-v12 .case-studie-box {
    margin-bottom: 15px;
  }
}
.case-studie-v12 .case-studie-box:hover {
  cursor: pointer;
}
.case-studie-v12 .case-studie-box:hover .simple-overlay {
  opacity: 1;
  visibility: visible;
}
.case-studie-v12 .case-studie-box .case-studie-img {
  height: 380px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.case-studie-v12 .case-studie-box .case-studie-img .image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.case-studie-v12 .case-studie-box .simple-overlay {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .case-studie-v12 .case-studie-box .simple-overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v12 .case-studie-box .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--black-opacity-70);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .case-studie-v12 .case-studie-box .overlay {
    opacity: 1;
    visibility: visible;
  }
}
.case-studie-v12 .case-studie-box .overlay .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.case-studie-v12 .case-studie-box .overlay .icon-wrapper .inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
}
.case-studie-v12 .case-studie-box .overlay .icon-wrapper .inner-box .link-img {
  height: 30px;
  width: auto;
}
.case-studie-v12 .case-studie-box .case-studie-info {
  background-color: var(--black-500);
  padding: 10px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 40px;
  left: 0px;
  transition: 0.3s all ease-in-out;
  max-height: 68px;
  overflow-y: auto;
}
.case-studie-v12 .case-studie-box .case-studie-info:hover {
  background-color: var(--primary);
}
@media (max-width: 991px) {
  .case-studie-v12 .case-studie-box .case-studie-info {
    padding: 12px;
  }
}
.case-studie-v12 .case-studie-box .case-studie-info .title {
  font-size: var(--body-fs);
  color: var(--white);
  font-weight: bold;
  font-family: var(--body-font-family);
}
.case-studie-v12 .case-studie-box .case-studie-info .sub-heading {
  color: var(--white);
  font-family: var(--body-font-family);
}
.case-studie-v12 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v12 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v12 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v13 {
  min-height: 600px;
  padding: 120px 0px;
  position: relative;
  z-index: 1;
}
.case-studie-v13:before {
  content: "";
  position: absolute;
  top: 0px;
  height: 200px;
  width: 100%;
  background: linear-gradient(rgba(var(--primary-rgb), 0.2), rgba(255, 255, 255, 0));
  z-index: -1;
}
.case-studie-v13:after {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 200px;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(var(--secondary-rgb), 0.2));
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .case-studie-v13 {
    padding: 50px 0px;
  }
}
.case-studie-v13 .badge {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 8px 20px;
  font-size: var(--size-4);
  background-color: var(--primary);
  color: var(--text-primary);
  display: flex;
  margin: 0px auto 10px auto;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  text-transform: uppercase;
  font-family: var(--body-font-family);
}
.case-studie-v13 .case-study-ul-boxed-list {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
}
.case-studie-v13 .case-study-ul-boxed-list .case-study-item {
  background-color: rgba(var(--secondary-rgb), 0.2);
  border-radius: 24px;
  grid-gap: 24px;
  padding: 40px;
  height: 580px;
  transition: transform 0.5s ease;
  opacity: 1;
  width: 100%;
  aspect-ratio: 1/1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
@media screen and (min-width: 1920px) {
  .case-studie-v13 .case-study-ul-boxed-list .case-study-item {
    height: 400px;
    min-height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .case-studie-v13 .case-study-ul-boxed-list .case-study-item {
    height: auto;
    min-height: auto;
    margin-bottom: 40px !important;
    padding: 30px;
  }
}
.case-studie-v13 .case-study-ul-boxed-list .case-study-item .anchor-link {
  max-width: 100%;
  display: block;
}
.case-studie-v13 .case-study-ul-boxed-list .case-study-item .anchor-link .case-study-img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  border-radius: 20px;
  min-height: 480px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
@media screen and (min-width: 1920px) {
  .case-studie-v13 .case-study-ul-boxed-list .case-study-item .anchor-link .case-study-img {
    height: 300px;
    min-height: 300px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .case-studie-v13 .case-study-ul-boxed-list .case-study-item .anchor-link .case-study-img {
    height: auto;
    min-height: 300px;
  }
}
.case-studie-v13 .case-study-ul-boxed-list .case-study-item .anchor-link .section-option-edit-link {
  right: 22px !important;
  top: 1px !important;
}
.case-studie-v13 .case-study-ul-boxed-list .case-study-item:hover .case-study-img {
  transition: transform 0.5s ease;
  transform: translate3d(0px, 0px, 0px) scale3d(1.03, 1.03, 1.03) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.case-studie-v13 .case-study-ul-boxed-list li {
  width: calc(50% - 20px);
}
@media screen and (max-width: 991px) {
  .case-studie-v13 .case-study-ul-boxed-list li {
    width: 100%;
  }
}
.case-studie-v13 .case-study-ul-boxed-list li:nth-child(3n+1) .case-study-item {
  background-color: rgba(var(--primary-rgb), 0.2);
}
.case-studie-v13 .case-study-ul-boxed-list li:nth-child(3n+2) .case-study-item {
  background-color: rgba(var(--secondary-rgb), 0.2);
}
.case-studie-v13 .case-study-ul-boxed-list li:nth-child(3n+3) .case-study-item {
  background-color: rgba(var(--tertiary-rgb), 0.2);
}
.case-studie-v13 .case-study-ul-boxed-list li:nth-child(odd) .case-study-item {
  margin-top: 60px;
  margin-bottom: 120px;
}
@media screen and (max-width: 991px) {
  .case-studie-v13 .case-study-ul-boxed-list li:nth-child(odd) .case-study-item {
    margin-top: 0px;
    margin-bottom: 60px;
  }
}
.case-studie-v13 .case-study-ul-boxed-list li:nth-child(even) .case-study-item {
  margin-top: 120px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .case-studie-v13 .case-study-ul-boxed-list li:nth-child(even) .case-study-item {
    margin-top: 0px;
    margin-bottom: 60px;
  }
}
.case-studie-v13 .heading-title {
  font-size: var(--size-14);
  color: var(--heading-light-color);
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: initial;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .case-studie-v13 .heading-title {
    font-size: var(--size-8);
  }
}
.case-studie-v13 .title {
  font-size: var(--size-8);
  color: var(--heading-light-color);
  margin-top: 0px;
  margin-bottom: 30px;
  line-height: initial;
  font-weight: bold;
  max-height: 190px;
  overflow-y: auto;
}
@media screen and (max-width: 991px) {
  .case-studie-v13 .title {
    font-size: var(--size-6);
  }
}
.case-studie-v13 .icon-container {
  position: absolute;
  height: 50px;
  width: 50px;
  opacity: 0.8;
}
.case-studie-v13 .icon-container.triangle-svg {
  top: 10%;
  left: 9%;
  transform: rotate(45deg);
}
.case-studie-v13 .icon-container.triangle1-svg {
  top: 8%;
  right: 9%;
  transform: rotate(-60deg);
}
.case-studie-v13 .rotate {
  animation: rotate 6s infinite alternate;
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.case-studie-v13 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 34px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v13 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v13 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v14 .badge {
  margin: 0px auto 10px auto;
  background-color: var(--secondary);
  color: var(--text-secondary);
}
.case-studie-v14 .heading-margin {
  margin-bottom: var(--size-10);
}
.case-studie-v14 .dotted-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.case-studie-v14 .dotted-container .dot {
  display: inline-flex;
  width: 10px;
  height: 10px;
  background: green;
  margin-bottom: 10px;
  border-radius: 100%;
}
.case-studie-v14 .dotted-container .dot.color1 {
  background-color: var(--primary);
}
.case-studie-v14 .dotted-container .dot.color2 {
  background-color: var(--secondary);
}
.case-studie-v14 .dotted-container .dot.color3 {
  background-color: var(--tertiary-color);
}
.case-studie-v14 .case-studie-box {
  background: var(--white);
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  display: block;
}
.case-studie-v14 .case-studie-box .title {
  font-size: var(--size-5);
  color: var(--heading-c);
  font-weight: bold;
  margin: 10px 0px 5px 0px;
  font-family: var(--heading-font-family);
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: text;
}
.case-studie-v14 .case-studie-box .title:hover, .case-studie-v14 .case-studie-box .title:focus, .case-studie-v14 .case-studie-box .title:visited {
  color: var(--heading-c);
  text-decoration: none;
  outline: none;
}
.case-studie-v14 .case-studie-box .heading-color {
  text-transform: capitalize;
  color: var(--heading-light-color);
}
.case-studie-v14 .case-studie-box .arrow-icon-wrapper {
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin: 10px 0px;
  transition: 0.3s all ease-in;
}
.case-studie-v14 .case-studie-box .arrow-icon-wrapper:hover {
  background-color: var(--primary-hover);
}
.case-studie-v14 .case-studie-box .arrow-icon-wrapper .arrow-icon {
  width: 10px;
  height: 10px;
}
.case-studie-v14 .case-studie-box .arrow-icon-wrapper .arrow-icon path {
  fill: var(--text-primary);
}
.case-studie-v14 .case-studie-box .sub-heading-badge-color {
  background-color: rgba(var(--tertiary-rgb), 0.2);
  color: var(--body-light-color);
  padding: 4px 10px;
  font-size: var(--size-3);
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
}
.case-studie-v14 .case-studie-box .case-studie-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 280px;
  border-radius: 8px;
}
.case-studie-v14 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 34px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v14 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v14 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v15 .svg-icon-top-wrapper {
  position: absolute;
  width: 310px;
  height: 310px;
  right: 0px;
  top: -120px;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .case-studie-v15 .svg-icon-top-wrapper {
    width: 160px;
    height: 160px;
    right: 0px;
    top: -60px;
  }
}
.case-studie-v15 .svg-icon-top-wrapper .svg-icon path {
  fill: var(--secondary);
}
.case-studie-v15 .position-sticky-content {
  position: sticky;
  top: 180px;
  z-index: 2;
  align-self: flex-start;
}
@media screen and (max-width: 991px) {
  .case-studie-v15 .position-sticky-content {
    position: relative;
    top: unset;
  }
}
.case-studie-v15 .svg-left-icon {
  width: 60px;
  height: 60px;
  margin: 20px 0px;
}
.case-studie-v15 .svg-left-icon path {
  fill: var(--secondary);
}
.case-studie-v15 .rotate-v15 {
  animation: rotate-v15 6s infinite alternate;
}
@keyframes rotate-v15 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.case-studie-v15 .row-padding-top {
  padding-top: 60px;
}
@media screen and (max-width: 991px) {
  .case-studie-v15 .row-padding-top {
    padding-top: 0px;
  }
}
.case-studie-v15 .content-order {
  z-index: 2;
}
.case-studie-v15 .description {
  color: var(--body-tc);
}
.case-studie-v15 .case-studie-box {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.case-studie-v15 .case-studie-box .arrow-right-wrapper .arrow-right-icon {
  width: 16px;
  height: 16px;
}
.case-studie-v15 .case-studie-box .arrow-right-wrapper .arrow-right-icon path {
  fill: var(--heading-c);
}
.case-studie-v15 .case-studie-box .anchor-link {
  font-size: var(--size-4);
  color: var(--heading-c);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.case-studie-v15 .case-studie-box .anchor-link:visited {
  fill: var(--heading-c);
}
.case-studie-v15 .case-studie-box .anchor-link:hover, .case-studie-v15 .case-studie-box .anchor-link:focus, .case-studie-v15 .case-studie-box .anchor-link:active {
  color: var(--secondary);
}
.case-studie-v15 .case-studie-box .anchor-link:hover .arrow-right-icon path, .case-studie-v15 .case-studie-box .anchor-link:focus .arrow-right-icon path, .case-studie-v15 .case-studie-box .anchor-link:active .arrow-right-icon path {
  fill: var(--secondary);
}
.case-studie-v15 .case-studie-box .case-studie-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 350px;
  border-radius: 24px;
}
.case-studie-v15 .heading-margin {
  margin-bottom: var(--size-10);
}
@media screen and (max-width: 991px) {
  .case-studie-v15 .heading-margin {
    margin-bottom: var(--size-5);
  }
}
.case-studie-v15 .title {
  font-size: var(--size-5);
  color: var(--heading-c);
  font-weight: bold;
  margin: 10px 0px 10px 0px;
  font-family: var(--heading-font-family);
  text-decoration: none;
  cursor: pointer;
  overflow-wrap: anywhere;
}
.case-studie-v15 .title:focus, .case-studie-v15 .title:visited {
  color: var(--heading-c);
  text-decoration: none;
  outline: none;
}
.case-studie-v15 .title:hover {
  text-decoration: underline;
}
.case-studie-v15 .title .section-option-edit-link {
  right: 23px !important;
  top: 2px !important;
}
.case-studie-v15 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v15 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v15 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v16 .rotate-v16 {
  animation: rotate-v16 6s infinite alternate;
}
@keyframes rotate-v16 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.case-studie-v16 .svg-icon-wrapper-v16 {
  min-width: 80px;
}
.case-studie-v16 .svg-icon-wrapper-v16 .svg-icon {
  width: 60px;
  height: 60px;
}
.case-studie-v16 .svg-icon-wrapper-v16 .svg-icon path {
  fill: var(--secondary);
}
.case-studie-v16 .heading-margin {
  color: var(--heading-light-color);
  margin-bottom: var(--size-10);
}
@media screen and (max-width: 991px) {
  .case-studie-v16 .heading-margin {
    margin-bottom: var(--size-5);
  }
}
.case-studie-v16 .title {
  font-size: var(--size-8);
  max-width: 430px;
  overflow-wrap: anywhere;
  margin: 30px 0px;
}
@media screen and (max-width: 767px) {
  .case-studie-v16 .title {
    font-size: var(--size-5);
    max-width: 80%;
    margin: 20px 0px;
  }
}
.case-studie-v16 .case-studie-box {
  position: relative;
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/case-studie-v17-img1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  border-radius: 24px;
}
.case-studie-v16 .case-study-ul {
  margin: 0;
  padding: 0;
}
.case-studie-v16 .case-study-ul li {
  margin-bottom: 30px;
  list-style-type: none;
}
.case-studie-v16 .case-study-ul li:nth-child(even) .title {
  color: var(--text-primary);
  max-height: 140px;
  overflow-y: auto;
}
.case-studie-v16 .case-study-ul li:nth-child(even) .svg-shape-wrapper {
  -webkit-clip-path: circle(64% at 36% 5%);
          clip-path: circle(64% at 36% 5%);
  background: var(--primary);
  transition: -webkit-clip-path 0.4s ease-in-out;
  transition: clip-path 0.4s ease-in-out;
  transition: clip-path 0.4s ease-in-out, -webkit-clip-path 0.4s ease-in-out;
  position: absolute;
  left: 0px;
  right: 0px;
  height: 360px;
  width: 600px;
  padding: 0px 40px;
  border-radius: 24px 0px 0px 0px;
}
.case-studie-v16 .case-study-ul li:nth-child(even) .svg-shape-wrapper:hover {
  -webkit-clip-path: circle(68% at 36% 5%);
          clip-path: circle(68% at 36% 5%);
}
@media screen and (max-width: 767px) {
  .case-studie-v16 .case-study-ul li:nth-child(even) .svg-shape-wrapper {
    width: 100%;
  }
}
.case-studie-v16 .case-study-ul li:nth-child(odd) .title {
  max-height: 140px;
  overflow-y: auto;
  color: var(--heading-light-color);
}
.case-studie-v16 .case-study-ul li:nth-child(odd) .svg-shape-wrapper {
  -webkit-clip-path: circle(64% at 36% 5%);
          clip-path: circle(64% at 36% 5%);
  background: var(--light-bg);
  transition: -webkit-clip-path 0.4s ease-in-out;
  transition: clip-path 0.4s ease-in-out;
  transition: clip-path 0.4s ease-in-out, -webkit-clip-path 0.4s ease-in-out;
  position: absolute;
  left: 0px;
  right: 0px;
  height: 360px;
  width: 600px;
  padding: 0px 40px;
  border-radius: 24px 0px 0px 0px;
}
.case-studie-v16 .case-study-ul li:nth-child(odd) .svg-shape-wrapper:hover {
  -webkit-clip-path: circle(68% at 36% 5%);
          clip-path: circle(68% at 36% 5%);
}
@media screen and (max-width: 767px) {
  .case-studie-v16 .case-study-ul li:nth-child(odd) .svg-shape-wrapper {
    width: 100%;
  }
}
.case-studie-v16 .banner-button {
  font-family: var(--body-font-family);
  cursor: pointer;
  color: var(--text-secondary);
  background-color: var(--secondary);
  font-size: var(--size-4);
  padding: 12px 25px;
  min-height: 45px;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  border: 2px solid var(--secondary);
  transition: 0.2s all ease-in;
  z-index: 3;
  position: relative;
  border-radius: 34px;
}
@media screen and (max-width: 767px) {
  .case-studie-v16 .banner-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v16 .banner-button:hover {
  background: var(--secondary-hover);
  border: 2px solid var(--secondary-hover);
}
.case-studie-v16 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 16px 36px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 34px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v16 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v16 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.case-studie-v17 .rotate-v17 {
  animation: rotate-v16 6s infinite alternate;
}
@keyframes rotate-v17 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.case-studie-v17 .svg-icon-leaf-top {
  position: absolute;
  width: 220px;
  height: 220px;
  right: 0px;
  top: -120px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .case-studie-v17 .svg-icon-leaf-top {
    width: 100px;
    height: 100px;
    right: 0px;
    top: -60px;
  }
}
.case-studie-v17 .svg-icon-leaf-top .svg-icon path {
  fill: rgba(var(--secondary-rgb), 0.5);
}
.case-studie-v17 .svg-icon-leaf-top-base {
  position: absolute;
  width: 300px;
  height: 300px;
  right: 0px;
  top: -120px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .case-studie-v17 .svg-icon-leaf-top-base {
    width: 160px;
    height: 160px;
    right: 0px;
    top: -60px;
  }
}
.case-studie-v17 .svg-icon-leaf-top-base .svg-icon path {
  fill: var(--tertiary-color);
}
.case-studie-v17 .triangular-svg {
  width: 60px;
  height: 60px;
  margin: 20px auto;
}
.case-studie-v17 .triangular-svg path {
  fill: var(--light-bg);
}
@media screen and (max-width: 991px) {
  .case-studie-v17 .triangular-svg {
    margin: 0px auto;
  }
}
.case-studie-v17 .row-padding-top {
  padding-top: 60px;
}
@media screen and (max-width: 991px) {
  .case-studie-v17 .row-padding-top {
    padding-top: 0px;
  }
}
.case-studie-v17 .heading-margin {
  color: var(--heading-c);
  margin-bottom: var(--size-10);
}
@media screen and (max-width: 991px) {
  .case-studie-v17 .heading-margin {
    margin-bottom: var(--size-5);
  }
}
.case-studie-v17 .secondary-color-text {
  color: var(--secondary);
}
.case-studie-v17 .text-dashes-svg-icon {
  width: 40px;
  height: 40px;
}
.case-studie-v17 .text-dashes-svg-icon path {
  fill: var(--secondary);
}
.case-studie-v17 .case-study-outer-main {
  z-index: 1;
}
.case-studie-v17 .case-studie-box {
  position: relative;
  background: var(--white);
  margin-left: -120px;
  padding: 40px;
  z-index: 5;
}
.case-studie-v17 .case-studie-box .text-overflow-y {
  overflow-y: auto;
  max-height: 280px;
}
@media screen and (max-width: 991px) {
  .case-studie-v17 .case-studie-box {
    margin-left: 0px;
    padding: 10px 0px 0px 0px;
  }
}
.case-studie-v17 .case-studie-box .title {
  font-size: var(--size-6);
  color: var(--heading-c);
  font-weight: bold;
  margin: 10px 0px 10px 0px;
  font-family: var(--heading-font-family);
}
.case-studie-v17 .case-studie-box .title:focus, .case-studie-v17 .case-studie-box .title:visited {
  color: var(--heading-c);
  text-decoration: none;
  outline: none;
}
.case-studie-v17 .case-studie-box .title:hover {
  text-decoration: underline;
}
.case-studie-v17 .case-studie-box .sub-heading {
  color: var(--body-tc);
}
.case-studie-v17 .case-studie-box .anchor-link {
  font-size: var(--size-4);
  color: var(--secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  margin-top: 10px;
}
.case-studie-v17 .case-studie-box .anchor-link .arrow-right-icon {
  width: 16px;
  height: 16px;
}
.case-studie-v17 .case-studie-box .anchor-link .arrow-right-icon path {
  fill: var(--secondary);
}
.case-studie-v17 .case-studie-box .anchor-link:visited {
  fill: var(--secondary);
}
.case-studie-v17 .case-studie-box .anchor-link:hover, .case-studie-v17 .case-studie-box .anchor-link:focus, .case-studie-v17 .case-studie-box .anchor-link:active {
  color: var(--primary);
}
.case-studie-v17 .case-studie-box .anchor-link:hover .arrow-right-icon path, .case-studie-v17 .case-studie-box .anchor-link:focus .arrow-right-icon path, .case-studie-v17 .case-studie-box .anchor-link:active .arrow-right-icon path {
  fill: var(--primary);
}
.case-studie-v17 .case-studie-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 480px;
  border-radius: 0px;
}
@media screen and (max-width: 991px) {
  .case-studie-v17 .case-studie-img {
    height: 350px;
  }
}
.case-studie-v17 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .case-studie-v17 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.case-studie-v17 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}/*# sourceMappingURL=case-studies.css.map */ @charset "UTF-8";
.spildy-testimonials .testimonials-bg {
  background-color: var(--white);
}
.spildy-testimonials .testimonials-tb-space {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .spildy-testimonials .testimonials-tb-space {
    padding: 50px 0px;
  }
}
.spildy-testimonials img,
.spildy-testimonials svg {
  max-width: 100%;
  max-height: 100%;
}
.spildy-testimonials .testimonials-bg {
  background-color: var(--white);
}
.spildy-testimonials .testimonials-border {
  border: 1px var(--border-c) solid;
}
.spildy-testimonials .star {
  position: relative;
  color: var(--body-tc);
  display: inline-block;
}
.spildy-testimonials .rating {
  overflow: hidden;
  white-space: nowrap;
}
.spildy-testimonials .rating span {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  color: var(--heading-c);
}
@media screen and (max-width: 991px) {
  .spildy-testimonials .rating span {
    font-size: 1.25rem;
  }
}
.spildy-testimonials .rating span:before {
  content: "☆☆☆☆☆";
  position: absolute;
  z-index: 2;
}

.testimonials-v1 .body-c {
  color: var(--body-tc);
}
.testimonials-v1 .swiper {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-v1 .swiper-slide {
  padding-bottom: 0px !important;
}
.testimonials-v1 .swiper-wrapper {
  margin-bottom: 20px;
}
.testimonials-v1 .testimonials-border {
  border-bottom: 0px;
}
.testimonials-v1 .testimonials-box {
  height: 100%;
  padding-bottom: 72px;
  border-bottom: 0px;
  z-index: 2;
}
.testimonials-v1 .testimonials-box .testimonials-min-h {
  min-height: 140px;
  height: 100%;
}
.testimonials-v1 .testimonials-box .testimonials-info {
  position: relative;
  padding: 0px 18px;
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.testimonials-v1 .testimonials-box .testimonials-info::before {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
  content: "''";
  font-weight: bold;
  font-size: 18px;
}
.testimonials-v1 .testimonials-box .testimonials-info::after {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-flex;
  content: "''";
  font-weight: bold;
  font-size: 18px;
}
.testimonials-v1 .user-name-star {
  margin-top: -1px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.testimonials-v1 .user-name-star .user-img {
  width: 82px;
  height: 72px;
  padding: 0px 10px 10px;
  border-color: var(--white) var(--border-c) var(--border-c);
  border-style: solid;
  border-width: 1px;
}
.testimonials-v1 .user-name-star .user-img .img-bg {
  background-color: var(--light-bg);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-v1 .user-name-star .user-name {
  background-color: var(--light-bg);
  border-color: var(--border-c);
  border-style: solid;
  border-width: 1px 1px 1px 0px;
  padding: 4px 110px 4px 12px;
  height: 50px;
  line-height: 18px;
  font-size: 14px;
  position: relative;
}
.testimonials-v1 .user-name-star .user-name .user-text {
  color: var(--heading-c);
  font-family: var(--body-font-family);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}
@media screen and (max-width: 991px) {
  .testimonials-v1 .user-name-star .user-name .user-text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.testimonials-v1 .user-name-star .user-name .designation {
  color: var(--body-tc);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}
.testimonials-v1 .user-name-star .star-rating {
  position: absolute;
  right: 10px;
  top: 12px;
}
.testimonials-v1 .user-name-star .stars {
  display: grid;
  grid-auto-flow: repeat(5, 1fr);
  grid-auto-flow: column;
  justify-content: end;
  gap: 5px;
}
.testimonials-v1 .user-name-star .stars span {
  line-height: 14px;
}
.testimonials-v1 .user-name-star .stars img {
  max-height: 18px;
}
.testimonials-v1 .scroll-control {
  position: relative;
}
.testimonials-v1 .scroll-control::before {
  position: absolute;
  left: 0px;
  right: 0px;
  content: "";
  height: 1px;
  background-color: var(--border-c);
  display: inline-block;
}
.testimonials-v1 .scroll-control .scroll-control-in {
  background-color: var(--white);
  margin: 0px auto;
  z-index: 1;
  width: 80px;
}
.testimonials-v1 .scroll-control .scroll-control-in .swiper-button-next,
.testimonials-v1 .scroll-control .scroll-control-in .swiper-button-prev {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0px;
  border: none;
  background-color: var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
}
.testimonials-v1 .scroll-control .scroll-control-in .swiper-button-next:hover, .testimonials-v1 .scroll-control .scroll-control-in .swiper-button-next:focus,
.testimonials-v1 .scroll-control .scroll-control-in .swiper-button-prev:hover,
.testimonials-v1 .scroll-control .scroll-control-in .swiper-button-prev:focus {
  background-color: var(--primary);
}
.testimonials-v1 .scroll-control .scroll-control-in .swiper-button-next::after,
.testimonials-v1 .scroll-control .scroll-control-in .swiper-button-prev::after {
  font-size: 12px;
  font-weight: bold;
  color: var(--white);
}
.testimonials-v1 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .testimonials-v1 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.testimonials-v1 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.testimonials-v2 .body-c {
  color: var(--body-tc);
}
.testimonials-v2 .swiper {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-v2 .testimonials-bg {
  background-color: var(--light-bg);
}
.testimonials-v2 .swiper {
  padding-bottom: 40px;
}
.testimonials-v2 .swiper .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.testimonials-v2 .swiper .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  width: 20px;
  border-radius: 8px;
  height: 8px;
}
.testimonials-v2 .testimonials-box {
  background-color: var(--white);
  height: 100%;
}
.testimonials-v2 .testimonials-box .user-img {
  width: 120px;
}
@media screen and (max-width: 568px) {
  .testimonials-v2 .testimonials-box .user-img {
    width: 80px;
    margin: 0px auto;
  }
}
.testimonials-v2 .testimonials-box .user-img .img-bg {
  background-color: var(--light-bg);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v2 .testimonials-box .user-img .img-bg img,
.testimonials-v2 .testimonials-box .user-img .img-bg svg {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v2 .testimonials-box .user-text {
  color: var(--heading-c);
  font-family: var(--body-font-family);
}
@media screen and (max-width: 568px) {
  .testimonials-v2 .testimonials-box .user-text {
    text-align: center;
  }
}
.testimonials-v2 .testimonials-box .designation {
  color: var(--body-tc);
}
.testimonials-v2 .testimonials-box .testimonials-info {
  position: relative;
  padding: 0px 18px;
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
@media screen and (max-width: 568px) {
  .testimonials-v2 .testimonials-box .testimonials-info {
    text-align: center;
  }
}
.testimonials-v2 .testimonials-box .testimonials-info::before {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
  content: "''";
  font-weight: bold;
  font-size: 18px;
}
.testimonials-v2 .testimonials-box .testimonials-info::after {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-flex;
  content: "''";
  font-weight: bold;
  font-size: 18px;
}
.testimonials-v2 .testimonials-box .star {
  margin-left: auto;
}
.testimonials-v2 .testimonials-box .date-star {
  border-top: 1px var(--border-c) solid;
  padding-top: var(--size-6);
}
.testimonials-v2 .testimonials-box .date-star .date {
  color: var(--body-tc);
  font-size: 14px;
}
.testimonials-v2 .testimonials-box .date-star .stars {
  display: grid;
  grid-auto-flow: repeat(5, 1fr);
  grid-auto-flow: column;
  justify-content: end;
  gap: 5px;
}
.testimonials-v2 .testimonials-box .date-star .stars span {
  line-height: 14px;
}
.testimonials-v2 .testimonials-box .date-star .stars img {
  max-height: 18px;
}
.testimonials-v2 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .testimonials-v2 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.testimonials-v2 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.testimonials-v3 .body-c {
  color: var(--body-tc);
}
.testimonials-v3 .swiper {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-v3 .swiper {
  padding-bottom: 40px;
}
.testimonials-v3 .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.testimonials-v3 .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}
.testimonials-v3 .img-icon-wrapper {
  position: relative;
  z-index: 25;
  height: 50px;
}
.testimonials-v3 .img-icon-wrapper .user-img {
  z-index: 3;
  width: 100px;
  height: 100px;
  margin: 0px auto;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-style: solid;
  border-color: var(--border-c);
  border-width: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials-v3 .img-icon-wrapper .user-img .img-bg {
  background-color: var(--light-bg);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v3 .img-icon-wrapper .user-img .img-bg img,
.testimonials-v3 .img-icon-wrapper .user-img .img-bg svg {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v3 .testimonials-box {
  border-top: 0px var(--border-c) solid;
  border: 1px var(--border-c) solid;
  margin-top: -50px;
  border-left: 0px;
  padding-top: 50px;
  border-right: 0px;
  height: 100%;
}
.testimonials-v3 .testimonials-box .user-text {
  color: var(--heading-c);
  font-family: var(--body-font-family);
}
.testimonials-v3 .testimonials-box .designation {
  color: var(--body-tc);
}
.testimonials-v3 .testimonials-box .testimonials-info-in {
  background-color: var(--white);
  position: relative;
  height: 100%;
  border: 1px var(--border-c) solid;
}
.testimonials-v3 .testimonials-box .testimonials-info {
  position: relative;
  padding: 10px 18px 0px 18px;
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.testimonials-v3 .testimonials-box .testimonials-info::before {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
  content: "''";
  font-weight: bold;
  font-size: 18px;
}
.testimonials-v3 .testimonials-box .testimonials-info::after {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-flex;
  content: "''";
  font-weight: bold;
  font-size: 18px;
}
.testimonials-v3 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .testimonials-v3 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.testimonials-v3 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.testimonials-v4 .body-c {
  color: var(--body-tc);
}
.testimonials-v4 .swiper {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-v4 .star {
  margin: auto;
}
.testimonials-v4 .testimonials-bg {
  background-color: var(--light-bg);
}
.testimonials-v4 .testimonials-box {
  height: 100%;
  padding: 0px 100px;
}
@media screen and (max-width: 568px) {
  .testimonials-v4 .testimonials-box {
    padding: 0px 40px;
  }
}
.testimonials-v4 .testimonials-box .user-img-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.testimonials-v4 .testimonials-box .user-img-name .img-bg {
  background-color: var(--light-bg);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.062745098);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.062745098);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.062745098);
}
.testimonials-v4 .testimonials-box .user-img-name .img-bg img,
.testimonials-v4 .testimonials-box .user-img-name .img-bg svg {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v4 .testimonials-box .user-img-name .user-text {
  color: var(--heading-c);
  font-family: var(--body-font-family);
}
.testimonials-v4 .testimonials-box .user-img-name .designation {
  color: var(--body-tc);
}
.testimonials-v4 .testimonials-box .testimonials-info {
  position: relative;
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
.testimonials-v4 .testimonials-box .date-star .date {
  color: var(--body-tc);
  font-size: 14px;
}
.testimonials-v4 .testimonials-box .date-star .stars {
  display: grid;
  grid-auto-flow: repeat(5, 1fr);
  grid-auto-flow: column;
  justify-content: center;
  gap: 5px;
}
.testimonials-v4 .testimonials-box .date-star .stars span {
  line-height: 14px;
}
.testimonials-v4 .testimonials-box .date-star .stars img {
  max-height: 18px;
}
.testimonials-v4 .swiper-button-next,
.testimonials-v4 .swiper-button-prev {
  cursor: pointer;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.062745098);
  width: 44px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v4 .swiper-button-next:hover::after,
.testimonials-v4 .swiper-button-prev:hover::after {
  color: var(--primary);
}
.testimonials-v4 .swiper-button-next::after,
.testimonials-v4 .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
  color: var(--body-tc);
}
@media screen and (max-width: 568px) {
  .testimonials-v4 .swiper-button-next {
    right: 0px;
  }
  .testimonials-v4 .swiper-button-prev {
    left: 0px;
  }
}
.testimonials-v4 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .testimonials-v4 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.testimonials-v4 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.testimonials-v5 {
  z-index: 2;
  position: relative;
}
.testimonials-v5 .swiper {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-v5 .heading-2 {
  color: var(--white);
}
.testimonials-v5 .testimonials-box {
  padding: 0px 100px;
  height: 100%;
}
@media screen and (max-width: 568px) {
  .testimonials-v5 .testimonials-box {
    padding: 0px 40px;
  }
}
.testimonials-v5 .testimonials-box .user-img-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.testimonials-v5 .testimonials-box .user-img-name .img-bg {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.062745098);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.062745098);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.062745098);
}
.testimonials-v5 .testimonials-box .user-img-name .img-bg img,
.testimonials-v5 .testimonials-box .user-img-name .img-bg svg {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v5 .testimonials-box .testimonials-info {
  position: relative;
  color: var(--white);
  font-family: var(--body-font-family);
}
.testimonials-v5 .testimonials-box .testimonials-info .user-text {
  color: var(--white);
  font-family: var(--body-font-family);
}
.testimonials-v5 .testimonials-box .testimonials-info .designation {
  color: var(--white);
  font-family: var(--body-font-family);
}
.testimonials-v5 .swiper-button-next,
.testimonials-v5 .swiper-button-prev {
  cursor: pointer;
  border-radius: 16px;
  background-color: var(--white);
  width: 44px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  opacity: 0.4;
}
.testimonials-v5 .swiper-button-next:hover,
.testimonials-v5 .swiper-button-prev:hover {
  opacity: 1;
}
.testimonials-v5 .swiper-button-next:hover::after,
.testimonials-v5 .swiper-button-prev:hover::after {
  color: var(--black);
}
.testimonials-v5 .swiper-button-next::after,
.testimonials-v5 .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
  color: var(--body-tc);
}
@media screen and (max-width: 568px) {
  .testimonials-v5 .swiper-button-next {
    right: 0px;
  }
  .testimonials-v5 .swiper-button-prev {
    left: 0px;
  }
}
.testimonials-v5 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .testimonials-v5 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.testimonials-v5 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.testimonials-v6 .swiper {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-v6 .title {
  color: var(--heading-c);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .title {
    text-align: center;
  }
}
.testimonials-v6 .swiper {
  padding-bottom: 40px;
}
.testimonials-v6 .swiper .swiper-slide {
  width: 700px;
}
.testimonials-v6 .swiper .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.testimonials-v6 .swiper .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  width: 20px;
  border-radius: 8px;
  height: 8px;
}
.testimonials-v6 .testimonials-box {
  position: relative;
  background-color: var(--primary);
  height: 100%;
  border-radius: 20px;
  margin: 20px 0px;
  padding: 30px;
  color: var(--text-primary);
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .testimonials-box {
    margin: 20px;
    padding: 20px;
  }
}
.testimonials-v6 .testimonials-box .company-name {
  color: var(--text-primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: var(--size-4);
  margin-bottom: 20px;
}
.testimonials-v6 .testimonials-box .testimonial-bottom-wrapper {
  position: absolute;
  bottom: 0px;
  left: 0;
  min-height: 100px;
  width: 100%;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .testimonials-box .testimonial-bottom-wrapper {
    min-height: 70px;
    width: 100%;
    padding: 10px;
  }
}
.testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-img {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-img {
    width: 80px;
    margin: 0px auto;
  }
}
.testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-img .img-bg {
  background-color: var(--light-bg);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-img .img-bg img,
.testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-img .img-bg svg {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-img .img-bg {
    margin-bottom: 10px;
  }
}
.testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-text {
  color: var(--text-primary);
  font-family: var(--body-font-family);
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .user-text {
    text-align: center;
  }
}
.testimonials-v6 .testimonials-box .testimonial-bottom-wrapper .designation {
  color: var(--text-primary);
  font-size: var(--size-4);
  font-weight: 400;
}
.testimonials-v6 .testimonials-box .testimonials-info {
  position: relative;
  color: var(--text-primary);
  font-family: var(--body-font-family);
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.testimonials-v6 .testimonials-box .testimonials-info blockquote {
  display: inline-block;
  margin: 0;
}
.testimonials-v6 .testimonials-box .testimonials-info blockquote::before {
  vertical-align: bottom;
  position: relative;
  top: 0.2em;
  color: var(--text-primary);
  content: open-quote;
}
.testimonials-v6 .testimonials-box .testimonials-info blockquote::after {
  vertical-align: bottom;
  position: relative;
  top: 0.2em;
  color: var(--text-primary);
  content: close-quote;
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .testimonials-box .testimonials-info {
    text-align: center;
    padding-bottom: 100px;
  }
}
.testimonials-v6 .position-relative {
  position: relative;
}
.testimonials-v6 .swiper-button-next1,
.testimonials-v6 .swiper-button-prev1 {
  margin: 0 5px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .swiper-button-next1,
  .testimonials-v6 .swiper-button-prev1 {
    width: 40px;
    height: 40px;
  }
}
.testimonials-v6 .swiper-button-next1 svg,
.testimonials-v6 .swiper-button-prev1 svg {
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  fill: var(--text-primary);
  padding: 12px;
}
.testimonials-v6 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .testimonials-v6 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.testimonials-v6 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.testimonials-v7 {
  position: relative;
}
.testimonials-v7 .position-relative {
  position: relative;
}
.testimonials-v7 .svg-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.testimonials-v7 .svg-bg svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
.testimonials-v7 .svg-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: -120px;
  left: 0;
}
.testimonials-v7 .svg-bg .st0 {
  opacity: 0.2;
}
.testimonials-v7 .svg-bg .st0 .st1 {
  fill: var(--white);
}
.testimonials-v7 .swiper {
  display: flex !important;
  align-items: stretch !important;
}
.testimonials-v7 .title {
  color: var(--text-primary);
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .title {
    text-align: center;
  }
}
.testimonials-v7 .swiper {
  padding-bottom: 40px;
}
.testimonials-v7 .swiper .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.testimonials-v7 .swiper .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  width: 20px;
  border-radius: 8px;
  height: 8px;
}
.testimonials-v7 .testimonials-box {
  position: relative;
  background-color: var(--tertiary-color);
  height: 100%;
  border-radius: 20px;
  margin: 20px 0px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .testimonials-box {
    margin: 20px;
    padding: 25px;
  }
}
.testimonials-v7 .testimonials-box .star .rating span {
  color: var(--text-tertiary);
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .testimonials-box .star {
    margin: auto;
  }
}
.testimonials-v7 .testimonials-box .user-img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .testimonials-box .user-img {
    width: 110px;
    margin: 0px auto;
  }
}
.testimonials-v7 .testimonials-box .user-img .img-bg {
  background-color: var(--secondary);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .testimonials-box .user-img .img-bg {
    margin-right: 0px;
  }
}
.testimonials-v7 .testimonials-box .user-img .img-bg img,
.testimonials-v7 .testimonials-box .user-img .img-bg svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background: var(--white);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .testimonials-box .user-img .img-bg {
    margin-bottom: 10px;
  }
}
.testimonials-v7 .testimonials-box .user-text {
  color: var(--text-tertiary);
  font-family: var(--body-font-family);
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .testimonials-box .user-text {
    text-align: center;
  }
}
.testimonials-v7 .testimonials-box .designation {
  color: var(--text-tertiary);
  font-size: var(--size-3);
  font-weight: 400;
}
.testimonials-v7 .testimonials-box .testimonials-info {
  position: relative;
  color: var(--text-tertiary);
  font-family: var(--body-font-family);
  margin-bottom: 10px;
}
.testimonials-v7 .testimonials-box .testimonials-info blockquote {
  display: inline-block;
  margin: 0;
}
.testimonials-v7 .testimonials-box .testimonials-info blockquote::before {
  vertical-align: bottom;
  position: relative;
  top: 0.2em;
  color: var(--text-tertiary);
  content: open-quote;
}
.testimonials-v7 .testimonials-box .testimonials-info blockquote::after {
  vertical-align: bottom;
  position: relative;
  top: 0.2em;
  color: var(--text-tertiary);
  content: close-quote;
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .testimonials-box .testimonials-info {
    text-align: center;
    padding-bottom: 50px;
  }
}
.testimonials-v7 .position-relative {
  position: relative;
}
.testimonials-v7 .swiper-button-next1,
.testimonials-v7 .swiper-button-prev1 {
  margin: 15px 5px 0px 5px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .swiper-button-next1,
  .testimonials-v7 .swiper-button-prev1 {
    width: 40px;
    height: 40px;
  }
}
.testimonials-v7 .swiper-button-next1 svg,
.testimonials-v7 .swiper-button-prev1 svg {
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  border-radius: 50%;
  fill: var(--primary);
  padding: 12px;
}
.testimonials-v7 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  border-radius: 12px;
  background-color: var(--tertiary-color);
  color: var(--text-tertiary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--tertiary-color);
}
@media screen and (max-width: 767px) {
  .testimonials-v7 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.testimonials-v7 .cta-button:hover {
  background: var(--tertiary-hover);
  border: 1.5px solid var(--tertiary-hover);
}

.spildy-testimonials .swiper-wrapper {
  height: auto !important;
}

.position-relative {
  position: relative;
}

.overlay-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.edit-icon-wrapper {
  width: 20px;
  height: 20px;
  line-height: 16px;
  position: absolute;
  top: 1px;
  right: 1px;
  opacity: 1;
  padding: 2px;
  border-style: solid;
  border-width: thin;
  border-color: #e0e0e0;
  border-radius: 2px;
  box-shadow: 2px 2px 6px #252525;
  background-color: #f8f9fa;
  display: flex;
  z-index: 50;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edit-icon-wrapper svg {
  fill: #1d0eee;
  width: 14px;
  height: 14px;
  border-radius: unset !important;
}

.clients-v8 {
  z-index: 2;
  position: relative;
}
.clients-v8 .clients-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}
.clients-v8 .clients-bg::before {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.clients-v8 .title {
  color: var(--white);
}
.clients-v8 .description {
  color: var(--white);
}
.clients-v8 .swiper-slide {
  height: 110px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--white);
  padding: 16px;
}
.clients-v8 .swiper-slide img,
.clients-v8 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v8 .swiper-button-next,
.clients-v8 .swiper-button-prev {
  cursor: pointer;
  border-radius: 16px;
}
.clients-v8 .swiper-button-next:hover::after,
.clients-v8 .swiper-button-prev:hover::after {
  color: var(--primary);
}
.clients-v8 .swiper-button-next::after,
.clients-v8 .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
}/*# sourceMappingURL=testimonials.css.map */ .spildy-clients .clients-bg {
  background-color: var(--white);
}
.spildy-clients .description {
  font-size: var(--size-4);
  line-height: var(--size-5);
}
.spildy-clients .clients-tb-space {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .spildy-clients .clients-tb-space {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.spildy-clients img,
.spildy-clients svg {
  max-width: 100%;
  max-height: 100%;
}
.spildy-clients .clients-bg {
  background-color: var(--white);
}
.spildy-clients .clients-border {
  border: 1px var(--border-c) solid;
}
.spildy-clients .swiper-wrapper {
  padding: 22px 0px !important;
}

.clients-v1 .body-c {
  color: var(--body-tc);
}
.clients-v1 .swiper .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.clients-v1 .swiper .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}
.clients-v1 .swiper-slide {
  border: 1px var(--border-c) solid;
  height: 150px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--white);
  padding: 24px;
}
.clients-v1 .swiper-slide:hover {
  background-color: var(--light-bg);
}
.clients-v1 .swiper-slide img,
.clients-v1 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v1 .scroll-control {
  position: relative;
}
.clients-v1 .scroll-control::before {
  position: absolute;
  left: 0px;
  right: 0px;
  content: "";
  height: 1px;
  background-color: var(--border-c);
  display: inline-block;
}
.clients-v1 .scroll-control .scroll-control-in {
  background-color: var(--white);
  margin: 0px auto;
  z-index: 1;
  width: 80px;
}
.clients-v1 .scroll-control .scroll-control-in .swiper-button-next,
.clients-v1 .scroll-control .scroll-control-in .swiper-button-prev {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0px;
  border: none;
  background-color: var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
}
.clients-v1 .scroll-control .scroll-control-in .swiper-button-next:hover, .clients-v1 .scroll-control .scroll-control-in .swiper-button-next:focus,
.clients-v1 .scroll-control .scroll-control-in .swiper-button-prev:hover,
.clients-v1 .scroll-control .scroll-control-in .swiper-button-prev:focus {
  background-color: var(--primary);
}
.clients-v1 .scroll-control .scroll-control-in .swiper-button-next::after,
.clients-v1 .scroll-control .scroll-control-in .swiper-button-prev::after {
  font-size: 12px;
  font-weight: bold;
  color: var(--white);
}
.clients-v1 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v1 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v1 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.clients-v2 .body-c {
  color: var(--body-tc);
}
.clients-v2 .clients-bg {
  background-color: var(--light-bg);
}
.clients-v2 .clients-box {
  height: 200px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--white);
  padding: 32px;
  border: 1px var(--light-bg) solid;
}
.clients-v2 .clients-box:hover {
  background-color: var(--light-bg);
}
@media screen and (max-width: 991px) {
  .clients-v2 .clients-box {
    height: 140px;
  }
}
.clients-v2 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v2 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v2 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.clients-v3 .body-c {
  color: var(--body-tc);
}
.clients-v3 .swiper {
  padding-bottom: 40px;
}
.clients-v3 .swiper .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.clients-v3 .swiper .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}
.clients-v3 .swiper-slide {
  height: 120px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--light-bg);
  padding: 18px;
}
.clients-v3 .swiper-slide img {
  transition: transform 0.2s;
}
.clients-v3 .swiper-slide:hover img {
  transform: scale(1.25);
}
.clients-v3 .swiper-slide img,
.clients-v3 .swiper-slide svg {
  max-height: 100px;
  max-width: 100%;
}
.clients-v3 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .clients-v3 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v3 .cta-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}

.clients-v4 .body-c {
  color: var(--body-tc);
}
.clients-v4 .clients-bg {
  background-color: var(--light-bg);
}
.clients-v4 .swiper {
  padding-bottom: 40px;
}
.clients-v4 .swiper .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.clients-v4 .swiper .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  width: 20px;
  border-radius: 8px;
  height: 8px;
}
.clients-v4 .swiper-slide {
  border: 1px var(--border-c) solid;
  height: 150px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--white);
  padding: 24px;
}
.clients-v4 .swiper-slide img,
.clients-v4 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v4 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .clients-v4 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v4 .cta-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}

.clients-v5 .body-c {
  color: var(--body-tc);
}
.clients-v5 .swiper {
  padding-bottom: 40px;
}
.clients-v5 .swiper-slide {
  height: 150px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--light-bg);
  padding: 24px;
  border-radius: 30px 0px 30px 0px;
}
.clients-v5 .swiper-slide:hover {
  background-color: rgba(var(--primary-rgb), 0.25);
}
.clients-v5 .swiper-slide img,
.clients-v5 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v5 .swiper-pagination-bullet:hover {
  background-color: var(--primary) !important;
  opacity: 0.7;
}
.clients-v5 .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  width: 20px;
  border-radius: 8px;
  height: 8px;
}
.clients-v5 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v5 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v5 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.clients-v6 .body-c {
  color: var(--body-tc);
}
.clients-v6 .clients-bg {
  background-color: var(--light-bg);
}
.clients-v6 .clients-v6-boxes .col-6:nth-child(4n) .clients-box {
  border-right: none;
}
.clients-v6 .clients-v6-boxes .col-6:nth-child(-n+4) {
  border-bottom: 1px #D9D9D9 solid;
}
@media screen and (max-width: 882px) {
  .clients-v6 .clients-v6-boxes .col-6:nth-child(2n) .clients-box {
    border-right: none;
  }
  .clients-v6 .clients-v6-boxes .col-6:nth-child(-n+6) {
    border-bottom: 1px #D9D9D9 solid;
  }
}
.clients-v6 .clients-box {
  height: 200px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: transparent;
  padding: 24px;
  border-right: 1px #D9D9D9 solid;
}
.clients-v6 .clients-box:hover {
  background-color: var(--white);
}
@media screen and (max-width: 991px) {
  .clients-v6 .clients-box {
    height: 140px;
  }
}
.clients-v6 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v6 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v6 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.clients-v7 .body-c {
  color: var(--body-tc);
}
.clients-v7 .clients-bg {
  background-color: var(--border-c);
}
.clients-v7 .swiper-client-v7 .swiper-wrapper {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.clients-v7 .swiper-slide {
  height: 80px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: transparent;
  padding: 12px 24px;
  border: 1px var(--border-c) solid;
}
.clients-v7 .swiper-slide:hover {
  border: 1px var(--primary) solid;
}
.clients-v7 .swiper-slide img,
.clients-v7 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v7 .swiper-button-prev {
  left: 0px;
}
.clients-v7 .swiper-button-next {
  right: 0px;
}
.clients-v7 .swiper-button-next,
.clients-v7 .swiper-button-prev {
  cursor: pointer;
  border-radius: 0px;
  background-color: var(--border-c);
  width: 32px;
  height: 80px;
  top: 44px;
}
.clients-v7 .swiper-button-next:hover,
.clients-v7 .swiper-button-prev:hover {
  background-color: var(--heading-c);
}
.clients-v7 .swiper-button-next:hover::after,
.clients-v7 .swiper-button-prev:hover::after {
  color: var(--light-bg);
}
.clients-v7 .swiper-button-next::after,
.clients-v7 .swiper-button-prev::after {
  font-size: 12px;
  font-weight: bold;
  color: var(--black);
}
.clients-v7 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v7 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v7 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.clients-v8 {
  z-index: 2;
  position: relative;
}
.clients-v8 .clients-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}
.clients-v8 .clients-bg::before {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.clients-v8 .title {
  color: var(--white);
}
.clients-v8 .description {
  color: var(--white);
}
.clients-v8 .swiper-slide {
  height: 110px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--white);
  padding: 16px;
}
.clients-v8 .swiper-slide img,
.clients-v8 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v8 .swiper-button-next,
.clients-v8 .swiper-button-prev {
  cursor: pointer;
  border-radius: 16px;
}
.clients-v8 .swiper-button-next:hover::after,
.clients-v8 .swiper-button-prev:hover::after {
  color: var(--primary);
}
.clients-v8 .swiper-button-next::after,
.clients-v8 .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
}
.clients-v8 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .clients-v8 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v8 .cta-button:hover {
  background: var(--secondary-hover);
}

.clients-v9 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.clients-v9 ul li:nth-child(odd) .clients-box {
  box-shadow: 7px 7px 0px rgba(var(--tertiary-rgb), 0.5);
}
.clients-v9 ul li:nth-child(even) .clients-box {
  box-shadow: 7px 7px 0px rgba(var(--secondary-rgb), 0.5);
}
.clients-v9 .clients-bg {
  background-color: var(--primary);
}
.clients-v9 .badge {
  background-color: var(--tertiary-color);
  color: var(--text-tertiary);
  margin: 0px auto 10px auto;
}
.clients-v9 .title {
  line-height: var(--size-18);
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-primary);
}
@media screen and (max-width: 991px) {
  .clients-v9 .title {
    font-size: var(--size-8);
    line-height: var(--size-10);
  }
}
.clients-v9 .clients-box {
  height: 200px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--white);
  padding: 32px;
  border: 1px var(--light-bg) solid;
  margin-bottom: 30px;
  border-radius: 12px;
}
.clients-v9 .clients-box img {
  background-color: var(--white);
  transition: all 0.2s;
  transform-style: preserve-3d;
  filter: grayscale(100%);
}
.clients-v9 .clients-box:hover img {
  filter: none;
}
@media screen and (max-width: 991px) {
  .clients-v9 .clients-box {
    height: 140px;
  }
}
.clients-v9 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--tertiary-color);
  color: var(--text-tertiary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--tertiary-color);
}
@media screen and (max-width: 767px) {
  .clients-v9 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v9 .cta-button:hover {
  background: var(--tertiary-hover);
  border: 1.5px solid var(--tertiary-hover);
}

.clients-v10 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.clients-v10 .clients-bg {
  background-color: rgba(var(--secondary-rgb), 0.2);
}
.clients-v10 .badge {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 8px 20px;
  font-size: var(--size-4);
  background-color: var(--tertiary-color);
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  border-radius: 24px;
  margin: 0px auto 10px auto;
  text-transform: uppercase;
  font-family: var(--body-font-family);
}
.clients-v10 .title {
  line-height: var(--size-18);
  margin-bottom: 10px;
  text-align: center;
  color: var(--heading-light-color);
}
@media screen and (max-width: 991px) {
  .clients-v10 .title {
    font-size: var(--size-8);
    line-height: var(--size-10);
  }
}
.clients-v10 .description {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
  max-width: 600px;
  color: var(--body-light-color);
  text-align: center;
  margin: 0px auto 40px auto;
}
@media screen and (max-width: 991px) {
  .clients-v10 .description {
    max-width: 100%;
  }
}
.clients-v10 .clients-box {
  height: 200px;
  align-items: flex-end;
  justify-content: center;
  display: flex;
  padding: 32px;
  margin-bottom: 30px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  box-shadow: 1px 1px 3px var(--bg-backdrop);
}
@media screen and (max-width: 991px) {
  .clients-v10 .clients-box {
    padding: 18px;
  }
}
.clients-v10 .clients-box::before {
  border-radius: 6px;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0.8), transparent);
}
.clients-v10 .clients-box img {
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  transition: all 0.2s;
  transform-style: preserve-3d;
  filter: grayscale(100);
}
@media screen and (max-width: 991px) {
  .clients-v10 .clients-box img {
    max-height: 80px;
  }
}
.clients-v10 .clients-box:hover img {
  filter: none;
}
@media screen and (max-width: 991px) {
  .clients-v10 .clients-box {
    height: 140px;
  }
}
.clients-v10 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v10 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v10 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

@media screen and (max-width: 991px) {
  .clients-v11 .heading-2,
  .clients-v11 .description {
    text-align: center;
  }
}
.clients-v11 .description {
  color: var(--body-light-color);
}
.clients-v11 .swiper-slide {
  height: 160px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: transparent;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  position: relative;
  transform: transition 0.3s all ease-in;
}
.clients-v11 .swiper-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 20px;
  transform: transition 0.3s all ease-in;
}
.clients-v11 .swiper-slide:hover::before {
  left: 5px;
  top: 5px;
}
.clients-v11 .swiper-slide:nth-child(odd):before {
  border: 1px solid var(--primary);
}
.clients-v11 .swiper-slide:nth-child(even):before {
  border: 1px solid var(--tertiary-color);
}
.clients-v11 .swiper-slide img,
.clients-v11 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v11 .swiper-button-next1,
.clients-v11 .swiper-button-prev1 {
  margin: 0 5px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
}
.clients-v11 .swiper-button-next1:hover,
.clients-v11 .swiper-button-prev1:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .clients-v11 .swiper-button-next1,
  .clients-v11 .swiper-button-prev1 {
    width: 40px;
    height: 40px;
  }
}
.clients-v11 .swiper-button-next1 svg,
.clients-v11 .swiper-button-prev1 svg {
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  fill: var(--text-primary);
  padding: 12px;
}
.clients-v11 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v11 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v11 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.clients-v12 {
  background-size: cover;
  background-position: center right;
}
.clients-v12 .swiper-client-v12 {
  background-color: var(--white);
  padding: 0px 25px;
}
.clients-v12 .spildy-clients {
  z-index: 1;
}
.clients-v12 .spildy-clients .text-zindex-v12 {
  z-index: 2;
}
.clients-v12 .heading-2,
.clients-v12 .description {
  color: var(--text-secondary);
}
@media screen and (max-width: 991px) {
  .clients-v12 .heading-2,
  .clients-v12 .description {
    text-align: center;
  }
}
.clients-v12 .heading-2 {
  padding-right: 45px;
}
.clients-v12 .circle-wave-v12-svg {
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  z-index: 0;
  width: 120px;
}
.clients-v12 .circle-wave-v12-svg path {
  fill: var(--text-secondary);
}
@media screen and (max-width: 991px) {
  .clients-v12 .circle-wave-v12-svg {
    right: 20px;
    top: 10px;
    left: unset;
    transform: none;
    z-index: 0;
    width: 80px;
    height: 60px;
  }
}
.clients-v12 .swiper-slide {
  height: 140px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: transparent;
  padding: 24px;
  background: var(--white);
  border-radius: 0px;
  position: relative;
  border: 1px solid var(--border-c);
}
.clients-v12 .swiper-slide:hover {
  border: 1px solid var(--secondary);
}
.clients-v12 .swiper-slide img,
.clients-v12 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v12 .w-50 {
  z-index: 0;
  width: 50% !important;
  background-color: rgba(var(--secondary-rgb), 1);
}
@media screen and (max-width: 991px) {
  .clients-v12 .w-50 {
    height: 80%;
    width: 100% !important;
  }
}
.clients-v12 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v12 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
    text-align: center;
  }
}
.clients-v12 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}

.clients-v13 {
  border-radius: 20px;
  margin: 20px;
  position: relative;
}
.clients-v13 .svg-wrapper-bottom {
  z-index: 1;
}
.clients-v13 .svg-wrapper-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  border-radius: 20px;
  bottom: 0;
  width: 650px;
  height: 480px;
  background-color: rgba(var(--tertiary-rgb), 0.3);
  -webkit-clip-path: circle(39.3% at 13% 93%);
          clip-path: circle(39.3% at 13% 93%);
  z-index: 0;
  transition: width 0.3s ease, height 0.3s ease;
}
@media (max-width: 991px) {
  .clients-v13 .svg-wrapper-bottom::after {
    width: 350px;
    height: 120px;
    -webkit-clip-path: circle(39.3% at 13% 93%);
            clip-path: circle(39.3% at 13% 93%);
  }
}
@media (max-width: 768px) {
  .clients-v13 .svg-wrapper-bottom::after {
    width: 180px;
    height: 80px;
    -webkit-clip-path: circle(39.3% at 13% 93%);
            clip-path: circle(39.3% at 13% 93%);
  }
}
.clients-v13 .heading-2,
.clients-v13 .description,
.clients-v13 .name-v13 {
  color: var(--text-primary);
}
@media screen and (max-width: 991px) {
  .clients-v13 .heading-2,
  .clients-v13 .description,
  .clients-v13 .name-v13 {
    text-align: center;
  }
}
.clients-v13 .swiper-client-v13 {
  border-radius: 20px;
  background: var(--white);
}
.clients-v13 .name-v13 {
  color: var(--text-primary);
  font-size: var(--size-5);
  line-height: var(--size-6);
  margin-bottom: 10px;
}
.clients-v13 .swiper-slide {
  height: 120px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: transparent;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  position: relative;
}
.clients-v13 .swiper-slide img,
.clients-v13 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v13 .swiper-button-next1,
.clients-v13 .swiper-button-prev1 {
  margin: 0 5px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
}
.clients-v13 .swiper-button-next1:hover,
.clients-v13 .swiper-button-prev1:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .clients-v13 .swiper-button-next1,
  .clients-v13 .swiper-button-prev1 {
    width: 40px;
    height: 40px;
  }
}
.clients-v13 .swiper-button-next1 svg,
.clients-v13 .swiper-button-prev1 svg {
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  border-radius: 50%;
  fill: var(--primary);
  padding: 12px;
}
.clients-v13 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  border-radius: 12px;
  background-color: var(--secondary);
  color: var(--text-secondary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .clients-v13 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v13 .cta-button:hover {
  background: var(--secondary-hover);
  border: 1.5px solid var(--secondary-hover);
}

.clients-v14 {
  background: url("https://spaidy.blob.core.windows.net/assets/images/bg-client-v14.png"), linear-gradient(90deg, var(--secondary) 0%, rgba(var(--primary-rgb), 0) 100%), linear-gradient(90deg, rgba(var(--primary-rgb), 0) 0%, rgba(var(--secondary-rgb), 0.5) 100%), var(--primary);
}
.clients-v14 .heading-2,
.clients-v14 .description {
  text-align: center;
  color: var(--text-secondary);
}
@media screen and (max-width: 991px) {
  .clients-v14 .heading-2,
  .clients-v14 .description {
    text-align: center;
  }
}
.clients-v14 .swiper-slide {
  height: 100px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: transparent;
  position: relative;
}
.clients-v14 .swiper-slide img,
.clients-v14 .swiper-slide svg {
  max-height: 100%;
  max-width: 100%;
}
.clients-v14 .swiper-slide .section-option-edit-image svg, .clients-v14 .swiper-slide .section-option-repeat svg, .clients-v14 .swiper-slide .section-option-delete svg {
  filter: initial !important;
}
.clients-v14 .swiper-button-next1,
.clients-v14 .swiper-button-prev1 {
  margin: 0 5px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
}
.clients-v14 .swiper-button-next1:hover,
.clients-v14 .swiper-button-prev1:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .clients-v14 .swiper-button-next1,
  .clients-v14 .swiper-button-prev1 {
    width: 40px;
    height: 40px;
  }
}
.clients-v14 .swiper-button-next1 svg,
.clients-v14 .swiper-button-prev1 svg {
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  border-radius: 50%;
  fill: var(--primary);
  padding: 12px;
}
.clients-v14 .cta-button {
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  padding: 12px 35px;
  min-height: 45px;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
  border-radius: 34px;
  background-color: var(--primary);
  color: var(--text-primary);
  display: inline-block;
  text-transform: capitalize;
  text-decoration: none;
  border: 1.5px solid var(--primary);
}
@media screen and (max-width: 767px) {
  .clients-v14 .cta-button {
    padding: 8px 20px;
    min-height: 40px;
  }
}
.clients-v14 .cta-button:hover {
  background: var(--primary-hover);
  border: 1.5px solid var(--primary-hover);
}/*# sourceMappingURL=clients.css.map */ .spildy-contact-us .contact-us-bg {
  background-color: var(--white);
}
.spildy-contact-us .contact-us-tb-space {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .spildy-contact-us .contact-us-tb-space {
    padding: 50px 0px;
  }
}
.spildy-contact-us img,
.spildy-contact-us svg {
  max-width: 100%;
  max-height: 100%;
}
.spildy-contact-us .error-message,
.spildy-contact-us .email-format-error-message,
.spildy-contact-us .phone-format-error-message {
  display: none;
  font-size: var(--size-3);
}

.contact-us-v1 {
  font-family: var(--body-font-family);
}
.contact-us-v1 .form-control {
  background-color: var(--light-bg);
  border-color: var(--border-c);
  border-radius: var(--size-base);
  -webkit-border-radius: var(--size-base);
  -moz-border-radius: var(--size-base);
  font-size: var(--body-fs);
}
.contact-us-v1 .form-control:focus {
  border-color: var(--primary);
}
.contact-us-v1 textarea.form-control {
  height: 100%;
}
.contact-us-v1 .spildy-btn {
  background-color: var(--primary);
  padding: 12px 16px;
  border: 1px var(--primary) solid;
  text-transform: uppercase;
  font-size: var(--body-fs);
  color: var(--text-primary);
  font-family: var(--body-font-family);
  cursor: pointer;
}
.contact-us-v1 .spildy-btn:hover {
  background-color: var(--primary-hover);
  border: 1px var(--primary-hover) solid;
}

.contact-us-v2 {
  font-family: var(--body-font-family);
}
.contact-us-v2 .contact-us-bg {
  background-color: var(--light-bg);
}
.contact-us-v2 .form-input-icon {
  position: relative;
}
.contact-us-v2 .form-input-icon .form-icon {
  position: absolute;
  left: 10px;
  top: 18px;
}
.contact-us-v2 .form-input-icon .form-icon img {
  max-height: 22px;
}
.contact-us-v2 .form-input-icon .form-control {
  padding-left: 40px;
}
.contact-us-v2 .form-control {
  background-color: var(--white);
  border-color: var(--border-c);
  font-size: var(--body-fs);
}
.contact-us-v2 .form-control:focus {
  border-color: var(--primary);
}
.contact-us-v2 textarea.form-control {
  min-height: 80px;
}
.contact-us-v2 .spildy-btn {
  background-color: var(--primary);
  padding: 12px 16px;
  border: 1px var(--primary) solid;
  text-transform: uppercase;
  font-size: var(--body-fs);
  color: var(--text-primary);
  font-family: var(--body-font-family);
  cursor: pointer;
}
.contact-us-v2 .spildy-btn:hover {
  background-color: var(--primary-hover);
  border: 1px var(--primary-hover) solid;
}

.contact-us-v3 {
  font-family: var(--body-font-family);
}
.contact-us-v3 ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: var(--default-font-size);
  color: var(--white);
}
.contact-us-v3 ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: var(--default-font-size);
  color: var(--white) !important;
}
.contact-us-v3 :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: var(--default-font-size);
  color: var(--white);
}
.contact-us-v3 .title {
  color: var(--white);
}
.contact-us-v3 .description {
  color: var(--white);
}
.contact-us-v3 .contact-us-bg {
  background-color: var(--light-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}
.contact-us-v3 .contact-us-bg::after {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  content: "";
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.contact-us-v3 .main-form-control {
  position: relative;
  z-index: 1;
}
.contact-us-v3 .mr-one {
  margin-right: 1px;
}
@media (max-width: 576px) {
  .contact-us-v3 .mr-one {
    margin-right: 0px;
  }
}
.contact-us-v3 .mb-one {
  margin-bottom: 1px;
}
.contact-us-v3 .form-control {
  background-color: transparent;
  border-color: var(--border-c);
  color: var(--white);
  font-size: var(--body-fs);
}
.contact-us-v3 .form-control:focus {
  border-color: var(--primary);
}
.contact-us-v3 textarea.form-control {
  min-height: 80px;
}
.contact-us-v3 .spildy-btn {
  background-color: var(--white);
  padding: 12px 16px;
  border: none;
  text-transform: uppercase;
  font-size: var(--body-fs);
  color: var(--heading-c);
  font-family: var(--body-font-family);
  display: block;
  width: 100%;
  cursor: pointer;
}
.contact-us-v3 .spildy-btn:hover {
  background-color: var(--primary-hover);
  color: var(--text-primary);
}

.contact-us-v4 {
  font-family: var(--body-font-family);
}
.contact-us-v4 .title {
  color: var(--heading-c);
}
.contact-us-v4 .description {
  color: var(--body-tc);
}
.contact-us-v4 .contact-us-bg {
  background-color: var(--light-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}
.contact-us-v4 .contact-us-bg::after {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  content: "";
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.contact-us-v4 .main-form-control {
  position: relative;
  z-index: 1;
}
.contact-us-v4 .main-form-control .contacts-box {
  background-color: var(--white);
  padding: 30px;
  border: 15px var(--light-bg) solid;
}
.contact-us-v4 .form-control {
  background-color: var(--white);
  border-color: var(--border-c);
  border-width: 0px 0px 1px 0px;
  color: var(--body-tc);
  padding-left: 0px;
  font-size: var(--body-fs);
}
.contact-us-v4 .form-control:focus {
  border-color: var(--primary);
}
.contact-us-v4 textarea.form-control {
  min-height: 80px;
}
.contact-us-v4 .spildy-btn {
  background-color: var(--primary);
  padding: 12px 16px;
  border: 1px var(--primary) solid;
  text-transform: uppercase;
  font-size: var(--body-fs);
  color: var(--text-primary);
  font-family: var(--body-font-family);
  display: block;
  width: 100%;
  cursor: pointer;
}
.contact-us-v4 .spildy-btn:hover {
  background-color: var(--primary-hover);
  border: 1px var(--primary-hover) solid;
}

.contact-us-v5 {
  font-family: var(--body-font-family);
}
.contact-us-v5 .contact-us-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .contact-us-v5 .contact-us-bg {
    height: 200px;
  }
}
.contact-us-v5 .contacts-box {
  padding: 0px 15px;
}
.contact-us-v5 .form-control {
  background-color: var(--light-bg);
  border-color: var(--border-c);
  color: var(--body-tc);
  border-radius: var(--size-base);
  -webkit-border-radius: var(--size-base);
  -moz-border-radius: var(--size-base);
  font-size: var(--body-fs);
}
.contact-us-v5 .form-control:focus {
  border-color: var(--primary);
}
.contact-us-v5 textarea.form-control {
  min-height: 80px;
}
.contact-us-v5 .spildy-btn {
  background-color: var(--primary);
  padding: 12px 16px;
  border: 1px var(--primary) solid;
  text-transform: uppercase;
  font-size: var(--body-fs);
  color: var(--text-primary);
  cursor: pointer;
  display: block;
  width: 100%;
  border-radius: var(--size-base);
  -webkit-border-radius: var(--size-base);
  -moz-border-radius: var(--size-base);
  font-family: var(--body-font-family);
}
.contact-us-v5 .spildy-btn:hover {
  background-color: var(--primary-hover);
  border: 1px var(--primary-hover) solid;
  color: var(--white);
}

.contact-us-v6 {
  font-family: var(--body-font-family);
}
.contact-us-v6 .contact-us-bg {
  background-color: var(--primary);
  color: var(--white);
  padding: 0px;
  text-align: left;
}
.contact-us-v6 .contact-us-bg .title {
  font-size: var(--size-10);
  line-height: var(--size-12);
  color: var(--text-primary);
  font-family: var(--heading-font-family);
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .contact-us-v6 .contact-us-bg .title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-us-v6 .contact-us-bg .title {
    font-size: var(--size-14);
    line-height: var(--size-16);
  }
}
.contact-us-v6 .contact-us-bg .description {
  font-size: var(--size-4);
  line-height: initial;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.contact-us-v6 .contact-us-bg .font-bold {
  font-weight: bold;
}
.contact-us-v6 .contact-us-bg .sub-heading {
  font-size: var(--size-6);
  color: var(--text-primary);
  line-height: initial;
  margin-bottom: 10px;
  font-weight: normal;
}
.contact-us-v6 .contact-us-bg .heading-top {
  font-size: var(--size-8);
  color: var(--text-primary);
  line-height: initial;
  margin: 0;
  font-weight: normal;
}
.contact-us-v6 .contact-us-bg .anchor-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v6 .contact-us-bg .email-link-edit .section-option-edit-link {
  right: 23px !important;
  top: 2px !important;
}
.contact-us-v6 .contact-us-bg .email-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v6 .contact-us-bg .email-link:hover {
  text-decoration: underline;
  color: var(--text-primary);
}
.contact-us-v6 .contact-us-bg .svg-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  margin-right: 20px;
}
.contact-us-v6 .contact-us-bg .svg-icon path {
  fill: var(--text-primary);
}
@media (max-width: 576px) {
  .contact-us-v6 .contact-us-bg {
    height: auto;
    padding: 0px;
  }
}
.contact-us-v6 .contacts-box {
  border-radius: 20px;
  padding: 35px 0px 50px 0px;
  background-color: var(--black-opacity-30);
}
@media screen and (max-width: 991px) {
  .contact-us-v6 .contacts-box {
    margin-top: 40px;
    padding: 35px;
  }
}
@media screen and (max-width: 991px) {
  .contact-us-v6 .contacts-box {
    margin-top: 40px;
    padding: 20px;
  }
}
.contact-us-v6 .contacts-box label {
  font-size: 14px;
  color: var(--text-primary);
}
.contact-us-v6 .contacts-box label a {
  color: var(--text-primary);
  text-decoration: none;
}
.contact-us-v6 .contacts-box label a:hover {
  color: var(--text-primary);
  text-decoration: none;
}
.contact-us-v6 .contacts-box .form-control {
  background-color: var(--white);
  border-color: var(--border-c);
  color: var(--body-tc);
  border-radius: var(--size-base);
  font-size: var(--body-fs);
}
.contact-us-v6 .contacts-box .form-control:focus {
  border-color: var(--border-c);
}
.contact-us-v6 .contacts-box textarea.form-control {
  min-height: 100px;
}
.contact-us-v6 .contacts-box .spildy-btn {
  background-color: var(--secondary);
  padding: 12px 16px;
  border: 1px solid var(--secondary);
  text-transform: uppercase;
  font-size: var(--body-fs);
  color: var(--text-secondary);
  cursor: pointer;
  display: block;
  width: 100%;
  border-radius: 30px;
}
.contact-us-v6 .contacts-box .spildy-btn:hover {
  background-color: var(--secondary-hover);
  border: 1px solid var(--secondary-hover);
}
.contact-us-v6 .contacts-box textarea::-moz-placeholder, .contact-us-v6 .contacts-box select::-moz-placeholder, .contact-us-v6 .contacts-box input::-moz-placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v6 .contacts-box textarea::placeholder,
.contact-us-v6 .contacts-box select::placeholder,
.contact-us-v6 .contacts-box input::placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v6 .contacts-box .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.contact-us-v6 .contacts-box .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.contact-us-v6 .contacts-box .styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 1px solid var(--border-c);
  border-radius: 2px;
}
.contact-us-v6 .contacts-box .styled-checkbox:hover + label:before {
  background: var(--secondary);
}
.contact-us-v6 .contacts-box .styled-checkbox:checked + label:before {
  background: var(--secondary);
}
.contact-us-v6 .contacts-box .styled-checkbox:disabled + label {
  color: rgba(var(--secondary-rgb), 0.2);
  cursor: auto;
}
.contact-us-v6 .contacts-box .styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.contact-us-v6 .contacts-box .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  background: var(--text-secondary);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 var(--text-secondary), 4px 0 0 var(--text-secondary), 4px -2px 0 var(--text-secondary), 4px -4px 0 var(--text-secondary), 4px -6px 0 var(--text-secondary), 4px -8px 0 var(--text-secondary);
  transform: rotate(45deg);
}
.contact-us-v6 .contacts-box .tc-link .section-option-edit-link {
  right: 23px !important;
  top: 2px !important;
}

.contact-us-v7 {
  font-family: var(--body-font-family);
}
.contact-us-v7.contact-us-bg {
  background-color: var(--primary);
  color: var(--text-primary);
  text-align: left;
}
@media screen and (max-width: 991px) {
  .contact-us-v7.contact-us-bg {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
.contact-us-v7.contact-us-bg .title {
  color: var(--text-primary);
  margin-bottom: var(--size-10);
  font-size: var(--size-10);
  line-height: var(--size-12);
}
@media screen and (max-width: 991px) {
  .contact-us-v7.contact-us-bg .title {
    margin-bottom: var(--size-3);
  }
}
@media screen and (min-width: 1280px) {
  .contact-us-v7.contact-us-bg .title {
    font-size: var(--size-14);
    line-height: var(--size-16);
  }
}
.contact-us-v7.contact-us-bg .description {
  font-size: var(--size-4);
  line-height: initial;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-family: var(--body-font-family);
}
.contact-us-v7.contact-us-bg .font-bold {
  font-weight: bold;
}
.contact-us-v7.contact-us-bg .contact-img {
  width: auto;
  height: 346px;
}
@media screen and (max-width: 991px) {
  .contact-us-v7.contact-us-bg .contact-img {
    display: none;
  }
}
.contact-us-v7.contact-us-bg .sub-heading {
  font-size: var(--size-6);
  color: var(--text-primary);
  line-height: initial;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
}
.contact-us-v7.contact-us-bg .heading-top {
  color: var(--text-primary);
}
.contact-us-v7.contact-us-bg .contact-badge {
  margin: 0px auto 10px auto;
  background-color: var(--secondary);
  color: var(--text-secondary);
  font-size: var(--size-3);
}
.contact-us-v7.contact-us-bg .anchor-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v7.contact-us-bg .anchor-link:hover {
  text-decoration: underline;
  color: var(--text-primary);
}
.contact-us-v7.contact-us-bg .email-edit-link .section-option-edit-link {
  right: 23px !important;
  top: 3px !important;
}
.contact-us-v7.contact-us-bg .email-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v7.contact-us-bg .email-link:hover {
  text-decoration: underline;
  color: var(--text-primary);
}
.contact-us-v7.contact-us-bg .contact-icon {
  width: 22px;
  height: 22px;
  margin-right: 15px;
  min-width: 22px;
}
.contact-us-v7.contact-us-bg .contact-icon path {
  fill: var(--text-primary);
}
.contact-us-v7.contact-us-bg .address-description {
  color: var(--text-primary);
  max-width: 275px;
  margin-bottom: 10px;
  font-size: var(--size-4);
  font-family: var(--body-font-family);
  line-height: initial;
  font-weight: normal;
}
@media (max-width: 576px) {
  .contact-us-v7.contact-us-bg {
    height: auto;
    padding: 50px 20px;
  }
}
.contact-us-v7 .contacts-box {
  border-radius: 20px;
  padding: 30px;
  background-color: var(--white);
  box-shadow: 8px 8px 0px var(--tertiary-color);
}
.contact-us-v7 .contacts-box .tc-link {
  color: var(--body-tc);
  text-decoration: none;
}
.contact-us-v7 .contacts-box .tc-link:hover {
  color: var(--secondary-hover);
}
.contact-us-v7 .contacts-box .tc-link .section-option-edit-link {
  right: 23px !important;
  top: 2px;
}
.contact-us-v7 .contacts-box .text-c {
  color: var(--body-tc);
}
@media screen and (max-width: 991px) {
  .contact-us-v7 .contacts-box {
    margin-top: 40px;
    padding: 35px;
  }
}
@media screen and (max-width: 575px) {
  .contact-us-v7 .contacts-box {
    margin-top: 40px;
    padding: 20px 10px;
  }
}
.contact-us-v7 .contacts-box label {
  font-size: 14px;
  color: var(--body-tc);
}
.contact-us-v7 .contacts-box .form-control {
  background-color: var(--white);
  border-color: var(--border-c);
  color: var(--body-tc);
  border-radius: var(--size-base);
  font-size: var(--body-fs);
}
.contact-us-v7 .contacts-box .form-control:focus {
  border-color: var(--primary);
}
.contact-us-v7 .contacts-box textarea.form-control {
  min-height: 250px;
  color: var(--body-tc);
}
.contact-us-v7 .contacts-box textarea::-moz-placeholder, .contact-us-v7 .contacts-box select::-moz-placeholder, .contact-us-v7 .contacts-box input::-moz-placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v7 .contacts-box textarea::placeholder,
.contact-us-v7 .contacts-box select::placeholder,
.contact-us-v7 .contacts-box input::placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v7 .contacts-box .spildy-btn {
  text-transform: capitalize;
  background-color: var(--secondary);
  padding: 12px 16px;
  border: 1px solid var(--secondary);
  font-size: var(--body-fs);
  color: var(--text-secondary);
  cursor: pointer;
  display: block;
  width: 100%;
  border-radius: 6px;
}
.contact-us-v7 .contacts-box .spildy-btn:hover {
  background-color: var(--secondary-hover);
  border: 1px solid var(--secondary-hover);
}
.contact-us-v7 .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.contact-us-v7 .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.contact-us-v7 .styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 1px solid var(--border-c);
  border-radius: 2px;
}
.contact-us-v7 .styled-checkbox:hover + label:before {
  background: var(--secondary);
}
.contact-us-v7 .styled-checkbox:checked + label:before {
  background: var(--secondary);
}
.contact-us-v7 .styled-checkbox:disabled + label {
  color: rgba(var(--secondary-rgb), 0.2);
  cursor: auto;
}
.contact-us-v7 .styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.contact-us-v7 .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  background: var(--text-secondary);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 var(--text-secondary), 4px 0 0 var(--text-secondary), 4px -2px 0 var(--text-secondary), 4px -4px 0 var(--text-secondary), 4px -6px 0 var(--text-secondary), 4px -8px 0 var(--text-secondary);
  transform: rotate(45deg);
}
.contact-us-v7 .contact-info {
  padding-right: 60px;
}
@media screen and (max-width: 991px) {
  .contact-us-v7 .contact-info {
    padding: 0px;
  }
}
.contact-us-v7 .contact-img-v7 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.contact-us-v7 .contact-img-v7.img-max-height1 {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .contact-us-v7 .contact-img-v7.img-max-height1 {
    height: 220px;
  }
}
.contact-us-v7 .contact-img-v7.img-max-height2 {
  width: 100%;
  height: 320px;
  margin-bottom: 10px;
}
@media screen and (max-width: 567px) {
  .contact-us-v7 .contact-img-v7.img-max-height2 {
    height: 220px;
    margin-left: 0px;
  }
}

.contact-us-v8 {
  font-family: var(--body-font-family);
}
.contact-us-v8 .contact-us-bg {
  min-height: 400px;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.contact-us-v8 .contact-us-bg .svg-pearl {
  position: absolute;
  left: 50.1%;
  top: 50.6%;
  z-index: 5;
  transform: translate(-50.1%, -50.6%);
}
@media screen and (max-width: 991px) {
  .contact-us-v8 .contact-us-bg .svg-pearl {
    display: none;
  }
}
.contact-us-v8 .contact-us-bg .svg-pearl svg {
  width: 77px;
  height: 81px;
  fill: var(--secondary);
}
.contact-us-v8 .contact-us-bg .c-margin {
  margin: 0;
}
.contact-us-v8 .contact-us-bg .label-text {
  color: var(--heading-c);
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
}
.contact-us-v8 .title {
  font-size: var(--size-10);
  line-height: var(--size-12);
  color: var(--heading-c);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: var(--heading-font-family);
}
@media screen and (max-width: 991px) {
  .contact-us-v8 .title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-us-v8 .title {
    font-size: var(--size-14);
    line-height: var(--size-16);
  }
}
.contact-us-v8 .description {
  font-size: var(--size-4);
  line-height: initial;
  color: var(--heading-c);
  margin-bottom: 20px;
  margin-top: 0;
  font-family: var(--body-font-family);
}
.contact-us-v8 .font-bold {
  font-weight: bold;
}
.contact-us-v8 .sub-heading {
  font-size: var(--size-8);
  color: var(--text-primary);
  line-height: var(--size-10);
  margin: 0;
  font-family: var(--heading-font-family);
}
.contact-us-v8 .name {
  font-size: var(--size-6);
  color: var(--text-primary);
  line-height: initial;
  margin: 20px 0 0 0;
  font-weight: normal;
  font-family: var(--heading-font-family);
}
.contact-us-v8 .form-control {
  background-color: var(--white);
  border-color: var(--heading-c);
  color: var(--body-tc);
  font-size: var(--body-fs);
}
.contact-us-v8 .form-control:focus {
  border-color: var(--border-c);
}
.contact-us-v8 textarea.form-control {
  min-height: 150px;
  color: var(--body-tc);
}
.contact-us-v8 textarea::-moz-placeholder, .contact-us-v8 select::-moz-placeholder, .contact-us-v8 input::-moz-placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v8 textarea::placeholder,
.contact-us-v8 select::placeholder,
.contact-us-v8 input::placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v8 .contact-form-section {
  background-color: var(--white);
}
.contact-us-v8 .contact-form-section .form-container {
  padding: 0px 40px 0px 40px;
}
@media screen and (max-width: 991px) {
  .contact-us-v8 .contact-form-section .form-container {
    padding: 0px 0px;
  }
}
.contact-us-v8 .contact-image-section {
  background-color: var(--light-bg);
  height: 100%;
}
.contact-us-v8 .contact-image-section .block-container {
  display: block;
  height: 100%;
}
.contact-us-v8 .contact-image-section .block-container .col-item1 {
  background: var(--primary);
  height: 50%;
  padding: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .contact-us-v8 .contact-image-section .block-container .col-item1 {
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  .contact-us-v8 .contact-image-section .block-container .col-item1 {
    height: auto;
  }
}
.contact-us-v8 .contact-image-section .block-container .col-item1 .description {
  color: var(--text-primary);
}
.contact-us-v8 .contact-image-section .block-container .col-item2 {
  background: var(--primary);
  height: 50%;
  padding: 0px;
}
.contact-us-v8 .contact-image-section .block-container .col-item2 .contact-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.contact-us-v8 .spildy-btn {
  text-transform: capitalize;
  background-color: var(--primary);
  padding: 12px 16px;
  border: 1px solid var(--primary);
  font-size: var(--body-fs);
  color: var(--text-primary);
  cursor: pointer;
  display: block;
  max-width: 100%;
}
.contact-us-v8 .spildy-btn:hover {
  background-color: var(--primary-hover);
  border: 1px solid var(--primary-hover);
}

.contact-us-v9 {
  font-family: var(--body-font-family);
}
.contact-us-v9 .contact-us-bg {
  min-height: 400px;
}
.contact-us-v9 .contact-us-bg .c-margin {
  margin: 0;
}
.contact-us-v9 .contact-us-bg .label-text {
  color: var(--heading-c);
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
}
.contact-us-v9 .title {
  font-size: var(--size-10);
  line-height: var(--size-12);
  color: var(--heading-c);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: var(--heading-font-family);
}
@media screen and (max-width: 991px) {
  .contact-us-v9 .title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-us-v9 .title {
    font-size: var(--size-14);
    line-height: var(--size-16);
  }
}
.contact-us-v9 .info-text {
  font-size: 10px;
  color: var(--heading-c);
}
.contact-us-v9 .info-text a {
  text-decoration: underline;
  color: var(--heading-c);
  font-size: 10px;
}
.contact-us-v9 .info-text a:hover {
  color: var(--secondary);
}
.contact-us-v9 .description {
  font-size: var(--size-4);
  line-height: initial;
  color: var(--heading-c);
  margin-bottom: 20px;
  margin-top: 0;
  font-family: var(--body-font-family);
}
.contact-us-v9 .font-bold {
  font-weight: bold;
}
.contact-us-v9 .sub-heading {
  font-size: var(--size-8);
  color: var(--heading-c);
  line-height: initial;
  margin: 0;
  font-family: var(--heading-font-family);
}
.contact-us-v9 .name {
  font-size: var(--size-4);
  color: var(--heading-c);
  line-height: initial;
  margin: 20px 0 0 0;
  font-weight: 500;
  font-family: var(--heading-font-family);
}
.contact-us-v9 .form-control {
  background-color: var(--white);
  border-color: var(--heading-c);
  color: var(--body-tc);
  font-size: var(--body-fs);
}
.contact-us-v9 .form-control:focus {
  border-color: var(--border-c);
}
.contact-us-v9 textarea.form-control {
  min-height: 120px;
  color: var(--body-tc);
}
.contact-us-v9 textarea::-moz-placeholder, .contact-us-v9 select::-moz-placeholder, .contact-us-v9 input::-moz-placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v9 textarea::placeholder,
.contact-us-v9 select::placeholder,
.contact-us-v9 input::placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v9 .contact-form-section {
  background-color: var(--white);
}
.contact-us-v9 .contact-form-section .form-container {
  padding: 0px 40px 0px 0px;
}
@media screen and (max-width: 991px) {
  .contact-us-v9 .contact-form-section .form-container {
    padding: 0px;
  }
}
.contact-us-v9 .bordered-box {
  height: 100%;
  padding-left: 30px;
  border-top: 1.5px solid var(--border-c);
}
@media screen and (min-width: 768px) {
  .contact-us-v9 .bordered-box {
    border-left: 1.5px solid var(--border-c);
    border-top: none;
  }
}
@media (max-width: 768px) {
  .contact-us-v9 .bordered-box {
    padding-top: 20px;
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .contact-us-v9 .bordered-box.first-box {
    border-left: none;
    padding-left: 0px;
  }
}
.contact-us-v9 .bordered-box .icon-wrapper {
  max-width: 200px;
}
.contact-us-v9 .bordered-box .svg-icon {
  width: 40px;
  height: 40px;
}
.contact-us-v9 .bordered-box .svg-icon path {
  fill: var(--heading-c);
}
.contact-us-v9 .map-box {
  width: 100%;
}
.contact-us-v9 .map-box .img-width {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-us-v9 .spildy-btn {
  text-transform: capitalize;
  background-color: var(--primary);
  padding: 12px 16px;
  border: 1px solid var(--primary);
  font-size: var(--body-fs);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  max-width: 100%;
}
.contact-us-v9 .spildy-btn:hover {
  background-color: var(--primary-hover);
  border: 1px solid var(--primary-hover);
}
.contact-us-v9 .svg-icon-info {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.contact-us-v9 .svg-icon-info path {
  fill: var(--heading-c);
}
.contact-us-v9 .anchor-link {
  color: var(--body-tc);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v9 .email-link {
  color: var(--body-tc);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v9 .email-link:hover {
  text-decoration: underline;
  color: var(--secondary);
}
.contact-us-v9 .email-link .section-option-edit-link {
  right: 23px !important;
  top: 2px;
}

.contact-us-v10 {
  font-family: var(--body-font-family);
}
.contact-us-v10 .contact-us-bg {
  background-color: var(--primary);
  position: relative;
}
.contact-us-v10 .contact-info-text {
  margin: 0;
}
.contact-us-v10 .icon-container {
  position: absolute;
  height: 120px;
  width: 120px;
  opacity: 1;
}
.contact-us-v10 .icon-container.decorator1-svg {
  top: 0%;
  right: 9%;
}
@media screen and (max-width: 767px) {
  .contact-us-v10 .icon-container.decorator1-svg {
    top: 0%;
    right: 2%;
  }
}
.contact-us-v10 .icon-container.decorator2-svg {
  top: 60%;
  left: 3%;
}
@media screen and (max-width: 767px) {
  .contact-us-v10 .icon-container.decorator2-svg {
    top: 40%;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .contact-us-v10 .icon-container {
    height: 50px;
    width: 50px;
  }
}
.contact-us-v10 .title {
  font-size: var(--size-10);
  line-height: var(--size-12);
  color: var(--text-primary);
  margin: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .contact-us-v10 .title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-us-v10 .title {
    font-size: var(--size-14);
    line-height: var(--size-16);
  }
}
.contact-us-v10 .sub-heading {
  font-size: var(--size-5);
  color: var(--heading-c);
  margin: 0px;
  font-family: var(--heading-font-family);
}
.contact-us-v10 .description {
  font-size: var(--size-4);
  color: var(--text-primary);
  font-family: var(--body-font-family);
  max-width: 650px;
  margin: 0px auto 20px auto;
}
@media screen and (max-width: 991px) {
  .contact-us-v10 .description {
    max-width: 100%;
  }
}
.contact-us-v10 .font-bold {
  font-weight: bold;
}
.contact-us-v10 .secondary-text {
  color: var(--text-secondary);
}
.contact-us-v10 .form-input-icon {
  position: relative;
}
.contact-us-v10 .form-input-icon .form-icon {
  position: absolute;
  left: 10px;
  top: 18px;
}
.contact-us-v10 .form-input-icon .form-icon .svg-icon {
  width: 22px;
  height: 22px;
}
.contact-us-v10 .form-input-icon .form-icon .svg-icon path {
  fill: var(--heading-c);
}
.contact-us-v10 .form-input-icon .form-icon .svg-icon-stroke {
  width: 22px;
  height: 22px;
}
.contact-us-v10 .form-input-icon .form-icon .svg-icon-stroke path {
  stroke: var(--heading-c);
}
.contact-us-v10 .form-input-icon .form-icon img {
  max-height: 22px;
}
.contact-us-v10 .form-input-icon .form-control {
  padding-left: 40px;
}
.contact-us-v10 .form-control {
  background-color: var(--white);
  border-color: var(--border-c);
  font-size: var(--body-fs);
}
.contact-us-v10 .form-control:focus {
  border-color: var(--body-tc);
}
.contact-us-v10 textarea.form-control {
  min-height: 80px;
}
.contact-us-v10 .spildy-btn {
  background-color: var(--secondary);
  padding: 0px 0px 0px 0px;
  border: 0px var(--secondary) solid;
  text-transform: uppercase;
  font-size: var(--body-fs);
  color: var(--text-secondary);
  font-family: var(--body-font-family);
  display: flex;
  align-items: stretch;
  height: 45px;
  cursor: pointer;
  text-transform: uppercase;
}
.contact-us-v10 .spildy-btn .arrow-icon-wrapper {
  width: 45px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}
.contact-us-v10 .spildy-btn .arrow-icon-wrapper .arrow-icon {
  width: 12px;
  height: 12px;
  fill: var(--white);
}
.contact-us-v10 .spildy-btn:hover {
  background-color: var(--secondary-hover);
}
.contact-us-v10 .contact-info-box {
  background: var(--white);
  padding: 20px;
  height: 100%;
}
.contact-us-v10 .contact-info-box .contact-icon-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
}
.contact-us-v10 .contact-info-box .contact-icon-wrapper:hover {
  background-color: var(--primary-hover);
}
@media screen {
  .contact-us-v10 .contact-info-box .contact-icon-wrapper {
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
  }
}
.contact-us-v10 .contact-info-box .contact-icon-wrapper .svg-icon {
  display: flex;
  max-width: 28px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .contact-us-v10 .contact-info-box .contact-icon-wrapper .svg-icon {
    max-width: 20px;
  }
}
.contact-us-v10 .contact-info-box .contact-icon-wrapper .svg-icon path {
  fill: var(--text-primary);
}
.contact-us-v10 .contact-info-box .contact-icon-wrapper .svg-arrow-icon {
  display: flex;
  width: 16px;
  height: 16px;
  align-items: center;
  fill: var(--text-primary);
}
.contact-us-v10 .contact-info-box .contact-icon-wrapper .svg-arrow-icon path {
  fill: var(--text-primary);
}
.contact-us-v10 .anchor-link {
  color: var(--heading-c);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v10 .anchor-link:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}
.contact-us-v10 .email-link {
  color: var(--heading-c);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v10 .email-link:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}
.contact-us-v10 .email-link .section-option-edit-link {
  right: 23px !important;
  top: 2px;
}

.contact-us-v11 {
  position: relative;
  font-family: var(--body-font-family);
}
.contact-us-v11 .outline-white {
  color: transparent;
  -webkit-text-stroke-width: 0.07vw;
  -webkit-text-stroke-color: var(--white);
}
.contact-us-v11 .contact-us-bg {
  min-height: 400px;
}
.contact-us-v11 .label-text {
  color: var(--text-primary);
  font-weight: normal;
  margin-bottom: 5px;
  display: inline-block;
}
.contact-us-v11 .svg-wrapper-v11 {
  z-index: 0;
}
.contact-us-v11 .svg-wrapper-v11::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 550px;
  height: 180px;
  background-color: rgba(var(--tertiary-rgb), 0.2);
  -webkit-clip-path: circle(42% at 98% 3%);
          clip-path: circle(42% at 98% 3%);
  z-index: 0;
  transition: width 0.3s ease, height 0.3s ease;
}
@media (max-width: 991px) {
  .contact-us-v11 .svg-wrapper-v11::before {
    width: 100px;
    height: 80px;
    -webkit-clip-path: circle(45% at 98% 0%);
            clip-path: circle(45% at 98% 0%);
  }
}
.contact-us-v11 .svg-wrapper-v11::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 650px;
  height: 480px;
  background-color: rgba(var(--tertiary-rgb), 0.2);
  -webkit-clip-path: circle(50% at 0 80%);
          clip-path: circle(50% at 0 80%);
  z-index: 0;
  transition: width 0.3s ease, height 0.3s ease;
}
@media (max-width: 991px) {
  .contact-us-v11 .svg-wrapper-v11::after {
    width: 350px;
    height: 300px;
    -webkit-clip-path: circle(30% at 0 60%);
            clip-path: circle(30% at 0 60%);
  }
}
.contact-us-v11 .title {
  text-transform: uppercase;
  font-size: var(--size-20);
  color: var(--text-primary);
  line-height: initial;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--heading-font-family);
}
@media screen and (max-width: 991px) {
  .contact-us-v11 .title {
    margin-bottom: 10px;
    font-size: var(--size-12);
  }
}
.contact-us-v11 .contact-form-section {
  padding-right: 50px;
}
.contact-us-v11 .contact-form-section .col-12 {
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .contact-us-v11 .contact-form-section {
    padding-right: 0px;
  }
}
.contact-us-v11 .contact-flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 991px) {
  .contact-us-v11 .contact-flex {
    margin-top: 40px;
    padding: 0px 20px;
  }
}
.contact-us-v11 .contact-flex .text-color {
  color: var(--white);
  margin: 0;
  font-size: var(--size-4);
}
.contact-us-v11 .contact-flex .contact-card {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: 26px;
  background-color: var(--black-opacity-80);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 30px;
  display: flex;
}
.contact-us-v11 .contact-flex .contact-card .icon-wrapper {
  background-color: var(--secondary);
  text-align: center;
  border-radius: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  height: 60px;
  display: flex;
}
.contact-us-v11 .contact-flex .contact-card .icon-wrapper .contact-icon {
  min-width: 28px;
  height: 28px;
}
.contact-us-v11 .contact-flex .contact-card .icon-wrapper .contact-icon path {
  fill: var(--text-secondary);
}
.contact-us-v11 .contact-flex .contact-card .contact-block {
  grid-column-gap: 0.6vw;
  grid-row-gap: 0.6vw;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
.contact-us-v11 .description {
  font-size: var(--size-4);
  line-height: initial;
  color: var(--text-primary);
  margin-bottom: 20px;
  margin-top: 0;
  font-family: var(--body-font-family);
}
.contact-us-v11 .font-bold {
  font-weight: bold;
}
.contact-us-v11 .name {
  font-size: var(--size-4);
  color: var(--text-primary);
  line-height: initial;
  margin: 20px 0 0 0;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--heading-font-family);
}
.contact-us-v11 .form-control {
  border-color: var(--text-primary);
  color: var(--body-tc);
  border-radius: 26px;
  font-size: var(--body-fs);
  padding: 12px 20px;
}
.contact-us-v11 .form-control:focus {
  border-color: var(--border-c);
}
.contact-us-v11 textarea.form-control {
  border-radius: 26px;
  min-height: 150px;
  color: var(--body-tc) !important;
  padding: 12px 20px;
  min-height: 112px;
  max-height: 112px;
}
.contact-us-v11 textarea::-moz-placeholder, .contact-us-v11 select::-moz-placeholder, .contact-us-v11 input::-moz-placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v11 textarea::placeholder,
.contact-us-v11 select::placeholder,
.contact-us-v11 input::placeholder {
  color: var(--body-tc) !important;
  opacity: 1;
}
.contact-us-v11 .spildy-btn {
  text-transform: capitalize;
  background-color: var(--secondary);
  padding: 12px 24px;
  border: 1px solid var(--secondary);
  font-size: var(--body-fs);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  max-width: 100%;
  border-radius: 26px;
}
.contact-us-v11 .spildy-btn:hover {
  background-color: var(--secondary-hover);
  border: 1px solid var(--secondary-hover);
}
.contact-us-v11 .anchor-link {
  color: var(--white);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v11 .anchor-link:hover {
  text-decoration: underline;
  color: var(--white);
}
.contact-us-v11 .email-link {
  color: var(--white);
  text-decoration: none;
  font-size: var(--size-4);
  line-height: initial;
  margin-bottom: 10px;
  display: inline-flex;
  word-break: break-all;
}
.contact-us-v11 .email-link:hover {
  text-decoration: underline;
  color: var(--white);
}
.contact-us-v11 .email-link .section-option-edit-link {
  right: 23px !important;
  top: 2px;
}/*# sourceMappingURL=contact-us.css.map */ .spildy-footer .menu-rounded .menu-link {
  border-radius: 6px;
}

.footer-v1 {
  background-color: var(--heading-c);
  padding: 30px 0px;
}
.footer-v1 .copy-rights {
  font-size: var(--body-fs);
  color: var(--light-bg);
  font-family: var(--body-font-family);
}

.footer-v2 {
  background-color: var(--heading-c);
  display: flex;
  align-items: stretch;
  padding: 30px 0px;
}
.footer-v2 .copy-rights {
  font-size: var(--body-fs);
  color: var(--light-bg);
  text-align: right;
  font-family: var(--body-font-family);
}
@media screen and (max-width: 991px) {
  .footer-v2 .copy-rights {
    text-align: center;
    margin-top: 16px;
  }
}
.footer-v2 .menus ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .footer-v2 .menus ul {
    display: block;
  }
}
.footer-v2 .menus .menu-item {
  display: inline-flex;
  align-items: center;
  padding: 0px;
  margin: 0px 20px 0px 0px;
  list-style-type: none;
}
.footer-v2 .menus .menu-item:last-child {
  margin-right: 0px;
}
.footer-v2 .menus .menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0px;
  flex: 0 0 100%;
  text-decoration: none;
  font-family: var(--body-font-family);
}
.footer-v2 .menus .menu-item .menu-link:hover, .footer-v2 .menus .menu-item .menu-link.active {
  transition: color 0.2s ease;
}
.footer-v2 .menus .menu-item .menu-link:hover .menu-title, .footer-v2 .menus .menu-item .menu-link.active .menu-title {
  text-decoration: underline;
}
.footer-v2 .menus .menu-item .menu-link .menu-title {
  color: var(--light-bg);
  font-family: var(--body-font-family);
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.footer-v2 .menus .menu-item .menu-link .section-option-edit-link {
  right: 22px !important;
}
@media screen and (max-width: 991px) {
  .footer-v2 .menu-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer-v2 .menu-wrapper {
    text-align: center;
  }
}

.footer-v3 {
  background-color: var(--white);
  display: flex;
  align-items: stretch;
  padding: 30px 0px;
}
.footer-v3 .footer-img-wrapper {
  min-width: 40px;
}
.footer-v3 .footer-img-wrapper .logo-img {
  width: auto;
  height: 100%;
  max-height: 45px;
}
.footer-v3 .copy-rights {
  font-size: var(--body-fs);
  color: var(--body-tc);
  font-family: var(--body-font-family);
}
@media screen and (max-width: 768px) {
  .footer-v3 .copy-rights {
    text-align: center;
  }
}

.footer-v4 {
  background-color: var(--white);
  padding: 30px 0px;
}
.footer-v4 .footer-img-wrapper {
  min-width: 40px;
}
.footer-v4 .footer-img-wrapper .logo-img {
  width: auto;
  height: 40px;
}
.footer-v4 .copy-rights {
  font-size: var(--body-fs);
  color: var(--body-tc);
  font-family: var(--body-font-family);
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .footer-v4 .copy-rights {
    text-align: center;
  }
}
.footer-v4 .menus ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .footer-v4 .menus ul {
    display: block;
  }
}
.footer-v4 .menus .menu-item {
  display: inline-flex;
  align-items: center;
  padding: 0px;
  margin: 0px 0px 0px 24px;
  list-style-type: none;
}
.footer-v4 .menus .menu-item:last-child {
  margin-right: 0px;
}
.footer-v4 .menus .menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0px;
  flex: 0 0 100%;
  text-decoration: none;
  font-family: var(--body-font-family);
}
.footer-v4 .menus .menu-item .menu-link:hover, .footer-v4 .menus .menu-item .menu-link.active {
  transition: color 0.2s ease;
}
.footer-v4 .menus .menu-item .menu-link:hover .menu-title, .footer-v4 .menus .menu-item .menu-link.active .menu-title {
  text-decoration: underline;
}
.footer-v4 .menus .menu-item .menu-link .menu-title {
  color: var(--body-tc);
  font-family: var(--body-font-family);
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.footer-v4 .menus .menu-item .menu-link .section-option-edit-link {
  right: 22px !important;
}
@media screen and (max-width: 991px) {
  .footer-v4 .menu-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer-v4 .menu-wrapper {
    text-align: center;
  }
}

.footer-v5 {
  background-color: var(--primary);
  padding: 120px 0px;
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/footer-v5-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  color: var(--text-primary);
  background-position: bottom center;
}
@media screen and (max-width: 991px) {
  .footer-v5 {
    padding: 50px 0px;
  }
}
.footer-v5 .footer-title {
  font-size: var(--size-8);
  line-height: initial;
  font-family: var(--heading-font-family);
  color: var(--text-primary);
  margin: 0px 0px 30px 0px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .footer-v5 .footer-title {
    font-size: var(--size-6);
    margin: 0px 0px 20px 0px;
  }
}
.footer-v5 .field-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.footer-v5 .field-wrapper .input-field {
  background: transparent;
  border-radius: 6px;
  padding-left: 40px;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  font-family: var(--body-font-family);
}
.footer-v5 .field-wrapper .input-field:placeholder {
  color: var(--text-primary);
}
.footer-v5 .field-wrapper ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: var(--body-font-family);
  color: var(--text-primary);
}
.footer-v5 .field-wrapper ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: var(--body-font-family);
  color: var(--text-primary);
}
.footer-v5 .field-wrapper :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: var(--body-font-family);
  color: var(--text-primary);
}
.footer-v5 .field-wrapper .icon-position {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0px 10px;
  z-index: 2;
}
.footer-v5 .field-wrapper .icon-position .mail-icon-wrapper {
  width: 18px;
  height: 18px;
}
.footer-v5 .primary-button {
  font-family: var(--body-font-family);
  cursor: pointer;
  color: var(--text-secondary);
  background-color: var(--secondary);
  font-size: var(--size-4);
  padding: 8px 20px;
  border-radius: 6px;
  min-height: 40px;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  border: 2px solid var(--secondary);
  transition: 0.2s all ease-in;
  z-index: 3;
  position: relative;
}
.footer-v5 .primary-button:hover {
  background-color: var(--secondary-hover);
  border: 2px solid var(--secondary-hover);
}
.footer-v5 .social-media-link {
  margin-left: 10px;
}
.footer-v5 .social-media-link svg.social-icon-path {
  width: 30px;
  height: 30px;
  fill: var(--text-primary);
  transition: 0.2s all ease-in-out;
}
.footer-v5 .social-media-link svg.social-icon-path path {
  fill: var(--text-primary);
}
.footer-v5 .social-media-link svg.social-icon-path:hover {
  transform: scale(1.15);
}
.footer-v5 .divider {
  margin: 30px 0px;
  color: var(--text-primary);
}
.footer-v5 .flex-wrap {
  flex-wrap: wrap;
}
.footer-v5 .footer-img-wrapper {
  min-width: 45px;
}
.footer-v5 .footer-img-wrapper .logo-img {
  width: auto;
  height: 100%;
  max-height: 40px;
}
@media screen and (max-width: 991px) {
  .footer-v5 .footer-img-wrapper .logo-img {
    margin-bottom: 20px;
  }
}
.footer-v5 .anchor-link {
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
}
.footer-v5 .anchor-link:hover {
  text-decoration: underline;
}
.footer-v5 .anchor-link .section-option-edit-link {
  right: 22px !important;
}
.footer-v5 .footer-img-wrapper .section-option-edit-link {
  right: 22px !important;
  top: 2px !important;
}

.footer-v6 {
  background-color: rgba(var(--primary-rgb), 0.1);
  padding: 120px 0px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.footer-v6 .phone-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.footer-v6 .phone-icon path {
  fill: var(--text-secondary);
}
@media screen and (max-width: 991px) {
  .footer-v6 {
    padding: 50px 0px;
  }
}
.footer-v6 .title {
  line-height: initial;
  color: var(--heading-light-color);
  margin: 0px 0px 30px 0px;
}
@media screen and (max-width: 991px) {
  .footer-v6 .title {
    font-size: var(--size-8);
    margin: 0px 0px 20px 0px;
  }
}
.footer-v6 .footer-title {
  font-family: var(--heading-font-family);
  color: var(--heading-light-color);
  margin: 0px 0px 10px 0px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .footer-v6 .footer-title {
    font-size: var(--size-6);
    margin: 0px 0px 20px 0px;
  }
}
.footer-v6 .description {
  font-size: var(--size-4);
  line-height: initial;
  font-family: var(--body-font-family);
  color: var(--body-light-color);
  margin: 0px 0px 20px 0px;
  font-weight: 500;
}
.footer-v6 .font-bold {
  font-weight: bold;
}
.footer-v6 .field-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.footer-v6 .field-wrapper .input-field {
  border-radius: 6px;
}
.footer-v6 .field-wrapper .button-arrow-wrapper {
  background-color: var(--secondary);
  width: 45px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  margin-left: 5px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.footer-v6 .field-wrapper .button-arrow-wrapper:hover {
  background-color: var(--secondary-hover);
}
.footer-v6 .field-wrapper .button-arrow-wrapper svg {
  max-width: 24px;
}
.footer-v6 .field-wrapper .button-arrow-wrapper .icon-c {
  fill: var(--text-secondary);
}
.footer-v6 .arrow-svg {
  fill: var(--secondary);
  width: 20px;
  height: 20px;
}
.footer-v6 .primary-button {
  font-family: var(--body-font-family);
  cursor: pointer;
  color: var(--text-secondary);
  background-color: var(--secondary);
  font-size: var(--size-4);
  padding: 12px 25px;
  border-radius: 30px;
  min-height: 45px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
  text-transform: capitalize;
  border: 2px solid var(--secondary);
  transition: 0.2s all ease-in;
  z-index: 3;
  position: relative;
}
.footer-v6 .primary-button:hover {
  background-color: var(--secondary-hover);
  border: 2px solid var(--secondary-hover);
}
.footer-v6 .explore-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 25px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 16px;
  transition: background-color 0.3s ease;
  position: relative;
}
.footer-v6 .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.footer-v6 .explore-button:hover {
  background-color: white;
  color: black;
}
.footer-v6 .explore-button:hover .arrow {
  transform: translate(10px, 10px, 10px);
  /* Moves the arrow to the right */
}
.footer-v6 .position-relative {
  position: relative;
}
.footer-v6 .icon-container {
  position: absolute;
  height: 40px;
  width: 40px;
  opacity: 0.8;
}
.footer-v6 .icon-container.footer-star-svg {
  top: 17%;
  right: 33%;
  transform: rotate(45deg);
  z-index: 5;
}
.footer-v6 .icon-container.footer-star-svg path {
  stroke: var(--primary);
}
@media screen and (max-width: 767px) {
  .footer-v6 .icon-container.footer-star-svg {
    top: 20px;
    right: 20px;
  }
}
.footer-v6 .up-down-footer-element {
  animation: up-down-footer-element 1s infinite alternate;
}
@keyframes up-down-footer-element {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.footer-v6 .social-media-link {
  margin-left: 10px;
}
.footer-v6 .social-media-link:first-child {
  margin-left: 0px;
}
.footer-v6 .social-media-link svg.social-icon-path {
  width: 30px;
  height: 30px;
  transition: 0.2s all ease-in-out;
}
.footer-v6 .social-media-link svg.social-icon-path:hover {
  transform: scale(1.15);
}
.footer-v6 .social-media-link svg.social-icon-path path {
  fill: var(--body-light-color);
}
.footer-v6 .divider {
  margin: 30px 0px;
  color: var(--body-light-color);
}
.footer-v6 .flex-wrap {
  flex-wrap: wrap;
}
.footer-v6 .footer-img-wrapper {
  min-width: 45px;
}
.footer-v6 .footer-img-wrapper .logo-img {
  width: auto;
  height: 100%;
  max-height: 40px;
}
@media screen and (max-width: 991px) {
  .footer-v6 .footer-img-wrapper .logo-img {
    margin-bottom: 20px;
  }
}
.footer-v6 .anchor-link {
  color: var(--body-light-color);
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
  font-weight: 500;
}
.footer-v6 .anchor-link:hover {
  text-decoration: underline;
}
.footer-v6 .anchor-link .section-option-edit-link {
  right: 22px !important;
}

.footer-v7 {
  color: var(--text-primary);
}
.footer-v7 .footer-title {
  font-family: var(--heading-font-family);
  color: var(--text-primary);
  margin: 0px 0px 10px 0px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .footer-v7 .footer-title {
    font-size: var(--size-6);
    margin: 0px 0px 20px 0px;
  }
}
.footer-v7 .description {
  font-size: var(--size-4);
  line-height: initial;
  font-family: var(--body-font-family);
  color: var(--text-primary);
  margin: 0px 0px 20px 0px;
  font-weight: 500;
}
.footer-v7 .subscribe-box {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.footer-v7 .subscribe-box .field-wrapper {
  position: relative;
}
.footer-v7 .subscribe-box .field-wrapper .input-field {
  border-radius: 6px 0px 0px 6px;
  -webkit-border-radius: 6px 0px 0px 6px;
  -moz-border-radius: 6px 0px 0px 6px;
  height: 50px;
}
.footer-v7 .subscribe-box .field-wrapper .button-arrow-wrapper {
  background-color: var(--secondary);
  color: var(--text-secondary);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 6px 6px 0px;
  -moz-border-radius: 0px 6px 6px 0px;
  -webkit-border-radius: 0px 6px 6px 0px;
  border: none;
  padding: 0px 20px;
  cursor: pointer;
}
.footer-v7 .subscribe-box .field-wrapper .button-arrow-wrapper:hover {
  background-color: var(--secondary-hover);
}
.footer-v7 .divider {
  margin: 30px 0px;
  color: rgba(255, 255, 255, 0.2);
}
.footer-v7 .quick-links {
  margin: 0px;
  padding: 0px;
}
.footer-v7 .quick-links li {
  padding: 0px;
  margin: 0px 20px 0px 0px;
  list-style-type: none;
  display: inline-block;
}
.footer-v7 .quick-links li:last-child {
  padding-right: 0px;
}
.footer-v7 .quick-links .anchor-link {
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
  font-weight: 500;
}
.footer-v7 .quick-links .anchor-link svg {
  fill: var(--secondary);
}
.footer-v7 .quick-links .anchor-link:hover {
  text-decoration: underline;
}
.footer-v7 .quick-links .anchor-link:hover svg {
  fill: var(--secondary-hover);
}
.footer-v7 .quick-links .anchor-link .section-option-edit-link {
  right: 4px !important;
  top: 4px !important;
}
@media screen and (max-width: 991px) {
  .footer-v7 .social-media-links {
    margin-top: 16px;
  }
}
.footer-v7 .social-media-links .footer-v7-social-btn {
  height: var(--size-8);
  width: var(--size-8);
  font-size: var(--size-4);
  border-radius: var(--size-8);
  display: inline-flex;
  padding: 0 var(--size-2);
  text-decoration: none;
  line-height: 0;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--white);
  margin-right: 10px;
}
.footer-v7 .social-media-links .footer-v7-social-btn:last-child {
  margin-right: 0px;
}
.footer-v7 .social-media-links .footer-v7-social-btn img,
.footer-v7 .social-media-links .footer-v7-social-btn svg {
  max-width: 16px;
  max-height: 16px;
}
.footer-v7 .social-media-links .footer-v7-social-btn img .sm-icon-fill,
.footer-v7 .social-media-links .footer-v7-social-btn svg .sm-icon-fill {
  fill: var(--text-primary);
}
.footer-v7 .social-media-links .footer-v7-social-btn:hover {
  background-color: var(--text-primary);
}
.footer-v7 .social-media-links .footer-v7-social-btn:hover img,
.footer-v7 .social-media-links .footer-v7-social-btn:hover svg {
  max-width: 16px;
  max-height: 16px;
}
.footer-v7 .social-media-links .footer-v7-social-btn:hover img .sm-icon-fill,
.footer-v7 .social-media-links .footer-v7-social-btn:hover svg .sm-icon-fill {
  fill: var(--heading-light-color);
}
.footer-v7 .copy-right-box {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  margin-top: 30px;
}
.footer-v7 .copy-right-box .copy-rights {
  color: var(--text-primary);
}
@media screen and (max-width: 771px) {
  .footer-v7 .copy-right-box .copy-rights {
    margin-top: 16px;
  }
}
.footer-v7 .font-bold {
  font-weight: bold;
}

.footer-v8 {
  background-image: url(https://spaidy.blob.core.windows.net/assets/images/footer-v8-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.footer-v8 .title {
  line-height: initial;
  color: var(--heading-light-color);
  margin: 0px 0px 30px 0px;
}
@media screen and (max-width: 991px) {
  .footer-v8 .title {
    font-size: var(--size-8);
    margin: 0px 0px 20px 0px;
  }
}
.footer-v8 .text-top-smile {
  padding-right: 30px;
}
.footer-v8 .text-top-smile .smile-icon {
  position: absolute;
  right: 10px;
  top: -5px;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 1280px) {
  .footer-v8 .text-top-smile .smile-icon {
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
  }
}
.footer-v8 .text-top-smile .smile-icon .svg-icon {
  fill: var(--primary);
  fill-rule: evenodd;
}
.footer-v8 .primary-button {
  font-family: var(--body-font-family);
  cursor: pointer;
  color: var(--text-primary);
  background-color: var(--primary);
  font-size: var(--size-4);
  padding: 12px 25px;
  border-radius: 0px 30px 0px 30px;
  min-height: 45px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
  text-transform: capitalize;
  border: 1px solid var(--primary);
  transition: 0.2s all ease-in;
  z-index: 3;
  position: relative;
}
.footer-v8 .primary-button:hover {
  background-color: var(--primary-hover);
  border: 1px solid var(--primary-hover);
}
.footer-v8 .toll-free-number {
  font-family: var(--body-font-family);
  cursor: pointer;
  color: var(--heading-light-color);
  background-color: transparent;
  font-size: var(--size-4);
  min-height: 45px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
  position: relative;
  margin-left: 30px;
}
.footer-v8 .toll-free-number::after {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--heading-light-color);
  transition: 0.2s all ease-in;
}
.footer-v8 .social-media-link svg {
  width: 30px;
  height: 30px;
  transition: 0.2s all ease-in-out;
}
.footer-v8 .social-media-link svg:hover {
  transform: scale(1.15);
}
.footer-v8 .social-media-link svg path {
  fill: var(--body-light-color);
}
.footer-v8 .icon-container {
  position: absolute;
  height: 80px;
  width: 80px;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .footer-v8 .icon-container {
    height: 40px;
    width: 40px;
  }
}
.footer-v8 .icon-container.footer-star-svg {
  top: 25%;
  left: 5%;
  z-index: 5;
}
.footer-v8 .icon-container.footer-star-svg .star-icon {
  fill: var(--secondary);
}
@media screen and (max-width: 767px) {
  .footer-v8 .icon-container.footer-star-svg {
    top: 20px;
    left: 20px;
  }
}
.footer-v8 .up-down-footer-v8-element {
  animation: up-down-footer-v8-element 1s infinite alternate;
}
@keyframes up-down-footer-v8-element {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 991px) {
  .footer-v8 .social-media-links {
    margin-top: 16px;
  }
}
.footer-v8 .footer-v8-social-btn {
  height: var(--size-8);
  width: var(--size-8);
  font-size: var(--size-4);
  display: inline-flex;
  padding: 0 var(--size-2);
  text-decoration: none;
  line-height: 0;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--heading-light-color);
  border: 1px var(--heading-light-color) solid;
  margin-right: 10px;
}
.footer-v8 .footer-v8-social-btn:last-child {
  margin-right: 0px;
}
.footer-v8 .footer-v8-social-btn img,
.footer-v8 .footer-v8-social-btn svg {
  max-width: 16px;
  max-height: 16px;
}
.footer-v8 .footer-v8-social-btn img .sm-icon-fill,
.footer-v8 .footer-v8-social-btn svg .sm-icon-fill {
  fill: var(--white);
}
.footer-v8 .footer-v8-social-btn:hover {
  background-color: var(--white);
}
.footer-v8 .footer-v8-social-btn:hover img,
.footer-v8 .footer-v8-social-btn:hover svg {
  max-width: 16px;
  max-height: 16px;
}
.footer-v8 .footer-v8-social-btn:hover img .sm-icon-fill,
.footer-v8 .footer-v8-social-btn:hover svg .sm-icon-fill {
  fill: var(--heading-light-color);
}
.footer-v8 .footer-title {
  font-family: var(--heading-font-family);
  color: var(--heading-light-color);
  margin: 0px 0px 10px 0px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .footer-v8 .footer-title {
    font-size: var(--size-6);
    margin: 0px 0px 20px 0px;
  }
}
.footer-v8 .sub-title {
  font-size: var(--size-4);
  line-height: initial;
  font-family: var(--body-font-family);
  color: var(--heading-light-color);
  margin: 0px 0px 20px 0px;
  font-weight: 500;
}
.footer-v8 .description {
  font-size: var(--size-4);
  line-height: initial;
  font-family: var(--body-font-family);
  color: var(--body-light-color);
  margin: 0px 0px 20px 0px;
  font-weight: 500;
}
.footer-v8 .font-bold {
  font-weight: bold;
}
.footer-v8 .position-relative {
  position: relative;
}
.footer-v8 .contact-link {
  color: var(--body-light-color);
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
  font-weight: 500;
  word-break: break-all;
}
.footer-v8 .contact-link.email:hover {
  text-decoration: underline;
}
.footer-v8 .anchor-link {
  color: var(--body-light-color);
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
  font-weight: 500;
}
.footer-v8 .anchor-link:hover {
  text-decoration: underline;
}
.footer-v8 .anchor-link .section-option-edit-link {
  right: 22px !important;
}

.footer-v9 .contacts-info-box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
}
.footer-v9 .footer-v9-social-btn {
  height: var(--size-8);
  width: var(--size-8);
  font-size: var(--size-4);
  border-radius: var(--size-8);
  display: inline-flex;
  padding: 0 var(--size-2);
  text-decoration: none;
  line-height: 0;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  border: 1px var(--text-primary) solid;
  margin-right: 10px;
}
.footer-v9 .footer-v9-social-btn:last-child {
  margin-right: 0px;
}
.footer-v9 .footer-v9-social-btn img,
.footer-v9 .footer-v9-social-btn svg {
  max-width: 16px;
  max-height: 16px;
}
.footer-v9 .footer-v9-social-btn img .sm-icon-fill,
.footer-v9 .footer-v9-social-btn svg .sm-icon-fill {
  fill: var(--text-primary);
}
.footer-v9 .footer-v9-social-btn:hover {
  background-color: var(--text-primary);
}
.footer-v9 .footer-v9-social-btn:hover img,
.footer-v9 .footer-v9-social-btn:hover svg {
  max-width: 16px;
  max-height: 16px;
}
.footer-v9 .footer-v9-social-btn:hover img .sm-icon-fill,
.footer-v9 .footer-v9-social-btn:hover svg .sm-icon-fill {
  fill: var(--heading-light-color);
}
.footer-v9 .quick-links-copyrights {
  padding-top: 30px;
}
.footer-v9 .quick-links {
  margin: 0px;
  padding: 0px;
}
.footer-v9 .quick-links li {
  padding: 0px;
  margin: 0px 20px 0px 0px;
  list-style-type: none;
  display: inline-block;
}
.footer-v9 .quick-links li:last-child {
  padding-right: 0px;
}
.footer-v9 .quick-links .anchor-link {
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
  font-weight: 500;
}
.footer-v9 .quick-links .anchor-link svg {
  fill: var(--secondary);
}
.footer-v9 .quick-links .anchor-link:hover {
  text-decoration: underline;
}
.footer-v9 .quick-links .anchor-link:hover svg {
  fill: var(--secondary-hover);
}
.footer-v9 .quick-links .anchor-link .section-option-edit-link {
  right: 23px !important;
  top: 3px !important;
}
.footer-v9 .sub-title {
  color: var(--text-primary);
  margin: 0px 0px 20px 0px;
}
.footer-v9 .copy-rights {
  font-size: var(--size-4);
  line-height: initial;
  font-family: var(--body-font-family);
  color: var(--text-primary);
  margin: 30px 0px 0px;
  font-weight: 500;
}
.footer-v9 .address-txt {
  font-size: var(--size-4);
  line-height: initial;
  font-family: var(--body-font-family);
  color: var(--text-primary);
}
.footer-v9 .font-bold {
  font-weight: bold;
}
.footer-v9 .position-relative {
  position: relative;
}
.footer-v9 .contact-link {
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--body-font-family);
  font-size: var(--size-4);
  line-height: initial;
  font-weight: 500;
  word-break: break-all;
}
.footer-v9 .contact-link.email:hover {
  text-decoration: underline;
}
.footer-v9 .company-name {
  text-align: center;
  text-transform: uppercase;
  margin-top: 60px;
}
.footer-v9 .company-name .small-text {
  color: rgba(0, 0, 0, 0.2);
}
.footer-v9 .company-name .big-text {
  overflow: hidden;
  height: 75px;
  font-size: 100px;
  line-height: 100px;
  color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .footer-v9 .company-name .big-text {
    height: 40px;
    font-size: 50px;
    line-height: 50px;
  }
}/*# sourceMappingURL=footer.css.map */