/*-----------------------------------------------------------------------------------

    Template Name: Appi - Bootstrap 5 Creative App and Software Landing Page
    Author: UIdeck

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    01.COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #505478;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #505478;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 45px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #505478;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gradient-1 {
  /* background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#4354e2),
    to(#6ca3f3)
  ); */
  /* background-image: linear-gradient(#4354e2 0%, #6ca3f3 100%); */
  color: #fff;
}

.gradient-2 {
  /* background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dc4985),
    to(#f18da2)
  );
  background-image: linear-gradient(#dc4985 0%, #f18da2 100%); */
  color: #fff;
}

.gradient-3 {
  /* background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2cc590),
    to(#75eb92)
  );
  background-image: linear-gradient(#2cc590 0%, #75eb92 100%); */
  color: #fff;
}

.gradient-4 {
  /* background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#a866d1),
    to(#f9a4d7)
  );
  background-image: linear-gradient(#a866d1 0%, #f9a4d7 100%); */
  color: #fff;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  padding: 17px 30px;
  margin-bottom: 20px;
  color: #868aaa;
  -webkit-box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
  box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 1px solid transparent;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
}

input:focus,
textarea:focus {
  border-color: #de5088;
}

.back-to-top {
  width: 45px;
  height: 45px;
  /* background: #de5088; */
  background: rgb(0, 134, 255);
  background: linear-gradient(
    48deg,
    rgba(0, 134, 255, 1) 0%,
    rgba(0, 255, 133, 1) 100%
  );
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-right: 70px;
}

.back-to-top.btn-hover {
  position: fixed;
  z-index: 999;
}

.back-to-top:hover {
  color: #fff;
}

*:focus {
  outline: none;
}

/*===== All Button Style =====*/
.main-btn {
  /* display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 20px 35px;
  font-size: 18px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
   background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dc4985),
    color-stop(#e25c8b),
    color-stop(#e86d92),
    color-stop(#ed7d9a),
    to(#f18da2)
  );
  background-image: linear-gradient(
    to bottom,
    #dc4985,
    #e25c8b,
    #e86d92,
    #ed7d9a,
    #f18da2
  );  */
  width: 145px;
  height: 56px;
  margin: 32px 24px 0 0;
  padding: 19px 24px 18px 25px;
  border-radius: 15px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  background: rgb(0, 134, 255);
  background: linear-gradient(
    48deg,
    rgba(0, 134, 255, 1) 0%,
    rgba(0, 255, 133, 1) 100%
  );
  font-family: Helvetica;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  color: #fff;
}

.main-btn:hover {
  color: #fff;
}

.btn-hover {
  position: relative;
  z-index: 1;
}

.btn-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.btn-hover:hover::after {
  width: 100%;
}

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section_title .title {
    font-size: 26px;
  }
}

.section_title p {
  margin-top: 15px;
  font-size: 18px;
  opacity: 0.5;
}

.section_title.section_title_2 .title,
.section_title.section_title_2 p {
  color: #fff;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: ytp-spinner-linspin 1568.2353ms linear infinite;
  animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
}

.preloader
  .loader
  .ytp-spinner
  .ytp-spinner-container
  .ytp-spinner-rotator
  .ytp-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader
  .loader
  .ytp-spinner
  .ytp-spinner-container
  .ytp-spinner-rotator
  .ytp-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .ytp-spinner-circle {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #de5088 #de5088 #f9f9f9;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #f9f9f9;
  -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #f9f9f9;
  -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

/*===========================
    02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 5px 0;
}

.navbar {
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 150px;
}

@media (max-width: 767px) {
  .navbar-brand img {
    width: 130px;
  }
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #505478;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

.navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 600;
  color: #505478;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #505478;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #505478;
  }
}

.navbar-nav .nav-item a.active,
.navbar-nav .nav-item a:hover {
  color: #0086ff;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #505478;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #505478;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #0086ff;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: #505478;
}

.sticky .navbar-nav .nav-item a {
  color: #505478;
}

.sticky .navbar-nav .nav-item a::before {
  background-color: #de5088;
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
  color: #0086ff;
}

.hero-area {
  padding-top: 150px;
  /* padding-bottom: 50px; */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 180px;
  }
}

.hero-area .hero-content {
  padding-bottom: 80px;
}

.hero-area .bg-relative {
  position: relative;
  margin-top: -100px !important;
}

.hero-area .bg-relative .hero .video-background-container {
  display: block;
  position: relative;
  width: 100%;
  background: transparent;
}

.hero-area .bg-relative .hero .video-background-container .video-desktop {
  display: block;
}
.hero-area .bg-relative .hero .video-background-container .video-mobile {
  display: none;
}

.hero-area .bg-relative .hero .video-background-container .container-mobile {
  display: none;
}

.hero-area .bg-relative .hero .hero-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient( 1turn, #0E326F, rgba(70, 30, 125, 0) 70%); */
  /* background: linear-gradient(1turn, #2ba546, rgba(70, 30, 125, 0) 70%); */
  /* background-color: rgba(0, 0, 0, .3); */
  /* z-index: 3; */
}

/* .hero-area .bg-relative .hero .hero-overlay .hero-container {
  position: absolute;
  top: 55%;
  left: 53%;
  transform: translate(-50%, -50%);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 88%;
} */

.hero-area .bg-relative .hero .hero-overlay .container {
  height: 100% !important;
  display: flex;
  align-items: center;
}

.hero .hero-text .title {
  font-weight: 900;
  font-size: 55px;
  line-height: 72px;
  letter-spacing: -0.5px;
  margin: auto;
}

.hero .hero-text .subtitle {
  margin-top: 15px;
  margin-bottom: 30px;
  width: 530px;
}

.hero-area .hero-content .hero-image {
  width: 224px;
  height: auto;
  margin: 0 16px 16px 0;
}

.hero-area .hero-content .hero-title {
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  width: 645px;
  height: 152px;
  margin: 16px 0;
}

.hero-area .hero-content .hero-sub-title {
  width: 339px;
  height: 57px;
  margin: 16px 306px 32px 0;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.hero-area .hero-content h2 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-content h2 {
    font-size: 42px;
    line-height: 55px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-content h2 {
    font-size: 38px;
    line-height: 50px;
  }
}

.hero-area .hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 28px;
}

.hero-area .hero-content .hero-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-area .hero-content .hero-btns .main-btn {
  margin-right: 40px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-content .hero-btns .main-btn {
    margin-right: 20px;
  }
}

.hero-area .hero-content .hero-btns .watch-btn {
  margin-bottom: 20px;
}

