/*
https://itnext.io/structuring-your-sass-projects-c8d41fa55ed4

@import 'abstracts/variables';
@import 'abstracts/functions';
@import 'abstracts/mixins';

@import 'vendors/bootstrap';
@import 'vendors/jquery-ui';
*/
/*
Theme Variables
*/
:root {
  --color1: #794599;
  --color2: #1aa4a7;
  --color1: #d54348;
  --color-gradient: linear-gradient(270deg, #1a91ae 0, #1ab394 100%);
  --color-white: #fff;
  --color-off-white:#e3ecef;
  --color-black: #111111;
  --color-light-black: #444444;
  --color-lighter-black: #9e9e9e;
  --color-lightest-black: #e7e7e7;
}

.background-s-contain {
  background-size: contain !important;
}

.background-s-cover {
  background-size: cover !important;
}

.background-s-auto {
  background-size: auto !important;
}

.background-s-10 {
  background-size: 10% !important;
}

.background-s-20 {
  background-size: 20% !important;
}

.background-s-30 {
  background-size: 30% !important;
}

.background-s-40 {
  background-size: 40% !important;
}

.background-s-50 {
  background-size: 50% !important;
}

.background-s-60 {
  background-size: 60% !important;
}

.background-s-70 {
  background-size: 70% !important;
}

.background-s-80 {
  background-size: 80% !important;
}

.background-s-90 {
  background-size: 90% !important;
}

.background-s-100 {
  background-size: 100% !important;
}

/*Background Repeat*/
.background-no-repeat {
  background-repeat: no-repeat !important;
}

.background-repeat {
  background-repeat: repeat !important;
}

/*Background Attachment*/
.background-a-fixed {
  background-attachment: fixed !important;
}

/*Background -position*/
.background-p-top-start {
  background-position: 0 0 !important;
}

.background-p-top-center {
  background-position: 50% 0 !important;
}

.background-p-top-end {
  background-position: 100% 0 !important;
}

.background-p-middle-start {
  background-position: 0 50% !important;
}

.background-p-middle-center {
  background-position: 50% 50% !important;
}

.background-p-middle-end {
  background-position: 50% 0 !important;
}

.background-p-bottom-start {
  background-position: 0 100% !important;
}

.background-p-bottom-center {
  background-position: 50% 100% !important;
}

.background-p-bottom-end {
  background-position: 100% 100% !important;
}

.overlay:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay.overlay-dark-80:after {
  background: rgba(0, 0, 0, 0.8);
}

.overlay.overlay-dark-70:after {
  background: rgba(0, 0, 0, 0.7);
}

.overlay.overlay-dark-60:after {
  background: rgba(0, 0, 0, 0.6);
}

.overlay.overlay-dark-50:after {
  background: rgba(0, 0, 0, 0.5);
}

.overlay.overlay-dark-40:after {
  background: rgba(0, 0, 0, 0.4);
}

.overlay.overlay-dark-30:after {
  background: rgba(0, 0, 0, 0.3);
}

.overlay.overlay-dark-20:after {
  background: rgba(0, 0, 0, 0.2);
}

.overlay.overlay-dark-10:after {
  background: rgba(0, 0, 0, 0.1);
}

.overlay > div {
  position: relative;
  z-index: 2;
}

.color1 {
  color: var(--color1);
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

/*
Below is for wp-admin
*/
body.wp-admin {
  color: var(--color-black);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-size: 13px;
  font-size: 14px;
}

body.wp-admin a {
  color: var(--color-black);
}

a {
  color: inherit;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

a:hover {
  color: var(--color2);
}

strong {
  font-weight: 600;
}

.block-content.d-flex.sm-auto > * {
  width: auto;
  min-width: 350px;
}

.block-content.d-flex.sm-1 > * {
  width: 100%;
}

.block-content.d-flex.sm-2 > * {
  width: 50%;
}

.block-content.d-flex.sm-3 > * {
  width: 33.33%;
}

.block-content.d-flex.sm-4 > * {
  width: 25%;
}

.block-content.d-flex.sm-5 > * {
  width: 20%;
}

.block-content.d-flex.sm-auto > * {
  width: auto;
}

@media only screen and (min-width: 768px) {
  .block-content.d-flex.md-auto > * {
    width: auto;
  }
  .block-content.d-flex.md-1 > * {
    width: 100%;
  }
  .block-content.d-flex.md-2 > * {
    width: 50%;
  }
  .block-content.d-flex.md-3 > * {
    width: 33.33%;
  }
  .block-content.d-flex.md-4 > * {
    width: 25%;
  }
  .block-content.d-flex.md-5 > * {
    width: 20%;
  }
  .block-content.d-flex.md-auto > * {
    width: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .block-content.d-flex.lg-auto > * {
    width: auto;
  }
  .block-content.d-flex.lg-1 > * {
    width: 100%;
  }
  .block-content.d-flex.lg-2 > * {
    width: 50%;
  }
  .block-content.d-flex.lg-3 > * {
    width: 33.33%;
  }
  .block-content.d-flex.lg-4 > * {
    width: 25%;
  }
  .block-content.d-flex.lg-5 > * {
    width: 20%;
  }
  .block-content.d-flex.lg-auto > * {
    width: auto;
  }
}

.d-grid.cols-auto {
  -ms-grid-columns: auto;
      grid-template-columns: auto;
}

.d-grid.cols-1 {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.d-grid.cols-2 {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.d-grid.cols-3 {
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.d-grid.cols-4 {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

.d-grid.cols-5 {
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media only screen and (min-width: 768px) {
  .d-grid.cols-md-auto {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .d-grid.cols-md-1 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .d-grid.cols-md-2 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .d-grid.cols-md-3 {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  .d-grid.cols-md-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .d-grid.cols-md-5 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1200px) {
  .d-grid.cols-lg-auto {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .d-grid.cols-lg-1 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .d-grid.cols-lg-2 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .d-grid.cols-lg-3 {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  .d-grid.cols-lg-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .d-grid.cols-lg-5 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

.object-fit-img img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

/*Overflow Auto*/
@media only screen and (min-width: 768px) {
  .overflow-md-auto {
    overflow: auto !important;
  }
}

@media only screen and (min-width: 992px) {
  .overflow-lg-auto {
    overflow: auto !important;
  }
}

/*Overflow Scroll*/
@media only screen and (min-width: 768px) {
  .overflow-md-scroll {
    overflow: scroll !important;
  }
}

@media only screen and (min-width: 992px) {
  .overflow-lg-scroll {
    overflow: scroll !important;
  }
}

/*Overflow Hidden*/
@media only screen and (min-width: 768px) {
  .overflow-md-hidden {
    overflow: hidden !important;
  }
}

@media only screen and (min-width: 992px) {
  .overflow-lg-hidden {
    overflow: hidden !important;
  }
}

/*Overflow Visible*/
@media only screen and (min-width: 768px) {
  .overflow-md-visible {
    overflow: visible !important;
  }
}

@media only screen and (min-width: 992px) {
  .overflow-lg-visible {
    overflow: visible !important;
  }
}

.wp-block-columns .wp-block-column.image-half-width, .wp-block-columns .wp-block-column.padded-container {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.wp-block-columns .wp-block-column.padded-container {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding: 0 15px;
}

.wp-block-columns .wp-block-column.padded-container.on-left {
  margin-left: auto;
}

.wp-block-columns .wp-block-column.padded-container.on-right {
  margin-right: auto;
}

@media only screen and (min-width: 576px) {
  .wp-block-columns .wp-block-column.padded-container {
    -ms-flex-preferred-size: calc((576px - 30px) / 2);
        flex-basis: calc((576px - 30px) / 2);
  }
}

@media only screen and (min-width: 768px) {
  .wp-block-columns .wp-block-column.padded-container {
    -ms-flex-preferred-size: calc((768px - 30px) / 2);
        flex-basis: calc((768px - 30px) / 2);
  }
}

@media only screen and (min-width: 992px) {
  .wp-block-columns .wp-block-column.padded-container {
    -ms-flex-preferred-size: calc((992px - 30px) / 2);
        flex-basis: calc((992px - 30px) / 2);
  }
}

@media only screen and (min-width: 1200px) {
  .wp-block-columns .wp-block-column.padded-container {
    -ms-flex-preferred-size: calc((1200px - 30px) / 2);
        flex-basis: calc((1200px - 30px) / 2);
  }
}

@media only screen and (max-width: 781px) {
  .has-padded-caption .wp-block-group__inner-container {
    padding: 15px !important;
  }
}

.top {
  bottom: auto;
}

.top-0 {
  top: 0;
}

.top-25 {
  top: 25%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.top-50 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bottom {
  top: auto;
}

.bottom-0 {
  bottom: 0;
}

.bottom-25 {
  bottom: 25%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.right {
  left: auto;
}

.right-0 {
  right: 0;
}

.right-25 {
  right: 25%;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}

.right-50 {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.left {
  right: auto;
}

.left-0 {
  left: 0;
}

.left-25 {
  left: 25%;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}

.center-50-50 {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pt-1em {
  padding-top: 5em;
}

.pt-2em {
  padding-top: 6em;
}

.pt-3em {
  padding-top: 7em;
}

.pt-4em {
  padding-top: 8em;
}

.pt-5em {
  padding-top: 5em;
}

.pt-6em {
  padding-top: 6em;
}

.pt-7em {
  padding-top: 7em;
}

.pt-8em {
  padding-top: 8em;
}

.pt-9em {
  padding-top: 9em;
}

.pt-10em {
  padding-top: 10em;
}

@media only screen and (min-width: 768px) {
  .pt-md-1em {
    padding-top: 5em;
  }
  .pt-md-2em {
    padding-top: 6em;
  }
  .pt-md-3em {
    padding-top: 7em;
  }
  .pt-md-4em {
    padding-top: 8em;
  }
  .pt-md-5em {
    padding-top: 5em;
  }
  .pt-md-6em {
    padding-top: 6em;
  }
  .pt-md-7em {
    padding-top: 7em;
  }
  .pt-md-8em {
    padding-top: 8em;
  }
  .pt-md-9em {
    padding-top: 9em;
  }
  .pt-md-10em {
    padding-top: 10em;
  }
}

@media only screen and (min-width: 992px) {
  .pt-lg-1em {
    padding-top: 5em;
  }
  .pt-lg-2em {
    padding-top: 6em;
  }
  .pt-lg-3em {
    padding-top: 7em;
  }
  .pt-lg-4em {
    padding-top: 8em;
  }
  .pt-lg-5em {
    padding-top: 5em;
  }
  .pt-lg-6em {
    padding-top: 6em;
  }
  .pt-lg-7em {
    padding-top: 7em;
  }
  .pt-lg-8em {
    padding-top: 8em;
  }
  .pt-lg-9em {
    padding-top: 9em;
  }
  .pt-lg-10em {
    padding-top: 10em;
  }
}

/*Padding Bottom*/
.pb-1em {
  padding-top: 5em;
}

.pb-2em {
  padding-top: 6em;
}

.pb-3em {
  padding-top: 7em;
}

.pb-4em {
  padding-top: 8em;
}

.pb-5em {
  padding-top: 5em;
}

.pb-6em {
  padding-top: 6em;
}

.pb-7em {
  padding-top: 7em;
}

.pb-8em {
  padding-top: 8em;
}

.pb-9em {
  padding-top: 9em;
}

.pb-10em {
  padding-top: 10em;
}

@media only screen and (min-width: 768px) {
  .pb-md-1em {
    padding-top: 5em;
  }
  .pb-md-2em {
    padding-top: 6em;
  }
  .pb-md-3em {
    padding-top: 7em;
  }
  .pb-md-4em {
    padding-top: 8em;
  }
  .pb-md-5em {
    padding-top: 5em;
  }
  .pb-md-6em {
    padding-top: 6em;
  }
  .pb-md-7em {
    padding-top: 7em;
  }
  .pb-md-8em {
    padding-top: 8em;
  }
  .pb-md-9em {
    padding-top: 9em;
  }
  .pb-md-10em {
    padding-top: 10em;
  }
}

@media only screen and (min-width: 992px) {
  .pb-lg-1em {
    padding-top: 5em;
  }
  .pb-lg-2em {
    padding-top: 6em;
  }
  .pb-lg-3em {
    padding-top: 7em;
  }
  .pb-lg-4em {
    padding-top: 8em;
  }
  .pb-lg-5em {
    padding-top: 5em;
  }
  .pb-lg-6em {
    padding-top: 6em;
  }
  .pb-lg-7em {
    padding-top: 7em;
  }
  .pb-lg-8em {
    padding-top: 8em;
  }
  .pb-lg-9em {
    padding-top: 9em;
  }
  .pb-lg-10em {
    padding-top: 10em;
  }
}

.flip-horizontal {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.flip-vertical {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*
Translate Y (Top)
*/
.translate-y0 {
  -webkit-transform: initial;
          transform: initial;
}

.translate-y-50 {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.translate-y-100 {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.translate-y-200 {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
}

.translate-y-300 {
  -webkit-transform: translateY(-300px);
          transform: translateY(-300px);
}

.translate-y-400 {
  -webkit-transform: translateY(-400px);
          transform: translateY(-400px);
}

.translate-y-500 {
  -webkit-transform: translateY(-500px);
          transform: translateY(-500px);
}

.translate-y50 {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.translate-y100 {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.translate-y200 {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.translate-y300 {
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
}

.translate-y400 {
  -webkit-transform: translateY(400px);
          transform: translateY(400px);
}

.translate-y500 {
  -webkit-transform: translateY(500px);
          transform: translateY(500px);
}

@media only screen and (min-width: 768px) {
  .translate-md-y-50 {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .translate-md-y-100 {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  .translate-md-y-200 {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  .translate-md-y-300 {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  .translate-md-y-400 {
    -webkit-transform: translateY(-400px);
            transform: translateY(-400px);
  }
  .translate-md-y-500 {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
  }
  .translate-md-y50 {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .translate-md-y100 {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  .translate-md-y200 {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  .translate-md-y300 {
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
  }
  .translate-md-y400 {
    -webkit-transform: translateY(400px);
            transform: translateY(400px);
  }
  .translate-md-y500 {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
  }
}

@media only screen and (min-width: 1200px) {
  .translate-lg-y-50 {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .translate-lg-y-100 {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  .translate-lg-y-200 {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  .translate-lg-y-300 {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  .translate-lg-y-400 {
    -webkit-transform: translateY(-400px);
            transform: translateY(-400px);
  }
  .translate-lg-y-500 {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
  }
  .translate-lg-y50 {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .translate-lg-y100 {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  .translate-lg-y200 {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  .translate-lg-y300 {
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
  }
  .translate-lg-y400 {
    -webkit-transform: translateY(400px);
            transform: translateY(400px);
  }
  .translate-lg-y500 {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
  }
}

/*
Translate X (left)
*/
.translate-x0 {
  -webkit-transform: initial;
          transform: initial;
}

.translate-x-50 {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.translate-x-100 {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.translate-x-200 {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.translate-x-300 {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}

.translate-x-400 {
  -webkit-transform: translateX(-400px);
          transform: translateX(-400px);
}

.translate-x-500 {
  -webkit-transform: translateX(-500px);
          transform: translateX(-500px);
}

.translate-x50 {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.translate-x100 {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.translate-x200 {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.translate-x300 {
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
}

.translate-x400 {
  -webkit-transform: translateX(400px);
          transform: translateX(400px);
}

.translate-x500 {
  -webkit-transform: translateX(500px);
          transform: translateX(500px);
}

@media only screen and (min-width: 768px) {
  .translate-md-x-50 {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  .translate-md-x-100 {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .translate-md-x-200 {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  .translate-md-x-300 {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  .translate-md-x-400 {
    -webkit-transform: translateX(-400px);
            transform: translateX(-400px);
  }
  .translate-md-x-500 {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
  .translate-md-x50 {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  .translate-md-x100 {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  .translate-md-x200 {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  .translate-md-x300 {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
  .translate-md-x400 {
    -webkit-transform: translateX(400px);
            transform: translateX(400px);
  }
  .translate-md-x500 {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
  }
}

@media only screen and (min-width: 1200px) {
  .translate-lg-x-50 {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  .translate-lg-x-100 {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .translate-lg-x-200 {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  .translate-lg-x-300 {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  .translate-lg-x-400 {
    -webkit-transform: translateX(-400px);
            transform: translateX(-400px);
  }
  .translate-lg-x-500 {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
  .translate-lg-x50 {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  .translate-lg-x100 {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  .translate-lg-x200 {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  .translate-lg-x300 {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
  .translate-lg-x400 {
    -webkit-transform: translateX(400px);
            transform: translateX(400px);
  }
  .translate-lg-x500 {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
  }
}

.wi-auto {
  width: auto !important;
}

.wi-max-content {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

.wi-10 {
  width: 10% !important;
}

.wi-16 {
  width: 16.66% !important;
}

.wi-20 {
  width: 20% !important;
}

.wi-25 {
  width: 25% !important;
}

.wi-30 {
  width: 30% !important;
}

.wi-33 {
  width: 33.33% !important;
}

.wi-40 {
  width: 40% !important;
}

.wi-50 {
  width: 50% !important;
}

.wi-60 {
  width: 60% !important;
}

.wi-66 {
  width: 66.66% !important;
}

.wi-70 {
  width: 70% !important;
}

.wi-80 {
  width: 80% !important;
}

.wi-90 {
  width: 90% !important;
}

.wi-100 {
  width: 100% !important;
}

@media only screen and (min-width: 768px) {
  .wi-md-auto {
    width: auto !important;
  }
  .wi-md-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .wi-md-10 {
    width: 10% !important;
  }
  .wi-md-16 {
    width: 16.66% !important;
  }
  .wi-md-20 {
    width: 20% !important;
  }
  .wi-md-25 {
    width: 25% !important;
  }
  .wi-md-30 {
    width: 30% !important;
  }
  .wi-md-33 {
    width: 33.33% !important;
  }
  .wi-md-40 {
    width: 40% !important;
  }
  .wi-md-50 {
    width: 50% !important;
  }
  .wi-md-60 {
    width: 60% !important;
  }
  .wi-md-66 {
    width: 66.66% !important;
  }
  .wi-md-70 {
    width: 70% !important;
  }
  .wi-md-80 {
    width: 80% !important;
  }
  .wi-md-90 {
    width: 90% !important;
  }
  .wi-md-100 {
    width: 100% !important;
  }
}

@media only screen and (min-width: 992px) {
  .wi-lg-auto {
    width: auto !important;
  }
  .wi-lg-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .wi-lg-10 {
    width: 10% !important;
  }
  .wi-lg-16 {
    width: 16.66% !important;
  }
  .wi-lg-20 {
    width: 20% !important;
  }
  .wi-lg-25 {
    width: 25% !important;
  }
  .wi-lg-30 {
    width: 30% !important;
  }
  .wi-lg-33 {
    width: 33.33% !important;
  }
  .wi-lg-40 {
    width: 40% !important;
  }
  .wi-lg-50 {
    width: 50% !important;
  }
  .wi-lg-60 {
    width: 60% !important;
  }
  .wi-lg-66 {
    width: 66.66% !important;
  }
  .wi-lg-70 {
    width: 70% !important;
  }
  .wi-lg-80 {
    width: 80% !important;
  }
  .wi-lg-90 {
    width: 90% !important;
  }
  .wi-lg-100 {
    width: 100% !important;
  }
}

/*
Width
*/
.wi-25px {
  width: 25px !important;
}

.wi-50px {
  width: 50px !important;
}

.wi-75px {
  width: 75px !important;
}

.wi-100px {
  width: 100px !important;
}

.wi-125px {
  width: 125px !important;
}

.wi-150px {
  width: 150px !important;
}

.wi-175px {
  width: 175px !important;
}

.wi-200px {
  width: 200px !important;
}

.wi-225px {
  width: 225px !important;
}

.wi-250px {
  width: 250px !important;
}

.wi-275px {
  width: 275px !important;
}

.wi-300px {
  width: 300px !important;
}

.wi-400px {
  width: 400px !important;
}

.wi-500px {
  width: 500px !important;
}

.wi-600px {
  width: 600px !important;
}

@media only screen and (min-width: 768px) {
  .wi-md-50px {
    width: 50px !important;
  }
  .wi-md-75px {
    width: 75px !important;
  }
  .wi-md-100px {
    width: 100px !important;
  }
  .wi-md-125px {
    width: 125px !important;
  }
  .wi-md-150px {
    width: 150px !important;
  }
  .wi-md-175px {
    width: 175px !important;
  }
  .wi-md-200px {
    width: 200px !important;
  }
  .wi-md-225px {
    width: 225px !important;
  }
  .wi-md-250px {
    width: 250px !important;
  }
  .wi-md-275px {
    width: 275px !important;
  }
  .wi-md-300px {
    width: 300px !important;
  }
  .wi-md-400px {
    width: 400px !important;
  }
  .wi-md-500px {
    width: 500px !important;
  }
  .wi-md-600px {
    width: 600px !important;
  }
}

@media only screen and (min-width: 992px) {
  .wi-lg-50px {
    width: 50px !important;
  }
  .wi-lg-75px {
    width: 75px !important;
  }
  .wi-lg-100px {
    width: 100px !important;
  }
  .wi-lg-125px {
    width: 125px !important;
  }
  .wi-lg-150px {
    width: 150px !important;
  }
  .wi-lg-175px {
    width: 175px !important;
  }
  .wi-lg-200px {
    width: 200px !important;
  }
  .wi-lg-225px {
    width: 225px !important;
  }
  .wi-lg-250px {
    width: 250px !important;
  }
  .wi-lg-275px {
    width: 275px !important;
  }
  .wi-lg-300px {
    width: 300px !important;
  }
  .wi-lg-400px {
    width: 400px !important;
  }
  .wi-lg-500px {
    width: 500px !important;
  }
  .wi-lg-600px {
    width: 600px !important;
  }
}

/**
Height Percentage
*/
.hi-auto {
  height: auto !important;
}

.hi-10 {
  height: 10% !important;
}

.hi-16 {
  height: 16.66% !important;
}

.hi-20 {
  height: 20% !important;
}

.hi-25 {
  height: 25% !important;
}

.hi-30 {
  height: 30% !important;
}

.hi-33 {
  height: 33.33% !important;
}

.hi-40 {
  height: 40% !important;
}

.hi-50 {
  height: 50% !important;
}

.hi-60 {
  height: 60% !important;
}

.hi-66 {
  height: 66.66% !important;
}

.hi-70 {
  height: 70% !important;
}

.hi-80 {
  height: 80% !important;
}

.hi-90 {
  height: 90% !important;
}

.hi-100 {
  height: 100% !important;
}

@media only screen and (min-width: 768px) {
  .hi-md-10 {
    height: 10% !important;
  }
  .hi-md-16 {
    height: 16.66% !important;
  }
  .hi-md-20 {
    height: 20% !important;
  }
  .hi-md-25 {
    height: 25% !important;
  }
  .hi-md-30 {
    height: 30% !important;
  }
  .hi-md-33 {
    height: 33.33% !important;
  }
  .hi-md-40 {
    height: 40% !important;
  }
  .hi-md-50 {
    height: 50% !important;
  }
  .hi-md-60 {
    height: 60% !important;
  }
  .hi-md-66 {
    height: 66.66% !important;
  }
  .hi-md-70 {
    height: 70% !important;
  }
  .hi-md-80 {
    height: 80% !important;
  }
  .hi-md-90 {
    height: 90% !important;
  }
  .hi-md-100 {
    height: 100% !important;
  }
}

@media only screen and (min-width: 992px) {
  .hi-lg-10 {
    height: 10% !important;
  }
  .hi-lg-16 {
    height: 16.66% !important;
  }
  .hi-lg-20 {
    height: 20% !important;
  }
  .hi-lg-25 {
    height: 25% !important;
  }
  .hi-lg-30 {
    height: 30% !important;
  }
  .hi-lg-33 {
    height: 33.33% !important;
  }
  .hi-lg-40 {
    height: 40% !important;
  }
  .hi-lg-50 {
    height: 50% !important;
  }
  .hi-lg-60 {
    height: 60% !important;
  }
  .hi-lg-66 {
    height: 66.66% !important;
  }
  .hi-lg-70 {
    height: 70% !important;
  }
  .hi-lg-80 {
    height: 80% !important;
  }
  .hi-lg-90 {
    height: 90% !important;
  }
  .hi-lg-100 {
    height: 100% !important;
  }
}

/*
Height - VH
*/
.hi-100vh {
  height: 100vh !important;
}

.hi-90vh {
  height: 90vh !important;
}

.hi-80vh {
  height: 80vh !important;
}

.hi-70vh {
  height: 70vh !important;
}

.hi-60vh {
  height: 60vh !important;
}

.hi-50vh {
  height: 50vh !important;
}

.hi-40vh {
  height: 40vh !important;
}

.hi-30vh {
  height: 30vh !important;
}

.hi-20vh {
  height: 20vh !important;
}

.hi-10vh {
  height: 10vh !important;
}

@media only screen and (min-width: 768px) {
  .hi-md-100vh {
    height: 100vh !important;
  }
  .hi-md-90vh {
    height: 90vh !important;
  }
  .hi-md-80vh {
    height: 80vh !important;
  }
  .hi-md-70vh {
    height: 70vh !important;
  }
  .hi-md-60vh {
    height: 60vh !important;
  }
  .hi-md-50vh {
    height: 50vh !important;
  }
  .hi-md-40vh {
    height: 40vh !important;
  }
  .hi-md-30vh {
    height: 30vh !important;
  }
  .hi-md-20vh {
    height: 20vh !important;
  }
  .hi-md-10vh {
    height: 10vh !important;
  }
}

@media only screen and (min-width: 1200px) {
  .hi-lg-100vh {
    height: 100vh !important;
  }
  .hi-lg-90vh {
    height: 90vh !important;
  }
  .hi-lg-80vh {
    height: 80vh !important;
  }
  .hi-lg-70vh {
    height: 70vh !important;
  }
  .hi-lg-60vh {
    height: 60vh !important;
  }
  .hi-lg-50vh {
    height: 50vh !important;
  }
  .hi-lg-40vh {
    height: 40vh !important;
  }
  .hi-lg-30vh {
    height: 30vh !important;
  }
  .hi-lg-20vh {
    height: 20vh !important;
  }
  .hi-lg-10vh {
    height: 10vh !important;
  }
}

/*
Height - PX
*/
.hi-50px {
  height: 50px !important;
}

.hi-75px {
  height: 75px !important;
}

.hi-100px {
  height: 100px !important;
}

.hi-125px {
  height: 125px !important;
}

.hi-150px {
  height: 150px !important;
}

.hi-175px {
  height: 175px !important;
}

.hi-200px {
  height: 200px !important;
}

.hi-225px {
  height: 225px !important;
}

.hi-250px {
  height: 250px !important;
}

.hi-275px {
  height: 275px !important;
}

.hi-300px {
  height: 300px !important;
}

.hi-325px {
  height: 325px !important;
}

.hi-350px {
  height: 350px !important;
}

.hi-375px {
  height: 375px !important;
}

.hi-400px {
  height: 400px !important;
}

.hi-425px {
  height: 425px !important;
}

.hi-450px {
  height: 450px !important;
}

.hi-475px {
  height: 475px !important;
}

.hi-500px {
  height: 500px !important;
}

.hi-525px {
  height: 525px !important;
}

.hi-550px {
  height: 550px !important;
}

.hi-575px {
  height: 575px !important;
}

.hi-600px {
  height: 600px !important;
}

@media only screen and (min-width: 768px) {
  .hi-md-50px {
    height: 50px !important;
  }
  .hi-md-75px {
    height: 75px !important;
  }
  .hi-md-100px {
    height: 100px !important;
  }
  .hi-md-125px {
    height: 125px !important;
  }
  .hi-md-150px {
    height: 150px !important;
  }
  .hi-md-175px {
    height: 175px !important;
  }
  .hi-md-200px {
    height: 200px !important;
  }
  .hi-md-225px {
    height: 225px !important;
  }
  .hi-md-250px {
    height: 250px !important;
  }
  .hi-md-275px {
    height: 275px !important;
  }
  .hi-md-300px {
    height: 300px !important;
  }
  .hi-md-300px {
    height: 300px !important;
  }
  .hi-md-325px {
    height: 325px !important;
  }
  .hi-md-350px {
    height: 350px !important;
  }
  .hi-md-375px {
    height: 375px !important;
  }
  .hi-md-400px {
    height: 400px !important;
  }
  .hi-md-425px {
    height: 425px !important;
  }
  .hi-md-450px {
    height: 450px !important;
  }
  .hi-md-475px {
    height: 475px !important;
  }
  .hi-md-500px {
    height: 500px !important;
  }
  .hi-md-525px {
    height: 525px !important;
  }
  .hi-md-550px {
    height: 550px !important;
  }
  .hi-md-575px {
    height: 575px !important;
  }
  .hi-md-600px {
    height: 600px !important;
  }
}

@media only screen and (min-width: 992px) {
  .hi-lg-50px {
    height: 50px !important;
  }
  .hi-lg-75px {
    height: 75px !important;
  }
  .hi-lg-100px {
    height: 100px !important;
  }
  .hi-lg-125px {
    height: 125px !important;
  }
  .hi-lg-150px {
    height: 150px !important;
  }
  .hi-lg-175px {
    height: 175px !important;
  }
  .hi-lg-200px {
    height: 200px !important;
  }
  .hi-lg-225px {
    height: 225px !important;
  }
  .hi-lg-250px {
    height: 250px !important;
  }
  .hi-lg-275px {
    height: 275px !important;
  }
  .hi-lg-300px {
    height: 300px !important;
  }
  .hi-lg-325px {
    height: 325px !important;
  }
  .hi-lg-350px {
    height: 350px !important;
  }
  .hi-lg-375px {
    height: 375px !important;
  }
  .hi-lg-400px {
    height: 400px !important;
  }
  .hi-lg-425px {
    height: 425px !important;
  }
  .hi-lg-450px {
    height: 450px !important;
  }
  .hi-lg-475px {
    height: 475px !important;
  }
  .hi-lg-500px {
    height: 500px !important;
  }
  .hi-lg-525px {
    height: 525px !important;
  }
  .hi-lg-550px {
    height: 550px !important;
  }
  .hi-lg-575px {
    height: 575px !important;
  }
  .hi-lg-600px {
    height: 600px !important;
  }
}

/*
Flex Basis
*/
.fb-50px {
  width: 50px !important;
}

.fb-75px {
  width: 75px !important;
}

.fb-100px {
  width: 100px !important;
}

.fb-125px {
  width: 125px !important;
}

.fb-150px {
  width: 150px !important;
}

.fb-175px {
  width: 175px !important;
}

.fb-200px {
  width: 200px !important;
}

.fb-225px {
  width: 225px !important;
}

.fb-250px {
  width: 250px !important;
}

.fb-275px {
  width: 275px !important;
}

.fb-300px {
  width: 300px !important;
}

.fb-325px {
  width: 325px !important;
}

.fb-350px {
  width: 350px !important;
}

.fb-375px {
  width: 375px !important;
}

.fb-400px {
  width: 400px !important;
}

.fb-425px {
  width: 425px !important;
}

.fb-450px {
  width: 450px !important;
}

.fb-475px {
  width: 475px !important;
}

.fb-500px {
  width: 500px !important;
}

.fb-525px {
  width: 525px !important;
}

.fb-550px {
  width: 550px !important;
}

.fb-575px {
  width: 575px !important;
}

.fb-600px {
  width: 600px !important;
}

@media only screen and (min-width: 768px) {
  .fb-md-50px {
    width: 50px !important;
  }
  .fb-md-75px {
    width: 75px !important;
  }
  .fb-md-100px {
    width: 100px !important;
  }
  .fb-md-125px {
    width: 125px !important;
  }
  .fb-md-150px {
    width: 150px !important;
  }
  .fb-md-175px {
    width: 175px !important;
  }
  .fb-md-200px {
    width: 200px !important;
  }
  .fb-md-225px {
    width: 225px !important;
  }
  .fb-md-250px {
    width: 250px !important;
  }
  .fb-md-275px {
    width: 275px !important;
  }
  .fb-md-300px {
    width: 300px !important;
  }
  .fb-md-325px {
    width: 325px !important;
  }
  .fb-md-350px {
    width: 350px !important;
  }
  .fb-md-375px {
    width: 375px !important;
  }
  .fb-md-400px {
    width: 400px !important;
  }
  .fb-md-425px {
    width: 425px !important;
  }
  .fb-md-450px {
    width: 450px !important;
  }
  .fb-md-475px {
    width: 475px !important;
  }
  .fb-md-500px {
    width: 500px !important;
  }
  .fb-md-525px {
    width: 525px !important;
  }
  .fb-md-550px {
    width: 550px !important;
  }
  .fb-md-575px {
    width: 575px !important;
  }
  .fb-md-600px {
    width: 600px !important;
  }
}

@media only screen and (min-width: 992px) {
  .fb-lg-50px {
    width: 50px !important;
  }
  .fb-lg-75px {
    width: 75px !important;
  }
  .fb-lg-100px {
    width: 100px !important;
  }
  .fb-lg-125px {
    width: 125px !important;
  }
  .fb-lg-150px {
    width: 150px !important;
  }
  .fb-lg-175px {
    width: 175px !important;
  }
  .fb-lg-200px {
    width: 200px !important;
  }
  .fb-lg-225px {
    width: 225px !important;
  }
  .fb-lg-250px {
    width: 250px !important;
  }
  .fb-lg-275px {
    width: 275px !important;
  }
  .fb-lg-300px {
    width: 300px !important;
  }
  .fb-lg-325px {
    width: 325px !important;
  }
  .fb-lg-350px {
    width: 350px !important;
  }
  .fb-lg-375px {
    width: 375px !important;
  }
  .fb-lg-400px {
    width: 400px !important;
  }
  .fb-lg-425px {
    width: 425px !important;
  }
  .fb-lg-450px {
    width: 450px !important;
  }
  .fb-lg-475px {
    width: 475px !important;
  }
  .fb-lg-500px {
    width: 500px !important;
  }
  .fb-lg-525px {
    width: 525px !important;
  }
  .fb-lg-550px {
    width: 550px !important;
  }
  .fb-lg-575px {
    width: 575px !important;
  }
  .fb-lg-600px {
    width: 600px !important;
  }
}

.z-index10 {
  z-index: 10;
}

.z-index-100 {
  z-index: -100;
}

.z-index-101 {
  z-index: -101;
}

.z-index-102 {
  z-index: -102;
}

.z-index-103 {
  z-index: -103;
}

.z-index-104 {
  z-index: -104;
}

.z-index-105 {
  z-index: -105;
}

.z-index-106 {
  z-index: -106;
}

.z-index-107 {
  z-index: -107;
}

.z-index-108 {
  z-index: -108;
}

.z-index-109 {
  z-index: -109;
}

.z-index-110 {
  z-index: -110;
}

.wp-block-button.featured {
  background: #159bac;
  background: -webkit-gradient(linear, left top, right top, from(#159bac), color-stop(20%, #3866b0), color-stop(40%, #6058a5), color-stop(60%, #8b85bd), color-stop(80%, #8d2a8e), to(#d84246));
  background: linear-gradient(90deg, #159bac 0%, #3866b0 20%, #6058a5 40%, #8b85bd 60%, #8d2a8e 80%, #d84246 100%);
  padding: 2px;
  border-radius: 10em;
}

.ls-card {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
}

/*
Floating buttons Whatsapp
*/
.floating-buttons {
  position: fixed;
  z-index: 99;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: jittery 4s infinite;
          animation: jittery 4s infinite;
}

.floating-buttons p {
  margin-bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#3866b0), color-stop(50%, #6058a5), to(#8d2a8e));
  background: linear-gradient(90deg, #3866b0 0%, #6058a5 50%, #8d2a8e 100%);
  font-weight: bold;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .floating-buttons {
    right: 50px;
    bottom: 50px;
  }
}

/*
Pulsating add colors in .pulsating-circle:before, .pulsating-circle:after, .pulsating-circle i animations
*/
.pulsating-circle {
  width: 30px;
  height: 30px;
  position: relative;
  bottom: 0;
  right: 0;
}

.pulsating-circle a {
  position: absolute;
  top: 0;
}

.pulsating-circle a i {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 30px !important;
  line-height: 30px;
  font-size: 2em;
  text-align: center;
  color: #25d366;
}

.pulsating-circle:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background: #0d6f45;
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulsating-circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 8px rgba(116, 76, 7, 0.3);
          box-shadow: 0 0 8px rgba(116, 76, 7, 0.3);
  -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
          animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
  0% {
    -webkit-transform: scale(0.33);
            transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    -webkit-transform: scale(0.33);
            transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes pulse-dot {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes pulse-dot {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes jittery {
  5%, 50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  20% {
    -webkit-transform: scale(1.05) rotate(-5deg);
            transform: scale(1.05) rotate(-5deg);
  }
  25% {
    -webkit-transform: scale(1.05) rotate(5deg);
            transform: scale(1.05) rotate(5deg);
  }
  30% {
    -webkit-transform: scale(1.05) rotate(-3deg);
            transform: scale(1.05) rotate(-3deg);
  }
  35% {
    -webkit-transform: scale(1.05) rotate(2deg);
            transform: scale(1.05) rotate(2deg);
  }
  40% {
    -webkit-transform: scale(1.05) rotate(0);
            transform: scale(1.05) rotate(0);
  }
}

@keyframes jittery {
  5%, 50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  20% {
    -webkit-transform: scale(1.05) rotate(-5deg);
            transform: scale(1.05) rotate(-5deg);
  }
  25% {
    -webkit-transform: scale(1.05) rotate(5deg);
            transform: scale(1.05) rotate(5deg);
  }
  30% {
    -webkit-transform: scale(1.05) rotate(-3deg);
            transform: scale(1.05) rotate(-3deg);
  }
  35% {
    -webkit-transform: scale(1.05) rotate(2deg);
            transform: scale(1.05) rotate(2deg);
  }
  40% {
    -webkit-transform: scale(1.05) rotate(0);
            transform: scale(1.05) rotate(0);
  }
}

/*
CTA - 1
*/
.cta-type-1 {
  background: var(--color-off-white);
  padding-top: 3em;
  padding-bottom: 3em;
}

.cta-group {
  margin-bottom: -100px !important;
}

.cta-type-1 .cta-block-a, .cta-type-1 .cta-block-b {
  border-radius: 10px;
  background: #3866b0;
  background: -webkit-gradient(linear, left top, right top, from(#3866b0), color-stop(50%, #6058a5), to(#8d2a8e));
  background: linear-gradient(90deg, #3866b0 0%, #6058a5 50%, #8d2a8e 100%);
}

.cta-type-1 .cta-block-a {
  color: var(--color-white);
}

.cta-type-1 .cta-block-b > .wp-block-group {
  border-radius: 10px;
}

.wpcf7 {
  width: 100%;
}

.wpcf7 .wpcf7-form {
  padding: 10px;
}

.wpcf7 .wpcf7-form label {
  width: 100%;
  font-size: .85rem;
  text-transform: uppercase;
  color: #bdbdbd;
}

.wpcf7 .wpcf7-form .wpcf7-form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.wpcf7 .wpcf7-form .wpcf7-form-control:focus {
  border-color: #111;
}

.wpcf7 .wpcf7-form [type="text"] {
  color: #111;
}

.wpcf7 .wpcf7-form textarea {
  height: 150px;
}

.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-submit {
  padding: .5rem 2.5rem;
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  border-radius: 2.1875rem;
  max-width: 300px;
  margin: 0 auto;
}

.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-submit:focus {
  background: #323232;
}

.heading-group {
  margin-bottom: 2em;
}

.heading-group > * {
  text-transform: capitalize;
}

.heading-group > *:first-child {
  font-size: .8rem;
  position: relative;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}

.heading-group > *:first-child:before, .heading-group > *:first-child:after {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--color-lightest-black);
  display: inline-block;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.heading-group > *:first-child::after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.heading-group > *:last-child {
  font-size: 1.5em;
  font-weight: bold;
}

@media only screen and (min-width: 992px) {
  .heading-group > *:last-child {
    font-size: 2em;
  }
}

.heading-group.only-left > *:first-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.heading-group.only-left > *:first-child:after {
  display: none;
}

.list-clean {
  list-style: none;
  padding-left: 0;
}

ul.li-cols-2, .li-cols-2 ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

/*
Loading
*/
.loading-container {
  display: inline-block;
}

.loading-container .loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loading-container .loading > div {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-animation: bounce 1.5s 0.5s linear infinite;
          animation: bounce 1.5s 0.5s linear infinite;
}

.loading-container .loading > div:not(:last-child) {
  margin-right: 5px;
}

.loading-container .loading .yellow {
  background-color: #1973d1;
}

.loading-container .loading .red {
  background-color: #135cc5;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.loading-container .loading .blue {
  background-color: #0c3baa;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading-container .loading .violet {
  background-color: #061993;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@keyframes bounce {
  0%,
  50%,
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  25% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  75% {
    -webkit-filter: blur(2px);
            filter: blur(2px);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.modal, .offcanvas {
  z-index: 9999;
}

.offcanvas .offcanvas-header button.canvas-close, .modal .modal-dialog .modal-header button.btn-close {
  position: absolute;
  right: -10px;
  top: 0;
  background: var(--color-gradient);
  color: #000;
  opacity: 1;
  width: 25px;
  height: 25px;
  z-index: 9999;
  padding: 0;
  border: none;
}

.offcanvas.show {
  border-right: 5px solid var(--color1);
}

.modal-body {
  padding: 1rem;
}

/*
Display For Modal
*/
.display-for-modal {
  display: none;
}

.modal .display-for-modal {
  display: block;
}

.modal-backdrop.show {
  opacity: 0.75 !important;
}

/*
Modal
*/
.modal {
  padding: 15px;
}

.modal .btn-close {
  right: -10px;
  top: -10px;
  background: #000;
  opacity: 1;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 99;
}

.modal .wpcf7-submit {
  background: -webkit-gradient(linear, left top, right top, from(#3866b0), color-stop(50%, #6058a5), to(#8d2a8e)) !important;
  background: linear-gradient(90deg, #3866b0 0%, #6058a5 50%, #8d2a8e 100%) !important;
}

#wpcf7-f351-o1 form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#wpcf7-f351-o1 form p {
  width: 50%;
  padding: 5px;
}

#wpcf7-f351-o1 form p:nth-child(9), #wpcf7-f351-o1 form p:nth-child(10), #wpcf7-f351-o1 form p:nth-child(11) {
  width: 100%;
}

.quote-1 {
  background: var(--color-white);
  border-left: 0;
  position: relative;
}

.quote-1:before {
  content: '';
  height: 100%;
  width: 5px;
  background: #159bac;
  background: -webkit-gradient(linear, left bottom, left top, from(#159bac), color-stop(20%, #3866b0), color-stop(40%, #6058a5), color-stop(60%, #8b85bd), color-stop(80%, #8d2a8e), to(#d84246));
  background: linear-gradient(0deg, #159bac 0%, #3866b0 20%, #6058a5 40%, #8b85bd 60%, #8d2a8e 80%, #d84246 100%);
  position: absolute;
  left: 0;
  top: 0;
}

/*
Border-radius
*/
.radius-1rem, .radius-2rem {
  overflow: hidden;
}

.radius-1rem.rounded {
  border-radius: 0.7rem !important;
}

.radius-1rem.rounded-top {
  border-top-right-radius: 0.7rem !important;
  border-top-left-radius: 0.7rem !important;
}

.radius-1rem.rounded-end {
  border-top-right-radius: 0.7rem !important;
  border-bottom-right-radius: 0.7rem !important;
}

.radius-1rem.rounded-top {
  border-top-left-radius: 0.7rem !important;
  border-top-right-radius: 0.7rem !important;
}

.radius-1rem.rounded-bottom {
  border-bottom-left-radius: 0.7rem !important;
  border-bottom-right-radius: 0.7rem !important;
}

.radius-1rem.rounded-start {
  border-bottom-left-radius: 0.7rem !important;
  border-top-left-radius: 0.7rem !important;
}

.radius-2rem.rounded {
  border-radius: 2rem !important;
}

.radius-2rem.rounded-end {
  border-top-right-radius: 0.7rem !important;
  border-bottom-right-radius: 0.7rem !important;
}

.radius-2rem.rounded-top {
  border-top-left-radius: 0.7rem !important;
  border-top-right-radius: 0.7rem !important;
}

.radius-2rem.rounded-bottom {
  border-bottom-left-radius: 0.7rem !important;
  border-bottom-right-radius: 0.7rem !important;
}

.radius-2rem.rounded-start {
  border-bottom-left-radius: 0.7rem !important;
  border-top-left-radius: 0.7rem !important;
}

.shadow-s {
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

.slick-arrow {
  cursor: pointer;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -30px;
  margin-left: -30px;
}

.slick-arrow:last-of-type {
  margin-left: 30px;
}

.slick-dots {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 1em;
}

.slick-dots li {
  text-indent: -9999px;
  width: 10px;
  height: 10px;
  background: #363636;
  cursor: pointer;
}

.slick-dots li.slick-active {
  opacity: .5;
}

.slick-dots li:not(:last-child) {
  margin-right: 5px;
}

.slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slick-track .slick-slide {
  height: inherit;
  margin: 0 15px;
}

figure.table table {
  width: 100%;
  min-width: 240px;
  border-collapse: collapse;
  margin-bottom: 24px;
}

figure.table table td, figure.table table th {
  padding: .3em;
  word-break: break-all;
}

figure.table table th {
  text-align: center;
}

figure.table-striped table > tbody > tr:nth-of-type(odd) {
  background: #f2f2f2;
}

header {
  -webkit-box-shadow: 0 3px 6px 0 rgba(36, 39, 44, 0.1);
          box-shadow: 0 3px 6px 0 rgba(36, 39, 44, 0.1);
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

header .wp-block-navigation .wp-block-navigation-item {
  padding: 5px 10px;
  font-weight: bold;
}

header .main-header {
  background: rgba(255, 255, 255, 0.9);
  padding: 5px;
  position: fixed;
  left: 0;
  right: 0;
  border-radius: 10em;
  z-index: 99;
  margin: 0 auto;
  margin-top: 10px;
}

@media only screen and (max-width: 575px) {
  header .main-header {
    max-width: calc(100vw - 20px);
  }
}

@media only screen and (min-width: 992px) {
  header .main-header {
    border-radius: 2em 10em 10em 2em;
    margin-top: 1em;
  }
}

header .main-header .custom-logo-link {
  max-width: 100px;
  margin-left: 1em;
}

@media only screen and (min-width: 992px) {
  header .main-header .custom-logo-link {
    max-width: 250px;
    margin-left: inherit;
  }
}

header .main-header .wp-block-button {
  background: #3866b0;
  background: -webkit-gradient(linear, left top, right top, from(#3866b0), color-stop(50%, #6058a5), to(#8d2a8e));
  background: linear-gradient(90deg, #3866b0 0%, #6058a5 50%, #8d2a8e 100%);
  color: #fff;
  border-radius: 2em;
}

header .main-header .wp-block-button.bg-transparent {
  background: none;
  color: #000;
}

header .main-header .wp-block-button .wp-element-button {
  background: inherit;
  color: inherit;
}

header.affix {
  background: #fff;
  font-size: .8em;
  position: fixed;
  z-index: 99;
  width: 100%;
  left: 0;
  top: 0;
}

header.affix .main-header {
  position: static;
  margin-top: 0;
}

header.affix .main-header .wp-block-site-logo {
  width: 100px;
}

.entry-content.wp-block-post-content > div {
  padding-top: 2em;
  padding-bottom: 2em;
}

@media only screen and (min-width: 992px) {
  .entry-content.wp-block-post-content > div {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

footer {
  font-size: .9rem;
  padding-top: calc(1em + 100px);
  padding-bottom: 1em;
  background: var(--color-black);
  color: var(--color-white);
}

footer .wp-block-navigation .wp-block-navigation__container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .wp-block-navigation .wp-block-navigation__container .wp-block-navigation-item {
  padding: 5px;
}

footer h5 {
  margin-bottom: 1em;
}

body.home .wp-block-cover .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  list-style: none;
  position: absolute;
  gap: 5px;
  bottom: 50px;
  left: 0;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

body.home .wp-block-cover .pagination li {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

body.home .wp-block-cover .pagination li:nth-child(3) {
  width: 50px;
  background: #159bac;
  background: -webkit-gradient(linear, left top, right top, from(#159bac), color-stop(20%, #3866b0), color-stop(40%, #6058a5), color-stop(60%, #8b85bd), color-stop(80%, #8d2a8e), to(#d84246));
  background: linear-gradient(90deg, #159bac 0%, #3866b0 20%, #6058a5 40%, #8b85bd 60%, #8d2a8e 80%, #d84246 100%);
  border-radius: 10px;
  height: 5px;
}

.intro-caption {
  margin-left: 0;
  margin-right: auto;
  max-width: 500px;
}

@media only screen and (min-width: 992px) {
  .intro-caption h1,
  .intro-caption h2,
  .intro-caption h3,
  .intro-caption h4,
  .intro-caption h5 {
    line-height: 1.2em;
    font-size: 3em;
  }
}

@media only screen and (min-width: 992px) {
  .intro-caption {
    margin-left: 5vw;
  }
}

.intro-caption .wp-block-buttons {
  margin-top: 2em;
}

.intro-caption .slideCol {
  text-align: left;
  overflow: hidden;
  font-weight: 900;
  font-size: 40pt;
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
}

.intro-caption .slideCol p {
  margin: 0px !important;
  font-weight: bold;
}

.intro-caption .slideCol .scroller {
  height: 40pt;
  line-height: 40pt;
  overflow: hidden;
  background: #159bac;
  background: -webkit-gradient(linear, left top, right top, from(#159bac), color-stop(20%, #3866b0), color-stop(40%, #6058a5), color-stop(60%, #8b85bd), color-stop(80%, #8d2a8e), to(#d84246));
  background: linear-gradient(90deg, #159bac 0%, #3866b0 20%, #6058a5 40%, #8b85bd 60%, #8d2a8e 80%, #d84246 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.intro-caption .slideCol .scroller .inner {
  -webkit-animation: 10s normal infinite running scroll40;
          animation: 10s normal infinite running scroll40;
}

@media only screen and (min-width: 992px) {
  .intro-caption .slideCol .scroller .inner {
    -webkit-animation: 10s normal infinite running scroll60;
            animation: 10s normal infinite running scroll60;
  }
}

@media only screen and (min-width: 992px) {
  .intro-caption .slideCol .scroller {
    height: 40pt;
    line-height: 40pt;
  }
}

@-webkit-keyframes scroll60 {
  0% {
    margin-top: 0px;
  }
  15% {
    margin-top: 0px;
  }
  25% {
    margin-top: -60pt;
  }
  40% {
    margin-top: -60pt;
  }
  50% {
    margin-top: -120pt;
  }
  65% {
    margin-top: -120pt;
  }
  75% {
    margin-top: -180pt;
  }
  90% {
    margin-top: -180pt;
  }
  100% {
    margin-top: 0px;
  }
}

@keyframes scroll60 {
  0% {
    margin-top: 0px;
  }
  15% {
    margin-top: 0px;
  }
  25% {
    margin-top: -60pt;
  }
  40% {
    margin-top: -60pt;
  }
  50% {
    margin-top: -120pt;
  }
  65% {
    margin-top: -120pt;
  }
  75% {
    margin-top: -180pt;
  }
  90% {
    margin-top: -180pt;
  }
  100% {
    margin-top: 0px;
  }
}

@-webkit-keyframes scroll40 {
  0% {
    margin-top: 0px;
  }
  15% {
    margin-top: 0px;
  }
  25% {
    margin-top: -40pt;
  }
  40% {
    margin-top: -40pt;
  }
  50% {
    margin-top: -80pt;
  }
  65% {
    margin-top: -80pt;
  }
  75% {
    margin-top: -120pt;
  }
  90% {
    margin-top: -120pt;
  }
  100% {
    margin-top: 0px;
  }
}

@keyframes scroll40 {
  0% {
    margin-top: 0px;
  }
  15% {
    margin-top: 0px;
  }
  25% {
    margin-top: -40pt;
  }
  40% {
    margin-top: -40pt;
  }
  50% {
    margin-top: -80pt;
  }
  65% {
    margin-top: -80pt;
  }
  75% {
    margin-top: -120pt;
  }
  90% {
    margin-top: -120pt;
  }
  100% {
    margin-top: 0px;
  }
}

#services {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(40%, #f8efff));
  background-image: linear-gradient(180deg, #ffffff 0%, #f8efff 40%);
}

#services .ls-card {
  padding: 2em !important;
  background: var(--color-white);
}

#services .service-heading-icon {
  padding: 1em;
}

#services .service-heading-icon h1,
#services .service-heading-icon h2,
#services .service-heading-icon h3,
#services .service-heading-icon h4,
#services .service-heading-icon h5,
#services .service-heading-icon h6 {
  font-size: 1.5em;
}

#services .ls-card {
  /*
        &:nth-child(2) {
            .service-heading-icon {
                img {
                    background: #3268b1;
                }
            }

        }

        &:nth-child(3) {
            .service-heading-icon {
                img {
                    background: #6454a3;
                }
            }

        }

        &:nth-child(4) {
            .service-heading-icon {
                img {
                    background: #7c4198;
                }
            }

        }

        &:nth-child(5) {
            .service-heading-icon {
                img {
                    background: #8c2c8f;
                }
            }

        }

        &:nth-child(6) {
            .service-heading-icon {
                img {
                    background: #b3366c;
                }
            }
        }
        */
}

#services .ls-card .service-heading-icon img {
  border-radius: 10px;
}

#services .ls-card:nth-child(1) {
  background: #3866b0;
  background: -webkit-gradient(linear, left top, right top, from(#3866b0), color-stop(50%, #6058a5), to(#8d2a8e));
  background: linear-gradient(90deg, #3866b0 0%, #6058a5 50%, #8d2a8e 100%);
  color: #fff;
}

/*
Success Story - Section
*/
#success-story .container {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 2em;
  max-width: calc(100vw - 30px);
  margin: 0 auto;
}

#success-story .container .cta-rep {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
/*# sourceMappingURL=style.css.map */