/* 
================= :: INDEX OF CSS :: *********
:: 1.0 WEB FONTS
:: 2.0 GLOBAL Variable Define CSS
:: 3.0 COMMON CSS
:: 4.0 HEADER CSS
:: 5.0 HOME CSS
:: 6.0 COUNTER CSS
:: 7.0 PROMO CSS
:: 8.0 FEATURE CSS
:: 9.0 APP SCREENSHOTS CSS
:: 10.0 PRICING CSS
:: 11.0 CONTACT CSS
:: 12.0 FOOTER CSS
:: 13.0 SCROLL TOP CSS
:: 14.0 SOCIAL MEDIA ICONS
=============================== */

/* ===================================
       :: 1.0 WEB FONTS
==================================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ===================================
       :: 2.0 GLOBAL Variable Define CSS
==================================*/

* {
  margin: 0%;
  padding: 0%;
}
:root {
  /* Background Colors */
  --bg-white: #fff;
  --bg-black: #0a0b0c;
  --bg-light-pink: #ff007a;
  --bg-light-gray: #f6f9fe;
  --bg-gradient: linear-gradient(to top, #ff007a, rgba(142, 0, 116, 1) 100%);
  /* --bg-gradient: linear-gradient(to top, hsla(331, 100%, 50%, 1) 0%, hsla(240, 91%, 73%, 1) 100%); */
  --bg-card-shadow: 0 0.188rem 1.25rem 0px rgba(0, 0, 0, 0.06);
  --bg-card-shadow: 0 2rem 5rem rgb(0, 0, 0, 0.06);
  --bg-light-gray-1: #eee;

  /* Text Color */
  --primary-font: "poppins", sans-serif;
  --text-white: #fff;
  --text-black: #2c2c2c;
  --text-light-black: #444;
  --text-light-pink: #ff007a;
  --text-light-gray: #7e8085;
}

/* ===================================
       :: 3.0 COMMON CSS
==================================*/

body {
  font-family: var(--primary-font);
  font-size: 1rem;
  line-height: 1.75rem;
  background: var(--bg-white);
  color: var(--text-black);
  overflow-x: hidden;
}
h1 {
  color: var(--text-white);
  font-size: 3.563rem;
  line-height: 4.563rem;
  letter-spacing: 0.125rem;
  font-weight: 400;
}
h2 {
  color: var(--text-black);
  font-weight: 2.875rem;
  line-height: 3.75rem;
  font-weight: 400;
}
h3 {
  color: var(--text-black);
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 2.375rem;
}
h5 {
  color: var(--text-light-pink);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.063rem;
  line-height: 1.688rem;
  text-transform: uppercase;
}

section,
.section {
  position: relative;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--text-light-black);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:hover,
a:focus {
  color: var(--text-light-pink);
}

a,
a:hover,
a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

ol,
ul {
  margin: 0%;
  padding: 0%;
}

ol li,
ul li {
  list-style: none;
}

button,
button:focus {
  outline: none;
  box-shadow: none;
}

img {
  width: 100%;
  height: auto;
}

.btn {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1;
  text-align: center;
  padding: 1.125rem 1.875rem;
  border: 0 none;
  border-radius: 0.375rem;
  outline: 0 none;
  position: relative;
  z-index: 1;
}

.btn,
.btn:active,
.btn.sApp-btn:before,
.bg-overlay:after {
  background: var(--bg-gradient);
}

.btn:hover {
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
/* For Scroll Bar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-gradient);
}

/* SECTION PADDING */
.ptb_100 {
  padding: 100px 0;
}

/* ===========================================
   :: 4.0 HEADER CSS
================================================*/

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  animation: 0.3s;
  background: transparent;
}
.navbar .navbar-nav .nav-link {
  padding: 1.875rem 1.25rem;
  color: var(--text-white);
  text-transform: capitalize;
  transition: 0.3s;
}
.navbar-brand img {
  max-width: 50%;
}
.navbar-sticky .navbar-nav .nav-link:hover {
  color: var(--text-black);
  font-weight: 500;
  transition: all 0.5s ease-out;
}
/* On Scroll Fix Navbar */

.navbar-sticky-on .navbar-nav .nav-link:hover,
.navbar-sticky-on .navbar-nav .nav-link.active {
  color: var(--text-light-pink);
}

.navbar-sticky-on .navbar-nav .nav-link {
  color: var(--text-light-gray);
}

.navbar .navbar-brand-sticky {
  display: none;
}
.navbar-sticky-on .navbar-brand-regular {
  display: none;
}
.navbar-sticky-on .navbar-brand-sticky {
  display: inline;
}
.navbar-sticky {
  -webkit-transition: none;
  transition: none;
}
.navbar-sticky-transitioned {
  transition: 0.3s;
}
.navbar-sticky-moved-up {
  position: fixed;
  top: 0;
  background: var(--bg-white);
  margin-top: -0.25rem;
}
.navbar-sticky-on {
  margin-top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

/* ===========================================
   :: 5.0 HOME CSS
================================================*/
#home {
  min-height: 700px;
  height: 100%;
  background: rgba(0, 0, 0, 0) url(../images/bg.png) no-repeat scroll left center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  background-size: cover;
}
#home .home_text h2 {
  font-size: 3.938rem;
  font-weight: 700;
  line-height: 4.938rem;
  color: var(--text-white);
  padding: 1.063rem 0;
}
#home .home_text p {
  font-size: 1rem;
  color: var(--text-white);
  padding: 1.063rem 0;
}
#home .home-download-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#home .home-download-btn .btn {
  padding: 1rem 3rem;
  margin-left: 1.5rem;
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .home-download-btn .btn:first-child {
  margin-left: 0%;
}
#home .home-download-btn .btn:hover {
  transform: translateY(-0.313rem);
  transition: all 0.5s ease-out;
  -webkit-transform: all 0.5s ease-out;
}
#home .home-download-btn i {
  font-size: 1.688rem;
  margin-right: 0.688rem;
}
.home-image {
  text-align: right !important;
  transform: rotate(-345deg);
}
.home-image img {
  width: 70% !important;
  animation: float 3s linear infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3.5em);
  }
}
/* ===========================================
   :: 6.0 COUNTER CSS
================================================*/
.counter_area {
  padding: 6.875rem 1.875rem;
}
.single_counter {
  position: relative;
}
.single_counter span {
  font-size: 3rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.single_counter::after {
  position: absolute;
  content: "";
  height: 70%;
  width: 0.063rem;
  background-color: var(--bg-black);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.15;
}
.single_counter:last-child::after {
  display: none;
}

/* ===========================================
   :: 7.0 PROMO CSS
================================================*/

.promo_section {
  padding: 6.25rem 0 4rem;
}
.promo_section .section_heading {
  margin-bottom: 2.813rem;
}
.promo_section .section_heading > h2 {
  position: relative;
  padding-bottom: 2.5rem;
}
.promo_section .section_heading > h2::after {
  position: absolute;
  content: "";
  height: 0.125rem;
  width: 4.563rem;
  background: var(--bg-light-pink);
  bottom: 1.125rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.promo_section .section_heading h2 span {
  font-size: 2rem;
  font-weight: 400;
}
.single_promo_hover {
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  will-change: transform;
}
.single_promo_1 {
  box-shadow: 0 3px 20px 0px rgb(0 0 0 / 12%);
  border-radius: 1.5rem;
  padding: 1.875rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.single_promo_1::before {
  position: absolute;
  content: "";
  width: 0.063rem;
  height: 0.125rem;
  top: 0rem;
  left: 0rem;
  transition: all 0.2s ease-out;
}
.single_promo_1:hover::before {
  width: 100%;
  background: var(--bg-gradient);
}
.single_promo_hover:hover {
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 12%);
}
.single_promo_1 i {
  font-size: 30px;
  background-image: url(../images/promo-icon-bg.png);
  padding: 54px 0 57px 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
}
.single_promo_1 h5 {
  padding-bottom: 0.38rem;
}
.single_promo_1 p {
  font-size: 0.938rem;
  padding-top: 0.625rem;
}

/* ===========================================
   ::8.0 FEATURES CSS
================================================*/
#features {
  padding: 0.25rem 0 4rem;
}
#features .title {
  height: 800px;
  text-align: left;
  margin-top: 0;
  padding-top: 100px;
  background: url(../images/feature-bg.png) no-repeat center center;
  background-size: cover;
  -webkit-background-size: cover;
}
#features .title h2 {
  margin-bottom: 0.813rem;
}
.features_middle h2,
.features_middle p {
  color: var(--text-white);
}
.feature_img {
  text-align: right;
}
.feature_img img {
  max-width: 60%;
}
.margin_top_up {
  margin-top: -30rem;
}
.single_feature {
  background: var(--bg-white);
  margin-top: 1.875rem;
  padding: 2.5rem 2.5rem 2.438rem 3.125rem;
  position: relative;
  border-radius: 1.563rem;
  box-shadow: 0 0.938rem 2.5rem 0 rgb(0 0 0 / 8%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.feature_icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 0%;
  right: 0%;
  margin-left: 3px;
  color: var(--text-white);
  font-size: 23px;
  border-bottom-left-radius: 25px;
  background: var(--bg-gradient);
}
.single_feature:hover {
  background: var(--bg-gradient);
  color: var(--text-white);
}
/* ===========================================
   :: 9.0 APP-SCREENSHOTS CSS
================================================*/
#app-screenshot .section_heading {
  margin-bottom: 2.813rem;
}
#app-screenshot .section_heading > h2 {
  position: relative;
  padding-bottom: 2.5rem;
}
#app-screenshot .section_heading > h2::after {
  position: absolute;
  content: "";
  height: 0.125rem;
  width: 4.563rem;
  background: var(--bg-light-pink);
  bottom: 1.125rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.app-screen {
  padding-bottom: 5.313rem !important;
  cursor: pointer;
}
.app-screen .swiper-slide {
  width: 263px !important;
  height: auto;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
}
.swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--bg-light-pink);
}

