/*
========== INDEX OF CSS ==========
01: WEB FONTS
02: CSS VARIABLES
03: RESET CSS
04: BODY CSS
05: COMMON CSS
06: NAVIGATION BAR
07: HOME SECTION
08: COUNTER SECTION
09: FEATURES SECTION
10: ABOUT-HOW ITS WORKS
11: TESTIMONIALS SECTION
12: VIDE0 SECTION
13: PRICING AND PLANS
14: CONTACT
15: FOOTER
*/

/* =====================
01: Web Fonts
===================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&family=Ubuntu:wght@300;400;500;700&display=swap");

/* =======================
02: Css Variables
=========================== */
:root {
  --white-color: #edf2fc;
  --white-color-2: #fafafa;
  --font-color: #212121;
  --paragraph-color: #444444;
  --primary-color: #0b84f5;
  --gray-color: #444;
  --button-gradient: linear-gradient(to top, #0b84f5 0%, rgb(17, 88, 243) 100%);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --bg-card-shadow: 0 2rem 5rem rgb(0, 0, 0, 0.06);
  --nav-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
}
/* ======================
03: Reset CSS
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  transition: all 0.4s ease-in-out;
}

/* =========================
04: Body CSS
=========================== */
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--white-color);
  color: var(--font-color);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.75rem;
  overflow-x: hidden !important;
}
body::-webkit-scrollbar {
  background: #383838;
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #6b6b6b;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #383838;
}

/* =========================
05: Common CSS
======================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}
h1 {
  font-size: 3.563rem;
  line-height: 4.563rem;
  letter-spacing: 0.125rem;
}
h2 {
  font-size: 2.875rem;
  line-height: 3.75rem;
}
h3 {
  font-size: 1.563rem;
  line-height: 2.375rem;
}
h5 {
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 2.5rem;
}
p {
  margin-bottom: 0;
  color: var(--paragraph-color);
  letter-spacing: 0.1rem;
  word-spacing: 0.1rem;
}
section,
.section {
  position: relative;
  padding-top: 3rem;
}
.section_heading h1 {
  padding: 1rem 0;
  position: relative;
}
.section_heading h1::after {
  content: "";
  width: 6rem;
  height: 0.3rem;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 40%;
  text-align: center;
  border-radius: 10px;
}
.section_heading p {
  margin-top: 1rem;
  font-size: 1rem;
}
.container {
  width: 100%;
  margin: 0 auto;
}
a {
  font-family: "Montserrat", sans-serif;
  color: var(--gray-color);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a:hover,
a:focus {
  color: var(--primary-color);
}
a,
a:hover,
a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
  --webkit-box-shadow: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
ol li,
ul li {
  list-style: none;
}
button,
button:focus {
  font-family: "Montserrat", sans-serif;
  outline: none;
  box-shadow: none;
}
img {
  height: auto;
  max-width: 100%;
}
.btn {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--white-color);
  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(--button-gradient);
}
.btn:hover {
  color: var(--white-color);
  box-shadow: var(--shadow);
}
i {
  font-size: 1rem;
}

/* =========================
06: NAVIGATION BAR
======================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  background: transparent;
  --webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar .navbar-nav .nav-link {
  padding: 1rem 0.8rem;
  color: var(--font-color);
  text-transform: capitalize;
  transition: 0.3s;
  font-size: 0.95rem;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:active {
  font-weight: bold;
  color: var(--primary-color) !important;
}
.navbar-brand {
  padding: 1rem 0;
  width: 12%;
}
/* on scroll fixed behaviour */
.navbar-sticky {
  transition: none;
  -webkit-transition: none;
}
.navbar-sticky-transitioned {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar-sticky-moved-up {
  position: fixed;
  top: 0;
  background: var(--white-color);
  margin-top: -6.25rem;
}
.navbar-sticky-on {
  margin-top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  box-shadow: var(--nav-shadow);
  --webkit-box-shadow: var(--nav-shadow);
}

/* ========================
07: HOME SECTION
=========================== */
#home {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0) url(../images/background/background.jpg)
    no-repeat;
  background-size: cover;
}
#home h2 {
  font-weight: bold;
}
#home h2 span {
  color: var(--primary-color);
}
#home .home-download-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#home .home-download-btn i {
  margin-right: 0.5rem;
}
#home .home-download-btn .btn {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .home-download-btn .btn:first-child {
  margin-left: 0;
}
#home .home-download-btn .btn:hover {
  transform: translateY(-0.313rem);
  --webkit-transition: all 0.5s ease-out;
  --moz-transition: all 0.5s ease-out;
  --ms-transition: all 0.5s ease-out;
  --o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.home-image {
  text-align: right;
}
.home-image img {
  animation: float 3s linear infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(-2rem);
  }
}

