@import url("https://fonts.googleapis.com/css2?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");


body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

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

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

ul>li{
  display: block;

}

ul{
  padding-left: 0;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #7335b7;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          background-color: transparent;
          background-image: radial-gradient(at top left, #301544 10%, #DB0072 100%);
      
  border-radius: 0 0 350px 0;
}

.sub_page .hero_area {
  min-height: auto;
  border-radius: 0 0 45px 0;
}

.header_section {
  padding: 10px 0;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #FFFFFF1F;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

.custom_nav-container {
  padding: 0;
}

/* .custom_nav-container .navbar-nav {
  margin: auto;
} */



.app-logo{
  padding: 20px 0;
}

.btn-default {
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #02010100;
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #DD96CA;
  border-radius: 8px 8px 8px 8px;
  padding: 12px 12px 12px 12px;
  font-weight: 500;
  font-size: 15px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* .custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #000000;
  background-color: #ffffff;
} */

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #DB0072;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: #DB0072;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DB0072;
}

.quote_btn-container .quote_btn:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}


.introduction .sub_heading{
  color: #DB0072; /* Pink color */
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
}

.introduction p{
  font-size: 16px;
  margin: 20px 0px 0px 0px;
  color: #3A3A3A;
  line-height: 24px;
  margin-bottom: 20px;
}

.introduction .title-heading {
  font-weight: 700;
  font-size: 42px;
  margin: 0px 0px 15px 0px;
  line-height: 1.2em;
}

.introduction ul li .fa{
  color: #DB0072;
  font-weight: 500;
}

.introduction ul li span{
  font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #292929;
    line-height: 1.2em;
}

.introduction ul{
  padding-bottom: 20px;
}
.introduction .intro img{
  width: 78%;
}
.ratings-box {
  background-color: #FDE7F0 !important; /* Light pink background */
  display: flex ;
  justify-content: space-around !important;
  align-items: center !important;
  padding: 1.8rem !important;
  border-radius: 1rem !important;
}

.rating-item {
  flex: 1;
  text-align: left;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000; /* Black color */
}

.rating-stars {
  font-size: 1rem;
}

.text-pink {
  color: #FF4081; /* Pink color */
}

.rating-text {
  font-size: 1rem;
  color: #6c757d; /* Grey color */
}

.separator {
  height: 3rem;
  width: 1px;
  background-color: #FF4081; /* Pink color */
  margin: 0 1rem;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0 100px;
    background-size: cover;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin: 0px 0px 20px 0px;
  font-size: 60px;
  font-family: Poppins;
  font-weight: 700;
}

.slider_section .detail-box p {
    margin: 0px 0px 20px 0px;
    font-size: 15px;
    font-family: Poppins;
    line-height: 26px;
    font-weight: 500;
}


.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 35px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 160px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  background-color: #DB0072;
  color: #ffffff;
  border-radius: 25px 25px 25px 25px;
    padding: 14px 26px 14px 26px;
  -webkit-transition: all 0.3s;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.slider_section .detail-box .btn-box .btn1:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.slider_section .img-box img {
  width: 60%;
}

.slider_section .img-box{
  text-align: center;
}


.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23px;
  background-color: #DB0072;
}

.service_section {
  text-align: center;
  position: relative;
  bottom: 145px;
}

.service_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background-color: #ffffff;
  height: 350px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  z-index: 1;
  transition: all 0.3s;
}
.service_section .box::before {
  content: "";
  background-image: url('../images/appa-img25.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
  
}


.header-section {
  background-color: #d81b60;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}
.card-custom {
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #fff;
margin-bottom: 20px;
padding: 50px;
text-align: left;
height: 380px;
}
.card-custom .icon {
  /* font-size: 50px; */
  margin-bottom: 20px;
}

.icon-chat img{
  width: 60px;
}

.card-title {
margin-bottom: 20px;
font-weight: 600;
font-size: 20px;
}
.card-text {
  font-size: 15px;
  color: #3c4249;
}
.card-number {
color: #D9D9D9;
font-weight: bold;
}


.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 20px 0;
  padding: 30px;
}

.card-number {
  font-size: 3rem;
  color: #D9D9D9;
  position: absolute;
  right: 30px;
}
.choose-box{
  text-align: left;
  padding-left: 20px;

}
.choose-box span{
  color: #F8F8F8;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
}

.choose-box h1{
  margin: 15px 0px 15px 0px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
}

.choose-box p{
  font-size: 16px;
    line-height: 24px;
    color: #D9D9D9;
    margin-bottom: 25px;
  }

.choose-section{
  padding-top: 100px;
  padding-bottom: 0px;
}

.choose-your {
  background-color: #5E2B88;
  color: white;
  padding: 55px;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  z-index: 1;

}
.app-images img {
  width: 100%;
  max-width: 475px;
  position: absolute;
  margin: 10px;
  left: 0;
  right: 0;
  bottom: -130px;
  z-index: 1;
}
.app-link img {
  width: 150px;
}


.service_section .box .img-box {
  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;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
}

.service_section .box .detail-box a {
  color: inherit;
}

/* .service_section .box:hover {
  color: #ffffff;
} */

/* .service_section .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
          background-color: transparent;
          background-image: radial-gradient(at top left, #301544 10%, #DB0072 100%);
} */


/* .service_section .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
} */

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #7335b7;
}

