/*-----------------------------------------------------------------------------------

    Template Name: Twinsweb Landing Page
    Author: Dharmista Pandya

-----------------------------------------------------------------------------------

  CSS INDEX
  ===================

  01. Theme default CSS
  02. Header
  03. Hero
  04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
  COMMON css 
===========================*/

@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Maven+Pro:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


  @font-face {
  font-family: 'Atyp Display';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/AtypDisplay-Regular.ttf') format('truetype');
    }

    @font-face {
    font-family: 'Atyp Semibold Display';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/AtypDisplay-Semibold.ttf') format('truetype');
    }
    
html {
  scroll-behavior: smooth;
}

body, span {
  font-family: "Funnel Display", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #666;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1280px;
    }
}

* {
  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: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #505478;
  margin: 0px;
}

h1 {
  font-size: 62px;
  line-height: 1em;
}

h2 {
  font-size: 45px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }

}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 25px;
}

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: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #505478;
  margin: 0px;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important;
    background-image: linear-gradient(to right, #fff 0%, #fff 100%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtxt{
  color:#a7addf;
}

.gradient_txt{
     background-image: linear-gradient(to right, #0020D6 0%, #E359A5 100%, #E86D94 100%);
     -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.borderstyle{
    /*border:2px solid #0020D6;*/
    /*background: linear-gradient(to right, #0020D6 0%, #E359A5 100%, #E86D94 100%);*/
    /*padding:10px 20px;*/
}

.borderstyle span{
     background: linear-gradient(to right, #0020D6 0%, #E359A5 100%, #E86D94 100%);
     padding:4px;
     border-radius: 15px;
}

.inside_dark{
   color:#fff;
    background-color:#000;
    padding: 8px 20px;
    border-radius: 15px;
}

h2{
     background-image: linear-gradient(to right, #0020D6 0%, #0020D6 100%, #0020D6 100%);
     -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.blackbg{
  background:#000;
}

.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: #0020D6;
  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;
}

.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: 500;
  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: 10px 30px;
  font-size: 18px;
  border-radius: 10px;
  color: #fff!important;
  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 right,   #0020D6 0%,   #E359A5 100%,   #E86D94 100%);
}

.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%;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*===== 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 .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: spinner-linspin 1568.2353ms linear infinite;
  animation: spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .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 .spinner-left .spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #F9F9F9;
  -webkit-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner-right .spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #F9F9F9;
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes 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 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 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 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 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 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;
}

/*===== 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-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
}

.sticky .navbar {
  padding: 15px 0;
}

.navbar {
  padding: 20px 0px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 200px;
}

@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), (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: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.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), (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), (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0;
    color: #a7addf;
  }
}

.navbar-nav .nav-item a.active, .navbar-nav .nav-item a:hover {
  color: #DE5088;
}

.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: #DE5088;
}

/* ====== hero-area css ======== */
.hero-area {
  padding-top: 160px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
height: 100vh;
 align-items: center;
    display: flex;
}
.hide_web{
    display:none;
}

/* Tab banner*/
@media (max-width: 1024px) {
    
    h1 {
  font-size: 38px;
  line-height: 1em;
    }
    .hide_web{
    display:block;
    }
    .mob_bnr_video{
    width: -webkit-fill-available;
    /*padding-top:100px;*/
  }
    .video-bg{
    display:none;
    }
    .hero-area{
    background:#000;
    height: auto;
    }

    
}

@media(min-width:769px) and (max-width:884px){
    .download-area .download-wrapper{
    background-size: 165vh!important;
    }
}

/* Mobile banner*/
@media (max-width: 767px) {

 /*banner text size*/
  h1 {
  font-size: 38px;
  line-height: 1em;
}
.hide_web{
    display:block;
}
 .mob_bnr_video{
    width: -webkit-fill-available;
    /*padding-top:100px;*/
  }
.video-bg{
    display:none;
}
.hero-area{
    background:#000;
    height: auto;
}

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 180px;
  }
}

@media (max-width: 767px) {
  .hero-area {
    padding-top: 50px;
  }
  
  
}

.hero-area .hero-content {
  padding-bottom: 40px;
}

.hero-area .hero-content h2 {
  font-size: 28px;
  line-height: 65px;
/*  font-weight: 700;*/
/*  margin-bottom: 30px;*/
/*  text-transform: uppercase;*/
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-content h2 {
    font-size: 24px;
    line-height: 55px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-content h2 {
    font-size: 24px;
    line-height: 50px;
  }

}

.hero-area .hero-content p {
  font-size: 16px;
  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;
}

.hero-area .hero-content .hero-btns .watch-btn span {
  font-size: 18px;
  font-weight: 500;
  margin-left: 20px;
  display: inline-block;
  color: #505478;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.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;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.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;
}

@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-2 {
  bottom: 60px;
  right: -220px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-img .img-screen.screen-2 {
    bottom: 180px;
    right: -276px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-img .img-screen.screen-2 {
    bottom: 180px;
    right: -276px;
  }
}

.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 css ======== */
.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;
/*  box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.26);*/
}

@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;
}

.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;
}

