@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  /* Color Selection: */
  --color-primary: #E63946;
  --color-secondary: #202124;
  --color-text: #202124;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-white30: #FFFFFF4D;
  --color-paragraph: #5F6368;
  --color-green: #115740;
  --color-card-bg: #F4F4F4;
  --color-stroke: #EEEEEE;
  --color-blue: #0068C8;
  --color-active: #E63946;
  /* others Selection*/
  --radius: 6px;
  --gap: 12px;
}

* {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.container-def {
  max-width: 1800px;
  margin: auto;
}

/**********************/
/* navbar desing start*/
/**********************/
/* When navbar is scrolled */
#scroll.scrolled {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: auto;
  z-index: 9;
  transition: all 0.1s linear;
}
#scroll.scrolled .navbar {
  background: var(--color-text);
  transition: all 0.1s linear;
}

/* Navbar positioning */
.navbar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
}
@media (max-width: 991px) {
  .navbar {
    height: 60px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 9;
  margin: auto;
  padding: 0;
  left: 50%;
}
.header .container-def {
  align-items: center;
  justify-content: space-between;
}
.header .navbar-toggler i {
  font-family: "remixicon";
  transition: all 0.3s ease;
  color: var(--color-white);
}
.header .navbar-toggler[aria-expanded=true] i::before {
  content: "\ef38";
}
.header .navbar-toggler[aria-expanded=false] i::before {
  content: "\ef3e";
}
.header .navbar-brand {
  max-width: 120px;
  height: 40px;
  margin: 0;
  padding: 0;
}
.header .navbar-brand img {
  width: 100%;
  height: 100%;
}
.header .navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
}
.header .navbar-collapse {
  position: relative;
  justify-content: space-between;
  transition: all 0.3s linear;
}
@media (max-width: 991px) {
  .header .navbar-collapse {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 30px;
    align-items: center;
    text-align: center;
    background: var(--color-text);
    border-top: 0.5px solid rgba(254, 189, 13, 0.1882352941);
    transition: all 0.3s linear;
  }
}
.header .navbar-nav {
  gap: 32px;
}
.header .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
}
.header .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 0;
  transition: color 0.3s linear;
}
.header .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.header .navbar-nav .nav-item .nav-link:hover {
  color: var(--color-primary);
  transition: color 0.3s linear;
}
.header .navbar-nav .nav-item .nav-link.active {
  color: var(--color-primary);
}
.header .navbar-nav .nav-item .nav-link.active::before {
  width: 100%;
  border-radius: 50px;
  background-color: var(--color-primary);
  transition: color 0.3s linear;
}
.header .purchase-btn {
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 26.5px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all 0.3s linear;
}
.header .purchase-btn:hover {
  background: transparent;
  color: var(--color-white);
  transition: all 0.3s linear;
  border: 1px solid var(--color-white);
}

/**********************/
/* navbar desing end*/
/**********************/
/**********************/
/* banner_sectation desing start*/
/**********************/
.banner_sectation {
  background-image: url(/assets/image/hero-image-wbd.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  padding-top: 142px;
}
@media (max-width: 480px) {
  .banner_sectation {
    padding-top: 100px;
  }
}
.banner_sectation .section_title {
  position: relative;
  text-align: center;
  padding: 0 20px;
}
.banner_sectation .section_title .title {
  max-width: 744px;
  margin: 0 auto;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.35;
  letter-spacing: 0.5px;
  color: var(--color-white);
  position: relative;
  padding-bottom: 10px;
}
.banner_sectation .section_title .title strong {
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.banner_sectation .section_title .title strong .line {
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 5px;
  left: 0;
  background-color: var(--color-primary);
  transform: rotate(1.96deg);
  z-index: 1;
}
.banner_sectation .section_title .title span {
  font-weight: 400;
}
.banner_sectation .section_title .desc {
  max-width: 670px;
  margin: 20px auto 0;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #7a7f85;
}
.banner_sectation .section_title .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.banner_sectation .section_title .buttons a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .banner_sectation .section_title .buttons a {
    width: 100%;
  }
}
.banner_sectation .section_title .buttons .buy {
  color: var(--color-secondary);
  background-color: var(--color-white);
  border: 1px solid transparent;
}
.banner_sectation .section_title .buttons .buy:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}
.banner_sectation .section_title .buttons .demo {
  color: var(--color-primary);
  border: 1px solid var(--color-white30);
}
.banner_sectation .section_title .buttons .demo:hover {
  background: rgba(255, 0, 0, 0.3);
  border-color: transparent;
}
@media (max-width: 768px) {
  .banner_sectation .section_title {
    padding: 0 15px;
  }
  .banner_sectation .section_title .title {
    line-height: 1.3;
  }
  .banner_sectation .section_title .title strong .line {
    bottom: 3px;
  }
  .banner_sectation .section_title .buttons {
    gap: 15px;
    margin-top: 25px;
  }
}
.banner_sectation .slider {
  position: relative;
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  overflow: visible;
}
.banner_sectation .slider .ellipse {
  position: absolute;
  top: 30px;
  left: -10px;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  z-index: 1;
  animation: growDiagonal 5s linear infinite;
}
@keyframes growDiagonal {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, -10px, 10px);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 1024px) {
  .banner_sectation .slider .ellipse {
    top: 45px;
    left: -2%;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .banner_sectation .slider .ellipse {
    top: 45px;
    left: -3%;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 425px) {
  .banner_sectation .slider .ellipse {
    top: 45px;
    left: -3.5%;
    width: 60px;
    height: 60px;
  }
}
.banner_sectation .slider .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #39362F;
  border-radius: 20px 20px 0 0;
  padding: 24px 24px 0;
}
.banner_sectation .slider .swiper-slide {
  position: relative;
}
.banner_sectation .slider .swiper-slide .thumb {
  position: relative;
  height: 100%;
}
.banner_sectation .slider .swiper-slide .thumb .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner_sectation .slider .swiper-slide .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.banner_sectation .slider .swiper-slide .meta {
  position: absolute;
  bottom: 32px;
  left: 24px;
  z-index: 3;
}
.banner_sectation .slider .swiper-slide .meta .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.4s linear;
}
.banner_sectation .slider .swiper-slide .meta .button:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transition: all 0.4s linear;
}
.banner_sectation .slider .swiper-pagination {
  position: absolute;
  bottom: 32px;
  display: flex;
  gap: 12px;
  height: 40px;
  align-items: center;
  width: auto;
  left: auto;
  right: 44px;
}
.banner_sectation .slider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1 !important;
  position: relative;
}
.banner_sectation .slider .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 5px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.banner_sectation .slider .swiper-pagination-bullet-active {
  background: var(--color-white);
  transform: scale(1.3);
}
.banner_sectation .slider .swiper-pagination-bullet-active::after {
  opacity: 1;
}