.hero-area .hero-content .hero-btns .watch-btn i {
  /* width: 50px;
  height: 50px; */
  border-radius: 50%;
  /* border: 3px solid #a866d1; */
  font-size: 20px;
  text-align: center;
  line-height: 45px;
  /* background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#a866d1),
    to(#f9a4d7)
  );
  background: linear-gradient(#a866d1 0%, #f9a4d7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; */

  color: white;
  width: 56px;
  height: 56px;
  margin: 32px 16px 0 24px;
  padding: 13px 10px 12px 19px;
  box-shadow: 3px 3px 30px 0 rgba(0, 0, 0, 0.16);
  background: rgb(0, 134, 255);
  background: linear-gradient(
    48deg,
    rgba(0, 134, 255, 1) 0%,
    rgba(0, 255, 133, 1) 100%
  );
  padding: 6px 18px;
  font-size: 30px;
}

.hero-area .hero-content .hero-btns .watch-btn span {
  /* font-size: 18px;
  font-weight: 600;
  margin-left: 20px;
  display: inline-block;
  color: #505478; */
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 86px;
  height: 19px;
  /* margin: 51px 319px 18px 16px; */
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.hero-area .hero-content .hero-btns .watch-btn span:hover {
  color: #de5088;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-content .hero-btns .watch-btn span {
    margin-left: 15px;
  }
}

.hero-area .counter-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 30px;
}

.hero-area .counter-up .single-counter {
  padding: 0 40px;
  position: relative;
}

.hero-area .counter-up .single-counter::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 24px;
  background: rgba(80, 84, 120, 0.6);
  right: 0;
  top: 10px;
}

.hero-area .counter-up .single-counter:first-child {
  padding-left: 0;
}

.hero-area .counter-up .single-counter:last-child {
  padding-right: 0;
}

.hero-area .counter-up .single-counter:last-child::after {
  display: none;
}

.hero-area .counter-up .single-counter span {
  text-align: center;
  display: block;
  font-size: 20px;
  font-weight: 600;
}

/* Responsive Mobile Section Header1 */

@media only screen and (min-width: 320px) and (max-width: 991px) {
  .hero-area .bg-relative .hero .video-background-container .video-desktop {
    display: none;
  }
  .hero-area .bg-relative .hero .video-background-container .video-mobile {
    display: block;
  }
  .hero-area .bg-relative .hero .video-background-container .container-mobile {
    display: block;
    background-color: #0086ff;
    height: 700px;
  }
  .hero-area .bg-relative .hero .hero-overlay .hero-container {
    width: 100%;
    padding-top: 60px;
  }
  .hero-area .bg-relative .hero .hero-overlay {
    /* display: block;
    height: 400px;
    position: relative;
    background-color: #022468; */
    margin-top: 210px;
  }
  .hero-area .hero-content .hero-image {
    width: 110px;
    height: 27px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-area .hero-content .hero-title {
    width: 100% !important;
    height: 76px;
    margin: 16px 0;
    font-family: Helvetica;
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
  }
  .hero-area .hero-content .hero-sub-title {
    width: 254px;
    height: 42px;
    margin: 16px 34px 0px;
    font-family: Helvetica;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
  }
  .hero-area .hero-content .hero-btns .main-btn {
    width: 184px;
    height: 45px;
    margin: 24px 69px 0;
    padding: 13px 44px 13px 44px;
    border-radius: 10px;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
    background: rgb(0, 134, 255);
    background: linear-gradient(
      48deg,
      rgba(0, 134, 255, 1) 0%,
      rgba(0, 255, 133, 1) 100%
    );
  }
}

/* End Responsive Mobile Section Header */

@media (max-width: 767px) {
  .hero-area .counter-up .single-counter span {
    font-size: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-area .counter-up .single-counter span {
    font-size: 18px;
  }
}

.hero-area .counter-up .single-counter span.countup {
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero-area .counter-up .single-counter span.countup {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-area .counter-up .single-counter span.countup {
    font-size: 24px;
  }
}

.hero-area .hero-img .img-screen {
  position: absolute;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-img .img-screen {
    width: 40%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-img .img-screen {
    width: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-img .img-screen {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-img .img-screen {
    display: none;
  }
}

.hero-area .hero-img .img-screen.screen-1 {
  right: 25%;
  bottom: -350px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-img .img-screen.screen-1 {
    right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-img .img-screen.screen-1 {
    right: 0;
  }
}

.hero-area .hero-img .img-screen.screen-3 {
  right: -125px;
  bottom: -475px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-img .img-screen.screen-3 {
    right: -250px;
    bottom: -250px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-img .img-screen.screen-3 {
    right: -180px;
    bottom: -160px;
  }
}

.feature-area .single-feature {
  padding: 45px 30px;
  border-radius: 10px;
  background: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px -33px 51px rgba(209, 209, 209, 0.16);
  box-shadow: 0px -33px 51px rgba(209, 209, 209, 0.16);
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-area .single-feature {
    padding: 40px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-area .single-feature {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .feature-area .single-feature {
    margin-bottom: 30px;
  }
}

.feature-area .single-feature::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.feature-area .single-feature.item-1::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#4354e2),
    to(#6ca3f3)
  );
  background: linear-gradient(#4354e2 0%, #6ca3f3 100%);
}

.feature-area .single-feature.item-2::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dc4985),
    to(#f18da2)
  );
  background: linear-gradient(#dc4985 0%, #f18da2 100%);
}

.feature-area .single-feature.item-3::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2cc590),
    to(#75eb92)
  );
  background: linear-gradient(#2cc590 0%, #75eb92 100%);
}

.feature-area .single-feature.item-4::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#a866d1),
    to(#f9a4d7)
  );
  background: linear-gradient(#a866d1 0%, #f9a4d7 100%);
}

.feature-area .single-feature:hover {
  -webkit-box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.26);
  box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.26);
}

.feature-area .single-feature:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.feature-area .single-feature:hover .feature-icon {
  border-radius: 50%;
}

.feature-area .single-feature .feature-content h4 {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-area .single-feature .feature-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.feature-area .single-feature .feature-content p {
  font-size: 16px;
  line-height: 24px;
  color: #868aaa;
}

/* Section Feature-1 */

#feature-1 {
  /* width: 1920px; */
  width: 100%;
  /* width: 1920px; */
  /* height: 11046px; */
  height: 2530px;
  background: rgb(0, 160, 229);
  background: linear-gradient(
    0deg,
    rgba(0, 160, 229, 1) 0%,
    rgba(0, 69, 142, 1) 100%
  );
  margin-top: -1px;
}

#feature-1 .Chattie-features {
  /* width: 484px; */
  width: 100%;
  height: 76px;
  /* margin: 112px 422px 16px 97px; */
  margin-top: 70px;
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

#feature-1 .Chattie-sub-features {
  width: 100%;
  height: 56px;
  /* margin: 16px 241px 208px 539px; */
  margin-top: 16px;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 0px 150px;
}

#feature-1 .feature-image {
  width: 560px !important;
  height: 569px;
  object-fit: contain;
  /* margin-top: 270px; */
}

#feature-1 .feature-left-image {
  width: 560px !important;
  height: 569px;
  object-fit: contain;
  /* margin-top: 270px; */
  margin-left: 47px;
}

#feature-1 .wrapper-card-feature-left {
  display: none;
}

/* #feature-1 .wrapper-card-feature-desktop {
  display: block;
} */

#feature-1 .row-detail-feature {
  margin-top: 167px;
  /* margin-left: 204px; */
  padding-left: 60px;
}

#feature-1 .row-detail-left-feature {
  margin-top: 167px;
  margin-right: 75px;
  padding-left: 60px;
}