/* ====== how-work-area css ======== */
@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;
}

@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 {
  width: 100%;
}

.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: #fff;
  -webkit-box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
  box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
}

.accordion-style .single-accordion .accordion-btn button {
  padding: 18px 30px;
  padding-right: 50px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: #fff;
  position: relative;
  white-space: normal;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #DE5088;
  width: 100%;
}

@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: #0020D6;
}

.accordion-style .single-accordion .accordion-btn button.collapsed::after {
  -webkit-transform: rotate(0deg) translateY(-50%);
          transform: rotate(0deg) 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(180deg) translateY(50%);
          transform: rotate(180deg) 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 css ======= */
.video-header {
  padding-top: 50px;
  padding-bottom: 80px;
  background-image: url("../images/grey-dot.png");
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .video-header {
    /*padding-bottom: 50px;*/
  }
  
  h3{
      font-size:18px;
  }
}

.video-frame {
  position: relative;
  margin: auto;
  margin-top: -120px;
  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-frame {
    margin-top: -150px;
  }
}

.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(#0020D6 0%, #f18da2 100%);
  color: #fff;
}

.video-frame a.btn-hover::after {
  width: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  background: rgba(255, 255, 255, 0.15);
}

.video-frame a.btn-hover:hover::after {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

/* ======== screenshot-area css ======= */
.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);
  border: 1px solid #6138c1;
    border-radius: 18px;
}

.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: 10px;
  height: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#dc4985), to(#f18da2));
  background: linear-gradient(#0020D6 0%, #f18da2 100%);
  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 css ========= */
.single-testimonial {
  padding: 48px 35px 35px;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  margin: 76px 0;
}

.single-testimonial svg {
  position: absolute;
  top: -76px;
  left: -76px;
  z-index: -1;
}

.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;
}

.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;
}

.single-testimonial .testimonial-header .client-info .client-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 20px;
}

.single-testimonial .testimonial-header .client-info .client-details h6 {
  font-size: 17px;
  font-weight: 600;
}

.single-testimonial .testimonial-header .client-info .client-details span {
  font-size: 14px;
  color: #868AAA;
}

.single-testimonial .testimonial-header .client-rating span {
  margin-left: 10px;
  font-size: 18px;
  color: #e96a20;
}

.single-testimonial .testimonial-header .client-rating span.not-rated {
  color: #dbbfae;
}

.single-testimonial .quote {
  margin-bottom: 20px;
}

.single-testimonial .quote i {
  font-size: 40px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-slider-wrapper .tns-controls {
  position: absolute;
  top: -20px;
  right: 0;
  left: auto;
  z-index: 9;
}

.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-slider-wrapper .tns-controls button:hover {
  color: #DE5088;
}

/* ======= pricing-area css ========== */
.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;
}

.pricing-area .single-price .package-details li {
  font-size: 16px;
  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%;
}

/* ====== contact-area css ======= */
.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 css ======== */
.download-area {
/*  margin-bottom: -230px;*/
  position: relative;
  z-index: 9;
}

.download-area .download-wrapper {
  background-image: url("../images/cta-bg.png");
  background-size: contain;
}

.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;
}

/* ======= footer-area css ======== */
.footer-area {
/*  background-image: url("../images/footer-bg.png");*/
/*  padding-top: 365px;*/
}

.footer-area .footer-widget {
  margin-bottom: 60px;
}

.footer-area .footer-widget .footer-logo {
  max-width: 150px;
}

.footer-area .footer-widget h4 {
  margin-bottom: 35px;
}

@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;
}

.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: #FF679D;
}

.footer-area .footer-widget .social-links li a.instagram:hover {
  background: #FF679D;
  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;
}