/**********************/
/* banner_sectation desing end*/
/**********************/
/**********************/
/* slider_section desing start*/
/**********************/
.slider {
  overflow: hidden;
  background-color: rgba(230, 57, 70, 0.062745098);
  transition: transform 0.5s ease;
  border-bottom: 1px solid rgba(230, 57, 70, 0.1882352941);
}
.slider-info {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  animation: slide 20s linear infinite;
}
@media (max-width: 1024px) {
  .slider-info {
    grid-template-columns: repeat(7, 1fr);
  }
  .slider-info .slider-info-single {
    width: 300px;
    display: flex;
  }
}
@media (max-width: 768px) {
  .slider-info {
    grid-template-columns: repeat(7, 1fr);
  }
  .slider-info .slider-info-single {
    width: 250px;
    display: flex;
  }
}
@media (max-width: 500px) {
  .slider-info {
    grid-template-columns: repeat(7, 1fr);
  }
  .slider-info .slider-info-single {
    width: 200px;
    display: flex;
  }
}
@media (max-width: 425px) {
  .slider-info {
    grid-template-columns: repeat(7, 1fr);
  }
  .slider-info .slider-info-single {
    width: 180px;
    display: flex;
    padding: 5px 0;
    align-items: center;
  }
}
.slider-info:hover {
  animation-play-state: paused;
}
.slider-info-single {
  width: 447px;
  display: flex;
  gap: 10px;
  justify-content: center;
  border-top: 0;
  border-right: 0;
  padding: 16px 0;
  border-left: 1px solid rgba(230, 57, 70, 0.1882352941);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.5px;
}
.slider-info-single i {
  color: var(--color-primary);
}
.slider-info-single i::before {
  color: var(--primary-color);
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

/**********************/
/* slider_section desing end*/
/**********************/
/**********************/
/* fatality_section desing start*/
/**********************/
.fatality_section {
  background-color: #FBFBFB;
  padding: 100px 0;
}
.fatality_section .fatalitys {
  align-items: center;
}
.fatality_section .fatalitys .section-title {
  font-weight: 600;
  font-size: var(--heading-3);
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--pure-black);
  margin-bottom: 40px;
}
.fatality_section .fatalitys .fatalitys {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
@media (max-width: 1024px) {
  .fatality_section .fatalitys .fatalitys {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .fatality_section .fatalitys .fatalitys {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .fatality_section .fatalitys .fatalitys {
    flex-wrap: wrap;
  }
}
.fatality_section .fatalitys-fatality {
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  padding: 16px;
  height: 100%;
}
.fatality_section .fatalitys-fatality .thumb {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fatality_section .fatalitys-fatality .thumb img {
  width: 100%;
  max-width: 160px;
}
.fatality_section .fatalitys-fatality .title h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-stroke);
  color: var(--color-secondary);
}
.fatality_section .fatalitys-fatality .title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
  margin-bottom: 0;
}

/**********************/
/* fatality_section desing end*/
/**********************/
/**********************/
/* fatality-demo desing start*/
/**********************/
#demo {
  scroll-margin-top: 150px;
}

