
:root {
  --c1: #24A5FC;
  --c2: #2ED0FA;
  --c3: #FFD824;
  --title-color: #0C2041;
  --text-color: #8F8F8F;
  --border-color: #EAEAEA;
  --white: #ffffff;
  --black: #000000;
  --body-bg: #ffffff;
  --title-font: "Poppins", sans-serif;
  --body-font: "Roboto", sans-serif;
}

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

* {
  outline: none !important;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--title-color);
  text-align: left;
  background-color: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  line-height: 1.1388888889;
  font-family: var(--title-font);
  color: var(--title-color);
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
p span {
  color: var(--c1);
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 13px;
}

ol,
ul,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--title-color);
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: var(--c1);
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
  display: block;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox] {
  margin-right: 5px;
}

[hidden] {
  display: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

::-moz-selection {
  text-shadow: none;
  color: var(--white);
  background-color: var(--c1) !important;
}

::selection {
  text-shadow: none;
  color: var(--white);
  background-color: var(--c1) !important;
}

iframe {
  max-width: 100%;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
}

button,
input[type=submit] {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

textarea {
  resize: none;
}

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

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

/* ************************
   01.2: Padding/Margin
   ********************* */
.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 991px) {
  .pt-90 {
    padding-top: 30px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 991px) {
  .pt-80 {
    padding-top: 20px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 991px) {
  .pt-70 {
    padding-top: 10px;
  }
}

.pt-50 {
  padding-top: 50px;
}
@media only screen and (max-width: 991px) {
  .pt-50 {
    padding-top: 0;
  }
}

.pt-40 {
  padding-top: 40px;
}
@media only screen and (max-width: 991px) {
  .pt-40 {
    padding-top: 0;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .pb-90 {
    padding-bottom: 30px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .pb-80 {
    padding-bottom: 20px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .pb-70 {
    padding-bottom: 10px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .pb-50 {
    padding-bottom: 0;
  }
}

.pb-40 {
  padding-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .pb-40 {
    padding-bottom: 0;
  }
}

.mt-60 {
  margin-top: 60px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.gy-10 {
  gap: 10px 0;
}

.gy-30 {
  gap: 30px 0;
}

.gy-60 {
  gap: 60px 0;
}

.gy-24 {
  gap: 24px 0;
}

@media (max-width: 991px) {
  .mt-md-30 {
    margin-top: 30px;
  }
}

/* ************************
   01.3: Color
   ********************* */
.text-color {
  color: var(--text-color);
}

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

.text-color-bo {
  border-color: var(--text-color) !important;
}

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

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

.title-color-bo {
  border-color: var(--title-color) !important;
}

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

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

.border-color-bo {
  border-color: var(--border-color) !important;
}

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

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

.white-bo {
  border-color: var(--white) !important;
}

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

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

.black-bo {
  border-color: var(--black) !important;
}

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

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

.c1-bo {
  border-color: var(--c1) !important;
}

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

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

.c2-bo {
  border-color: var(--c2) !important;
}

.pagination li a svg path,
.pagination li span svg path, a {
  transition: 0.3s ease-in-out;
}

.affiliate #affiliate-main .steps .step .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

#schedule-post .social-media h3, .pagination li a,
.pagination li span {
  font-weight: 500;
}

.pagination li a:hover, .pagination li a.active,
.pagination li span:hover,
.pagination li span.active, .pagination li a.current,
.pagination li span.current {
  background-color: var(--c1);
}

.pagination li a,
.pagination li span {
  color: var(--white);
}

#work-process-part .right-content .nav-tab-part .tab-content .tab-pane p, .section-title p {
  color: var(--text-color);
}

.pagination li a,
.pagination li span {
  background-color: var(--title-color);
}

.pagination li a,
.pagination li span {
  font-family: var(--title-font);
}

#pricing-plan-part .plan-main .tab-content .plan-details .item .top p, #pricing-plan-part .plan-main .tab-content .plan-details .item .top h5, #work-process-part .right-content .nav-tab-part .tab-content .tab-pane p, .section-title p {
  font-family: var(--body-font);
}

#contact-part, .about-page #faq-part, #comparison-details, .feature-page #faq-part, .integration #faq-part, .comment-reply-automation #faq-part, .affiliate #faq-part, #main-details, #feature-details, .home-faq, .homepage-faq, .faq-page #faq-part, .pricing-plan #faq-part {
  padding-bottom: 270px !important;
}
@media (max-width: 767px) {
  #contact-part, .about-page #faq-part, #comparison-details, .feature-page #faq-part, .integration .other-integration, .comment-reply-automation #faq-part, .affiliate #faq-part, #main-details, #feature-details, .home-faq, .homepage-faq, .faq-page #faq-part, .pricing-plan #faq-part {
    padding-bottom: 160px !important;
  }
}

/* Section Title Part */
.section-title {
  max-width: 850px;
  margin: 0 auto;
}
.section-title h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: var(--c1);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section-title h3, .section-title h1 {
  font-size: 42px;
  line-height: 52px;
  font-weight: 500;
  color: var(--title-color);
  letter-spacing: -0.03em;
}
@media (max-width: 991px) {
  .section-title h3, .section-title h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .section-title h3, .section-title h1 {
    font-size: 28px;
    line-height: 38px;
  }
}
.section-title p {
  line-height: 28px;
  margin-top: 15px;
  max-width: 635px;
  margin-inline: auto;
}

.title {
  background: var(--white);
  width: 100%;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  text-align: center;
  padding-block: 30px;
  position: relative;
  top: -60px;
  padding-inline: 15px;
}
.title h3 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@media (max-width: 767px) {
  .title h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
.title h3 span:nth-child(2) {
  font-weight: 300;
  color: var(--title-color);
}
.title h3 span:nth-child(3) {
  font-weight: 300;
}

/* ************************
   02.2: Animations
   ********************* */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

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

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@-webkit-keyframes matrix {
  0% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  25% {
    transform: matrix(1, 0, 0, 1, 15, 20);
  }
  50% {
    transform: matrix(1, 0, 0, 1, -5, 25);
  }
  75% {
    transform: matrix(1, 0, 0, 1, -15, 15);
  }
  100% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes matrix {
  0% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  25% {
    transform: matrix(1, 0, 0, 1, 15, 20);
  }
  50% {
    transform: matrix(1, 0, 0, 1, -5, 25);
  }
  75% {
    transform: matrix(1, 0, 0, 1, -15, 15);
  }
  100% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@-webkit-keyframes ripple {
  from {
    width: 0.1%;
    height: 0.1%;
    opacity: 1;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
@keyframes ripple {
  from {
    width: 0.1%;
    height: 0.1%;
    opacity: 1;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
/* List Style */
.list-style {
  margin-top: 15px;
}
.list-style li {
  padding-left: 25px;
  line-height: 28px;
  font-family: var(--body-font);
  color: var(--text-color);
  padding-block: 13px;
}
.list-style li.available {
  position: relative;
}
.list-style li.available::after {
  content: url(../img/icon/available.png);
  position: absolute;
  top: 14px;
  left: 0px;
  filter: drop-shadow(3px 3px 10px rgba(22, 106, 255, 0.45));
}
.list-style li.not-available {
  position: relative;
}
.list-style li.not-available::after {
  content: url(../img/icon/not-available.png);
  position: absolute;
  top: 15px;
  left: 0px;
  filter: drop-shadow(0px 3px 10px rgba(255, 0, 0, 0.45));
}
.list-style li.lifetime {
  position: relative;
}
.list-style li.lifetime::after {
  content: url(../img/icon/lifetime.png);
  position: absolute;
  top: 14px;
  left: 0px;
  filter: drop-shadow(0px 3px 10px rgba(46, 208, 250, 0.45));
}

#feature-details-style {
  overflow: hidden;
  padding-top: 120px;
}
@media (max-width: 767px) {
  #feature-details-style {
    padding-top: 60px;
  }
}
#feature-details-style .section-title h5 {
  margin-bottom: 13px;
}
#feature-details-style .section-block {
  padding-block: 120px;
}
@media (max-width: 767px) {
  #feature-details-style .section-block {
    padding-block: 80px;
  }
}
#feature-details-style .section-block .right-info .section-title h3 {
  padding-right: 35px;
}
#feature-details-style .section-block .right-info .list-style {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}
@media (max-width: 575px) {
  #feature-details-style .section-block .right-info .list-style {
    grid-template-columns: repeat(1, 1fr);
  }
}
#feature-details-style .section-block .right-info .list-style li {
  padding-block: 8px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  letter-spacing: -0.02em;
}
#feature-details-style .section-block .right-info .list-style li.available::after {
  top: 10px;
  content: url(../img/feature-img/chatbot/tick-icon.svg);
}
#feature-details-style .section-block .right-info .read-more {
  padding: 9px 25px;
  border-radius: 30px;
  background: var(--title-color);
  color: var(--white);
  font-size: 14px;
  display: inline-block;
  margin-top: 30px;
  transition: 0.4s;
}
#feature-details-style .section-block .right-info .read-more img {
  margin-right: 7px;
}
#feature-details-style .section-block .right-info .read-more:hover {
  background: var(--c1);
}
#feature-details-style .section-block .img .dashboard {
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  position: relative;
  z-index: 2;
  margin: 45px 0;
}
#feature-details-style .section-block .img .app {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 45px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  z-index: 3;
}
@media (min-width: 991px) and (max-width: 1400px) {
  #feature-details-style .section-block .img .app {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #feature-details-style .section-block .img .app {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #feature-details-style .section-block .img .app {
    left: 28px;
    width: 60%;
  }
}
#feature-details-style .section-block .img .circle {
  position: absolute;
  top: 0%;
  transform: translateY(10%);
  right: 0;
  z-index: 1;
}
@media (max-width: 1400px) {
  #feature-details-style .section-block .img .circle {
    right: -30px;
  }
}
@media (max-width: 991px) {
  #feature-details-style .section-block .img .circle {
    right: 60px;
  }
}
@media (max-width: 767px) {
  #feature-details-style .section-block .img .circle {
    right: -30px;
  }
}
#feature-details-style .section-block:nth-child(odd) {
  background: #f3f8ff;
}
#feature-details-style .section-block:nth-child(odd) .app {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 75px;
  left: unset;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  z-index: 3;
}
@media (max-width: 575px) {
  #feature-details-style .section-block:nth-child(odd) .app {
    right: 28px;
    width: 47%;
  }
}
#feature-details-style .section-block:nth-child(odd) .circle {
  position: absolute;
  top: 0%;
  transform: translateY(10%);
  left: -30px;
  z-index: 1;
}
@media (max-width: 1400px) {
  #feature-details-style .section-block:nth-child(odd) .circle {
    right: -30px;
  }
}
@media (max-width: 991px) {
  #feature-details-style .section-block:nth-child(odd) .circle {
    right: 60px;
  }
}
@media (max-width: 767px) {
  #feature-details-style .section-block:nth-child(odd) .circle {
    right: -30px;
  }
}
#feature-details-style #engagement-part .call-to-action-top {
  background: url(../img/feature-img/commetn-reply-automation/call-to-action-top.png) no-repeat center;
  padding-block: 120px;
  text-align: center;
}
#feature-details-style #engagement-part .call-to-action-top img {
  position: absolute;
  top: -80px;
  left: 20%;
}

.with-cta {
  position: relative;
  overflow: unset !important;
}
.with-cta .inner {
  overflow: hidden;
  padding-top: 80px;
}
.with-cta .call-to-action {
  background: url(../img/feature-img/chatbot/call-to-action.png) no-repeat center/cover;
  margin-top: -210px;
  border-radius: 20px;
  padding-block: 45px;
}
@media (max-width: 1200px) {
  .with-cta .call-to-action {
    margin-top: -210px;
  }
}
@media (max-width: 767px) {
  .with-cta .call-to-action {
    margin-top: -150px;
  }
  .with-cta .inner {
  padding-top: 50px;
}
}
@media (max-width: 575px) {
  .with-cta .call-to-action {
    padding: 20px;
  }
}
.with-cta .call-to-action .content .text h2 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 31px;
  max-width: 500px;
}
@media (max-width: 767px) {
  .with-cta .call-to-action .content .text h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
.with-cta .call-to-action .content .text a {
  color: var(--white);
  padding: 10px 30px;
  background-image: linear-gradient(to right, #166aff, #2ed0fa, #69defb, #1cbde6, #166aff);
  border-radius: 30px;
  letter-spacing: -0.05em;
  display: inline-block;
  background-size: 300% 100%;
  transition: 0.3s ease;
}
.with-cta .call-to-action .content .text a:hover {
  background-position: 100% 0;
}

.call-to-action-top {
  background: url(../img/feature-img/commetn-reply-automation/call-to-action-top.png) no-repeat center/cover;
  padding-block: 110px;
  margin-top: 165px;
  text-align: center;
}
@media (max-width: 991px) {
  .call-to-action-top {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .call-to-action-top {
    margin-top: 105px;
  }
}
@media (max-width: 575px) {
  .call-to-action-top {
    margin-top: 220px;
    padding-top: 60px;
  }
}
.call-to-action-top .h3 {
  display: flex;
  justify-content: center;
  padding-inline: 10px;
}
.call-to-action-top .h3 h3 {
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 1000px;
}
@media (max-width: 991px) {
  .call-to-action-top .h3 h3 {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (max-width: 575px) {
  .call-to-action-top .h3 h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
.call-to-action-top a {
  letter-spacing: -0.05em;
  color: var(--title-color);
  background: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 45px;
  transition: 0.3s ease;
}
.call-to-action-top a:hover {
  color: var(--c1);
}
@media (max-width: 767px) {
  .call-to-action-top a {
    margin-top: 20px;
  }
}
.call-to-action-top img {
  position: absolute;
  top: -80px;
  left: 10%;
}
@media (max-width: 991px) {
  .call-to-action-top img {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .call-to-action-top img {
    top: -40px;
  }
}

.details-img {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  padding-top: 45px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .details-img {
    padding-top: 30px;
    padding-right: 20px;
  }
}
.details-img .main-img {
  display: inline-block;
  position: relative;
}
.details-img .main-img:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: calc(100% - 60px);
  height: 60px;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  right: -30px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 3;
}
.details-img .main-img:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 60px;
  width: calc(100% - 120px);
  height: 120px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  right: -60px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 2;
}
.details-img .main-img .main {
  border-radius: 20px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 4;
}
.details-img .round {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 1;
}
@media (max-width: 500px) {
  .details-img .round {
    max-width: 55%;
  }
}

/* ************************
   02.9: Pagination
   ********************* */
.pagination ul {
  margin: 0;
}
.pagination li:not(:last-child) {
  margin-right: 18px;
}
@media only screen and (max-width: 479px) {
  .pagination li:not(:last-child) {
    margin-right: 10px;
  }
}
.pagination li a,
.pagination li span {
  width: 56px;
  height: 56px;
  line-height: 1;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
@media only screen and (max-width: 479px) {
  .pagination li a,
.pagination li span {
    width: 48px;
    height: 48px;
  }
}
.pagination li.nav-btn a.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ************************
   02.10: Back to Top
   ********************* */
.back-to-top {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  width: 35px;
  height: 35px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: var(--white) !important;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  bottom: 10%;
  right: 4%;
  transform: scale(0);
  transition: 0.3s ease-in;
  background: linear-gradient(148.23deg, #166aff 10.52%, #2ed0fa 89.38%);
}
.back-to-top.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.back-to-top:hover {
  opacity: 0.6;
}

/* ************************
   02.11: Preloader
   ********************* */
.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2000;
}

.preloader .preloader-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FF0076;
  background-color: #fff;
}

.preloader .preloader-svg {
  fill: transparent;
  stroke: currentColor;
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
}

#page-header {
  background: url(../img/inner-banner.png) no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
#page-header .main {
  padding-top: 260px;
  padding-bottom: 150px;
  position: relative;
}
@media (max-width: 1200px) {
  #page-header .main {
    padding-top: 190px;
  }
}
@media (max-width: 575px) {
  #page-header .main {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
#page-header .main .center-text {
  position: absolute;
  left: 100px;
  top: 70%;
  transform: translateY(-70%);
  width: 400%;
}
@media (max-width: 767px) {
  #page-header .main .center-text {
    display: none;
  }
}
#page-header .main .center-text h2 {
  font-weight: 700;
  font-size: 210px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.05);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  #page-header .main .center-text h2 {
    font-size: 120px;
  }
}
@media (max-width: 575px) {
  #page-header .main .center-text h2 {
    font-size: 80px;
  }
}
#page-header .main .main-title {
  position: relative;
  z-index: 1;
}
#page-header .main .main-title h5 {
  color: var(--white);
  font-weight: 400;
  font-family: var(--body-font);
  font-size: 16px;
  margin-top: 10px;
  line-height: 26px;
}
#page-header .main .main-title h3,
#page-header .main .main-title h1 {
  color: var(--white);
  letter-spacing: -0.05em;
  font-size: 42px;
  line-height: 52px;
}
#page-header::after {
  content: url(../img/inner-banner-bot.png);
  position: absolute;
  bottom: -9px;
  right: 0;
}
@media (max-width: 1200px) {
  #page-header::after {
    width: 30%;
  }
}
@media (max-width: 575px) {
  #page-header::after {
    display: none;
  }
}
#page-header .breadcrumb {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: var(--white);
  margin-bottom: 0;
  padding: 16px 30px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
}
@media (max-width: 575px) {
  #page-header .breadcrumb {
    padding: 15px;
  }
}
#page-header .breadcrumb ul {
  flex-wrap: wrap;
  gap: 5px 35px;
}
#page-header .breadcrumb ul li a {
  font-family: var(--body-font);
}
@media (max-width: 575px) {
  #page-header .breadcrumb ul li a {
    font-size: 12px;
  }
}
#page-header .breadcrumb ul li:not(:last-child) a {
  position: relative;
}
#page-header .breadcrumb ul li:not(:last-child) a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, #166aff 0%, #2ed0fa 100%);
  border-radius: 50%;
}
#page-header .breadcrumb ul li:last-child a {
  pointer-events: none;
}