#clients img{
  width: 75%;
}

.single-screen img, #templates img{
  border-radius: 10px;
  cursor: pointer;
}

.hidden {
    display: none;
  }

  .layer {
    margin-top: 10px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 6px;
  }


/*  Comparsion */

  .comparison-section {
    padding: 72px 24px;
  }

  .comparison-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 72px;
  }

  .comparison-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex: 1;
    max-width: 403px;
  }

  .column-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 2.16px;
    text-align: center;
    margin: 0;
  }

  .title-outsourcey {
    background: linear-gradient(90deg, #6507ff 0%, #9023e0 51.44%, #e359a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .title-providers {
    background: linear-gradient(270deg, #c2c2c2 0%, #676767 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .vs-divider {
    padding-top: 20px;
  }

  .vs-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 31.2px;
    letter-spacing: 1.44px;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .feature-item {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 6px;
/*    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.14);*/
  }

  #comparison .feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .feature-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
  }

  @media (max-width: 992px) {
    .comparison-container {
      flex-direction: column;
      align-items: center;
      gap: 48px;
    }
    .comparison-column {
      width: 100%;
      max-width: 500px;
    }
    .vs-divider {
      padding-top: 0;
    }
  }


/* client logo for mobile */


  .client-slider {
    padding: 30px 0;
  }

  .client-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
  }

  .client-slider img:hover {
    transform: scale(1.05);
  }

  /* Make slides flex for 2 logos side-by-side */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
  }

  /* Each logo takes equal width in slide */
  .swiper-slide > div {
    flex: 1;
/*    display: table-cell;*/
  }

  /* Desktop view → 6 logos per row (grid-like) */
  @media (min-width: 992px) {
    .client-slider .swiper-wrapper {
      display: flex;
      flex-wrap: wrap;
/*      gap: 20px;*/
    }

   
    .client-slider .swiper-slide {
      flex: 0 0 calc(16.66% - 20px);
      display: block;
    }

    /* Disable Swiper functionality visually */
    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
/*      display: none !important;*/
    }
  }

  @media (max-width: 768px) {
      
    .column-reverse{
      flex-direction: column-reverse!important;
  }
      .swiper-slide > div {
    display: table-cell;
  }
  .download-area .download-wrapper {
/*    background-image: url(../images/download-bg.jpg);*/
    background-size: cover;
}

  }

/*.screenshot-area .screenshot-slider-wrapper .swiper-pagination-bullet*/
.client-slider .swiper-pagination-bullet {

    width: 10px;
    height: 10px;
}
.client-slider .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#dc4985), to(#f18da2));
    background: linear-gradient(#0020D6 0%, #f18da2 100%);
    opacity: 1;
    -webkit-transition: all 0.3s 
ease-out 0s;
    transition: all 0.3s 
ease-out 0s;
  }


  .video-bg {
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1; /* keeps video behind content */
    }

/*   Comparison Table*/

.comparison-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 0.75rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.5rem;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.comparison-table th:first-child {
/*  border: 0;*/
}

.comparison-table th:nth-child(2n) {
  box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.15);
}

.comparison-table th:nth-child(2n),
.comparison-table td:nth-child(2n) {
  position: relative;
  background: #fff;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

@media (min-width: 48rem) {
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }
}

@media (min-width: 60rem) {
  .comparison-table {
    font-size: 1rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem 2rem;
    text-align: center;
  }
}



 /* SCROLL REVEAL ANIMATION (Crucial for the Apple feel) */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            /* Smooth, controlled transition */
            transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* CARD STYLING - Subtle frosted glass effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }


/*    Tooltip    */

.info-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: Arial, sans-serif;
  color: #333;
}

.info-container .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* show above */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
}

.info-container .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%; /* arrow */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.info-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


/* Testimonial */

.testi_grid{
    background: url('../images/testimonial-bg.png');
    z-index: 1;
    position: relative;
    background-repeat: repeat;
    background-size: cover;
    padding: 30px;
}