/* =========================
08: COUNTER SECTION
============================= */
.counter-section {
  margin: 8% auto 0 auto;
}
.icon-box {
  border: 1px solid rgb(5, 63, 88);
  height: 5.5rem;
  width: 5.5rem;
  margin: 0.5rem auto;
  transform: rotate(45deg);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box .fas {
  font-size: 2.3rem;
  color: var(--primary-color);
  transform: rotate(-45deg);
}
.counter-section .counter-box p {
  margin: 1rem 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.counter-section .counter-box .counter {
  font-size: 3.3rem;
}
.counter-section .counter-box .counter-qu {
  font-size: 3.3rem;
}

/* =========================
09: FEATURES SECTION
======================= */
.features {
  background-color: var(--white-color-2);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border-top: 5px solid var(--white-color);
  transition: all 0.4s ease-in-out;
  margin: 1rem 0;
}
.features:hover {
  transform: translateY(-3%);
  border-top: 5px solid var(--primary-color);
}
.features .feature-icon img {
  width: 40%;
  padding: 0.5rem;
}

/* ========================
10. ABOUT - How It Works
=========================== */
#about {
  background: linear-gradient(
      0deg,
      rgba(7, 162, 235, 0.2),
      rgba(14, 155, 250, 0.3)
    ),
    url(../images/background/about.png) no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  padding-bottom: 0.5rem;
}
.steps {
  display: flex;
  box-shadow: var(--nav-shadow);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 2rem 2rem 2rem 0;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease-in-out;
}
.steps:hover {
  border-bottom: 5px solid var(--primary-color);
}
.steps .icon {
  margin-right: 1.5rem;
  margin-top: 0.5rem;
}
.steps .icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}
.steps .info h5 {
  color: var(--font-color);
  font-size: 1.3rem;
  margin-bottom: 0;
}
.steps .info p {
  color: var(--font-color);
}

/* ==============================
11. TESTIMONIALS SECTION
============================= */
.swiper-container {
  width: 100%;
  padding: 3.125rem 0;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 30%;
  box-shadow: 0 15px 50px rgb(0, 0, 0, 0.2);
  filter: blur(2px);
  border-radius: 0.625rem;
  background: #e4e8ec;
}
.swiper-slide-active {
  filter: blur(0px);
  background: var(--white-color-2);
}
.testimonialBox {
  position: relative;
  width: 100%;
  padding: 2.5rem;
  padding-top: 5.625rem;
  color: #999;
}
.testimonialBox .quote .fas {
  position: absolute;
  top: 1.25rem;
  right: 1.875rem;
  opacity: 0.2;
  font-size: 2rem;
}
.testimonialBox .details {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}
.testimonialBox .details .imgBox {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.625rem;
}
.testimonialBox .details .imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonialBox .details h3 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.063rem;
  color: #2196f3;
  line-height: 1.1rem;
}
.testimonialBox .details h3 span {
  font-size: 0.75rem;
  color: #666;
}

/* ==================================
12: VIDEO TUTORIAL SECTION
============================== */
#video {
  background: linear-gradient(to top, #021433 0%, #3ccfe9 100%);
  background-size: cover;
  height: 100%;
  width: 100%;
  padding: 2rem 0;
}
#video h3 {
  color: var(--white-color-2);
  font-size: 2rem;
  padding: 1rem 0;
}
#video i {
  text-align: center;
}
#video a i {
  font-size: 2rem;
  padding: 1.3rem;
  border-radius: 50%;
  color: var(--gray-color);
  background-color: var(--white-color);
  margin: 0.5rem auto;
}
#video a i:hover {
  color: rgb(194, 11, 11);
}
/* ==============================
13. PRICING AND PLANS SECTION
============================= */
.pricing-card {
  background-color: var(--white-color-2);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border-top: 5px solid var(--white-color);
  transition: all 0.4s ease-in-out;
  margin: 1rem 0;
}
.pricing-card:hover {
  transform: translateY(-3%);
  border-top: 5px solid var(--primary-color);
}
.pricing-card p {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
}
.active-card {
  transform: translateY(-5%);
  border-top: 5px solid var(--primary-color);
}
.pricing-card .feature-item {
  margin: 1rem auto;
  color: var(--paragraph-color);
}

/* =====================================
14: SUBSCRIBE OUR NEWSLETTER
=============================== */
#contact {
  background: linear-gradient(to top, #021433 0%, #3ccfe9 100%);
  background-size: cover;
  height: 100%;
  width: 100%;
}
#contact h3 {
  color: var(--white-color-2);
  font-size: 2rem;
}

/* =====================================
15: FOOTER SECTION
================================== */
.footer {
  background: rgba(0, 0, 0, 0) url(../images/background/footer.jpg) no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  padding-top: 2rem;
}
.footer h5 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}
.footer .about-section .logo {
  margin-bottom: 0.5rem;
}
.footer .about-section .logo img {
  width: 40%;
}
.footer .address ul li {
  margin: 0.5rem 0;
}
.footer .terms h4 {
  font-size: 1.3rem;
}
.copyright-section p {
  font-weight: 600;
}
