/*
=====================
############################
CSS Table Of Content
############################

1. Normalize
2. 


=====================
*/

/*
=====================
CSS Template Color 
=====================
*/
:root {
  --pramary-color: #6f49fe;
  --secondary-color: #212121;
  --info-color: #bbfc4a30;
  --success-color: #bbfc4a;
  --black-color: #181818;
  --gray-color: #666666;
  --light-color: #cfcfcf;
  --white-color: #ffffff;
}

/*
  =====================
  CSS Normalize 
  =====================
  */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue";
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--gray-color);
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 1rem;
}

input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--gray-color);
  font-size: 1rem;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--gray-color);
  font-size: 1rem;
}

input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--gray-color);
  font-size: 1rem;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--gray-color);
  font-size: 1rem;
}

input:focus {
  outline: 0;
}

button {
  background-color: transparent;
  border: 0;
  outline: 0;
}

ul,
ol {
  padding-left: 22px;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: #666666;
  transition: 300ms ease;
}
.hr {
  border-bottom: 1px solid #f0eded;
}

img {
  max-width: 100%;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.list-inline li {
  display: inline-block;
}

/*
  =====================
  CSS Font
  =====================
  */

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Light.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Roman.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Domaine Disp Nar";
  src: url("../fonts/DomaineDispNar-Bold.woff2") format("woff2"),
    url("../fonts/DomaineDispNar-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Domaine Disp Nar";
  src: url("../fonts/DomaineDispNarMedium.woff2") format("woff2"),
    url("../fonts/DomaineDispNarMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Domaine Disp Nar";
  src: url("../fonts/DomaineDispNar-Regular.woff2") format("woff2"),
    url("../fonts/DomaineDispNar-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Domaine Disp Nar";
  src: url("../fonts/DomaineDispNarSemibold.woff2") format("woff2"),
    url("../fonts/DomaineDispNarSemibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.font-domaine {
  font-family: "Domaine Disp Nar";
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-italic {
  font-style: italic;
}

.font-1 {
  font-size: calc(1.525rem + 3.3vw);
}

.font-2 {
  font-size: calc(1.425rem + 2.1vw);
}

.font-3 {
  font-size: calc(1.375rem + 1.5vw);
}

.font-4 {
  font-size: 2rem;
}

.font-5 {
  font-size: 1.5rem;
}

.font-6 {
  font-size: 1.125rem;
}

@media only screen and (min-width: 992px) {
  .font-1 {
    font-size: 4rem;
  }

  .font-2 {
    font-size: 3rem;
  }

  .font-3 {
    font-size: 2.5rem;
  }
}
.text-center{
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .font-4 {
    font-size: 1.25rem;
  } 
}
/*
  =====================
  CSS Grid Flex
  =====================
  */
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.order-1 {
  order: 1;
}

.order-1 {
  order: 2;
}

.col-2 {
  grid-column: span 2 / span 2;
}

.col-3 {
  grid-column: span 3 / span 3;
}

.col-4 {
  grid-column: span 4 / span 4;
}

.col-5 {
  grid-column: span 5 / span 5;
}

.col-6 {
  grid-column: span 6 / span 6;
}

.col-7 {
  grid-column: span 7 / span 7;
}

.col-8 {
  grid-column: span 8 / span 8;
}

@media only screen and (max-width: 992px) {

  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-column: span 6 / span 6;
  }
}

@media only screen and (max-width: 768px) {

  .order-1,
  .order-1 {
    order: 0;
  }

  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-column: span 12 / span 12;
  }
  .mobile-spacial-col{
    grid-column: span 6 / span 6;
  }
}

.flex {
  display: flex;
  gap: 1.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

/*
  =====================
  CSS Color Background
  =====================
  */
.bg-gradient {
  background: linear-gradient(162.21deg, #212121 4.83%, #2d2d2d 103.44%);
}

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

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

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

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

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

.font-primary {
  color: var(--pramary-color);
}

.font-secondary {
  color: var(--secondary-color);
}

.font-success {
  color: var(--success-color);
}

.font-gray {
  color: var(--gray-color);
}

.font-light {
  color: var(--light-color);
}

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

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

/*
  =====================
  CSS Spacing
  =====================
  */
.spacing-top-1 {
  padding-top: 230px;
}

.spacing-top-2 {
  padding-top: 180px;
}

.spacing-top-3 {
  padding-top: 120px;
}

@media only screen and (max-width: 992px) {
  .spacing-top-1 {
    padding-top: 120px;
  }

  .spacing-top-2 {
    padding-top: 140px;
  }

  .spacing-top-3 {
    padding-top: 56px;
  }
}

/*
  =====================
  CSS Other
  =====================
  */
.container {
  max-width: 1340px;
  padding-left: 24px;
  padding-right: 24px;
  margin: auto;
}

@media only screen and (max-width: 1480px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 768px;
  }
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.inline-block {
  display: inline-block;
}

.shadow {
  box-shadow: 0px 0px 12px 0px #0000001a;
}

.rounded-1 {
  border-radius: 8px;
}

.rounded-2 {
  border-radius: 16px;
}

.rounded-3 {
  border-radius: 24px;
}

.btn-outline {
  display: block;
  border: 2px solid var(--success-color);
  padding: 12px 32px;
  border-radius: 8px;
  color: var(--white-color);
  transition: 300ms ease;
}

.btn-outline-2 {
  display: inline-block;
  border: 1px solid var(--white-color);
  padding: 12px 24px;
  border-radius: 8px;
  color: var(--white-color);
  transition: 300ms ease;
}

.btn-outline-3 {
  display: inline-block;
  border: 1px solid var(--secondary-color);
  padding: 16px 32px;
  border-radius: 8px;
  color: var(--secondary-color);
  transition: 300ms ease;
  cursor: pointer;
}

.btn-outline:hover,
.btn-outline-2:hover,
.btn-outline-3:hover {
  background-color: #ffffff20;
}

/*
  =====================
  CSS Header
  =====================
  */
.header-area {
  top: 0;
  left: 0;
  right: 0;
  z-index: 111;
}

@media only screen and (max-width: 992px) {
  .header-navbar-desktop {
    display: none !important;
  }

  .header-navbar-mobile {
    display: block !important
  }
}

.header-area.fixed {
  background-color: var(--pramary-color);
}

.header-navbar-desktop {
  padding: 24px 0;
}

.header-navbar-mobile {
  display: none;
  padding: 16px 0;
}

.header-toggler {
  cursor: pointer;
}

.header-menu {
  margin: 0;
}

.header-menu li a {
  color: var(--white-color);
  padding: 8px 20px;
  transition: 300ms ease;
}

.header-menu li a:hover {
  color: var(--info-color);
}

.sidebar-mobilemenu {
  padding: 56px 24px;
  width: 220px;
  position: fixed !important;
  top: 0;
  right: -100%;
  bottom: 0;
  transition: 300ms ease-in-out;
  background-color: #6f49fed9;
  z-index: 999;
}

.sidebar-mobilemenu.show {
  right: 0;
}

.mobile-navbar-menu li a {
  display: block;
  font-size: 1.5rem;
  margin: 12px 0;
  font-family: "Domaine Disp Nar";
  color: var(--white-color);
  transition: 300ms ease;
}

.mobile-navbar-menu li a:hover {
  color: var(--info-color);
}

/*
  =====================
  CSS Hero
  =====================
  */
.hero-area {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-content {
  margin-top: 24px;
}

.hero-content .btn-fill {
  margin-bottom: 32px;
}

.hero-title {
  position: relative;
  z-index: 2;
}

.hero-highlight{
  padding-right: 70px;
}
.hero-highlight img{
  position: absolute;
  right: -40px;
  top: -20px;
}

.hero-dots {
  right: 40px;
  top: -30px;
}

.hero-card {
  top: 25px;
}

.btn-fill {
  display: inline-block;
  background-color: var(--success-color);
  padding: 10px 20px 10px 24px;
  color: var(--secondary-color);
  border-radius: 4px;
  transition: 300ms ease;
}

.btn-fill:hover {
  color: var(--white-color);
  background-color: var(--black-color);
}

@-webkit-keyframes change-color {
  0% {
    box-shadow: 0px 0px 0px 0px #59ff00;
  }

  50% {
    box-shadow: 0px 0px 10px 0px #59ff00;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #59ff00;
  }
}

@keyframes change-color {
  0% {
    box-shadow: 0px 0px 0px 0px #59ff00;
  }

  50% {
    box-shadow: 0px 0px 10px 0px #59ff00;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #59ff00;
  }
}

.btn-label {
  animation: change-color 2s ease 0s infinite;
  background: #ffffff1a;
  border: 1px solid var(--white-color);
  border-radius: 8px;
  padding: 8px 10px;
  color: #f0f4f3;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-label span {
  font-size: 10px;
  color: var(--secondary-color);
  background-color: #bbfc4a;
  padding: 4px;
  border-radius: 4px;
}

.hero-image {
  margin-bottom: -120px;
}

.hero-image .btn-label {
  width: 232px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}

.newsletterform {
  max-width: 400px;
  padding: 2px;
  border-radius: 8px;
  background-color: var(--white-color);
  border: 1px solid var(--light-color);
}

.newsletterform input {
  width: calc(100% - 48px);
  padding: 12px 16px;
  border: 0;
}

.newsletterform button {
  width: 48px;
  height: 48px;
  background-color: var(--success-color);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .hero-card {
    display: none !important;
  }

  .hero-image {
    margin-bottom: -50px;
  }

  .hero-macbook {
    margin-top: 100px;
  }

  .hero-image .btn-label {
    top: -75px;
  }

  .hero-highlight img{
    right: -20px;
    top: -40px;
  }

  .hero-dots {
    right: -10px;
  }

  .hero-dots img {
    width: 50px;
    ;
  }
}

/*
  =====================
  CSS Category
  =====================
  */
.section-title {
  max-width: 800px;
  margin-bottom: 56px !important;
}

.title-spacing {
  padding-left: 56px;
}

.section-title .content {
  max-width: 600px;
}

.section-center {
  margin: auto;
  text-align: center;
}

.section-center .content {
  margin: auto;
}

.category-box {
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 16px 24px;
  transition: 300ms ease;
}

.category-box:hover {
  background-color: #F6F6F6;
}

.category-box .icon {
  margin-bottom: 16px;
}
.category-collapse-btn{
   margin-top: 24px;
   display: none;
}
.category-container .category-mobile-hide{
  display: block;
}
@media only screen and (max-width: 992px) {
  .category-collapse-btn{
    display: inline-block;
  }
  .category-container .category-hidden{
    display: none;
  }
  .category-container.show .category-hidden{
    display: block;
  }
}
/*
  =====================
  CSS Video
  =====================
  */

.videopopup-container {
  overflow: hidden;
  margin-bottom: 56px;
}

.video-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 40px;
}

.white-label {
  display: inline-block;
  border-radius: 50px;
  font-family: "Domaine Disp Nar";
  font-weight: 500;
  font-size: 1rem;
  background-color: var(--white-color);
  padding: 10px 24px;
  margin-bottom: 8px;
}

.video-image {
  width: 100%;
  height: 100%;
}

.video-image>img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-logo {
  width: 256px;
  height: 256px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #ffffffd1;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 117px;
  height: 117px;
  position: absolute;
  left: -60px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #212121d6;
  z-index: 11;
}
.ez-desktop{
  display: inline;
}
.ez-mobile{
  display: none;
}
@media only screen and (max-width: 992px) {
  .video-logo {
    width: 130px;
    height: 130px;
  }

  .video-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .video-popup {
    width: 75px;
    height: 75px;
    left: -40px;
  }

  .video-popup img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
}

@media only screen and (max-width: 768px) {
  .ez-desktop{
    display: none;
  }
  .ez-mobile{
    display: inline;
  }
  .video-content {
    padding: 24px;
  }
  .video-popup {
    top: auto;
    left: 0;
    right: 0;
    bottom: -34px;
  }
}

/*
  =====================
  CSS Service
  =====================
  */
.service-box.bg-1 {
  background-color: #feffe3;
}

.service-box.bg-2 {
  background-color: #e3e3fa;
}

.service-box.bg-3 {
  background-color: #e4ffe3;
}

.service-box.bg-4 {
  background-color: #c4ffa8;
}

.service-box.bg-5 {
  background-color: #ddf9fd;
}

.service-container {
  padding: 56px 40px;
  overflow: hidden;
}

.service-box {
  min-height: 82%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 28px 24px;
  transition: 300ms ease;
}

.service-box:hover {
  box-shadow: 0px 0px 30px 10px #7bf74a49;
}

.service-box .icon {
  margin-bottom: 16px;
}

.btn-underline {
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid var(--pramary-color);
  color: var(--pramary-color);
}

@media only screen and (max-width: 768px) {
  .service-area .container{
    padding: 0;
  }
  .service-container {
    padding: 40px 24px 60px;
    border-radius: 0;
  }
}

/*
  =====================
  CSS Company
  =====================
  */
.company-container {
  padding: 50px 24px;
}

.company-feature-wrapper {
  width: 780px;
  margin: auto;
}

.company-feature-item .logo {
  display: inline-flex;
  box-shadow: 0px 1px 3px 0px #0000001a;
  padding: 8px;
  border-radius: 12px;
  background-color: var(--white-color);
  margin-bottom: 12px;
}

.company-feature-item .logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.company-feature-item .btn {
  display: block;
  background-color: var(--white-color);
  padding: 4px 12px;
}

.company-feature-wrapper li {
  position: absolute;
  text-align: center;
}

.company-feature-wrapper li:nth-child(1) {
  left: 0;
  bottom: 0;
}

.company-feature-wrapper li:nth-child(2) {
  bottom: 235px;
  left: 5px;
}

.company-feature-wrapper li:nth-child(3) {
  bottom: 100px;
  left: 120px;
}

.company-feature-wrapper li:nth-child(4) {
  left: 50%;
  transform: translate(-45px, 0px);
  bottom: 171px;
}

.company-feature-wrapper li:nth-child(5) {
  bottom: 100px;
  right: 195px;
}

.company-feature-wrapper li:nth-child(6) {
  bottom: 235px;
  right: 85px;
}

.company-feature-wrapper li:nth-child(7) {
  right: 0;
  bottom: 0;
}

.feature-timeline-wrapper {
  max-width: 850px;
  margin: auto auto 56px;
}

.feature-timeline-item {
  position: relative;
  text-align: center;
  z-index: 2;
}

.feature-timeline-item .logo.bg-1 {
  background-color: #6F49FE;
}

.feature-timeline-item .logo.bg-2 {
  background-color: #BBFC4A;
}

.feature-timeline-item .logo.bg-3 {
  background-color: #5185E8;
}

.feature-timeline-item .logo.bg-4 {
  background-color: #E69C0B;
}

.feature-timeline-item .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.feature-timeline-wrapper::before {
  content: "";
  background-image: url(../image/timeline-left-dots.svg);
  background-repeat: no-repeat;
  width: 330px;
  height: 205px;
  position: absolute;
  left: 90px;
  top: 0;
}

.feature-timeline-wrapper::after {
  content: "";
  background-image: url(../image/timeline-right-dot.svg);
  background-repeat: no-repeat;
  width: 330px;
  height: 205px;
  position: absolute;
  right: 90px;
  top: 0;
}

.feature-timeline-grid {
  margin-top: 140px;
}

.timeline-title {
  position: relative;
  text-align: center;
  max-width: 350px;
  margin: 12px auto auto;
  z-index: 2;
}

.timeline-title .title {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-step-box {
  position: relative;
  min-height: 85%;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  padding: 32px 24px 24px;
  z-index: 2;
  transition: 300ms ease;
}

.feature-step-box:hover {
  box-shadow: 0px 0px 30px 10px #7bf74a49;
}

.feature-step-box .number {
  display: block;
  margin-bottom: 40px;
}

.feature-step-box .title,
.feature-step-box .icon {
  margin-bottom: 32px;
}

.feature-step-box p {
  margin: 0;
}

.timeline-line::before {
  content: "";
  background-image: url(../image/timeline-line.svg);
  width: 3px;
  height: 45px;
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  margin: auto;
}

.stepslider-container {
  display: none;
}

.stepslider-container .swiper-pagination {
  position: static !important;
  margin-top: 24px;
}

@media only screen and (max-width: 992px) {
  .company-feature-wrapper {
    display: none;
  }

  .timeline-line::before {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .company-container {
    display: none;
  }
  .title-spacing {
    padding-left: 0;
  }
  .feature-step-box .icon img{
    height: 32px;
    filter: grayscale(48%) brightness(59%);
-webkit-filter: grayscale(48%) brightness(59%);
-moz-filter: grayscale(48%) brightness(59%);
  }
  .feature-step-box .number{
    margin-bottom: 12px;
  }
  .feature-step-box .title, 
  .feature-step-box .icon{
    margin-bottom: 16px;
  }
  .stepslider-container {
    display: block;
  }
}

/*
  =====================
  CSS Calltoaction
  =====================
  */
.calltoaction-wrapper {
  padding-left: 40px;
}

.calltoaction-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.calltoaction-content .content {
  margin-bottom: 24px;
}

.callto-referral-box {
  position: relative;
  max-width: 320px;
  padding: 24px;
  z-index: 2;
}

.referral-pricing {
  padding: 12px;
  margin-bottom: 16px;
}

.referral-pricing .pricing-label,
.referral-pricing .pricing-number {
  margin: 0;
}

.referral-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--secondary-color);
}

.referral-social li img {
  height: 20px;
}

.referral-copy {
  gap: 0;
}

.referral-copy input {
  padding: 14px 16px;
  color: var(--secondary-color);
  font-size: 1rem;
  border: 1px solid #ECECEC;
  background-color: var(--white-color);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: calc(100% - 40px);
}

.referral-copy button {
  padding: 12px 20px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: var(--secondary-color);
}

.calltoaction-wrapper::before {
  content: "";
  background-color: var(--pramary-color);
  border-radius: 24px;
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 32px;
  margin: auto;
}

@media only screen and (max-width: 992px) {
  .calltoaction-area .container{
    padding: 0;
  }
  .calltoaction-wrapper {
    padding: 40px 24px;
  }
  .calltoaction-wrapper::before {
    border-radius: 0;
    top: 0;
    bottom: 0;
  }
}

/*
  =====================
  CSS Testimmonial
  =====================
  */
.testimonial-content::before {
  content: "";
  width: 180px;
  height: 135px;
  background-image: url(../image/qoute-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: -60px;
}

.testimonial-image img {
  border-radius: 8px;
  border: 4px solid var(--white-color);
}

.testimonial-content {
  padding-right: 60px;
}

.testimonial-area .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-pagination {
  gap: 1rem;
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 46px;
  height: 46px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-btn-prev img,
.swiper-btn-next img {
  filter: brightness(0) invert(1);

}

.swiper-btn-next {
  transform: rotate(180deg);
}

.swiper-btn-prev.swiper-button-disabled,
.swiper-btn-next.swiper-button-disabled {
  background: #F6F6F6;
  width: 36px;
  height: 36px;
}

.swiper-btn-prev.swiper-button-disabled img,
.swiper-btn-next.swiper-button-disabled img {
  filter: none;
}

@media only screen and (max-width: 992px) {
  .testimonial-content {
    padding-right: 0;
  }

  .testimonial-content::before {
    width: 106px;
    height: 105px;
    top: -30px;
  }

  .testimonial-area .swiper-pagination {
    position: static !important;
    justify-content: center;
    margin-top: 24px;
  }
}

/*
  =====================
  CSS Newsletter
  =====================
  */
.newsletter-wrapper {
  text-align: center;
  padding: 56px 120px;
}

.newsletter-wrapper .newsletterform {
  margin: auto;
}

.newsletter-wrapper .content {
  max-width: 640px;
  margin: auto auto 24px;
}

@media only screen and (max-width: 992px) {
  .newsletter-area .container{
    padding: 0;
  }
  .newsletter-wrapper {
    padding: 40px 24px;
    border-radius: 0;
  }
}

/*
  =====================
  CSS Footer
  =====================
  */
.footer-bg {
  padding: 32px 0;
  background-color: #F6F6F6;
}

.footer-wrapper {
  padding: 0 32px;
}

.footer-wrapper::before {
  content: "";
  background-image: url(../image/footer-logo.svg);
  width: 360px;
  height: 415px;
  position: absolute;
  right: 0;
  bottom: 0;

}

.footer-title {
  margin-bottom: 24px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li a {
  margin: 8px 0;
  display: block;
  color: #CFCFCF;
  transition: 300ms ease;
}

.footer-list li a:hover {
  color: var(--white-color);
}

.footer-top {
  padding: 40px 100px;
  border-bottom: 1px solid var(--white-color);
}

.footer-social li a {
  width: 56px;
  height: 56px;
  margin: 0 6px 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff20;
  border-radius: 50%;
  transition: 300ms ease;
}

.footer-social li a:hover {
  background-color: #ffffff30;
}

.footer-social li img {
  height: 20px;
  object-fit: contain;
}

.footer-bottom {
  padding: 32px 100px;
}

.footer-bottom p {
  margin: 0;
}

.footer-back {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--pramary-color);
  display: none;
  align-items: center;
  justify-content: center;
  right: 24px;
  bottom: 24px;
  position: fixed;
}

.footer-back.show {
  display: flex;
}

@media only screen and (max-width: 992px) {
  .footer-area .container{
    padding: 0;
  }
  .footer-wrapper {
    border-radius: 0;
    padding: 0 24px;
}
  .footer-top,
  .footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }

}