#feature-1 .row-detail-feature .i-messenger {
  font-size: 112px;
  color: white;
  padding: 15px;
}

#feature-1 .row-detail-left-feature .i-live-chat {
  width: 142px !important;
  margin-right: 30px !important;
  font-size: 112px;
  color: white;
  padding: 15px;
}

#feature-1 .row-detail-feature .title-feature {
  width: 352px;
  height: 152px;
  /* margin: 0 13px 32px 40px; */
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

#feature-1 .row-detail-left-feature .title-left-feature {
  width: 142px;
  /* text-align: right; */
  margin-left: 120px;
  height: 152px;
  /* margin: 0 13px 32px 40px; */
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

#feature-1 .row-detail-left-feature .title-social-poster {
  margin-left: 50px;
}

#feature-1 .sub-title-feature {
  width: 490px;
  height: 74px;
  margin: 0px 0 0 90px;
  font-family: Helvetica;
  font-size: 26px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

#feature-1 .sub-title-live-chat {
  text-align: right !important;
  margin-left: -60px !important;
  padding-left: 40px;
}

#feature-1 .sub-title-social-poster {
  text-align: right !important;
  width: 380px;
  margin-left: 50px !important;
}

@media (max-width: 767px) {
  #feature-1 {
    width: 100%;
    height: 1730px;
    background: rgb(0, 160, 229);
    background: linear-gradient(
      0deg,
      rgba(0, 160, 229, 1) 0%,
      rgba(0, 69, 142, 1) 100%
    );
    margin-top: -1px;
  }

  #feature-1 .Chattie-features {
    width: 100%;
    height: 38px;
    font-family: Helvetica;
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    margin-top: 36px;
  }

  #feature-1 .Chattie-sub-features {
    width: 100%;
    height: 80px;
    font-family: Helvetica;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 0px 45px;
  }

  #feature-1 .row-detail-feature .title-feature {
    width: 100% !important;
    width: 152px;
    height: 19px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
  }
  #feature-1 .wrapper-card-feature-left .row-detail-feature .title-feature {
    width: 100% !important;
    width: 152px;
    height: 19px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    padding-left: 3px;
  }

  #feature-1 .sub-title-feature {
    width: 100% !important;
    margin-left: 0px !important;
    width: 206px;
    height: 28px;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
  }

  #feature-1 .row-detail-feature {
    margin-top: 0px;
    padding-left: 0px;
  }

  #feature-1 .row-detail-feature .col-messenger-mobile {
    padding: 0px !important;
  }

  #feature-1 .wrapper-card-feature-desktop {
    display: none;
  }

  #feature-1 .wrapper-card-feature {
    margin: 40px 45px 48px;
    padding: 15px 13px 40px;
    border-radius: 15px;
    border: solid 2px #fff;
    display: block;
  }
  #feature-1 .wrapper-card-feature-left {
    margin: 40px 45px 48px;
    padding: 15px 13px 40px;
    border-radius: 15px;
    border: solid 2px #fff;
    display: block;
  }

  #feature-1 .wrapper-card-feature .row-detail-feature .img-messenger-mobile {
    width: 16px;
    height: 16px;
    margin: -9px 8px 1px 12px;
    display: inline-block;
  }
  #feature-1
    .wrapper-card-feature-left
    .row-detail-feature
    .img-messenger-mobile {
    width: 16px;
    height: 16px;
    margin: -9px 8px 1px 12px;
    display: inline-block;
  }

  #feature-1 .feature-image {
    height: 221px;
  }

  #feature-1 .row-detail-feature .title-feature {
    width: 100% !important;
  }
  #feature-1 .feature-left-image {
    margin-left: 0px;
  }
}

/* End Section Feature-1 */

/* Section How Chattie Work */