/* Header Part */
.header-main {
  min-height: 60px;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 575px) {
  .header-main .logo {
    max-width: 150px;
  }
}

.header-main.fixed-top {
  position: fixed;
  top: 27px;
}
@media (max-width: 575px) {
  .header-main.fixed-top {
    top: 10px;
  }
}

.header-main .header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .header-main .submenu-button {
    position: absolute;
    right: 0;
    top: 5px;
    height: 30px;
    width: 30px;
    color: inherit;
    font-size: 14px;
    z-index: 9999;
    transition: 0.2s ease-in-out;
    cursor: pointer;
  }
  .header-main .submenu-button:after {
    content: "+";
    line-height: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
  }
  .header-main .submenu-button.submenu-opened:after {
    content: "-";
  }
  .header-main .submenu-button ~ .sub-menu .submenu-button {
    top: 3px;
  }
  .header-main .submenu-button ~ .sub-menu .submenu-button:after {
    content: "+";
  }
  .header-main .submenu-button.submenu-opened ~ .sub-menu .submenu-button.submenu-opened:after {
    content: "-";
  }
  .nav-wrapper {
    display: flex;
  }
  .header-main .nav-wrap-inner {
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 110%;
    z-index: 9;
    max-height: 480px;
    overflow-y: auto;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.nav li:last-child {
  padding-right: 0;
}
.nav .login img,
.nav .signup img {
  margin-right: 7px;
}
.nav .login .icon,
.nav .signup .icon {
  margin-right: 7px;
}

@media only screen and (max-width: 1199px) {
  .header-main .nav-wrap-inner {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header-main ul.nav {
    flex-direction: column;
    padding: 14px 20px;
    padding-right: 5px;
  }
  .header-main ul.nav > li {
    width: 100%;
  }
}
.header-main ul.nav {
  gap: 10px 23.5px;
}
.header-main ul.nav li a {
  position: relative;
  display: block;
  color: var(--white);
  font-weight: 500;
  padding: 20px 10px;
  position: relative;
}
.header-main ul.nav li .nav-link {
  transition: 0.4s;
}
@media (max-width: 1200px) {
  .header-main ul.nav li .nav-link:before {
    display: none;
  }
}
.header-main ul.nav li .nav-link::before {
  content: url(../img/icon/dot.svg);
  position: absolute;
  top: 16px;
  left: -10px;
  opacity: 0;
  transition: 0.4s;
}
.header-main ul.nav li .nav-link:hover {
  text-decoration: line-through;
}
.header-main ul.nav li .nav-link:hover::before {
  opacity: 1;
}
.header-main ul.nav li .nav-link.active {
  text-decoration: line-through;
}
.header-main ul.nav li .nav-link.active:before {
  opacity: 1;
}
.header-main ul.nav .btn-group {
  display: flex;
  gap: 20px;
  padding: 0;
}
@media (max-width: 360px) {
  .header-main ul.nav .btn-group {
    flex-direction: column;
  }
}
.header-main ul.nav .btn-group .signup {
  padding: 7px 25px;
  border-radius: 21px;
  background: var(--white);
  font-weight: 400;
  color: var(--c1);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header-main ul.nav .btn-group .signup:hover {
  background: var(--c1);
  color: var(--white);
}
.header-main ul.nav .btn-group .signup:hover img {
  filter: brightness(0) invert(1);
}
.header-main ul.nav .btn-group .login {
  padding: 7px 25px;
  border-radius: 21px;
  transition: 0.4s;
  color: var(--white);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  z-index: 1;
}
.header-main ul.nav .btn-group .login svg path {
  transition: 0.4s;
}
@media (max-width: 1200px) {
  .header-main ul.nav .btn-group .login {
    background: linear-gradient(148.23deg, #166aff 10.52%, #2ed0fa 89.38%);
  }
}
.header-main ul.nav .btn-group .login:hover {
  background: var(--white);
  color: var(--c1);
}
.header-main ul.nav .btn-group .login:hover svg path {
  fill: var(--c1);
}
.header-main ul.nav > li.has-sub-item {
  position: static;
}
@media only screen and (max-width: 1199px) {
  .header-main ul.nav > li > a {
    line-height: 40px;
    padding: 0;
    color: var(--black);
  }
  .header-main ul.nav > li.has-sub-item {
  position: relative;
}
}


.header-main ul.nav > li.has-sub-item:after {
  display: none !important;
}

.header-main ul.nav li:hover > ul {
  top: 93%;
}

.header-main ul.nav ul {
  position: absolute;
  left: 0;
  top: -2000px;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  min-width: 200px;
  transform: translate3d(0, -5px, 0);
  transition: transform 0.3s ease-out;
  z-index: 9;
  padding: 0;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1199px) {
  .header-main ul.nav ul {
    position: static;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    width: 100%;
    transform: none;
  }
  .header-main ul.nav ul li {
    margin-left: 20px;
  }
  .header-main ul.nav ul li a:before,
.header-main ul.nav ul li a:after {
    display: none;
  }
}
.header-main ul.nav ul li {
  padding: 8px 20px;
}

@media only screen and (max-width: 1199px) {
  .header-main ul.nav ul li {
    padding-left: 0;
    padding-right: 0;
  }
}
.header-main ul.nav ul li a {
  display: block;
}

.header-main ul.nav ul li a:after {
  position: absolute;
  left: 0;
  content: "";
  transition: all 0.3s ease-out;
}

.header-main ul.nav ul li:not(:last-child) a:after {
  bottom: 0;
  height: 1px;
  width: 100%;
  opacity: 0.1;
}

@media (min-width: 1199px) {
  .header-main ul.nav ul li:hover > ul {
    top: 0;
  }
}
.header-main ul.nav ul ul {
  left: 100%;
}

.header-main ul.nav ul.open {
  visibility: visible;
  opacity: 1;
}

.header-main ul li {
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .header-main ul li {
    padding: 0;
  }
}
.header-main ul li.has-sub-item {
  position: relative;
}

.header-main ul li.has-sub-item:after {
  position: absolute;
  content: "+";
  right: 20px;
  top: 50%;
  color: #000;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1199px) {
  .header-main ul li.has-sub-item:after {
    display: none !important;
  }
}
.header-main ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translate3d(0, 0, 0);
}

.header-main ul.dropdown-menu li {
  padding: 0;
}

/* Menu Button */
#menu-button {
  display: none;
  height: 25px;
  width: 25px;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1199px) {
  #menu-button {
    display: inline-flex;
    cursor: pointer;
  }
}
#menu-button span {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}

#menu-button span:before,
#menu-button span:after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}

#menu-button span:before {
  top: -7px;
}

#menu-button span:after {
  top: 7px;
}

#menu-button.menu-opened span {
  background-color: transparent !important;
}

#menu-button.menu-opened span:before {
  transform: translateY(7px) rotate(45deg);
}

#menu-button.menu-opened span:after {
  transform: translateY(-7px) rotate(-45deg);
}

.sticky-logo {
  display: none;
}

/* Sticky Menu */
.header-main.sticky {
  min-height: 60px;
  top: 0px;
  padding-block: 1px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.header-main.sticky ul li a {
  color: var(--title-color);
}
.header-main.sticky ul li a::before {
  content: url(../img/icon/dot-2.svg) !important;
}
.header-main.sticky ul li a.active {
  color: var(--c1);
}
.header-main.sticky ul li a:hover {
  color: var(--c1);
}
.header-main.sticky ul .btn-group .signup {
  background: linear-gradient(96.44deg, #166aff 0%, #2ed0fa 100%);
  color: var(--white);
  transition: 0.4s;
}
.header-main.sticky ul .btn-group .signup img {
  filter: brightness(0) invert(1);
  transition: 0.4s;
}
.header-main.sticky ul .btn-group .signup:hover {
  background: linear-gradient(96.44deg, #2ed0fa 0%, #166aff 100%);
}
.header-main.sticky ul .btn-group .login {
  color: var(--title-color--);
  transition: 0s;
}
@media (max-width: 1200px) {
  .header-main.sticky ul .btn-group .login {
    color: var(--white);
  }
  .header-main.sticky ul .btn-group .login svg path {
    fill: var(--white) !important;
  }
}
.header-main.sticky ul .btn-group .login svg path {
  fill: var(--title-color);
  transition: 0s;
}
.header-main.sticky ul .btn-group .login:hover {
  color: var(--white);
  background: linear-gradient(96.44deg, #166aff 0%, #2ed0fa 100%);
}
.header-main.sticky ul .btn-group .login:hover svg path {
  fill: var(--white);
}
.header-main.sticky #menu-button span {
  background: var(--title-color);
}
.header-main.sticky #menu-button span:before, .header-main.sticky #menu-button span::after {
  background: var(--title-color);
}
.header-main.sticky .sticky-logo {
  display: block;
}
.header-main.sticky .main-logo {
  display: none;
}

@media (max-width: 1200px) {
  .nav-wrap-inner {
    background: var(--white);
  }
  .nav-wrap-inner .nav-link {
    color: var(--title-color);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDowns {
  -webkit-animation-name: fadeInDowns;
          animation-name: fadeInDowns;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@-webkit-keyframes fadeInDowns {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInDowns {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.header-style-2 .header-main {
  box-shadow: none !important;
}
@media (min-width: 1200px) {
  .header-style-2 .header-main {
    padding-block: 11px;
  }
}
.header-style-2 .header-main.fixed-top {
  background: var(--white) !important;
  top: 0 !important;
}
.header-style-2 .header-main.sticky {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px !important;
  padding-block: 1px;
}
.header-style-2 .header-main ul li a {
  color: var(--title-color);
}
.header-style-2 .header-main ul li a::before {
  content: url(../img/icon/dot-2.svg) !important;
}
.header-style-2 .header-main ul li a.active {
  color: var(--c1);
}
.header-style-2 .header-main ul li a:hover {
  color: var(--c1);
}
.header-style-2 .header-main ul .btn-group .signup {
  background-image: linear-gradient(to right, #166aff, #2ed0fa, #69defb, #1cbde6, #166aff);
  color: var(--white);
  display: inline-block;
  background-size: 300% 100%;
  transition: 0.3s ease;
}
.header-style-2 .header-main ul .btn-group .signup img {
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}
.header-style-2 .header-main ul .btn-group .signup:hover {
  background-position: 100% 0;
}
.header-style-2 .header-main ul .btn-group .login {
  color: var(--title-color--);
  transition: 0s;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .header-style-2 .header-main ul .btn-group .login {
    color: var(--white);
  }
  .header-style-2 .header-main ul .btn-group .login svg path {
    fill: var(--white) !important;
  }
}
.header-style-2 .header-main ul .btn-group .login svg path {
  fill: var(--title-color);
  transition: 0s;
}
.header-style-2 .header-main ul .btn-group .login:hover {
  color: var(--white);
  background: linear-gradient(96.44deg, #166aff 0%, #2ed0fa 100%);
}
.header-style-2 .header-main ul .btn-group .login:hover svg path {
  fill: var(--white);
}
.header-style-2 .header-main #menu-button span {
  background: var(--title-color);
}
.header-style-2 .header-main #menu-button span:before, .header-style-2 .header-main #menu-button span::after {
  background: var(--title-color);
}

.mega-menu {
  width: 100%;
  padding: 45px !important;
  background: var(--white);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  left: 0 !important;
  top: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 47px;
}
@media (max-width: 1200px) {
  .mega-menu {
    grid-template-columns: repeat(1, 1fr);
    padding: 15px !important;
  }
}
.mega-menu .menu-item {
  gap: 10px;
  padding: 0 !important;
}
.mega-menu .menu-item:before {
  display: none !important;
}
.mega-menu .menu-item:hover .info .item-title {
  color: var(--c1);
}
.mega-menu .menu-item .icon img {
  min-width: 30px;
}
.mega-menu .menu-item .info .item-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 3px;
  transition: 0.3s;
}
.mega-menu .menu-item .info p {
  line-height: 24px;
  font-family: var(--body-font);
  color: var(--text-color);
  margin-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*  Footer Part */
footer {
  background: url(../img/footer.png) no-repeat center/cover;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}
footer .container {
  position: relative;
  z-index: 2;
}
footer .top h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 9px;
}
footer .top ul li {
  font-size: 16px;
  line-height: 39px;
  font-family: var(--body-font);
  color: rgba(255, 255, 255, 0.72);
}
footer .top ul li img {
  margin-right: 12px;
  margin-top: -3px;
}
footer .top ul li a {
  font-size: 16px;
  line-height: 39px;
  font-family: var(--body-font);
  color: rgba(255, 255, 255, 0.72);
  transition: 0.4s;
}
footer .top ul li a:hover {
  color: var(--white);
}
footer .top .links ul {
  padding-left: 30px;
}
footer .top .links a {
  position: relative;
  transition: 0.4s;
}
footer .top .links a::after {
  content: url(../img/icon/dots.svg);
  position: absolute;
  top: -14px;
  left: -30px;
}
footer .top .links a:hover:after {
  -webkit-animation: fade 0.8s;
          animation: fade 0.8s;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
    left: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    left: -30px;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    left: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    left: -30px;
  }
}
footer .middle {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 50px;
  margin-top: 50px;
}
footer .middle .partner-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3px;
  margin-top: 24px;
}
@media(max-width: 767px){
    footer .middle .partner-group{
        flex-wrap: wrap;
    }
    footer .middle .partner-group .item{
        width: 30%;
    }
}
footer .middle .partner-group .item {
  display: flex;
  justify-content: center;
  background: var(--white);
  border-radius: 5px;
  padding: 16px 24px;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
}
footer .middle .partner-group .item img{
   object-fit: contain;
}
footer .middle .social-group {
  border: 1px solid #F4F4F4;
  display: inline-block;
  background: var(--white);
  margin-top: 17px;
  border-radius: 5px;
  display: inline-flex;
}
footer .middle .social-group a {
  padding-block: 12px;
  display: inline-block;
  width: 50px;
}
footer .middle .social-group a:not(:last-child) {
  position: relative;
}
footer .middle .social-group a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #ADD6F7;
}
footer .middle .social-group a svg path {
  transition: 0.4s;
}
footer .middle .social-group a:hover svg path {
  fill: #166AFF;
}
footer .footer-bottom {
  margin-top: 48px;
  padding-block: 20px 21px;
  background: rgba(255, 255, 255, 0.2);
}
footer .footer-bottom p,
footer .footer-bottom li,
footer .footer-bottom a {
  font-family: var(----body-font);
  color: var(--white);
  line-height: 19px;
}
@media (max-width: 991px) {
  footer .footer-bottom .main {
    justify-content: center !important;
    gap: 15px;
  }
}
footer .footer-bottom .main .copyright a {
  transition: 0.4s;
}
footer .footer-bottom .main .copyright a:hover {
  text-decoration: underline;
}
@media (max-width: 575px) {
  footer .footer-bottom .main .copyright {
    text-align: center;
  }
}
footer .footer-bottom .main .social-links ul {
  gap: 10px 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 575px) {
  footer .footer-bottom .main .social-links ul {
    gap: 10px 20px;
  }
}
footer .footer-bottom .main .social-links ul li a {
  position: relative;
  transition: 0.4s;
}
footer .footer-bottom .main .social-links ul li a:before {
  content: "";
  position: absolute;
  top: 9px;
  left: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transition: 0.3s;
}
footer .footer-bottom .main .social-links ul li a:hover:before {
  background: var(--c1);
}

/* Login Part */
#login-part {
  background: #f5f5f5;
  padding: 120px 0;
}
@media (max-width: 767px) {
  #login-part {
    padding: 60px 0;
  }
}
#login-part .main {
  padding: 30px;
  border-radius: 20px;
  background: var(--white);
}
@media (max-width: 575px) {
  #login-part .main {
    padding: 30px 15px;
  }
}
#login-part .main .left-info {
  padding-left: 30px;
}
@media (max-width: 1400px) {
  #login-part .main .left-info {
    padding-left: 0;
  }
}
#login-part .main .left-info h3 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.05em;
  font-weight: 500;
}
#login-part .main .left-info h3 img {
  margin-right: 10px;
}
#login-part .main .left-info p {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 19px;
  margin-top: 12px;
}
#login-part .main .left-info .login-with-popup {
  margin-top: 40px;
  gap: 10px 20px;
}
@media (max-width: 767px) {
  #login-part .main .left-info .login-with-popup {
    flex-direction: column;
    justify-content: center;
  }
}
#login-part .main .left-info .login-with-popup .item {
  padding: 18px 30px;
  border: 1px solid #f1f1f1;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
  gap: 12px;
}
@media (min-width: 991px) and (max-width: 1200px) {
  #login-part .main .left-info .login-with-popup .item {
    padding: 18px 10px;
  }
}
#login-part .main .left-info .login-with-popup .item h4 {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 19px;
}
#login-part .main .left-info .divider {
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--title-color);
  position: relative;
  margin-bottom: 24px;
  margin-top: 24px;
}
#login-part .main .left-info .divider:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40%;
  height: 1px;
  background: #f1f1f1;
}
@media (max-width: 1400px) {
  #login-part .main .left-info .divider:after {
    width: 30%;
  }
}
@media (max-width: 360px) {
  #login-part .main .left-info .divider:after {
    width: 25%;
  }
}
#login-part .main .left-info .divider:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40%;
  height: 1px;
  background: #f1f1f1;
}
@media (max-width: 1400px) {
  #login-part .main .left-info .divider:before {
    width: 30%;
  }
}
@media (max-width: 360px) {
  #login-part .main .left-info .divider:before {
    width: 25%;
  }
}
#login-part .main .left-info .form-group .form-control {
  padding: 0;
  border: 0;
  position: relative;
}
#login-part .main .left-info .form-group .form-control:not(:last-child) {
  margin-bottom: 20px;
}
#login-part .main .left-info .form-group .form-control input {
  padding: 16.5px 55px;
  border: 1px solid #f1f1f1;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
}
#login-part .main .left-info .form-group .form-control input::-moz-placeholder {
  color: var(--text-color);
}
#login-part .main .left-info .form-group .form-control input:-ms-input-placeholder {
  color: var(--text-color);
}
#login-part .main .left-info .form-group .form-control input::placeholder {
  color: var(--text-color);
}
#login-part .main .left-info .form-group .form-control .password,
#login-part .main .left-info .form-group .form-control .email {
  width: 100%;
}
#login-part .main .left-info .form-group .form-control label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  margin-top: -2px;
}
#login-part .main .left-info .form-group button {
  font-weight: 500;
  color: var(--white);
  line-height: 24px;
  text-align: center;
  padding-block: 18px;
  width: 100%;
  background-image: linear-gradient(to right, #166aff, #2ed0fa, #69defb, #1cbde6, #166aff);
  background-size: 300% 100%;
  border-radius: 30px;
  transition: 0.4s;
}
#login-part .main .left-info .form-group button img {
  margin-right: 10px;
}
#login-part .main .left-info .form-group button:hover {
  background-position: 100% 0;
}
#login-part .main .left-info .not-signup {
  line-height: 19px;
  font-family: var(--body-font);
  color: var(--text-color);
  margin-top: 27px;
}
#login-part .main .left-info .not-signup a {
  color: var(--c1);
  text-decoration: underline;
}
#login-part .main .right-image {
  display: flex;
}
#login-part .main .right-image img {
  margin-left: auto;
}
@media (max-width: 991px) {
  #login-part .main .right-image img {
    margin-inline: auto;
  }
}
#login-part .copyright {
  margin-top: 57px;
  line-height: 19px;
  font-family: var(--body-font);
  color: rgba(12, 32, 65, 0.3);
}
#login-part .copyright a {
  color: rgba(12, 32, 65, 0.3);
}