.demo_section {
  padding: 123px 0 100px 0;
  align-items: center;
  text-align: center;
}
@media (max-width: 425px) {
  .demo_section {
    padding: 60px 0 40px 0;
  }
}
.demo_section .heading {
  max-width: 1300px !important;
  position: relative;
  margin: auto;
}
.demo_section .heading .watterMark {
  position: absolute;
  top: -85px;
  right: 110px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .demo_section .heading .watterMark {
    top: -50px;
    right: 80px;
  }
}
@media (max-width: 768px) {
  .demo_section .heading .watterMark {
    top: -25px;
    right: 50px;
  }
}
@media (max-width: 425px) {
  .demo_section .heading .watterMark {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.demo_section .heading .watterMark img {
  z-index: 0;
  width: 366px;
  position: relative;
  align-items: end;
}
@media (max-width: 1024px) {
  .demo_section .heading .watterMark img {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .demo_section .heading .watterMark img {
    width: 150px;
  }
}
@media (max-width: 425px) {
  .demo_section .heading .watterMark img {
    width: 100px;
  }
}
.demo_section .heading h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 16px;
}
.demo_section .heading p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
  margin: 0;
}
.demo_section .nav {
  max-width: 1320px;
  margin: auto;
  align-content: center;
  text-align: center;
  justify-content: center;
  gap: 16px;
  padding-top: 40px;
  padding-bottom: 32px;
}
.demo_section .nav-item {
  border-radius: var(--radius);
  border: 1px solid var(--color-stroke);
}
.demo_section .nav-item button {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  font-size: 20px;
  background-color: #FBFBFB;
  color: var(--color-paragraph);
}
.demo_section .demo-content {
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid var(--color-stroke);
}
@media (max-width: 1024px) {
  .demo_section .demo-content {
    padding: 40px 10px 0;
  }
}
.demo_section .demo-content .demo-pane {
  gap: 16px;
  opacity: 1;
  transform: translateY(15px);
  transition: opacity 0.3s linear, transform 0.3s linear;
}
.demo_section .demo-content .demo-pane .card {
  display: inline-flex;
  padding: 16px 16px 20px 16px;
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  background-color: #FBFBFB;
  text-align: center;
  transition: transform 0.5s linear;
}
.demo_section .demo-content .demo-pane .card .wrapper .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.demo_section .demo-content .demo-pane .card .wrapper .image-container img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.demo_section .demo-content .demo-pane .card .wrapper .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3137254902);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.demo_section .demo-content .demo-pane .card .wrapper .meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo_section .demo-content .demo-pane .card .wrapper .meta h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.5px;
  color: var(--color-black);
  justify-content: space-between;
  display: flex;
  margin-top: 22px;
  font-style: Bold;
}
.demo_section .demo-content .demo-pane .card .wrapper .meta .info {
  display: flex;
  justify-content: space-between;
}
.demo_section .demo-content .demo-pane .card .wrapper .meta .info ul {
  margin: 0;
  padding-left: 15px;
}
.demo_section .demo-content .demo-pane .card .wrapper .meta .info ul li {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-paragraph);
}
.demo_section .demo-content .demo-pane .card .wrapper .meta .info .buttons_btn {
  display: flex;
  gap: 12px;
}
.demo_section .demo-content .demo-pane .card .wrapper .meta .info .explore {
  display: flex;
  height: 40px;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 11.5px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all 0.3s linear;
}
.demo_section .demo-content .demo-pane .card .wrapper .meta .info .explore:hover {
  background: var(--color-primary);
  transition: all 0.3s linear;
  border: 1px solid var(--color-primary);
}
.demo_section .demo-content .demo-pane .card:hover {
  border: 1px solid var(--color-primary);
  transition: transform 0.5s ease;
}
.demo_section .demo-content .demo-pane .card:hover .wrapper .image-container img {
  transform: scale(1.1);
}

/**********************/
/* fatality-demo desing end*/
/**********************/
/**********************/
/* features desing start*/
/**********************/
.features_slider_section {
  background-color: #FBFBFB;
  padding: 100px 0;
}
.features_slider_section .section-title {
  text-align: center;
}
.features_slider_section .section-title .sub-title {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-primary);
  padding: 6.5px 10px;
  border: 1px solid rgba(230, 57, 70, 0.1882352941);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.features_slider_section .section-title .title {
  position: relative;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 16px;
}
.features_slider_section .section-title .title .line {
  width: 120.93px;
  height: 4px;
  position: absolute;
  right: 38%;
  background-color: var(--color-primary);
  transform: rotate(1.96deg);
}
@media (max-width: 1024px) {
  .features_slider_section .section-title .title .line {
    right: 33%;
  }
}
@media (max-width: 768px) {
  .features_slider_section .section-title .title .line {
    right: 27%;
  }
}
@media (max-width: 425px) {
  .features_slider_section .section-title .title .line {
    left: 20%;
  }
}
@media (max-width: 320px) {
  .features_slider_section .section-title .title .line {
    top: 65%;
    left: 40%;
  }
}
.features_slider_section .section-title .desc {
  max-width: 709px;
  margin: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
}
.features_slider_section .slider {
  overflow: hidden;
  background-color: #FBFBFB;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0;
  align-items: center;
  margin-top: 20px;
}
.features_slider_section .slider .slider-track {
  display: flex;
  grid-template-columns: repeat(all, 1fr);
  gap: 16px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.features_slider_section .slider .slider-track.right {
  animation: scroll-right 30s linear infinite;
}
.features_slider_section .slider .slider-track:hover {
  animation-play-state: paused;
}
.features_slider_section .slider .slider-track .slider-single {
  display: flex;
  gap: 12px;
  max-width: 306px;
  align-items: center;
  padding: 15px;
  background-color: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius);
}
.features_slider_section .slider .slider-track .slider-single img {
  max-height: 30px;
  max-width: 30px;
}
.features_slider_section .slider .slider-track .slider-single img span {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .features_slider_section .slider .slider-track {
    grid-template-columns: repeat(all, 1fr);
  }
  .features_slider_section .slider .slider-track .slider-info-single {
    width: 300px;
    display: flex;
  }
}
@media (max-width: 768px) {
  .features_slider_section .slider .slider-track {
    grid-template-columns: repeat(7, 1fr);
  }
  .features_slider_section .slider .slider-track .slider-info-single {
    width: 250px;
    display: flex;
  }
}
@media (max-width: 500px) {
  .features_slider_section .slider .slider-track {
    grid-template-columns: repeat(7, 1fr);
  }
  .features_slider_section .slider .slider-track .slider-info-single {
    display: flex;
  }
}
@media (max-width: 425px) {
  .features_slider_section .slider .slider-track {
    grid-template-columns: repeat(7, 1fr);
  }
  .features_slider_section .slider .slider-track .slider-info-single {
    width: 180px;
    display: flex;
    padding: 10px 0;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(40%);
  }
}