.how-work-area {
  background-image: url("../images/homepage/banner-how-chattie-work.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.how-work-area .How-does-chattie-work {
  width: 100%;
  height: 68px;
  /* margin: 0 172px 16px 195px; */
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.how-work-area .row-how-work-mobile {
  display: none;
}

.how-work-area .row-how-work-desktop {
  display: contents;
}

.how-work-area
  .row-how-work-mobile
  .swiper-container
  .swiper-wrapper
  .swiper-slide {
  margin-top: auto;
  margin-bottom: auto;
  display: inherit;
}

.how-work-area .sub-how-work {
  width: 100%;
  height: 56px;
  /* margin: 16px 260px 114px 282px; */
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 0px 150px;
}

/* .how-work-area .how-work-content-wrapper {
  margin-top: 118px;
} */

.how-work-area .download-btn .btn-how-work {
  width: 280px;
  /* height: 122px; */
  /* margin: 35px 482px 0 504px; */
  /* padding: 41px 29px 41px 30px; */
  border-radius: 15px;
  box-shadow: 3px 3px 6px 0 rgb(0 0 0 / 16%);
  background: rgb(0, 134, 255);
  background: linear-gradient(
    48deg,
    rgba(0, 134, 255, 1) 0%,
    rgba(0, 255, 133, 1) 100%
  );
  font-family: Helvetica;
  font-size: 23px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  display: table;
  margin-bottom: 30px;
  padding: 25px 20px;
}

@media (max-width: 767px) {
  .how-work-area .row-how-work-mobile {
    display: block;
  }

  .how-work-area .row-how-work-desktop {
    display: none;
  }

  .how-work-area .row-how-work-mobile .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    height: 560px;
  }

  .how-work-area .row-how-work-mobile .swiper-container .swiper-pagination {
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5%;
  }

  .how-work-area
    .row-how-work-mobile
    .swiper-container
    .swiper-button-prev
    .fa-angle-left,
  .how-work-area
    .row-how-work-mobile
    .swiper-container
    .swiper-button-next
    .fa-angle-right {
    margin: 175px 0 174px 1px;
    padding: 7.4px 9.9px 7.6px 10.1px;
    opacity: 0.5;
    background-color: #e2e2e2;
    border-radius: 100%;
  }

  .how-work-area .row-how-work-mobile .row-icon-mobile {
    display: flex;
    margin-left: auto;
    width: 100%;
    /* margin-right: auto; */
    /* margin-top: 60px; */
  }

  .how-work-area .row-how-work-mobile .carousel-image-screenshot {
    width: 259px;
    display: block;
    margin: auto;
  }

  .how-work-area .row-how-work-mobile .row-icon-mobile .span-how-work {
    width: 20px;
    color: #00ff85;
    margin-left: 40px;
  }

  .how-work-area
    .row-how-work-mobile
    .row-icon-mobile
    .how-work-accordion-title {
    width: 100%;
    margin: 14px 0 0 8px;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: center;
    color: #00ff85;
  }
  .how-work-area .row-how-work-mobile .how-work-accordion-sub-title {
    height: 70px;
    margin: 16px 1px 24px 2px;
    font-family: Helvetica;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 0px 30px;
  }

  .how-work-area .download-btn .btn-how-work {
    width: 184px;
    height: 45px;
    padding: 13px 9px;
    border-radius: 10px;
    box-shadow: 3px 3px 6px 0 rgb(0 0 0 / 16%);
    background: rgb(0, 134, 255);
    background: linear-gradient(
      48deg,
      rgba(0, 134, 255, 1) 0%,
      rgba(0, 255, 133, 1) 100%
    );
    font-size: 16px;
    margin: 25px 75px;
  }
}

/* End Section How Chattie Work */

/* Section Video Area */

.video-area {
  background: rgb(0, 192, 197);
  background: linear-gradient(
    0deg,
    rgba(0, 192, 197, 1) 0%,
    rgba(0, 172, 216, 1) 100%
  );
}

.video-area .video-header .section-title .title-video-area {
  width: 100%;
  height: 76px;
  /* margin: 176px 116px 16px 412px; */
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.video-area .video-header .section-title .sub-title-video-area {
  width: 100%;
  height: 56px;
  /* margin: 16px 241px 72px 539px; */
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 0px 180px;
}

.video-area .video-frame .image-video-frame {
  width: 800px;
}

.video-area .video-frame .fa-youtube {
  font-size: 140px;
}

/* .video-area .screenshot-area-wrapper .screenshot-area {
  background-color: #00abd9;
  padding-bottom: 100px;
} */

.video-area .screenshot-area .section-title .title-screenshot {
  width: 100%;
  /* height: 152px; */
  margin: 280px 40px 16px 0px;
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  padding-right: 30px;
}

.video-area .screenshot-area .section-title .sub-title-screenshot {
  width: 100%;
  height: 56px;
  /* margin: 16px 21px 268px 256px; */
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-top: 10px;
  padding-right: 90px;
}

.video-area .screenshot-area {
  background-color: transparent !important;
}

.video-area
  .screenshot-area
  .screenshot-slider-wrapper
  .carousel-image-screenshot {
  width: 700px;
  height: auto;
}

.video-area .screenshot-area .screenshot-slider-wrapper .swiper-pagination {
  width: 100%;
  /* margin-top: -120px !important; */
  bottom: 100px !important;
}

.video-area .screenshot-area .screenshot-slider-wrapper .swiper-button-prev i {
  font-size: 30px !important;
  /* position: absolute; */
  /* left: -40px; */
  /* top: 267px; */
  border-radius: 30px;
  background: #e7f7f1c4;
  padding: 7px 14px;
  font-size: 15px;
  color: #707070;
}

.video-area .screenshot-area .screenshot-slider-wrapper .swiper-button-next i {
  font-size: 30px !important;
  /* position: absolute; */
  /* left: -40px; */
  /* top: 267px; */
  border-radius: 30px;
  background: #e7f7f1c4;
  padding: 7px 14px;
  font-size: 15px;
  color: #707070;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
  .how-work-area .How-does-chattie-work {
    width: 100%;
    height: 78px;
    font-family: Helvetica;
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    margin-top: -75px;
    padding: 0px 60px;
  }
  .how-work-area .sub-how-work {
    width: 100%;
    height: 42px;
    font-family: Helvetica;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    margin-top: 16px;
    padding: 0px 60px;
  }
  .video-area .video-frame .image-video-frame {
    width: 100% !important;
  }
  .video-area .screenshot-area .section-title .title-screenshot {
    width: 100%;
    /* height: 152px; */
    /* margin: 280px 40px 16px 0px; */
    margin: 0px;
    font-family: Helvetica;
    font-size: 55px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    padding-right: 30px;
  }
}

/* End Section Video Area */

/* Section App Screenshot */

.screenshot-area-wrapper .screenshot-area {
  background-color: #00abd9;
  padding-bottom: 100px;
}

.screenshot-area-wrapper .screenshot-area .section-title .title-screenshot {
  width: 100%;
  /* height: 152px; */
  margin: 280px 40px 16px 0px;
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  padding-right: 30px;
}

.screenshot-area-wrapper .screenshot-area .section-title .sub-title-screenshot {
  width: 100%;
  height: 56px;
  /* margin: 16px 21px 268px 256px; */
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-top: 10px;
}

.screenshot-area-wrapper
  .screenshot-area
  .screenshot-slider-wrapper
  .carousel-image-screenshot {
  width: 700px;
  height: auto;
}

.screenshot-area-wrapper
  .screenshot-area
  .screenshot-slider-wrapper
  .swiper-pagination {
  width: 100%;
  /* margin-top: -120px !important; */
  bottom: 100px !important;
}

.screenshot-area-wrapper
  .screenshot-area
  .screenshot-slider-wrapper
  .swiper-button-prev
  i {
  font-size: 30px !important;
  /* position: absolute; */
  /* left: -40px; */
  /* top: 267px; */
  border-radius: 30px;
  background: #e7f7f1c4;
  padding: 7px 14px;
  font-size: 15px;
  color: #707070;
}

.screenshot-area-wrapper
  .screenshot-area
  .screenshot-slider-wrapper
  .swiper-button-next
  i {
  font-size: 30px !important;
  /* position: absolute; */
  /* left: -40px; */
  /* top: 267px; */
  border-radius: 30px;
  background: #e7f7f1c4;
  padding: 7px 14px;
  font-size: 15px;
  color: #707070;
}

/* .screenshot-area
  .screenshot-slider-wrapper
  .screenshot-slider
  .single-screen.swiper-slide.swiper-slide-next,
.screenshot-area
  .screenshot-slider-wrapper
  .screenshot-slider
  .single-screen.swiper-slide.swiper-slide-prev {
  margin-top: 10px;
  width: 100% !important;
} */

/* End Section App Screenshot */

/* Section App Free Trial */

.free-trial {
  background-image: url("../images/homepage/banner-free-trial.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  /* margin-top: -80px; */
}

.free-trial .title-free-trial {
  width: 100%;
  height: 76px;
  /* margin: 0 88px 16px; */
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 210px 0px 80px 0px;
}

.free-trial .sub-title-free-trial {
  width: 100%;
  height: 56px;
  /* margin: 16px 0 40px; */
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 0px 400px;
}

.free-trial .btn-free-trial {
  width: 280px;
  /* height: 104px; */
  margin: 20px 226px 0;
  /* padding: 16px 79px 26px 80px; */
  border-radius: 20px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  background: rgb(0, 134, 255);
  background: linear-gradient(
    48deg,
    rgba(0, 134, 255, 1) 0%,
    rgba(0, 255, 133, 1) 100%
  );
  margin-left: auto;
  margin-right: auto;
  display: table;
  padding: 10px 20px;
}

.free-trial .btn-free-trial .title-btn-free-trial {
  width: 100%;
  height: 37px;
  /* margin: 0 26px 8px; */
  font-family: Helvetica;
  font-size: 23px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.free-trial .btn-free-trial .title-btn-free-trial-mobile {
  display: none;
}

.free-trial .btn-free-trial .sub-title-btn-free-trial {
  width: 100%;
  height: 17px;
  /* margin: 8px 0 0; */
  font-family: Helvetica;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .free-trial {
    background-image: url(../images/homepage/bg-freetrial.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 158px;
  }

  .free-trial .btn-free-trial {
    width: 102px;
    margin: 10px 0 0 200px;
    padding: 0px 2px;
    border-radius: 5px;
    box-shadow: 3px 3px 6px 0 rgb(0 0 0 / 16%);
    background: rgb(0, 134, 255);
    background: linear-gradient(
      48deg,
      rgba(0, 134, 255, 1) 0%,
      rgba(0, 255, 133, 1) 100%
    );
  }

  .free-trial .title-free-trial {
    width: 100%;
    height: 16px;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
    padding: 25px 56px 8px 70px;
  }

  .free-trial .sub-title-free-trial {
    width: 100%;
    height: 36px;
    font-family: Helvetica;
    font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
    padding: 5px 60px 0px 150px;
  }
  .free-trial .btn-free-trial .sub-title-btn-free-trial {
    width: 100%;
    height: 17px;
    margin: 8px 0 0;
    font-family: Helvetica;
    font-size: 9px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
  }

  .free-trial .btn-free-trial .title-btn-free-trial {
    display: none;
  }
}

/* End Section App Free Trial */

/* Section App Contact */

.contact-area {
  background: rgb(0, 205, 183);
  background: linear-gradient(
    0deg,
    rgba(0, 205, 183, 1) 100%,
    rgba(0, 210, 177, 1) 0%
  );
}

.contact-area .title-contact-area {
  width: 100%;
  height: 152px;
  /* margin: 96px 72px 16px 118px; */
  font-family: Helvetica;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: right;
  color: #fff;
  padding-left: 200px;
  margin-left: -50px;
}

.contact-area .sub-title-contact-area {
  width: 100%;
  height: 56px;
  /* margin: 16px 72px 95px 0; */
  font-family: Helvetica;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: right;
  color: #fff;
  padding-left: 200px;
  margin-left: -50px;
}

.contact-area .contact-form-wrapper {
  width: 100%;
  /* margin: 0 0 0 72px; */
  padding: 19px 13px 20px;
  opacity: 0.85;
  border-radius: 30px;
  box-shadow: 3px 3px 30px 0 rgb(0 0 0 / 16%);
  background-color: #e2e2e2;
}

.contact-area form .email-form-contact-area,
.contact-area form .subject-form-contact-area,
.contact-area form .message-form-contact-area,
.contact-area form .captcha-form-contact-area {
  width: 100%;
  /* height: 75px; */
  /* margin: 0 13px 13px 0; */
  /* padding: 28px 233px 28px 24px; */
  /* opacity: 0.85; */
  border-radius: 30px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  /* background-color: #fff; */
  margin-bottom: -15px !important;
}

/* .contact-area form .subject-form-contact-area {

} */

.contact-area .btn-form-contact-area {
  /* width: 765px; */
  /* height: 415px; */
  margin: 0 0 0 72px;
  padding: 19px 13px 20px;
  opacity: 0.85;
  border-radius: 30px;
  box-shadow: 3px 3px 30px 0 rgba(0, 0, 0, 0.16);
  background: rgb(0, 134, 255);
  background: linear-gradient(
    48deg,
    rgba(0, 134, 255, 1) 0%,
    rgba(0, 255, 133, 1) 100%
  );
  margin-left: auto;
  margin-right: auto;
  display: table;
  border: 0px;
  color: white;
}

@media (max-width: 767px) {
  .contact-area .title-contact-area {
    width: 100%;
    height: 76px;
    font-family: Helvetica;
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 0px 60px;
    margin-top: -60px;
    margin-left: 0px;
  }
  .contact-area .sub-title-contact-area {
    width: 100%;
    height: 42px;
    /* margin: 16px 57px 16px 58px; */
    font-family: Helvetica;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 20px 70px;
    margin-bottom: 40px;
    margin-left: 0px;
  }
}

/* End Section App Contact */

.icon-style {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-work-area {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .how-work-area {
    padding-top: 100px;
  }
}

.how-work-area .how-work-img {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
}

.how-work-area .how-work-img .how-work-img-detail {
  /* margin: 114px 121px 35px 0; */
  margin-top: auto;
  margin-bottom: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-work-area .how-work-img {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .how-work-area .how-work-img {
    margin-bottom: 30px;
  }
}

.how-work-area .how-work-img .dots-shape {
  position: absolute;
  z-index: -1;
  right: 30px;
  bottom: 0;
}

.how-work-area .accordion-btn button .icon-style {
  border-radius: 50%;
}

.how-work-area .accordion-btn button.collapsed .icon-style {
  border-radius: 5px;
}

.how-work-area .accordion-btn button:hover .icon-style {
  border-radius: 50%;
}

.accordion-style .single-accordion {
  border-radius: 10px;
  /* background: transparent; */
  /* -webkit-box-shadow: 0px 0px 51px rgb(180 180 180 / 16%); */
  /* box-shadow: 0px 0px 51px rgb(180 180 180 / 16%); */
  /* background-color: #00346d; */
  border-radius: 30px;
  /* opacity: 0.2; */
  /* width: 548px; */
  width: 100%;
  /* height: 215px; */
  /* margin: 118px 0 32px 20px; */
  /* padding: 24px; */
}

.accordion-style .single-accordion .btn-block {
  padding: 5px 5px 10px 5px !important;
  width: 1;
}

.accordion-style .single-accordion .btn-block:focus {
  /* border-radius: 10px; */
  /* background: transparent; */
  /* -webkit-box-shadow: 0px 0px 51px rgb(180 180 180 / 16%);
  box-shadow: 0px 0px 51px rgb(180 180 180 / 16%);
  background-color: #00346d !important;
  border-radius: 30px; */
  /* opacity: 0.2; */
  /* width: 540px;
  height: 215px;
  padding: 0px !important;
  margin: 0px !important; */
  /* margin: 118px 0 32px 20px; */
  /* padding: 24px; */

  /* padding: 0px 5px; */
  /* padding-right: 70px; */
  /* padding-left: 5px; */
  font-size: 23px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  -webkit-box-shadow: 0px 0px 51px rgb(180 180 180 / 16%);
  box-shadow: 0px 0px 51px rgb(180 180 180 / 16%);
  background-color: #00346d !important;
  border-radius: 30px;
  position: relative;
  white-space: normal;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  /* padding: 3px 3px !important; */
  width: 80% !important;
}

.accordion-style .single-accordion .accordion-btn button {
  /* padding: 18px 30px; */
  /* padding-right: 50px; */
  width: 80% !important;
  font-size: 23px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: transparent !important;
  position: relative;
  white-space: normal;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  /* color: #de5088; */

  /* width: 367px;
  height: 38px;
  margin: 0 77px 16px 24px; */
  font-family: Helvetica;
  /* font-size: 32px; */
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #00ff85;
}

.accordion-style .single-accordion .accordion-btn .btn-block .col-right-block {
  margin-top: 10px;
  margin-left: -10px;
  padding-left: 0px;
}

.accordion-style
  .single-accordion
  .accordion-btn
  .btn-block
  .span-how-work
  .ig-svg {
  fill: white !important;
  color: white !important;
  width: 20px;
  /* filter: url(#id-of-your-filter); */
}

.accordion-style
  .single-accordion
  .accordion-btn
  .btn-block:focus
  .span-how-work
  .ig-svg {
  fill: #00ff85 !important;
  color: #00ff85 !important;
  /* filter: url(#id-of-your-filter); */
}

.accordion-style
  .single-accordion
  .accordion-btn
  .btn-block
  .how-work-accordion-title {
  color: white;
}
.accordion-style
  .single-accordion
  .accordion-btn
  .btn-block:focus
  .how-work-accordion-title {
  color: #00ff85;
}

.accordion-style
  .single-accordion
  .accordion-btn
  .how-work-accordion-sub-title {
  width: 100%;
  height: 76px;
  /* margin: 16px 0 0 71px; */
  font-family: Helvetica;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  padding: 10px 0px 5px 0px;
}

@media (max-width: 767px) {
  .accordion-style .single-accordion {
    width: 100% !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 18px;
  }
}

.accordion-style .single-accordion .accordion-btn button.collapsed {
  color: #505478;
}

.accordion-style .single-accordion .accordion-btn button:hover {
  color: #de5088;
}

.accordion-style .single-accordion .accordion-btn button.collapsed::after {
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.accordion-style .single-accordion .accordion-btn button::after {
  font: normal normal normal 1em/1 "LineIcons";
  /* content: "\ea5e"; */
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: rotate(0deg) translateY(-50%);
  transform: rotate(0deg) translateY(-50%);
  font-size: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.accordion-style .single-accordion .accordion-btn button .icon-style {
  margin-right: 20px;
}

.accordion-style .single-accordion .accordion-content {
  padding: 10px 30px 30px;
}

.video-area .video-header {
  padding-top: 60px;
  padding-bottom: 180px;
  /* background-image: url("../images/video-bg.svg"); */
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .video-area .video-header {
    padding-bottom: 100px;
  }
}

.video-area .video-frame {
  position: relative;
  margin: auto;
  margin-top: -100px;
  z-index: 2;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .video-area .video-frame {
    margin-top: -150px;
  }
}

.video-area .video-frame a {
  position: absolute;
  /* width: 80px; */
  /* height: 80px; */
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  /* background: -webkit-gradient( linear, left top, left bottom, from(#dc4985), to(#f18da2) ); */
  /* background: linear-gradient(#dc4985 0%, #f18da2 100%); */
  color: red;
  margin-top: -150px;
  /* margin-bottom: auto; */
  /* display: table;*/
}

.video-area .video-frame a.btn-hover::after {
  width: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  background: rgba(255, 255, 255, 0.15);
}

.video-area .video-frame a.btn-hover:hover::after {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.screenshot-area {
  background: #f7f8fe;
  position: relative;
  z-index: 1;
}

.screenshot-area .shape {
  position: absolute;
  z-index: -1;
}

.screenshot-area .shape.line-shape-1 {
  top: 0;
  left: 0;
}

.screenshot-area .shape.line-shape-2 {
  top: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.screenshot-area .screenshot-slider-wrapper {
  position: relative;
}

.screenshot-area .screenshot-slider-wrapper .screenshot-slider {
  margin-top: 50px;
}

.screenshot-area .screenshot-slider-wrapper .screenshot-slider .single-screen {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.screenshot-area
  .screenshot-slider-wrapper
  .screenshot-slider
  .single-screen.swiper-slide.swiper-slide-active {
  margin-top: 0px;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.screenshot-area
  .screenshot-slider-wrapper
  .screenshot-slider
  .single-screen.swiper-slide.swiper-slide-next,
.screenshot-area
  .screenshot-slider-wrapper
  .screenshot-slider
  .single-screen.swiper-slide.swiper-slide-prev {
  margin-top: 10px;
}

.screenshot-area .screenshot-slider-wrapper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  /* background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dc4985),
    to(#f18da2)
  );
  background: linear-gradient(#dc4985 0%, #f18da2 100%); */
  background: #00ff85;
  opacity: 0.17;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.screenshot-area
  .screenshot-slider-wrapper
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.screenshot-area .screenshot-slider-wrapper .screenshot-frame {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 248px;
}

.testimonial-area .single-testimonial {
  padding: 48px 35px 35px;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  margin: 76px 0;
}

.testimonial-area .single-testimonial svg {
  position: absolute;
  top: -76px;
  left: -76px;
  z-index: -1;
}

.testimonial-area .single-testimonial .testimonial-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 30px;
}

.testimonial-area .single-testimonial .testimonial-header .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.testimonial-area
  .single-testimonial
  .testimonial-header
  .client-info
  .client-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial-area
  .single-testimonial
  .testimonial-header
  .client-info
  .client-details
  h6 {
  font-size: 17px;
  font-weight: 600;
}

.testimonial-area
  .single-testimonial
  .testimonial-header
  .client-info
  .client-details
  span {
  font-size: 14px;
  color: #868aaa;
}

.testimonial-area .single-testimonial .testimonial-header .client-rating span {
  margin-left: 10px;
  font-size: 18px;
  color: #e96a20;
}

.testimonial-area
  .single-testimonial
  .testimonial-header
  .client-rating
  span.not-rated {
  color: #dbbfae;
}

.testimonial-area .single-testimonial .quote {
  margin-bottom: 20px;
}

.testimonial-area .single-testimonial .quote i {
  font-size: 40px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-area .testimonial-slider-wrapper {
  position: relative;
}

.testimonial-area .testimonial-slider-wrapper .tns-controls {
  position: absolute;
  top: -20px;
  right: 0;
  left: auto;
  z-index: 9;
}

.testimonial-area .testimonial-slider-wrapper .tns-controls button {
  border: none;
  background: none;
  font-size: 30px;
  color: #505478;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px;
}

.testimonial-area .testimonial-slider-wrapper .tns-controls button:hover {
  color: #de5088;
}

.pricing-area .single-price {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px -31px 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0px -31px 51px rgba(165, 165, 165, 0.16);
  padding: 40px 50px 0;
  margin-bottom: 60px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pricing-area .single-price .price-icon {
  margin-bottom: 25px;
}

.pricing-area .single-price h4 {
  font-size: 23px;
  font-weight: 600;
}

.pricing-area .single-price .package-price {
  color: #de5088;
}

.pricing-area .single-price .package-details {
  margin-bottom: 30px;
  overflow: hidden;
  outline: none;
  height: 300px;
  text-align: left;
}

.pricing-area .single-price .package-details li {
  font-size: 14px;
  line-height: 32px;
  color: #868aaa;
}

.pricing-area .single-price .price-btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  background: #868aaa;
  margin-bottom: -25px;
}

.pricing-area .single-price:hover {
  -webkit-box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
}

.pricing-area .single-price:hover .price-icon {
  border-radius: 50%;
}

.pricing-area .single-price.active {
  -webkit-box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
}

.pricing-area .single-price.active .price-btn {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dc4985),
    to(#f18da2)
  );
  background: linear-gradient(#dc4985 0%, #f18da2 100%);
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link {
  color: #505478;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  z-index: 1;
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dc4985),
    to(#f18da2)
  );
  background: linear-gradient(#dc4985 0%, #f18da2 100%);
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: inherit;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link.active {
  color: #fff;
  background: none;
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link.active::after {
  width: 100%;
}

.pricing-area .pricing-nav .single-price {
  height: 650px;
  box-shadow: 24px 24px 46px 0 rgba(0, 0, 0, 0.16);
}
.pricing-area .pricing-nav .single-price .package-name {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.19;
  position: relative;
}
.pricing-area .pricing-nav .single-price .package-name span.pricing-line-first,
.pricing-area
  .pricing-nav
  .single-price
  .package-name
  span.pricing-line-second {
  border-radius: 20px;
  width: 12px;
  position: absolute;
  padding-left: 56px;
  top: 25px !important;
  margin-left: 24px;
}
.pricing-area .pricing-nav .single-price .package-name span.pricing-line-first {
  border: 6px solid #8cf27c;
}
.pricing-area
  .pricing-nav
  .single-price
  .package-name
  span.pricing-line-second {
  border: 6px solid #eccc8c;
}

.pricing-area .pricing-nav .single-price .package-caption p {
  font-size: 20px;
  line-height: 1.17;
  color: #2e2e2e;
  font-weight: normal;
}
.pricing-area .pricing-nav .single-price .package-pricing h4 {
  font-size: 39px;
  font-weight: bold;
  line-height: 1.2;
}
.pricing-area .pricing-nav .single-price .package-pricing p {
  font-size: 18px;
  color: #009ee5;
}
.pricing-area .pricing-nav .single-price .package-pricing span {
  font-size: 16px;
  margin-bottom: 36px;
}
.pricing-area .pricing-nav .single-price .button-subscribe button {
  width: 250px;
  height: 71px;
  border-radius: 16px;
  background-color: #0086ff;
}

.contact-area h3 {
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .contact-area h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-area h3 {
    font-size: 26px;
  }
}

.contact-area .contact-form-wrapper .contact-form button {
  font-weight: 700;
  padding: 17px 40px;
}

.contact-area .contact-form-wrapper .contact-form button.btn-hover::after {
  width: 40%;
  opacity: 0;
}

.contact-area
  .contact-form-wrapper
  .contact-form
  button.btn-hover:hover::after {
  opacity: 1;
  width: 100%;
}

.download-area {
  margin-bottom: -230px;
  position: relative;
  z-index: 9;
}

.download-area .download-wrapper {
  background-image: url("../images/download-bg.svg");
}

.download-area .download-wrapper .download-content {
  padding: 125px 0;
}

.download-area .download-wrapper .download-content .download-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.download-area .download-wrapper .download-content .download-btns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 30px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px rgba(123, 123, 123, 0.16);
  box-shadow: 0px 3px 6px rgba(123, 123, 123, 0.16);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #505478;
}

.download-area .download-wrapper .download-content .download-btns a:hover {
  color: #de5088;
}

.download-area
  .download-wrapper
  .download-content
  .download-btns
  a.btn-hover::after {
  background: rgba(222, 80, 136, 0.05);
}

.download-area .download-wrapper .download-content .download-btns a span.icon {
  font-size: 24px;
  margin-right: 20px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download-area .download-wrapper .download-content .download-btns a span.text {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}

.download-area
  .download-wrapper
  .download-content
  .download-btns
  a
  span.text
  b {
  font-size: 12px;
  font-weight: 400;
  display: block;
}

/* .hero-area { */
/* background-image: url("../images/hero-bg.png"); */
/* background-image: url("../images/homepage/banner-homepage.png"); */
/* padding-top: 65px; */
/* } */

/* Section App Footer Area */

.footer-area {
  /* background-image: url("../images/footer-bg.png"); */
  background-image: url("../images/homepage/banner-footer.png");
  padding-top: 65px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-area .image-footer-area .sub-title-footer-area {
  margin-top: -20px !important;
}

.footer-area .wrapper-quick-link {
  justify-content: center;
  display: flex;
}

.footer-area .wrapper-address {
  margin-top: 17px;
}

.footer-area .footer-widget {
  margin-bottom: 60px;
}

.footer-area .footer-widget .btn-footer-area {
  /* width: 286px; */
  /* height: 56px; */
  /* margin: 12px 168px 0 24px; */
  /* padding: 13px 85px 14px 86px; */
  border-radius: 10px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  background: rgb(0, 134, 255);
  background: linear-gradient(
    48deg,
    rgba(0, 134, 255, 1) 0%,
    rgba(0, 255, 133, 1) 100%
  );
  font-family: Helvetica;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  padding: 10px 50px;
}

.footer-area .footer-widget .wrapper-trial-footer-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-area .footer-widget h4 {
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-widget h4 {
    font-size: 18px;
  }
}

.footer-area .footer-widget a,
.footer-area .footer-widget p {
  font-size: 16px;
  line-height: 26px;
  color: #868aaa;
}

.footer-area .footer-widget ul li a {
  line-height: 32px;
}

.footer-area .footer-widget ul li a:hover {
  color: #de5088;
}

.footer-area .footer-widget .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer-area .footer-widget .social-links li {
  margin-right: 15px;
}

.footer-area .footer-widget .social-links li:last-child {
  margin-right: 0;
}

.footer-area .footer-widget .social-links li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  /* background: #fff; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /* justify-content: center; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: white !important;
}

.footer-area .footer-widget .social-links li a.facebook {
  color: #6598fe;
}

.footer-area .footer-widget .social-links li a.facebook:hover {
  background: #6598fe;
  color: #fff;
}

.footer-area .footer-widget .social-links li a.twitter {
  color: #5fc5f2;
}

.footer-area .footer-widget .social-links li a.twitter:hover {
  background: #5fc5f2;
  color: #fff;
}

.footer-area .footer-widget .social-links li a.instagram {
  color: #f70000;
}

.footer-area .footer-widget .social-links li a.instagram:hover {
  background: #f70000;
  color: #fff;
}

.footer-area .footer-widget .social-links li a.linkedin {
  color: #336db8;
}

.footer-area .footer-widget .social-links li a.linkedin:hover {
  background: #336db8;
  color: #fff;
}

.footer-area .footer-widget .subscribe-form {
  overflow: hidden;
}

.footer-area .footer-widget .subscribe-form input {
  padding: 17px 25px;
}

.footer-area .footer-widget .subscribe-form button {
  padding: 17px 40px;
  float: right;
  clear: both;
  font-size: 16px;
  font-weight: 700;
}

.footer-area .footer-cradit {
  padding: 35px 0;
  border-top: 1px solid rgba(134, 138, 170, 0.32);
}

.footer-area .footer-cradit p {
  color: #868aaa;
  font-size: 14px;
}

.footer-area .footer-cradit p a {
  color: #505478;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-area .footer-cradit p a:hover {
  color: #de5088;
}

.footer-area .logo {
  max-width: 250px;
}

.footer-area .wrapper-address .row-btn-trial {
  display: none;
}

.footer-area .footer-widget .social-link-mobile {
  display: none !important;
}

@media (max-width: 767px) {
  .footer-area {
    /* background-image: url("../images/footer-bg.png"); */
    background-image: url("../images/homepage/bg-footer-mobile.png");
    padding-top: 65px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .footer-area .image-footer-area .logo {
    width: 178px;
  }

  .footer-area .footer-widget a,
  .footer-area .footer-widget p {
    font-family: Helvetica;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
  }
  .footer-area .row-btn-trial-desktop {
    display: none;
  }
  .footer-area .footer-widget .social-links {
    display: none !important;
  }
  .footer-area .footer-widget .social-link-mobile {
    margin-top: -15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    display: flex !important;
  }
  .footer-area .footer-widget .social-link-mobile li {
    width: 60px;
  }
  .footer-area .wrapper-address .row-btn-trial {
    display: flex;
    margin-top: -52px;
    margin-bottom: 20px;
  }
  .footer-area .wrapper-address .wrapper-trial-footer-area-1 .title-trial {
    width: 100%;
    height: 21px;
    margin: 32px 19px 16px 0;
    font-family: Helvetica;
    font-size: 17px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
  }
  .footer-area .wrapper-address .footer-widget .title-company {
    font-size: 18px !important;
  }
  .footer-area .wrapper-address .btn-footer-area-1 {
    border-radius: 10px;
    box-shadow: 3px 3px 6px 0 rgb(0 0 0 / 16%);
    background: rgb(0, 134, 255);
    background: linear-gradient(
      48deg,
      rgba(0, 134, 255, 1) 0%,
      rgba(0, 255, 133, 1) 100%
    );
    font-family: Helvetica;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 5px 30px;
    margin-left: 22px;
  }
  .footer-area .wrapper-quick-link h4 {
    font-size: 18px !important;
  }
}
/*# sourceMappingURL=style.css.map */

/* End Section Footer Area */

.cookiealert {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
  width: 100%;
  margin-top: 100px;
  z-index: 9999999999;
}

.hero-area .hero-content h2,
.hero-area .hero-content h3,
.hero-area .hero-content p {
  text-shadow: 0.5px 0.5px blue !important;
}
button[data-action="start"],
button[data-action="stop"] {
  display: none !important;
}

.caption-package .detail-package,
.caption-package .detail-package-advance {
  background: #fff;
  padding: 30px 40px;
}
.caption-package .detail-package ul,
.caption-package .detail-package-advance ul {
  height: 150px;
  overflow: hidden;
}
.caption-package .detail-package ul li,
.caption-package .detail-package-advance ul li {
  margin-bottom: 15px;
  position: relative;
}
/* .caption-package .detail-package ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bfbfbf;
} */
.caption-package .detail-package ul.active,
.caption-package .detail-package-advance ul.active {
  height: auto;
}

.caption-package .detail-package .icon-package,
.caption-package .detail-package-advance .icon-package-advance {
  margin-right: 10px;
  color: #00ff85;
}
.caption-package .detail-package .toggle_btn button.btn-package,
.caption-package
  .detail-package-advance
  .toggle_btn
  button.btn-package-advance {
  margin-top: 20px;
  width: 200px;
  height: 40px;
  border-radius: 16px;
  box-shadow: 5px 6px 13px 0 rgba(0, 0, 0, 0.16);
  background-color: #e2e2e2;
}

@media (max-width: 1199.98px) {
  .single-price .image-pricing img {
    max-width: none;
  }
  .pricing-area .pricing-nav .single-price .button-subscribe button,
  .pricing-area .pricing-nav .single-price .button-subscribe .btn-advance {
    width: 200px !important;
    height: 60px !important;
  }
  .pricing-area .pricing-nav .single-price .package-name {
    font-size: 38px !important;
  }
  .pricing-area
    .pricing-nav
    .single-price
    .package-name
    span.pricing-line-first,
  .pricing-area
    .pricing-nav
    .single-price
    .package-name
    span.pricing-line-second {
    top: 19px !important;
  }
}

body.hire_us {
  font-family: Helvetica;
}
.pricing-area h3,
.pricing-area h4 {
  font-family: Helvetica;
}

/* custom css */

#background-video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.hero-area {
  padding-top: 0px !important;
}
.hero-area .content {
  position: absolute;
  top: 35%;
  left: 5%;
}

@media only screen and (max-width: 768px) {
  .hero-area .content {
    position: absolute;
    top: 45%;
    left: 5%;
  }
  .hero-area .hero-content .hero-btns .main-btn {
    margin: 0px !important;
  }
}

/* feature section */
.feature-area {
  background: linear-gradient(
    0deg,
    rgba(0, 151, 238, 1) 64%,
    rgba(0, 34, 101, 1) 99%
  );
}

.accordion-content {
  color: #fff !important;
}

.accordion-btn button {
  color: #fff !important;
}

/* how to section */
.btn-how-to {
  width: 215px !important;
}

/* CTA section */
.cta-area {
  background-image: url("../images/homepage/banner-free-trial.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 772px;
}

/* contact section */
.btn-contact {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 30px;
}
input.contact,
textarea.contact {
  border-radius: 30px;
}