#signup .agree-terms {
  font-family: var(--body-font);
  line-height: 19px;
  color: var(--text-color);
  margin-bottom: 17px;
}
#signup .agree-terms a {
  color: var(--c1);
}
#signup .agree-terms label {
  cursor: pointer;
}
#signup .agree-terms #agree {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #166aff, #2ed0fa) border-box;
  border: 1px solid transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}
#signup .agree-terms #agree:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(90.63deg, #166aff 0%, #2ed0fa 100%);
  transform: translate(-50%, -50%);
}
#signup .form-group {
  margin-top: 40px;
}
#signup .form-group input {
  max-width: 100%;
}
#signup .form-group .ue,
#signup .form-group .pw {
  gap: 0 20px;
}
@media (max-width: 767px) {
  #signup .form-group .ue,
#signup .form-group .pw {
    flex-direction: column;
  }
}
#signup .form-group .ue .form-control,
#signup .form-group .pw .form-control {
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #signup .form-group .ue .form-control,
#signup .form-group .pw .form-control {
    width: 100%;
  }
  #signup .form-group .ue .form-control input,
#signup .form-group .pw .form-control input {
    width: 100%;
  }
}
#signup .form-group .i-cell {
  width: 100%;
}
#signup .form-group .i-cell input {
  width: 100%;
}
#signup .form-group .package-coupon-toggle {
  margin-bottom: 20px;
}
#signup .form-group .package-coupon-toggle .toggleBtn {
  margin-bottom: 20px;
}
#signup .form-group .package-coupon-toggle .toggleBtn h2 {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  color: var(--c1);
}
#signup .form-group .package-coupon-toggle .toggleBtn .toggleOff {
  display: none;
}
#signup .form-group .package-coupon-toggle .item-group .p select {
  padding: 16.5px 30px;
  border: 1px solid #f1f1f1;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
  width: 100%;
  background: transparent;
  min-height: 60px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background: url(../img/icon/down-arrow.svg) no-repeat right;
  background-position-x: 95%;
}
#signup .form-group .package-coupon-toggle .item-group .p select option {
  color: var(--text-color);
}
#signup .form-group .package-coupon-toggle .item-group .p a {
  text-align: center;
  display: block;
  margin-top: 10px;
  text-decoration: underline;
}
#signup .form-group .package-coupon-toggle .item-group .c {
  display: none;
  position: relative;
}
#signup .form-group .package-coupon-toggle .item-group .c input {
  padding: 16.5px 60px;
  border: 1px solid #f1f1f1;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
  width: 100%;
}
#signup .form-group .package-coupon-toggle .item-group .c input::-moz-placeholder {
  color: var(--text-color);
}
#signup .form-group .package-coupon-toggle .item-group .c input:-ms-input-placeholder {
  color: var(--text-color);
}
#signup .form-group .package-coupon-toggle .item-group .c input::placeholder {
  color: var(--text-color);
}
#signup .form-group .package-coupon-toggle .item-group .c label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

/* Banner Part */
#banner-part {
  background: url(../img/banner-bg.png) no-repeat center/cover;
  padding-top: 152px;
}
@media (max-width: 575px) {
  #banner-part {
    padding-top: 75px;
  }
}
#banner-part .banner-main-content .text-content {
  color: var(--white);
  padding-top: 70px;
}
#banner-part .banner-main-content .text-content h1 {
  font-size: 60px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 75px;
}
@media (max-width: 575px) {
  #banner-part .banner-main-content .text-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
#banner-part .banner-main-content .text-content p {
  font-size: 21px;
  margin-top: 19px;
  line-height: 36px;
  font-family: var(--body-font);
  color: var(--white);
}
#banner-part .banner-main-content .text-content .btn-group {
  gap: 20px;
  margin-top: 48px;
  padding-bottom: 327px;
}
@media (max-width: 991px) {
  #banner-part .banner-main-content .text-content .btn-group {
    padding-bottom: 0;
  }
}
#banner-part .banner-main-content .text-content .btn-group .signup {
  color: var(--c1);
  font-weight: 500;
  background: var(--white);
  padding: 16px 30px;
  border-radius: 30px;
  transition: 0.3s;
}
@media (max-width: 575px) {
  #banner-part .banner-main-content .text-content .btn-group .signup {
    padding: 10px 20px;
  }
}
#banner-part .banner-main-content .text-content .btn-group .signup img {
  margin-right: 7px;
  transition: 0.3s;
}
#banner-part .banner-main-content .text-content .btn-group .signup:hover {
  background: var(--c1);
  color: var(--white);
}
#banner-part .banner-main-content .text-content .btn-group .signup:hover img {
  filter: brightness(0) invert(1);
}
#banner-part .banner-main-content .text-content .btn-group .compare-btn {
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid var(--white);
}
@media (max-width: 575px) {
  #banner-part .banner-main-content .text-content .btn-group .compare-btn {
    padding: 10px 20px;
  }
}
#banner-part .banner-main-content .text-content .btn-group .compare-btn img {
  margin-right: 7px;
}
#banner-part .banner-main-content .text-content .btn-group .compare-btn:hover {
  background: var(--c1);
  color: var(--white);
  border-color: var(--c1);
}
#banner-part .banner-main-content .image-content .right-img {
  position: absolute;
  right: 0;
}
@media (max-width: 1600px) {
  #banner-part .banner-main-content .image-content .right-img {
    width: 50%;
  }
}
@media (max-width: 991px) {
  #banner-part .banner-main-content .image-content .right-img {
    position: unset;
    width: 100%;
  }
}
#banner-part .banner-main-content .image-content .right-icon {
  height: 100%;
}
@media (max-width: 991px) {
  #banner-part .banner-main-content .image-content .right-icon {
    top: -700px;
  }
}
@media (max-width: 575px) {
  #banner-part .banner-main-content .image-content .right-icon {
    display: none;
  }
}
#banner-part .banner-main-content .image-content .right-icon .thumbsup {
  position: absolute;
  top: 215px;
  -webkit-animation: updown 5s infinite;
          animation: updown 5s infinite;
}
@-webkit-keyframes updown {
  25% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateX(20px);
  }
}
@keyframes updown {
  25% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateX(20px);
  }
}
#banner-part .banner-main-content .image-content .right-icon .play {
  position: absolute;
  top: 480px;
  left: 35px;
  -webkit-animation: flo 4s infinite;
          animation: flo 4s infinite;
}
@-webkit-keyframes flo {
  50% {
    transform: translateX(30px);
  }
}
@keyframes flo {
  50% {
    transform: translateX(30px);
  }
}
#banner-part .banner-main-content .image-content .right-icon .insta {
  position: absolute;
  top: 590px;
  right: 130px;
  -webkit-animation: flow 7s infinite;
          animation: flow 7s infinite;
}
@-webkit-keyframes flow {
  50% {
    transform: translate(-30px, -50px);
  }
}
@keyframes flow {
  50% {
    transform: translate(-30px, -50px);
  }
}
#banner-part .banner-main-content .image-content .right-icon .messenger {
  position: absolute;
  top: 170px;
  right: -85px;
  -webkit-animation: flowx 8s infinite;
          animation: flowx 8s infinite;
}
@media (max-width: 991px) {
  #banner-part .banner-main-content .image-content .right-icon .messenger {
    right: 80px;
  }
}
@-webkit-keyframes flowx {
  50% {
    transform: translateX(-40px);
  }
  75% {
    transform: translateY(10px);
  }
}
@keyframes flowx {
  50% {
    transform: translateX(-40px);
  }
  75% {
    transform: translateY(10px);
  }
}

.aa {
  height: 5000px;
}