/**********************/
/* features desing end*/
/**********************/
/**********************/
/* more_features_section desing start*/
/**********************/
.more_features_section {
  text-align: center;
  padding: 100px 0;
}
.more_features_section .section_title .title {
  position: relative;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 16px;
}
.more_features_section .section_title .title .line {
  position: absolute;
  width: 85px;
  height: 4px;
  top: 35px;
  right: 29%;
  background-color: var(--color-primary);
  transform: rotate(1.96deg);
}
@media (max-width: 1024px) {
  .more_features_section .section_title .title .line {
    right: 21%;
  }
}
@media (max-width: 768px) {
  .more_features_section .section_title .title .line {
    right: 11%;
  }
}
@media (max-width: 425px) {
  .more_features_section .section_title .title .line {
    right: 17%;
    top: 100%;
  }
}
@media (max-width: 375px) {
  .more_features_section .section_title .title .line {
    right: 5%;
  }
}
.more_features_section .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
  margin: 0;
}

.content .row {
  margin-top: 32px;
  border-bottom: 1px solid var(--color-stroke);
}
.content .row .wrapper .thumb {
  height: 318px;
  padding: 20px;
  border: 1px solid var(--color-stroke);
  background-color: #FBFBFB;
  border-radius: var(--radius);
  overflow: hidden;
}
.content .row .wrapper .thumb img {
  width: 100%;
  transition: all 0.2s linear;
}
.content .row .wrapper .wrapper_title {
  max-width: 287px;
  margin: auto;
}
.content .row .wrapper .wrapper_title .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text);
  margin-top: 24px;
  margin-bottom: 12px;
}
.content .row .wrapper .wrapper_title .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
}
.content .row .wrapper:hover .thumb img {
  scale: 1.07;
  transition: all 0.3s linear;
}

/**********************/
/* more_features_section desing end*/
/**********************/
/**********************/
/* techonology_section desing start*/
/**********************/
.techonology_section {
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.17) 0%, rgba(32, 33, 36, 0) 50%, rgba(255, 0, 0, 0.15) 100%);
  position: relative;
  overflow: hidden;
  padding: 25px 0;
  z-index: 1;
}
.techonology_section .ellipses {
  width: 800px;
  height: 800px;
  position: absolute;
  text-align: center;
  justify-content: center;
  top: 93px;
  left: -460px;
  z-index: 1;
  align-items: center;
  display: flex;
  /* grow animation */
  animation: grow 3s linear infinite;
  /* 700 700 */
  /* 800 800 */
}
@keyframes grow {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(20px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 1024px) {
  .techonology_section .ellipses {
    left: -700px;
  }
}
.techonology_section .ellipses .ellipses-1 {
  width: 700px;
  height: 700px;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.0352941176);
}
.techonology_section .ellipses .ellipses-2 {
  width: 800px;
  height: 800px;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.0274509804);
}
.techonology_section .wattermark {
  width: 114px;
  height: 300px;
  position: absolute;
  top: 27px;
  right: 24px;
  /* up-down animation */
  animation: upDodn 2s linear infinite;
}
@keyframes upDodn {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
.techonology_section .techonology-content {
  justify-content: space-between;
  margin-top: 52px;
}
@media (max-width: 768px) {
  .techonology_section .techonology-content {
    display: inline-block;
  }
}
.techonology_section .techonology-content .techonology_title {
  width: 110%;
  position: relative;
}
@media (max-width: 768px) {
  .techonology_section .techonology-content .techonology_title {
    width: 80%;
  }
}
.techonology_section .techonology-content .techonology_title .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  color: var(--color-white);
}
.techonology_section .techonology-content .techonology_title .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5019607843);
  margin-top: 16px;
}
.techonology_section .techonology-content .techonology_title .thumb {
  margin-top: 35px;
}
.techonology_section .techonology-content .techonology_title .thumb img {
  width: 100%;
  max-width: 431px;
}
.techonology_section .techonology-content .techonology_title .thumb .meta {
  position: relative;
  left: 71px;
}
.techonology_section .techonology-content .techonology_title .thumb .meta p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin: 0;
}
.techonology_section .techonology-content .techonology_title .thumb .meta .line {
  width: 62px;
  height: 2px;
  left: 35px;
  position: absolute;
  background-color: var(--color-primary);
  transform: rotate(1.96deg);
}
.techonology_section .techonology-content .thumb {
  position: relative;
}
@media (max-width: 768px) {
  .techonology_section .techonology-content .thumb {
    width: 100%;
  }
}
.techonology_section .techonology-content .thumb img {
  width: 100%;
}

