/* @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: 0;
}
h1 {
  font-size: 48px;
}
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: 28px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #505478;
  margin: 0;
}
svg {
  width: 35px;
  height: 35px;
}
.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: 0 0 51px rgba(180, 180, 180, 0.16);
  box-shadow: 0 0 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;
  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;
}
.back-to-top svg {
  width: 30px;
  height: 30px;
}
*:focus {
  outline: none;
}
.hidden {
  display: none;
}
.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);
}
.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;
  }
}
.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;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  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;
  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;
}

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

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

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

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

.pt-30 {
  padding-top: 30px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-90 {
  padding-bottom: 90px;
}

.header_navbar {
  position: absolute;
  background: transparent;
  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: rgba(255, 255, 255, 0.8);
  -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 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-brand {
  padding: 0;
}
.navbar-brand img {
  width: 50px;
  vertical-align: middle;
}
.navbar-brand b {
  color: #505478;
}
.navbar-brand b:hover {
  color: #505478;
}
@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: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 0;
  }
  .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: #505478;
  }
}
.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 {
  padding-top: 160px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 180px;
  }
}
@media (max-width: 767px) {
  .hero-area {
    padding-top: 130px;
  }
}
.hero-area .hero-content {
  padding-bottom: 80px;
}
.hero-area .hero-content h2 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  margin-bottom: 30px;
}
.hero-area .hero-content h4 {
  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;
}
.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;
}
.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;
}
@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 {
  width: 636px;
  height: 692px;
  position: relative;
}
.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: 123px;
  right: -476px;
}
@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: -474px;
  bottom: -375px;
}
@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: 0 -33px 51px rgba(209, 209, 209, 0.16);
  box-shadow: 0 -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: 0 0 51px rgba(165, 165, 165, 0.26);
  box-shadow: 0 0 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;
}
@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: 0 0 51px rgba(180, 180, 180, 0.16);
  box-shadow: 0 0 51px rgba(180, 180, 180, 0.16);
}
.accordion-style .single-accordion .accordion-btn button {
  padding: 18px 30px;
  padding-right: 50px;
  font-size: 23px;
  font-weight: 600;
  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: #de5088;
}
.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 {
  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-header {
  padding-top: 100px;
  padding-bottom: 180px;
  background-image: url(../images/video-bg.svg);
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .video-header {
    padding-bottom: 100px;
  }
}
.video-frame {
  position: relative;
  margin: auto;
  margin-top: -220px;
  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;
}
.video-frame span {
  position: relative;
}
.video-frame img {
  position: relative;
  z-index: 2;
}
.video-frame video {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 93%;
  height: 94%;
  border-radius: 50px;
  z-index: 4;
  background: #fff;
}
@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(#dc4985 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 {
  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;
  padding: 0 15px;
  -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: 0;
  -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%);
  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: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 248px;
}
.single-testimonial {
  padding: 28px 35px 35px;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  margin: 26px 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;
}
.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 .single-price {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 -31px 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0 -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: 0 0 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0 0 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: 0 0 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0 0 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 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%;
}
.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;
}
.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: space-around;
}
.social-links li {
  display: inline-block;
  margin-right: 15px;
}
.social-links li:last-child {
  margin-right: 0;
}
.social-links li img {
  width: 200px;
}
.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;
}