/* Feature Part */
#feature-part .feature-navtab {
  border-radius: 20px;
  margin-top: -148px;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  #feature-part .feature-navtab {
    margin-top: -141px;
  }
}
@media (max-width: 991px) {
  #feature-part .feature-navtab {
    margin-top: 60px;
  }
}
#feature-part .feature-navtab nav .nav-tabs {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  #feature-part .feature-navtab nav .nav-tabs {
    justify-content: center;
  }
}
#feature-part .feature-navtab nav .nav-tabs .nav-link {
  width: 50%;
  border: none;
  padding-block: 38px;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.05em;
  border-radius: 0;
  opacity: 0.2;
  color: var(--white);
  transition: 0.4s;
  justify-content: center;
}
@media (max-width: 1200px) {
  #feature-part .feature-navtab nav .nav-tabs .nav-link {
    font-size: 37px;
  }
}
@media (max-width: 991px) {
  #feature-part .feature-navtab nav .nav-tabs .nav-link {
    padding-block: 25px;
    font-size: 24px;
    color: var(--black);
    opacity: 0.1;
  }
  #feature-part .feature-navtab nav .nav-tabs .nav-link .btn-icon svg {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #feature-part .feature-navtab nav .nav-tabs .nav-link {
    padding-block: 10px;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 359px) {
  #feature-part .feature-navtab nav .nav-tabs .nav-link {
    font-size: 18px;
  }
}
#feature-part .feature-navtab nav .nav-tabs .nav-link .btn-icon {
  margin-right: 20px;
}
@media (max-width: 991px) {
  #feature-part .feature-navtab nav .nav-tabs .nav-link .btn-icon {
    margin-right: 10px;
  }
}
#feature-part .feature-navtab nav .nav-tabs .nav-link.active {
  background: var(--white);
  opacity: 1;
  color: var(--c1);
  position: relative;
}
#feature-part .feature-navtab nav .nav-tabs .nav-link:not(.active) .btn-icon svg path {
  fill: var(--white);
}
@media (max-width: 991px) {
  #feature-part .feature-navtab nav .nav-tabs .nav-link:not(.active) .btn-icon svg path {
    fill: var(--black);
  }
}
#feature-part .feature-navtab nav .nav-tabs .nav-link:not(.active):hover {
  background: var(--white) !important;
  opacity: 1 !important;
  color: var(--c1) !important;
  position: relative !important;
}
#feature-part .feature-navtab nav .nav-tabs .nav-link:not(.active):hover .btn-icon svg path {
  fill: var(--c1);
}
#feature-part .feature-navtab .tab-content {
  background: url(../img/featured-tab-bg.png) no-repeat center/cover;
  border-radius: 20px;
}
@media (max-width: 1400px) {
  #feature-part .feature-navtab .tab-content {
    background: none;
  }
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 1400px) {
  #feature-part .feature-navtab .tab-content .tab-pane .items-grid {
    gap: 0;
  }
}
@media (max-width: 991px) {
  #feature-part .feature-navtab .tab-content .tab-pane .items-grid {
    grid-template-columns: repeat(2, 1fr);
    background: #e9e9e9;
    gap: 1px;
  }
}
@media (max-width: 575px) {
  #feature-part .feature-navtab .tab-content .tab-pane .items-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item {
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  #feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item {
    background: var(--white);
  }
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item .inner {
  padding: 80px 35px;
  position: relative;
  z-index: 1;
  background: white;
  transition: 0.4s;
  top: 0;
  left: 0;
  border-radius: 20px;
}
@media (max-width: 575px) {
  #feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item .inner {
    padding: 60px 10px;
  }
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item .inner .icon {
  position: relative;
  transition: 0.4s;
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item .inner .icon img {
  position: relative;
  z-index: 1;
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item .inner .icon:after {
  content: url(../img/icon/feature/feature-icon-border.svg);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: 0.4s;
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item .inner h3 {
  font-size: 21px;
  font-weight: 500;
  margin-top: 41px;
  line-height: 32px;
  letter-spacing: -0.01em;
  min-height: 64px;
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item:hover .inner {
  top: 20px;
  left: 20px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  z-index: 3;
}
@media (max-width: 575px) {
  #feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item:hover .inner {
    top: 10px;
    left: 10px;
    border-radius: 10px;
  }
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item:hover .inner .icon img {
  filter: brightness(0) invert(1);
}
#feature-part .feature-navtab .tab-content .tab-pane .items-grid .feature-item:hover .inner .icon::after {
  content: url(../img/icon/feature/feature-icon-bg.svg);
  filter: drop-shadow(0px 10px 20px rgba(22, 106, 255, 0.45));
}

/* Video Part */
#video-part {
  margin-block: 120px;
  padding-top: 110px;
  position: relative;
}
@media (max-width: 767px) {
  #video-part {
    margin-block: 60px;
    padding-top: 60px;
  }
}
#video-part::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, #f3f8ff 0%, rgba(243, 248, 255, 0) 100%);
  z-index: -1;
}
#video-part .video {
  margin-top: 47px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.08);
}
@media (max-width: 575px) {
  #video-part .video {
    border-radius: 10px;
  }
}
#video-part .video .bg-img {
  width: 100%;
}
#video-part .video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#video-part .video .play-btn .video-play {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--c1);
  position: relative;
  z-index: 2;
}
#video-part .video .play-btn .video-play::after {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(22, 107, 255, 0.4);
  -webkit-animation: vdopulse 1500ms ease-out infinite;
          animation: vdopulse 1500ms ease-out infinite;
  content: "";
  z-index: 1;
}
@-webkit-keyframes vdopulse {
  0% {
    background: rgba(22, 107, 255, 0.4);
    transform: scale(1);
  }
  100% {
    background: rgba(22, 107, 255, 0.01);
    transform: scale(2.5);
  }
}
@keyframes vdopulse {
  0% {
    background: rgba(22, 107, 255, 0.4);
    transform: scale(1);
  }
  100% {
    background: rgba(22, 107, 255, 0.01);
    transform: scale(2.5);
  }
}
@media (max-width: 575px) {
  #video-part .video .play-btn .video-play {
    width: 60px;
    height: 60px;
  }
  @-webkit-keyframes pulse {
    0% {
      box-shadow: 0 0 0 rgba(22, 107, 255, 0.3);
    }
    70% {
      box-shadow: 0 0 0 30px rgba(204, 169, 44, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 rgba(22, 107, 255, 0.3);
    }
    70% {
      box-shadow: 0 0 0 30px rgba(204, 169, 44, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
}

/* Schedule Post Part */
#schedule-post {
  padding-top: 110px;
  background: rgba(20, 106, 255, 0.05);
}
@media (max-width: 767px) {
  #schedule-post {
    padding-top: 60px;
  }
}
#schedule-post .post-slider {
  margin-top: 105px;
  position: relative;
  border-radius: 30px;
}
@media (max-width: 575px) {
  #schedule-post .post-slider {
    margin-top: 60px;
  }
}
#schedule-post .post-slider:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 30px;
  right: 30px;
  height: 50%;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  z-index: -1;
}
@media (max-width: 575px) {
  #schedule-post .post-slider:before {
    left: 15px;
    right: 15px;
    top: -15px;
  }
}
#schedule-post .post-slider:after {
  content: "";
  position: absolute;
  top: -60px;
  left: 60px;
  right: 60px;
  height: 50%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  z-index: -2;
}
@media (max-width: 575px) {
  #schedule-post .post-slider:after {
    left: 30px;
    right: 30px;
    top: -30px;
  }
}
#schedule-post .post-slider .slider-item {
  border-radius: 25px;
  overflow: hidden;
}
#schedule-post .social-media {
  margin-top: 110px;
}
@media (max-width: 767px) {
  #schedule-post .social-media {
    margin-top: 50px;
  }
}
#schedule-post .social-media h3 {
  font-size: 48px;
  line-height: 58px;
}
@media (max-width: 767px) {
  #schedule-post .social-media h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
#schedule-post .social-media .social-icon {
  padding-top: 47px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  #schedule-post .social-media .social-icon {
    padding-top: 22px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  #schedule-post .social-media .social-icon {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#schedule-post .social-media .social-icon .icon {
  margin-inline: -10px;
  filter: drop-shadow(0px 10px 20px rgba(22, 106, 255, 0.45));
  transition: 0.6s;
}
@media (max-width: 575px) {
  #schedule-post .social-media .social-icon .icon {
    margin-inline: 0px;
    max-width: 45px;
  }
}
#schedule-post .social-media .social-icon:hover .icon {
  margin-inline: 5px;
}
#schedule-post .social-media .social-icon:hover .icon:nth-child(odd) {
  -webkit-animation: rotateRight 1s;
          animation: rotateRight 1s;
}
@-webkit-keyframes rotateRight {
  0% {
    transform: rotate(0);
  }
  5% {
    filter: drop-shadow(0px 10px 20px rgba(22, 107, 255, 0));
  }
  95% {
    filter: drop-shadow(0px 10px 20px rgba(22, 107, 255, 0));
  }
  100% {
    transform: rotate(360deg);
    filter: drop-shadow(0px 10px 20px rgba(22, 106, 255, 0.45));
  }
}
@keyframes rotateRight {
  0% {
    transform: rotate(0);
  }
  5% {
    filter: drop-shadow(0px 10px 20px rgba(22, 107, 255, 0));
  }
  95% {
    filter: drop-shadow(0px 10px 20px rgba(22, 107, 255, 0));
  }
  100% {
    transform: rotate(360deg);
    filter: drop-shadow(0px 10px 20px rgba(22, 106, 255, 0.45));
  }
}
#schedule-post .social-media .social-icon:hover .icon:nth-child(even) {
  -webkit-animation: rotateleft 1s;
          animation: rotateleft 1s;
}
@-webkit-keyframes rotateleft {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotateleft {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@media (max-width: 575px) {
  #schedule-post .social-media .social-icon:hover .icon {
    margin-inline: 0;
    -webkit-animation: none;
            animation: none;
  }
}

@-webkit-keyframes bounce {
  20%, 53%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  20%, 53%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
          animation-name: flash;
}

@-webkit-keyframes pulse {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}

@keyframes pulse {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
}

@keyframes rubberBand {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
          animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

@-webkit-keyframes tada {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}

@keyframes tada {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
.tada {
  -webkit-animation-name: tada;
          animation-name: tada;
}

@-webkit-keyframes wobble {
  from, to {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
}

@keyframes wobble {
  from, to {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
}
.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1%, from, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  11.1%, from, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
          animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes bounceInDown {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes bounceInLeft {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  60%, 75%, 90%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.elementor-animation-grow {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-grow:active,
.elementor-animation-grow:focus,
.elementor-animation-grow:hover {
  transform: scale(1.1);
}

.elementor-animation-shrink {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-shrink:active,
.elementor-animation-shrink:focus,
.elementor-animation-shrink:hover {
  transform: scale(0.9);
}

@-webkit-keyframes elementor-animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}

@keyframes elementor-animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.elementor-animation-pulse:active,
.elementor-animation-pulse:focus,
.elementor-animation-pulse:hover {
  -webkit-animation-name: elementor-animation-pulse;
          animation-name: elementor-animation-pulse;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes elementor-animation-pulse-grow {
  to {
    transform: scale(1.1);
  }
}

@keyframes elementor-animation-pulse-grow {
  to {
    transform: scale(1.1);
  }
}
.elementor-animation-pulse-grow:active,
.elementor-animation-pulse-grow:focus,
.elementor-animation-pulse-grow:hover {
  -webkit-animation-name: elementor-animation-pulse-grow;
          animation-name: elementor-animation-pulse-grow;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes elementor-animation-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}

@keyframes elementor-animation-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
.elementor-animation-pulse-shrink:active,
.elementor-animation-pulse-shrink:focus,
.elementor-animation-pulse-shrink:hover {
  -webkit-animation-name: elementor-animation-pulse-shrink;
          animation-name: elementor-animation-pulse-shrink;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes elementor-animation-push {
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes elementor-animation-push {
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.elementor-animation-push:active,
.elementor-animation-push:focus,
.elementor-animation-push:hover {
  -webkit-animation-name: elementor-animation-push;
          animation-name: elementor-animation-push;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-pop {
  50% {
    transform: scale(1.2);
  }
}

@keyframes elementor-animation-pop {
  50% {
    transform: scale(1.2);
  }
}
.elementor-animation-pop:active,
.elementor-animation-pop:focus,
.elementor-animation-pop:hover {
  -webkit-animation-name: elementor-animation-pop;
          animation-name: elementor-animation-pop;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.elementor-animation-bounce-in {
  transition-duration: 0.5s;
}

.elementor-animation-bounce-in:active,
.elementor-animation-bounce-in:focus,
.elementor-animation-bounce-in:hover {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.elementor-animation-bounce-out {
  transition-duration: 0.5s;
}

.elementor-animation-bounce-out:active,
.elementor-animation-bounce-out:focus,
.elementor-animation-bounce-out:hover {
  transform: scale(0.8);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.elementor-animation-rotate {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-rotate:active,
.elementor-animation-rotate:focus,
.elementor-animation-rotate:hover {
  transform: rotate(4deg);
}

.elementor-animation-grow-rotate {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-grow-rotate:active,
.elementor-animation-grow-rotate:focus,
.elementor-animation-grow-rotate:hover {
  transform: scale(1.1) rotate(4deg);
}

.elementor-animation-float {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.elementor-animation-float:active,
.elementor-animation-float:focus,
.elementor-animation-float:hover {
  transform: translateY(-8px);
}

.elementor-animation-sink {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.elementor-animation-sink:active,
.elementor-animation-sink:focus,
.elementor-animation-sink:hover {
  transform: translateY(8px);
}

@-webkit-keyframes elementor-animation-bob {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes elementor-animation-bob {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-8px);
  }
}
@-webkit-keyframes elementor-animation-bob-float {
  100% {
    transform: translateY(-8px);
  }
}
@keyframes elementor-animation-bob-float {
  100% {
    transform: translateY(-8px);
  }
}
.elementor-animation-bob:active,
.elementor-animation-bob:focus,
.elementor-animation-bob:hover {
  -webkit-animation-name: elementor-animation-bob-float, elementor-animation-bob;
          animation-name: elementor-animation-bob-float, elementor-animation-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
          animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
          animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
          animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
          animation-direction: normal, alternate;
}

@-webkit-keyframes elementor-animation-hang {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(8px);
  }
}

@keyframes elementor-animation-hang {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(8px);
  }
}
@-webkit-keyframes elementor-animation-hang-sink {
  100% {
    transform: translateY(8px);
  }
}
@keyframes elementor-animation-hang-sink {
  100% {
    transform: translateY(8px);
  }
}
.elementor-animation-hang:active,
.elementor-animation-hang:focus,
.elementor-animation-hang:hover {
  -webkit-animation-name: elementor-animation-hang-sink, elementor-animation-hang;
          animation-name: elementor-animation-hang-sink, elementor-animation-hang;
  -webkit-animation-duration: 0.3s, 1.5s;
          animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
          animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
          animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
          animation-direction: normal, alternate;
}

.elementor-animation-skew {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-skew:active,
.elementor-animation-skew:focus,
.elementor-animation-skew:hover {
  transform: skew(-10deg);
}

.elementor-animation-skew-forward {
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.elementor-animation-skew-forward:active,
.elementor-animation-skew-forward:focus,
.elementor-animation-skew-forward:hover {
  transform: skew(-10deg);
}

.elementor-animation-skew-backward {
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.elementor-animation-skew-backward:active,
.elementor-animation-skew-backward:focus,
.elementor-animation-skew-backward:hover {
  transform: skew(10deg);
}

@-webkit-keyframes elementor-animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes elementor-animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.elementor-animation-wobble-vertical:active,
.elementor-animation-wobble-vertical:focus,
.elementor-animation-wobble-vertical:hover {
  -webkit-animation-name: elementor-animation-wobble-vertical;
          animation-name: elementor-animation-wobble-vertical;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes elementor-animation-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.elementor-animation-wobble-horizontal:active,
.elementor-animation-wobble-horizontal:focus,
.elementor-animation-wobble-horizontal:hover {
  -webkit-animation-name: elementor-animation-wobble-horizontal;
          animation-name: elementor-animation-wobble-horizontal;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }
  33.3% {
    transform: translate(-6px, -6px);
  }
  49.95% {
    transform: translate(4px, 4px);
  }
  66.6% {
    transform: translate(-2px, -2px);
  }
  83.25% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes elementor-animation-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }
  33.3% {
    transform: translate(-6px, -6px);
  }
  49.95% {
    transform: translate(4px, 4px);
  }
  66.6% {
    transform: translate(-2px, -2px);
  }
  83.25% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.elementor-animation-wobble-to-bottom-right:active,
.elementor-animation-wobble-to-bottom-right:focus,
.elementor-animation-wobble-to-bottom-right:hover {
  -webkit-animation-name: elementor-animation-wobble-to-bottom-right;
          animation-name: elementor-animation-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px);
  }
  33.3% {
    transform: translate(-6px, 6px);
  }
  49.95% {
    transform: translate(4px, -4px);
  }
  66.6% {
    transform: translate(-2px, 2px);
  }
  83.25% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes elementor-animation-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px);
  }
  33.3% {
    transform: translate(-6px, 6px);
  }
  49.95% {
    transform: translate(4px, -4px);
  }
  66.6% {
    transform: translate(-2px, 2px);
  }
  83.25% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.elementor-animation-wobble-to-top-right:active,
.elementor-animation-wobble-to-top-right:focus,
.elementor-animation-wobble-to-top-right:hover {
  -webkit-animation-name: elementor-animation-wobble-to-top-right;
          animation-name: elementor-animation-wobble-to-top-right;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-wobble-top {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}

@keyframes elementor-animation-wobble-top {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
.elementor-animation-wobble-top {
  transform-origin: 0 100%;
}

.elementor-animation-wobble-top:active,
.elementor-animation-wobble-top:focus,
.elementor-animation-wobble-top:hover {
  -webkit-animation-name: elementor-animation-wobble-top;
          animation-name: elementor-animation-wobble-top;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-wobble-bottom {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}

@keyframes elementor-animation-wobble-bottom {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
.elementor-animation-wobble-bottom {
  transform-origin: 100% 0;
}

.elementor-animation-wobble-bottom:active,
.elementor-animation-wobble-bottom:focus,
.elementor-animation-wobble-bottom:hover {
  -webkit-animation-name: elementor-animation-wobble-bottom;
          animation-name: elementor-animation-wobble-bottom;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-wobble-skew {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}

@keyframes elementor-animation-wobble-skew {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
.elementor-animation-wobble-skew:active,
.elementor-animation-wobble-skew:focus,
.elementor-animation-wobble-skew:hover {
  -webkit-animation-name: elementor-animation-wobble-skew;
          animation-name: elementor-animation-wobble-skew;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes elementor-animation-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes elementor-animation-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
.elementor-animation-buzz:active,
.elementor-animation-buzz:focus,
.elementor-animation-buzz:hover {
  -webkit-animation-name: elementor-animation-buzz;
          animation-name: elementor-animation-buzz;
  -webkit-animation-duration: 0.15s;
          animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes elementor-animation-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes elementor-animation-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}
.elementor-animation-buzz-out:active,
.elementor-animation-buzz-out:focus,
.elementor-animation-buzz-out:hover {
  -webkit-animation-name: elementor-animation-buzz-out;
          animation-name: elementor-animation-buzz-out;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

/* Work Process Part */
#work-process-part {
  padding-top: 110px;
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 767px) {
  #work-process-part {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#work-process-part::after {
  content: url(../img/work-process-bg.png);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#work-process-part .left-image img {
  filter: drop-shadow(0px 10px 60px rgba(0, 0, 0, 0.05));
}
#work-process-part .left-image .circle {
  top: 25px;
  left: -35px;
  z-index: -1;
}
@media (min-width: 991px) {
  #work-process-part .right-content {
    padding-left: 30px;
  }
}
#work-process-part .right-content .nav-tab-part {
  margin-top: 35px;
}
#work-process-part .right-content .nav-tab-part .nav {
  background: linear-gradient(90.01deg, #f3f8ff 0.01%, rgba(243, 248, 255, 0) 99.99%);
  border-radius: 22px;
}
@media (max-width: 575px) {
  #work-process-part .right-content .nav-tab-part .nav {
    padding: 0 5px;
  }
}
#work-process-part .right-content .nav-tab-part .nav .nav-link {
  padding: 0;
  margin: 0 -7px;
}
#work-process-part .right-content .nav-tab-part .nav .nav-link.active {
  background-color: transparent;
  margin-right: auto;
  position: relative;
  transition: 0.4s;
  filter: drop-shadow(0px 10px 10px rgba(22, 106, 255, 0.45));
}
#work-process-part .right-content .nav-tab-part .nav .nav-link.active::after {
  content: url(../img/icon/tab/arrow.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -900%;
  -webkit-animation: rightToLeft 2s infinite;
          animation: rightToLeft 2s infinite;
}
@-webkit-keyframes rightToLeft {
  0% {
    right: -900%;
  }
  50% {
    right: -870%;
  }
  100% {
    right: -900%;
  }
}
@keyframes rightToLeft {
  0% {
    right: -900%;
  }
  50% {
    right: -870%;
  }
  100% {
    right: -900%;
  }
}
@media (max-width: 1400px) {
  #work-process-part .right-content .nav-tab-part .nav .nav-link.active::after {
    right: -700%;
  }
  @-webkit-keyframes rightToLeft {
    0% {
      right: -700%;
    }
    50% {
      right: -670%;
    }
    100% {
      right: -700%;
    }
  }
  @keyframes rightToLeft {
    0% {
      right: -700%;
    }
    50% {
      right: -670%;
    }
    100% {
      right: -700%;
    }
  }
}
@media (max-width: 1200px) {
  #work-process-part .right-content .nav-tab-part .nav .nav-link.active::after {
    right: -500%;
  }
  @-webkit-keyframes rightToLeft {
    0% {
      right: -500%;
    }
    50% {
      right: -470%;
    }
    100% {
      right: -500%;
    }
  }
  @keyframes rightToLeft {
    0% {
      right: -500%;
    }
    50% {
      right: -470%;
    }
    100% {
      right: -500%;
    }
  }
}
@media (max-width: 991px) {
  #work-process-part .right-content .nav-tab-part .nav .nav-link.active::after {
    right: -1110%;
  }
  @-webkit-keyframes rightToLeft {
    0% {
      right: -1110%;
    }
    50% {
      right: -1080%;
    }
    100% {
      right: -1110%;
    }
  }
  @keyframes rightToLeft {
    0% {
      right: -1110%;
    }
    50% {
      right: -1080%;
    }
    100% {
      right: -1110%;
    }
  }
}
@media (max-width: 767px) {
  #work-process-part .right-content .nav-tab-part .nav .nav-link.active::after {
    right: -720%;
  }
  @-webkit-keyframes rightToLeft {
    0% {
      right: -720%;
    }
    50% {
      right: -690%;
    }
    100% {
      right: -720%;
    }
  }
  @keyframes rightToLeft {
    0% {
      right: -720%;
    }
    50% {
      right: -690%;
    }
    100% {
      right: -720%;
    }
  }
}
@media (max-width: 530px) {
  #work-process-part .right-content .nav-tab-part .nav .nav-link.active::after {
    display: none;
  }
}
#work-process-part .right-content .nav-tab-part .nav .nav-link:nth-child(1) {
  position: relative;
  z-index: 10;
}
#work-process-part .right-content .nav-tab-part .nav .nav-link:nth-child(2) {
  position: relative;
  z-index: 9;
}
#work-process-part .right-content .nav-tab-part .nav .nav-link:nth-child(3) {
  position: relative;
  z-index: 8;
}
#work-process-part .right-content .nav-tab-part .nav .nav-link:nth-child(4) {
  position: relative;
  z-index: 7;
}
#work-process-part .right-content .nav-tab-part .nav .nav-link:nth-child(5) {
  position: relative;
  z-index: 6;
}
#work-process-part .right-content .nav-tab-part .nav .nav-link:nth-child(6) {
  position: relative;
  z-index: 5;
}
#work-process-part .right-content .nav-tab-part .nav .nav-link:last-child.active:after {
  transform: translateY(-50%) rotate(180deg);
}
#work-process-part .right-content .nav-tab-part .tab-content {
  background: var(--white);
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 20px;
}
#work-process-part .right-content .nav-tab-part .tab-content .tab-pane {
  padding: 30px 30px 38px 30px;
}
@media (max-width: 390px) {
  #work-process-part .right-content .nav-tab-part .tab-content .tab-pane {
    padding: 15px;
  }
}
#work-process-part .right-content .nav-tab-part .tab-content .tab-pane h3 {
  font-size: 24px;
  line-height: 58px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 1200px) {
  #work-process-part .right-content .nav-tab-part .tab-content .tab-pane h3 {
    line-height: 34px;
    margin-bottom: 10px;
  }
}
#work-process-part .right-content .nav-tab-part .tab-content .tab-pane p {
  line-height: 28px;
}
#work-process-part .right-content .nav-tab-part .tab-content .tab-pane ul {
  padding-left: 25px;
  margin-top: 12px;
}
#work-process-part .right-content .nav-tab-part .tab-content .tab-pane ul li {
  position: relative;
}
#work-process-part .right-content .nav-tab-part .tab-content .tab-pane ul li:after {
  content: url(../img/icon/available.png);
  position: absolute;
  top: 2px;
  left: -25px;
  filter: drop-shadow(3px 3px 10px rgba(22, 106, 255, 0.45));
}
#work-process-part .right-content .nav-tab-part .tab-content .tab-pane a {
  color: var(--c1);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.03em;
  margin-top: 13px;
  display: inline-block;
}