/**********************/
/* techonology_section desing end*/
/**********************/
/**********************/
/* customization_section desing start*/
/**********************/
.customization_section {
  padding: 100px 0;
}
.customization_section .card {
  background: #FBFBFB;
  padding: 41px 30px;
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  gap: 24px;
}
@media (max-width: 1024px) {
  .customization_section .card {
    display: grid;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .customization_section .card {
    margin-top: 16px;
    padding: 0 15px;
  }
}
.customization_section .card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .customization_section .card .meta {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .customization_section .card .meta {
    display: flex;
  }
}
.customization_section .card .meta .text-wrapper {
  position: relative;
  display: inline-block;
}
.customization_section .card .meta .blur-overlay {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 200%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .customization_section .card .meta .blur-overlay {
    top: 0;
  }
}
.customization_section .card .meta .sp-text {
  font-weight: 700;
  font-size: 96px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-align: center;
}
@media (max-width: 1024px) {
  .customization_section .card .meta .sp-text {
    width: 100%;
    margin: 0;
    line-height: 100px;
    text-align: start;
  }
}
@media (max-width: 425px) {
  .customization_section .card .meta .sp-text {
    font-size: 76px;
    display: flex;
    align-items: center;
    text-align: left;
    margin: 0;
  }
}
.customization_section .card .meta .meta-title {
  width: 362px;
}
@media (max-width: 768px) {
  .customization_section .card .meta .meta-title {
    width: 100%;
  }
}
.customization_section .card .meta .meta-title .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-text);
}
.customization_section .card .meta .meta-title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-paragraph);
}
.customization_section .card .wrapper {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .customization_section .card .wrapper {
    padding: 10px 0;
  }
}
.customization_section .card .wrapper img {
  width: 100%;
}
.customization_section .card-def {
  display: flex;
  gap: 24px;
  background: #FBFBFB;
  padding: 41px 30px;
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .customization_section .card-def {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .customization_section .card-def {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.customization_section .card-def .meta {
  width: 100%;
  max-width: 699px;
  display: flex;
  gap: 52px;
  flex-direction: column;
  margin: auto;
}
@media (max-width: 768px) {
  .customization_section .card-def .meta {
    width: 100%;
    padding: 15px;
    gap: 42px;
  }
}
.customization_section .card-def .meta .unlimited {
  font-weight: 700;
  font-size: 96px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  opacity: 10%;
  text-align: start;
}
@media (max-width: 768px) {
  .customization_section .card-def .meta .unlimited {
    margin-top: 10px;
    font-size: 76px !important;
  }
}
@media (max-width: 425px) {
  .customization_section .card-def .meta .unlimited {
    font-size: 60px !important;
  }
}
@media (max-width: 320px) {
  .customization_section .card-def .meta .unlimited {
    font-size: 50px !important;
  }
}
.customization_section .card-def .meta .info {
  width: 80%;
}
@media (max-width: 768px) {
  .customization_section .card-def .meta .info {
    width: 100%;
  }
}
.customization_section .card-def .meta .info .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-text);
}
.customization_section .card-def .meta .info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-paragraph);
}
.customization_section .card-def .wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .customization_section .card-def .wrapper {
    padding: 10px;
  }
}
.customization_section .card-def .wrapper img {
  width: 100%;
  max-width: 550px;
}

/**********************/
/* customization_section desing end*/
/**********************/
/**********************/
/* satisficed_section desing start*/
/**********************/
#support {
  scroll-margin-top: 150px;
}

.satisficed_section .section-content {
  position: relative;
  background-color: var(--color-black);
  border-radius: 10px;
  padding: 86px 0;
  overflow: hidden;
}
.satisficed_section .section-content .wattermark {
  width: 300px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translate(-50%);
}
@media (max-width: 768px) {
  .satisficed_section .section-content .wattermark {
    width: 250px;
  }
}
.satisficed_section .section-content .messaage-1 {
  width: 263px;
  height: 61px;
  position: absolute;
  left: 44px;
  bottom: 163px;
  z-index: 2;
  /* animation left to right */
  animation: move 2s ease-in-out infinite;
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .satisficed_section .section-content .messaage-1 {
    left: 5px;
  }
}
@media (max-width: 768px) {
  .satisficed_section .section-content .messaage-1 {
    display: none;
  }
}
.satisficed_section .section-content .messaage-2 {
  width: 263px;
  height: 61px;
  position: absolute;
  left: 138px;
  bottom: 78px;
  z-index: 2;
  /* animation left to right */
  animation: move 2.5s ease-in-out infinite;
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .satisficed_section .section-content .messaage-2 {
    left: 65px;
  }
}
@media (max-width: 768px) {
  .satisficed_section .section-content .messaage-2 {
    display: none;
  }
}
.satisficed_section .section-content .info-1 {
  position: absolute;
  display: inline-block;
  right: 141px;
  bottom: 170px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-white);
  background-color: #575757;
  padding: 18.5px 21.5px;
  border-radius: var(--radius);
  z-index: 2;
}
@media (max-width: 1024px) {
  .satisficed_section .section-content .info-1 {
    right: 10%;
  }
}
@media (max-width: 768px) {
  .satisficed_section .section-content .info-1 {
    display: none;
  }
}
.satisficed_section .section-content .info-1 span {
  font-weight: 400;
  font-size: 32px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-white);
  margin-right: 8px;
}
.satisficed_section .section-content .info-2 {
  position: absolute;
  display: inline-block;
  right: 45px;
  bottom: 100px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-white);
  background-color: #575757;
  padding: 15px 18.5px;
  border-radius: var(--radius);
  z-index: 2;
}
@media (max-width: 1024px) {
  .satisficed_section .section-content .info-2 {
    right: 2%;
  }
}
@media (max-width: 768px) {
  .satisficed_section .section-content .info-2 {
    display: none;
  }
}
.satisficed_section .section-content .ellipse-left {
  position: absolute;
  width: 200px;
  height: 190px;
  bottom: -26px;
  left: 266px;
  border-radius: 50%;
  background-color: var(--color-primary);
  filter: blur(165px);
  z-index: 1;
}
@media (max-width: 768px) {
  .satisficed_section .section-content .ellipse-left {
    left: 50%;
    transform: translateX(-50%);
  }
}
.satisficed_section .section-content .ellipse-right {
  position: absolute;
  width: 406px;
  height: 384px;
  bottom: -51px;
  right: -135px;
  border-radius: 50%;
  background-color: var(--color-primary);
  filter: blur(325px);
  z-index: 1;
}
@media (max-width: 768px) {
  .satisficed_section .section-content .ellipse-right {
    display: none;
  }
}
.satisficed_section .section-content .section-title {
  width: 709px;
  margin: auto;
}
@media (max-width: 768px) {
  .satisficed_section .section-content .section-title {
    width: 90%;
  }
}
.satisficed_section .section-content .section-title .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-white);
}
.satisficed_section .section-content .section-title .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #80868B;
  margin-top: 16px;
}
.satisficed_section .section-content .meta {
  width: 309px;
  margin: auto;
}
.satisficed_section .section-content .meta .wrapper {
  margin-top: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.satisficed_section .section-content .meta .wrapper img {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-stroke);
  border-radius: 50%;
  margin-left: -20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.satisficed_section .section-content .meta-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-white);
  margin: 0;
}
.satisficed_section .section-content .meta .rating {
  text-align: center;
  margin-top: 12px;
}
.satisficed_section .section-content .meta .rating i {
  font-size: 17.67px;
  color: var(--color-stroke);
}
.satisficed_section .section-content .meta .rating i.active {
  color: var(--color-primary);
}