/* ===========================================
   :: 10.0 PRICING SECTION CSS
================================================*/
#pricing .section_heading {
  margin-bottom: 2.813rem;
}
#pricing .section_heading > h2 {
  position: relative;
  padding-bottom: 2.5rem;
}
#pricing .section_heading > h2::after {
  position: absolute;
  content: "";
  height: 0.125rem;
  width: 4.563rem;
  background: var(--bg-light-pink);
  bottom: 1.125rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
#pricing .single_price {
  -webkit-box-shadow: 0 0.313rem 0.875rem rgb(45 49 54 /9%);
  box-shadow: 0 0.313rem 0.875rem rgb(45 49 54 /9%);
  text-align: center;
  padding: 2.5rem 0;
  position: relative;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
}
#pricing .single_price .month {
  background: var(--bg-gradient);
  color: var(--text-white);
  width: 6.25rem;
  padding: 0.625rem;
  transform: rotate(-90deg);
  position: absolute;
  top: 1.625rem;
  right: -0.563rem;
}
#pricing .single_price .month::before {
  content: "";
  top: 0.563rem;
  left: -0.938rem;
  background: var(--bg-light-pink);
  position: absolute;
  transform: rotate(45deg);
  padding: 0.938rem;
}
#pricing .single_price .icon_pad {
  width: 5rem;
  height: 4.87rem;
  margin: 2.5rem auto 3.25rem;
  border-right: dashed 0.313rem var(--bg-light-pink);
  border-bottom: solid 0.313rem var(--bg-light-pink);
  border-radius: 100%;
  padding-left: 0.563rem;
  padding-top: 0.438rem;
}
#pricing .single_price .icon_circle {
  background: var(--bg-light-pink);
  color: var(--text-white);
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 100%;
  margin: 0 0 0 -0.063rem;
  padding-left: 0.625rem;
  padding: 1.125rem;
  font-size: 1.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pricing .single_price .dollar h2 {
  font-weight: 700;
  font-size: 2.813rem;
}
#pricing .single_price .dollar span {
  font-weight: 600;
  vertical-align: super;
  padding-right: 0.125rem;
  font-size: 1.875rem;
}
#pricing .single_price li {
  padding: -0.313rem 0;
}
#pricing .single_price:hover {
  cursor: pointer;
  margin-top: -0.625rem;
}
.active_price {
  background: var(--bg-gradient);
  color: var(--text-white);
}
.active_price h5,
.active_price .dollar h2,
.active_price .dollar_sign {
  color: var(--text-white);
}