/* Reply Automation Part */
#reply-automation-part {
  background: rgba(22, 107, 255, 0.05);
  padding-top: 110px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  #reply-automation-part {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
#reply-automation-part .reply-card-group {
  margin-top: 50px;
}
#reply-automation-part .reply-card-group .cc .card {
  border: none;
  padding: 45px 30px;
  border-radius: 20px;
  height: 100%;
}
#reply-automation-part .reply-card-group .cc .card .top {
  gap: 20px;
}
#reply-automation-part .reply-card-group .cc .card .top h3 {
  font-size: 21px;
  line-height: 34px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
#reply-automation-part .reply-card-group .cc:first-child .top img {
  filter: drop-shadow(0px 10px 20px rgba(91, 255, 69, 0.45));
}
#reply-automation-part .reply-card-group .cc:nth-child(2) .top img {
  filter: drop-shadow(0px 10px 20px rgba(255, 81, 81, 0.45));
}
#reply-automation-part .reply-card-group .cc:nth-child(3) .top img {
  filter: drop-shadow(0px 10px 20px rgba(255, 218, 50, 0.45));
}
#reply-automation-part .reply-card-group .cc:nth-child(4) .top img {
  filter: drop-shadow(0px 10px 20px rgba(215, 20, 0, 0.45));
}
#reply-automation-part .reply-card-group .cc:nth-child(5) .top img {
  filter: drop-shadow(0px 10px 20px rgba(23, 117, 255, 0.45));
}
#reply-automation-part .reply-card-group .cc:nth-child(6) .top img {
  filter: drop-shadow(0px 10px 20px rgba(255, 128, 51, 0.45));
}

/* Engagement Part */
#engagement-part {
  padding-bottom: 163px;
}
@media (max-width: 767px) {
  #engagement-part {
    padding-bottom: 143px;
  }
}
#engagement-part .items {
  background: url(../img/engagement-bg.png) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 215px;
  gap: 265px;
  margin-top: 60px;
}
@media (max-width: 1400px) {
  #engagement-part .items {
    gap: 211px;
  }
}
@media (max-width: 1200px) {
  #engagement-part .items {
    gap: 205px;
  }
}
@media (max-width: 991px) {
  #engagement-part .items {
    gap: 132px;
  }
}
@media (max-width: 767px) {
  #engagement-part .items {
    background: none;
    gap: unset;
    justify-content: space-between !important;
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  #engagement-part .items {
    flex-direction: column;
    gap: 30px;
  }
}
#engagement-part .items .item {
  margin-top: 41px;
  position: relative;
}
@media (max-width: 1400px) {
  #engagement-part .items .item {
    margin-top: 44px;
  }
}
@media (max-width: 1200px) {
  #engagement-part .items .item {
    margin-top: 66px;
  }
}
@media (max-width: 767px) {
  #engagement-part .items .item {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575px) {
  #engagement-part .items .item {
    flex-direction: row;
    gap: 20px;
  }
}
#engagement-part .items .item .icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--white);
  filter: drop-shadow(0px 10px 60px rgba(22, 106, 255, 0.2));
}
@media (max-width: 1200px) {
  #engagement-part .items .item .icon {
    width: 80px;
    height: 80px;
  }
  #engagement-part .items .item .icon img {
    max-width: 40px;
  }
}
#engagement-part .items .item h4 {
  font-size: 21px;
  letter-spacing: -0.01em;
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  #engagement-part .items .item h4 {
    position: unset;
    font-size: 18px;
    left: unset;
    transform: unset;
    width: unset !important;
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  #engagement-part .items .item h4 {
    margin-top: 0;
  }
}
#engagement-part .items .item:nth-child(1) h4 {
  bottom: -48px;
  width: 208px;
}
@media (max-width: 1200px) {
  #engagement-part .items .item:nth-child(1) h4 {
    bottom: -20px;
  }
}
@media (max-width: 991px) {
  #engagement-part .items .item:nth-child(1) h4 {
    bottom: 10px;
  }
}
#engagement-part .items .item:nth-child(2) h4 {
  top: -85px;
  width: 208px;
}
@media (max-width: 991px) {
  #engagement-part .items .item:nth-child(2) h4 {
    top: -55px;
  }
}
#engagement-part .items .item:nth-child(3) h4 {
  bottom: -48px;
  width: 208px;
}
@media (max-width: 1200px) {
  #engagement-part .items .item:nth-child(3) h4 {
    bottom: -20px;
  }
}
@media (max-width: 991px) {
  #engagement-part .items .item:nth-child(3) h4 {
    bottom: 10px;
  }
}

/* Email Marketing Part */
#email-marketing-part {
  background: rgba(22, 107, 255, 0.05);
  padding-top: 110px;
}
@media (max-width: 767px) {
  #email-marketing-part {
    padding-top: 60px;
  }
}
#email-marketing-part .marketing .card-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  #email-marketing-part .marketing .card-group {
    flex-direction: column;
  }
}
#email-marketing-part .marketing .card-group .card {
  text-align: center;
  border: none;
  background: transparent;
  padding: 70px 80px;
  position: relative;
}
@media (max-width: 1200px) {
  #email-marketing-part .marketing .card-group .card {
    padding: 30px;
  }
}
#email-marketing-part .marketing .card-group .card .img {
  min-height: 200px;
  display: flex;
  justify-content: center;
}
#email-marketing-part .marketing .card-group .card h5 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 991px) {
  #email-marketing-part .marketing .card-group .card h5 {
    font-size: 18px;
  }
}
#email-marketing-part .marketing .card-group .card:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 140px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #eaeaea 17.63%, #eaeaea 82.15%, rgba(217, 217, 217, 0) 100%);
}
@media (max-width: 767px) {
  #email-marketing-part .marketing .card-group .card:not(:last-child)::after {
    display: none;
  }
}
#email-marketing-part .email-broadcast {
  margin-top: 45px;
}
#email-marketing-part .email-broadcast .email-card-group {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media (max-width: 1400px) {
  #email-marketing-part .email-broadcast .email-card-group {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  #email-marketing-part .email-broadcast .email-card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  #email-marketing-part .email-broadcast .email-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  #email-marketing-part .email-broadcast .email-card-group {
    grid-template-columns: repeat(1, 1fr);
  }
}
#email-marketing-part .email-broadcast .email-card-group .card-item {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px;
  text-align: center;
  padding: 35px 25px;
}
#email-marketing-part .email-broadcast .email-card-group .card-item h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 28px;
  margin-top: 18px;
}
@media (max-width: 1200px) {
  #email-marketing-part .email-broadcast .email-card-group .card-item h4 {
    font-size: 18px;
  }
}
#email-marketing-part .email-integration {
  margin-top: 110px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  #email-marketing-part .email-integration {
    margin-top: 60px;
    padding-bottom: 120px;
  }
}
#email-marketing-part .email-integration .section-title {
  max-width: unset !important;
}
#email-marketing-part .email-integration .section-title p {
  max-width: 630px;
}
#email-marketing-part .email-integration .logo-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 0;
}
@media (max-width: 1400px) {
  #email-marketing-part .email-integration .logo-group {
    gap: 60px 30px;
  }
}
@media (max-width: 767px) {
  #email-marketing-part .email-integration .logo-group {
    gap: 30px;
  }
}
#email-marketing-part .email-integration .logo-group .img {
  flex: 0 0 calc(25% - 30px);
}
@media (max-width: 1200px) {
  #email-marketing-part .email-integration .logo-group .img {
    flex: unset;
  }
}
@media (max-width: 767px) {
  #email-marketing-part .email-integration .logo-group .img {
    width: calc(50% - 30px);
  }
}
#email-marketing-part .email-template {
  background: white;
  padding-bottom: 110px;
}
#email-marketing-part .email-template .card-group {
  gap: 150px;
}
@media (max-width: 767px) {
  #email-marketing-part .email-template .card-group {
    gap: 45px;
  }
}
@media (max-width: 767px) {
  #email-marketing-part .email-template .card-group .card-item {
    padding: 0 30px;
  }
}
#email-marketing-part .email-template .card-group .card-item p {
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-top: 38px;
}
@media (max-width: 1200px) {
  #email-marketing-part .email-template .card-group .card-item p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #email-marketing-part .email-template {
    padding-bottom: 60px;
  }
}

/* SMS Marketing Part */
#sms-marketing-part {
  background: #f3f8ff;
  padding-top: 110px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  #sms-marketing-part {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#sms-marketing-part .marketing-card-group {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
#sms-marketing-part .marketing-card-group .card-item {
  width: calc(33.33% - 30px);
  padding: 50px 60px;
  text-align: center;
  background: white;
  border-radius: 20px;
}
@media (max-width: 991px) {
  #sms-marketing-part .marketing-card-group .card-item {
    padding: 30px;
    width: calc(50% - 30px);
  }
}
@media (max-width: 991px) {
  #sms-marketing-part .marketing-card-group .card-item {
    padding: 30px;
    width: calc(100% - 30px);
  }
}
#sms-marketing-part .marketing-card-group .card-item p {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.01em;
  margin-top: 35px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  #sms-marketing-part .marketing-card-group .card-item p {
    font-size: 18px;
  }
}
#sms-marketing-part .sms-gategway {
  margin-top: 110px;
}
#sms-marketing-part .sms-gategway .logo-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#sms-marketing-part .sms-gategway .logo-group .logo {
  width: calc(25% - 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 45px;
  border-radius: 10px;
  background: var(--white);
}
@media (max-width: 767px) {
  #sms-marketing-part .sms-gategway .logo-group .logo {
    width: calc(50% - 10px);
    padding: 20px;
  }
}