/**********************/
/* satisficed_section desing end*/
/**********************/
/**********************/
/* payment_section desing start*/
/**********************/
.payment_section {
  margin: 100px 0;
}
.payment_section .section_title {
  max-width: 574px;
  margin: auto;
  text-align: center;
}
.payment_section .section_title .title {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text);
}
.payment_section .section_title .title .line {
  position: absolute;
  width: 128px;
  height: 4px;
  right: 15px;
  bottom: 0;
  background-color: var(--color-primary);
  transform: rotate(1.96deg);
}
@media (max-width: 425px) {
  .payment_section .section_title .title .line {
    right: 35%;
  }
}
@media (max-width: 325px) {
  .payment_section .section_title .title .line {
    right: 25%;
  }
}
.payment_section .section_title .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
}
.payment_section .section_features {
  width: 100%;
  max-width: 1014px;
  margin: 32px auto 0;
  padding: 10px 65px;
  border: 0.5px dashed var(--color-primary);
  border-radius: var(--radius);
}
@media (max-width: 425px) {
  .payment_section .section_features {
    padding: 5px;
  }
}
.payment_section .section_features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: auto;
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .payment_section .section_features ul {
    align-items: flex-start;
    padding: 15px;
  }
}
@media (max-width: 425px) {
  .payment_section .section_features ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
}
.payment_section .section_features ul li {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.payment_section .section_features ul li .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 2px;
  background-color: var(--color-primary);
}
.payment_section .section_features ul li .icon i {
  font-size: 8px;
  color: var(--color-white);
}
.payment_section .section_features ul li span {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 8px 0;
  color: var(--color-paragraph);
}
.payment_section .thumb {
  width: 100%;
  max-width: 1018px;
  margin: 40px auto 0;
  border-radius: 10px;
  border: 1px solid var(--color-stroke);
}
.payment_section .thumb img {
  width: 100%;
  border-radius: 10px;
}

/**********************/
/* payment_section desing end*/
/**********************/
/**********************/
/* installation_section desing start*/
/**********************/
#solutions {
  scroll-margin-top: 150px;
}