/* ===========================================
   :: 11.0 CONTACT CSS
================================================*/
.contact {
  background: var(--bg-light-gray);
}
.contact .info li i {
  color: var(--text-black);
  font-size: 1.5rem;
}
.contact .info li p a {
  font-size: 1rem;
  display: inline-block;
  margin: 0.75rem 0;
}
.contact .form-group {
  margin-bottom: 1.5rem;
}
.contact .form-control {
  height: 3.75rem;
  padding: 0.375rem 1.1875rem;
  border: none;
  font-size: 1rem;
  box-shadow: 0 0.1875rem 1.25rem 0 rgb(0 0 0 / 12%);
}
.contact .textarea {
  width: 100%;
  border-radius: 0.25rem;
  padding: 0.75rem 1.1875rem;
  border: none;
  font-size: 1rem;
  margin-top: 0.3125rem;
  box-shadow: 0 0.1875rem 1.25rem 0 rgb(0 0 0 / 12%);
}
.contact .textarea:focus {
  outline: none;
  border: none;
}

/* ===========================================
   :: 12.0 FOOTER CSS
================================================*/

.copyright {
  background: var(--bg-gradient);
}
.copyright p,
.copyright a {
  color: var(--text-white);
}

/* ===========================================
   :: 13.0 SCROLL TOP CSS
================================================*/