.service_section .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}



.case_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.case_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}

.case_section .box .img-box {
  position: relative;
}

.case_section .box .img-box img {
  width: 100%;
}

.case_section .box .detail-box {
  padding: 25px;
}

.case_section .box .detail-box h5 {
  font-weight: bold;
}

.case_section .box .detail-box p {
  font-size: 15px;
}

.case_section .box .detail-box a {
  color: #7335b7;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0;
  text-align: center;
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  position: relative;
  margin-bottom: -62.5px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #7335b7;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #7335b7;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #DB0072;
}


.footer_container {
  background-image: radial-gradient(at top left, #301544 100%, #DB0072 100%);
  color: #ffffff;
  /* padding-top: 90px; */
}

.footer_container .footer{

    color: white;
    padding-top: 90px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 17px;
  color: #D9D9D9;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #D9D9D9;
}

.info_contact p{
  color: #D9D9D9;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
  color: #DB0072;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #DB0072;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  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;
  color: #D9D9D9;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #DB0072;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 8px;
      border-bottom: 1px solid #5f5959;
      color: #D9D9D9;
      padding-bottom: 8px;
      font-size: 16px;
      font-weight: 500;
      text-transform: capitalize;
  
}

.info_detail p{
  padding-top: 40px;
  color: #D9D9D9;
}

.info_section .info_links a:hover {
  color: #DB0072;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #DB0072;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DB0072;
  margin-top: 15px;
}

.info_section form button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  text-align: center;

}

.footer_section p {
    border-top: 1px solid #5f5959;
    padding: 25px 0;
    color: #D9D9D9;
    font-size: 14px;
    margin: 40px 0 0 0;

}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

.back-image{
  position: relative;
  bottom: 140px;
}
.back-image img{
width: 100%;
}



.section-box .shop-right-img img{
  width: 100%;
  height: 180px;
  object-fit: contain;
}
.section-box{
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;

}

.shop-align{
  align-items: center;
  display: flex;
}