.installation_section {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}
.installation_section .ellipse_top {
  position: absolute;
  width: 406px;
  height: 384px;
  background-color: var(--color-primary);
  border-radius: 50%;
  filter: blur(350px);
  top: 178px;
  left: 50%;
  transform: translateX(-50%);
}
.installation_section .section-title .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-white);
  margin: 0;
}
.installation_section .section-title .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
  margin: 16px 0 0;
}
.installation_section .section-content {
  margin-top: 40px;
}
.installation_section .section-content .ellipses {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 60px auto 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 375px) {
  .installation_section .section-content .ellipses {
    width: 100%;
  }
}
.installation_section .section-content .ellipses .title_ellipse {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: #57513e;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.installation_section .section-content .ellipses .title_ellipse .title {
  font-weight: 800;
  font-size: 128px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-primary);
  margin: 0;
}
.installation_section .section-content .ellipses .title_ellipse .desc {
  font-family: Figtree;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  color: var(--color-white);
}
.installation_section .section-content .ellipses .ring {
  position: absolute;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: rippleFade 2.5s linear infinite;
}
@media (max-width: 375px) {
  .installation_section .section-content .ellipses .ring {
    width: 100%;
  }
}
.installation_section .section-content .ellipses .ring:nth-child(2) {
  width: 220px;
  height: 220px;
  animation-delay: 0.3s;
}
.installation_section .section-content .ellipses .ring:nth-child(3) {
  width: 240px;
  height: 240px;
  animation-delay: 0.6s;
}
.installation_section .section-content .ellipses .ring:nth-child(4) {
  width: 260px;
  height: 260px;
  animation-delay: 0.9s;
}
.installation_section .section-content .ellipses .ring:nth-child(5) {
  width: 280px;
  height: 280px;
  animation-delay: 1.2s;
}
.installation_section .section-content .ellipses .ring:nth-child(6) {
  width: 300px;
  height: 300px;
  animation-delay: 1.5s;
}
.installation_section .section-content .ellipses .ring:nth-child(7) {
  width: 320px;
  height: 320px;
  animation-delay: 1.8s;
}
.installation_section .section-content .ellipses .ring:nth-child(8) {
  width: 340px;
  height: 340px;
  animation-delay: 2.1s;
}
.installation_section .section-content .ellipses .ring:nth-child(9) {
  width: 360px;
  height: 360px;
  animation-delay: 2.4s;
}
.installation_section .section-content .ellipses .ring:nth-child(10) {
  width: 380px;
  height: 380px;
  animation-delay: 2.7s;
}
.installation_section .section-content .ellipses .ring:nth-child(11) {
  width: 400px;
  height: 400px;
  animation-delay: 3s;
}
@keyframes rippleFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.2;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
  }
}
.installation_section .section-content .step_left {
  display: flex;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_left {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.installation_section .section-content .step_left .meta {
  display: flex;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_left .meta {
    display: flex;
    flex-direction: column;
  }
}
.installation_section .section-content .step_left .meta .count {
  font-weight: 700;
  font-size: 50px;
  line-height: auto;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  color: var(--color-primary);
  margin-left: 30px;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_left .meta .count {
    align-items: left;
    margin: 0;
  }
}
.installation_section .section-content .step_left .meta .steps_title {
  width: 100%;
  max-width: 452px;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_left .meta .steps_title {
    max-width: 100%;
  }
}
.installation_section .section-content .step_left .meta .steps_title .title {
  font-weight: 600;
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: right;
  color: var(--color-white);
  margin: 0;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_left .meta .steps_title .title {
    text-align: left;
  }
}
.installation_section .section-content .step_left .meta .steps_title .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: right;
  color: #80868B;
  margin: 12px auto 0;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_left .meta .steps_title .desc {
    text-align: left;
  }
}
.installation_section .section-content .step_left .thumb {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_left .thumb {
    margin: 10px 0 0;
  }
}
.installation_section .section-content .step_left .thumb img {
  width: 100%;
  max-width: 360px;
}
.installation_section .section-content .step_right {
  display: flex;
  margin-bottom: 150px;
  justify-content: right;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_right {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
}
.installation_section .section-content .step_right .thumb {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_right .thumb {
    margin: 10px 0 0;
  }
}
.installation_section .section-content .step_right .thumb img {
  width: 100%;
  max-width: 360px;
}
.installation_section .section-content .step_right .meta {
  display: flex;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_right .meta {
    display: flex;
    flex-direction: column;
  }
}
.installation_section .section-content .step_right .meta .count {
  font-weight: 700;
  font-size: 50px;
  line-height: auto;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  color: var(--color-primary);
  margin: 0;
}
.installation_section .section-content .step_right .meta .steps_title {
  width: 100%;
  max-width: 452px;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_right .meta .steps_title {
    max-width: 100%;
    margin: 0;
  }
}
.installation_section .section-content .step_right .meta .steps_title .title {
  font-weight: 600;
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: left;
  color: var(--color-white);
  margin: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_right .meta .steps_title .title {
    text-align: left;
  }
}
.installation_section .section-content .step_right .meta .steps_title .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: left;
  color: #80868B;
  margin: 12px auto 0;
}
@media (max-width: 768px) {
  .installation_section .section-content .step_right .meta .steps_title .desc {
    text-align: left;
  }
}

/**********************/
/* pricing_section desing start*/
/**********************/
#prcing {
  scroll-margin-top: 150px;
}