/* Pricing Plan Part */
#pricing-plan-part {
  padding-top: 110px;
}
@media (max-width: 767px) {
  #pricing-plan-part {
    padding-top: 60px;
  }
}
#pricing-plan-part:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: rgba(22, 107, 255, 0.05);
  z-index: -1;
}
#pricing-plan-part .plan-main .nav {
  border: none;
  justify-content: center;
  margin-top: 30px;
}
#pricing-plan-part .plan-main .nav .btn-group {
  padding: 10px;
  background: var(--white);
  border-radius: 60px;
}
#pricing-plan-part .plan-main .nav .btn-group .nav-item .nav-link {
  border: none;
  padding: 8px 25px;
  border-radius: 30px;
  color: var(--c1);
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 360px) {
  #pricing-plan-part .plan-main .nav .btn-group .nav-item .nav-link {
    padding: 8px 18px;
  }
}
#pricing-plan-part .plan-main .nav .btn-group .nav-item .nav-link.active {
  background: linear-gradient(104.04deg, #166aff 0%, #2ed0fa 100%);
  color: var(--white);
}
#pricing-plan-part .plan-main .tab-content {
  margin-top: 60px;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: var(--white);
}
#pricing-plan-part .plan-main .tab-content .plan-details {
  padding-bottom: 50px;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top {
  padding: 60px 75px;
  position: relative;
}
@media (max-width: 991px) {
  #pricing-plan-part .plan-main .tab-content .plan-details .item .top {
    padding: 30px;
  }
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top h5 {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: var(--c2);
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top h3 {
  font-size: 56px;
  line-height: 56px;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--c1);
  margin-top: 8px;
}
@media (max-width: 767px) {
  #pricing-plan-part .plan-main .tab-content .plan-details .item .top h3 {
    font-size: 40px;
  }
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top p {
  line-height: 19px;
  margin-top: 13px;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top a {
  padding-inline: 25px;
  height: 42px;
  background: var(--title-color);
  border-radius: 30px;
  line-height: 42px;
  display: inline-block;
  color: var(--white);
  letter-spacing: -0.05em;
  font-size: 14px;
  margin-top: 30px;
  transition: 0.4s;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top a:hover {
  background: linear-gradient(148.23deg, #166aff 10.52%, #2ed0fa 89.38%);
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top a img {
  margin-right: 7px;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .top.br:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 200px;
  background: linear-gradient(rgba(233, 233, 233, 0) 0%, #e9e9e9 8.13%, #e9e9e9 91.87%, rgba(233, 233, 233, 0) 100%);
}
@media (max-width: 767px) {
  #pricing-plan-part .plan-main .tab-content .plan-details .item .top.br:after {
    display: none;
  }
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list {
  border-top: 1px solid #e9f1ff;
  padding: 45px;
  display: none;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block {
  margin-bottom: 38px;
  /* List Style */
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block h3 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style {
  margin-top: 15px;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style li {
  padding-left: 25px;
  line-height: 28px;
  font-family: var(--body-font);
  color: var(--text-color);
  padding-block: 13px;
  border-bottom: 1px solid #E9F1FF;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style li.available {
  position: relative;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style li.available::after {
  content: url(../img/icon/available.png);
  position: absolute;
  top: 14px;
  left: 0px;
  filter: drop-shadow(3px 3px 10px rgba(22, 106, 255, 0.45));
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style li.not-available {
  position: relative;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style li.not-available::after {
  content: url(../img/icon/not-available.png);
  position: absolute;
  top: 15px;
  left: 0px;
  filter: drop-shadow(0px 3px 10px rgba(255, 0, 0, 0.45));
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style li.lifetime {
  position: relative;
}
#pricing-plan-part .plan-main .tab-content .plan-details .item .plan-details-list .list-block .list-style li.lifetime::after {
  content: url(../img/icon/lifetime.png);
  position: absolute;
  top: 14px;
  left: 0px;
  filter: drop-shadow(0px 3px 10px rgba(46, 208, 250, 0.45));
}
#pricing-plan-part .plan-main .tab-content .plan-collaps-btn h2 {
  font-size: 21px;
  line-height: 32px;
  letter-spacing: -0.03em;
  color: var(--c1);
  cursor: pointer;
}
#pricing-plan-part .plan-main .tab-content .plan-collaps-btn h2.toggleOff {
  display: block;
}
#pricing-plan-part .plan-main .tab-content .plan-collaps-btn h2.toggleOn {
  display: none;
}

/* Testimonial Part */
#testimonial-part {
  padding: 120px 0;
}
@media (max-width: 767px) {
  #testimonial-part {
    padding-bottom: 60px;
  }
}
#testimonial-part .testi-slider {
  margin-top: 75px;
}
@media (max-width: 767px) {
  #testimonial-part .testi-slider {
    margin-top: 30px;
  }
}
#testimonial-part .testi-slider .slick-list {
  box-sizing: initial;
  padding: 30px 0px;
}
#testimonial-part .testi-slider .item {
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  padding: 65px 45px 35px 45px;
  margin: 15px;
  position: relative;
}
@media (max-width: 575px) {
  #testimonial-part .testi-slider .item {
    padding: 65px 20px 35px 20px;
  }
}
#testimonial-part .testi-slider .item:before {
  content: url(../img/icon/quote.svg);
  position: absolute;
  top: -25px;
  left: 45px;
}
#testimonial-part .testi-slider .item .rating {
  gap: 7px;
}
#testimonial-part .testi-slider .item .comment {
  font-family: var(--body-font);
  line-height: 28px;
  color: var(--text-color);
  margin-top: 19px;
}
#testimonial-part .testi-slider .item .user {
  margin-top: 20px;
  gap: 15px;
}
#testimonial-part .testi-slider .item .user .avatar img {
  width: 60px;
  border-radius: 50%;
}
#testimonial-part .testi-slider .item .user .info .name {
  font-size: 21px;
  line-height: 20px;
  letter-spacing: -0.03em;
  font-weight: 500;
}
#testimonial-part .testi-slider .item .user .info .company {
  line-height: 20px;
  font-family: var(--body-font);
  color: var(--text-color);
  margin-top: 7px;
}
#testimonial-part .testi-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
#testimonial-part .testi-slider .slick-dots li {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(12, 32, 65, 0.2);
}
#testimonial-part .testi-slider .slick-dots li button {
  display: none;
}
#testimonial-part .testi-slider .slick-dots li.slick-active {
  width: 20px;
  height: 20px;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #166aff, #2ed0fa) border-box;
  border: 1px solid transparent;
  position: relative;
}
#testimonial-part .testi-slider .slick-dots li.slick-active:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c2);
}

/* FAQ Part */
#faq-part {
  background: linear-gradient(180deg, #F3F8FF 0%, rgb(255, 255, 255) 100%);
  padding-block: 120px;
}
@media (max-width: 767px) {
  #faq-part {
    padding-block: 60px;
  }
}
#faq-part .accordion-main {
  margin-top: 50px;
}
#faq-part .accordion-main .accordion .accordion-item {
  border: 1px solid #f1f1f1;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
}
#faq-part .accordion-main .accordion .accordion-item:not(:last-child) {
  margin-bottom: 30px;
}
#faq-part .accordion-main .accordion .accordion-item h2 button {
  font-size: 21px;
  line-height: 28px;
  font-weight: 500;
  color: var(--title-color);
  padding: 16px 45px;
  border: none !important;
  background: none;
  box-shadow: none;
}
@media (max-width: 575px) {
  #faq-part .accordion-main .accordion .accordion-item h2 button {
    padding: 10px 30px;
    font-size: 18px;
  }
}
#faq-part .accordion-main .accordion .accordion-item h2 button:focus {
  box-shadow: none;
}
#faq-part .accordion-main .accordion .accordion-item h2 button::after {
  background-image: url(../img/icon/minus.svg);
  margin-top: -10px;
}
#faq-part .accordion-main .accordion .accordion-item h2 button.collapsed::after {
  background-image: url(../img/icon/plus.svg);
  margin-top: 0;
}
#faq-part .accordion-main .accordion .accordion-item .accordion-body {
  padding: 25px 45px;
  border-top: 1px solid #F1F1F1;
}
@media (max-width: 575px) {
  #faq-part .accordion-main .accordion .accordion-item .accordion-body {
    padding: 15px 30px;
  }
}
#faq-part .accordion-main .accordion .accordion-item .accordion-body p {
  line-height: 28px;
  font-family: var(--body-font);
  color: var(--text-color);
}
#faq-part .accordion-main .accordion .accordion-item .accordion-body p a {
  color: var(--c1);
}

.pricing-plan #pricing-plan-part {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .pricing-plan #pricing-plan-part {
    margin-bottom: 60px;
  }
}
.pricing-plan #pricing-plan-part:after {
  display: none;
}
.pricing-plan #pricing-plan-part .plan-main .btn-group {
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
}
.pricing-plan #pricing-plan-part .plan-main .plan-details-list {
  display: block !important;
}
.pricing-plan #pricing-plan-part .plan-main .plan-details {
  padding-bottom: 0;
}
#sell-online-part {
  padding-block: 120px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #sell-online-part {
    padding-block: 60px;
  }
}
#sell-online-part .sell-online .main {
  margin-top: 10px;
}
#sell-online-part .sell-online .main .left-info {
  padding-top: 40px;
  padding-left: 65px;
}
#sell-online-part .sell-online .main .left-info .item {
  position: relative;
}
#sell-online-part .sell-online .main .left-info .item:after {
  filter: drop-shadow(0px 10px 20px rgba(22, 106, 255, 0.45));
  position: absolute;
  top: 7px;
  left: -65px;
}
#sell-online-part .sell-online .main .left-info .item:not(:last-child) {
  margin-bottom: 27px;
}
#sell-online-part .sell-online .main .left-info .item h3 {
  font-size: 24px;
  line-height: 58px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
@media (max-width: 991px) {
  #sell-online-part .sell-online .main .left-info .item h3 {
    font-size: 20px;
  }
}
#sell-online-part .sell-online .main .left-info .item p {
  font-family: var(--body-font);
  line-height: 28px;
  color: var(--text-color);
}
#sell-online-part .sell-online .main .left-info .item:first-child::after {
  content: url(../img/icon/tab/11.svg);
}
#sell-online-part .sell-online .main .left-info .item:nth-child(2)::after {
  content: url(../img/icon/tab/12.svg);
}
#sell-online-part .sell-online .main .left-info .item:nth-child(3)::after {
  content: url(../img/icon/tab/15.svg);
}
@media (min-width: 991px) {
  #sell-online-part .sell-online .main .left-info .right-img img {
    max-width: inherit;
  }
}
@media (max-width: 767px) {
  #sell-online-part .sell-online .main .right-img {
    overflow: hidden;
  }
}
#sell-online-part .sell-online .main .right-img .product-img {
  left: 0px;
  top: 60px;
  animation: moving1 3s infinite reverse ease-in-out;
  z-index: 4;
}
#sell-online-part .sell-online .main .right-img .single-product-img {
  left: 100px;
  bottom: 0;
  animation: moving2 3s infinite reverse ease-in-out;
  z-index: 3;
}
#sell-online-part .sell-online .main .right-img .cart-img {
  top: -30px;
  left: 75%;
  transform: translateX(-75%);
  z-index: 2;
  animation: moving3 3s infinite reverse ease-in-out;
}
#sell-online-part .sell-online .main .right-img .chart-img {
  top: 30%;
  transform: translateY(-30%);
  right: -100px;
  z-index: 3;
  animation: moving4 4s infinite reverse ease-in-out;
}
@-webkit-keyframes moving1 {
  0% {
    transform: translateX(-100px);
  }
  50% {
    transform: translateX(-80px);
  }
  100% {
    transform: translateX(-100px);
  }
}
@keyframes moving1 {
  0% {
    transform: translateX(-100px);
  }
  50% {
    transform: translateX(-80px);
  }
  100% {
    transform: translateX(-100px);
  }
}
@-webkit-keyframes moving2 {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -20px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes moving2 {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -20px;
  }
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes moving3 {
  0% {
    top: -30px;
  }
  50% {
    top: -50px;
    left: 80%;
  }
  100% {
    top: -30px;
    left: 75%;
  }
}
@keyframes moving3 {
  0% {
    top: -30px;
  }
  50% {
    top: -50px;
    left: 80%;
  }
  100% {
    top: -30px;
    left: 75%;
  }
}
@-webkit-keyframes moving4 {
  0% {
    right: -100px;
  }
  50% {
    right: -120px;
  }
  100% {
    right: -100px;
  }
}
@keyframes moving4 {
  0% {
    right: -100px;
  }
  50% {
    right: -120px;
  }
  100% {
    right: -100px;
  }
}
#sell-online-part .e-commerce {
  margin-top: 120px;
}
@media (max-width: 767px) {
  #sell-online-part .e-commerce {
    margin-top: 60px;
  }
}
@media (max-width: 1400px) {
  #sell-online-part .e-commerce .section-title {
    text-align: center;
  }
  #sell-online-part .e-commerce .section-title h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
#sell-online-part .e-commerce .left-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  #sell-online-part .e-commerce .left-img {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  #sell-online-part .e-commerce .left-img {
    gap: 10px;
  }
}
#sell-online-part .e-commerce .left-img .screen {
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  width: 100%;
}
#sell-online-part .e-commerce .left-img .with-video {
  position: relative;
}
#sell-online-part .e-commerce .left-img .with-video .play-btn-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#sell-online-part .e-commerce .left-img .with-video .play-btn-2 .video-play-2 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--c1);
  -webkit-animation: pulse2 2s infinite;
          animation: pulse2 2s infinite;
  box-shadow: 0 0 0 rgba(22, 107, 255, 0.4);
}
@-webkit-keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 rgba(22, 107, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 50px rgba(204, 169, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 rgba(22, 107, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 50px rgba(204, 169, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@media (max-width: 575px) {
  #sell-online-part .e-commerce .left-img .with-video .play-btn-2 .video-play-2 {
    width: 60px;
    height: 60px;
  }
  @-webkit-keyframes pulse2 {
    0% {
      box-shadow: 0 0 0 rgba(22, 107, 255, 0.3);
    }
    70% {
      box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
  @keyframes pulse2 {
    0% {
      box-shadow: 0 0 0 rgba(22, 107, 255, 0.3);
    }
    70% {
      box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
}
#sell-online-part .e-commerce .right-info .feature-list {
  margin-top: 35px;
}
#sell-online-part .e-commerce .right-info .feature-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
}
@media (max-width: 575px) {
  #sell-online-part .e-commerce .right-info .feature-list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
#sell-online-part .e-commerce .right-info .feature-list ul li {
  line-height: 26px;
  letter-spacing: -0.02em;
  font-weight: 500;
  padding: 5px 0 5px 45px;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  position: relative;
  color: var(--title-color);
  font-family: var(--title-font);
  padding-block: 10px;
  padding-right: 10px;
}
#sell-online-part .e-commerce .right-info .feature-list ul li::before {
  content: url(../img/icon/available.png);
  position: absolute;
  top: 12.5px;
  left: 20px;
  filter: drop-shadow(3px 3px 10px rgba(22, 106, 255, 0.45));
}
#sell-online-part.google-my-buisness .e-commerce {
  margin-top: 0;
}
#sell-online-part.google-my-buisness .e-commerce .left-img {
  padding-right: 0;
  padding-left: 20px;
}
@media (max-width: 1200px) {
  #sell-online-part.google-my-buisness .e-commerce .left-img {
    padding-left: 0;
  }
}

.feature-page .header-main {
  /*background: linear-gradient(148.23deg, #166aff 10.52%, #2ed0fa 89.38%);*/
  /*box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*/
  top: 0;
  padding-block: 15px;
}
.feature-page #feature-list-part {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .feature-page #feature-list-part {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}
.feature-page #feature-list-part .items-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #f2f2f2;
}
@media (max-width: 1400px) {
  .feature-page #feature-list-part .items-grid {
    gap: 0;
  }
}
@media (max-width: 991px) {
  .feature-page #feature-list-part .items-grid {
    grid-template-columns: repeat(2, 1fr);
    background: #e9e9e9;
    gap: 1px;
  }
}
@media (max-width: 575px) {
  .feature-page #feature-list-part .items-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.feature-page #feature-list-part .items-grid .feature-item {
  text-align: center;
  cursor: pointer;
  position: relative;
  background: var(--white);
}
.feature-page #feature-list-part .items-grid .feature-item .inner {
  padding: 80px 35px;
  position: relative;
  z-index: 1;
  background: white;
  transition: 0.4s;
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  .feature-page #feature-list-part .items-grid .feature-item .inner {
    padding: 60px 10px;
  }
}
.feature-page #feature-list-part .items-grid .feature-item .inner .icon {
  position: relative;
  transition: 0.4s;
}
.feature-page #feature-list-part .items-grid .feature-item .inner .icon img {
  position: relative;
  z-index: 1;
}
.feature-page #feature-list-part .items-grid .feature-item .inner .icon:after {
  content: url(../img/icon/feature/feature-icon-border.svg);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: 0.4s;
}
.feature-page #feature-list-part .items-grid .feature-item .inner h3 {
  font-size: 21px;
  font-weight: 500;
  margin-top: 41px;
  line-height: 32px;
  letter-spacing: -0.01em;
  min-height: 64px;
}
.feature-page #feature-list-part .items-grid .feature-item:hover .inner {
  top: 20px;
  left: 20px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  z-index: 3;
}
@media (max-width: 575px) {
  .feature-page #feature-list-part .items-grid .feature-item:hover .inner {
    top: 10px;
    left: 10px;
    border-radius: 10px;
  }
}
.feature-page #feature-list-part .items-grid .feature-item:hover .inner .icon img {
  filter: brightness(0) invert(1);
}
.feature-page #feature-list-part .items-grid .feature-item:hover .inner .icon::after {
  content: url(../img/icon/feature/feature-icon-bg.svg);
  filter: drop-shadow(0px 10px 20px rgba(22, 106, 255, 0.45));
}
@media (min-width: 991px) and (max-width: 1400px) {
  .feature-page #feature-list-part .items-grid .feature-item:first-child:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(1deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 90%;
    height: 1px;
    z-index: 1;
  }
  .feature-page #feature-list-part .items-grid .feature-item:first-child:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(91deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 1px;
    height: 90%;
    z-index: 2;
  }
  .feature-page #feature-list-part .items-grid .feature-item:nth-child(2):after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 100%;
    height: 1px;
    z-index: 1;
  }
  .feature-page #feature-list-part .items-grid .feature-item:nth-child(2):before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(91deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 1px;
    height: 90%;
    z-index: 2;
  }
  .feature-page #feature-list-part .items-grid .feature-item:nth-child(3):after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 100%;
    height: 1px;
    z-index: 1;
  }
  .feature-page #feature-list-part .items-grid .feature-item:nth-child(3):before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(91deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 1px;
    height: 90%;
    z-index: 2;
  }
  .feature-page #feature-list-part .items-grid .feature-item:nth-child(4):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(-1deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 90%;
    height: 1px;
    z-index: 1;
  }
  .feature-page #feature-list-part .items-grid .feature-item:nth-child(5):before, .feature-page #feature-list-part .items-grid .feature-item:nth-child(6):before, .feature-page #feature-list-part .items-grid .feature-item:nth-child(7):before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(233, 233, 233, 0) 0%, #e9e9e9 100%);
    width: 1px;
    height: 90%;
    z-index: 2;
  }
}

