@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");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  --main-background: #080a3d;
  --button-background: #060724;
  --primary-button-background: #12c4a0;
  --primary-color: #5e5e72;
}
h1,
h2 {
  font-family: "Poppins", sans-serif;
  color: var(--main-background);
}
h4,
h3 {
  font-family: "Poppins", sans-serif;
  color: #080a3d;
}
p,
li,
a,
button,
span {
  font-family: "Quicksand", sans-serif;
}
p {
  color: var(--primary-color);
  font-size: 1.5rem;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  padding: 1rem 2.4rem;
  font-size: 1.7rem;
  border: none;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  background: var(--button-background);
  color: #fff;
  cursor: pointer;
}
/* ===================Header Section styles=--================
========================================*/
header {
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  background: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
header nav {
  width: 100%;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ====================Left Side Menu ==================*/
header nav .left-side-menu {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .left-side-menu .logo img {
  width: 21rem;
  height: 5.8rem;
}
header nav .left-side-menu .sub-menu {
  display: flex;
  height: inherit;
}
header nav .left-side-menu .sub-menu a {
  margin-left: 4rem;
}
header nav .left-side-menu .sub-menu a li {
  font-size: 1.7rem;
  line-height: 3.6rem;
  text-transform: capitalize;
  font-weight: 900;
  color: var(--primary-color);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
header nav .left-side-menu .sub-menu a li:hover {
  color: var(--main-background);
}

/*================ Right Side CSS style==================== */
header nav .right-side-menu {
  display: flex;
  justify-content: end;
}
header nav .right-side-menu .sub-menu {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header nav .right-side-menu .sub-menu a {
  margin-right: 2rem;
}
header nav .right-side-menu .sub-menu a li:hover {
  color: #d8c8ff;
  border-color: #d8c8ff;
}

header nav .right-side-menu .sub-menu a li {
  font-size: 1.7rem;
  font-weight: 800;
  padding: 1.5rem 2.8rem;
  color: var(--primary-color);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  border: 2px solid var(--main-background);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
header nav .right-side-menu .sub-menu #trail-btn {
  padding: 1.8rem 3rem;
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: capitalize;
  cursor: pointer;
}

/* ====================Hero Section styles=============================== */
.main-hero-section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0rem;
  margin-top: 10rem;
  padding-bottom: 12rem;
}
/* Hero left side styles */
.main-hero-section .hero-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-hero-section .hero-left-side img {
  width: 55rem;
  height: 50rem;
  margin-left: 5rem;
  animation: float 2s linear alternate infinite;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
@keyframes float {
  from {
    transform: translateY(2rem);
    -webkit-transform: translateY(2rem);
    -moz-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    -o-transform: translateY(2rem);
  }
  to {
    transform: translateY(0rem);
    -webkit-transform: translateY(0rem);
    -moz-transform: translateY(0rem);
    -ms-transform: translateY(0rem);
    -o-transform: translateY(0rem);
  }
}
/* Hero right side styles */
.main-hero-section .hero-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.main-hero-section .hero-right-side h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.main-hero-section .hero-right-side h1 {
  font-size: 4.5rem;
  width: 43rem;
  font-weight: 900;
  color: #082161;
  margin-bottom: 1.5rem;
}
.main-hero-section .hero-right-side h1 span {
  color: #12c4a0;
}
.main-hero-section .hero-right-side p {
  width: 47.4rem;
  font-size: 1.7rem;
  font-weight: 800;
  color: #79808d;
  margin-bottom: 3.6rem;
  line-height: 150%;
}
.main-hero-section .hero-right-side button {
  padding: 2rem 3rem;
  font-size: 1.7rem;
  font-weight: 800;
}
/*=============================== Section Two styles==================
=================================== */
.client-section {
  width: 100%;
  height: 100%;
  padding: 5rem 2rem;
  background: #f2f7fa;
}
.client-section h1 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #79808d;
  text-align: center;
  padding: 3rem 0;
}

.client-section .client-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3rem;
}
.client-section .client-brands li img {
  width: 12.6rem;
}
.client-section .client-brands li {
  margin-left: 5rem;
}

/* =================Our Third section styles==============================*/
.common-section {
  padding: 8rem 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

/*============== common left side styles ===================*/
.common-section .left-side-common {
  width: 50%;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 10rem;
}

.common-section .left-side-common .number {
  font-size: 3rem;
  font-weight: bolder;
  background: #12c4a0;
  padding: 0.2rem 1.5rem;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 21%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 2rem;
}
.common-section .left-side-common h2 {
  width: 50rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--main-background);
  margin-bottom: 2rem;
  line-height: 150%;
}
.common-section .left-side-common .description-common {
  font-size: 1.5rem;
  font-weight: 900;
  width: 54rem;
  line-height: 2.3rem;
  color: #8f95a1;
  margin-bottom: 4.5rem;
}

.common-btn {
  background: #12c4a0;
  padding: 1.8rem 3.4rem;
  font-weight: 900;
}
/*============== common rigt side styles ===================*/

.common-section .right-side-common {
  width: 50%;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.common-section .right-side-common img {
  max-width: 105rem;
}

/* =================Our Four section styles==============================*/
#section-four button {
  background: var(--main-background);
}

.innovation-section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10rem 2rem;
  background: #f2f7fa;
}
/*============== innovention left side styles ===================*/
.innovation-section .left-side-innovation {
  width: 50%;
  height: inherit;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.innovation-section .left-side-innovation img {
  width: 46rem;
  height: 37rem;
}

/*============== innovention rigt side styles ===================*/

.innovation-section .right-side-innovation {
  width: 50%;
  height: inherit;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: column;
}

.innovation-section .right-side-innovation .number {
  font-size: 3rem;
  font-weight: bolder;
  background: #12c4a0;
  padding: 0.2rem 1.5rem;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 21%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 2rem;
}
.innovation-section .right-side-innovation h2 {
  width: 47rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--main-background);
  margin-bottom: 2rem;
  line-height: 150%;
}
.innovation-section .right-side-innovation .description-innovation {
  font-size: 1.5rem;
  font-weight: 900;
  width: 54rem;
  line-height: 2.3rem;
  color: #8f95a1;
  margin-bottom: 4.5rem;
}
/* =====================Scction fifth Styles================================ */
#section-fifth {
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  position: relative;
  background: #fff;
}
#section-fifth .upper-bg {
  width: 100%;
  position: absolute;
  height: 25rem;
  background: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;

  top: 0rem;
  left: 0;
}

