@charset "UTF-8";
/*--------------------------------------------------------------
  >>> TABLE OF CONTENTS:
  ----------------------------------------------------------------
  # Base
  # Sections
    ## Header
    ## Banner
    ## Footer

  --------------------------------------------------------------*/
/* Fool-proof @font-face */
/* Based on http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/ */

:root {
  /* For buttons */
  --purple: 107, 93, 250;
  --pink: 236, 76, 134;
  --emerald: 110, 184, 200;
  --blue: 56, 186, 254;
  --yellow: 247, 171, 37;

  /* For shadow */
  --on-white: 131, 134, 215;
  --on-purple: 75, 78, 193;
  --on-blue: 100, 167, 210;
  --on-pink: 232, 167, 191;
  /* For text */
  --black: 46, 48, 56;
  --dark-blue: 102, 110, 183;
  /* For background */
  --white-bg: 251, 251, 255;
  --purple-bg: 149, 154, 255;
  --blue-bg: 213, 237, 253;
  --pink-bg: 255, 233, 241, 1;
}

hr {
  border: 0;
  clear: both;
  display: block;
  width: 100%;
  background-color: #00000024;
  height: 1px;
}
html {
  scroll-behavior: smooth;
  overflow-y: overlay;
  scroll-padding-top: 120px;
}

/* Front */
@-webkit-keyframes slide-down {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@keyframes slide-down {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.zoom {
  -webkit-animation-name: zoom;
  animation-name: zoom;
}

@-webkit-keyframes zoom2 {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom2 {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.zoom2 {
  -webkit-animation-name: zoom2;
  animation-name: zoom2;
}

@-webkit-keyframes zoommd {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes zoommd {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}
.zoomBounce {
  -webkit-animation-name: zoomBounce;
  animation-name: zoomBounce;
}

@-webkit-keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }
  100% {
    -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
    transform: translateX(30px) scale(1.3) translateY(10px);
  }
}
@keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }
  100% {
    -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
    transform: translateX(30px) scale(1.3) translateY(10px);
  }
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
  }
}
@-webkit-keyframes gptFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gptFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes gptFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes gptFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes gptFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes gptFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes gptFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes gptFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes gptFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes gptFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes gptZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes gptZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes gptBounceIn {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes gptBounceIn {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.gptFade {
  -webkit-animation-name: gptFade;
  animation-name: gptFade;
}

.gptFadeUp {
  -webkit-animation-name: gptFadeUp;
  animation-name: gptFadeUp;
}

.gptFadeDown {
  -webkit-animation-name: gptFadeDown;
  animation-name: gptFadeDown;
}

.gptFadeLeft {
  -webkit-animation-name: gptFadeLeft;
  animation-name: gptFadeLeft;
}

.gptFadeRight {
  -webkit-animation-name: gptFadeRight;
  animation-name: gptFadeRight;
}

.gptZoomIn {
  -webkit-animation-name: gptZoomIn;
  animation-name: gptZoomIn;
}

.gptBounceIn {
  -webkit-animation-name: gptBounceIn;
  animation-name: gptBounceIn;
}

@-webkit-keyframes jumping {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes jumping {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}
@-webkit-keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes moveclouds {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(30px, 0px, 0);
    transform: translate3d(30px, 0px, 0);
    opacity: 1;
  }
}
@keyframes moveclouds {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(30px, 0px, 0);
    transform: translate3d(30px, 0px, 0);
    opacity: 1;
  }
}
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 120px;
    width: 120px;
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 120px;
    width: 120px;
    opacity: 0;
  }
}
@-webkit-keyframes pulsesm {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 80px;
    width: 80px;
    opacity: 0;
  }
}
@keyframes pulsesm {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 80px;
    width: 80px;
    opacity: 0;
  }
}
.gpUpX {
  -webkit-animation-name: gpUpX;
  animation-name: gpUpX;
}