.shop-now h1{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.shop-btn{
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2em;
}

.shop-btn:hover{
color: #d81b60 !important;
}

.section-box .shop-backgroung{
  box-shadow: 5px 10px 29px -10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 10px 40px 10px 40px;
background-color: #632D8B;
border-radius: 15px;
margin: 10px;
}

.testimolial-bg{
  background-image: url('../images/appa-img1.png');
  background-position: center center;
  height: 500px;
  background-repeat: no-repeat;

  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}


.shape .shape-fill {
  fill: #F8F8F8;
  transform-origin: center;
  transform: rotateY(0deg);
}
.shape svg {
  display: block;
  width: calc(100% + 1.3px);
  position: absolute;
  left: 50%;
  z-index: 1 !important;
  transform: translateX(-50%);
}
.shape-bottom svg {
  height: 50px;
}
.shape-bottom:not([data-negative=true]) svg {
  z-index: -1;
}
.shape[data-negative=false].shape-bottom {
  transform: rotate(180deg);
}

.elementor-section{
  background: #f8f8f8;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 140px 15px 200px 15px;
}


/* .elementor-shape-bottom .elementor-shape-fill {
  fill: var(--e-global-color-ad41708);
} */

.subscribe-section  h1{
  margin: 15px 0px 15px 0px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
}

.subscribe-section  p{
  font-size: 16px;
    line-height: 24px;
    color: #D9D9D9;
    margin-bottom: 25px;
  }

.subscribe-section {
  padding-top: 0px;
  padding-bottom: 0px;
}

.subscribe-section  .choose-features {
  background-color: #5E2B88;
  color: white;
  padding: 55px;
  text-align: center;
  background-size: cover;
  background-position: center;
  height: 450px;
  position: relative;

}


.subscribe-section .form-control {
  border-radius: 50px;
  padding: 25px;
  background: transparent;
  width: 380px;
  color: #fff;
  border-color: #FFFFFF;
  display: inline-block;
}

.subscribe-section .btn-subscribe {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 15px 42px;
  border-radius: 50px;
  margin-left: 10px;
}
input::placeholder {
  opacity: 0.5;
  color: rgb(174, 168, 168) !important;
}

.testimolial-content .sub_heading{
  color: #DB0072;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
}

.testimolial-content .text{
  color: #000;
  margin: 0px 0px 15px 0px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2em;
}

.testimolial-content .description{
  font-size: 16px;
  margin: 0px 185px 0px 185px;
  color: #3A3A3A;
  line-height: 24px;
}

.review-box{
  margin: -40px 20px 0px 20px;

    padding: 50px 50px 35px 50px;
    background-color: #fff;
    background-image: url('../images/appa-img32.png');
    background-position: 95% 100%;
    background-repeat: no-repeat;
    border-radius: 25px 25px 25px 25px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
}

.review-box .image-wraper img{
  border-radius: 100px;
}
.review-box .image-wraper{
  border-radius: 100px;
  position: absolute;
  top: -75px;
  left: 0;
}

.review-box p{
  font-size: 15px;
  color: #686262;
  font-weight: 400;
}

.review-box1{
  margin: 20px 0px 0px 20px;
    padding: 50px 50px 35px 50px;
    background-color: #fff;
    background-image: url('../images/appa-img32.png');
    background-position: 95% 100%;
    background-repeat: no-repeat;
    border-radius: 25px 25px 25px 25px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
}

.review-box1 .image-wraper1 img{
  border-radius: 100px;
}
.review-box1 .image-wraper1{
  border-radius: 100px;
  position: absolute;
  top: -20px;
  left: 0;
}

.review-box1 p{
  font-size: 15px;
  color: #686262;
  font-weight: 400;
}


.shape svg {
  display: block;
  width: calc(100% + 1.3px);
  position: absolute;
  left: 50%;
  z-index: 1 !important;
  transform: translateX(-50%);
}
.shape-top svg {
  height: 50px;
}
.shape-top:not([data-negative=true]) svg {
  z-index: -1;
}
.shape[data-negative=false].shape-top {
  transform: rotate(0deg);
}


.stats-section {
  background-color: #6a1b9a;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-radius: 15px;
  height: 470px;
}
.stats-section img{
  width: 70px;
  padding-bottom: 15px;
}

.stats-section .stat-item {
  margin-bottom: 30px;
}
.stats-section .stat-item i {
  font-size: 48px;
  color: #ff4081;
  margin-bottom: 15px;
}
.stats-section .stat-item h3 {
  font-size: 60px;
  font-weight: bold;
}
.stats-section .stat-item p {
  font-size: 18px;
  margin: 0;
}
.phone-image {
  position: relative;
  top: -190px;
  width: 100%;
  z-index: 1;
}

.checkout-content .sub_heading{
  color: #DB0072;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
}

.checkout-content .text{
  color: #000;
  margin: 0px 0px 15px 0px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2em;
}

.checkout-content .description{
  font-size: 16px;
  margin: 0px 185px 0px 185px;
  color: #3A3A3A;
  line-height: 24px;
}

.checkout-bg{

  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 40px 15px 40px 15px;
  margin-top: 50px;
}
.checkout-section{
  background-image: url('../images/slider-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}







#news-slider{
  margin-top: 80px;
}
.post-slide{
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 1px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
}
.post-slide .post-img{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: -10px;
}
.post-slide .post-img img{
  width: 100%;
  height: auto;
  transform: scale(1,1);
  transition:transform 0.2s linear;
}
.post-slide:hover .post-img img{
  transform: scale(1.1,1.1);
}
.post-slide .over-layer{
  width:100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  opacity:0;
  background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%);
  transition:all 0.50s linear;
}
.post-slide:hover .over-layer{
  opacity:1;
  text-decoration:none;
}
.post-slide .over-layer i{
  position: relative;
  top:45%;
  text-align:center;
  display: block;
  color:#fff;
  font-size:25px;
}
.post-slide .post-content{
  background:#fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}
.post-slide .post-title a{
  font-size:15px;
  font-weight:bold;
  color:#333;
  display: inline-block;
  text-transform:uppercase;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover{
  text-decoration: none;
  color:#3498db;
}
.post-slide .post-description{
  line-height:24px;
  color:#808080;
  margin-bottom:25px;
}
.post-slide .post-date{
  color:#a9a9a9;
  font-size: 14px;
}
.post-slide .post-date i{
  font-size:20px;
  margin-right:8px;
  color: #CFDACE;
}
.post-slide .read-more{
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196F3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}
.post-slide .read-more:hover{
  background: #3498db;
  text-decoration:none;
  color:#fff;
}
.owl-controls .owl-buttons{
  text-align:center;
  margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev{
  background: #fff;
  position: absolute;
  top:-13%;
  left:15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next{
  background: #fff;
  position: absolute;
  top:-13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
  content:"\f104";
  font-family: FontAwesome;
  color: #333;
  font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
  content:"\f105";
}
@media only screen and (max-width:1280px) {
  .post-slide .post-content{
      padding: 0px 15px 25px 15px;
  }
}


.shape1 .shape-fill1 {
  fill: #fff;
  transform-origin: center;
  transform: rotateX(180deg);
}
.shape1 svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  z-index: 1 !important;
  transform: translateX(-50%);
}
.shape-bottom1 svg {
  height: 50px;
}
.shape-bottom1:not([data-negative=true]) svg {
  z-index: -1;
}
.shape1[data-negative=false].shape-bottom1 {
  transform: rotate(180deg);
}

.back-image1{
  position: absolute;
  z-index: 0;
  bottom: -60px;

}
.back-image1 img{
width: 100%;
}

.client-counter{
  position: relative;
}

.privacy_area{
  position: relative;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: transparent;
  background-image: radial-gradient(at top left, #632D8B 25%, #DB0072 100%);


}

.privacy_section{
  -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 100px 0;
}


.privacy_section .detail-box h1 {
  color: #fff;
  font-size: 60px;
  font-family: Poppins;
  font-weight: 700;
  text-align: center;
}

.description{
  padding-top: 20px;
}

.section-padding{
  padding-top: 60px;
  padding-bottom: 60px;
}

.privacy_contect .description h1{
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.privacy_contect .description a{
  color: #DB0072;
}

.description ul>li{
display: list-item !important;
}

.description ul{
  list-style: disc;
padding-left: 20px;
}


.contact {
  padding: 130px 0;
}

.contact .heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;

}

.contact .heading h2 span {
  color: #ff9100;
}

.contact .heading p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
}

.contact .form-control {
  padding: 25px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-radius: 10px;
}

.contact-bg{
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 50px 50px 50px 50px;
  background-color: #fff;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.contact button.btn {
  padding: 13px;
  border-radius: 50px;
  font-size: 15px;
  background: #DB0072;
  color: #ffffff;
}

.contact .title h3 {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2em;
  margin: 0px 0px 15px 0px;
}

.contact .title p {
  font-size: 14px;
  font-weight: 400;
  color: #3A3A3A;
  line-height: 1.6;
  margin: 0 0 40px;
}

.contact-bg{
  color: #DB0072;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
}

.contact .content .info {
  margin-top: 30px;
  display: flex;
    align-items: start;
}
.contact .content .info i {
  font-size: 30px;
  padding: 0;
  margin: 0;
  color: #632D8B;
  margin-right: 20px;
  text-align: center;
  width: 20px;
}
.contact .content .info h4 {
  font-size: 20px;
  line-height: 1.2;
  margin-left: 15px;
  color: #111111;
  font-weight: 600;
}

.contact .content .info h4 span {
  font-size: 13px;
  font-weight: 300;
  color: #999999;
}
.content .info span a{
color: #999999 !important;
}

.content .info span a:hover{
  color: #DB0072 !important;
  }

  .swiper-container {
    width: 80%;
    margin: auto;
}

/* .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.swiper-slide img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.swiper-slide-active img {
    transform: scale(1.2);
} */
.card1 .card-image{
  border: none;
  border-radius: 15px;
  /* margin: 20px 0; */
  margin: 45px;
}


.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

.swiper-slide.swiper-slide-active {
  background-image: url('../images/appa-img2.png ');
  width: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* This ensures the background image is fixed */
}

.swiper-slide-active .card-image{
  margin: 22px;
}

.btn:hover {
  color: #ffffff;
  text-decoration: none;
}