#section-fifth .features-warpper {
  width: 86%;
  height: 54rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 7rem 5rem;
  background: #fff;
  margin: auto;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
  box-shadow: 3px 6px 24px #d8d7d7;
  margin-top: 10rem;
  z-index: 2;
}
/* ===============features Left styles======== */

.features-warpper .right-side-innovation {
  width: 45%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.features-warpper .right-side-innovation h2 {
  margin: 3rem 0;
  font-size: 3.4rem;
  width: 48rem;
}

/* ===============features Left styles======== */

.features-warpper .left-side-innovation {
  width: 41%;
  height: inherit;
  display: flex;
}
.features-warpper .left-side-innovation img {
  width: 38rem;
  height: 37rem;
}

/*============== Counter section Styles=============================== */
.counter-section {
  width: 100%;
  height: 100%;
  padding: 10rem 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.counter-section h1 {
  font-size: 5rem;
  font-weight: 900;
  color: #ff5d2a;
}
.counter-section p {
  font-size: 1.6rem;
  color: #79808d;
  font-weight: 700;
  text-transform: capitalize;
}
/* ========================Our Offer Section Styles================ */

.offer-section {
  width: 100%;
  height: 100%;
  padding: 10rem 2rem;
  background: #f3f8fa;
}
.offer-title {
  text-align: center;
  font-size: 2rem;
  color: #5e5e72;
  font-weight: 500;
  margin-bottom: 1rem;
}
.offer-title-2 {
  text-align: center;
  font-size: 3.6rem;
  color: #080a3d;
  font-weight: 900;
  margin-bottom: 6rem;
  text-transform: lowercase;
}
.main-offer {
  width: 85%;
  display: flex;
  height: 50rem;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
}
.main-offer .offer-box-1,
.main-offer .offer-box-2,
.main-offer .offer-box-3,
.main-offer .offer-box-4,
.main-offer .offer-box-5,
.main-offer .offer-box-6 {
  width: 31%;
  height: 23rem;
  background: #12c4a0;
  margin-bottom: 5rem;
  padding: 4rem 3rem;
  position: relative;
  border-radius: 2rem;
}
.main-offer h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.main-offer p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #95959b;
  line-height: 2.5rem;
}
.main-offer h3 {
  position: absolute;
  top: -3rem;
}
.main-offer .offer-box-1 {
  background: #fff6d6;
}
.main-offer .offer-box-2 {
  background: #ebdcf9;
}
.main-offer .offer-box-3 {
  background: #ddf5fc;
}
.main-offer .offer-box-4 {
  background: #dcf6e8;
}
.main-offer .offer-box-5 {
  background: #f8e4e1;
}
.main-offer .offer-box-6 {
  background: #fbffd4;
}

/*============================ Our pricng section Styles===========
====================== */
.pricing-section {
  width: 100%;
  height: 100%;
  padding: 10rem 2rem;
}
.main-pricing {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
.main-pricing .prices {
  width: 32%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 2rem 1rem;
  box-shadow: 0px 3px 15px #e9e4e4;
  border-radius: 1rem;
}
.main-pricing .prices .price {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
}
.main-pricing .prices .price h3 {
  font-size: 1.8rem;
  text-transform: capitalize;
  color: rgb(168, 168, 168);
  font-weight: 600;
}
.main-pricing .prices .price img {
  width: 75%;
}

.main-pricing .prices .price h2 {
  width: 100%;
  text-align: center;
  font-size: 3.6rem;
  text-transform: uppercase;
  color: var(--main-background);
  font-weight: 700;
}
.main-pricing .prices .price .month {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.main-pricing .prices .price p {
  width: 18rem;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 2.8rem;
}
.main-pricing .prices .price button {
  text-transform: capitalize;
  margin-bottom: 3rem;
}
.main-pricing .growth {
  height: 70rem;
  border: 6px solid var(--main-background);
  position: relative;
  overflow: hidden;
}
.main-pricing .growth h4 {
  position: absolute;
  top: 3rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  transform: translateX(-5rem) rotate(318deg);
  background: #080a3d;
  color: #fff;
  padding: 0.4rem 6rem;
}
.main-pricing .growth button {
  background: var(--main-background);
}