.pricing_section {
  margin: 100px auto;
}
.pricing_section .thumb img {
  width: 40px;
  height: 40px;
}
.pricing_section .pricing-title {
  text-align: center;
  border-bottom: 1px solid var(--color-stroke);
  padding: 0 0 32px;
}
.pricing_section .pricing-title .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 16px;
}
.pricing_section .pricing-title .desc {
  width: 449px;
  margin: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
}
@media (max-width: 768px) {
  .pricing_section .pricing-title .desc {
    width: 100%;
  }
}
.pricing_section .pricing-title .licences {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.pricing_section .pricing-title .licences-type {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 19px 15px;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius);
}
.pricing_section .pricing-title .licences-type .line {
  width: 1px;
  background-color: var(--color-stroke);
}
.pricing_section .pricing-title .licences-type .regular p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}
.pricing_section .pricing-title .licences-type .regular p span {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 6px 10px;
  border-radius: var(--radius);
}
.pricing_section .toggle-container {
  width: 60px;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  border: 1px solid var(--color-stroke);
  border-radius: 20px;
  padding: 5px;
  background: #FBFBFB;
  cursor: pointer;
}
.pricing_section .toggle-container .toggle-btn {
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.pricing_section .swiper-wrapper {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}
.pricing_section .swiper-wrapper .swiper-slide {
  margin: 0 !important;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--color-stroke);
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--color-white);
  transition: all 0.3s linear;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card .price {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--color-stroke);
  padding-bottom: 16px;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card .price span {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.5px;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.5px;
  margin: 0;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card:hover {
  background: #FBFBFB;
  transition: all 0.3s linear;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 200px;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card ul li {
  list-style: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #5F6368;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card ul li i {
  font-size: 20px;
  color: #63CD43;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card ul li .unavailable {
  font-size: 20px;
  color: #EB4D4B;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card .button {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--color-white);
  padding: 11px 0;
  background: var(--color-text);
  border-radius: var(--radius);
  transition: all 0.3s linear;
}
.pricing_section .swiper-wrapper .swiper-slide .pricing-card .button:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transition: all 0.3s linear;
}
.pricing_section .custom-swiper-nav {
  width: 100px;
  height: auto;
  display: flex;
  margin: auto;
  gap: 12px;
}
.pricing_section .custom-swiper-nav .swiper-button-next-pricing,
.pricing_section .custom-swiper-nav .swiper-button-prev-pricing {
  padding: 8px 14px;
  border: 1px solid #EEEEEE;
  background: #FBFBFB;
  color: #202124;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s linear;
}
.pricing_section .custom-swiper-nav .swiper-button-next-pricing:hover,
.pricing_section .custom-swiper-nav .swiper-button-prev-pricing:hover {
  background: rgba(254, 189, 13, 0.1882352941);
  border: 1px solid #FEBD0D;
  transition: all 0.3s linear;
}
.pricing_section .custom-swiper-nav .swiper-button-next-pricing img,
.pricing_section .custom-swiper-nav .swiper-button-prev-pricing img {
  width: 11.68px;
  height: 9.99px;
}

/**********************/
/* pricing_section desing end*/
/**********************/
/**********************/
/* review_section desing start*/
/**********************/
.review_section {
  margin-bottom: 100px;
}
.review_section .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.review_section .section-title .sub-title {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-primary);
  padding: 6.5px 10px;
  background: #FBFBFB;
  border: 1px solid rgba(230, 57, 70, 0.1882352941);
  border-radius: var(--radius);
}
.review_section .section-title .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text);
  margin-top: 12px;
  margin-bottom: 16px;
}
.review_section .section-title .desc {
  max-width: 709px;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
  margin: 0 auto;
}
.review_section .reviewSwiper {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .review_section .reviewSwiper {
    width: 100%;
    margin: auto;
  }
}
@media (min-width: 300px) and (max-width: 425px) {
  .review_section .reviewSwiper {
    width: 100%;
    margin: auto;
  }
}
.review_section .reviewSwiper .swiper-wrapper {
  display: flex;
  width: 429px;
  padding-bottom: 64px;
  background: transparent;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide {
  display: flex;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FBFBFB;
  border-radius: 10px;
  padding: 12px;
  max-width: 100%;
  flex-shrink: 0;
  border: 1px solid var(--color-stroke);
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .thumb {
  margin-bottom: 16px;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .thumb img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--color-white);
  border-radius: 50%;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .name {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 6px;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 16px;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-paragraph);
  padding-bottom: 16px;
  margin: 0;
  border-bottom: 1px solid var(--color-stroke);
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .meta {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 16px;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .meta .date {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--color-text);
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .meta .stars {
  display: flex;
  gap: 4px;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .meta .stars i {
  color: var(--color-stroke);
  font-size: 17px;
}
.review_section .reviewSwiper .swiper-wrapper .swiper-slide .card .meta .stars i.active {
  color: var(--color-primary);
}
.review_section .reviewSwiper .slider_button {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.review_section .reviewSwiper .slider_button .swiper-button-next,
.review_section .reviewSwiper .slider_button .swiper-button-prev {
  padding: 10px 20px;
  background: #FBFBFB;
  border-radius: 50%;
  border: 1px solid var(--color-stroke);
  transition: all 0.3s linear;
}
.review_section .reviewSwiper .slider_button .swiper-button-next:hover,
.review_section .reviewSwiper .slider_button .swiper-button-prev:hover {
  background: rgba(230, 57, 70, 0.1882352941);
  border: 1px solid var(--color-primary);
  transition: all 0.3s linear;
}
.review_section .reviewSwiper .slider_button .swiper-button-next::after,
.review_section .reviewSwiper .slider_button .swiper-button-prev::after {
  content: "";
}
.review_section .reviewSwiper .slider_button .swiper-button-next img,
.review_section .reviewSwiper .slider_button .swiper-button-prev img {
  width: 11.67px;
  height: 9.99px;
}

/**********************/
/* review_section desing end*/
/**********************/
/**********************/
/* footer_section desing start*/
/**********************/
.footer_section {
  padding: 100px 0;
  background: var(--color-text);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer_section .ellipse {
  position: absolute;
  bottom: -116px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--color-primary);
  filter: blur(200px);
  z-index: -1;
}
.footer_section .ellipses {
  width: 600px;
  height: 600px;
  position: absolute;
  bottom: -517px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.footer_section .ellipses .ellipse-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.0078431373);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.footer_section .ellipses .ellipse-2 {
  position: absolute;
  width: 525px;
  height: 525px;
  background: rgba(255, 255, 255, 0.0156862745);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.footer_section .sectio-title {
  border-bottom: 0.5px solid #464646;
  padding-bottom: 40px;
  text-align: center;
}
.footer_section .sectio-title .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .footer_section .sectio-title .sub-title {
    font-size: 14px;
  }
}
.footer_section .sectio-title .title {
  width: 762px;
  margin: auto;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .footer_section .sectio-title .title {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer_section .sectio-title .title {
    width: 100%;
    font-size: 28px;
  }
}
.footer_section .sectio-title .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #80868B;
  margin-bottom: 40px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .footer_section .sectio-title .desc {
    font-size: 14px;
  }
}
.footer_section .sectio-title .button {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--color-white);
  padding: 17.5px 57px;
  margin-top: 56px;
  background: var(--color-primary);
  border-radius: var(--radius);
  transition: all 0.3s linear;
}
.footer_section .sectio-title .button:hover {
  color: var(--color-white);
  background: var(--color-black);
}
.footer_section .support {
  display: flex;
  margin-top: 20px;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .footer_section .support {
    display: flex;
    flex-direction: column;
  }
}
.footer_section .support .card {
  width: 100%;
  max-width: 287px;
  background: rgba(254, 189, 13, 0.0156862745);
  padding: 16px 10px;
  border: 0;
  cursor: pointer;
  transition: all 0.3s linear;
}
.footer_section .support .card:hover {
  background: #575757;
  transition: all 0.3s linear;
}
.footer_section .support .card .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .footer_section .support .card .title {
    font-size: 18px;
  }
}
.footer_section .support .card .desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #80868B;
  margin: 0;
}
@media (max-width: 768px) {
  .footer_section .support .card .desc {
    font-size: 12px;
  }
}

/**********************/
/* footer_section desing end*/
/**********************//*# sourceMappingURL=style.css.map */