.testi_grid .quote i {
    font-size: 40px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.testi_grid .testimonial-header{
    display: flex;
    justify-content: space-between;
}

.lni-star-filled:before{
  color: #e96a20;
}



/* 3 step slider*/

.pro-body {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pro-slide-next {
  display: inline-block;
  margin-left: auto;
  margin-top: 20px;
  font-size: 55px;
  font-weight: 700;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s ease;
  line-height: 1;
}

.pro-slide-next:hover {
  opacity: 1;
  transform: scale(1.1);
}

    .pro-slider {
      --accent: #0020D6;
      --radius: 18px;
      /*--card-bg: radial-gradient(circle at top, #1b2333 0%, #05060a 70%);*/
      /*--glass: rgba(10, 13, 22, 0.86);*/
      /*padding: 70px 20px 40px;*/
      /*background: radial-gradient(circle at top, #141b29 0%, #05060a 60%);*/
      color: #cfd2dd;
      font-family: system-ui, -apple-system, "Inter", sans-serif;
    }

    .pro-slider-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .pro-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1.5rem;
      margin-bottom: 28px;
    }

    .pro-head h2 {
      font-size: 2rem;
      line-height: 1.2;
      color: #fff;
      letter-spacing: 0.01em;
    }

    .pro-head p {
      font-size: 0.9rem;
      max-width: 320px;
      opacity: 0.8;
      font-family: "Funnel Display", sans-serif;
    }

    .pro-controls {
      display: flex;
      gap: 0.6rem;
      align-items: center;
    }

    .pro-nav-btn {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(10, 13, 22, 0.75);
      color: #fff;
      font-size: 1.3rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.25s ease;
      backdrop-filter: blur(12px);
    }

    .pro-nav-btn:hover:not(:disabled) {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
    }

    .pro-nav-btn:disabled {
      opacity: 0.35;
      cursor: default;
      box-shadow: none;
      transform: none;
    }

    .pro-track {
      position: relative;
      width: 100%;
      min-height: 520px;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .pro-card {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr)  minmax(0, 0.2fr);
      gap: 0;
      align-items: stretch;
      opacity: 0;
      pointer-events: none;
      /*transform: translateX(12px) scale(0.99);*/
      /*transition: opacity 0.35s ease, transform 0.35s ease;*/
      /*background: var(--card-bg);*/
      /*border-radius: var(--radius);*/
      /*border: 1px solid rgba(255, 255, 255, 0.08);*/
      /*box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);*/
    }

    .pro-card.is-active {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0) scale(1);
    }

    .pro-media {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius) 0 0 var(--radius);
      text-align:center;
      align-content: center;
    }

    .pro-media video,
    .pro-media img {
      width: 80%;
      height: auto;
     
    }

    .pro-card:hover .pro-media video,
    .pro-card:hover .pro-media img {
      /*transform: scale(1.05);*/
    }

    .pro-media::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.55;
      mix-blend-mode: multiply;
    }

    .pro-body {
      position: relative;
      padding: 24px 26px;
      /*background: linear-gradient(*/
      /*  145deg,*/
      /*  rgba(7, 10, 18, 0.96),*/
      /*  rgba(8, 17, 31, 0.96)*/
      /*);*/
      border-radius: 0 var(--radius) var(--radius) 0;
      display: flex;
      /*align-self: center;*/
      flex-direction: column;
      gap: 0.75rem;
    }

    .pro-pill {
      text-transform: uppercase;
      color: #0020D6;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #fff; /* inner background color */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 60px;
      font-weight: 600;
      color: #000;
      margin-bottom: 20px;
      /* Gradient border */
      border: 4px solid transparent;
      background-image: linear-gradient(#fff, #fff), 
                        linear-gradient(to right, #0020D6 0%, #E359A5 100%, #E86D94 100%);
      background-origin: border-box;
      background-clip: content-box, border-box;
      
    }

    /*.pro-pill-dot {*/
    /*  width: 6px;*/
    /*  height: 6px;*/
    /*  border-radius: 999px;*/
    /*  background: var(--accent);*/
    /*  box-shadow: 0 0 10px rgba(255, 107, 53, 0.7);*/
    /*}*/

    .pro-title {
      font-size: 1.7rem;
      /*color: #fff;*/
      letter-spacing: 0.02em;
    }

    .pro-desc {
      font-size: 1.2rem;
      line-height: 1.55;
      opacity: 0.86;
      max-width: 24rem;
      font-family: "Funnel Display", sans-serif;
    }

    .pro-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 0.5rem;
    }

    .pro-meta span {
      font-size: 0.8rem;
      padding: 6px 20px;
      border-radius: 999px;
      background: #79797a;
      /*border: 1px solid rgba(255, 255, 255, 0.06);*/
      color:#fff;
    }

    .pro-cta-row {
      margin-top: auto;
      display: flex;
      gap: 0.9rem;
      align-items: center;
    }

    .pro-btn {
      border: none;
      outline: none;
      border-radius: 15px;
      padding: 0.65rem 1.6rem;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: linear-gradient(to right, #0020D6 0%, #E359A5 100%, #E86D94 100%);
      color: #fff;
      /*box-shadow: 0 14px 30px rgba(255, 107, 53, 0.35);*/
      transition: 0.22s ease;
    }
    
    .pro-btn a{
        color:#fff;
    }

    .pro-btn span {
      font-size: 1.1rem;
    }

    .pro-btn:hover {
      transform: translateY(-1px);
      /*box-shadow: 0 18px 40px rgba(255, 107, 53, 0.45);*/
      background: #ff824f;
    }

    .pro-secondary {
      font-size: 0.8rem;
      opacity: 0.8;
    }

    .pro-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 18px;
    }

    .pro-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.24);
      cursor: pointer;
      transition: 0.25s ease;
    }

    .pro-dot.is-active {
      width: 26px;
      background: var(--accent);
      /*box-shadow: 0 0 18px rgba(255, 107, 53, 0.6);*/
    }

   
 @media (max-width: 900px) {
      .pro-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .pro-head h2 {
        font-size: 1.6rem;
      }

      /* Let the track grow with the slide instead of fixed height */
      .pro-track {
        min-height: 0;
        height: auto;
      }

      /* MOBILE: only active slide is displayed, no weird overlaps */
      .pro-card {
        position: relative;        /* no absolute stacking */
        inset: auto;               /* reset */
        grid-template-columns: 1fr;
        border-radius: var(--radius);
        opacity: 1;                /* always fully visible */
        transform: none;           /* no slide transform */
        pointer-events: auto;
        display: none;             /* hide by default */
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
      }

      .pro-card.is-active {
        display: grid;             /* only active slide is shown */
      }

      .pro-media {
        border-radius: var(--radius) var(--radius) 0 0;
        max-height: 240px;
        overflow: hidden;
      }

      .pro-body {
        border-radius: 0 0 var(--radius) var(--radius);
      }
    }

    @media (max-width: 600px) {
      .pro-slider {
        padding: 40px 16px 30px;
      }

      .pro-body {
        padding: 18px 16px 18px;
        align-items: center;
        text-align: center;
          
      }
      .pro-meta{
          text-align: center;
    justify-content: center;
      }

      .pro-title {
        font-size: 1.35rem;
      }

      .pro-desc {
        font-size: 0.88rem;
      }

      .pro-cta-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .pro-btn {
        width: 100%;
        justify-content: center;
      }

      .pro-controls {
        width: 100%;
        justify-content: space-between;
      }
    }


    
    /*Responsive*/
  
  /* Reset base margin/padding and box sizing — helps eliminate unexpected gaps */