.gpUpSmX {
  -webkit-animation: gpUpX 1s both 1s;
  animation: gpUpX 1s both 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.gpDownX {
  -webkit-animation-name: gpDownX;
  animation-name: gpDownX;
}

@-webkit-keyframes gpUpX {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -30px);
    transform: translate(80px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes gpUpX {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -30px);
    transform: translate(80px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gpDownX {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 80px);
    transform: translate(-80px, 80px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes gpDownX {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 80px);
    transform: translate(-80px, 80px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes leafMotion {
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}
@keyframes leafMotion {
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}
@-webkit-keyframes slideInnew3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes slideInnew3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes animeone {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(80px, 1px) rotate(50deg);
    transform: translate(80px, 1px) rotate(50deg);
  }
  40% {
    -webkit-transform: translate(145px, 72px) rotate(90deg);
    transform: translate(145px, 72px) rotate(90deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(125deg);
    transform: translate(83px, 122px) rotate(125deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(140deg);
    transform: translate(-40px, 72px) rotate(140deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
@keyframes animeone {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(80px, 1px) rotate(50deg);
    transform: translate(80px, 1px) rotate(50deg);
  }
  40% {
    -webkit-transform: translate(145px, 72px) rotate(90deg);
    transform: translate(145px, 72px) rotate(90deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(125deg);
    transform: translate(83px, 122px) rotate(125deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(140deg);
    transform: translate(-40px, 72px) rotate(140deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
@-webkit-keyframes animetwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
@keyframes animetwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
@-webkit-keyframes animethree {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translateY(-73px) rotate(-36deg);
    transform: translateY(-73px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translateY(-141px) rotate(-72deg);
    transform: translateY(-141px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translateY(-83px) rotate(-108deg);
    transform: translateY(-83px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translateY(40px) rotate(-144deg);
    transform: translateY(40px) rotate(-144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
@keyframes animethree {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translateY(-73px) rotate(-36deg);
    transform: translateY(-73px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translateY(-141px) rotate(-72deg);
    transform: translateY(-141px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translateY(-83px) rotate(-108deg);
    transform: translateY(-83px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translateY(40px) rotate(-144deg);
    transform: translateY(40px) rotate(-144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
body {
  font-family: "Noto Sans JP", "Poppins", sans-serif;

  line-height: 1.5;
  font-weight: 400;
  color: rgba(var(--black));
}
@media (max-width: 576px) {
  body {
    font-size: 0.875em;
  }
}

.no-scroll {
  overflow: hidden;
}

#main_content {
  background: #fff;
}

svg {
  display: block;
}

a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input,
textarea,
select {
  width: 100%;
  background: #fff;
  padding: 10px 10px;
  /* border: 1px solid #ebebf5; */
  outline: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  border-radius: 10px;
  /* border: 1px solid transparent; */
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #a4abc0;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #a4abc0;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a4abc0;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #a4abc0;
}
input::placeholder,
textarea::placeholder {
  color: #a4abc0;
}
input:focus,
textarea:focus {
  -webkit-box-shadow: 0px 15px 17px 0px rgba(20, 3, 70, 0.08);
  box-shadow: 0px 15px 17px 0px rgba(20, 3, 70, 0.08);
  background: transparent;
  /* border-color: #fafafc; */
}

textarea {
  height: 160px;
}

a,
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 600;
  color: rgba(var(--black));
  font-family: "Noto Sans JP", "Poppins", sans-serif;
}

h1 {
  font-size: clamp(2em, 4vw, 3em);
}
h2 {
  font-size: clamp(1.75em, 3vw, 2.5em);
}
h3 {
  font-size: clamp(1.5em, 2.5vw, 2em);
}
h4 {
  font-size: clamp(1.25em, 2vw, 1.5em);
}
h5 {
  font-size: clamp(1.125em, 1.5vw, 1.25em);
}
h6 {
  font-size: clamp(0.875em, 1vw, 1em);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  margin-top: -1px;
}

.pr {
  position: relative;
  z-index: 111;
}
/* ============================================ */
/* 				CUSTOMIZED MARGIN			 	*/
/* ============================================ */
.pt-0 {
  padding-top: 0px !important;
}
/* -------Margin top ---------- */
.mt-0 {
  margin-top: 0px !important;
}
.mt-12 {
  margin-top: 12px !important;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-75 {
  margin-top: 75px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-140 {
  margin-top: 140px;
}
@media (max-width: 991px) {
  .mt-140 {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .mt-80 {
    margin-top: 0 !important;
  }
}
/* ------Margin bottom----- */
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-8 {
  margin-bottom: 8px !important;
}
.mb-16 {
  margin-bottom: 16px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}
@media (max-width: 991px) {
  .mb-140 {
    margin-bottom: 50px !important;
  }
}
.mb-160 {
  margin-bottom: 160px !important;
}

.section-mb {
  margin-bottom: clamp(50px, 10vw, 150px) !important;
}
/* ------Margin Left/Right------ */
@media (min-width: 1200px) {
  .ml--55 {
    margin-left: -55px;
  }

  .mr--50 {
    margin-right: -50px;
  }
}
.mr_20 {
  margin-right: 20px;
}
.mr_8 {
  margin-right: 8px;
}
.ml_20 {
  margin-left: 20px;
}
.ml_80 {
  margin-left: 80px;
}
.ml_8 {
  margin-left: 8px;
}
.ml_10 {
  margin-left: 10px;
}
.align-center {
  /* used for row */
  height: 100%;
  align-content: center;
}
.align-items-center {
  /* used for row */
  height: 100%;
  align-items: center;
}
.full-height {
  height: 100%;
}
.full-screen {
  min-height: 100vh !important;
  display: flex;
  align-items: center;
}
/* ============================================ */
/* 				CUSTOMIZED PADDING			 	*/
/* ============================================ */
/* ------Padding Right------ */
.pr_2 {
  padding-right: 2%;
}
.pr_4 {
  padding-right: 4%;
}
/* ------Padding Left------ */
.pl_2 {
  padding-left: 2%;
}
.pl_4 {
  padding-left: 4%;
}
/* ------Padding Top/Bottom------ */
.ptb_50 {
  padding: 50px 0px;
}
.pb_100 {
  padding-bottom: 100px;
}
/* ============================================ */

@media (max-width: 991px) {
  .order-md {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.border-none {
  border: 0;
}
.border-none:before,
.border-none:after {
  display: none;
}

.struct-body {
  color: rgba(var(--black));
}
.struct-body h1,
.struct-body h2,
.struct-body h3,
.struct-body h4,
.struct-body h5,
.struct-body h6 {
  color: rgba(var(--black));
}

.container {
  max-width: 1200px;
}

@media (max-width: 991px) {
  .gpt-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 767px) {
  .gpt-order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
/*--------------------------------------------------------------
  ##  Preloader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #fff;
}
.page-loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.page-loading-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-loading-wrapper svg {
  width: 0;
  height: 0;
}
/* Page Loader */
.loading {
  font-size: 84px;
  font-weight: 800;
  text-align: center;
  width: 100%;
  line-height: 1;
}
.loading span {
  position: relative;
  color: rgba(0, 0, 0, 0.2);
  display: inline-block;
}
.loading span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: rgba(var(--black));
  opacity: 0;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: loading 3s infinite;
  animation: loading 3s infinite;
}
.loading span:nth-child(2)::after {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loading span:nth-child(3)::after {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loading span:nth-child(4)::after {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loading span:nth-child(5)::after {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loading span:nth-child(6)::after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.loading span:nth-child(7)::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0%,
  75%,
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
  25%,
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loading {
  0%,
  75%,
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
  25%,
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/*--------------------------------------------------------------
  ##  Button
  --------------------------------------------------------------*/
.button-container {
  margin-top: 50px;
}

@-webkit-keyframes shine {
  from {
    opacity: 0;
    left: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}

/* Back To Top */
.return-to-top {
  position: fixed;
  bottom: -30px;
  right: 20px;
  width: 42px;
  height: 42px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: bottom 0.5s ease, opacity 0.5s ease;
  -o-transition: bottom 0.5s ease, opacity 0.5s ease;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}
.return-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  display: block;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: inherit;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.6s ease;
  transition: transform 0.5s ease, opacity 0.6s ease;
  transition: transform 0.5s ease, opacity 0.6s ease,
    -webkit-transform 0.5s ease;
}
.return-to-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: inherit;
}
.return-to-top > i {
  position: relative;
  overflow: hidden;
  font-size: 0.75em;
  width: inherit;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent;
  text-shadow: 0 0 #fff, 0 50px #fff;
  -webkit-transition: text-shadow 0.2s ease;
  -o-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.2s ease;
  z-index: 1;
}
.return-to-top:hover:after {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
  background: rgba(var(--purple));
  -webkit-box-shadow: 0 10px 20px 8px rgba(26, 191, 104, 0.15);
  box-shadow: 0 10px 20px 8px rgba(26, 191, 104, 0.15);
}

.return-to-top:hover > i {
  text-shadow: 0 -50px #fff, 0 0 #fff;
}
.return-to-top.back-top {
  bottom: 20px;
  opacity: 1;
}
/*--------------------------------------------------------------
##  Section Heading
--------------------------------------------------------------*/
.section-heading {
  margin-bottom: 30px;
  text-align: left;
  position: relative;
  z-index: 222;
}
.section-title {
  font-size: clamp(1.5em, 2vw, 1.875em);
  line-height: 1.5;
  font-weight: 600;
  color: rgba(var(--black));
  margin-bottom: 30px;
}

.section-title span {
  font-weight: 300;
}
@media (max-width: 576px) {
  .section-title br {
    display: none;
  }
}
.section-heading p {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-heading p br {
    display: none;
  }
}
.solution .section-heading .section-title img {
  margin-bottom: 10px;
}
.section-title-topline {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-top: 36px;
}
.section-title-topline:before {
  position: absolute;
  content: "";
  width: 175px;
  height: 3px;
  background: #d3d8ff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@keyframes circle {
  50% {
    width: 25px;
    height: 25px;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes sideways {
  33% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  66% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
@keyframes sideways {
  33% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  66% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site-header.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header.header-transparent .struct-main-menu > li > a:before {
  display: none;
}
.site-header .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header .site-logo a {
  padding: 24px 0;
  display: flex;
}

.site-header .site-logo .logo-sticky {
  display: none;
}
.site-header .struct-burger-menu {
  text-align: right;
  display: none;
  cursor: pointer;
}
.site-header .struct-burger-menu span {
  background: rgba(var(--black));
  height: 2px;
  display: block;
  margin-left: auto;
}
.site-header .struct-burger-menu span:not(:last-child) {
  margin-bottom: 5px;
}
.site-header .struct-burger-menu .bar-one {
  width: 20px;
}
.site-header .struct-burger-menu .bar-two {
  width: 25px;
}
.site-header .struct-burger-menu .bar-three {
  width: 15px;
}
.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}
.site-header.header-fixed.showed .site-logo a {
  color: rgba(var(--black));
}
.site-header.header-fixed.showed .site-logo h3 {
  color: rgba(var(--black));
}
@media (min-width: 993px) {
  .site-header:not(.mobile-header) .nav-right {
    gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .site-header:not(.mobile-header) .nav-left {
    gap: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
#nav-right-contact,
#nav-right-contact-mobile {
  color: rgba(var(--purple));
}
#nav-right-contact:hover,
#nav-right-contact:focus,
#nav-right-contact-mobile:hover,
#nav-right-contact-mobile:focus {
  color: rgba(var(--purple));
  text-shadow: 0.2px 0.2px rgba(var(--purple));
}
@media (max-width: 1130px) {
  #nav-right-contact {
    display: none;
  }
}
@media (max-width: 992px) {
  #nav-right-signup,
  #nav-right-login {
    display: none;
  }
  #nav-right-lang {
    display: none;
  }
}

@media (min-width: 1200px) {
  .site-header:not(.mobile-header) .site-logo {
    /* width: 15%; */
  }
  .site-header:not(.mobile-header).header-main .nav-right {
    margin-left: 40px;
  }

  .site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right {
    margin-left: 40px;
  }

  .site-header:not(.mobile-header) .nav-right .search-btn {
    display: inline-block;
    margin-right: 15px;
    color: rgba(var(--black));
    cursor: pointer;
  }
  .site-header:not(.mobile-header) .menu-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .submenu-align-right .site-header:not(.mobile-header) {
    width: auto;
  }
}
.site-header:not(.mobile-header) .mobile-nav-btn {
  display: none;
}
.mobile-nav-btn {
  z-index: 1;
  height: fit-content;
  position: relative;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 20px 60px;
  background: #fff;
  box-shadow: 0px 7px 30px 0px rgba(var(--purple), 0.46);
}
.mobile-nav-btn .btn {
  width: 100%;
}
.site-header:not(.mobile-header) .main-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header:not(.mobile-header) .main-nav {
  position: relative;
}
.site-header:not(.mobile-header) .struct-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header:not(.mobile-header) .struct-main-menu > li {
  padding: 35px 0;
}
.site-header:not(.mobile-header) .struct-main-menu > li > a {
  font-weight: 500;
  font-size: 0.875em;
  color: rgba(var(--black));
  position: relative;
}
.site-header:not(.mobile-header) .struct-main-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -2px;
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85),
    -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  background: #fff;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}
.site-header:not(.mobile-header) .struct-main-menu > li > a:hover:before,
.site-header:not(.mobile-header)
  .struct-main-menu
  > li
  > a.current-menu-item:before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.site-header:not(.mobile-header) .struct-main-menu > li > a:after {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.site-header:not(.mobile-header) .struct-main-menu > li > a:hover,
.site-header:not(.mobile-header) .struct-main-menu > li > a.current-menu-item {
  color: rgba(var(--purple));
}
.site-header:not(.mobile-header)
  .struct-main-menu
  > li:nth-last-child(-n + 3).has-submenu
  .sub-menu {
  left: auto;
  right: 0;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  > li:nth-last-child(-n + 3).has-submenu
  .sub-menu
  li
  ul {
  right: 100%;
}
.site-header:not(.mobile-header) .struct-main-menu > li:not(.mega-menu) {
  position: relative;
}
.menu-light .site-header:not(.mobile-header) .struct-main-menu > li > a {
  color: #fff;
}
.site-header:not(.mobile-header) .struct-main-menu li {
  display: inline-block;
}
.site-header:not(.mobile-header) .struct-main-menu li:not(:last-child) {
  margin-right: 35px;
}
.site-header:not(.mobile-header) .struct-main-menu li.has-submenu > a:after {
  content: "";
  font-family: "themify";
  position: absolute;
  top: calc(50% - 9px);
  right: 30px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  font-size: 0.75em;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site-header:not(.mobile-header) .struct-main-menu li.has-submenu .sub-menu {
  margin: 0;
  padding: 15px 0;
  position: absolute;
  top: 85%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  min-width: 130px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
  box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
  z-index: 2222;
  width: max-content;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu.sub-menu-wide {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 80px 25px;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu.sub-menu-wide
  > .mega-menu-item
  > a {
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: rgba(var(--black));
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu.sub-menu-wide
  > .mega-menu-item
  > a:after {
  display: none;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu.sub-menu-wide
  .sub-menu {
  position: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  visibility: unset;
  opacity: unset;
}
.site-header:not(.mobile-header) .struct-main-menu li.has-submenu .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  line-height: 1.5;
  width: 100%;
}

.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  a {
  padding: 10px 30px;
  display: block;
  line-height: 1.5;
  color: #686875;
  font-weight: 500;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  .feature-group-line
  li
  a {
  height: 191px;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu#others-mega-menu
  li
  a {
  height: 128px;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  a:hover,
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  a.current-menu-item {
  color: rgba(var(--purple));
  background-color: #f9f9f9;
  border-radius: 10px;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  a:hover:after,
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  a.current-menu-item:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  ul {
  padding: 15px 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 220px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 5px 10px #14303a15;
  box-shadow: 0px 5px 10px #14303a15;
}
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li.has-submenu:hover
  ul,
.site-header:not(.mobile-header)
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li.has-submenu:active
  ul {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.site-header:not(.mobile-header) .struct-main-menu li.has-submenu:hover ul,
.site-header:not(.mobile-header) .struct-main-menu li.has-submenu:active ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.site-header:not(.mobile-header).header-struct
  .struct-main-menu
  > li
  > a:before {
  display: none;
}
.site-header:not(.mobile-header).header-struct .struct-main-menu > li > a:hover,
.site-header:not(.mobile-header).header-struct
  .struct-main-menu
  > li
  > a.current-menu-item {
  color: rgba(var(--purple));
}
.site-header:not(.mobile-header).header-struct
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  a:hover,
.site-header:not(.mobile-header).header-struct
  .struct-main-menu
  li.has-submenu
  .sub-menu
  li
  a.current-menu-item {
  color: rgba(var(--purple));
}
.site-header:not(.mobile-header).header-struct.header-fixed.showed
  .struct-main-menu
  li
  a:hover,
.site-header:not(.mobile-header).header-struct.header-fixed.showed
  .struct-main-menu
  li
  a.current-menu-item {
  color: rgba(var(--purple));
}
.site-header:not(.mobile-header).header-transparent.header-2
  .struct-main-menu
  > li
  > a {
  color: #fff;
}
.site-header:not(.mobile-header).header-bg {
  background: #fff;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(8, 2, 46, 0.08);
  box-shadow: 0px 20px 40px 0px rgba(8, 2, 46, 0.08);
}
.site-header:not(.mobile-header).header-bg .struct-main-menu > li {
  padding: 27px 0;
}
.site-header:not(.mobile-header).submenu-align-right .menu-wrapper {
  width: auto;
}
.site-header:not(.mobile-header).submenu-align-right
  .struct-main-menu
  > li:nth-last-child(-n + 3).has-submenu
  .sub-menu {
  left: auto;
  right: 0;
}
.site-header:not(.mobile-header).submenu-align-right
  .struct-main-menu
  > li:nth-last-child(-n + 3).has-submenu
  .sub-menu
  li
  ul {
  right: 100%;
}
.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}
.site-header.header-fixed.showed .site-logo .logo-sticky {
  display: block;
}
.site-header.header-fixed.showed .menu-trigger .dot_icon .dot {
  background: rgba(var(--black));
}
.site-header.header-fixed.showed:not(.mobile-header) .struct-main-menu > li {
  padding: 27px 0;
}
.site-header.header-fixed.showed:not(.mobile-header) .struct-main-menu li a {
  color: rgba(var(--black));
}
.site-header.header-fixed.showed:not(.mobile-header)
  .struct-main-menu
  li
  a:hover {
  color: rgba(var(--purple));
}
.site-header.header-fixed.showed:not(.mobile-header) .struct-main-menu li > {
  padding: 27px 0;
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#site-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}
.canvas-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  display: none;
}

.close-menu {
  height: 50px;
  width: 50px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 3.3;
  color: rgba(var(--black));
}

.struct-main-menu {
  list-style: none;
}
.struct-main-menu ul {
  list-style: none;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
.mobile-header {
  height: auto;
  /*--------------------------------------------------------------
	### Main Nav
	--------------------------------------------------------------*/
}
.mobile-header .struct-burger-menu {
  display: block;
  margin-left: 20px;
}
.mobile-header .struct-burger-menu.desktop-view {
  display: none;
}
.mobile-header .canvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-header .site-logo .logo-sticky {
  display: none;
}
.mobile-header.header-fixed.showed .logo-sticky {
  display: block;
}
.mobile-header .site-logo a {
  padding: 13px 0;
}
.mobile-header .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 25px 0;
  border-top: 1px solid #eee;
}

.mobile-header.header-struct .nav-right {
  border: 0;
  padding: 0;
}
.mobile-header .main-nav-container {
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  background: #fff;
  max-width: 400px;
  width: 100%;
  text-align: left;
  overflow-y: auto;
  /* padding-bottom: 80px; */
  left: -100px;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 420px) {
  .mobile-header .main-nav-container {
    max-width: 100%;
  }
}
.mobile-header .main-nav-container.open {
  opacity: 1;
  left: 0;
  visibility: visible;
  display: flex;
  flex-direction: column;
}
.mobile-header .main-nav-container li a {
  color: rgba(var(--black));
  position: relative;
  z-index: 1;
  padding: 8px 25px;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-transform: capitalize;
  font-weight: 500;
  border-left: 2px solid transparent;
}
.mobile-header .main-nav-container li.has-submenu > a {
  position: relative;
}
.mobile-header .main-nav-container li.has-submenu > a:after {
  content: "";
  font-family: "themify";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.85em;
}
.mobile-header .main-nav-container li.has-submenu > a.active:after {
  content: "";
}
.mobile-header .main-nav-container li.has-submenu li a {
  font-size: 1.2em;
}
.mobile-header .main-nav-container .menu-item-depth-0 > a.active {
  background: rgba(var(--purple));
  color: #fff;
}
.mobile-header .main-nav-container .menu-item-depth-0 li a.active {
  color: rgba(var(--purple));
}
.mobile-header.header-main .struct-burger-menu {
  margin-left: 0;
}
.mobile-header.header-struct .main-nav-container .menu-item-depth-0 > a.active {
  background: rgba(var(--purple));
  color: #fff;
}
.mobile-header.header-struct
  .main-nav-container
  .menu-item-depth-0
  li
  a.active {
  color: rgba(var(--purple));
}
.mobile-header .main-nav {
  position: relative;
  z-index: 3333;
  line-height: 1.2;
}
.mobile-header .main-nav .struct-main-menu {
  padding-left: 0;
  height: 100%;
  /* overflow-y: scroll !important; */

  /* margin-bottom: 60px; */
}
.mobile-header .main-nav .sub-menu {
  padding-left: 15px;
  margin-left: 0;
  margin-bottom: 0;
  display: none;
}
.mobile-header .main-nav .sub-menu.active .main-item > .menu-link {
  background: #f8f9fa;
}
.mobile-header .main-nav .sub-menu li a {
  border-top: 0;
}
.mobile-header .main-nav .sub-menu li.active a.active .ti-plus {
  color: rgba(var(--purple));
}
.mobile-header .main-nav .nav-item.active-main-item > .menu-link {
  color: rgba(var(--purple));
  background: #f8f9fa;
  border-color: rgba(var(--purple));
}
.mobile-header .main-nav .sub-menu {
  padding-left: 15px;
  margin-bottom: 0;
}
.mobile-header .main-nav {
  cursor: default;
  position: relative;
  z-index: 10;
  text-align: left;
  font-weight: 500;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mobile-header .main-nav a:before,
.mobile-header .main-nav .close-bar {
  display: none;
}
.mobile-header .main-nav .menu,
.mobile-header .main-nav .menu ul {
  list-style: none;
}
.mobile-header .main-nav .nav-item:before,
.mobile-header .main-nav .nav-item.current-menu-item:before,
.mobile-header .main-nav .nav-item.current-menu-ancestor:before {
  background-color: rgba(var(--purple));
}
.mobile-header .main-nav .nav-item.active-main-item > .menu-link {
  color: rgba(var(--purple));
}
.mobile-header .main-nav .nav-right .cu_btn {
  padding: 13px 26px;
  min-width: auto;
  margin-top: 0;
}
.mobile-header .main-nav.hidden {
  display: none;
}

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 222;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/
.banner {
  height: fit-content;
  position: relative;
}

@media (min-width: 992px) {
  .mw-600 {
    max-width: 600px;
  }
}
/**
Banner Main
*/
.banner-main {
  /* background-image: -o-linear-gradient(30deg, #fcf5f6 0%, #f8fbfe 100%);
	background-image: linear-gradient(60deg, #fcf5f6 0%, #f8fbfe 100%); */
  background: rgba(var(--white-bg));
}
/* @media (max-width: 991px) {
	.banner-main {
		height: 850px;
	}
} */
.banner-main .banner-main-content-wrapper {
  padding-top: 170px;
  position: relative;
  z-index: 2;
}
#top-page-banner {
  padding-top: 200px;
}
#top-page-banner-left {
  padding-right: 45px;
  display: flex;
  align-items: center;
}
.banner-main .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .banner-main .banner-main-content-wrapper,
  #top-page-banner {
    padding-top: 150px;
  }
  .banner-main .banner-content {
    align-items: center;
    text-align: center;
  }
  .banner-main .banner-content .listitem {
    text-align: left;
    margin: auto !important;
  }
  #top-page-banner-left {
    padding-right: 20px;
  }
}

.banner-main .banner-content .banner-title,
.page-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: bolder;
  line-height: 1.3;
  margin-bottom: 30px !important;
  text-wrap: wrap;
}
.banner-main .banner-content .description,
.page-description {
  font-size: clamp(1em, 1vw, 1.25em);
  color: rgba(var(--black));
  margin-bottom: 38px;
}
.banner-main .banner-content .description .sub-description {
  font-weight: lighter;
  margin: 0;
}
.banner-button-container {
  width: fit-content;
  display: inline-block;
}

.swiper-pagination {
  position: relative;
  margin-top: 55px;
}
.swiper-pagination .swiper-pagination-bullet {
  height: 6px;
  width: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  opacity: 1;
  background: #dce4f2;
  outline: 0;
  margin: 0 6px !important;
}
.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: #ff2b78;
  border-radius: 50%;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff2b78;
}
.swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.swiper-pagination.style-circle {
  margin-top: 0;
}
.swiper-pagination.style-circle .swiper-pagination-bullet {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #c6ccda;
  margin: 0 7px;
}
.swiper-pagination.style-circle .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: -7px;
  bottom: -7px;
  right: -7px;
  left: -7px;
  border: 1px solid #ff2b78;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.swiper-pagination.style-circle
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff2b78;
}
.swiper-pagination.style-circle
  .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/* Banner Infinite Right */
.banner-infinite-right {
  background: rgba(var(--white-bg));
  height: 100%;
  overflow: hidden;
}
.banner-infinite-right .banner-shape {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .banner-infinite-right .mw-570 {
    max-width: 570px;
  }
}
.banner-infinite-right .banner-infinite-right-content {
  padding: 320px 0;
  z-index: 3;
  position: relative;
  z-index: 333;
}
@media (max-width: 1024px) {
  .banner-infinite-right .banner-infinite-right-content {
    padding: 250px 0;
  }
}
@media (max-width: 992px) {
  .banner-infinite-right .banner-infinite-right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.banner-infinite-right .banner-infinite-right-content .banner-title {
  margin-bottom: 30px;
}

.banner-infinite-right .banner-infinite-right-content .description {
  font-size: clamp(1em, 1vw, 1.25em);
  color: rgba(var(--black));
  margin-bottom: 38px;
}

.banner-infinite-right .banner-infinite-right-wrapper {
  margin: 0 -754px 0 0;
}
@media (max-width: 1600px) {
  .banner-infinite-right .banner-infinite-right-wrapper {
    margin: 0 -550px 0 0;
  }
}
@media (max-width: 1440px) {
  .banner-infinite-right .banner-infinite-right-wrapper {
    margin: 0 -260px 0 0;
  }
}
@media (max-width: 1280px) {
  .banner-infinite-right .banner-infinite-right-wrapper {
    margin: 0 -150px 0 0;
  }
}
@media (max-width: 1024px) {
  .banner-infinite-right .banner-infinite-right-wrapper {
    margin: 0;
  }
}
.banner-infinite-right .infinite-graphic-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.banner-infinite-right
  .infinite-graphic-wrapper
  .banner-infinite-right-animate-element {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 4;
}
.banner-infinite-right
  .infinite-graphic-wrapper
  .banner-infinite-right-animate-element
  li {
  position: absolute;
}
.banner-infinite-right
  .infinite-graphic-wrapper
  .banner-infinite-right-animate-element
  li:nth-child(1) {
  top: 280px;
  left: 0;
  max-width: 600px;
}
@media (max-width: 1600px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(1) {
    max-width: 750px;
  }
}
@media (max-width: 1440px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(1) {
    max-width: 675px;
  }
}
@media (max-width: 1280px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(1) {
    max-width: 610px;
  }
}
@media (max-width: 1200px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(1) {
    max-width: 550px;
    right: -20px;
  }
}
@media (max-width: 1024px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(1) {
    max-width: 500px;
    right: -50px;
  }
}
.banner-infinite-right
  .infinite-graphic-wrapper
  .banner-infinite-right-animate-element
  li:nth-child(2) {
  top: 130px;
  right: -150px;
}
@media (max-width: 1600px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(2) {
    right: -80px;
    max-width: 340px;
  }
}
@media (max-width: 1440px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(2) {
    top: 140px;
    right: -125px;
    max-width: 300px;
  }
}
@media (max-width: 1280px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(2) {
    right: -100px;
    max-width: 270px;
  }
}
@media (max-width: 1200px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(2) {
    right: -30px;
    max-width: 250px;
  }
}
@media (max-width: 1024px) {
  .banner-infinite-right
    .infinite-graphic-wrapper
    .banner-infinite-right-animate-element
    li:nth-child(2) {
    top: 150px;
    right: -90px;
    max-width: 220px;
  }
}

/*--------------------------------------------------------------
  ##  Intro Video
  --------------------------------------------------------------*/
.intro-video {
  position: relative;
  padding: 100px 0px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .intro-video {
    padding: 80px 0;
  }
}
.intro-video .popup-video-warapper {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  z-index: 2;
}
@media (max-width: 991px) {
  .intro-video .popup-video-warapper {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}

.intro-video-two .intro-video-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.video-content-wrapper {
  max-width: 470px;
}
@media (max-width: 991px) {
  .video-content-wrapper {
    padding-bottom: 80px;
    max-width: 100%;
  }
}
.video-content-wrapper .title {
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .video-content-wrapper .title br {
    display: none;
  }
}
.video-content-wrapper p {
  margin-bottom: 48px;
  color: rgba(var(--black));
}

.mw-670 {
  max-width: 670px;
}

.intro-video-wrapper {
  margin: 0 -350px 0 0;
}
@media (max-width: 1200px) {
  .intro-video-wrapper {
    margin: 0 -50px 0 0;
  }
}
@media (max-width: 1200px) {
  .intro-video-wrapper {
    margin: 0;
  }
}

.intro-video-inner {
  border-radius: inherit;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.intro-video-inner img,
.intro-video-inner video {
  height: 100%;
}
.intro-video-inner .popup-video {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  height: 80px;
  width: 80px;
  line-height: 1.5;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 20px 40px 0px rgb(77 90 254 / 14%);
  box-shadow: 0px 20px 40px 0px rgb(77 90 254 / 14%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.intro-video-inner .popup-video i {
  text-shadow: 0px 10px 14px rgba(77, 90, 254, 0.4);
  color: #4d5afe;
  font-size: 1.125em;
  margin-left: 6px;
}
.intro-video-inner .popup-video:before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-animation: videoBtnAnim 3s linear infinite;
  animation: videoBtnAnim 3s linear infinite;
  display: block;
}
.intro-video-inner .popup-video:after {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  height: 140px;
  width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-animation: videoBtnAnim 5s linear infinite;
  animation: videoBtnAnim 5s linear infinite;
  display: block;
}

@-webkit-keyframes videoBtnAnim {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes videoBtnAnim {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.counter-box-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

/*--------------------------------------------------------------
  ##  Icon Box
  --------------------------------------------------------------*/
.struct-icon-box-two {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.struct-icon-box-two .icon {
  margin-bottom: 10px;
}
.struct-icon-box-two .icon i {
  font-size: 1.25em;
  color: #ff2b78;
}

/* Saas Feature One */
#feature {
  padding: 100px 0 90px;
}
@media (max-width: 991px) {
  #feature {
    padding: 70px 0 0;
  }
}
.icon-box {
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.icon-box .icon-container {
  margin-bottom: 40px;
}

.icon-box .box-content .box-title a {
  color: #373d46;
}

@media (max-width: 991px) {
  .icon-box .box-content p br {
    display: none;
  }
}
.icon-box.struct-style {
  padding: 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  border-top: 4px solid transparent;
}
.icon-box.struct-style .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  font-size: 1.875em;
  background: #e5f9e4;
  border-radius: 20px;
  text-align: center;
  color: #27cb24;
  margin-bottom: 35px;
}
.icon-box.struct-style .box-content .box-title {
  font-weight: 500;
  margin-bottom: 15px;
}
.icon-box.struct-style.cl-five .box-content .box-title {
  font-weight: 600;
  margin-bottom: 15px;
}
.icon-box.struct-style.color-two .icon-container {
  background: #fee5ef;
  color: #f6297b;
}
.icon-box.struct-style.color-three .icon-container {
  background: #e7efff;
  color: #3880fb;
}
.icon-box.struct-style.color-four .icon-container {
  background: #fdf7e6;
  color: #f4ca64;
}
.icon-box.struct-style.color-five .icon-container {
  background: #e1f8f6;
  color: #1ac7bd;
}
.icon-box.struct-style.color-six .icon-container {
  background: #fbe9fe;
  color: #dd49f8;
}
.icon-box.struct-bullet-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0;
}
@media (max-width: 991px) {
  .icon-box.struct-bullet-style {
    margin-bottom: 30px;
  }
}
.icon-box.struct-bullet-style .icon-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 3px;
  width: 22px;
  margin-right: 20px;
}
.icon-box.struct-bullet-style .box-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .icon-box.struct-bullet-style .box-content .box-title br {
    display: none;
  }
}

@media (max-width: 991px) {
  .icon-box.struct-bullet-style .box-content p br {
    display: none;
  }
}
/*--------------------------------------------------------------
  ##  Columns Info Box
  --------------------------------------------------------------*/
.column-box {
  padding: 90px 0 50px;
}
@media (max-width: 991px) {
  .column-box {
    padding: 50px 0;
  }
}
.info-boxes {
  margin-bottom: 30px;
  padding: 0 30px;
}
#assign-mgnt-1 .info-boxes {
  padding: 0 20px;
}
.info-boxes .title {
  font-weight: 600;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
  ##  Image Content
  --------------------------------------------------------------*/
.image-content {
  padding: 100px 0px;
  overflow: hidden;
}
.image-content-with-footer {
  padding: 100px 0px 0px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .image-content {
    padding: 50px 0;
  }
  .image-content-with-footer {
    padding: 50px 0px 0px;
    overflow: hidden;
  }
}

.image-content-wrapper {
  padding-top: 40px;
}
.image-content-wrapper .title {
  font-size: clamp(1.5em, 2vw, 1.875em);
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(var(--black));
}
.image-content-wrapper p {
  margin-bottom: 30px;
}
.image-content-wrapper .listitem li i {
  color: #ff2b78;
  display: inline-block;
  vertical-align: middle;
}
.image-content-wrapper .listitem.color-theme li i {
  color: rgba(var(--purple));
}

.listitem {
  margin: auto auto 30px auto;
  padding: 0;
  list-style: none;
  width: fit-content;
}
.listitem li {
  color: rgba(var(--black));
  margin-bottom: 9px;
}
.listitem li i {
  margin-right: 10px;
  color: rgba(var(--purple));
}
.quick-case .listitem {
  margin: 0;
}
.quick-case .listitem li {
  color: rgba(var(--black));
  margin-bottom: 16px;
  display: inline-flex;
}
.quick-case .listitem li i {
  padding-top: 6px;
}
/*--------------------------------------------------------------
  ##  Preview Slider
  --------------------------------------------------------------*/
.preview-slider .astriol-pagination {
  width: 100%;
  margin-bottom: clamp(0em, 1vw, 2em);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* section 2 */
.dashboard-preview2 {
  padding: 111px 0 40px;
  background: #fafaff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media (max-width: 991px) {
  .dashboard-preview2 {
    padding: 71px 0 50px;
  }
}
.dashboard-preview2 .section-heading {
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .dashboard-preview2 .section-heading {
    margin-bottom: 0px;
    padding-right: 50px;
  }

  @media (max-width: 767px) {
    .dashboard-preview2 .section-heading {
      padding: 0px 50px;
    }
  }
}

.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet {
  height: auto;
  width: auto;
  /* min-width:175px; */
  border-radius: 40px;
  padding: 0.625em 1.125em 0.625em 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  outline: 0;
  font-weight: 500;
  color: rgba(var(--black));
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  margin-right: 10px;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination.white_text
  .swiper-pagination-bullet {
  color: #fff;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet
  i {
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: #f75687;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(2)
  i {
  background: #2acde1;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(3)
  i {
  background: #ffbb57;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(4)
  i {
  background: rgba(var(--yellow));
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(5)
  i {
  background: #73c216;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(6)
  i {
  background: #5489fa;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  -webkit-box-shadow: 0 10px 40px 0 rgba(var(--on-purple), 0.4);
  box-shadow: 0 10px 40px 0 rgba(var(--on-purple), 0.4);
  color: #fff;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(1).swiper-pagination-bullet-active
  span {
  color: #f75687;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(2).swiper-pagination-bullet-active
  span {
  color: #2acde1;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(3).swiper-pagination-bullet-active
  span {
  color: #ffbb57;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(4).swiper-pagination-bullet-active
  span {
  color: rgba(var(--yellow));
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(5).swiper-pagination-bullet-active
  span {
  color: #73c216;
}
.dashboard-preview2
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(6).swiper-pagination-bullet-active
  span {
  color: #5489fa;
}
/* section 3 */
.dashboard-preview3 {
  padding: 111px 0 95px;
  background: #fafaff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media (max-width: 991px) {
  .dashboard-preview3 {
    padding: 71px 0 50px;
  }
}
.dashboard-preview3 .section-heading {
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .dashboard-preview3 .section-heading {
    margin-bottom: 0px;
    padding-left: 50px;
  }

  @media (max-width: 767px) {
    .dashboard-preview3 .section-heading {
      padding: 0px 50px;
    }
  }
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet {
  height: auto;
  width: auto;
  /* min-width:110px; */
  border-radius: 40px;
  padding: 0.625em 1.125em 0.625em 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  outline: 0;
  font-weight: 500;
  color: rgba(var(--black));
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  margin-right: 10px;
}

.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet
  i {
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: #ffbb57;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(2)
  i {
  background: #2acde1;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(3)
  i {
  background: #f75687;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(4)
  i {
  background: rgba(var(--yellow));
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(5)
  i {
  background: #73c216;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(6)
  i {
  background: #5489fa;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  -webkit-box-shadow: 0 10px 40px 0 rgba(var(--on-white), 0.4);
  box-shadow: 0 10px 40px 0 rgba(var(--on-white), 0.4);
  color: #fff;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(1).swiper-pagination-bullet-active
  span {
  color: #ffbb57;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(2).swiper-pagination-bullet-active
  span {
  color: #2acde1;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(3).swiper-pagination-bullet-active
  span {
  color: #f75687;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(4).swiper-pagination-bullet-active
  span {
  color: rgba(var(--yellow));
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(5).swiper-pagination-bullet-active
  span {
  color: #73c216;
}
.dashboard-preview3
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(6).swiper-pagination-bullet-active
  span {
  color: #5489fa;
}
/* section 4 */
.dashboard-preview4 {
  padding: 411px 0 0px;
  background: #fafaff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media (max-width: 991px) {
  .dashboard-preview4 {
    padding: 71px 0 50px;
  }
}
.dashboard-preview4 .section-heading {
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .dashboard-preview4 .section-heading {
    margin-bottom: 0px;
    padding-right: 50px;
  }

  @media (max-width: 767px) {
    .dashboard-preview4 .section-heading {
      padding: 0px 50px;
    }
  }
}

.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet {
  height: auto;
  width: auto;
  /* min-width:206px; */
  border-radius: 40px;
  padding: 0.625em 1.125em 0.625em 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  outline: 0;
  font-weight: 500;
  color: rgba(var(--black));
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  margin-right: 10px;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet
  i {
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: #f75687;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(2)
  i {
  background: #35c1d6;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(3)
  i {
  background: #32b7fc;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(4)
  i {
  background: rgba(var(--yellow));
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(5)
  i {
  background: #73c216;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(6)
  i {
  background: #5489fa;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  -webkit-box-shadow: 0 10px 40px 0 rgba(var(--on-blue), 0.4);
  box-shadow: 0 10px 40px 0 rgba(var(--on-blue), 0.4);
  color: #fff;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(1).swiper-pagination-bullet-active
  span {
  color: #f75687;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(2).swiper-pagination-bullet-active
  span {
  color: #35c1d6;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(3).swiper-pagination-bullet-active
  span {
  color: #32b7fc;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(4).swiper-pagination-bullet-active
  span {
  color: rgba(var(--yellow));
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(5).swiper-pagination-bullet-active
  span {
  color: #73c216;
}
.dashboard-preview4
  .preview-slider
  .astriol-pagination
  .swiper-pagination-bullet:nth-child(6).swiper-pagination-bullet-active
  span {
  color: #5489fa;
}
/* ------------------------------- */
.slide-image-wrapper {
  display: flex;
  justify-content: center;
  max-height: 100%;
}
.previewSlider {
  padding: 30px 0;
}
.previewSlider .swiper-slide.swiper-slide-active .slide-image-wrapper {
  visibility: visible;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  opacity: 1 !important;
}
/*--------------------------------------------------------------
  ##  Column cards
  --------------------------------------------------------------*/
.col-lg-4:has(> .column-card) {
  display: flex;
  /* align-self: stretch; */
}
.column-card {
  background: #fff;
  padding: 50px;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 11, 40, 0.16);
  box-shadow: 0px 4px 6px 0px rgba(0, 11, 40, 0.16);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  width: 100%;
}
.column-card:before,
.column-card:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}
.column-card:hover {
  -webkit-box-shadow: 0px 30px 30px 0px rgba(35, 0, 41, 0.16);
  box-shadow: 0px 30px 30px 0px rgba(35, 0, 41, 0.16);
}
.column-card .icon-container i {
  line-height: 1.5;
}
.column-card h3 {
  font-weight: 600;
  margin-bottom: 25px;
  color: rgba(var(--black));
}
.column-card h3 a {
  color: rgba(var(--black));
}
.column-card h3 a:hover {
  color: #f8b137;
}

.column-card.color-two .icon-container {
  background-image: -o-linear-gradient(50deg, #5bc316 0%, #81e241 100%);
  background-image: linear-gradient(40deg, #5bc316 0%, #81e241 100%);
  -webkit-box-shadow: 0px 20px 30px 0px rgba(94, 204, 21, 0.3);
  box-shadow: 0px 20px 30px 0px rgba(94, 204, 21, 0.3);
}
.column-card.color-two .arrow-bullet li i {
  color: #a4b610;
}
.column-card.color-three .icon-container {
  background-image: -o-linear-gradient(50deg, #ec2b86 0%, #fe4a9e 100%);
  background-image: linear-gradient(40deg, #ec2b86 0%, #fe4a9e 100%);
  -webkit-box-shadow: 0px 20px 30px 0px rgba(246, 35, 134, 0.3);
  box-shadow: 0px 20px 30px 0px rgba(246, 35, 134, 0.3);
}
.column-card.color-three .arrow-bullet li i {
  color: #f62386;
}

/*--------------------------------------------------------------
  ##  Tabs
  --------------------------------------------------------------*/
.tab-swipe {
  position: relative;
}
.tab-swipe .indicator {
  background: #6e58fc;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 2px;
  bottom: 0;
}
/*--------------------------------------------------------------
  ##  Single Portfolio
  --------------------------------------------------------------*/
.counter-box {
  margin-bottom: 30px;
}
@media (min-width: 991px) {
  .counter-box.pl-100 {
    padding-left: 100px;
  }
}
@media (max-width: 991px) {
  .counter-box {
    text-align: center;
  }
}
.counter-box .count:not(:first-child) {
  border-left: 1px solid #e8e4f5;
}
.counter-box .count .counted {
  color: rgba(var(--black));
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}
.counter-box .count .counted span {
  margin-left: 2px;
}

.counter-box.style-three {
  display: flex;
  margin-bottom: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.counter-box.style-three .count {
  -moz-text-align-last: left;
  text-align-last: left;
}
@media (max-width: 768px) {
  .counter-box.style-three .count {
    border-top: 0;
  }
}
.counter-box.style-three .count .counted {
  font-weight: 600;
}
.counter-box.style-three .count .counted,
.counter-box.style-three .count span {
  font-size: clamp(2em, 4vw, 3em);
  color: #ff2b78;
  margin-bottom: 10px;
}
.counter-box.style-three .count span {
  font-weight: 500;
}
.counter-box.style-three .count-title {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .counter-box {
    display: block;
  }
  .counter-box .count {
    width: 100%;
    padding-top: 30px;
    max-width: 350px;
    margin: 0 auto 30px;
    border-top: 1px solid #e8e4f5;
  }
  .counter-box .count:not(:first-child) {
    border-left: none;
  }
}
/*--------------------------------------------------------------
  ##  Column List
  --------------------------------------------------------------*/
.column-list {
  padding-top: 100px;
  position: relative;
}
.column-list .section-heading {
  margin-bottom: 60px;
}

.banner-main-content-wrapper .ana-feature-image {
  margin-top: 50px;
}
.ana-feature-image img {
  position: relative;
  z-index: 1;
}

.animate-stroke {
  position: absolute;
  height: 230px;
  width: 100%;
  left: 0;
  bottom: 0;
}
.animate-stroke .stroke-one,
.animate-stroke .stroke-two {
  position: absolute;
  left: 0;
  background-size: auto;
}
.animate-stroke .stroke-one {
  bottom: 65px;
  -webkit-animation: parallax_fg 50s linear 1s infinite;
  animation: parallax_fg 50s linear 1s infinite;
  height: 165px;
  width: 100%;
}
.animate-stroke .stroke-two {
  bottom: 0;
  -webkit-animation: parallax_fg 80s linear 1s infinite;
  animation: parallax_fg 80s linear 1s infinite;
  height: 100%;
  width: 100%;
}

@-webkit-keyframes parallax_fg {
  0% {
    background-position: 2765px 100%;
  }
  100% {
    background-position: 550px 100%;
  }
}

@keyframes parallax_fg {
  0% {
    background-position: 2765px 100%;
  }
  100% {
    background-position: 550px 100%;
  }
}

/*--------------------------------------------------------------
  ##  Faqs
  --------------------------------------------------------------*/
.faqs {
  padding: 100px 0px;
}
.card {
  border: 0;
  background: transparent;
}
.card .card-header {
  background-color: transparent;
  border: 0;
  border-radius: 6px;
}
.card .card-header .btn-link {
  padding: 0;
  color: #373d46;
  font-weight: 600;
  text-decoration: none;
}
.card .card-body {
  padding: 0;
}
.card .card-body p {
  margin-bottom: 25px;
}

.faq {
  position: relative;
  z-index: 2;
}
.faq .card {
  border: 0;
  background: transparent;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 20px 60px 0 rgba(var(--on-white), 0.2);
  box-shadow: 0 20px 60px 0 rgba(var(--on-white), 0.2);
}
.faq .card .card-header {
  padding: 0;
}
.faq .card .card-header h5 {
  position: relative;
  margin: 0;
}
.faq .card .card-header .btn-link {
  background: #fff;
  font-weight: 600;
  color: rgba(var(--black));
  text-decoration: none;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 110px;
  padding: 30px 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.product-security-container .faq .card .card-header .btn-link {
  height: auto !important;
}
.faq .card .card-header .btn-link:before {
  content: "2";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 9;
  font-family: eleganticons;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #373d46;
}
.faq .card .card-header .btn-link.collapsed:before {
  content: "3";
  color: #4d446b;
}
.faq .card .card-body {
  padding: 40px;
  background: #fff;
}
.faq .card .card-body p {
  margin-bottom: 0;
}
.faq .card.active .card-header .btn-link {
  color: #373d46;
}
.faq.style-three .card {
  /* -webkit-box-shadow: none;
	        box-shadow: none; */
  margin-bottom: 30px;
}
.faq.style-three .card.active .card-header .btn-link {
  color: #373d46;
}
.faq.style-three .card .card-body {
  background: #fff;
  padding: 23px 30px 30px;
}
.faq.style-three .card .card-header .btn-link {
  background-color: #fff;
}

@media (max-width: 991px) {
  .faqs {
    padding: 80px 0;
  }
  .faq-wrapper {
    margin-top: 60px;
  }
  .faq-wrapper .section-heading {
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .faq .card .card-header h5:before {
    right: 20px;
  }
  .faq .card .card-header .btn-link {
    padding: 18px 20px;
  }
}
@media (max-width: 576px) {
  .faq .card .card-header .btn-link {
    padding: 18px 30px 18px 20px;
  }
  .faq .card .card-header h5:before {
    right: 10px;
  }
  .faq .card .card-body {
    padding: 5px 20px 25px;
  }
}
/** Faq **/
.faq-page {
  padding: 120px 0;
}

.gp-faq-tabs {
  display: block;
  background: #ffffff;
  padding: 15px 0px;
  border-radius: 6px;
  width: 100%;
  -webkit-box-shadow: 0 20px 60px 0 rgba(var(--on-white), 0.2);
  box-shadow: 0 20px 60px 0 rgba(var(--on-white), 0.2);
}
.gp-faq-tabs li {
  display: block;
  margin-bottom: 6px;
}
.gp-faq-tabs li a {
  padding: 15px 50px;
  color: #6b717c;
  font-weight: 500;
}
.gp-faq-tabs li a.active {
  background-color: rgba(var(--purple));
  color: #fff;
}

/*--------------------------------------------------------------
  ##  Quick case content
  --------------------------------------------------------------*/
.quick-case-content {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .quick-case-content {
    padding-right: 0;
    margin-top: 40px;
  }
}
/*--------------------------------------------------------------
  ##  Client logos
  --------------------------------------------------------------*/
.clients-logo {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .clients-logo {
    padding: 50px 0;
  }
}

.gp-client-logo {
  display: block;
}
.gp-client-logo .client-logo-main {
  position: relative;
  display: block;
  width: auto;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.gp-client-logo .client-logo-hover {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.gp-client-logo:hover .client-logo-main {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.gp-client-logo:hover .client-logo-hover {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin-bottom: 5px;
}

.marquee-wrap {
  overflow: hidden;
  padding: 25px 0 60px;
  position: relative;
}
.marquee-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(
    left,
    #fff 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    #fff 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fff),
    color-stop(20%, rgba(255, 255, 255, 0)),
    color-stop(80%, rgba(255, 255, 255, 0)),
    to(#fff)
  );
  background: linear-gradient(
    to right,
    rgba(var(--white-bg)) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    rgba(var(--white-bg)) 100%
  );
}

.logo-marque {
  margin-bottom: 10px;
}

.logo-marque-items {
  margin: 0 -15px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo-marque-items li {
  border-radius: 6px;
  width: 180px;
  height: auto;
  /* 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;
  margin: 0 80px;
}
.logo-marque-items li a {
  display: block;
  height: 100%;
}

.static-client-logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 50px 16px;
  width: 100%;
}
.static-client-logo img {
  height: auto;
  max-width: 150px;
}
/*--------------------------------------------------------------
  ##  Pricing
  --------------------------------------------------------------*/
.pricing-page,
.struct-pricing-page {
  padding: 100px 0 50px;
}
@media (max-width: 991px) {
  .pricing-page,
  .struct-pricing-page {
    padding: 75px 0 50px;
  }
}

.pricing-page .section-heading.style-two .section-title:before,
.pricing-page .section-heading.style-two .section-title:after {
  background: rgba(var(--purple));
}

/*--------------------------------------------------------------
  ##  Performance (Vertical Toggles)
  --------------------------------------------------------------*/
.gp-tabs-navigation {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .gp-tabs-navigation {
    max-width: 500px;
    margin: 0 auto;
  }
}
.gp-tabs-navigation li {
  height: auto;
  width: auto;
  border-radius: 40px;
  padding: 0.625em 1.125em 0.625em 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: 0;
  font-weight: 500;
  color: rgba(var(--black));
  opacity: 1;
  background: transparent;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 5px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#task-management-tabs li {
  width: 280px;
}
.gp-tabs-navigation li:last-child {
  margin-bottom: 0;
}
.gp-tabs-navigation li .tab-icon i {
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gp-tabs-navigation li:nth-child(1) .tab-icon i {
  background: rgba(var(--pink));
}
.gp-tabs-navigation li:nth-child(2) .tab-icon i {
  background: rgba(var(--blue));
}
.gp-tabs-navigation li:nth-child(3) .tab-icon i {
  background: rgba(var(--yellow));
}
.gp-tabs-navigation li:nth-child(4) .tab-icon i {
  background: rgba(var(--emerald));
}
.gp-tabs-navigation li a {
  color: rgba(var(--black));
  font-weight: 500;
}
.gp-tabs-navigation li.active-tab {
  -webkit-box-shadow: 0 10px 40px 0 rgb(158 158 239 / 34%),
    -5px 0 0 0 rgb(68 148 219 / 0%) s;
  box-shadow: 0 10px 40px 0 rgb(158 158 239 / 34%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
  position: relative;
  background: #fff;
}
.gp-tabs-navigation li:nth-child(1).active-tab a {
  color: #f75687;
}
.gp-tabs-navigation li:nth-child(2).active-tab a {
  color: #32b7fc;
}
.gp-tabs-navigation li:nth-child(3).active-tab a {
  color: rgba(var(--yellow));
}
.gp-tabs-content {
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 22;
  position: relative;
}
@media (max-width: 576px) {
  .gp-tabs-content {
    margin: 0;
  }
}
.gp-tabs-content li {
  display: none;
  -webkit-animation: fadeInOut;
  animation: fadeInOut;
}
.gp-tabs-content li.active-tab {
  display: block;
  -webkit-animation: fadeIn 0.5s ease-in-out;
  animation: fadeIn 0.5s ease-in-out;
}
.gp-tabs-content .vertical-toggle-tab-image {
  text-align: center;
}
.tab-content-inner {
  position: relative;
}
@media (max-width: 991px) {
  .tab-content-inner {
    max-width: 570px;
    margin: 0 auto 40px;
  }
}
.tab-content-inner .animate-shape-one {
  position: absolute;
  top: 65%;
  left: 46%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 420px) {
  .tab-content-inner .animate-shape-one {
    display: none;
  }
}
.tab-content-inner .animate-shape-two {
  position: absolute;
  right: 35px;
  top: 41%;
}

.tab-bg-shape {
  position: absolute;
  top: -55px;
  right: 13%;
  z-index: -1;
}

@media (min-width: 768px) {
  .gp-tabs-content {
    min-height: 480px;
  }
}
@media (min-width: 960px) {
  .gp-tabs-content {
    min-height: 0;
  }
}
@-webkit-keyframes gp-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes gp-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*--------------------------------------------------------------
  ##  Platform
  --------------------------------------------------------------*/
.column-simple {
  padding: 100px 0px;
  background: rgba(var(--white-bg));
  position: relative;
}
.column-simple .section-heading {
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .column-simple {
    padding: 116px 0 400px;
  }
}
@media (max-width: 991px) {
  .column-simple {
    padding: 75px 0 0;
  }
}
.column-simple .column-simple-mockup {
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .column-simple .column-simple-mockup {
    position: relative;
    text-align: center;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    margin-top: -143px;
  }
}
.column-simple .column-simple-mockup img {
  margin-left: 70px;
  margin-top: -41px;
  position: relative;
  z-index: 222;
}
@media (max-width: 1440px) {
  .column-simple .column-simple-mockup img {
    max-width: 1000px;
  }
}
@media (max-width: 1200px) {
  .column-simple .column-simple-mockup img {
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  .column-simple .column-simple-mockup img {
    max-width: 100%;
    margin-left: 0;
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0px, 15px, 0px);
    transform: translate3d(0px, 15px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0px, 23px, 0px);
    transform: translate3d(0px, 23px, 0px);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0px, 15px, 0px);
    transform: translate3d(0px, 15px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0px, 23px, 0px);
    transform: translate3d(0px, 23px, 0px);
  }
}
/*--------------------------------------------------------------
  ##  Newsletter
  --------------------------------------------------------------*/
.form-result {
  display: none;
  margin: 10px auto;
}
/*--------------------------------------------------------------
  ## Side by side style three
  --------------------------------------------------------------*/
.side-three-wrapper {
  padding-top: 30px;
}
.side-three-wrapper .section-title-two.title-big h2 {
  font-weight: 500;
}

.side-three-image {
  position: relative;
  max-width: 470px;
  height: 624px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .side-three-image {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .side-three-image {
    width: 320px;
  }
}
.side-three-image .img-one,
.side-three-image .img-two {
  position: absolute;
}
.side-three-image .img-one {
  right: -33px;
  top: 0;
}
.side-three-image .img-two {
  left: 3px;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 44;
}
.side-three-image .main-thumb {
  position: relative;
  z-index: 33;
}
.side-three-image .animate-circle.style-one {
  position: relative;
  margin-right: -43px;
}
.side-three-image .animate-circle img {
  position: absolute;
}
.side-three-image .animate-circle .anim-bg-one {
  right: -80px;
  top: 80px;
  -webkit-animation: wave 4s 0.1s infinite linear;
  animation: wave 4s 0.1s infinite linear;
}
.side-three-image .animate-circle .anim-bg-two {
  top: 127px;
  left: 57px;
  -webkit-animation: wave 3s 0.1s infinite linear;
  animation: wave 3s 0.1s infinite linear;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.side-three-image .animate-circle .anim-bg-three {
  left: 25px;
  top: 150px;
  -webkit-animation: wave 2s 0.1s infinite linear;
  animation: wave 2s 0.1s infinite linear;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.side-three-image .animate-circle.position-two .anim-bg-one {
  left: -95px;
  top: 90px;
  right: auto;
}
.side-three-image .animate-circle.position-two .anim-bg-two {
  left: -110px;
}
.side-three-image .animate-circle.position-two .anim-bg-three {
  left: -110px;
  top: 210px !important;
}
.side-three-image.style-two {
  height: auto;
  margin-left: -40px;
}
@media (max-width: 991px) {
  .side-three-image.style-two {
    margin: 0 0 50px 110px;
  }
}
.side-three-image.style-two .image-one {
  position: relative;
  z-index: 222;
}
.side-three-image.style-two .image-two {
  position: absolute;
  right: -70px;
  top: 50px;
  z-index: 333;
}
@media (max-width: 576px) {
  .side-three-image.style-two .image-two {
    max-width: 280px;
  }
}
.side-three-image.style-two .animate-circle.position-two .anim-bg-one {
  left: -60px;
  top: 160px;
  right: auto;
}
.side-three-image.style-two .animate-circle.position-two .anim-bg-two {
  left: -70px;
  top: 200px;
}
.side-three-image.style-two .animate-circle.position-two .anim-bg-three {
  left: -110px;
  top: 230px;
}

@keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }
}
/*--------------------------------------------------------------
  ##  Blog
  --------------------------------------------------------------*/
/* Blog Grid Two*/
#blog-grid-struct {
  padding: 50px 0px;
}
@media (max-width: 991px) {
  #blog-grid-struct {
    padding: 140px 0 50px;
  }
}
.struct-blog-filter {
  margin: 0 0 60px;
  padding: 0 0 20px;
  list-style: none;
  border-bottom: 1px solid #eaeaf7;
  display: flex;
  justify-content: space-evenly;
}
.struct-blog-filter li {
  display: inline-block;
}
.struct-blog-filter li a {
  font-weight: 500;
  color: rgba(var(--black));
  display: block;
  /* padding-right: 75px; */
}
.struct-blog-filter li a.isActive,
.struct-blog-filter li a:hover {
  color: rgba(var(--purple));
}
.struct-blog-filter.tab-swipe .indicator {
  background: rgba(var(--purple));
  bottom: -2px;
  height: 3px;
}

.struct-blog-items {
  margin: 0 -15px;
}

.struct-blog-post {
  overflow: hidden;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0 30px 50px 0 rgba(9, 4, 48, 0.08);
  box-shadow: 0 30px 50px 0 rgba(9, 4, 48, 0.08);
  margin-bottom: 5px;
  -webkit-transition: all 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
  -o-transition: all 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
  transition: all 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
  margin-bottom: 30px;
  height: 525px;
}
.struct-blog-post .post-thumbnail {
  overflow: hidden;
}
.struct-blog-post .post-thumbnail img {
  -webkit-transition: all 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
  -o-transition: all 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
  transition: all 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
}
.struct-blog-post .entry-content {
  padding: 20px 40px;
}
.struct-blog-post .entry-content .entry-title {
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 600;
  margin: 15px 0 22px;
}
.struct-blog-post .entry-content .entry-title a {
  color: rgba(var(--black));
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.struct-blog-post .entry-content .entry-title a:hover {
  color: rgba(var(--purple));
}
.struct-blog-post .entry-content .blog-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.struct-blog-post .entry-content .blog-footer .post-author {
  display: inline-block;
  font-size: 0.8em;
  color: #92929f;
  font-weight: 500;
  text-transform: uppercase;
}
.struct-blog-post .entry-content .blog-footer .post-author img {
  border-radius: 50%;
  margin-right: 10px;
}
.struct-blog-post .entry-content .blog-footer .post-author:hover {
  color: rgba(var(--purple));
}
.struct-blog-post .entry-content .blog-footer .date-meta {
  font-size: 0.8em;
  font-weight: 500;
  color: #92929f;
  text-transform: uppercase;
}
.struct-blog-post:hover .post-thumbnail img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.entry-content .entry-meta,
.entry-content .meta-cat a {
  font-size: 0.75em;
  font-weight: 500;
  background: rgba(50, 186, 19, 0.102);
  color: #32ba13;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 3px 20px;
  line-height: normal;
  vertical-align: middle;
  display: inline-block;
  margin-right: 21px;
  width: 185px;
  height: 25px;
  text-align: center;
}
.entry-content .entry-meta:hover,
.entry-content .meta-cat a:hover {
  background: #32ba13;
  color: #fff !important;
}
.entry-content .entry-meta.color-two,
.entry-content .meta-cat a.color-two {
  background-color: rgba(120, 74, 252, 0.102);
  color: #784afc;
}
.entry-content .entry-meta.color-two:hover,
.entry-content .meta-cat a.color-two:hover {
  background: #784afc;
}
.entry-content .entry-meta.color-three,
.entry-content .meta-cat a.color-three {
  background-color: rgba(26, 191, 104, 0.102);
  color: rgba(var(--purple));
}
.entry-content .entry-meta.color-three:hover,
.entry-content .meta-cat a.color-three:hover {
  background: rgba(var(--purple));
}
.entry-content .entry-meta.color-four,
.entry-content .meta-cat a.color-four {
  background-color: rgba(39, 120, 254, 0.102);
  color: #2778fe;
}
.entry-content .entry-meta.color-four:hover,
.entry-content .meta-cat a.color-four:hover {
  background: #2778fe;
}
.entry-content .entry-meta.color-five,
.entry-content .meta-cat a.color-five {
  background-color: rgba(238, 180, 21, 0.102);
  color: #eeb415;
}
.entry-content .entry-meta.color-five:hover,
.entry-content .meta-cat a.color-five:hover {
  background: #eeb415;
}
.entry-content .entry-meta.color-six,
.entry-content .meta-cat a.color-six {
  background-color: rgba(44, 44, 81, 0.102);
  color: #656577;
}
.entry-content .entry-meta.color-six:hover,
.entry-content .meta-cat a.color-six:hover {
  background: #656577;
}
.entry-content .entry-title {
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 500;
  margin: 15px 0 22px;
}
.entry-content .entry-title a {
  color: rgba(var(--black));
}
.entry-content .entry-title a:hover {
  color: rgba(var(--purple));
}
.entry-content .blog-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.entry-content .blog-footer .post-author {
  display: inline-block;
  font-size: 0.8em;
  color: #92929f;
  font-weight: 500;
}
.entry-content .blog-footer .post-author img {
  border-radius: 50%;
  margin-right: 10px;
}
.entry-content .blog-footer .post-author:hover {
  color: rgba(var(--purple));
}
.entry-content .blog-footer .date-meta {
  font-size: 0.8em;
  font-weight: 500;
  color: #92929f;
  text-transform: uppercase;
}

/* Blog List */
.blog-list-page {
  padding: 120px 0;
}

.struct-blog-list {
  /* margin-bottom: 70px; */
}
.struct-blog-list .post-thumbnail {
  border-radius: 10px;
  overflow: hidden;
}
.struct-blog-list .post-thumbnail img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.struct-blog-list .entry-content {
  padding-top: 20px;
}
.struct-blog-list .entry-content .entry-title {
  font-size: 1.25em;
  line-height: 1.4;
  font-weight: 600;
  margin: 10px 0 14px;
}
.struct-blog-list .entry-content p {
  font-size: 0.875em;
  line-height: 1.5;
  color: #797986;
  margin-bottom: 20px;
}
.struct-blog-list:hover .post-thumbnail img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.struct-blog-list.gallery-post:hover .post-thumbnail img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.post-meta {
  /* margin: 0 0 0 25px; */
  padding: 0;
  list-style: none;
  display: inline-block;
}
.post-meta li {
  display: inline-block;
}
.post-meta li:not(:last-child) {
  margin-right: 25px;
}
.post-meta li i {
  color: rgba(var(--purple));
  font-size: 0.875em;
  margin-right: 5px;
}
.post-meta li a {
  color: #797986;
  font-size: 0.8em;
  font-weight: 500;
  text-transform: uppercase;
}
.post-meta li a:hover {
  color: rgba(var(--purple));
}

.blog-footer {
  margin-top: 30px;
}
.blog-footer .post-tags {
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8f0;
}
.blog-footer .blog-share {
  padding-top: 15px;
}
/** Author Box */
.author-info_wrapper {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 20px 50px 0 rgba(11, 3, 67, 0.1);
  box-shadow: 0 20px 50px 0 rgba(11, 3, 67, 0.1);
  border-left: 4px solid rgba(var(--purple));
  padding: 41px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 75px;
}
.author-info_wrapper .author-info_avatar {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
}
.author-info_wrapper .author-info_avatar img {
  width: 100%;
}
.author-info_wrapper .author-info_content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.author-info_wrapper
  .author-info_content
  .author-info_description
  .author-info_name {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 25px;
}
.author-info_wrapper
  .author-info_content
  .author-info_description
  .author-info_name
  span {
  display: block;
  font-size: 0.875em;
  font-weight: 400;
  color: #9797a2;
  margin-top: 4px;
}
.author-info_wrapper .author-info_content .author-info_description p {
  margin: 0;
  color: #686875;
}

input[type="checkbox"] {
  /* Double-sized Checkboxes */
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  transform: scale(2);
  margin-left: 5px;
  margin-right: 18px;
}
.widget_search .search-form {
  background: #f3f3f9;
  border-radius: 5px;
  position: relative;
}
.widget_search .search-form label {
  margin: 0;
}
.widget_search .search-form input {
  margin: 0;
  padding: 16px 20px;
  background: transparent;
}
.widget_search .search-form input:focus,
.widget_search .search-form input:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.widget_search .search-form .search-submit {
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(var(--black));
}

.gp-posts-widget-wrapper .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gp-posts-widget-wrapper .post-item .post-widget-thumbnail {
  width: 225px;
  height: 132px;
  margin-right: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.gp-posts-widget-wrapper .post-item .post-widget-thumbnail img {
  border-radius: 10px;
}
.gp-posts-widget-wrapper .post-item .post-widget-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-self: center;
}
.gp-posts-widget-wrapper .post-item .post-widget-title {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 4px;
}
.gp-posts-widget-wrapper .post-item .post-widget-title a {
  color: rgba(var(--black));
}
.gp-posts-widget-wrapper .post-item .post-widget-title a:hover {
  color: rgba(var(--purple));
}
.gp-posts-widget-wrapper .post-item .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gp-posts-widget-wrapper .post-item .post-meta li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 0;
}
.gp-posts-widget-wrapper .post-item .post-meta li:before {
  display: none;
}
.gp-posts-widget-wrapper .post-item .post-meta li:not(:last-child):after {
  content: "";
  position: absolute;
  right: -14px;
  top: 8px;
  height: 10px;
  width: 1px;
  background: #92929f;
}
.gp-posts-widget-wrapper .post-item .post-meta li a {
  font-size: 0.75em;
  font-weight: 500;
  color: #92929f;
  text-transform: uppercase;
}
.gp-posts-widget-wrapper .post-item .post-meta li a:hover {
  color: rgba(var(--purple));
}

.recent-comments .comment-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  margin-bottom: 25px;
}
.recent-comments .comment-list .avatar {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #b6b1c4;
  margin-right: 20px;
}
.recent-comments .comment-list .avatar img {
  border-radius: 50%;
}
.recent-comments .comment-list .comment-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebe8f1;
}
.recent-comments .comment-list .comment-content .comments-text {
  color: rgba(var(--black));
  line-height: 1.5;
  margin-bottom: 10px;
  display: block;
}
.recent-comments .comment-list .comment-content .comments-text:hover {
  color: rgba(var(--purple));
}
.recent-comments .comment-list .comment-content .comment-author-link {
  display: block;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 500;
  color: #92929f;
}
.recent-comments .comment-list .comment-content .comment-author-link:hover {
  color: rgba(var(--purple));
}

.tagcloud a {
  display: inline-block;
  font-size: 0.875em;
  font-weight: 500;
  color: #656575;
  border: 2px solid #e4e5ed;
  padding: 9px 13px;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 5px;
  line-height: 1;
}
.tagcloud a:hover {
  color: #fff;
  background: rgba(var(--purple));
  border-color: rgba(var(--purple));
}

/*--------------------------------------------------------------
  ##  Call To Action
  --------------------------------------------------------------*/
#call-to-action-two {
  background: #7b83eb;
  padding: 147px 0 138px;
}
@media (max-width: 991px) {
  #call-to-action-two {
    padding: 120px 0;
  }
}
#call-to-action-pricing {
  background: #7b83eb;
  padding: 50px 30px;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 20px;
}
@media (max-width: 991px) {
  #pricing-cta-boxes {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
  }
  #pricing-cta-boxes .box-link-tag {
    min-width: 170px;
    width: auto;
  }
}
.call-to-action-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .call-to-action-two {
    display: block;
  }
}
@media (max-width: 768px) {
  .call-to-action-two .action-title {
    margin-bottom: 30px;
  }
}
.background-shapewrap img {
  position: absolute;
}
.background-shapewrap .shape-one {
  top: -50%;
  left: 0;
}
.background-shapewrap .shape-two {
  right: 0;
  bottom: -70%;
}
.background-shapewrap .shape-three {
  right: 0;
  bottom: 0;
}

.background-shapewrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.background-shapewrap img {
  position: absolute;
}
/*--------------------------------------------------------------
  ##  Page Header
  --------------------------------------------------------------*/
/* Page Header Two */
.page-banner-simple {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(246, 83, 155, 0.1)),
    to(rgba(141, 130, 255, 0.15))
  );
  background-image: -o-linear-gradient(
    right,
    rgba(246, 83, 155, 0.1) 0%,
    rgba(141, 130, 255, 0.15) 100%
  );
  background-image: linear-gradient(
    to left,
    rgb(246 83 155 / 10%) 0%,
    rgb(141 130 255 / 15%) 100%
  );
  padding: 150px 0 80px;
  overflow: hidden;
}
.page-banner-simple .page-title-wrapper {
  position: relative;
  z-index: 22;
}
.page-banner-simple .page-title-wrapper .page-title {
  color: rgba(var(--black));
  font-weight: 700;
  margin: 0;
}
.page-banner-simple .page-title-wrapper .breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-banner-simple .page-title-wrapper .breadcrumbs li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.page-banner-simple
  .page-title-wrapper
  .breadcrumbs
  li:not(:last-child):before {
  content: ">";
  position: absolute;
  right: -17px;
  top: 0;
}
.page-banner-simple .page-title-wrapper .breadcrumbs li a {
  color: #797986;
}
.page-banner-simple .page-title-wrapper .breadcrumbs li a:hover {
  color: rgba(var(--purple));
}
/*--------------------------------------------------------------
  ##  Contact
  --------------------------------------------------------------*/
.contact-information {
  background: #edeafe;
  padding: 45px;
  border-radius: 5px;
  height: 100%;
}
.contact-information .contact-title {
  font-weight: 600;
  color: rgba(var(--black));
  margin-bottom: 25px;
}
.contact-information .description {
  margin-bottom: 40px;
}
.contact-information .description a {
  color: rgba(var(--purple));
}
.contact-information .info-list {
  margin-bottom: 38px;
}
.contact-information .info-list .info-title {
  font-weight: 600;
  color: rgba(var(--black));
}

.contact-form-wrapper {
  padding-left: 85px;
}
@media (max-width: 767px) {
  .contact-form-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
}
.contact-form-page {
  margin-top: 80px;
}

.gp-input {
  background: #fff;
  border: 1px solid #c8c8c8;
  height: 50px;
  padding: 10px 10px;
}
.gp-input:focus {
  color: #495057;
  background-color: #ffffff;
  outline: 0;
  box-shadow: 0 0 0.2em #03a9f4;
}
.gp-select {
  width: 100%;
  border-radius: 10px;
}
.gp-select:has(> option:nth-child(1):checked) {
  color: #c0bbd9;
}
.gp-select option {
  color: rgba(var(--black));
}
.gp-select option:nth-child(1) {
  color: #c0bbd9;
}

.gp-textarea {
  height: 180px;
}
.address-box {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}
.address-box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 12px solid transparent;
  bottom: -12px;
  left: 170px;
}
.address-box:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid transparent;
  bottom: -10px;
  left: 172px;
  z-index: 1;
}
.address-box .address-title {
  color: rgba(var(--black));
  font-weight: 700;
  margin-bottom: 17px;
}
.address-box p {
  color: #797986;
}
/* active */
.address-box.active {
  border: 2px solid rgba(var(--purple));
}
.address-box.active:after {
  border-top: 12px solid rgba(var(--purple));
}
.address-box.active:before {
  border-top: 11px solid #ffffff;
}
/* hover */
.address-box:hover {
  background: #edeafe;
}
.address-box:hover:before {
  border-top: 11px solid #edeafe;
}
.gmap3-area {
  height: 500px;
}
.status__msg {
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.status__msg.error {
  background-color: #f9e9f5;
  color: rgba(var(--pink));
}
.status__msg.success {
  background-color: #e2f9e8;
  color: #1fa06d;
}
.error-alert {
  border: 1px solid rgba(var(--pink));
}
.required-input {
  color: rgba(var(--pink));
  font-size: 0.75em;
  vertical-align: top;
}
.form-label {
  font-weight: 600;
  font-size: 0.875em;
  color: #8a8a8a;
  margin-left: 5px;
}
/*--------------------------------------------------------------
  ##  Error
  --------------------------------------------------------------*/
.error-page {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.error-page .animate-element {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.error-page .animate-element li {
  position: absolute;
}
.error-page .animate-element li:nth-child(1) {
  top: 37%;
  left: 11%;
}
.error-page .animate-element li:nth-child(2) {
  bottom: 29%;
  left: 11%;
}
.error-page .animate-element li:nth-child(3) {
  top: 25%;
  right: 100px;
}
.error-page .animate-element li:nth-child(4) {
  bottom: 33%;
  right: 12%;
}
@media (max-width: 991px) {
  .error-page .animate-element li:nth-child(1) {
    top: 18%;
    left: 2%;
  }
  .error-page .animate-element li:nth-child(2) {
    bottom: 10%;
    left: 3%;
  }
  .error-page .animate-element li:nth-child(3) {
    top: 16%;
    right: 25px;
  }
  .error-page .animate-element li:nth-child(4) {
    bottom: 5%;
    right: 2%;
  }
}

.error-image {
  margin-bottom: 40px;
  position: relative;
}

@media (min-width: 992px) {
  .error-page-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.error-content .error-title {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .error-content .error-title br {
    display: none;
  }
}
.error-content .button-container .btn-grey {
  margin-left: 20px;
}
@media (max-width: 420px) {
  .error-content .button-container .btn-grey {
    margin-left: 0;
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/
/* Footer Widget */
.footer-widgets {
  padding-bottom: 100px;
  position: relative;
  z-index: 3;
}
.footer-widgets .widget {
  margin-bottom: 45px;
}
.footer-widgets .widget-title {
  color: #222931;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-widgets .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widgets .footer-menu li {
  line-height: 2.5;
}
.footer-widgets .footer-menu li a {
  color: #707a8d;
  position: relative;
  display: inline-block;
  font-weight: 400;
}
.footer-widgets .footer-menu li a:after {
  position: absolute;
  content: "";
  display: block;
  bottom: 8px;
  height: 1px;
  left: 0;
  width: 100%;
  background: #ff2b78;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.25s
    cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85),
    -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.footer-widgets .footer-menu li a:hover {
  color: #ff2b78;
}
.footer-widgets .footer-menu li a:hover:after {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.footer-widgets .footer-logo {
  margin-bottom: 35px;
}
.footer-widgets .footer-mail {
  color: #ff2b78;
  font-size: 1.25em;
  margin-bottom: 23px;
}
.footer-widgets .footer-mail i {
  margin-right: 10px;
}
.footer-widgets .copyright-text {
  margin-bottom: 28px;
  max-width: 300px;
  color: #fff;
}

.widget-about .copyright-text {
  width: 300px;
}
/* Footer Analytics */
.gp-site-footer .footer-struct {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gp-site-footer .footer-struct li {
  margin-right: 5px;
  display: inline-block;
  margin-right: 5px;
}
.gp-site-footer .footer-struct li a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.059);
  color: #afb4c0;
  border-radius: 50%;
  font-size: 0.875em;
  border: 2px solid transparent;
}
.gp-site-footer .footer-struct li a:hover {
  color: #cd50e2;
  border-color: #cd50e2;
  background: transparent;
}

.gp-site-footer {
  position: relative;
}

/* Footer Struct */
#footer-struct {
  background: rgba(var(--purple-bg));
  z-index: 100;
  /* margin-top:150px; */
}
.footer-space {
  height: 150px;
  width: 100%;
  z-index: 3;
  position: relative;
}
#footer-struct .footer-logo {
  margin-bottom: 30px;
  width: 300px;
}
#footer-struct p {
  margin-bottom: 20px;
}
#footer-struct .footer-struct li a {
  background-color: rgba(var(--purple));
  color: #fff;
}
#footer-struct .footer-struct li a:hover {
  color: rgba(var(--purple));
  background-color: #fff;
  border: rgba(var(--purple));
}
#footer-struct .footer-widgets {
  padding: 80px 0px;
}
@media (max-width: 991px) {
  #footer-struct .footer-widgets {
    padding: 30px 0px;
  }
}
#footer-struct .footer-widgets .widget-title {
  color: #fff;
}
#footer-struct .footer-widgets .copyright-text a {
  color: #a2f9ff;
}
#footer-struct .footer-widgets .footer-menu li a {
  color: #fff;
  font-size: 0.875em;
}
#footer-struct .footer-widgets .footer-menu li a:after {
  background: #ffc0d8;
}
#footer-struct .footer-widgets .footer-menu li a:hover {
  color: #fff;
}
.high-lighter-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(151, 27, 233, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 5;
}
@media (min-width: 992px) {
  .highlighter-hidden .high-lighter-overlay {
    opacity: 1;
    visibility: visible;
  }
}

/* ============================================================= */
/* 							BUTTONS								 */
/* ============================================================= */
.btn {
  width: fit-content;
  z-index: 1;
}
.btn_navbar {
  font-size: 0.875em;
  font-weight: 500;
  height: 38px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 1em;
}
.btn_navbar:focus,
.btn_navbar:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.btn_main {
  font-weight: 500;
  height: 50px;
  border-radius: 13px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 36px;
}
.btn_main.disabled {
  filter: opacity(0.3);
  pointer-events: none;
}
.btn_pink {
  color: #fff;
  cursor: pointer;
  position: relative;
  background: rgba(var(--pink));
  box-shadow: 0px 7px 20px -1px rgba(var(--pink), 0.46);
  transition: all 0.3s ease-in-out;
}
.btn_pink:hover,
.btn_pink:focus {
  outline: none;
  background: #ff2b78;
  color: #fff;
  box-shadow: none;
  top: 2px;
  bottom: 2px;
}
.btn_purple {
  color: #fff;
  cursor: pointer;
  position: relative;
  background: rgba(var(--purple));
  box-shadow: 0px 7px 20px -1px rgba(var(--purple), 0.46);
  transition: all 0.3s ease-in-out;
}
.btn_purple:hover,
.btn_purple:focus {
  outline: none;
  background: #5241ff;
  color: #fff;
  box-shadow: none;
  top: 2px;
  bottom: 2px;
}
.btn_white_purple {
  color: rgba(var(--purple));
  cursor: pointer;
  position: relative;
  background: #fff;
  box-shadow: 0px 7px 20px -1px rgba(var(--purple), 0.46);
  transition: all 0.3s ease-in-out;
}
.btn_white_purple:hover,
.btn_white_purple:focus {
  outline: none;
  color: #fff;
  box-shadow: none;
  top: 2px;
  bottom: 2px;
  background: rgba(var(--purple));
}
.btn_transparent {
  outline: 0px;
  border: 0px;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.btn_transparent:hover,
.btn_transparent:focus {
  background: #fff;
  outline: 0px;
  border: 0px;
  box-shadow: none;
}
.btn_purple .circle-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(var(--on-purple), 0.6);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(var(--purple));
  padding: 12px;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}
.btn_purple:hover .circle-icon {
  background: #fff;
  color: rgba(var(--purple));
}
.btn_pink .circle-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: 0px 4px 10px rgb(189 29 87 / 52%);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(var(--pink));
  padding: 12px;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}
.btn_pink:hover .circle-icon {
  background: #fff;
  color: rgba(var(--pink));
}
.btn_white_purple .circle-icon {
  width: 30px;
  height: 30px;
  background: rgba(var(--purple));
  box-shadow: 0px 4px 10px rgba(var(--on-white), 0.6);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 12px;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}
.btn_white_purple:hover .circle-icon {
  background: #fff;
  color: rgba(var(--purple));
}

.btn_emerald {
  color: #fff;
  cursor: pointer;
  position: relative;
  background: rgba(var(--emerald));
  box-shadow: 0px 7px 20px -1px rgba(var(--emerald), 0.46);
  transition: all 0.3s ease-in-out;
}
.btn_emerald:hover,
.btn_emerald:focus {
  outline: none;
  background: rgba(81, 166, 184);
  color: #fff;
  box-shadow: none;
  top: 2px;
  bottom: 2px;
}
.btn_emerald .circle-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(81, 166, 184);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(var(--emerald));
  padding: 12px;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}
.btn_emerald:hover .circle-icon {
  background: #fff;
  color: rgba(var(--emerald));
}
.black_text {
  color: rgba(var(--black)) !important;
}
.white_text {
  color: #fff !important;
}
.dark-blue_text {
  color: rgba(var(--dark-blue)) !important;
}
.purple_text {
  color: rgba(var(--purple)) !important;
}
.pink_text {
  color: rgba(var(--pink)) !important;
}
.emerald_text {
  color: rgba(var(--emerald)) !important;
}
.light_emerald_text {
  color: #a2f9ff !important;
}
.struct_gradient_text {
  /* background: -webkit-linear-gradient(28deg, #ff5c97, #796dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  background: linear-gradient(
    to right,
    #ff5c97 20%,
    #796dff 40%,
    #796dff 60%,
    #ff5c97 80%
  );
  background-size: 200% auto;

  color: #000;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 3s linear infinite;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.blue_bg {
  background: rgba(var(--blue-bg)) !important;
}
.purple_bg {
  background: rgba(var(--purple-bg)) !important;
}
.white_bg {
  background: rgba(var(--white-bg)) !important;
}
.pink_bg {
  background: rgba(var(--pink-bg)) !important;
}
.mockup {
  display: flex;
  align-items: center;
  height: 100%;
}

.mockup-img {
  cursor: zoom-in;
}
@media (max-width: 1200px) {
  .mockup-left {
    margin-left: 30px;
  }
  .mockup-right {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .mockup-img {
    width: 80vw;
  }
  .mockup-left {
    margin-left: 0px;
    justify-content: center;
  }
  .mockup-right {
    margin-right: 0px;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .row:has(.mockup-left:not(.slide-image-wrapper)) {
    flex-direction: column-reverse;
  }
}

.mockup-purple-shadow img {
  /* for mockups on white_bg */
  box-shadow: 0px 20px 100px 10px rgb(180 182 220 / 43%);
}
.mockup-purple-shadow2 img {
  /* for mockups on blue_bg */
  box-shadow: 0px 20px 100px 10px rgb(130 146 202 / 42%);
}
#mockup-zoom-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(240 240 250 / 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  cursor: zoom-out;
}
#mockup-zoom-img {
  max-height: 105vh;
  cursor: zoom-out;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(2);
  }
}

@keyframes zoom {
  from {
    transform: scale(0.4);
  }
  to {
    transform: scale(1);
  }
}

/* --------section 2----------- */
.section2_animation_wrapper {
  width: 680px;
  top: 420px;
  position: relative;
  left: 660px;
  display: none;
  overflow: hidden;
}
.section2_animation_wrapper.active {
  display: block;
}
.section2_content {
  margin-top: -520px;
  position: relative;
  z-index: 100;
}
@media (max-width: 1200px) {
  .section2_animation_wrapper {
    display: none !important;
  }

  .section2_content {
    margin-top: 0px;
  }
}
/* ------section 3---------- */
.pink_board {
  width: 760px;
  height: 715px;
  position: relative;
  left: 420px;
  top: 147px;
  border-radius: 50px;
  background: linear-gradient(0deg, #ffa9cb, #ffa9cbf2, #c894fdad, #9499fe69);
}
.section3_content {
  margin-top: -400px;
}

.section3_animation_wrapper {
  position: relative;
  width: 900px;
  top: 470px;
  left: -300px;
  height: fit-content;
  -webkit-mask-image: -webkit-radial-gradient(
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  );
  filter: brightness(1.09);
  display: none;
}
.section3_animation_wrapper.active {
  display: block;
}
@media (max-width: 1200px) {
  .section3_animation_wrapper {
    display: none !important;
  }
  .section3_content {
    margin-top: 0px;
  }
}
/* ----------section 4 --------- */
/* .section4_animation_wrapper {
    position: relative;
	width: 2500px;
    left: -700px;
    top: -200px;
} */
#section4_animation_wrapper_1 {
  position: relative;
  width: 600px;
  height: fit-content;
  top: -220px;
  left: -630px;
  /* filter: brightness(1.02); */
  -webkit-mask-image: -webkit-radial-gradient(
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  );
}
#section4_animation_wrapper_2 {
  position: relative;
  width: 600px;
  height: fit-content;
  top: -780px;
  left: 1150px;
  /* filter: brightness(1.02); */
  -webkit-mask-image: -webkit-radial-gradient(
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  );
}
.section4_content {
  position: relative;
  margin-top: -1400px;
}
@media (max-width: 1200px) {
  #section4_animation_wrapper_1,
  #section4_animation_wrapper_2 {
    display: none !important;
  }
  .section4_content {
    margin-top: 0px;
  }
  .dashboard-preview4 {
    height: auto;
  }
  .footer-space {
    display: none;
  }
}
/* --------------dropdown------------ */
li.dropdown_selected {
  background: rgba(var(--purple));
}
li.dropdown_selected a {
  color: #fff !important;
}
li.dropdown_selected a:hover {
  color: #fff !important;
  background-color: rgba(var(--purple)) !important;
  cursor: default;
}
/* ============================BANNER=========================================== */

.horizontal_newsletter_inner input,
.horizontal_newsletter_inner button {
  height: 50px;
}
/* ==================================USEFUL INFO============================================== */
.struct_section {
  padding: 50px 0px;
}
.featured_post_thumbnail {
  width: 555px;
  height: 324px;
}
.post-widget-info .entry-content .entry-title {
  line-height: 1.5;
  font-weight: 600;
  margin: 10px 0px 0px;
  width: 320px;
}
.post-widget-info .entry-content .entry-title a {
  color: rgba(var(--black));
}
.post-widget-info .entry-content .entry-title a:hover {
  color: rgba(var(--purple));
}
.useful_video {
  height: 442px;
  border-radius: 10px;
}
.video_widget .post-item .post-widget-thumbnail {
  width: 150px;
  height: 85px;
  font-variant: JIS78;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
}
.video_widget .post-item {
  display: inline-flex;
  margin-bottom: 30px;
}
.video_widget .post-item .post-widget-info .entry-content .entry-title {
  width: 200px;
  font-weight: 500;
  margin: 0px;
}
.video_widget {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video_widget .post-item .post-widget-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-self: center;
}
/* ============problem solution ========== */
.problem-solution {
  background: #d3d8ff;
  margin-top: 50px;
}
.problem {
  background: rgba(var(--white-bg));
  border: none;
  clip-path: ellipse(60% 100% at center top);
  height: auto;
  min-height: 370px;
  padding-bottom: 50px;
}

.triangle {
  -webkit-animation-name: triangle;
  animation-name: triangle;
}

@-webkit-keyframes triangle {
  from {
    -webkit-transform: rotate(-140deg) scale(0);
    transform: rotate(-140deg) scale(0);
  }
  to {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}

@keyframes triangle {
  from {
    -webkit-transform: rotate(-140deg) scale(0);
    transform: rotate(-140deg) scale(0);
  }
  to {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}
.triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid rgba(var(--white-bg));
  position: relative;
  margin: auto;
  top: -2px;
  transform: rotate(180deg);
}
.solution {
  margin-top: 50px;
  padding-bottom: 100px;
}
.cube-icon {
  width: 60px;
  margin: 0px auto 30px;
}
/* ============quick case study =========== */
.quick-case-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quick-case-image {
  width: 550px;
  height: 400px;
  object-fit: cover;
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.25));
  border-radius: 10px;
  margin-bottom: 30px;
}
.quick-case-client-logo {
  width: 150px;
}
.view-more-heading {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
/* =============Video banner================ */
.video-banner-container {
  max-width: 1400px;
}
.video-banner-wrapper {
  height: 500px;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  align-content: center;
  border-radius: 150px 10px 150px 10px;
  box-shadow: 5px 10px 30px 0 rgba(var(--on-blue), 0.7);
}
.banner-video-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}
.case-banner-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 156px;
  width: 550px;
  height: 50px;
}
.case-banner-client-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3px 18px;
  gap: 10px;
  width: 200px;
  height: 60px;
  background: #ffffff;
  box-shadow: 5px 5px 20px rgb(0 0 0 / 15%);
  border-radius: 10px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
/* auto tabs */
.tabs-content-container {
  height: 550px;
}
.tabs-content-container .tab-content {
  display: none;
}
.tabs-content-container .tab-content.active-tab {
  display: block;
}
.tabs--loader {
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
}
@keyframes line-loader {
  to {
    transform: scaleX(1);
  }
}
.tabs-container .tabs.active-tab .tabs--loader {
  animation-name: line-loader;
  animation-timing-function: linear;
}

/* Basic tabs styling */
#case-study-auto-tabs {
  width: 100%;
}
.tabs-container {
  display: flex;
  height: 120px;
}
.tabs {
  flex-grow: 1;
  text-align: center;
  padding: 10px;
  background: transparent;
  cursor: pointer;
  border: none;
  border-radius: 3px;
}
.tabs img {
  height: 100%;
  width: auto;
  filter: saturate(0);
  opacity: 40%;
}

.tabs-container .tabs.active-tab img {
  filter: saturate(1);
  opacity: 100%;
}
.case-study-search-btn {
  width: 100%;
  height: 65px;
  color: #fff;
  border: none;
  /* Auto layout */

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.case-study-card-content .entry-title {
  font-weight: 400 !important;
}
.case-company-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding: 0px;
  gap: 18px;
}
.case-company-title .avatar {
  border: 1px solid #dedede;
  border-radius: 100px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.case-company-title p {
  font-weight: 600;
  font-size: 1.25em;
}
/* =======Pricing======== */
/* Layout */
.pricing-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.pricing-column {
  height: 1405px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: auto;
}
.pricing-category-wrapper,
.pricing-perk-wrapper {
  justify-content: space-between;
  /* width: 250px; */
  padding: 25px 0px;
}
.pricing-illustartion-wrapper {
  padding: 25px;
  gap: 25px;
  min-width: 350px;
  border: 1px dashed rgba(var(--purple));
  border-radius: 20px;
}
.pricing-category,
.pricing-perk {
  height: 350px;
  width: 100%;
}

/* Category */
.pricing-category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 18px;
}
.pricing-category .pricing-category-title {
  display: flex;
  margin: 0;
  align-items: center;
}
.pricing-category:nth-child(1) .pricing-category-title {
  color: rgba(var(--purple));
}
.pricing-category:nth-child(2) .pricing-category-title {
  color: rgba(var(--emerald));
}
.pricing-category:nth-child(3) .pricing-category-title {
  color: #6898df;
}
.pricing-category:nth-child(4) .pricing-category-title {
  color: rgba(var(--pink));
}
.pricing-category p {
  font-weight: 400;
  text-align: center;
  margin: 0;
}
.category-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 18px;
  width: 100%;
}
.category-tabs button,
.user-perk button {
  width: 100%;
  height: 42px;
  border-radius: 50px;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-perk button {
  margin: 0px auto;
}
.pricing-category .category-tabs .tab.disabled {
  filter: saturate(0);
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* Tooltip text */
.pricing-category .category-tabs .tab.disabled .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 5;
  right: -60px;
  top: -20px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.pricing-category .category-tabs .tab.disabled:hover .tooltiptext {
  visibility: visible;
}
.pricing-category:nth-child(1) .category-tabs .tab {
  background: #d8d8ff;
  color: #7a78cf;
}
.pricing-category:nth-child(1) .category-tabs .tab.active-tab {
  background: #bab8ff;
  color: #493fae;
}

.pricing-category:nth-child(2) .category-tabs .tab {
  background: #dcedf1;
  color: #5aa8b9;
}
.pricing-category:nth-child(2) .category-tabs .tab.active-tab {
  background: #9ad0dc;
  color: #296c7a;
}
.pricing-category:nth-child(3) .category-tabs .tab {
  background: #e9f5ff;
  color: #5ca4dc;
}
.pricing-category:nth-child(3) .category-tabs .tab.active-tab,
.user-number-tab {
  background: #bce2ff;
  color: #1a5b8d;
}
.user-slider .swiper-slide:nth-child(1) .user-number-tab {
  background: #9ad0dc;
  color: #296c7a;
}
.pricing-category:nth-child(4) .category-tabs .tab {
  background: #ffe2ed;
  color: #db628e;
}
.pricing-category:nth-child(4) .category-tabs .tab.active-tab {
  background: #ffa3c4;
  color: #83183f;
}

/* Illustration */
.pricing-illustartion {
  height: 350px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-illustartion:nth-child(1),
.plan-slider .pricing-illustartion {
  background: #bab8ff;
}
.pricing-illustartion:nth-child(2),
.user-slider .swiper-slide:nth-child(1) .pricing-illustartion {
  background: #b7e3ed;
}
.pricing-illustartion:nth-child(3),
.user-slider .swiper-slide:nth-child(2) .pricing-illustartion {
  background: rgba(var(--blue-bg));
}
.pricing-illustartion:nth-child(4),
.support-slider .pricing-illustartion {
  background: #ffa3c4;
}
.illustration-content {
  display: none;
}
.illustration-content.active-tab {
  display: block;
}

/* Perks */
.pricing-perk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 18px;
}
.perk-content {
  display: none;
}
.perk-content.active-tab {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.perk-content .perk-content-title {
  padding-left: 44px;
  margin: 0;
}
.perk-content .price-feature {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: inherit;
}
.perk-content .price-feature li {
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-direction: row;
  /* align-items: center; */
}
.perk-content .price-feature li i {
  margin-right: 16px;
  border-radius: 50%;
  font-size: 0.75em;
  height: fit-content;
  width: fit-content;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
}

.pricing-perk:nth-child(1) .perk-content .perk-content-title,
.plan-perk .perk-content-title {
  color: rgba(var(--purple));
}
.pricing-perk:nth-child(1) .perk-content .price-feature li i,
.plan-perk .price-feature li i {
  background: rgba(var(--purple));
  color: #fff;
}
.pricing-perk:nth-child(2) .perk-content .perk-content-title,
.user-slider .swiper-slide:nth-child(1) .perk-content-title {
  color: rgba(var(--emerald));
}
.pricing-perk:nth-child(2) .perk-content .price-feature li i,
.user-slider .swiper-slide:nth-child(1) .price-feature li i {
  background: rgba(var(--emerald));
  color: #fff;
}
.pricing-perk:nth-child(3) .perk-content .perk-content-title,
.user-perk .perk-content-title {
  color: #709ee1;
}
.pricing-perk:nth-child(3) .perk-content .price-feature li i,
.user-perk .price-feature li i {
  background: #709ee1;
  color: #fff;
}
.pricing-perk:nth-child(4) .perk-content .perk-content-title,
.support-perk .perk-content-title {
  color: rgba(var(--pink));
}
.pricing-perk:nth-child(4) .perk-content .price-feature li i,
.support-perk .price-feature li i {
  background: rgba(var(--pink));
  color: #fff;
}
.pricing-perk .perk-content .price-feature li.not-allow i {
  background: #dfe3ed;
  color: rgba(var(--black));
}
.user-category,
.user-perk,
.user-illustration {
  height: 290px !important;
}
.user-category .small-text {
  font-weight: 400;
  font-size: 0.75em;
  text-align: center;
  color: #5c5c5c;
}
.user-category input {
  width: 60px;
  height: 21px;
  padding: 13px 1px 13px 8px;
  margin: 0px 8px;
  border: none;
  color: inherit;
  background: #fff;
}
.user-perk input {
  width: 60px;
  height: 21px;
  padding: 13px 1px 13px 8px;
  margin: 0px 8px;
  border: none;
  color: inherit;
  background: #fff;
}
.campaign-tag {
  margin: 8px;
  display: flex;
}
.campaign-tag img {
  height: 25px;
  position: relative;
  top: -3px;
  left: -10px;
  rotate: 20deg;
}

.campaign-tag-text {
  border-radius: 100px;
  background: var(
    --struct,
    linear-gradient(
      90deg,
      #ec4c86 0%,
      #e352b3 25%,
      #965af9 76.04%,
      #6b5dfa 100%
    )
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}
#after-seven-months {
  font-size: 0.75em;
  color: #8384ad;
  vertical-align: middle;
  display: none;
}
/* =========Implementationn Flow========= */
.flow-4-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
  gap: 10px;
}
.flow-4-wrapper i {
  font-size: 1.625em;
  color: rgba(var(--dark-blue));
}
.flow-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  gap: 25px;
  width: 250px;
  height: 470px;
  background: rgba(var(--white-bg));
  border: 1px solid rgba(var(--dark-blue));
  border-radius: 10px;
  color: rgba(var(--dark-blue)) !important;
  margin-bottom: 30px;
}
.flow-card h1,
.flow-card h4 {
  color: rgba(var(--dark-blue)) !important;
}
.form-control {
  height: 42.5px;
}
.prototype-box {
  border: 1px dashed rgba(var(--purple));
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.terms-section {
  line-height: 2;
  margin-top: -80px;
}
.terms-section .term {
  margin: 40px 0px;
}
.terms-section .term h5 {
  font-weight: 600;
  margin-bottom: 20px;
}
.terms-section .section-title {
  margin-top: 60px;
}
.terms-section .term ol li p {
  padding: 0;
}
.terms-section .term ol {
  counter-reset: list;
  padding: 0;
  margin: 0px 0px 16px 16px;
}
.terms-section .term ol > li {
  list-style: none;
  display: flex;
}
.terms-section .term ol > li span {
  width: 100%;
}
.terms-section .term ol li:before {
  content: "(" counter(list) ") ";
  counter-incement: list;
  white-space: nowrap;
  width: 45px;
}
/* ==================TRADE==================== */
.trade-section {
  line-height: 2;
  margin-top: -80px;
}

.trade-section .container {
  max-width: 970px;
}
/* ================Industry Sectors=========== */
.industry-sector {
  height: 2em;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 0.4em;
  align-items: center;
  padding: 0.4em 0.8em;
  background: #fff;
  color: rgba(var(--pink));
  box-shadow: 3px 5px 40px 0 rgba(var(--on-white), 0.2);
  border-radius: 1em;
}
.industry-sector-group {
  margin-bottom: 38px;
}

.feature-sector {
  height: 2em;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 0.4em;
  align-items: center;
  padding: 0.4em 0.8em 0.3em;
  background: #fff;
  border: 1px dashed rgba(var(--purple));
  color: rgba(var(--purple));
  border-radius: 1em;
  cursor: pointer;
}
.feature-sector:hover,
.feature-sector:active,
.feature-sector:focus {
  background: linear-gradient(
    to right,
    #ff5c97 20%,
    #796dff 40%,
    #796dff 60%,
    #ff5c97 80%
  );
  background-size: 200% auto;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  color: rgba(var(--purple));
}

/* ===============ASSIGNMENT MANAGEMENT============ */
#assign-mgnt-1 .info-boxes .title {
  background: rgba(var(--purple));
  border-radius: 50px;
  padding: 8px;
  color: #fff;
  text-align: center;
}
/* ============Vertical transition Slider================ */
.struct-ps-slider {
  height: 12000px;
  transition: background-color 1s ease;
}
.ps-container {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.ps-slide {
  display: none;
}
.ps-slide.active {
  max-width: 1170px;
  position: fixed;
  top: 50%;
  transform: translateY(-40%);
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
  -ms-animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.small-title {
  margin-bottom: 20px;
}
.ps-problem {
  margin-bottom: 50px;
}
/* .ps-solution {

} */
.problem-dialog {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 20px 10px 40px 0 rgb(158 158 239 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(2) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(220 161 37 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(3) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(68 138 208 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(4) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(28 153 133 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(5) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(187 61 115 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(6) .problem-dialog {
  box-shadow: 20px 10px 40px 0 rgb(158 158 239 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(7) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(220 161 37 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(8) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(68 138 208 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(9) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(28 153 133 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.ps-slide:nth-child(10) .problem-dialog {
  box-shadow: 0 10px 40px 0 rgb(187 61 115 / 33%),
    -5px 0 0 0 rgb(68 148 219 / 0%);
}
.problem-dialog:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #fff;
  transform: translateX(100%);
  /* transform: rotate(180deg); */
}
/* ----------PS SLider bar--------- */
.ps-slide-bar {
  position: fixed;
  top: 40%;
  right: 0;
  margin-right: 150px;
}
.ps-progress-bar {
  list-style: none;
  font-size: 0.8em;
  font-weight: 700;
  counter-reset: container 0;
  background: transparent;
  gap: 30px;
  overflow: visible;
}
.ps-progress-bar li {
  position: relative;
  margin-left: 40px;
  counter-incement: container 1;
}
.ps-progress-bar li::before {
  content: "";
  text-align: center;
  position: absolute;
  height: 12px;
  width: 12px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  z-index: 10;
  background-color: #cfcaff;
}

.ps-progress-bar li.active::after {
  background-color: #cfcaff;
}

.ps-progress-bar li:first-child:after {
  display: none;
}
.ps-progress-bar li.active::before {
  border: 1px solid #fff;
  transition: background-color 1s ease;
  background-color: rgba(var(--purple));
}
/* .ps-progress-bar li:hover::before{
	width:50px;
	height:30px;
	margin-bottom:30px;
} */
.character {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
  margin-top: 44px;
}
.character img {
  width: 150px;
}
/* ==================================================================== */
/* Why Struct Section (New Problem Solution) */
/* ==================================================================== */
.ps2-problem,
.ps2-solution {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ps2-problem {
  padding: 30px;
}
.ps2-solution-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1200px) {
  .ps2-solution-wrapper,
  .ps2-problem {
    margin: 0px 10px;
  }
}

.ps2-solution {
  margin-top: -12px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 10px 20px 50px 0 rgba(var(--on-white), 0.4);
}
.blue_bg .ps2-solution {
  box-shadow: 10px 20px 50px 0 rgba(var(--on-blue), 0.4);
}
.pink_bg .ps2-solution {
  box-shadow: 10px 20px 50px 0 rgba(var(--on-pink), 0.3);
}
.ps2-triangle-purple {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid rgba(var(--purple));
  z-index: 10;
}
.ps2-triangle-pink {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid rgba(var(--pink));
  z-index: 10;
}
.ps2-triangle-emerald {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid rgba(var(--emerald));
  z-index: 10;
}
.ps2-image {
  display: flex;
  height: fit-content;
  align-self: center;
}
.ps2-image video {
  width: 100%;
  max-width: 60vw;
  margin-top: 4em;
  -webkit-mask-image: -webkit-radial-gradient(
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  );
}
@media (max-width: 736px) {
  .ps2-image {
    width: 100%;
    justify-content: center;
  }
  .ps2-image img {
    width: 45vw;
  }
  .row:has(.col-md-8.pl_4.left) {
    flex-direction: column-reverse;
  }
}
.character-icon,
.logo-icon {
  width: clamp(2.25em, 3vw, 2.75em);
  margin-right: 0.75em;
}
/* ==================================================================== */
/* Map Section */
/* ==================================================================== */
.map-section {
  position: relative;
}

.map-section iframe {
  position: relative;
  width: 100%;
  height: 600px;
}

.contact-map {
  display: none;
}
.contact-map.active {
  display: block;
}
.web-sub-menu {
  display: inline-block !important;
}
.mobile-sub-menu {
  display: none !important;
}
@media (max-width: 992px) {
  .web-sub-menu {
    display: none !important;
  }
  .mobile-sub-menu {
    display: block !important;
  }
}

/* ==================================================================== */
/* Struct Mega Menu Header */
/* ==================================================================== */
.mega-menu {
  width: 100vw !important;
  position: fixed !important;
  top: 86px !important;
  left: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0px !important;
}
.mega-group-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.mega-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mega-menu-item {
  display: flex !important;
  flex-direction: row;
  /* align-items: center; */
  gap: 18px;
  padding: 20px !important;
}
.mega-menu-text h6 {
  font-size: 0.875em;
}
.mega-sub-text {
  font-size: 0.75em;
  color: #6d6d6d;
  font-weight: 400 !important;
}
.mega-icon {
  border-radius: 5px;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25em;
  font-weight: bolder;
  box-shadow: 1px 3px 10px 0 rgba(var(--on-white), 0.25);
}
.mega-menu-item:hover .mega-icon {
  box-shadow: none;
  margin-top: 1px;
  margin-bottom: -1px;
}
/* --color-1-- */
.color-1 .mega-icon {
  color: #4031d8;
  background: rgba(var(--purple), 0.33);
}
.mega-menu-item.color-1:hover {
  background: rgba(var(--purple), 0.1) !important;
}
/* --color-2-- */
.color-2 .mega-icon {
  color: #f4b311;
  background: #f4b31142;
}
.mega-menu-item.color-2:hover {
  background: #efde1a20 !important;
}
/* --color-3-- */
.color-3 .mega-icon {
  color: #0f6b65;
  background: #4ce6dc61;
}
.mega-menu-item.color-3:hover {
  background: #4ce6dc20 !important;
}
/* --color-4-- */
.color-4 .mega-icon {
  color: rgba(var(--pink));
  background: #fa5d8c45;
}
.mega-menu-item.color-4:hover {
  background: #fa5d8c15 !important;
}

/* --color-5-- */
.color-5 .mega-icon {
  color: #3172d8;
  background: #5d9bfa57;
}
.mega-menu-item.color-5:hover {
  background: #5d9bfa20 !important;
}
/* --color-6-- */
.color-6 .mega-icon {
  color: #d86931;
  background: #fa985d57;
}
.mega-menu-item.color-6:hover {
  background: #fa985d20 !important;
}
.menu-container {
  max-width: 1240px;
  width: 100%;
}
.terms-section .container {
  max-width: 970px;
}
.view-more-btn {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  border-radius: 50px;
  height: 38.5px;
  gap: 20px;
}
.view-more-btn i {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  position: relative;
  color: rgba(var(--pink)) !important;
}

.view-more-btn:hover i {
  transform: translate(10px, 0);
  -webkit-transform: translate(10px, 0);
  -moz-transform: translate(10px, 0);
  -o-transform: translate(10px, 0);
  -ms-transform: translate(10px, 0);
}
.view-more-btn.color-4 {
  background: transparent;
  border: 1px solid rgba(var(--pink));
}
.view-more-btn.color-4 a {
  background: transparent;
  color: rgba(var(--pink)) !important;
}
.view-more-btn.color-4 a:hover {
  background: transparent !important;
  color: rgba(var(--purple)) !important;
}
.in-prep {
  background: rgba(var(--pink));
  color: #fff;
  font-size: 0.7em;
  padding: 1px 5px;
  font-weight: 400;
  border-radius: 5px;
  margin-left: 8px;
}
.free-tag {
  background: var(
    --struct,
    linear-gradient(
      48deg,
      #ec4c86 0%,
      #e352b3 25%,
      #965af9 70.83%,
      #6b5dfa 91.67%
    )
  );
  color: #fff;
  font-size: 0.7em;
  padding: 2px 12px;
  font-weight: 400;
  border-radius: 5px;
  margin-left: 8px;
}

.patent-flg {
  background: rgba(var(--pink));
  color: #fff;
  font-size: 1.25em;
  padding: 2px 18px;
  font-weight: 700 !important;
  border-radius: 10px;
  top: -18px;
  position: relative;
}
/* ==================PRODUCT SECURITY====================== */
.product-security-container {
  max-width: 1400px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
}
.product-security-container .side-menu {
  position: sticky;
  background: #ffffff;
  box-shadow: 5px 10px 40px rgba(var(--on-white), 0.2);
  border-radius: 20px;
  width: 370px;
  height: 600px;
  top: 170px;
  padding: 30px 30px 30px 25px;
  overflow-y: scroll;
}
@media (max-width: 1300px) {
  .product-security-container .side-menu {
    display: none;
  }
}
@media (max-height: 800px) {
  .product-security-container .side-menu {
    display: none;
  }
}
.security-main-content {
  width: auto;
}
#product-security-menu .card {
  box-shadow: none;
  background: transparent;
}
#product-security-menu .btn-link {
  background: transparent;

  padding: 16px 20px;
  border-radius: 12px;
}
#product-security-menu .card .card-header {
  z-index: 2;
}
#product-security-menu .card .card-header .btn-link.collapsed a {
  color: rgba(var(--black)) !important;
}
#product-security-menu .card .card-header .btn-link:not(.collapsed) {
  background: rgba(var(--purple)) !important;
  box-shadow: 5px 10px 20px rgba(var(--on-white), 0.4) !important;
}
#product-security-menu .card .card-header .btn-link:not(.collapsed) a {
  color: #fff !important;
}
#product-security-menu .card .card-header .btn-link:not(.collapsed):before {
  color: #fff !important;
}
#product-security-menu .card .card-body {
  padding: 16px 0px 0px 20px;
}
#product-security-menu .card .card-body ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
}
#product-security-menu .card .card-body ul li {
  font-size: 0.875em;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  width: 100%;
}
#product-security-menu .card .card-body ul li::before {
  content: url("../img/struct/elements/tree-branch.png");
  height: 100%;
  position: relative;
  top: -9px;
  padding-right: 6px;
}
#product-security-menu .card .card-body ul li a {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
}
#product-security-menu .card .card-body ul li a {
  color: #8a8a8a;
}
#product-security-menu .card .card-body ul li.active a {
  background: rgba(var(--purple), 0.3);
  border-radius: 12px;
}
#product-security-menu .card .card-body ul li.active a {
  color: rgba(var(--black));
}
#product-security-menu .card .card-body ul li:not(.active) a:hover {
  color: rgba(var(--purple));
  border-radius: 12px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}
::-webkit-scrollbar {
  width: 12px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #9a94b34d;
}
.security-topic {
  padding-top: 170px;
}
.security-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.security-section .section-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px 80px;
  background: rgba(var(--purple));
  border-radius: 20px;
  width: fit-content;
  margin-bottom: -50px;
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 80%;
}

.security-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 60px;
  background: rgba(var(--purple), 0.1);
  border-radius: 28px;
  gap: 80px;
  width: 100%;
}
.security-section .section-content .section-description {
  margin-bottom: 0px;
}
@media (max-width: 650px) {
  .security-section .section-title {
    padding: 15px 30px;
    border-radius: 13px;
  }
  .security-section .section-content {
    border-radius: 20px !important;
  }
}
.security-section .section-content .sub-section {
  width: 100%;
}
.security-section .section-content .sub-section .page-sub-title:after {
  content: "";
  display: block;
  width: 180px;
  max-width: 70%;
  border-bottom: 0.3em solid rgba(var(--purple));
  margin: 30px 0px;
  border-radius: 10px;
}
.security-section
  .section-content
  .sub-section
  .page-sub-title.text-center:after {
  margin: 30px auto 30px;
}
.security-section .section-content .sub-section .image-wrapper {
  background: #ffffff;
  box-shadow: 5px 10px 40px rgba(var(--on-purple), 0.2);
  width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  height: 100%;
}
.link-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.4em 0.8em;
  gap: 0.6em;
  width: fit-content;
  height: fit-content;
  box-shadow: 10px 20px 40px rgba(var(--on-purple), 0.3);
  border-radius: 0.6em;
  color: rgba(var(--black));
  cursor: pointer;
  background: linear-gradient(to right, rgba(var(--purple)) 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.4s ease-out;
  max-width: fit-content;
  flex: auto 1 0;
}
.box-link-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 13px 20px;
  gap: 20px;
  width: fit-content;
  height: 100%;
  background: #ffffff;
  box-shadow: 10px 20px 40px rgba(var(--on-purple), 0.3);
  border-radius: 13px;
  color: rgba(var(--black));
  cursor: pointer;
  /* For hover animation */
  background: linear-gradient(to right, rgba(var(--purple)) 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.4s ease-out;
}
.link-tag:hover,
.box-link-tag:hover {
  background-position: left bottom;
}

.link-tag-text {
  transition: all 0.5s ease-out;
  display: block;
}

.link-tag-text:hover,
.link-tag:hover .link-tag-text,
.box-link-tag:hover .link-tag-text {
  color: white;
}

.link-tag .circle-icon,
.box-link-tag .circle-icon {
  width: 1.75em;
  height: 1.75em;
  background: rgba(var(--purple));
  box-shadow: 0px 4px 10px rgba(var(--on-white), 0.6);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.link-tag:hover .circle-icon,
.box-link-tag:hover .circle-icon {
  background: #fff;
  color: rgba(var(--purple));
}

.has-submenu i.fa-chevron-down {
  transform: rotate(0deg);
  transition: transform 0.4s, opacity 0.8s;
  opacity: 30%;
  font-size: 0.75em;
}

.has-submenu:hover i.fa-chevron-down {
  transform: rotate(-180deg);
  opacity: 100%;
}

.mobile-header .main-nav .sub-menu.mega-menu {
  position: relative !important;
  width: 100% !important;
  top: 0 !important;
  padding: 30px !important;
}
.mobile-header #hr-group {
  border-right: none;
  min-width: 100%;
}
.mobile-header .feature-group-line {
  margin-top: 30px;
}
.mobile-header .main-nav .sub-menu.mega-menu .mega-menu-title,
.mobile-header .main-nav .sub-menu.mega-menu hr {
  display: none;
}

.mobile-header .has-submenu i.fa-chevron-down {
  display: none;
}

.mobile-header .mega-group-horizontal {
  flex-direction: column;
}
/* =======HOMEPAGE ANIMATION========= */
.section-1-animation {
  margin-left: -100px;
  margin-top: -50px;
  z-index: -1;
}
.section-1-animation video {
  width: 150%;
  -webkit-mask-image: -webkit-radial-gradient(
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  );
  filter: brightness(1.03);
  position: inherit;
}
@media (max-width: 1800px) {
  .section-1-animation video {
    width: 120%;
  }
}
@media (max-width: 992px) {
  .section-1-animation {
    margin-left: 0px;
    margin-top: 0px;
    justify-content: center;
    width: 100vw;
    display: flex;
  }
  .section-1-animation video {
    width: 55vw;
  }
}
@media (max-width: 645px) {
  .section-1-animation video {
    width: 85vw;
  }
}
/* ===========PRICING================ */
.pricing-banner h4 {
  font-weight: normal;
  line-height: 36px;
}
.price-0-cost {
  margin-left: 12px;
  position: relative;
  bottom: 1px;
  padding: 3px 12px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  background: #ec4c86;
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 15px 0 rgba(var(--on-white), 0.3);
  box-shadow: 0 8px 15px 0 rgba(var(--on-white), 0.3);
}
.simple-formula {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 30px;
  background: rgba(var(--purple-bg), 0.14);
  border-radius: 30px;
  width: fit-content;
  margin-left: 0;
}
.cost-component {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 77px;
  background: rgba(var(--purple));
  box-shadow: 0px 7px 20px -1px rgba(141, 153, 255, 0.67);
  border-radius: 10px;
  font-weight: 400;
  font-size: 1.5em;
  color: #fff;
}
.cost-component span {
  font-weight: 700;
  color: #ffc560;
  font-size: inherit;
}
.user-cost {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.cost-example {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 50px 40px 40px;
  margin: auto;
  border-radius: 10px 80px;
  background: #fff;
  box-shadow: 10px 8px 35px 0px rgba(75, 78, 193, 0.6);
}
@media (max-width: 920px) {
  .cost-example {
    width: 80vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 10vw;
  }
}
.cost-example .listitem {
  margin: 36px 0px 30px;
}
.cost-example .listitem li {
  margin-bottom: 20px;
}
.cost-example .cost {
  display: flex;
  justify-content: flex-end;
}
/* .cost-example .case {
    margin-top: -30px;
}
.cost-example .case .page-sub-title{
	position: relative;
    top: -10px;
    display: flex;
    background: #b7e3ed;
    width: fit-content;
    padding: 10px 50px;
    border-radius: 10px;
} */
.plan-icon {
  border-radius: 10px;
  min-width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1em, 2vw, 1.5em);
  font-weight: bolder;
  box-shadow: 1px 3px 10px 0 rgba(var(--on-purple), 0.6);
  background: rgba(var(--purple));
  color: #ffffff;
  border: none;
}
.plan-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.illustration-content .plan-row {
  margin: 25px 0px;
}
.plan-icon:not(.unavailable):hover {
  box-shadow: none !important;
  margin-top: 2px !important;
  margin-bottom: -2px !important;
  background: #7672ff;
}
.plan-icon.unavailable {
  opacity: 0.2;
}

/* -----tooltip---- */
.plan-tooltip {
  display: inline;
  position: relative;
}

.plan-tooltip:hover:before {
  background: rgba(var(--black));
  border-radius: 5px;
  bottom: 110%;
  color: #fff;
  content: attr(data-title);
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  position: absolute;
  z-index: 98;
  width: max-content;
}

.plan-tooltip:hover:after {
  border: solid;
  border-color: rgba(var(--black)) transparent;
  border-width: 8px 8px 0px 8px;
  top: -8px;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 99;
}
/* ------Get started----- */
#pricing-get-started .container {
  display: flex;
  padding: 60px;
  flex-direction: column;
  align-items: center;
  border-radius: 28px;
  background: #dcf4fa;
}
.card-group-3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.article-card {
  height: 570px;
  width: 307px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(110, 184, 200, 0.56);
}
.article-thumb {
  width: 307px;
  height: 213.203px;
  border-radius: 28px 28px 0px 0px;
}
.article-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
}
.article-title .link-tag {
  height: 56px;
  width: 200px;
  padding: 20px 20px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ----------floating prcing calculation-------- */
#pricing-banner .col-lg-7 {
  display: flex;
  justify-content: flex-end;
}
#pricing-banner .listitem {
  margin: 0px 0px 30px;
}
@media (max-width: 992px) {
  #pricing-banner .col-lg-7 {
    justify-content: center;
  }
}
#pricing-banner .listitem li {
  font-size: 1.25em;
  margin-bottom: 16px;
}
@media (max-width: 560px) {
  #pricing-banner .listitem li {
    margin-bottom: 16px;
  }
  .price-0-cost {
    padding: 3px 8px;
  }
  .cost-component {
    width: 300px;
    height: 50px;
  }
  .simple-formula {
    gap: 0px;
  }
}
#pricing-formula {
  position: relative;
  right: -80px;
}
.pricing-breakdown-section {
  overflow: unset;
  padding-bottom: 100px;
}
.pricing-cal-container {
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  /* gap: 50px; */
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  overflow: unset;
}
.pricing-cal-container .container {
  padding-top: 100px;
}
.floating-price-cal {
  position: sticky;
  width: 400px;
  height: 100vh;
  top: 0px;
  background: #ffffff;
  padding: 140px 16px 30px 16px;
  box-shadow: 5px 10px 80px 0 rgba(var(--on-white), 0.2);
  font-size: 0.875em !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px 0px 0px 20px;
  margin-top: 1px;
  margin-left: 30px;
}
.floating-price-cal .subtotal,
.floating-price-cal .total {
  display: flex;
  width: 300px;
  padding: 20px 0px;
  justify-content: space-between;
  align-items: flex-start;
}
.floating-price-cal .subtotal:not(:nth-last-child(4)) {
  border-bottom: 1px solid #f0f0f0;
}
.floating-price-cal .subtotal p {
  font-size: 0.875em;
  font-weight: 600;
  margin-bottom: 0px;
}
.floating-price-cal h4 {
  margin-bottom: 25px;
}
.subtotal-user {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.subtotal-user .sub-detail {
  color: #8384ad;
  font-size: 0.75em !important;
}
.floating-price-cal hr {
  margin: 0;
}
.floating-price-cal .action-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.action-buttons .btn {
  width: 300px;
}
#web-pricing-breakdown {
  display: block;
}
#mobile-pricing-breakdown {
  display: none;
}
@media (max-width: 1200px) {
  #web-pricing-breakdown {
    display: none;
  }
  #mobile-pricing-breakdown {
    display: block;
  }
}

/*  */
.justify-center {
  display: flex;
  justify-content: center;
}
.price-plan-card {
  background: #ffffff;
  padding: 5px;
  border-radius: 10px;
  margin: 0px 0px 30px;
  display: flex;
  align-items: center;
  flex-direction: row;
  box-shadow: 0 8px 18px 0 rgba(var(--on-white), 0.3);
}
#customize-plan p {
  margin: 0;
}
#customize-plan .listitem {
  margin: 0;
}
#customize-plan .listitem li {
  font-size: 0.875em;
  margin: 0px 0px 1px;
  color: #8e8fb4;
}
#customize-plan .customize-point {
  padding: 0;
}
.price-plan-card .row {
  margin: 0;
  width: 100%;
}
.price-plan-description {
  padding: 40px 20px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-plan-description .btn_main {
  width: 220px;
}
.price-plan-cost {
  background: #f7f7ff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 0px;
  font-size: 0.875em;
  color: #69698a;
}
.price-plan-cost p {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.25em, 2vw, 1.4em);
}
.price-plan-cost span {
  font-size: clamp(1.25em, 2vw, 1.5em);
  color: rgba(var(--purple));
  margin-left: 40px;
}
.price-plan-cost-customize {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 5px;
  padding: 0px;
}
.price-plan-cost-customize .price-plan-cost {
  height: 100%;
}
/* ------Pricing Mobile------ */
.mobile-price-wrapper .swiper-container {
  padding: 40px 0px;
}
.price-slider-post .pricing-illustartion {
  width: 100%;
  height: fit-content;
  min-height: 240px;
}
.price-slider-post .plan-icon {
  min-width: 50px;
  height: 50px;
}
.price-slider-post {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: fit-content;
  max-width: 300px;
}

.plan-slider .price-slider-post {
  min-height: 610px;
}

.infra-slider .price-slider-post {
  min-height: 576px;
}
.support-slider .price-slider-post {
  min-height: 530px;
}
.price-slider-post .user-perk {
  height: fit-content !important;
}
.price-slider-post .perk-content .price-feature li i {
  margin-right: 16.8px;
  border-radius: 50%;
  font-size: 0.7em;
  height: fit-content;
  width: fit-content;
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
}
.astriol-active-slide.swiper-slide-active .price-slider-post {
  box-shadow: 0px 7px 20px -1px rgba(var(--purple), 0.46);
  filter: opacity(1);
  border: none;
  margin: -20px auto !important;
}
.mobile-price-wrapper .swiper-pagination {
  margin-top: 20px;
}
.mobile-price-wrapper .perk-content h3 {
  text-align: center;
  padding: 0;
}
.mobile-subtotal {
  font-size: 1.25em;
  text-align: center;
  font-weight: 700;
  color: rgba(var(--black), 0.8);
}
#mobile-pricing-breakdown .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
/* modal */
.modal-paper {
  background: #ffffff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 5px 10px 80px 0 rgba(var(--on-white), 0.2);
}
/* -------Cookie Consent-------- */
.cookie-consent-banner {
  position: fixed;
  bottom: -150px;
  background: #adb1ff;
  width: 100vw;
  padding: 35px 0px 0px;
  display: flex;
  opacity: 0;
  color: #48418f;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  transition: all 0.7s ease;
}
.cookie-consent-banner.show {
  bottom: 0px;
  opacity: 1;
}
.cookie-consent-banner .col-lg-4 .row {
  justify-content: flex-end;
  gap: 20px;
}
.cookie-consent-banner .btn_purple {
  padding: 8px 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-consent-banner .btn_purple .circle-icon {
  padding: 4px;
}
.cookie-consent-banner .btn_transparent,
.cookie-consent-banner a {
  color: #fff;
}
.cookie-consent-banner .btn_transparent:hover,
.cookie-consent-banner .btn_transparent:focus,
.cookie-consent-banner a:hover {
  background: #ffffff00;
  color: #c4fffb;
  outline: 0px;
  border: 0px;
  box-shadow: none;
}
/* -------------------------- */
.center-gap-30 {
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.center-gap-50 {
  align-items: center;
  justify-content: center;
  gap: 50px;
}
/* -------------------------- */
.link-arrow {
  color: rgba(var(--black));
}
.link-arrow span {
  display: inline-block;
  transition: 0.1s ease-in;
}

.link-arrow:hover span {
  transform: translateX(50%);
}
.section-footer-cta {
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff30;
  margin-top: 75px;
}
/* ------------------------------------------ */
.mobile-price-wrapper2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.mobile-price-wrapper2 .mobile-pricing-card {
  width: 250px;
  position: absolute;
  box-shadow: 0px 7px 20px -1px rgba(var(--purple), 0.46);
  transition: all 0.5s;
  border-radius: 20px;
}
.mobile-price-wrapper2 .mobile-pricing-card.front {
  transform: translateX(0em) scale(1.2);
  z-index: 20;
}
.mobile-price-wrapper2 .mobile-pricing-card.left {
  transform: translateX(-15em);
  z-index: 10;
  opacity: 0.5;
}
.mobile-price-wrapper2 .mobile-pricing-card.right {
  transform: translateX(15em);
  z-index: 10;
  opacity: 0.5;
}
.mobile-pricing-slider {
  position: relative;
  width: 250px;
  height: 450px;
}
#mobile-prev,
#mobile-next,
#mobile-prev2,
#mobile-next2 {
  background: #fbfbff;
  font-size: 2em;
  color: #e84e98;
  border: none;
  z-index: 1000;
  border-radius: 28px;
  width: 48px;
  height: 48px;
  line-height: 28px;
}
.mobile-price-wrapper2 .price-slider-post {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 450px;
  width: 250px;
  border: none;
}
.mobile-price-wrapper2 .price-slider-post .pricing-illustartion {
  width: 100%;
  height: fit-content;
  padding: 0px 10px;
  min-height: 200px;
}
.mobile-price-wrapper2 .illustration-content .plan-row {
  margin: 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.mobile-price-wrapper2 .price-slider-post .plan-icon {
  min-width: 40px;
  height: 40px;
}
.mobile-price-wrapper2 .perk-content h3 {
}
.mobile-price-wrapper2 .perk-content .price-feature li {
  font-size: 0.875em;
}
.mobile-price-wrapper2 .perk-content .price-feature li i {
  margin-right: 14px;
  border-radius: 50%;
  font-size: 0.5em;
  height: fit-content;
  width: fit-content;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
}
.mobile-price-wrapper2 .mobile-pricing-slider.support .pricing-illustartion {
  background: #ffa3c4;
}
.pricing-blank {
  width: 100px;
}
@media (max-width: 1400px) {
  .pricing-blank {
    width: 50px;
  }
}