#feature-details {
  padding-top: 60px;
}
@media (max-width: 767px) {
  #feature-details {
    padding-top: 60px;
  }
}
#feature-details .details-section {
  margin-top: 60px;
}
@media (max-width: 767px) {
  #feature-details .details-section {
    margin-top: 0;
  }
}
#feature-details .details-section h4 {
  font-size: 18px;
  line-height: 28px;
}
#feature-details .details-section ul li {
  color: var(--title-color);
  padding-block: 7px;
}
#feature-details .details-section ul li.available::after {
  top: 9px;
}
#feature-details .details-section .section-block:not(:first-child) {
  margin-top: 120px;
}
@media (max-width: 767px) {
  #feature-details .details-section .section-block:not(:first-child) {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  #feature-details .details-section .section-block:nth-child(even) .row {
    flex-direction: column-reverse;
  }
}
#feature-details .details-section .section-block:nth-child(even) .details-img {
  padding-right: 0;
  padding-left: 30px;
}
#feature-details .details-section .section-block:nth-child(even) .details-img .round {
  right: unset;
  left: 0;
}
#feature-details .details-section .bottom-text {
  margin-top: 15px;
  line-height: 26px;
}
#feature-details .para-text {
  line-height: 26px;
}

#main-details {
  padding-block: 60px;
}
#main-details .warning {
  background: #fa461c;
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
}
#main-details .warning h3 {
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
}
#main-details aside {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  background: #eee;
  padding: 20px;
  border-radius: 10px;
}
#main-details aside .side-bar-list li:not(:last-child) {
  margin-bottom: 15px;
}
#main-details aside .side-bar-list li.active a {
  color: var(--c1);
  text-decoration: underline;
}
#main-details aside .side-bar-list li a {
  font-size: 18px;
  font-weight: 500;
  display: block;
  color: var(--black);
  transition: 0.4s;
}
#main-details aside .side-bar-list li a:hover {
  text-decoration: underline;
  color: var(--c1);
}
#main-details .details-part .section-block:not(:last-child) {
  margin-bottom: 60px;
}
#main-details .details-part .section-block h4 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 20px;
  font-weight: 700;
}
#main-details .details-part .section-block p {
  line-height: 26px;
  text-transform: lowercase;
}
#main-details .details-part .section-block p::first-letter {
  text-transform: uppercase;
}
#main-details .details-part .section-block p:not(:last-child) {
  margin-bottom: 15px;
}
#main-details .details-part .section-block .list-style li {
  color: var(--title-color);
}

#payment-gategway {
  margin-bottom: 110px;
}
#payment-gategway .logo-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#payment-gategway .logo-group .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 25px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  #payment-gategway .logo-group .logo {
    width: calc(50% - 10px);
    padding: 20px;
  }
}

.affiliate #affiliate-main {
  background: #f5f5f5;
  padding: 120px 0;
}
@media(max-width: 767px){
    .affiliate #affiliate-main {
      padding: 60px 0;
    }
}
.affiliate #affiliate-main .steps .step {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.affiliate #affiliate-main .steps .step h4 {
  font-size: 24px;
  font-weight: 500;
}
.affiliate #affiliate-main .steps .step p {
  margin-top: 10px;
  line-height: 26px;
  color: var(--text-color);
  font-family: var(--body-font);
}
.affiliate #affiliate-main .steps .step .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #5bff45;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(91, 255, 69, 0.45);
}
.affiliate #affiliate-main .steps .step .step-count h3 {
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.05em;
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.209);
}
.affiliate #affiliate-main .step-item:nth-child(2) .step .icon {
  background: #ff5151;
  box-shadow: 0px 10px 20px rgba(255, 81, 81, 0.45);
}
.affiliate #affiliate-main .step-item:nth-child(3) .step .icon {
  background: #ffda32;
  box-shadow: 0px 10px 20px rgba(255, 218, 50, 0.45);
}
.affiliate #affiliate-main .step-item:nth-child(4) .step .icon {
  background: #1775ff;
  box-shadow: 0px 10px 20px rgba(23, 117, 255, 0.45);
}
.affiliate #affiliate-main .get-started-section {
  margin-top: 60px;
}
.affiliate #affiliate-main .get-started-section .inner {
  background: url(../img/inner-banner.png) no-repeat center/cover;
  padding-block: 60px;
}
.affiliate #affiliate-main .get-started-section h5 {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 30px;
  color: var(--white);
}
.affiliate #affiliate-main .get-started-section a {
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  background: var(--white);
}
.affiliate #faq-part {
  padding: 0;
  background: #f5f5f5 !important;
  padding-bottom: 60px;
}
/*.affiliate #faq-part .accordion-main {*/
/*  margin: 0;*/
/*}*/

.chatbot-page #banner-part {
  background: url(../img/feature-img/chatbot/banner-bg.png) no-repeat center/cover;
  padding-top: 170px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .chatbot-page #banner-part {
    padding-bottom: 60px;
    padding-top: 130px;
  }
}
.chatbot-page #banner-part .banner-main-content .banner-text h2 {
  font-size: 21px;
  font-weight: 500;
  background: rgba(46, 209, 250, 0.3);
  padding: 11px 30px;
  display: inline-block;
  color: var(--white);
  border-top-left-radius: 22.5px;
  border-bottom-right-radius: 22.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 575px) {
  .chatbot-page #banner-part .banner-main-content .banner-text h2 {
    font-size: 18px;
  }
}
.chatbot-page #banner-part .banner-main-content .banner-text h1 {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 70px;
  margin-top: 11px;
}
@media (max-width: 1200px) {
  .chatbot-page #banner-part .banner-main-content .banner-text h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
.chatbot-page #banner-part .banner-main-content .banner-text p {
  font-size: 21px;
  color: var(--white);
  line-height: 30px;
  margin-top: 25px;
  font-family: var(--body-font);
}
.chatbot-page #banner-part .banner-main-content .img .bot {
  position: relative;
  z-index: 1;
  max-width: inherit;
}
@media (max-width: 767px) {
  .chatbot-page #banner-part .banner-main-content .img .bot {
    max-width: 100%;
  }
}
.chatbot-page #banner-part .banner-main-content .img .mobile {
  position: absolute;
  top: 0;
  left: 20%;
}
@media (max-width: 767px) {
  .chatbot-page #banner-part .banner-main-content .img .mobile {
    max-width: 40%;
  }
}
.chatbot-page #video-part {
  margin-top: 0;
  background: transparent;
}
.chatbot-page #feature-part {
  padding-block: 120px;
  background: #f3f8ff;
}
@media (max-width: 767px) {
  .chatbot-page #feature-part {
    padding-block: 60px;
  }
}
.chatbot-page #feature-part .feature-navtab {
  margin-top: 42px;
}
.chatbot-page #reply-automation-part {
  padding-bottom: 128px;
}
@media (max-width: 767px) {
  .chatbot-page #reply-automation-part {
    padding-bottom: 68px;
  }
}
.chatbot-page #reply-automation-part .card h3 {
  margin-top: 26px;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.chatbot-page #reply-automation-part .card p {
  margin-top: 15px;
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 28px;
  margin-bottom: 10px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chatbot-page #reply-automation-part .card a {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.chatbot-page #reply-automation-part .card a .icon {
  margin-left: 7px;
  transition: 0.4s;
}
.chatbot-page #reply-automation-part .card a .icon svg path {
  transition: 0.4s;
}
.chatbot-page #reply-automation-part .card a:hover {
  color: var(--c1);
}
.chatbot-page #reply-automation-part .card a:hover .icon svg path {
  fill: var(--c1);
}
.chatbot-page #reply-automation-part .more-btn {
  margin-top: 52px;
}
.chatbot-page #reply-automation-part .more-btn a {
  font-size: 14px;
  padding: 11px 30px;
  border-radius: 30px;
  color: var(--white);
  background: var(--title-color);
  transition: 0.4s;
}
.chatbot-page #reply-automation-part .more-btn a:hover {
  background: var(--c1);
}
.chatbot-page #faq-part {
  background: transparent;
  padding-bottom: 280px;
}
@media (max-width: 767px) {
  .chatbot-page #faq-part {
    padding-bottom: 160px;
  }
}

.comment-reply-automation #banner-part {
  background: url(../img/feature-img/commetn-reply-automation/banner-bg.png) no-repeat center/cover;
  padding-top: 230px;
  padding-bottom: 72px;
}
@media (max-width: 991px) {
  .comment-reply-automation #banner-part {
    background: linear-gradient(360deg, #2ed0fa 0%, #166aff 100%);
  }
}
@media (max-width: 767px) {
  .comment-reply-automation #banner-part {
    padding-top: 140px;
    padding-bottom: 0;
  }
}
@media (max-width: 575px) {
  .comment-reply-automation #banner-part {
    padding-top: 100px;
  }
}
.comment-reply-automation #banner-part .banner-text h1 {
  font-size: 60px;
  line-height: 75px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: var(--white);
}
@media (max-width: 767px) {
  .comment-reply-automation #banner-part .banner-text h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
.comment-reply-automation #banner-part .banner-text p {
  margin-top: 18px;
  font-size: 21px;
  color: var(--white);
  font-family: var(--body-font);
  line-height: 36px;
}
.comment-reply-automation #banner-part .bottom-img {
  position: relative;
  left: -74px;
  top: -25px;
}
@media (max-width: 575px) {
  .comment-reply-automation #banner-part .bottom-img {
    position: static;
  }
}
.comment-reply-automation #feature-details-style .section-block .img {
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
.comment-reply-automation #feature-details-style .section-block .img .main-img {
  display: inline-block;
  position: relative;
}
.comment-reply-automation #feature-details-style .section-block .img .main-img:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: calc(100% - 60px);
  height: 60px;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  right: -30px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 3;
}
.comment-reply-automation #feature-details-style .section-block .img .main-img:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 60px;
  width: calc(100% - 120px);
  height: 120px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  right: -60px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 2;
}
.comment-reply-automation #feature-details-style .section-block .img .main-img .main {
  border-radius: 20px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 4;
}
.comment-reply-automation #feature-details-style .section-block .img .round {
  position: absolute;
  top: -45px;
  right: 0;
  z-index: 1;
}
.comment-reply-automation #feature-details-style .section-block:nth-child(odd) .img {
  position: relative;
  display: inline-block;
  padding-right: 0px;
  padding-left: 30px;
}
.comment-reply-automation #feature-details-style .section-block:nth-child(odd) .img .round {
  position: absolute;
  top: -45px;
  right: unset;
  left: 0;
  z-index: 1;
}
.comment-reply-automation #feature-details-style .no-bg {
  background: transparent !important;
  position: relative;
}
@media (max-width: 767px) {
  .comment-reply-automation #feature-details-style .no-bg {
    padding-top: 110px;
  }
}
.comment-reply-automation #feature-details-style .no-bg::after {
  content: "";
  background: url(../img/feature-img/commetn-reply-automation/section-bliock-devider.png) no-repeat center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 3px;
}
.comment-reply-automation #engagement-part {
  padding-bottom: 0;
}
.comment-reply-automation #faq-part {
  background: transparent;
}

.ecommerce #banner-part {
  padding-top: 175px;
  background: url(../img/feature-img/ecommerce/banner-bg.png) no-repeat center/cover;
  margin-bottom: 95px;
}
@media (max-width: 575px) {
  .ecommerce #banner-part {
    padding-top: 120px;
  }
}
.ecommerce #banner-part .banner-text h1 {
  font-size: 60px;
  line-height: 75px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.05em;
  color: var(--white);
}
@media (max-width: 767px) {
  .ecommerce #banner-part .banner-text h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (max-width: 575px) {
  .ecommerce #banner-part .banner-text h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
.ecommerce #banner-part .banner-text p {
  font-size: 21px;
  line-height: 30px;
  color: var(--white);
  font-family: var(--body-font);
  text-align: center;
  margin-top: 22px;
  margin-bottom: -40px;
}
.ecommerce #banner-part .img img {
  position: relative;
  bottom: -100px;
}
.ecommerce #reply-automation-part {
  padding-bottom: 120px;
}
.ecommerce #payment-gategway {
  padding-top: 110px;
  margin-bottom: 0;
}
.ecommerce #payment-gategway .call-to-action-top {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .ecommerce #payment-gategway .call-to-action-top {
    margin-top: 60px;
  }
  .ecommerce #reply-automation-part {
  padding-bottom: 60px;
}
.ecommerce #payment-gategway {
  padding-top: 50px;
  
}
}
.ecommerce #faq-part {
  background: transparent;
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .ecommerce #faq-part {
    margin-bottom: 100px;
  }
}
.ecommerce footer h2 {
  max-width: 500px;
}

.posting #banner-part {
  background: url(../img/feature-img/posting/banner-bg.png) no-repeat center/cover;
  padding-top: 150px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .posting #banner-part {
    padding-top: 130px;
  }
}
.posting #banner-part .banner-text h2 {
  font-size: 21px;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(46, 209, 250, 0.3);
  color: var(--white);
  font-weight: 500;
  display: inline-block;
  padding: 7px 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.posting #banner-part h1 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 13px;
}
@media (max-width: 767px) {
  .posting #banner-part h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
.posting #banner-part p {
  font-size: 21px;
  line-height: 30px;
  font-family: var(--body-font);
  color: var(--white);
  margin-top: 23px;
}
.posting #banner-part .bottom-img {
  margin-top: 31px;
}
.posting #banner-part .img img {
  max-width: inherit;
}
@media (max-width: 991px) {
  .posting #banner-part .img img {
    max-width: 100%;
  }
}
.posting #feature-part {
  padding-block: 120px;
}
@media (max-width: 767px) {
    .posting #feature-part {
      padding-top: 60px;
      padding-bottom: 0px;
    }
}
.posting #feature-part .feature-navtab {
  margin-top: 50px;
  box-shadow: none;
}
.posting #feature-details-style .section-block .img {
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
.posting #feature-details-style .section-block .img .main-img {
  display: inline-block;
  position: relative;
}
.posting #feature-details-style .section-block .img .main-img:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: calc(100% - 60px);
  height: 60px;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  right: -30px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 3;
}
.posting #feature-details-style .section-block .img .main-img:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 60px;
  width: calc(100% - 120px);
  height: 120px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  right: -60px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 2;
}
.posting #feature-details-style .section-block .img .main-img .main {
  border-radius: 20px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 4;
}
.posting #feature-details-style .section-block .img .round {
  position: absolute;
  top: -45px;
  right: 0;
  z-index: 1;
}
.posting #feature-details-style .section-block:nth-child(odd) .img {
  position: relative;
  display: inline-block;
  padding-right: 0px;
  padding-left: 30px;
}
.posting #feature-details-style .section-block:nth-child(odd) .img .round {
  position: absolute;
  top: -45px;
  right: unset;
  left: 0;
  z-index: 1;
}
.posting #feature-details-style .section-block .list-style {
  grid-template-columns: repeat(1, 1fr) !important;
}
.posting #feature-details-style .section-block .list-style li {
  color: var(--text-color);
  font-weight: 400;
}
.posting #feature-details-style .no-bg {
  background: transparent !important;
  position: relative;
}
@media (max-width: 767px) {
  .posting #feature-details-style .no-bg {
    padding-top: 110px;
  }
}
.posting #feature-details-style .no-bg::after {
  content: "";
  background: url(../img/feature-img/commetn-reply-automation/section-bliock-devider.png) no-repeat center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 3px;
}
.posting #feature-details-style .call-to-action-top {
  margin-top: 60px;
}
@media (max-width: 575px) {
  .posting #feature-details-style .call-to-action-top {
    margin-top: 0;
  }
}
.posting #faq-part {
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .posting #faq-part {
    margin-bottom: 100px;
  }
}