#scrollUp {
  position: fixed;
  left: 2%;
  bottom: 3%;
  height: 2.813rem;
  width: 2.5rem;
  border-radius: 0.25rem;
  text-align: center;
  cursor: pointer;
  z-index: 500;
  display: none;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  background: var(--bg-gradient);
}
#scrollUp i {
  line-height: 2.635rem;
  color: var(--text-white);
}
#scrollUp.scrollActive {
  display: block;
}

/* ===========================================
   :: 14.0 SOCIAL MEDIA ICONS
================================================*/

.socialmedia-toggle {
  visibility: visible;
  opacity: 1;
  bottom: 17px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  right: 23px;
  position: fixed;
  /* background: linear-gradient(270deg, #0090fd, #006afe) !important; */
  background: linear-gradient(270deg, #000000, #232323) !important;
  /* box-shadow: rgb(0 77 255 / 50%) 0px 2px 16px; */
  box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.75);
  text-align: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  z-index: 999;
}

.fa-plus {
  margin-top: 15px;
  font-size: 30px;
  display: block;
  color: white !important;
  cursor: pointer;
  -webkit-transition: 0.7s;
}

.menu_group {
  position: fixed;
  bottom: 2px;
  right: 7px;
  height: 100px;
  cursor: pointer;
  width: 100px;
  /* background: linear-gradient(270deg, #0090fd, #006afe); */
  background: linear-gradient(270deg, #000000, #232323) !important;
  border-radius: 250px 250px 250px 250px;
  z-index: 998;
  transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.menu_group a {
  position: absolute;
  display: inline-block;
  font-size: 12px;
  color: #364f6b;
}
.toggle_items:nth-child(1) {
  top: 8px;
  right: 33px;
}

.toggle_items:nth-child(2) {
  top: 20px;
  right: 63px;
}

.toggle_items:nth-child(3) {
  top: 50px;
  right: 69px;
}

.toggle_items:nth-child(4) {
  top: 31px;
  right: 77px;
}

.toggle_items:nth-child(5) {
  top: 49px;
  right: 77px;
}

.toggle_items:nth-child:hover {
  transform: scale(1.1);
}
#toggle-images1 {
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle-images1:hover {
  transform: scale(1.1);
}

#toggle-images2 {
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle-images2:hover {
  transform: scale(1.1);
}

#toggle-images3 {
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle-images3:hover {
  transform: scale(1.1);
}