@media (max-width: 884px) {
  .pro-slide-next {
    display: none !important;
  }
}



/*======= Benefit section =========*/

#benefits{
   background-image:  linear-gradient(to right, #0E0E0E 0%, #260A3B 100%, #741b4c 100%); 
    /*    background-image:url('../images/001.jpg');*/
    /*background-size: cover;*/
}

.benefit_img img{
    width: 50%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 1px 1px 36px -6px #0027ff;
    padding: 0;
}

.benefit_left{
    margin-top:-200px;
}

.benefit_right{
    margin-bottom:-200px;
    z-index:1;
    position:relative;
}

.benefit_left, .benefit_right {
   padding:30px;
   border-radius:10px;
}

 .bl_dark{
   background-image: linear-gradient(to right, #0020D6 0%, #E359A5 100%, #E86D94 100%);
   padding:6px;
}

 .bl_dark ul{
     border-radius:10px;
     list-style-type: square!important;
     background:#fff;
     padding: 20px 40px 20px 40px;
    /*background: rgba(255, 255, 255, 0.2);*/
    /*border-radius: 16px;*/
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
    /*backdrop-filter: blur(10px);*/
    /*-webkit-backdrop-filter: blur(5px);*/
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
 }
 
  .bl_dark ul li{
     font-size: 13px;
    color: #3c35a5;
 }
 
 @media (max-width: 1024px){

  .benefit_img img{
  width: 92%;
  padding: 20px;
  }

  .benefit_right, .benefit_left {
    margin-bottom: 0;
    margin-top:0;
  }

 }