.email #banner-part {
  background: url(../img/feature-img/email/banner-bg.png) no-repeat center/cover;
  padding-bottom: 45px;
}
@media (max-width: 575px) {
  .email #banner-part {
    padding-top: 120px;
  }
}
.email #banner-part .banner-text {
  margin-top: -60px;
}
@media (max-width: 991px) {
  .email #banner-part .banner-text {
    margin-top: 0;
  }
}
.email #banner-part .banner-text h2 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.email #banner-part .banner-text h1 {
  font-size: 60px;
  color: var(--white);
  line-height: 70px;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .email #banner-part .banner-text h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
.email #banner-part .banner-text p {
  font-size: 21px;
  line-height: 30px;
  color: var(--white);
  font-family: var(--body-font);
  margin-top: 24px;
}
.email #banner-part .banner-text a {
  letter-spacing: -0.05em;
  font-weight: 500;
  color: var(--c1);
  background: var(--white);
  padding: 16px 35px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 35px;
}
.email #banner-part .banner-text a img {
  margin-right: 7px;
}
.email #banner-part .img img {
  max-width: inherit;
}
@media (max-width: 991px) {
  .email #banner-part .img img {
    max-width: 100%;
  }
}
.email #feature-details-style .section-block .img {
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
.email #feature-details-style .section-block .img .main-img {
  display: inline-block;
  position: relative;
}
.email #feature-details-style .section-block .img .main-img:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: calc(100% - 60px);
  height: 60px;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  right: -30px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 3;
}
.email #feature-details-style .section-block .img .main-img:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 60px;
  width: calc(100% - 120px);
  height: 120px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  right: -60px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  z-index: 2;
}
.email #feature-details-style .section-block .img .main-img .main {
  border-radius: 20px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 4;
}
.email #feature-details-style .section-block .img .round {
  position: absolute;
  top: -45px;
  right: 0;
  z-index: 1;
}
.email #feature-details-style .section-block:nth-child(odd) .img {
  position: relative;
  display: inline-block;
  padding-right: 0px;
  padding-left: 30px;
}
.email #feature-details-style .section-block:nth-child(odd) .img .round {
  position: absolute;
  top: -45px;
  right: unset;
  left: 0;
  z-index: 1;
}
.email #feature-details-style .section-block .list-style {
  grid-template-columns: repeat(1, 1fr) !important;
}
.email #feature-details-style .section-block .list-style li {
  color: var(--text-color);
  font-weight: 400;
}
.email #feature-details-style .no-bg {
  background: transparent !important;
  position: relative;
}
@media (max-width: 767px) {
  .email #feature-details-style .no-bg {
    padding-top: 110px;
  }
}
.email #feature-details-style .no-bg::after {
  content: "";
  background: url(../img/feature-img/commetn-reply-automation/section-bliock-devider.png) no-repeat center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 3px;
}
.email #feature-details-style .call-to-action-top {
  margin-top: 60px;
}
@media (max-width: 575px) {
  .email #feature-details-style .call-to-action-top {
    margin-top: 0;
  }
}
.email #email-marketing-part .call-to-action-top {
  margin-top: 0;
}
.email #faq-part {
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .email #faq-part {
    margin-bottom: 100px;
  }
}
.email #sms-marketing-part {
  padding-bottom: 0;
}
.email #sms-marketing-part .call-to-action-top {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .email #sms-marketing-part .call-to-action-top {
    margin-top: 60px;
  }
}

.integration #payment-gategway {
  padding-block: 110px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .integration #payment-gategway {
    padding-block: 60px;
  }
}
.integration #social-part {
  background: #f4f9ff;
  padding-block: 110px;
}
@media (max-width: 767px) {
  .integration #social-part {
    padding-block: 60px;
  }
}
.integration #social-part .logo-group {
  margin-top: 50px;
  gap: 10px;
}
.integration #social-part .logo-group .logo {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .integration #social-part .logo-group .logo {
    width: calc(50% - 10px);
  }
}
.integration #social-part .logo-group .logo .logo-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 27px 65px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
  height: 100%;
}
@media (max-width: 460px) {
  .integration #social-part .logo-group .logo .logo-main {
    padding: 27px 49px;
  }
}
.integration #social-part .logo-group .logo .hover-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 6px;
  opacity: 0;
  transition: 0.4s;
}
.integration #social-part .logo-group .logo:hover .hover-link {
  opacity: 1;
  top: 0;
}
.integration #email {
  padding-block: 110px;
}
@media (max-width: 767px) {
  .integration #email {
    padding-block: 60px;
  }
}
.integration #email .section-title p {
  max-width: 1060px !important;
}
.integration #email .logo-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.integration #email .logo-group .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 25px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .integration #email .logo-group .logo {
    width: calc(50% - 10px);
    padding: 20px;
  }
}
.integration .email2 {
  background: #f4f9ff;
}
.integration #sms {
  padding-block: 110px;
}
@media (max-width: 767px) {
  .integration #sms {
    padding-block: 60px;
  }
}
.integration #sms .sms-gategway .logo-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.integration #sms .sms-gategway .logo-group .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--white);
  height: 100px;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .integration #sms .sms-gategway .logo-group .logo {
    width: calc(50% - 10px);
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .integration #sms .sms-gategway .logo-group .logo {
    padding: 20px 5px;
  }
  .integration #sms .sms-gategway .logo-group .logo img {
    transform: scale(0.7);
  }
}
.integration #other-integration {
  padding-block: 110px;
}
@media (max-width: 767px) {
  .integration #other-integration {
    padding-block: 60px;
  }
}
.integration #other-integration .sms-gategway .logo-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.integration #other-integration .sms-gategway .logo-group .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--white);
  height: 100px;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .integration #other-integration .sms-gategway .logo-group .logo {
    width: calc(50% - 10px);
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .integration #other-integration .sms-gategway .logo-group .logo {
    padding: 20px 5px;
  }
  .integration #other-integration .sms-gategway .logo-group .logo img {
    transform: scale(0.7);
  }
}
.integration .other-integration {
  background: #f4f9ff;
}

#comparison-details {
  padding-top: 110px;
}
@media (max-width: 767px) {
  #comparison-details {
    padding-top: 60px;
  }
}
#comparison-details .comparison-chart {
  margin-top: 48px;
}
@media (max-width: 991px) {
  #comparison-details .comparison-chart {
    overflow-x: auto;
  }
}
#comparison-details .comparison-chart .main .item {
  padding: 45px 0 25px 45px;
  width: 33.333%;
}
@media (max-width: 991px) {
  #comparison-details .comparison-chart .main .item {
    padding: 45px 0 25px 20px;
  }
}
#comparison-details .comparison-chart .main .item:first-child {
  padding-left: 0;
}
#comparison-details .comparison-chart .main .item.compare {
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.05);
  background: var(--white);
}
@media (max-width: 991px) {
  #comparison-details .comparison-chart .main .item.compare {
    min-width: 150px;
  }
}
#comparison-details .comparison-chart .main .item.compare ul li {
  padding-left: 25px;
}
#comparison-details .comparison-chart .main .item.c1 {
  border-radius: 30px 0px 0px 30px;
}
#comparison-details .comparison-chart .main .item.c2 {
  border-radius: 0px 30px 30px 0px;
}
#comparison-details .comparison-chart .main .item.fn {
  min-width: 400px;
}
@media (max-width: 991px) {
  #comparison-details .comparison-chart .main .item.fn {
    min-width: 315px;
    padding-left: 0;
  }
}
#comparison-details .comparison-chart .main .item h2 {
  font-size: 30px;
  letter-spacing: -0.03em;
  font-weight: 500;
}
@media (max-width: 1400px) {
  #comparison-details .comparison-chart .main .item h2 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  #comparison-details .comparison-chart .main .item h2 {
    font-size: 16px;
    min-height: 36.43px;
  }
}
#comparison-details .comparison-chart .main .item .inner .logo {
  margin-bottom: 35px;
}
#comparison-details .comparison-chart .main .item .inner .logo img {
  max-width: 100px;
  max-height: 24.416px;
}
#comparison-details .comparison-chart .main .item .inner .logo p {
  margin-top: 15px;
  color: var(--title-color);
}
#comparison-details .comparison-chart .main .item .inner ul li:not(:last-child) {
  border-bottom: 1px solid #e9f1ff;
}
#comparison-details .comparison-chart .main .item .feature-name {
  padding-top: 81.216px;
}
#comparison-details .comparison-chart .main .item .feature-name li {
  padding-left: 20px;
  position: relative;
  z-index: 6;
}
#comparison-details .comparison-chart .main .item .feature-name li.fin:after {
  content: url(../img/icon/comparison-arrow.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
#comparison-details .comparison-chart .main .item .feature-name li.feature-category-title {
  font-weight: 700;
  color: var(--black);
  font-size: 18px;
  padding-left: 0px;
  border-bottom: none;
}
#comparison-details .comparison-chart .main .item .feature-name li.feature-category-title::after {
  display: none;
}
#comparison-details .comparison-chart .main .item .feature-name li.feature-sub-category-title {
  font-weight: 700;
}
#comparison-details .comparison-chart .main .item .feature-name li.feature-sub-category-title::after {
  display: none;
}
#comparison-details .comparison-chart .main .item .feature-block:not(:first-child) {
  margin-top: 15px;
}
#comparison-details .comparison-chart .main .item .feature-block .section-title {
  min-height: 52px;
}
#comparison-details .comparison-chart .main .item .feature-block .section-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--c1);
  display: flex;
  align-items: center;
  gap: 7px;
}
#comparison-details .comparison-chart .main .item .feature-block .section-sub-title {
  margin-top: 15px;
  margin-bottom: 5px;
  min-height: 19px;
}
#comparison-details .comparison-chart .main .item .feature-block .section-sub-title h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
#comparison-details .comparison-chart .main .item .feature-block ul li {
  height: 55px;
}
@media (max-width: 991px) {
  #comparison-details .comparison-chart .main .item .feature-block ul li {
    font-size: 14px;
  }
}
#comparison-details .comparison-chart .main .item .feature-block .section-title {
  height: 52px;
}

.all-comparison #comparison-details .comparison-chart .main .item {
  padding: 45px 0 25px 25px;
}

.about-page #history-part {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-page #history-part {
    padding: 60px 0;
  }
}
.about-page #history-part p {
  line-height: 28px;
  text-align: justify;
}
.about-page #history-part p:not(:last-child) {
  margin-bottom: 13px;
}
@media (min-width: 992px) {
  .about-page #history-part p {
    padding-right: 32px;
  }
}
.about-page #history-part h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .about-page #history-part h3 {
    font-size: 26px;
  }
}
.about-page #history-part h5 {
  font-weight: 500;
  font-size: 14px;
  padding: 6px 15px;
  background: rgba(22, 107, 255, 0.1);
  border-radius: 3px;
  display: inline-block;
  color: var(--c1);
  margin-bottom: 10px;
}
.about-page #history-part .img {
  position: relative;
}
.about-page #history-part .img:after {
  content: url(../img/circle.svg);
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: -1;
  -webkit-animation: anim1 2s linear infinite;
          animation: anim1 2s linear infinite;
  transform: scale(1);
}
@-webkit-keyframes anim1 {
  50% {
    transform: translate(5%, 5%) scale(1.1);
  }
}
@keyframes anim1 {
  50% {
    transform: translate(5%, 5%) scale(1.1);
  }
}
.about-page #history-part .img:before {
  content: url(../img/dot-shape.svg);
  position: absolute;
  bottom: 8%;
  left: 15%;
  z-index: 1;
  -webkit-animation: anim2 4s linear infinite;
          animation: anim2 4s linear infinite;
}
@-webkit-keyframes anim2 {
  50% {
    transform: translate(-10%, -5%);
  }
}
@keyframes anim2 {
  50% {
    transform: translate(-10%, -5%);
  }
}
.about-page #counter-part {
  padding: 90px 0;
  margin-bottom: 120px;
  background: linear-gradient(96.44deg, #166aff 0%, #2ed0fa 100%);
  background-size: cover;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .about-page #counter-part {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .about-page #counter-part {
    padding: 60px 0;
  }
}
.about-page #counter-part .counter-item-group {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 575px) {
  .about-page #counter-part .counter-item-group .counter-item img {
    width: 40px;
    margin-bottom: 15px;
  }
}
.about-page #counter-part .counter-item-group .counter-item h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  margin: 30px 0;
  color: var(--white);
}
@media (max-width: 767px) {
  .about-page #counter-part .counter-item-group .counter-item h3 {
    font-size: 30px;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .about-page #counter-part .counter-item-group .counter-item h3 {
    font-size: 20px;
    line-height: 20px;
  }
}
.about-page #counter-part .counter-item-group .counter-item h3 span {
  color: var(--white);
}
.about-page #counter-part .counter-item-group .counter-item p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
@media (max-width: 575px) {
  .about-page #counter-part .counter-item-group .counter-item p {
    font-size: 12px;
  }
}
.about-page #more-feature {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .about-page #more-feature {
    margin-bottom: 60px;
  }
}
.about-page #more-feature .feature-items-group {
  margin-top: 60px;
}
.about-page #more-feature .feature-items-group .item-card {
  border-radius: 10px;
  padding: 45px 30px;
  box-shadow: 0px 5px 60px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.about-page #more-feature .feature-items-group .item-card h3 {
  margin-top: 25px;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}
.about-page #more-feature .feature-items-group .item-card p {
  margin-top: 21px;
  color: var(--text-color);
  line-height: 26px;
}
#contact-part {
  padding: 120px 0;
}
@media (max-width: 767px) {
  #contact-part {
    padding: 60px 0;
  }
}
#contact-part .contact-info {
  padding: 40px 30px 40px 30px;
  border-radius: 20px;
  background: url(../img/contact-left.png) no-repeat center/cover;
  margin-right: 30px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
}
@media (max-width: 991px) {
  #contact-part .contact-info {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  #contact-part .contact-info {
    padding: 30px 15px;
    margin-right: 0;
  }
}
#contact-part .contact-info h3 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
#contact-part .contact-info p {
  line-height: 28px;
  margin-top: 12px;
  color: var(--text-color);
}
#contact-part .contact-info a {
  line-height: 19px;
  margin-top: 34px;
  margin-top: 35px;
  display: inline-block;
}
#contact-part .contact-info a img {
  margin-right: 11px;
}
#contact-part .contact-info .social-icon {
  margin-top: 120px;
  display: flex;
  gap: 12px;
}
#contact-part .contact-info .social-icon a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--c1);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-top: 0;
  transition: 0.3s;
}
#contact-part .contact-info .social-icon a svg path {
  transition: 0.3s;
}
#contact-part .contact-info .social-icon a:hover {
  background: var(--c1);
}
#contact-part .contact-info .social-icon a:hover .icon svg path {
  fill: var(--white);
}
#contact-part .contact-form {
  padding: 42px 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
}
#contact-part .contact-form label {
  display: block;
  color: var(--title-color);
  font-family: "Poppins", sans-serif;
}
#contact-part .contact-form input,
#contact-part .contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #24A5FC;
  border-radius: 10px;
  padding: 11px 20px;
  color: var(--title-color);
}
#contact-part .contact-form input::-moz-placeholder, #contact-part .contact-form textarea::-moz-placeholder {
  color: var(--text-color) !important;
}
#contact-part .contact-form input:-ms-input-placeholder, #contact-part .contact-form textarea:-ms-input-placeholder {
  color: var(--text-color) !important;
}
#contact-part .contact-form input::placeholder,
#contact-part .contact-form textarea::placeholder {
  color: var(--text-color) !important;
}
#contact-part .contact-form .submit-btn {
  margin-top: 25px;
  padding: 10px 25px;
  border-radius: 30px;
  background: var(--c1);
  color: var(--white);
  display: inline-block;
  transition: 0.3s ease;
}
#contact-part .contact-form .submit-btn:hover {
  background: var(--title-color);
}/*# sourceMappingURL=style.css.map */